p-elements-core 1.2.32-rc6 → 1.2.32-rc8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +17 -17
- package/.gitlab-ci.yml +18 -18
- package/CHANGELOG.md +201 -201
- package/demo/sample.js +1 -1
- package/demo/screen.css +16 -16
- package/dist/p-elements-core-modern.js +1 -1
- package/dist/p-elements-core.js +1 -1
- package/docs/package-lock.json +6897 -6897
- package/docs/package.json +27 -27
- package/docs/src/404.md +8 -8
- package/docs/src/_data/demos/hello-world/hello-world.tsx +35 -35
- package/docs/src/_data/demos/hello-world/index.html +10 -10
- package/docs/src/_data/demos/hello-world/project.json +7 -7
- package/docs/src/_data/demos/timer/demo-timer.tsx +120 -120
- package/docs/src/_data/demos/timer/icons.tsx +62 -62
- package/docs/src/_data/demos/timer/index.html +12 -12
- package/docs/src/_data/demos/timer/project.json +8 -8
- package/docs/src/_data/global.js +13 -13
- package/docs/src/_data/helpers.js +19 -19
- package/docs/src/_includes/layouts/base.njk +30 -30
- package/docs/src/_includes/layouts/playground.njk +40 -40
- package/docs/src/_includes/partials/app-header.njk +8 -8
- package/docs/src/_includes/partials/head.njk +14 -14
- package/docs/src/_includes/partials/nav.njk +19 -19
- package/docs/src/_includes/partials/top-nav.njk +51 -51
- package/docs/src/documentation/custom-element.md +221 -221
- package/docs/src/documentation/decorators/bind.md +71 -71
- package/docs/src/documentation/decorators/custom-element-config.md +63 -63
- package/docs/src/documentation/decorators/property.md +83 -83
- package/docs/src/documentation/decorators/query.md +66 -66
- package/docs/src/documentation/decorators/render-property-on-set.md +60 -60
- package/docs/src/documentation/decorators.md +9 -9
- package/docs/src/documentation/reactive-properties.md +53 -53
- package/docs/src/index.d.ts +25 -25
- package/docs/src/index.md +3 -3
- package/docs/src/scripts/components/app-mode-switch/app-mode-switch.css +78 -78
- package/docs/src/scripts/components/app-mode-switch/app-mode-switch.tsx +166 -166
- package/docs/src/scripts/components/app-playground/app-playground.tsx +189 -189
- package/docs/tsconfig.json +22 -22
- package/package.json +2 -2
- package/readme.md +206 -206
- package/src/custom-element-controller.ts +31 -31
- package/src/custom-element.test.ts +906 -906
- package/src/custom-element.ts +27 -15
- package/src/decorators/bind.test.ts +163 -163
- package/src/decorators/bind.ts +46 -46
- package/src/decorators/custom-element-config.ts +17 -17
- package/src/decorators/property.test.ts +279 -279
- package/src/decorators/property.ts +0 -1
- package/src/decorators/query.test.ts +146 -146
- package/src/decorators/query.ts +12 -12
- package/src/decorators/render-property-on-set.ts +3 -3
- package/src/helpers/css.ts +71 -71
- package/src/maquette/cache.ts +35 -35
- package/src/maquette/dom.ts +115 -115
- package/src/maquette/h.ts +100 -100
- package/src/maquette/index.ts +12 -12
- package/src/maquette/interfaces.ts +536 -536
- package/src/maquette/jsx.ts +61 -61
- package/src/maquette/mapping.ts +56 -56
- package/src/maquette/projection.ts +666 -666
- package/src/maquette/projector.ts +205 -200
- package/src/sample/mixin/highlight.tsx +33 -33
package/.editorconfig
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
root = true
|
|
2
|
-
|
|
3
|
-
[*]
|
|
4
|
-
indent_style = space
|
|
5
|
-
indent_size = 2
|
|
6
|
-
end_of_line = crlf
|
|
7
|
-
charset = utf-8
|
|
8
|
-
trim_trailing_whitespace = true
|
|
9
|
-
insert_final_newline = true
|
|
10
|
-
|
|
11
|
-
[*.html]
|
|
12
|
-
indent_style = space
|
|
13
|
-
indent_size = 4
|
|
14
|
-
end_of_line = crlf
|
|
15
|
-
charset = utf-8
|
|
16
|
-
trim_trailing_whitespace = true
|
|
17
|
-
insert_final_newline = true
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
indent_style = space
|
|
5
|
+
indent_size = 2
|
|
6
|
+
end_of_line = crlf
|
|
7
|
+
charset = utf-8
|
|
8
|
+
trim_trailing_whitespace = true
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
|
|
11
|
+
[*.html]
|
|
12
|
+
indent_style = space
|
|
13
|
+
indent_size = 4
|
|
14
|
+
end_of_line = crlf
|
|
15
|
+
charset = utf-8
|
|
16
|
+
trim_trailing_whitespace = true
|
|
17
|
+
insert_final_newline = true
|
package/.gitlab-ci.yml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
# The Docker image that will be used to build your app
|
|
2
|
-
image: node:lts
|
|
3
|
-
create-pages:
|
|
4
|
-
pages:
|
|
5
|
-
# The folder that contains the files to be exposed at the Page URL
|
|
6
|
-
publish: docs/public
|
|
7
|
-
rules:
|
|
8
|
-
# This ensures that only pushes to the default branch will trigger
|
|
9
|
-
# a pages deploy
|
|
10
|
-
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
|
11
|
-
- if: $CI_COMMIT_REF_NAME == "pages"
|
|
12
|
-
# Functions that should be executed before the build script is run
|
|
13
|
-
before_script:
|
|
14
|
-
- cd docs
|
|
15
|
-
- npm ci
|
|
16
|
-
- npm run build
|
|
17
|
-
script:
|
|
18
|
-
- npm ci
|
|
1
|
+
# The Docker image that will be used to build your app
|
|
2
|
+
image: node:lts
|
|
3
|
+
create-pages:
|
|
4
|
+
pages:
|
|
5
|
+
# The folder that contains the files to be exposed at the Page URL
|
|
6
|
+
publish: docs/public
|
|
7
|
+
rules:
|
|
8
|
+
# This ensures that only pushes to the default branch will trigger
|
|
9
|
+
# a pages deploy
|
|
10
|
+
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
|
11
|
+
- if: $CI_COMMIT_REF_NAME == "pages"
|
|
12
|
+
# Functions that should be executed before the build script is run
|
|
13
|
+
before_script:
|
|
14
|
+
- cd docs
|
|
15
|
+
- npm ci
|
|
16
|
+
- npm run build
|
|
17
|
+
script:
|
|
18
|
+
- npm ci
|
package/CHANGELOG.md
CHANGED
|
@@ -1,201 +1,201 @@
|
|
|
1
|
-
## v1.2.32-rc3 - 2026-02-09
|
|
2
|
-
|
|
3
|
-
- - updated `PropertyType` to include support for arrays and constructor types. - fix readonly property decorator - fix @apply polyfill. - fix `RenderOnSet` functionality. (db7c8e5)
|
|
4
|
-
- feat: add custom element p-bugs-03 with rendering logic (110f592)
|
|
5
|
-
- refactor: enhance property decorator and attribute handling (8569c7f)
|
|
6
|
-
|
|
7
|
-
## v1.2.31 - 2025-06-04
|
|
8
|
-
|
|
9
|
-
- chore: update package version to 1.2.31 in package-lock.json (d43d7ed)
|
|
10
|
-
- fix: update JSX namespace declaration and increment version to 1.2.31 (e5241aa)
|
|
11
|
-
- chore: update type definitions to allow additional values for properties (8e33aa3)
|
|
12
|
-
- fix: correct JSX namespace declaration for IntrinsicElements and Element types (14d76da)
|
|
13
|
-
|
|
14
|
-
## v1.2.28 - 2025-05-06
|
|
15
|
-
|
|
16
|
-
- feat: extend JSX namespace to include IntrinsicElements and Element types for improved type definitions (2f6ac5d)
|
|
17
|
-
- fix: update JSX IntrinsicElements interface to use VNodeProperties for better type safety (3c967c0)
|
|
18
|
-
- feat: update documentation for CustomElement class and Getting Started guide; add playground examples for Timer and Hello World (625ec52)
|
|
19
|
-
- fix: enhance playground layout by adjusting height and overflow properties (a6fd1ce)
|
|
20
|
-
- fix: clean up CSS by removing unnecessary styles and adjusting playground layout (6492b0d)
|
|
21
|
-
- feat: Update P-ELEMENTS version and modify documentation structure (6fddf98)
|
|
22
|
-
- Refactor playground integration and update documentation (01eb48d)
|
|
23
|
-
- fix: remove unnecessary blank line in CustomElement class documentation (f3c3795)
|
|
24
|
-
- fix: update documentation for CustomElement lifecycle methods and improve clarity on styling options (f9ab5f5)
|
|
25
|
-
- fix: update navigation order for CustomElement, decorators, and reactive properties documentation (0c0398a)
|
|
26
|
-
- fix: update playground examples to use correct custom elements and improve render messages (63366fc)
|
|
27
|
-
- initial CustomElement documentation (51f5569)
|
|
28
|
-
- feat: add documentation for CustomElement class; cover usage, core concepts, lifecycle methods, and styling (1135b91)
|
|
29
|
-
- fix: update documentation for decorators; improve descriptions and navigation keys (04e5d57)
|
|
30
|
-
- fix: update order of navigation items for decorators; add reactive properties documentation (777ddb0)
|
|
31
|
-
- fix: update titles in navigation for consistency across custom element documentation (2b0c6e1)
|
|
32
|
-
- fix: update favicon link to use pathPrefix; add favicon image to assets (6fe97bf)
|
|
33
|
-
- fix: update navigation item class for consistency; refactor layout structure in base.njk (ddfdf4c)
|
|
34
|
-
- feat: refactor navigation rendering in nav.njk and top-nav.njk for improved structure and consistency (c0ad212)
|
|
35
|
-
- fix: correct script redirection path in decorators documentation; refactor navigation rendering in nav.njk (126c5f4)
|
|
36
|
-
- fix: update script redirection path in decorators documentation (c374141)
|
|
37
|
-
- feat: refactor navigation structure in templates; enhance styling for top navigation items (9f8396d)
|
|
38
|
-
- feat: add syntax highlighting support with @11ty/eleventy-plugin-syntaxhighlight; update styles for improved code presentation (75b7e72)
|
|
39
|
-
- feat: add documentation for @bind, @CustomElementConfig, @Property, @Query, and @propertyRenderOnSet decorators; update main.css for improved layout (8701efa)
|
|
40
|
-
- feat: clean up unused CSS variables to streamline theme styling (3e06679)
|
|
41
|
-
- feat: enhance theme support with new CSS variables for app and documentation backgrounds (16f9513)
|
|
42
|
-
- feat: update theme mode handling on system theme change to reflect in app mode switch (d632388)
|
|
43
|
-
- feat: update layout and styles for documentation and playground pages to enhance responsiveness and usability (f824be7)
|
|
44
|
-
- feat: restructure layout for documentation and playground pages with grid system (9fa0c1d)
|
|
45
|
-
- feat: define CSS variables for mobile menu background and text colors based on theme (70ef48b)
|
|
46
|
-
- style: adjust media query breakpoint for top navigation menu (50ce38e)
|
|
47
|
-
- feat: add app mobile menu component with dialog functionality and responsive styles (eaabd8c)
|
|
48
|
-
- style: update margin and font size in demo timer component CSS (5f45fb1)
|
|
49
|
-
- style: adjust line-height for button container in demo timer component (b27c7df)
|
|
50
|
-
- feat: implement app header and mode switch components with responsive layout (743341d)
|
|
51
|
-
- feat: add app mode switch component with light/dark mode functionality (a5c0936)
|
|
52
|
-
- styling for small screens (8e52b5b)
|
|
53
|
-
- meta viewport tag (54986da)
|
|
54
|
-
- Add demo timer component and associated icons (ade853a)
|
|
55
|
-
- docs: add Hello World example section to getting started guide (a4054cb)
|
|
56
|
-
- Edit .gitlab-ci.yml (73035b9)
|
|
57
|
-
|
|
58
|
-
## v1.2.27 - 2025-05-01
|
|
59
|
-
|
|
60
|
-
- chore: update p-elements-core to version 1.2.27 in package.json and package-lock.json (2c31ee2)
|
|
61
|
-
- chore: update p-elements-core dependency version to ^1.2.25 in package-lock.json (c953599)
|
|
62
|
-
|
|
63
|
-
## v1.2.26 - 2025-05-01
|
|
64
|
-
|
|
65
|
-
## v1.2.25 - 2025-05-01
|
|
66
|
-
|
|
67
|
-
- chore: update p-elements-core dependency version to ^1.2.25 in package-lock.json (c953599)
|
|
68
|
-
- feat(hello-world): update name interaction and version bump to 1.2.26 (c424162)
|
|
69
|
-
- chore: update p-elements-core dependency version to ^1.2.25 in docs (1df82e1)
|
|
70
|
-
- 1.2.25 data attribute 'data-force-event-handler' in check modified event handler (295395a)
|
|
71
|
-
- fix: modify event handler in createEventHandlerInterceptor for improved performance logging (8cae5a1)
|
|
72
|
-
- Enhance event handling in projector and sample component (55c9e56)
|
|
73
|
-
- package update (41c7e1e)
|
|
74
|
-
- update lock files (76005a8)
|
|
75
|
-
- feat: add playground examples and enhance documentation structure (6794596)
|
|
76
|
-
- feat: enhance navigation and path handling, add link active state helper (aeb0470)
|
|
77
|
-
- fix: update playground links to include global pathPrefix (1ea0f09)
|
|
78
|
-
- fix: update site title link to use global pathPrefix (a7ea06f)
|
|
79
|
-
- feat: add documentation for getting started and playground examples (e1799f6)
|
|
80
|
-
- refactor: streamline pathPrefix assignment and enhance global styles (344970d)
|
|
81
|
-
- fix svg url (1bfd1a0)
|
|
82
|
-
- fix links in nav (5b77ead)
|
|
83
|
-
- pathprefix in global config (5fec6a3)
|
|
84
|
-
- path prefix in package.json (fe8d3f9)
|
|
85
|
-
- pathPrefix in config (78e3126)
|
|
86
|
-
- base url (6c05b36)
|
|
87
|
-
- Merge branch 'doc-site' into 'master' (3eb22dd)
|
|
88
|
-
- Merge branch 'master' into 'doc-site' (195354c)
|
|
89
|
-
- Update .gitlab-ci.yml (2d60a1d)
|
|
90
|
-
- Update .gitlab-ci.yml file (3526027)
|
|
91
|
-
- chore: update Node.js version in CI configuration to 22.15.0-alpine3.21 (d0ce993)
|
|
92
|
-
- chore: update tsconfig to exclude docs directory from compilation (bc9d92b)
|
|
93
|
-
- fix(docs): remove redundant Table of Contents header and improve clarity in introduction (2017e87)
|
|
94
|
-
- feat: Revamp documentation layout and navigation structure - Added 404 page with simplified structure - Introduced 'Getting started' page - Enhanced base layout with improved content organization - Removed footer partial and integrated top navigation - Updated index page with clearer introduction to p-elements - Modified playground page for better usability - Improved app-drawer styles and functionality - Refined main styles for better layout and responsiveness (59e952e)
|
|
95
|
-
- feat: Initialize documentation site with Eleventy (b6e2477)
|
|
96
|
-
|
|
97
|
-
## v1.2.24 - 2025-04-25
|
|
98
|
-
|
|
99
|
-
- Merge branch 'bugfix-projector-event-interceptor' into 'master' (bb1ef24)
|
|
100
|
-
- fix(projector): fallback to the oringal handler if node is not found in last projection (5173209)
|
|
101
|
-
|
|
102
|
-
## v1.2.22 - 2025-04-06
|
|
103
|
-
|
|
104
|
-
- Version bump
|
|
105
|
-
|
|
106
|
-
## v1.2.21 - 2025-03-23
|
|
107
|
-
|
|
108
|
-
- Version bump
|
|
109
|
-
|
|
110
|
-
## v1.2.20 - 2025-02-07
|
|
111
|
-
|
|
112
|
-
- Version bump
|
|
113
|
-
|
|
114
|
-
## v1.2.19 - 2025-02-02
|
|
115
|
-
|
|
116
|
-
- Add render lifecycle hooks to documentation (6b3be39)
|
|
117
|
-
|
|
118
|
-
## v1.2.18 - 2025-02-02
|
|
119
|
-
|
|
120
|
-
- Version bump
|
|
121
|
-
|
|
122
|
-
## v1.2.17 - 2024-12-30
|
|
123
|
-
|
|
124
|
-
- Merge branch '1.2.16-rc1' into 'master' (b10c188)
|
|
125
|
-
|
|
126
|
-
## v1.2.16 - 2024-12-22
|
|
127
|
-
|
|
128
|
-
- Version bump
|
|
129
|
-
|
|
130
|
-
## v1.2.16-rc1 - 2024-12-22
|
|
131
|
-
|
|
132
|
-
- Version bump
|
|
133
|
-
|
|
134
|
-
## v1.2.15 - 2024-12-22
|
|
135
|
-
|
|
136
|
-
- Version bump
|
|
137
|
-
|
|
138
|
-
## v1.2.12 - 2024-12-18
|
|
139
|
-
|
|
140
|
-
- Version bump
|
|
141
|
-
|
|
142
|
-
## v1.2.11 - 2024-12-17
|
|
143
|
-
|
|
144
|
-
- build 1.2.10 (7499fff)
|
|
145
|
-
- build 1.2.9 (e9f982e)
|
|
146
|
-
- build 1.2.9 (8a10997)
|
|
147
|
-
|
|
148
|
-
## v1.2.9 - 2024-12-16
|
|
149
|
-
|
|
150
|
-
- bug fix property render on set not re render (needed for backwards compatibility) (ea18171)
|
|
151
|
-
- fix property decorator reflect error (2c667bd)
|
|
152
|
-
- fix property decorator reflect error (b2fcf9a)
|
|
153
|
-
|
|
154
|
-
## v1.2.8 - 2024-12-06
|
|
155
|
-
|
|
156
|
-
- Version bump
|
|
157
|
-
|
|
158
|
-
## v1.2.7 - 2024-12-05
|
|
159
|
-
|
|
160
|
-
- build (0099ec5)
|
|
161
|
-
- build (f44e6bc)
|
|
162
|
-
- Update package.json (f0fe18c)
|
|
163
|
-
- Merge branch 'no-more-obsolete-polyfills' into 'master' (f40f1f2)
|
|
164
|
-
- Merge branch 'custom-element-controller' into no-more-obsolete-polyfills (37b6743)
|
|
165
|
-
- re use property decorator in property render on set decorator (f5a8db2)
|
|
166
|
-
- build (82becaf)
|
|
167
|
-
- custom-elements-builtin moved to webpack (9bd72a6)
|
|
168
|
-
- build (5fe389b)
|
|
169
|
-
- CustomElementController base class working (609b78f)
|
|
170
|
-
- custom element controller experiment (1fe9169)
|
|
171
|
-
- update readme (8152749)
|
|
172
|
-
- only p-elements-core-modern is a es module (5c0cf78)
|
|
173
|
-
- type (17be93c)
|
|
174
|
-
- update readme (c3aa264)
|
|
175
|
-
- 1.2.6-rc.0 (557148d)
|
|
176
|
-
- build (9584feb)
|
|
177
|
-
- added readme (4393851)
|
|
178
|
-
- Added: readolny property options, converter property option, updated hookand shouldUpdate hooks (14ab619)
|
|
179
|
-
- es module (b406413)
|
|
180
|
-
- more typings added (fbb52f3)
|
|
181
|
-
- refactored some decorators (eceec4e)
|
|
182
|
-
- moved polyfill to webpack config (ad873d9)
|
|
183
|
-
- removed console log (806be5c)
|
|
184
|
-
- set attribute refactored (01f901f)
|
|
185
|
-
- initial property decorator (f2dabfe)
|
|
186
|
-
- build (feebf4e)
|
|
187
|
-
- added setter for internals (b499a93)
|
|
188
|
-
- added query decorator, static style attribute added, update typescript (825171e)
|
|
189
|
-
- removed npm vulnerabilities (7096402)
|
|
190
|
-
- removed polyfills (77236b3)
|
|
191
|
-
- build (d5d5de7)
|
|
192
|
-
- fallback to append mode if projector mode not set (d9d6417)
|
|
193
|
-
- removed log message (73446ca)
|
|
194
|
-
- build (6fb1edd)
|
|
195
|
-
- Merge branch 'update-css-import' into 'master' (f5d644c)
|
|
196
|
-
- Merge branch 'master' into update-css-import (d941ff4)
|
|
197
|
-
- merge (5a3d716)
|
|
198
|
-
- removed duplicat line (7c6e811)
|
|
199
|
-
- Merge branch 'update-css-import' into 'master' (bbb9c57)
|
|
200
|
-
|
|
201
|
-
## v1.2.3 - 2023-09-23
|
|
1
|
+
## v1.2.32-rc3 - 2026-02-09
|
|
2
|
+
|
|
3
|
+
- - updated `PropertyType` to include support for arrays and constructor types. - fix readonly property decorator - fix @apply polyfill. - fix `RenderOnSet` functionality. (db7c8e5)
|
|
4
|
+
- feat: add custom element p-bugs-03 with rendering logic (110f592)
|
|
5
|
+
- refactor: enhance property decorator and attribute handling (8569c7f)
|
|
6
|
+
|
|
7
|
+
## v1.2.31 - 2025-06-04
|
|
8
|
+
|
|
9
|
+
- chore: update package version to 1.2.31 in package-lock.json (d43d7ed)
|
|
10
|
+
- fix: update JSX namespace declaration and increment version to 1.2.31 (e5241aa)
|
|
11
|
+
- chore: update type definitions to allow additional values for properties (8e33aa3)
|
|
12
|
+
- fix: correct JSX namespace declaration for IntrinsicElements and Element types (14d76da)
|
|
13
|
+
|
|
14
|
+
## v1.2.28 - 2025-05-06
|
|
15
|
+
|
|
16
|
+
- feat: extend JSX namespace to include IntrinsicElements and Element types for improved type definitions (2f6ac5d)
|
|
17
|
+
- fix: update JSX IntrinsicElements interface to use VNodeProperties for better type safety (3c967c0)
|
|
18
|
+
- feat: update documentation for CustomElement class and Getting Started guide; add playground examples for Timer and Hello World (625ec52)
|
|
19
|
+
- fix: enhance playground layout by adjusting height and overflow properties (a6fd1ce)
|
|
20
|
+
- fix: clean up CSS by removing unnecessary styles and adjusting playground layout (6492b0d)
|
|
21
|
+
- feat: Update P-ELEMENTS version and modify documentation structure (6fddf98)
|
|
22
|
+
- Refactor playground integration and update documentation (01eb48d)
|
|
23
|
+
- fix: remove unnecessary blank line in CustomElement class documentation (f3c3795)
|
|
24
|
+
- fix: update documentation for CustomElement lifecycle methods and improve clarity on styling options (f9ab5f5)
|
|
25
|
+
- fix: update navigation order for CustomElement, decorators, and reactive properties documentation (0c0398a)
|
|
26
|
+
- fix: update playground examples to use correct custom elements and improve render messages (63366fc)
|
|
27
|
+
- initial CustomElement documentation (51f5569)
|
|
28
|
+
- feat: add documentation for CustomElement class; cover usage, core concepts, lifecycle methods, and styling (1135b91)
|
|
29
|
+
- fix: update documentation for decorators; improve descriptions and navigation keys (04e5d57)
|
|
30
|
+
- fix: update order of navigation items for decorators; add reactive properties documentation (777ddb0)
|
|
31
|
+
- fix: update titles in navigation for consistency across custom element documentation (2b0c6e1)
|
|
32
|
+
- fix: update favicon link to use pathPrefix; add favicon image to assets (6fe97bf)
|
|
33
|
+
- fix: update navigation item class for consistency; refactor layout structure in base.njk (ddfdf4c)
|
|
34
|
+
- feat: refactor navigation rendering in nav.njk and top-nav.njk for improved structure and consistency (c0ad212)
|
|
35
|
+
- fix: correct script redirection path in decorators documentation; refactor navigation rendering in nav.njk (126c5f4)
|
|
36
|
+
- fix: update script redirection path in decorators documentation (c374141)
|
|
37
|
+
- feat: refactor navigation structure in templates; enhance styling for top navigation items (9f8396d)
|
|
38
|
+
- feat: add syntax highlighting support with @11ty/eleventy-plugin-syntaxhighlight; update styles for improved code presentation (75b7e72)
|
|
39
|
+
- feat: add documentation for @bind, @CustomElementConfig, @Property, @Query, and @propertyRenderOnSet decorators; update main.css for improved layout (8701efa)
|
|
40
|
+
- feat: clean up unused CSS variables to streamline theme styling (3e06679)
|
|
41
|
+
- feat: enhance theme support with new CSS variables for app and documentation backgrounds (16f9513)
|
|
42
|
+
- feat: update theme mode handling on system theme change to reflect in app mode switch (d632388)
|
|
43
|
+
- feat: update layout and styles for documentation and playground pages to enhance responsiveness and usability (f824be7)
|
|
44
|
+
- feat: restructure layout for documentation and playground pages with grid system (9fa0c1d)
|
|
45
|
+
- feat: define CSS variables for mobile menu background and text colors based on theme (70ef48b)
|
|
46
|
+
- style: adjust media query breakpoint for top navigation menu (50ce38e)
|
|
47
|
+
- feat: add app mobile menu component with dialog functionality and responsive styles (eaabd8c)
|
|
48
|
+
- style: update margin and font size in demo timer component CSS (5f45fb1)
|
|
49
|
+
- style: adjust line-height for button container in demo timer component (b27c7df)
|
|
50
|
+
- feat: implement app header and mode switch components with responsive layout (743341d)
|
|
51
|
+
- feat: add app mode switch component with light/dark mode functionality (a5c0936)
|
|
52
|
+
- styling for small screens (8e52b5b)
|
|
53
|
+
- meta viewport tag (54986da)
|
|
54
|
+
- Add demo timer component and associated icons (ade853a)
|
|
55
|
+
- docs: add Hello World example section to getting started guide (a4054cb)
|
|
56
|
+
- Edit .gitlab-ci.yml (73035b9)
|
|
57
|
+
|
|
58
|
+
## v1.2.27 - 2025-05-01
|
|
59
|
+
|
|
60
|
+
- chore: update p-elements-core to version 1.2.27 in package.json and package-lock.json (2c31ee2)
|
|
61
|
+
- chore: update p-elements-core dependency version to ^1.2.25 in package-lock.json (c953599)
|
|
62
|
+
|
|
63
|
+
## v1.2.26 - 2025-05-01
|
|
64
|
+
|
|
65
|
+
## v1.2.25 - 2025-05-01
|
|
66
|
+
|
|
67
|
+
- chore: update p-elements-core dependency version to ^1.2.25 in package-lock.json (c953599)
|
|
68
|
+
- feat(hello-world): update name interaction and version bump to 1.2.26 (c424162)
|
|
69
|
+
- chore: update p-elements-core dependency version to ^1.2.25 in docs (1df82e1)
|
|
70
|
+
- 1.2.25 data attribute 'data-force-event-handler' in check modified event handler (295395a)
|
|
71
|
+
- fix: modify event handler in createEventHandlerInterceptor for improved performance logging (8cae5a1)
|
|
72
|
+
- Enhance event handling in projector and sample component (55c9e56)
|
|
73
|
+
- package update (41c7e1e)
|
|
74
|
+
- update lock files (76005a8)
|
|
75
|
+
- feat: add playground examples and enhance documentation structure (6794596)
|
|
76
|
+
- feat: enhance navigation and path handling, add link active state helper (aeb0470)
|
|
77
|
+
- fix: update playground links to include global pathPrefix (1ea0f09)
|
|
78
|
+
- fix: update site title link to use global pathPrefix (a7ea06f)
|
|
79
|
+
- feat: add documentation for getting started and playground examples (e1799f6)
|
|
80
|
+
- refactor: streamline pathPrefix assignment and enhance global styles (344970d)
|
|
81
|
+
- fix svg url (1bfd1a0)
|
|
82
|
+
- fix links in nav (5b77ead)
|
|
83
|
+
- pathprefix in global config (5fec6a3)
|
|
84
|
+
- path prefix in package.json (fe8d3f9)
|
|
85
|
+
- pathPrefix in config (78e3126)
|
|
86
|
+
- base url (6c05b36)
|
|
87
|
+
- Merge branch 'doc-site' into 'master' (3eb22dd)
|
|
88
|
+
- Merge branch 'master' into 'doc-site' (195354c)
|
|
89
|
+
- Update .gitlab-ci.yml (2d60a1d)
|
|
90
|
+
- Update .gitlab-ci.yml file (3526027)
|
|
91
|
+
- chore: update Node.js version in CI configuration to 22.15.0-alpine3.21 (d0ce993)
|
|
92
|
+
- chore: update tsconfig to exclude docs directory from compilation (bc9d92b)
|
|
93
|
+
- fix(docs): remove redundant Table of Contents header and improve clarity in introduction (2017e87)
|
|
94
|
+
- feat: Revamp documentation layout and navigation structure - Added 404 page with simplified structure - Introduced 'Getting started' page - Enhanced base layout with improved content organization - Removed footer partial and integrated top navigation - Updated index page with clearer introduction to p-elements - Modified playground page for better usability - Improved app-drawer styles and functionality - Refined main styles for better layout and responsiveness (59e952e)
|
|
95
|
+
- feat: Initialize documentation site with Eleventy (b6e2477)
|
|
96
|
+
|
|
97
|
+
## v1.2.24 - 2025-04-25
|
|
98
|
+
|
|
99
|
+
- Merge branch 'bugfix-projector-event-interceptor' into 'master' (bb1ef24)
|
|
100
|
+
- fix(projector): fallback to the oringal handler if node is not found in last projection (5173209)
|
|
101
|
+
|
|
102
|
+
## v1.2.22 - 2025-04-06
|
|
103
|
+
|
|
104
|
+
- Version bump
|
|
105
|
+
|
|
106
|
+
## v1.2.21 - 2025-03-23
|
|
107
|
+
|
|
108
|
+
- Version bump
|
|
109
|
+
|
|
110
|
+
## v1.2.20 - 2025-02-07
|
|
111
|
+
|
|
112
|
+
- Version bump
|
|
113
|
+
|
|
114
|
+
## v1.2.19 - 2025-02-02
|
|
115
|
+
|
|
116
|
+
- Add render lifecycle hooks to documentation (6b3be39)
|
|
117
|
+
|
|
118
|
+
## v1.2.18 - 2025-02-02
|
|
119
|
+
|
|
120
|
+
- Version bump
|
|
121
|
+
|
|
122
|
+
## v1.2.17 - 2024-12-30
|
|
123
|
+
|
|
124
|
+
- Merge branch '1.2.16-rc1' into 'master' (b10c188)
|
|
125
|
+
|
|
126
|
+
## v1.2.16 - 2024-12-22
|
|
127
|
+
|
|
128
|
+
- Version bump
|
|
129
|
+
|
|
130
|
+
## v1.2.16-rc1 - 2024-12-22
|
|
131
|
+
|
|
132
|
+
- Version bump
|
|
133
|
+
|
|
134
|
+
## v1.2.15 - 2024-12-22
|
|
135
|
+
|
|
136
|
+
- Version bump
|
|
137
|
+
|
|
138
|
+
## v1.2.12 - 2024-12-18
|
|
139
|
+
|
|
140
|
+
- Version bump
|
|
141
|
+
|
|
142
|
+
## v1.2.11 - 2024-12-17
|
|
143
|
+
|
|
144
|
+
- build 1.2.10 (7499fff)
|
|
145
|
+
- build 1.2.9 (e9f982e)
|
|
146
|
+
- build 1.2.9 (8a10997)
|
|
147
|
+
|
|
148
|
+
## v1.2.9 - 2024-12-16
|
|
149
|
+
|
|
150
|
+
- bug fix property render on set not re render (needed for backwards compatibility) (ea18171)
|
|
151
|
+
- fix property decorator reflect error (2c667bd)
|
|
152
|
+
- fix property decorator reflect error (b2fcf9a)
|
|
153
|
+
|
|
154
|
+
## v1.2.8 - 2024-12-06
|
|
155
|
+
|
|
156
|
+
- Version bump
|
|
157
|
+
|
|
158
|
+
## v1.2.7 - 2024-12-05
|
|
159
|
+
|
|
160
|
+
- build (0099ec5)
|
|
161
|
+
- build (f44e6bc)
|
|
162
|
+
- Update package.json (f0fe18c)
|
|
163
|
+
- Merge branch 'no-more-obsolete-polyfills' into 'master' (f40f1f2)
|
|
164
|
+
- Merge branch 'custom-element-controller' into no-more-obsolete-polyfills (37b6743)
|
|
165
|
+
- re use property decorator in property render on set decorator (f5a8db2)
|
|
166
|
+
- build (82becaf)
|
|
167
|
+
- custom-elements-builtin moved to webpack (9bd72a6)
|
|
168
|
+
- build (5fe389b)
|
|
169
|
+
- CustomElementController base class working (609b78f)
|
|
170
|
+
- custom element controller experiment (1fe9169)
|
|
171
|
+
- update readme (8152749)
|
|
172
|
+
- only p-elements-core-modern is a es module (5c0cf78)
|
|
173
|
+
- type (17be93c)
|
|
174
|
+
- update readme (c3aa264)
|
|
175
|
+
- 1.2.6-rc.0 (557148d)
|
|
176
|
+
- build (9584feb)
|
|
177
|
+
- added readme (4393851)
|
|
178
|
+
- Added: readolny property options, converter property option, updated hookand shouldUpdate hooks (14ab619)
|
|
179
|
+
- es module (b406413)
|
|
180
|
+
- more typings added (fbb52f3)
|
|
181
|
+
- refactored some decorators (eceec4e)
|
|
182
|
+
- moved polyfill to webpack config (ad873d9)
|
|
183
|
+
- removed console log (806be5c)
|
|
184
|
+
- set attribute refactored (01f901f)
|
|
185
|
+
- initial property decorator (f2dabfe)
|
|
186
|
+
- build (feebf4e)
|
|
187
|
+
- added setter for internals (b499a93)
|
|
188
|
+
- added query decorator, static style attribute added, update typescript (825171e)
|
|
189
|
+
- removed npm vulnerabilities (7096402)
|
|
190
|
+
- removed polyfills (77236b3)
|
|
191
|
+
- build (d5d5de7)
|
|
192
|
+
- fallback to append mode if projector mode not set (d9d6417)
|
|
193
|
+
- removed log message (73446ca)
|
|
194
|
+
- build (6fb1edd)
|
|
195
|
+
- Merge branch 'update-css-import' into 'master' (f5d644c)
|
|
196
|
+
- Merge branch 'master' into update-css-import (d941ff4)
|
|
197
|
+
- merge (5a3d716)
|
|
198
|
+
- removed duplicat line (7c6e811)
|
|
199
|
+
- Merge branch 'update-css-import' into 'master' (bbb9c57)
|
|
200
|
+
|
|
201
|
+
## v1.2.3 - 2023-09-23
|