feat(pages): Add initial structure for pages with page1 component
This commit is contained in:
parent
7fa31e0496
commit
1c558f3aa1
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,7 +3,6 @@
|
|||||||
# artifacts
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
|
||||||
|
|
||||||
# installs
|
# installs
|
||||||
node_modules/
|
node_modules/
|
||||||
@ -17,4 +16,4 @@ node_modules/
|
|||||||
dist/
|
dist/
|
||||||
dist_*/
|
dist_*/
|
||||||
|
|
||||||
# custom
|
#------# custom
|
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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)
|
## 2025-01-13 - 1.1.0 - feat(core)
|
||||||
Refactor and enhance consent management components
|
Refactor and enhance consent management components
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@consent.software/catalog',
|
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.'
|
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
||||||
}
|
}
|
||||||
|
1
ts_web/pages/index.ts
Normal file
1
ts_web/pages/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './page1.js';
|
3
ts_web/pages/page1.ts
Normal file
3
ts_web/pages/page1.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { html } from 'lit';
|
||||||
|
|
||||||
|
export const page1 = () => html``;
|
Loading…
x
Reference in New Issue
Block a user