From 1c558f3aa1fe8eca966b9ee144e9aae9a16647a0 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 13 Jan 2025 22:21:14 +0100 Subject: [PATCH] feat(pages): Add initial structure for pages with page1 component --- .gitignore | 3 +-- changelog.md | 6 ++++++ ts_web/00_commitinfo_data.ts | 2 +- ts_web/pages/index.ts | 1 + ts_web/pages/page1.ts | 3 +++ 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 ts_web/pages/index.ts create mode 100644 ts_web/pages/page1.ts diff --git a/.gitignore b/.gitignore index ef13c79..0b26089 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ # artifacts coverage/ public/ -pages/ # installs node_modules/ @@ -17,4 +16,4 @@ node_modules/ dist/ dist_*/ -# custom \ No newline at end of file +#------# custom \ No newline at end of file diff --git a/changelog.md b/changelog.md index 2c8fff2..666e5e3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-01-13 - 1.2.0 - feat(pages) +Add initial structure for pages with page1 component + +- Added page1 export module in ts_web/pages/index.ts +- Implemented page1 component returning an empty template using lit-html + ## 2025-01-13 - 1.1.0 - feat(core) Refactor and enhance consent management components diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 3e50738..6492c1a 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@consent.software/catalog', - version: '1.1.0', + version: '1.2.0', description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.' } diff --git a/ts_web/pages/index.ts b/ts_web/pages/index.ts new file mode 100644 index 0000000..8a15af8 --- /dev/null +++ b/ts_web/pages/index.ts @@ -0,0 +1 @@ +export * from './page1.js'; \ No newline at end of file diff --git a/ts_web/pages/page1.ts b/ts_web/pages/page1.ts new file mode 100644 index 0000000..6c21652 --- /dev/null +++ b/ts_web/pages/page1.ts @@ -0,0 +1,3 @@ +import { html } from 'lit'; + +export const page1 = () => html``; \ No newline at end of file