p-elements-core 1.2.32-rc2 → 1.2.32-rc4

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.
Files changed (78) hide show
  1. package/.editorconfig +17 -17
  2. package/.gitlab-ci.yml +18 -18
  3. package/CHANGELOG.md +201 -0
  4. package/demo/sample.js +1 -1
  5. package/demo/screen.css +16 -16
  6. package/dist/p-elements-core-modern.js +1 -1
  7. package/dist/p-elements-core.js +1 -1
  8. package/docs/package-lock.json +6897 -6897
  9. package/docs/package.json +27 -27
  10. package/docs/src/404.md +8 -8
  11. package/docs/src/_data/demos/hello-world/hello-world.tsx +35 -35
  12. package/docs/src/_data/demos/hello-world/index.html +10 -10
  13. package/docs/src/_data/demos/hello-world/project.json +7 -7
  14. package/docs/src/_data/demos/timer/demo-timer.tsx +120 -120
  15. package/docs/src/_data/demos/timer/icons.tsx +62 -62
  16. package/docs/src/_data/demos/timer/index.html +12 -12
  17. package/docs/src/_data/demos/timer/project.json +8 -8
  18. package/docs/src/_data/global.js +13 -13
  19. package/docs/src/_data/helpers.js +19 -19
  20. package/docs/src/_includes/layouts/base.njk +30 -30
  21. package/docs/src/_includes/layouts/playground.njk +40 -40
  22. package/docs/src/_includes/partials/app-header.njk +8 -8
  23. package/docs/src/_includes/partials/head.njk +14 -14
  24. package/docs/src/_includes/partials/nav.njk +19 -19
  25. package/docs/src/_includes/partials/top-nav.njk +51 -51
  26. package/docs/src/documentation/custom-element.md +221 -221
  27. package/docs/src/documentation/decorators/bind.md +71 -71
  28. package/docs/src/documentation/decorators/custom-element-config.md +63 -63
  29. package/docs/src/documentation/decorators/property.md +83 -83
  30. package/docs/src/documentation/decorators/query.md +66 -66
  31. package/docs/src/documentation/decorators/render-property-on-set.md +60 -60
  32. package/docs/src/documentation/decorators.md +9 -9
  33. package/docs/src/documentation/reactive-properties.md +53 -53
  34. package/docs/src/index.d.ts +25 -25
  35. package/docs/src/index.md +3 -3
  36. package/docs/src/scripts/components/app-mode-switch/app-mode-switch.css +78 -78
  37. package/docs/src/scripts/components/app-mode-switch/app-mode-switch.tsx +166 -166
  38. package/docs/src/scripts/components/app-playground/app-playground.tsx +189 -189
  39. package/docs/tsconfig.json +22 -22
  40. package/package.json +9 -2
  41. package/readme.md +206 -206
  42. package/src/custom-element-controller.test.ts +226 -0
  43. package/src/custom-element-controller.ts +31 -31
  44. package/src/custom-element.test.ts +906 -0
  45. package/src/custom-element.ts +17 -1
  46. package/src/custom-style-element.ts +4 -1
  47. package/src/decorators/bind.test.ts +163 -0
  48. package/src/decorators/bind.ts +46 -46
  49. package/src/decorators/custom-element-config.ts +17 -17
  50. package/src/decorators/property.test.ts +279 -0
  51. package/src/decorators/property.ts +789 -684
  52. package/src/decorators/query.test.ts +146 -0
  53. package/src/decorators/query.ts +12 -12
  54. package/src/decorators/render-property-on-set.ts +3 -3
  55. package/src/helpers/css.test.ts +150 -0
  56. package/src/helpers/css.ts +71 -71
  57. package/src/maquette/cache.test.ts +150 -0
  58. package/src/maquette/cache.ts +35 -35
  59. package/src/maquette/dom.test.ts +263 -0
  60. package/src/maquette/dom.ts +115 -115
  61. package/src/maquette/h.test.ts +165 -0
  62. package/src/maquette/h.ts +100 -100
  63. package/src/maquette/index.ts +12 -12
  64. package/src/maquette/interfaces.ts +536 -536
  65. package/src/maquette/jsx.ts +61 -61
  66. package/src/maquette/mapping.test.ts +294 -0
  67. package/src/maquette/mapping.ts +56 -56
  68. package/src/maquette/maquette.test.ts +493 -0
  69. package/src/maquette/projection.test.ts +366 -0
  70. package/src/maquette/projection.ts +666 -666
  71. package/src/maquette/projector.test.ts +351 -0
  72. package/src/maquette/projector.ts +200 -200
  73. package/src/sample/mixin/highlight.tsx +33 -33
  74. package/src/test-setup.ts +85 -0
  75. package/src/test-utils.ts +223 -0
  76. package/tsconfig.json +1 -0
  77. package/vitest.config.ts +41 -0
  78. package/webpack.config.js +1 -1
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 ADDED
@@ -0,0 +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
package/demo/sample.js CHANGED
@@ -1 +1 @@
1
- /*! P-ELEMENTS 1.2.32-rc2 - Mon Feb 09 2026 10:47:09 GMT+0100 (Midden-Europese standaardtijd) */var t={554(t,e,n){var r,o,i,a={scope:{}};a.defineProperty="function"==typeof Object.defineProperties?Object.defineProperty:function(t,e,n){if(n.get||n.set)throw new TypeError("ES3 does not support getters and setters.");t!=Array.prototype&&t!=Object.prototype&&(t[e]=n.value)},a.getGlobal=function(t){return"undefined"!=typeof window&&window===t?t:void 0!==n.g&&null!=n.g?n.g:t},a.global=a.getGlobal(this),a.SYMBOL_PREFIX="jscomp_symbol_",a.initSymbol=function(){a.initSymbol=function(){},a.global.Symbol||(a.global.Symbol=a.Symbol)},a.symbolCounter_=0,a.Symbol=function(t){return a.SYMBOL_PREFIX+(t||"")+a.symbolCounter_++},a.initSymbolIterator=function(){a.initSymbol();var t=a.global.Symbol.iterator;t||(t=a.global.Symbol.iterator=a.global.Symbol("iterator")),"function"!=typeof Array.prototype[t]&&a.defineProperty(Array.prototype,t,{configurable:!0,writable:!0,value:function(){return a.arrayIterator(this)}}),a.initSymbolIterator=function(){}},a.arrayIterator=function(t){var e=0;return a.iteratorPrototype((function(){return e<t.length?{done:!1,value:t[e++]}:{done:!0}}))},a.iteratorPrototype=function(t){return a.initSymbolIterator(),(t={next:t})[a.global.Symbol.iterator]=function(){return this},t},a.array=a.array||{},a.iteratorFromArray=function(t,e){a.initSymbolIterator(),t instanceof String&&(t+="");var n=0,r={next:function(){if(n<t.length){var o=n++;return{value:e(o,t[o]),done:!1}}return r.next=function(){return{done:!0,value:void 0}},r.next()}};return r[Symbol.iterator]=function(){return r},r},a.polyfill=function(t,e,n,r){if(e){for(n=a.global,t=t.split("."),r=0;r<t.length-1;r++){var o=t[r];o in n||(n[o]={}),n=n[o]}(e=e(r=n[t=t[t.length-1]]))!=r&&null!=e&&a.defineProperty(n,t,{configurable:!0,writable:!0,value:e})}},a.polyfill("Array.prototype.keys",(function(t){return t||function(){return a.iteratorFromArray(this,(function(t){return t}))}}),"es6-impl","es3");var u=this;o=[],r=function(){function t(t){if(!W.col(t))try{return document.querySelectorAll(t)}catch(t){}}function e(t,e){for(var n=t.length,r=2<=arguments.length?arguments[1]:void 0,o=[],i=0;i<n;i++)if(i in t){var a=t[i];e.call(r,a,i,t)&&o.push(a)}return o}function n(t){return t.reduce((function(t,e){return t.concat(W.arr(e)?n(e):e)}),[])}function r(e){return W.arr(e)?e:(W.str(e)&&(e=t(e)||e),e instanceof NodeList||e instanceof HTMLCollection?[].slice.call(e):[e])}function o(t,e){return t.some((function(t){return t===e}))}function i(t){var e,n={};for(e in t)n[e]=t[e];return n}function a(t,e){var n,r=i(t);for(n in t)r[n]=e.hasOwnProperty(n)?e[n]:t[n];return r}function c(t,e){var n,r=i(t);for(n in e)r[n]=W.und(t[n])?e[n]:t[n];return r}function s(t){t=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(t,e,n,r){return e+e+n+n+r+r}));var e=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return"rgba("+(t=parseInt(e[1],16))+","+parseInt(e[2],16)+","+(e=parseInt(e[3],16))+",1)"}function l(t){function e(t,e,n){return 0>n&&(n+=1),1<n&&--n,n<1/6?t+6*(e-t)*n:.5>n?e:n<2/3?t+(e-t)*(2/3-n)*6:t}var n=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(t)||/hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*([\d.]+)\)/g.exec(t);t=parseInt(n[1])/360;var r=parseInt(n[2])/100,o=parseInt(n[3])/100;if(n=n[4]||1,0==r)o=r=t=o;else{var i=.5>o?o*(1+r):o+r-o*r,a=2*o-i;o=e(a,i,t+1/3),r=e(a,i,t),t=e(a,i,t-1/3)}return"rgba("+255*o+","+255*r+","+255*t+","+n+")"}function f(t){if(t=/([\+\-]?[0-9#\.]+)(%|px|pt|em|rem|in|cm|mm|ex|ch|pc|vw|vh|vmin|vmax|deg|rad|turn)?$/.exec(t))return t[2]}function p(t){return-1<t.indexOf("translate")||"perspective"===t?"px":-1<t.indexOf("rotate")||-1<t.indexOf("skew")?"deg":void 0}function d(t,e){return W.fnc(t)?t(e.target,e.id,e.total):t}function h(t,e){if(e in t.style)return getComputedStyle(t).getPropertyValue(e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase())||"0"}function y(t,e){return W.dom(t)&&o(L,e)?"transform":W.dom(t)&&(t.getAttribute(e)||W.svg(t)&&t[e])?"attribute":W.dom(t)&&"transform"!==e&&h(t,e)?"css":null!=t[e]?"object":void 0}function v(t,n){var r=p(n);if(r=-1<n.indexOf("scale")?1:0+r,!(t=t.style.transform))return r;for(var o=[],i=[],a=[],u=/(\w+)\((.+?)\)/g;o=u.exec(t);)i.push(o[1]),a.push(o[2]);return t=e(a,(function(t,e){return i[e]===n})),t.length?t[0]:r}function b(t,e){switch(y(t,e)){case"transform":return v(t,e);case"css":return h(t,e);case"attribute":return t.getAttribute(e)}return t[e]||0}function m(t,e){var n=/^(\*=|\+=|-=)/.exec(t);if(!n)return t;var r=f(t)||0;switch(e=parseFloat(e),t=parseFloat(t.replace(n[0],"")),n[0][0]){case"+":return e+t+r;case"-":return e-t+r;case"*":return e*t+r}}function g(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function w(t){t=t.points;for(var e,n=0,r=0;r<t.numberOfItems;r++){var o=t.getItem(r);0<r&&(n+=g(e,o)),e=o}return n}function S(t){if(t.getTotalLength)return t.getTotalLength();switch(t.tagName.toLowerCase()){case"circle":return 2*Math.PI*t.getAttribute("r");case"rect":return 2*t.getAttribute("width")+2*t.getAttribute("height");case"line":return g({x:t.getAttribute("x1"),y:t.getAttribute("y1")},{x:t.getAttribute("x2"),y:t.getAttribute("y2")});case"polyline":return w(t);case"polygon":var e=t.points;return w(t)+g(e.getItem(e.numberOfItems-1),e.getItem(0))}}function k(t,e){function n(n){return n=void 0===n?0:n,t.el.getPointAtLength(1<=e+n?e+n:0)}var r=n(),o=n(-1),i=n(1);switch(t.property){case"x":return r.x;case"y":return r.y;case"angle":return 180*Math.atan2(i.y-o.y,i.x-o.x)/Math.PI}}function O(t,e){var n,r=/-?\d*\.?\d+/g;if(n=W.pth(t)?t.totalLength:t,W.col(n))if(W.rgb(n)){var o=/rgb\((\d+,\s*[\d]+,\s*[\d]+)\)/g.exec(n);n=o?"rgba("+o[1]+",1)":n}else n=W.hex(n)?s(n):W.hsl(n)?l(n):void 0;else o=(o=f(n))?n.substr(0,n.length-o.length):n,n=e&&!/\s/g.test(n)?o+e:o;return{original:n+="",numbers:n.match(r)?n.match(r).map(Number):[0],strings:W.str(t)||e?n.split(r):[]}}function j(t){return e(t=t?n(W.arr(t)?t.map(r):r(t)):[],(function(t,e,n){return n.indexOf(t)===e}))}function A(t){var e=j(t);return e.map((function(t,n){return{target:t,id:n,total:e.length}}))}function P(t,e){var n=i(e);if(W.arr(t)){var o=t.length;2!==o||W.obj(t[0])?W.fnc(e.duration)||(n.duration=e.duration/o):t={value:t}}return r(t).map((function(t,n){return n=n?0:e.delay,t=W.obj(t)&&!W.pth(t)?t:{value:t},W.und(t.delay)&&(t.delay=n),t})).map((function(t){return c(t,n)}))}function x(t,e){var n,r={};for(n in t){var o=d(t[n],e);W.arr(o)&&(o=o.map((function(t){return d(t,e)})),1===o.length&&(o=o[0])),r[n]=o}return r.duration=parseFloat(r.duration),r.delay=parseFloat(r.delay),r}function C(t){return W.arr(t)?V.apply(this,t):B[t]}function E(t,e){var n;return t.tweens.map((function(r){var o=(r=x(r,e)).value,i=b(e.target,t.name),a=n?n.to.original:i,u=(a=W.arr(o)?o[0]:a,m(W.arr(o)?o[1]:o,a));return i=f(u)||f(a)||f(i),r.from=O(a,i),r.to=O(u,i),r.start=n?n.end:t.offset,r.end=r.start+r.delay+r.duration,r.easing=C(r.easing),r.elasticity=(1e3-Math.min(Math.max(r.elasticity,1),999))/1e3,r.isPath=W.pth(o),r.isColor=W.col(r.from.original),r.isColor&&(r.round=1),n=r}))}function M(t,r){return e(n(t.map((function(t){return r.map((function(e){var n=y(t.target,e.name);if(n){var r=E(e,t);e={type:n,property:e.name,animatable:t,tweens:r,duration:r[r.length-1].end,delay:r[0].delay}}else e=void 0;return e}))}))),(function(t){return!W.und(t)}))}function R(t,e,n,r){var o="delay"===t;return e.length?(o?Math.min:Math.max).apply(Math,e.map((function(e){return e[t]}))):o?r.delay:n.offset+r.delay+r.duration}function N(t){var e,n=a(I,t),r=a(F,t),o=A(t.targets),i=[],u=c(n,r);for(e in t)u.hasOwnProperty(e)||"targets"===e||i.push({name:e,offset:u.offset,tweens:P(t[e],r)});return c(n,{children:[],animatables:o,animations:t=M(o,i),duration:R("duration",t,n,r),delay:R("delay",t,n,r)})}function _(t){function n(){return window.Promise&&new Promise((function(t){return f=t}))}function r(t){return d.reversed?d.duration-t:t}function o(t){for(var n=0,r={},o=d.animations,i=o.length;n<i;){var a=o[n],u=a.animatable,c=(s=a.tweens)[p=s.length-1];p&&(c=e(s,(function(e){return t<e.end}))[0]||c);for(var s=Math.min(Math.max(t-c.start-c.delay,0),c.duration)/c.duration,l=isNaN(s)?1:c.easing(s,c.elasticity),f=(s=c.to.strings,c.round),p=[],y=void 0,v=(y=c.to.numbers.length,0);v<y;v++){var b=void 0,m=(b=c.to.numbers[v],c.from.numbers[v]);b=c.isPath?k(c.value,l*b):m+l*(b-m),f&&(c.isColor&&2<v||(b=Math.round(b*f)/f)),p.push(b)}if(c=s.length)for(y=s[0],l=0;l<c;l++)f=s[l+1],v=p[l],isNaN(v)||(y=f?y+(v+f):y+(v+" "));else y=p[0];D[a.type](u.target,a.property,y,r,u.id),a.currentValue=y,n++}if(n=Object.keys(r).length)for(o=0;o<n;o++)T||(T=h(document.body,"transform")?"transform":"-webkit-transform"),d.animatables[o].target.style[T]=r[o].join(" ");d.currentTime=t,d.progress=t/d.duration*100}function i(t){d[t]&&d[t](d)}function a(){d.remaining&&!0!==d.remaining&&d.remaining--}function u(t){var e=d.duration,u=d.offset,h=u+d.delay,y=d.currentTime,v=d.reversed,b=r(t);if(d.children.length){var m=d.children,g=m.length;if(b>=d.currentTime)for(var w=0;w<g;w++)m[w].seek(b);else for(;g--;)m[g].seek(b)}(b>=h||!e)&&(d.began||(d.began=!0,i("begin")),i("run")),b>u&&b<e?o(b):(b<=u&&0!==y&&(o(0),v&&a()),(b>=e&&y!==e||!e)&&(o(e),v||a())),i("update"),t>=e&&(d.remaining?(s=c,"alternate"===d.direction&&(d.reversed=!d.reversed)):(d.pause(),d.completed||(d.completed=!0,i("complete"),"Promise"in window&&(f(),p=n()))),l=0)}t=void 0===t?{}:t;var c,s,l=0,f=null,p=n(),d=N(t);return d.reset=function(){var t=d.direction,e=d.loop;for(d.currentTime=0,d.progress=0,d.paused=!0,d.began=!1,d.completed=!1,d.reversed="reverse"===t,d.remaining="alternate"===t&&1===e?2:e,o(0),t=d.children.length;t--;)d.children[t].reset()},d.tick=function(t){c=t,s||(s=c),u((l+c-s)*_.speed)},d.seek=function(t){u(r(t))},d.pause=function(){var t=U.indexOf(d);-1<t&&U.splice(t,1),d.paused=!0},d.play=function(){d.paused&&(d.paused=!1,s=0,l=r(d.currentTime),U.push(d),z||q())},d.reverse=function(){d.reversed=!d.reversed,s=0,l=r(d.currentTime)},d.restart=function(){d.pause(),d.reset(),d.play()},d.finished=p,d.reset(),d.autoplay&&d.play(),d}var T,I={update:void 0,begin:void 0,run:void 0,complete:void 0,loop:1,direction:"normal",autoplay:!0,offset:0},F={duration:1e3,delay:0,easing:"easeOutElastic",elasticity:500,round:0},L="translateX translateY translateZ rotate rotateX rotateY rotateZ scale scaleX scaleY scaleZ skewX skewY perspective".split(" "),W={arr:function(t){return Array.isArray(t)},obj:function(t){return-1<Object.prototype.toString.call(t).indexOf("Object")},pth:function(t){return W.obj(t)&&t.hasOwnProperty("totalLength")},svg:function(t){return t instanceof SVGElement},dom:function(t){return t.nodeType||W.svg(t)},str:function(t){return"string"==typeof t},fnc:function(t){return"function"==typeof t},und:function(t){return void 0===t},hex:function(t){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t)},rgb:function(t){return/^rgb/.test(t)},hsl:function(t){return/^hsl/.test(t)},col:function(t){return W.hex(t)||W.rgb(t)||W.hsl(t)}},V=function(){function t(t,e,n){return(((1-3*n+3*e)*t+(3*n-6*e))*t+3*e)*t}return function(e,n,r,o){if(0<=e&&1>=e&&0<=r&&1>=r){var i=new Float32Array(11);if(e!==n||r!==o)for(var a=0;11>a;++a)i[a]=t(.1*a,e,r);return function(a){if(e===n&&r===o)return a;if(0===a)return 0;if(1===a)return 1;for(var u=0,c=1;10!==c&&i[c]<=a;++c)u+=.1;--c,c=u+(a-i[c])/(i[c+1]-i[c])*.1;var s=3*(1-3*r+3*e)*c*c+2*(3*r-6*e)*c+3*e;if(.001<=s){for(u=0;4>u&&0!=(s=3*(1-3*r+3*e)*c*c+2*(3*r-6*e)*c+3*e);++u){var l=t(c,e,r)-a;c-=l/s}a=c}else if(0===s)a=c;else{c=u,u+=.1;var f=0;do{0<(s=t(l=c+(u-c)/2,e,r)-a)?u=l:c=l}while(1e-7<Math.abs(s)&&10>++f);a=l}return t(a,n,o)}}}}(),B=function(){function t(t,e){return 0===t||1===t?t:-Math.pow(2,10*(t-1))*Math.sin(2*(t-1-e/(2*Math.PI)*Math.asin(1))*Math.PI/e)}var e,n="Quad Cubic Quart Quint Sine Expo Circ Back Elastic".split(" "),r={In:[[.55,.085,.68,.53],[.55,.055,.675,.19],[.895,.03,.685,.22],[.755,.05,.855,.06],[.47,0,.745,.715],[.95,.05,.795,.035],[.6,.04,.98,.335],[.6,-.28,.735,.045],t],Out:[[.25,.46,.45,.94],[.215,.61,.355,1],[.165,.84,.44,1],[.23,1,.32,1],[.39,.575,.565,1],[.19,1,.22,1],[.075,.82,.165,1],[.175,.885,.32,1.275],function(e,n){return 1-t(1-e,n)}],InOut:[[.455,.03,.515,.955],[.645,.045,.355,1],[.77,0,.175,1],[.86,0,.07,1],[.445,.05,.55,.95],[1,0,0,1],[.785,.135,.15,.86],[.68,-.55,.265,1.55],function(e,n){return.5>e?t(2*e,n)/2:1-t(-2*e+2,n)/2}]},o={linear:V(.25,.25,.75,.75)},i={};for(e in r)i.type=e,r[i.type].forEach(function(t){return function(e,r){o["ease"+t.type+n[r]]=W.fnc(e)?e:V.apply(u,e)}}(i)),i={type:i.type};return o}(),D={css:function(t,e,n){return t.style[e]=n},attribute:function(t,e,n){return t.setAttribute(e,n)},object:function(t,e,n){return t[e]=n},transform:function(t,e,n,r,o){r[o]||(r[o]=[]),r[o].push(e+"("+n+")")}},U=[],z=0,q=function(){function t(){z=requestAnimationFrame(e)}function e(e){var n=U.length;if(n){for(var r=0;r<n;)U[r]&&U[r].tick(e),r++;t()}else cancelAnimationFrame(z),z=0}return t}();return _.version="2.2.0",_.speed=1,_.running=U,_.remove=function(t){t=j(t);for(var e=U.length;e--;)for(var n=U[e],r=n.animations,i=r.length;i--;)o(t,r[i].animatable.target)&&(r.splice(i,1),r.length||n.pause())},_.getValue=b,_.path=function(e,n){var r=W.str(e)?t(e)[0]:e,o=n||100;return function(t){return{el:r,property:t,totalLength:S(r)*(o/100)}}},_.setDashoffset=function(t){var e=S(t);return t.setAttribute("stroke-dasharray",e),e},_.bezier=V,_.easings=B,_.timeline=function(t){var e=_(t);return e.pause(),e.duration=0,e.add=function(n){return e.children.forEach((function(t){t.began=!0,t.completed=!0})),r(n).forEach((function(n){var r=c(n,a(F,t||{}));r.targets=r.targets||t.targets,n=e.duration;var o=r.offset;r.autoplay=!1,r.direction=e.direction,r.offset=W.und(o)?n:m(o,n),e.began=!0,e.completed=!0,e.seek(r.offset),(r=_(r)).began=!0,r.completed=!0,r.duration>n&&(e.duration=r.duration),e.children.push(r)})),e.seek(0),e.reset(),e.autoplay&&e.restart(),e},e},_.random=function(t,e){return Math.floor(Math.random()*(e-t+1))+t},_},void 0===(i="function"==typeof r?r.apply(e,o):r)||(t.exports=i)}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r].call(i.exports,i,i.exports,n),i.exports}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,i(r.key),r)}}function i(t){var e=function(t,e){if("object"!=r(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var o=n.call(t,e||"default");if("object"!=r(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==r(e)?e:e+""}function a(t,e,n){return e=c(e),function(t,e){if(e&&("object"==r(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,u()?Reflect.construct(e,n||[],c(t).constructor):e.apply(t,n))}function u(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(u=function(){return!!t})()}function c(t){return c=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},c(t)}function s(t,e){return s=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},s(t,e)}function l(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function f(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var p=n(554),d=n.n(p),y=function(t){return function(e){customElements.get(t.tagName)?console.warn("Custom element with tag name ".concat(t.tagName," already exists.")):customElements.define(t.tagName,e,t.options)}};function v(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function b(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?v(Object(n),!0).forEach((function(e){m(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function m(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=g(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==g(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},g(t)}var w=new WeakSet,S=new WeakMap,k=new WeakMap;function O(t,e,n,r,o){r===Boolean?n?t.setAttribute(e,""):t.removeAttribute(e):r===Object||r===Array?o&&o.toAttribute?t.setAttribute(e,o.toAttribute(n)):t.setAttribute(e,JSON.stringify(n)):null==n?t.removeAttribute(e):t.setAttribute(e,String(n))}function j(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.type,n=t.attribute,r=void 0===n||n,o=t.reflect,i=void 0!==o&&o,a=t.converter,u=t.readonly,c=void 0!==u&&u,s=function(t){if("string"==typeof t)switch(t){case"string":return String;case"number":return Number;case"boolean":return Boolean;case"object":return Object;case"array":return Array;default:return null}return t}(e);return function(e,n){var o=new WeakMap,u=function(t,e){if(!1!==e)return!0===e?t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase():"string"==typeof e?e:void 0}(n,r);Object.defineProperty(e,n,{get:function(){if(!o.has(this)&&u&&this.hasAttribute&&this.hasAttribute(u)){var t,e=this.getAttribute(u);if(null!==e)return t=a&&a.fromAttribute?a.fromAttribute(e):s===Boolean||(s===Number?Number(e):e),o.set(this,t),"function"==typeof this.renderNow&&this.renderNow(),t}return o.has(this)?o.get(this):s!==Boolean&&void 0},set:function(t){if(!c||!o.has(this)){var e,r=o.get(this),l=!1;if(null==s&&t!==r&&(l=!0),!o.has(this)&&u&&this.hasAttribute&&this.hasAttribute(u)){var f=this.getAttribute(u);if(null!==f)return e=a&&a.fromAttribute?a.fromAttribute(f):s===Boolean||(s===Number?Number(f):f),o.set(this,e),void(this.isConnected?("function"==typeof this.renderNow&&this.renderNow(),this.updated&&this.updated(n,r,e)):this.updated&&(k.has(this)||k.set(this,[]),k.get(this).push({propertyKey:n,oldValue:r,newValue:e})))}if(e=l?t:function(t,e,n){if(n&&n.fromAttribute&&"string"==typeof t)return n.fromAttribute(t);if(null==t)return t;switch(e){case String:return String(t);case Number:return Number(t);case Boolean:return Boolean(t);case Object:return"object"===g(t)?t:JSON.parse(String(t));case Array:return Array.isArray(t)?t:JSON.parse(String(t));default:return t}}(t,s,a),r!==e){var p=!this.shouldUpdate||this.shouldUpdate(n,r,e);if(o.set(this,p?e:r),i&&void 0!==u)if(this.isConnected){w.add(this);try{O(this,u,p?e:r,s,a)}finally{w.delete(this)}}else S.has(this)||S.set(this,new Map),S.get(this).set(u,{value:p?e:r,type:s,converter:a});this.isConnected?("function"==typeof this.renderNow&&this.renderNow(),this.updated&&this.updated(n,r,e)):this.updated&&(k.has(this)||k.set(this,[]),k.get(this).push({propertyKey:n,oldValue:r,newValue:e})),l&&"function"==typeof this.renderNow&&this.renderNow()}}},configurable:!0}),e.constructor._propertyInfo||(e.constructor._propertyInfo=new Map),e.constructor._propertyInfo.set(n,b(b({},t),{},{name:n,attribute:u,type:s})),u&&(e.constructor.observedAttributes||(e.constructor.observedAttributes=[]),e.constructor.observedAttributes.includes(u)||e.constructor.observedAttributes.push(u))}}var A=j({});new Map;function P(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var r,o,i,a,u=[],c=!0,s=!1;try{if(i=(n=n.call(t)).next,0===e){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(u.push(r.value),u.length!==e);c=!0);}catch(t){s=!0,o=t}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(s)throw o}}return u}}(t,e)||C(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(t){return function(t){if(Array.isArray(t))return E(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||C(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(t,e){if(t){if("string"==typeof t)return E(t,e);var n={}.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?E(t,e):void 0}}function E(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n<e;n++)r[n]=t[n];return r}function M(t){return M="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},M(t)}function R(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,N(r.key),r)}}function N(t){var e=function(t,e){if("object"!=M(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=M(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==M(e)?e:e+""}function _(t,e){if(e&&("object"==M(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function T(t){var e="function"==typeof Map?new Map:void 0;return T=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(I())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&F(o,n.prototype),o}(t,arguments,L(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),F(n,t)},T(t)}function I(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(I=function(){return!!t})()}function F(t,e){return F=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},F(t,e)}function L(t){return L=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},L(t)}function W(t,e,n){V(t,e),e.set(t,n)}function V(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function B(t,e,n){return n(z(t,e))}function D(t,e){return t.get(z(t,e))}function U(t,e,n){return t.set(z(t,e),n),n}function z(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}var q=[],X=new WeakMap,$=new WeakMap,Z=new WeakMap,H=new WeakMap,Y=new WeakMap,J=new WeakMap,G=new WeakMap,K=new WeakMap,Q=new WeakMap,tt=new WeakMap,et=new WeakMap,nt=new WeakMap,rt=new WeakMap,ot=new WeakMap,it=new WeakMap,at=new WeakMap,ut=new WeakSet,ct=function(){function t(e){var n,r,o,i;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),r=this,o=L(o=t),function(t,e){V(t,e),e.add(t)}(n=_(r,I()?Reflect.construct(o,i||[],L(r).constructor):o.apply(r,i)),ut),W(n,X,void 0),W(n,$,void 0),W(n,Z,!1),W(n,H,void 0),W(n,Y,void 0),W(n,J,void 0),W(n,G,!1),W(n,K,!1),W(n,Q,!1),W(n,tt,!0),W(n,et,!0),W(n,nt,null),W(n,rt,void 0),W(n,ot,[]),W(n,it,null),W(n,at,null);var a=function(t){console.warn("ElementInternals.".concat(t," called before element was connected. Call will be ignored."))};return U(rt,n,{setValidity:function(t,e,n){a("setValidity")},reportValidity:function(){return a("reportValidity"),!1},checkValidity:function(){return a("checkValidity"),!0},setFormValue:function(t,e){a("setFormValue")}}),z(ut,n,pt).call(n),z(ut,n,st).call(n),_(n,e)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&F(t,e)}(t,T(HTMLElement)),e=t,n=[{key:"isConnected",get:function(){return D(Z,this)}},{key:"updateComplete",get:function(){return D(it,this)?D(it,this):Promise.resolve()}},{key:"internals",get:function(){if(!D(Z,this)&&"object"===M(D(rt,this)))return D(rt,this);var t=this.constructor;if(null===D(nt,this)&&t.formAssociated){var e=D(rt,this);for(var n in U(rt,this,null),U(nt,this,this.attachInternals()),e)"function"!=typeof D(nt,this)[n]&&(D(nt,this)[n]=e[n])}return D(nt,this)},set:function(t){U(nt,this,t)}},{key:"requestUpdate",value:function(){var t=this;return D(it,this)||(U(it,this,new Promise((function(e){U(at,t,e)}))),this.scheduleRender()),D(it,this)}},{key:"addController",value:function(t){D(ot,this).push(t),D(Z,this)&&t.connected&&t.connected()}},{key:"scheduleRender",value:function(){var t;null===(t=D(X,this))||void 0===t||t.scheduleRender()}},{key:"renderNow",value:function(){var t,e=this;if(this.shadowRoot&&(D(it,this)||U(it,this,new Promise((function(t){U(at,e,t)}))),null===(t=D(X,this))||void 0===t||t.renderNow(),this.updated("",null,null),D(at,this))){var n=D(at,this);U(at,this,null),U(it,this,null),n()}}},{key:"updated",value:function(t,e,n){}},{key:"shouldUpdate",value:function(t,e,n){return!0}},{key:"addStylesheetToRootNode",value:function(t,e){if(B(ut,this,vt)){if(D(Y,this)||U(Y,this,new CSSStyleSheet),t=z(ut,this,dt).call(this),D(Y,this).replaceSync(t),D(G,this))return;if(e instanceof Document){var n=z(ut,this,yt).call(this,t);-1===q.indexOf(n)&&(document.adoptedStyleSheets=[].concat(x(document.adoptedStyleSheets),[D(Y,this)]),U(G,this,!0),q.push(n))}else this.shadowRoot.adoptedStyleSheets=[D(Y,this)],U(G,this,!0)}else if(U(J,this,document.createElement("link")),D(J,this).rel="stylesheet",t=z(ut,this,dt).call(this),D(J,this).href=URL.createObjectURL(new Blob([t],{type:"text/css"})),e instanceof Document){var r=z(ut,this,yt).call(this,t);-1===q.indexOf(r)&&(document.head.appendChild(D(J,this)),q.push(r))}else this.shadowRoot.appendChild(D(J,this))}},{key:"templateFromString",value:function(t){var e=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=document.createElement("template");r.innerHTML=t;var o=document.createDocumentFragment();o.appendChild(r.content);var i=o.querySelector("style");return n&&(U(K,this,!0),this.shadowRoot||this.attachShadow({mode:"open",delegatesFocus:D(Q,this)})),i&&(z(ut,this,ht).call(this,i.textContent),i.remove()),window.addEventListener("updatecssapply",(function(){z(ut,e,dt).call(e)})),o}},{key:"adoptStyle",value:function(t,e){this.addStylesheetToRootNode(e,t)}},{key:"createProjector",value:function(t,e){var n=this;return new Promise((function(r,o){var i,a=D($,n)?D($,n):"append";requestAnimationFrame((function(){(i=window.Maquette.createProjector({performanceLogger:function(t){"renderStart"!==t&&"renderDone"!==t||z(ut,n,lt).call(n,t)}}))[a](t,e.bind(n)),U(X,n,i),i.renderNow(),r(i),n.dispatchEvent(new CustomEvent("firstRender",{}))}))}))}},{key:"connectedCallback",value:function(){U(Z,this,!0);for(var t=0,e=D(ot,this).length;t<e;){var n=D(ot,this)[t];null!=n&&n.connected&&n.connected(),t+=1}!function(t){var e=S.get(t);if(e){w.add(t);try{e.forEach((function(e,n){O(t,n,e.value,e.type,e.converter)}))}finally{w.delete(t)}S.delete(t)}var n=k.get(t);if(n&&t.updated){for(var r=n.length,o=0;o<r;){var i=n[o];t.updated(i.propertyKey,i.oldValue,i.newValue),o+=1}k.delete(t)}}(this),this.renderNow()}},{key:"disconnectedCallback",value:function(){U(Z,this,!1);for(var t=0,e=D(ot,this).length;t<e;){var n=D(ot,this)[t];null!=n&&n.disconnected&&n.disconnected(),t+=1}}},{key:"attributeChangedCallback",value:function(t,e,n){if(r=this,!w.has(r)){var r,o=this.constructor;if(null!=o&&o._propertyInfo){var i=Array.from(o._propertyInfo.values()).find((function(e){return e.attribute===t&&"string"==typeof e.attribute}));if(i){var a=i.converter,u=n;null!=a&&a.fromAttribute?u=a.fromAttribute(n):i.type===Boolean?u=null!==n:i.type===Number&&(u=null===n?null:Number(n)),this[i.name]=u,this.scheduleRender()}}}}}],n&&R(e.prototype,n),r&&R(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,n,r}();function st(){"function"==typeof this.init&&(this.init(),D(ot,this).forEach((function(t){null==t||t.init()})))}function lt(t){var e=this;this[t]&&this[t](D("renderStart"===t?tt:et,this));var n="host".concat(t.charAt(0).toUpperCase()).concat(t.slice(1));D(ot,this).forEach((function(r){r[n]&&r[n](D("renderStart"===t?tt:et,e))})),U("renderStart"===t?tt:et,this,!1)}function ft(){var t=this.constructor;if(t._propertyInfo)for(var e=Array.from(t._propertyInfo.entries()),n=0,r=e.length;n<r;){var o=P(e[n],1)[0];if(Object.hasOwn(this,o)){var i=this[o];delete this[o],this[o]=i}n+=1}}function pt(){var t=this,e=this.constructor.projectorMode;U($,this,e||"append");var n=this.constructor.formAssociated,r=this.constructor.delegatesFocus;U(Q,this,r),n&&U(nt,this,this.attachInternals());var o=this.constructor.style;if(o){U(K,this,!0),U($,this,"replace"),this.shadowRoot||this.attachShadow({mode:"open",delegatesFocus:D(Q,this)}),z(ut,this,ht).call(this,o);var i=document.createElement("div");this.shadowRoot.appendChild(i),requestAnimationFrame((function(){t.createProjector(i,t.render).then((function(){z(ut,t,ft).call(t)}))})),window.addEventListener("updatecssapply",(function(){z(ut,t,dt).call(t)}))}}function dt(){var t=function(t){for(var e,n=customElements.get("custom-style").cssApplyVars,r=t,o=/(?:^|\W+)@apply\s*\(?([^);\n]*)\)?/gi,i=function(){var t=e[0],o=e[1];if(n.has(o)){var i="@apply"+t.split("@apply",2)[1],a=n.get(o).map((function(t){return";".concat(t,": var(").concat(o,"_-_").concat(t,");")})).join("");r=r.replace(i,a)}};e=o.exec(r);)i();return r}(D(H,this));return D(H,this)!==t&&(U(H,this,t),B(ut,this,vt)&&D(Y,this)?D(Y,this).replaceSync(t):B(ut,this,vt)||(D(J,this)&&URL.revokeObjectURL(D(J,this).href),D(J,this).href=URL.createObjectURL(new Blob([t],{type:"text/css"})))),t}function ht(t){U(H,this,t),D(K,this)&&this.shadowRoot?this.addStylesheetToRootNode(t,this.shadowRoot):D(K,this)||this.addStylesheetToRootNode(t,document)}function yt(t){for(var e=0,n=0;e<t.length;e++)n=Math.imul(31,n)+t.charCodeAt(e)|0;return n}function vt(t){return Array.isArray(document.adoptedStyleSheets)&&"replace"in CSSStyleSheet.prototype}function bt(t){return bt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},bt(t)}function mt(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,gt(r.key),r)}}function gt(t){var e=function(t,e){if("object"!=bt(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=bt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==bt(e)?e:e+""}function wt(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function St(t,e){return t.get(kt(t,e))}function kt(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}ct._propertyInfo=new Map;var Ot,jt,At,Pt,xt,Ct=new WeakMap,Et=function(){return t=function t(e){var n,r,o;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),wt(this,Ct,void 0),r=this,o=e,(n=Ct).set(kt(n,r),o),St(Ct,this).addController(this)},(e=[{key:"hostElement",get:function(){return St(Ct,this)}},{key:"renderNow",value:function(){var t;null===(t=this.hostElement)||void 0===t||t.renderNow()}},{key:"scheduleRender",value:function(){var t;null===(t=this.hostElement)||void 0===t||t.scheduleRender()}}])&&mt(t.prototype,e),n&&mt(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,n}();function Mt(t){var e="function"==typeof Map?new Map:void 0;return Mt=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(Wt())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&Dt(o,n.prototype),o}(t,arguments,Vt(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),Dt(n,t)},Mt(t)}function Rt(t,e,n,r){var o=Nt(Vt(1&r?t.prototype:t),e,n);return 2&r&&"function"==typeof o?function(t){return o.apply(n,t)}:o}function Nt(){return Nt="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,n){var r=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Vt(t)););return t}(t,e);if(r){var o=Object.getOwnPropertyDescriptor(r,e);return o.get?o.get.call(arguments.length<3?t:n):o.value}},Nt.apply(null,arguments)}function _t(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Tt(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,Ft(r.key),r)}}function It(t,e,n){return e&&Tt(t.prototype,e),n&&Tt(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function Ft(t){var e=function(t,e){if("object"!=Zt(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=Zt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==Zt(e)?e:e+""}function Lt(t,e,n){return e=Vt(e),function(t,e){if(e&&("object"==Zt(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Wt()?Reflect.construct(e,n||[],Vt(t).constructor):e.apply(t,n))}function Wt(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Wt=function(){return!!t})()}function Vt(t){return Vt=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vt(t)}function Bt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Dt(t,e)}function Dt(t,e){return Dt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Dt(t,e)}function Ut(t,e,n){zt(t,e),e.set(t,n)}function zt(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function qt(t,e){return t.get($t(t,e))}function Xt(t,e,n){return t.set($t(t,e),n),n}function $t(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}function Zt(t){return Zt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Zt(t)}var Ht=function(t,e,n,r){var o,i=arguments.length,a=i<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"===("undefined"==typeof Reflect?"undefined":Zt(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u--)(o=t[u])&&(a=(i<3?o(a):i>3?o(e,n,a):o(e,n))||a);return i>3&&a&&Object.defineProperty(e,n,a),a},Yt=(Ot=new WeakMap,function(){function t(){var e;return _t(this,t),Ut(e=Lt(this,t,arguments),Ot,void 0),e.name="foo",Xt(Ot,e,!1),e}return Bt(t,ct),It(t,[{key:"render",value:function(){return h("div",null,"Render on set: ",this.name)}},{key:"connectedCallback",value:function(){if(!qt(Ot,this)){Xt(Ot,this,!0);var t=this.templateFromString("<style>div{color: lime}</style><div />");this.shadowRoot.appendChild(t),this.createProjector(this.shadowRoot.querySelector("div"),this.render)}}}])}());Ht([A],Yt.prototype,"name",void 0),Yt=Ht([y({tagName:"render-on-set"})],Yt);var Jt=(jt=function(){function t(){var e;return _t(this,t),(e=Lt(this,t,arguments))._zero=0,e._renderCount=0,e}return Bt(t,ct),It(t,[{key:"alwaysZero",value:function(){return 0}},{key:"zero",get:function(){return this._zero=this.alwaysZero(),this._zero}},{key:"render",value:function(){return this._renderCount++,h("div",null,"Value of Zero: ",this.zero," - Renders: ",this._renderCount)}}])}(),jt.style="/* */",jt);Ht([A],Jt.prototype,"_zero",void 0),Jt=Ht([y({tagName:"p-bugs-03"})],Jt);var Gt=(At=function(){function t(){return _t(this,t),Lt(this,t,arguments)}return Bt(t,ct),It(t,[{key:"render",value:function(){return h("button",{class:"foo"},h("slot",null))}}])}(),At.style=".foo{background-color: red; color: white; border: 0px;}",At.delegatesFocus=!0,At);Gt=Ht([y({tagName:"my-button"})],Gt);var Kt,Qt,te=(Pt=function(t){function e(){var t;return _t(this,e),(t=Lt(this,e,arguments)).count=1,t.name="",t.foo="foo",t.onInput=function(e){t.name=e.target.value},t.onPeterClick=function(e){console.log({e,p:t})},t.onFooEvent=function(e){t.foo=e.detail.foo},t}return Bt(e,t),It(e,[{key:"enterAnimation",value:function(t,e){d()({targets:t,translateX:[{value:100,duration:1200},{value:0,duration:800}],rotate:"2turn",duration:3e3,loop:!1})}},{key:"exitAnimation",value:function(t,e,n){d()({targets:t,translateX:[{value:100,duration:1200},{value:0,duration:800}],duration:3e3,opacity:0,loop:!1,complete:function(){e(t)}})}},{key:"countUpdateAnimation",value:function(t,e,n){d().timeline().add([{duration:300,targets:t,translateX:200,scale:1.9,easing:"easeOutExpo"},{duration:300,targets:t,translateX:0,scale:1,easing:"easeInExpo"}])}},{key:"render",value:function(){var t=this;return h("div",null,h("input",{type:"checkbox",checked:"Peter"===this.name}),h("h1",{on:{click:function(e){return console.log(e,t.slotContainer)}},id:"Foo"},"Hallo:"),h("h1",{"data-force-event-handler":"true",onclick:function(){return console.log("click "+t.name)},"data-title":this.name&&this.name.toLocaleUpperCase(),class:"title"},this.foo," ",this.name),h("p",{"data-count":this.count,updateAnimation:this.countUpdateAnimation},this.count),h("div",{id:"SlotContainer"},h("slot",null)),h("p",{eventListeners:[["mouseenter",function(){return console.log("enter")},{once:!0}],["mouseleave",function(){return console.log("leave")},{once:!0}]]},"Please enter your name (hint type"," ",h("em",null,h("strong",null,"Peter")),")",h("br",null),h("input",{type:"text",value:this.name,oninput:this.onInput})),h("p",null,h("a",{is:"super-a"},"Super a")),this.name&&this.name.toLowerCase&&this.name.toLowerCase().indexOf("peter")>-1?h("div",{key:"peter",afterRemoved:this.peterRemoved,afterCreate:this.peterCreate,class:"is-peter",eventListeners:[["click",this.onPeterClick]],enterAnimation:function(e,n){return t.enterAnimation(e,n)},exitAnimation:function(e,n,r){return t.exitAnimation(e,n,r)}},h("p",null,"Hello Peter"),h("img",{class:"is-peter--image",src:"https://s-media-cache-ak0.pinimg.com/474x/ce/1d/07/ce1d07011c0afb8e0614a0ae42a8c861.jpg",height:"140"})):"")}},{key:"peterRemoved",value:function(){console.log("removed")}},{key:"peterCreate",value:function(){console.log("create")}},{key:"connectedCallback",value:function(){var t=this;Rt(e,"connectedCallback",this,3)([]);var n=this.templateFromString('\n <style>\n\n :host{\n /* display: none; */\n }\n\n .root {\n display: flex;\n padding: 10px;\n flex-direction: row;\n }\n\n #Foo {\n @apply --mixin-sample;\n text-decoration: underline;\n }\n\n #SlotContainer ::slotted(*) {\n font-weight: bold;\n color: green;\n font-size: 1.5em;\n }\n\n </style>\n <div class="root"></div>\n ');this.shadowRoot.appendChild(n),this.createProjector(this.shadowRoot.querySelector(".root"),this.render),setInterval((function(){t.count++,t.renderNow()}),5e3),window.addEventListener("foo",this.onFooEvent)}},{key:"attributeChangedCallback",value:function(t,e,n){"name"===t&&(this.name=n)}}],[{key:"observedAttributes",get:function(){return["name"]}}])}((Kt=function(){function t(){return _t(this,t),Lt(this,t,arguments)}return Bt(t,ct),It(t,[{key:"render",value:function(){return h("div",null)}}])}(),Qt=new WeakMap,function(t){function e(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return l(t=a(this,e,[].concat(r)),Qt,!1),t}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&s(t,e)}(e,t),n=e,(r=[{key:"highlight",get:function(){return e=this,(t=Qt).get(f(t,e));var t,e},set:function(t){var e,n,r;n=this,r=t,(e=Qt).set(f(e,n),r);var o="unset";t&&(o="yellow");var i=null==this?void 0:this.shadowRoot.querySelector("div");i&&(i.style.backgroundColor=o)}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(Kt))),Pt.isFormAssociated=!0,Pt);Ht([A],te.prototype,"name",void 0),Ht([A],te.prototype,"foo",void 0),Ht([function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return function(n,r){Object.defineProperty(n,r,{get:function(){return e?this.shadowRoot.querySelector(t):this.querySelector(t)}})}}("#SlotContainer")],te.prototype,"slotContainer",void 0),te=Ht([y({tagName:"my-greetings"})],te);var ee=new WeakMap,ne=new WeakSet,re=function(){function t(){var e,n,r;return _t(this,t),e=Lt(this,t,arguments),zt(n=e,r=ne),r.add(n),Ut(e,ee,void 0),Xt(ee,e,!1),e.disabled=!1,e}return Bt(t,Et),It(t,[{key:"connected",value:function(){console.log("connected"),Xt(ee,this,!0),$t(ne,this,oe).call(this)}},{key:"disconnected",value:function(){console.info("disconnected"),Xt(ee,this,!1)}},{key:"shouldUpdate",value:function(t,e,n){return console.info("shouldUpdate",{property:t,oldValue:e,newValue:n}),!0}},{key:"updated",value:function(t,e,n){console.info("updated",{property:t,oldValue:e,newValue:n}),$t(ne,this,oe).call(this)}},{key:"hostRenderStart",value:function(t){console.info("hostRenderStart",{isFirstRender:t,controller:this})}},{key:"hostRenderDone",value:function(t){console.info("hostRenderDone",{isFirstRender:t,controller:this})}}])}();function oe(){qt(ee,this)&&(!0===this.disabled?this.hostElement.setAttribute("disabled","!!"):this.hostElement.removeAttribute("disabled"))}Ht([j({type:"boolean"})],re.prototype,"disabled",void 0);var ie=(xt=function(){function t(){var e;return _t(this,t),(e=Lt(this,t,arguments)).disabledController=new re(e),e.items=["foo","bar"],e.nickName="de prutser",e.render=function(){var t;return h("div",{classes:{foo:!0,foo__disabled:e.disabledController.disabled}},h("div",null,"Hello ",e.name," ",e.nickName?h("span",null," (",e.nickName,")"):null),h("div",null,"age ",e.age),e.data?h("pre",null,JSON.stringify(e.data,null,2)):null,null===(t=e.items)||void 0===t?void 0:t.map((function(t,e){return h("div",{key:"item".concat(e)},t)})))},e}return Bt(t,ct),It(t,[{key:"init",value:function(){console.info("init")}},{key:"shouldUpdate",value:function(t,e,n){return"name"!==t||"string"!=typeof n||"adolf"!==n.toLocaleLowerCase()}},{key:"updated",value:function(t,e,n){console.info("PFoo",{name:t,old:e,newValue:n})}},{key:"attributeChangedCallback",value:function(e,n,r){Rt(t,"attributeChangedCallback",this,3)([e,n,r]),"disabled"===e&&(this.disabledController.disabled=null!==r)}},{key:"renderStart",value:function(t){console.info("renderStart",{isFirstRender:t,tag:this.tagName})}},{key:"renderDone",value:function(t){console.info("renderDone",{isFirstRender:t,tag:this.tagName})}}])}(),xt.style=".foo{color: red} .foo__disabled{opacity: 0.5;}",xt.observedAttributes=["disabled"],xt);Ht([j({type:"string",attribute:"name",reflect:!0})],ie.prototype,"name",void 0),Ht([j({type:"number",attribute:"age",reflect:!0})],ie.prototype,"age",void 0),Ht([j({type:"object",attribute:"data",reflect:!0})],ie.prototype,"data",void 0),Ht([j({attribute:"items",type:"object",reflect:!0,converter:{fromAttribute:function(t){return t?t.split(",").map((function(t){return t.trim()})):null},toAttribute:function(t){return t.join?t.join(","):null}}})],ie.prototype,"items",void 0),Ht([j({type:"string",attribute:"nick-name"})],ie.prototype,"nickName",void 0),ie=Ht([y({tagName:"p-foo"})],ie);var ae=function(){function t(){var e;return _t(this,t),(e=Lt(this,t)).onclick=function(t){t.preventDefault(),alert("super")},e}return Bt(t,Mt(HTMLAnchorElement)),It(t,[{key:"connectedCallback",value:function(){this.classList.add("super"),this.style.color="red"}}])}();window.customElements.define("super-a",ae,{extends:"a"});export{Gt as MyButton,te as MyGreetings,Jt as PBugs03,Yt as RenderOnSet};
1
+ /*! P-ELEMENTS 1.2.32-rc4 - Thu Feb 26 2026 08:31:14 GMT+0100 (Central European Standard Time) */var t={554(t,e,n){var r,o,i,a={scope:{}};a.defineProperty="function"==typeof Object.defineProperties?Object.defineProperty:function(t,e,n){if(n.get||n.set)throw new TypeError("ES3 does not support getters and setters.");t!=Array.prototype&&t!=Object.prototype&&(t[e]=n.value)},a.getGlobal=function(t){return"undefined"!=typeof window&&window===t?t:void 0!==n.g&&null!=n.g?n.g:t},a.global=a.getGlobal(this),a.SYMBOL_PREFIX="jscomp_symbol_",a.initSymbol=function(){a.initSymbol=function(){},a.global.Symbol||(a.global.Symbol=a.Symbol)},a.symbolCounter_=0,a.Symbol=function(t){return a.SYMBOL_PREFIX+(t||"")+a.symbolCounter_++},a.initSymbolIterator=function(){a.initSymbol();var t=a.global.Symbol.iterator;t||(t=a.global.Symbol.iterator=a.global.Symbol("iterator")),"function"!=typeof Array.prototype[t]&&a.defineProperty(Array.prototype,t,{configurable:!0,writable:!0,value:function(){return a.arrayIterator(this)}}),a.initSymbolIterator=function(){}},a.arrayIterator=function(t){var e=0;return a.iteratorPrototype((function(){return e<t.length?{done:!1,value:t[e++]}:{done:!0}}))},a.iteratorPrototype=function(t){return a.initSymbolIterator(),(t={next:t})[a.global.Symbol.iterator]=function(){return this},t},a.array=a.array||{},a.iteratorFromArray=function(t,e){a.initSymbolIterator(),t instanceof String&&(t+="");var n=0,r={next:function(){if(n<t.length){var o=n++;return{value:e(o,t[o]),done:!1}}return r.next=function(){return{done:!0,value:void 0}},r.next()}};return r[Symbol.iterator]=function(){return r},r},a.polyfill=function(t,e,n,r){if(e){for(n=a.global,t=t.split("."),r=0;r<t.length-1;r++){var o=t[r];o in n||(n[o]={}),n=n[o]}(e=e(r=n[t=t[t.length-1]]))!=r&&null!=e&&a.defineProperty(n,t,{configurable:!0,writable:!0,value:e})}},a.polyfill("Array.prototype.keys",(function(t){return t||function(){return a.iteratorFromArray(this,(function(t){return t}))}}),"es6-impl","es3");var u=this;o=[],r=function(){function t(t){if(!W.col(t))try{return document.querySelectorAll(t)}catch(t){}}function e(t,e){for(var n=t.length,r=2<=arguments.length?arguments[1]:void 0,o=[],i=0;i<n;i++)if(i in t){var a=t[i];e.call(r,a,i,t)&&o.push(a)}return o}function n(t){return t.reduce((function(t,e){return t.concat(W.arr(e)?n(e):e)}),[])}function r(e){return W.arr(e)?e:(W.str(e)&&(e=t(e)||e),e instanceof NodeList||e instanceof HTMLCollection?[].slice.call(e):[e])}function o(t,e){return t.some((function(t){return t===e}))}function i(t){var e,n={};for(e in t)n[e]=t[e];return n}function a(t,e){var n,r=i(t);for(n in t)r[n]=e.hasOwnProperty(n)?e[n]:t[n];return r}function c(t,e){var n,r=i(t);for(n in e)r[n]=W.und(t[n])?e[n]:t[n];return r}function l(t){t=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(t,e,n,r){return e+e+n+n+r+r}));var e=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return"rgba("+(t=parseInt(e[1],16))+","+parseInt(e[2],16)+","+(e=parseInt(e[3],16))+",1)"}function s(t){function e(t,e,n){return 0>n&&(n+=1),1<n&&--n,n<1/6?t+6*(e-t)*n:.5>n?e:n<2/3?t+(e-t)*(2/3-n)*6:t}var n=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(t)||/hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*([\d.]+)\)/g.exec(t);t=parseInt(n[1])/360;var r=parseInt(n[2])/100,o=parseInt(n[3])/100;if(n=n[4]||1,0==r)o=r=t=o;else{var i=.5>o?o*(1+r):o+r-o*r,a=2*o-i;o=e(a,i,t+1/3),r=e(a,i,t),t=e(a,i,t-1/3)}return"rgba("+255*o+","+255*r+","+255*t+","+n+")"}function f(t){if(t=/([\+\-]?[0-9#\.]+)(%|px|pt|em|rem|in|cm|mm|ex|ch|pc|vw|vh|vmin|vmax|deg|rad|turn)?$/.exec(t))return t[2]}function p(t){return-1<t.indexOf("translate")||"perspective"===t?"px":-1<t.indexOf("rotate")||-1<t.indexOf("skew")?"deg":void 0}function d(t,e){return W.fnc(t)?t(e.target,e.id,e.total):t}function h(t,e){if(e in t.style)return getComputedStyle(t).getPropertyValue(e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase())||"0"}function y(t,e){return W.dom(t)&&o(L,e)?"transform":W.dom(t)&&(t.getAttribute(e)||W.svg(t)&&t[e])?"attribute":W.dom(t)&&"transform"!==e&&h(t,e)?"css":null!=t[e]?"object":void 0}function v(t,n){var r=p(n);if(r=-1<n.indexOf("scale")?1:0+r,!(t=t.style.transform))return r;for(var o=[],i=[],a=[],u=/(\w+)\((.+?)\)/g;o=u.exec(t);)i.push(o[1]),a.push(o[2]);return t=e(a,(function(t,e){return i[e]===n})),t.length?t[0]:r}function b(t,e){switch(y(t,e)){case"transform":return v(t,e);case"css":return h(t,e);case"attribute":return t.getAttribute(e)}return t[e]||0}function m(t,e){var n=/^(\*=|\+=|-=)/.exec(t);if(!n)return t;var r=f(t)||0;switch(e=parseFloat(e),t=parseFloat(t.replace(n[0],"")),n[0][0]){case"+":return e+t+r;case"-":return e-t+r;case"*":return e*t+r}}function g(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function w(t){t=t.points;for(var e,n=0,r=0;r<t.numberOfItems;r++){var o=t.getItem(r);0<r&&(n+=g(e,o)),e=o}return n}function k(t){if(t.getTotalLength)return t.getTotalLength();switch(t.tagName.toLowerCase()){case"circle":return 2*Math.PI*t.getAttribute("r");case"rect":return 2*t.getAttribute("width")+2*t.getAttribute("height");case"line":return g({x:t.getAttribute("x1"),y:t.getAttribute("y1")},{x:t.getAttribute("x2"),y:t.getAttribute("y2")});case"polyline":return w(t);case"polygon":var e=t.points;return w(t)+g(e.getItem(e.numberOfItems-1),e.getItem(0))}}function S(t,e){function n(n){return n=void 0===n?0:n,t.el.getPointAtLength(1<=e+n?e+n:0)}var r=n(),o=n(-1),i=n(1);switch(t.property){case"x":return r.x;case"y":return r.y;case"angle":return 180*Math.atan2(i.y-o.y,i.x-o.x)/Math.PI}}function O(t,e){var n,r=/-?\d*\.?\d+/g;if(n=W.pth(t)?t.totalLength:t,W.col(n))if(W.rgb(n)){var o=/rgb\((\d+,\s*[\d]+,\s*[\d]+)\)/g.exec(n);n=o?"rgba("+o[1]+",1)":n}else n=W.hex(n)?l(n):W.hsl(n)?s(n):void 0;else o=(o=f(n))?n.substr(0,n.length-o.length):n,n=e&&!/\s/g.test(n)?o+e:o;return{original:n+="",numbers:n.match(r)?n.match(r).map(Number):[0],strings:W.str(t)||e?n.split(r):[]}}function j(t){return e(t=t?n(W.arr(t)?t.map(r):r(t)):[],(function(t,e,n){return n.indexOf(t)===e}))}function P(t){var e=j(t);return e.map((function(t,n){return{target:t,id:n,total:e.length}}))}function C(t,e){var n=i(e);if(W.arr(t)){var o=t.length;2!==o||W.obj(t[0])?W.fnc(e.duration)||(n.duration=e.duration/o):t={value:t}}return r(t).map((function(t,n){return n=n?0:e.delay,t=W.obj(t)&&!W.pth(t)?t:{value:t},W.und(t.delay)&&(t.delay=n),t})).map((function(t){return c(t,n)}))}function A(t,e){var n,r={};for(n in t){var o=d(t[n],e);W.arr(o)&&(o=o.map((function(t){return d(t,e)})),1===o.length&&(o=o[0])),r[n]=o}return r.duration=parseFloat(r.duration),r.delay=parseFloat(r.delay),r}function _(t){return W.arr(t)?V.apply(this,t):U[t]}function x(t,e){var n;return t.tweens.map((function(r){var o=(r=A(r,e)).value,i=b(e.target,t.name),a=n?n.to.original:i,u=(a=W.arr(o)?o[0]:a,m(W.arr(o)?o[1]:o,a));return i=f(u)||f(a)||f(i),r.from=O(a,i),r.to=O(u,i),r.start=n?n.end:t.offset,r.end=r.start+r.delay+r.duration,r.easing=_(r.easing),r.elasticity=(1e3-Math.min(Math.max(r.elasticity,1),999))/1e3,r.isPath=W.pth(o),r.isColor=W.col(r.from.original),r.isColor&&(r.round=1),n=r}))}function E(t,r){return e(n(t.map((function(t){return r.map((function(e){var n=y(t.target,e.name);if(n){var r=x(e,t);e={type:n,property:e.name,animatable:t,tweens:r,duration:r[r.length-1].end,delay:r[0].delay}}else e=void 0;return e}))}))),(function(t){return!W.und(t)}))}function M(t,e,n,r){var o="delay"===t;return e.length?(o?Math.min:Math.max).apply(Math,e.map((function(e){return e[t]}))):o?r.delay:n.offset+r.delay+r.duration}function R(t){var e,n=a(I,t),r=a(F,t),o=P(t.targets),i=[],u=c(n,r);for(e in t)u.hasOwnProperty(e)||"targets"===e||i.push({name:e,offset:u.offset,tweens:C(t[e],r)});return c(n,{children:[],animatables:o,animations:t=E(o,i),duration:M("duration",t,n,r),delay:M("delay",t,n,r)})}function N(t){function n(){return window.Promise&&new Promise((function(t){return f=t}))}function r(t){return d.reversed?d.duration-t:t}function o(t){for(var n=0,r={},o=d.animations,i=o.length;n<i;){var a=o[n],u=a.animatable,c=(l=a.tweens)[p=l.length-1];p&&(c=e(l,(function(e){return t<e.end}))[0]||c);for(var l=Math.min(Math.max(t-c.start-c.delay,0),c.duration)/c.duration,s=isNaN(l)?1:c.easing(l,c.elasticity),f=(l=c.to.strings,c.round),p=[],y=void 0,v=(y=c.to.numbers.length,0);v<y;v++){var b=void 0,m=(b=c.to.numbers[v],c.from.numbers[v]);b=c.isPath?S(c.value,s*b):m+s*(b-m),f&&(c.isColor&&2<v||(b=Math.round(b*f)/f)),p.push(b)}if(c=l.length)for(y=l[0],s=0;s<c;s++)f=l[s+1],v=p[s],isNaN(v)||(y=f?y+(v+f):y+(v+" "));else y=p[0];B[a.type](u.target,a.property,y,r,u.id),a.currentValue=y,n++}if(n=Object.keys(r).length)for(o=0;o<n;o++)T||(T=h(document.body,"transform")?"transform":"-webkit-transform"),d.animatables[o].target.style[T]=r[o].join(" ");d.currentTime=t,d.progress=t/d.duration*100}function i(t){d[t]&&d[t](d)}function a(){d.remaining&&!0!==d.remaining&&d.remaining--}function u(t){var e=d.duration,u=d.offset,h=u+d.delay,y=d.currentTime,v=d.reversed,b=r(t);if(d.children.length){var m=d.children,g=m.length;if(b>=d.currentTime)for(var w=0;w<g;w++)m[w].seek(b);else for(;g--;)m[g].seek(b)}(b>=h||!e)&&(d.began||(d.began=!0,i("begin")),i("run")),b>u&&b<e?o(b):(b<=u&&0!==y&&(o(0),v&&a()),(b>=e&&y!==e||!e)&&(o(e),v||a())),i("update"),t>=e&&(d.remaining?(l=c,"alternate"===d.direction&&(d.reversed=!d.reversed)):(d.pause(),d.completed||(d.completed=!0,i("complete"),"Promise"in window&&(f(),p=n()))),s=0)}t=void 0===t?{}:t;var c,l,s=0,f=null,p=n(),d=R(t);return d.reset=function(){var t=d.direction,e=d.loop;for(d.currentTime=0,d.progress=0,d.paused=!0,d.began=!1,d.completed=!1,d.reversed="reverse"===t,d.remaining="alternate"===t&&1===e?2:e,o(0),t=d.children.length;t--;)d.children[t].reset()},d.tick=function(t){c=t,l||(l=c),u((s+c-l)*N.speed)},d.seek=function(t){u(r(t))},d.pause=function(){var t=D.indexOf(d);-1<t&&D.splice(t,1),d.paused=!0},d.play=function(){d.paused&&(d.paused=!1,l=0,s=r(d.currentTime),D.push(d),z||q())},d.reverse=function(){d.reversed=!d.reversed,l=0,s=r(d.currentTime)},d.restart=function(){d.pause(),d.reset(),d.play()},d.finished=p,d.reset(),d.autoplay&&d.play(),d}var T,I={update:void 0,begin:void 0,run:void 0,complete:void 0,loop:1,direction:"normal",autoplay:!0,offset:0},F={duration:1e3,delay:0,easing:"easeOutElastic",elasticity:500,round:0},L="translateX translateY translateZ rotate rotateX rotateY rotateZ scale scaleX scaleY scaleZ skewX skewY perspective".split(" "),W={arr:function(t){return Array.isArray(t)},obj:function(t){return-1<Object.prototype.toString.call(t).indexOf("Object")},pth:function(t){return W.obj(t)&&t.hasOwnProperty("totalLength")},svg:function(t){return t instanceof SVGElement},dom:function(t){return t.nodeType||W.svg(t)},str:function(t){return"string"==typeof t},fnc:function(t){return"function"==typeof t},und:function(t){return void 0===t},hex:function(t){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t)},rgb:function(t){return/^rgb/.test(t)},hsl:function(t){return/^hsl/.test(t)},col:function(t){return W.hex(t)||W.rgb(t)||W.hsl(t)}},V=function(){function t(t,e,n){return(((1-3*n+3*e)*t+(3*n-6*e))*t+3*e)*t}return function(e,n,r,o){if(0<=e&&1>=e&&0<=r&&1>=r){var i=new Float32Array(11);if(e!==n||r!==o)for(var a=0;11>a;++a)i[a]=t(.1*a,e,r);return function(a){if(e===n&&r===o)return a;if(0===a)return 0;if(1===a)return 1;for(var u=0,c=1;10!==c&&i[c]<=a;++c)u+=.1;--c,c=u+(a-i[c])/(i[c+1]-i[c])*.1;var l=3*(1-3*r+3*e)*c*c+2*(3*r-6*e)*c+3*e;if(.001<=l){for(u=0;4>u&&0!=(l=3*(1-3*r+3*e)*c*c+2*(3*r-6*e)*c+3*e);++u){var s=t(c,e,r)-a;c-=s/l}a=c}else if(0===l)a=c;else{c=u,u+=.1;var f=0;do{0<(l=t(s=c+(u-c)/2,e,r)-a)?u=s:c=s}while(1e-7<Math.abs(l)&&10>++f);a=s}return t(a,n,o)}}}}(),U=function(){function t(t,e){return 0===t||1===t?t:-Math.pow(2,10*(t-1))*Math.sin(2*(t-1-e/(2*Math.PI)*Math.asin(1))*Math.PI/e)}var e,n="Quad Cubic Quart Quint Sine Expo Circ Back Elastic".split(" "),r={In:[[.55,.085,.68,.53],[.55,.055,.675,.19],[.895,.03,.685,.22],[.755,.05,.855,.06],[.47,0,.745,.715],[.95,.05,.795,.035],[.6,.04,.98,.335],[.6,-.28,.735,.045],t],Out:[[.25,.46,.45,.94],[.215,.61,.355,1],[.165,.84,.44,1],[.23,1,.32,1],[.39,.575,.565,1],[.19,1,.22,1],[.075,.82,.165,1],[.175,.885,.32,1.275],function(e,n){return 1-t(1-e,n)}],InOut:[[.455,.03,.515,.955],[.645,.045,.355,1],[.77,0,.175,1],[.86,0,.07,1],[.445,.05,.55,.95],[1,0,0,1],[.785,.135,.15,.86],[.68,-.55,.265,1.55],function(e,n){return.5>e?t(2*e,n)/2:1-t(-2*e+2,n)/2}]},o={linear:V(.25,.25,.75,.75)},i={};for(e in r)i.type=e,r[i.type].forEach(function(t){return function(e,r){o["ease"+t.type+n[r]]=W.fnc(e)?e:V.apply(u,e)}}(i)),i={type:i.type};return o}(),B={css:function(t,e,n){return t.style[e]=n},attribute:function(t,e,n){return t.setAttribute(e,n)},object:function(t,e,n){return t[e]=n},transform:function(t,e,n,r,o){r[o]||(r[o]=[]),r[o].push(e+"("+n+")")}},D=[],z=0,q=function(){function t(){z=requestAnimationFrame(e)}function e(e){var n=D.length;if(n){for(var r=0;r<n;)D[r]&&D[r].tick(e),r++;t()}else cancelAnimationFrame(z),z=0}return t}();return N.version="2.2.0",N.speed=1,N.running=D,N.remove=function(t){t=j(t);for(var e=D.length;e--;)for(var n=D[e],r=n.animations,i=r.length;i--;)o(t,r[i].animatable.target)&&(r.splice(i,1),r.length||n.pause())},N.getValue=b,N.path=function(e,n){var r=W.str(e)?t(e)[0]:e,o=n||100;return function(t){return{el:r,property:t,totalLength:k(r)*(o/100)}}},N.setDashoffset=function(t){var e=k(t);return t.setAttribute("stroke-dasharray",e),e},N.bezier=V,N.easings=U,N.timeline=function(t){var e=N(t);return e.pause(),e.duration=0,e.add=function(n){return e.children.forEach((function(t){t.began=!0,t.completed=!0})),r(n).forEach((function(n){var r=c(n,a(F,t||{}));r.targets=r.targets||t.targets,n=e.duration;var o=r.offset;r.autoplay=!1,r.direction=e.direction,r.offset=W.und(o)?n:m(o,n),e.began=!0,e.completed=!0,e.seek(r.offset),(r=N(r)).began=!0,r.completed=!0,r.duration>n&&(e.duration=r.duration),e.children.push(r)})),e.seek(0),e.reset(),e.autoplay&&e.restart(),e},e},N.random=function(t,e){return Math.floor(Math.random()*(e-t+1))+t},N},void 0===(i="function"==typeof r?r.apply(e,o):r)||(t.exports=i)}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r].call(i.exports,i,i.exports,n),i.exports}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,i(r.key),r)}}function i(t){var e=function(t,e){if("object"!=r(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var o=n.call(t,e||"default");if("object"!=r(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==r(e)?e:e+""}function a(t,e,n){return e=c(e),function(t,e){if(e&&("object"==r(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,u()?Reflect.construct(e,n||[],c(t).constructor):e.apply(t,n))}function u(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(u=function(){return!!t})()}function c(t){return c=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},c(t)}function l(t,e){return l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},l(t,e)}function s(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function f(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var p=n(554),d=n.n(p),y=function(t){return function(e){customElements.get(t.tagName)?console.warn("Custom element with tag name ".concat(t.tagName," already exists.")):customElements.define(t.tagName,e,t.options)}};function v(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function b(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?v(Object(n),!0).forEach((function(e){m(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function m(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=g(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==g(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},g(t)}var w=new WeakSet,k=new WeakMap,S=new WeakMap;function O(t){var e=k.get(t);if(e){w.add(t);try{e.forEach((function(e,n){j(t,n,e.value,e.type,e.converter)}))}finally{w.delete(t)}k.delete(t)}var n=S.get(t);if(n&&t.updated){for(var r=n.length,o=0;o<r;){var i=n[o];t.updated(i.propertyKey,i.oldValue,i.newValue),o+=1}S.delete(t)}}function j(t,e,n,r,o){r===Boolean?n?t.setAttribute(e,""):t.removeAttribute(e):r===Object||r===Array?o&&o.toAttribute?t.setAttribute(e,o.toAttribute(n)):t.setAttribute(e,JSON.stringify(n)):null==n?t.removeAttribute(e):t.setAttribute(e,String(n))}function P(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.type,n=t.attribute,r=void 0===n||n,o=t.reflect,i=void 0!==o&&o,a=t.converter,u=t.readonly,c=void 0!==u&&u,l=function(t){if("string"==typeof t)switch(t){case"string":return String;case"number":return Number;case"boolean":return Boolean;case"object":return Object;case"array":return Array;default:return null}return t}(e);return function(e,n){var o=new WeakMap,u=function(t,e){if(!1!==e)return!0===e?t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase():"string"==typeof e?e:void 0}(n,r);if(!e.__p_elements_core_lifecycle_patch_applied){if(Object.prototype.hasOwnProperty.call(e,"connectedCallback")&&"function"==typeof e.connectedCallback){var s=e.connectedCallback;e.connectedCallback=function(){for(var t="__p_elements_core_pending_updates_called",n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];if(this[t])s&&s.apply(this,r);else{var i=!1,a=O,u=this;globalThis.__origProcessPendingUpdates=O,globalThis.processPendingUpdates=function(t){return t===u&&(i=!0),a(t)};try{s&&s.apply(this,r)}finally{globalThis.processPendingUpdates=globalThis.__origProcessPendingUpdates,delete globalThis.__origProcessPendingUpdates}if(!i){var c=Object.getPrototypeOf(e),l=c&&c.connectedCallback;"function"==typeof l?(l.apply(this,r),"undefined"!=typeof console&&console.info&&console.info("[p-elements-core] connectedCallback: called base automatically for <".concat(this.nodeName,">"))):(O(this),"undefined"!=typeof console&&console.info&&console.info("[p-elements-core] connectedCallback: called processPendingUpdates automatically for <".concat(this.nodeName,">")))}this[t]=!0}}}if(Object.prototype.hasOwnProperty.call(e,"disconnectedCallback")&&"function"==typeof e.disconnectedCallback){var f=e.disconnectedCallback;e.disconnectedCallback=function(){for(var t="__p_elements_core_disconnected_called",n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];if(this[t])f&&f.apply(this,r);else{var i=!1,a=Object.getPrototypeOf(e),u=a&&a.disconnectedCallback;f&&(f.apply(this,r),i=!0),i||"function"!=typeof u||(u.apply(this,r),"undefined"!=typeof console&&console.info&&console.info("[p-elements-core] disconnectedCallback: called base automatically for <".concat(this.nodeName,">"))),this[t]=!0}}}if(Object.prototype.hasOwnProperty.call(e,"attributeChangedCallback")&&"function"==typeof e.attributeChangedCallback){var p=e.attributeChangedCallback;e.attributeChangedCallback=function(){for(var t="__p_elements_core_attribute_changed_called",n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];if(this[t])p&&p.apply(this,r);else{var i=!1,a=Object.getPrototypeOf(e),u=a&&a.attributeChangedCallback;p&&(p.apply(this,r),i=!0),i||"function"!=typeof u||(u.apply(this,r),"undefined"!=typeof console&&console.info&&console.info("[p-elements-core] attributeChangedCallback: called base automatically for <".concat(this.nodeName,">"))),this[t]=!0}}}e.__p_elements_core_lifecycle_patch_applied=!0}Object.defineProperty(e,n,{get:function(){if(!o.has(this)&&u&&this.hasAttribute&&this.hasAttribute(u)){var t,e=this.getAttribute(u);if(null!==e)return t=a&&a.fromAttribute?a.fromAttribute(e):l===Boolean||(l===Number?Number(e):e),o.set(this,t),"function"==typeof this.renderNow&&this.renderNow(),t}return o.has(this)?o.get(this):l!==Boolean&&void 0},set:function(t){if(!c||!o.has(this)){var e,r=o.get(this),s=!1;if(null==l&&t!==r&&(s=!0),!o.has(this)&&u&&this.hasAttribute&&this.hasAttribute(u)){var f=this.getAttribute(u);if(null!==f)return e=a&&a.fromAttribute?a.fromAttribute(f):l===Boolean||(l===Number?Number(f):f),o.set(this,e),void(this.isConnected?("function"==typeof this.renderNow&&this.renderNow(),this.updated&&this.updated(n,r,e)):this.updated&&(S.has(this)||S.set(this,[]),S.get(this).push({propertyKey:n,oldValue:r,newValue:e})))}if(e=s?t:function(t,e,n){if(n&&n.fromAttribute&&"string"==typeof t)return n.fromAttribute(t);if(null==t)return t;switch(e){case String:return String(t);case Number:return Number(t);case Boolean:return Boolean(t);case Object:return"object"===g(t)?t:JSON.parse(String(t));case Array:return Array.isArray(t)?t:JSON.parse(String(t));default:return t}}(t,l,a),r!==e){var p=!this.shouldUpdate||this.shouldUpdate(n,r,e);if(o.set(this,p?e:r),i&&void 0!==u)if(this.isConnected){w.add(this);try{j(this,u,p?e:r,l,a)}finally{w.delete(this)}}else k.has(this)||k.set(this,new Map),k.get(this).set(u,{value:p?e:r,type:l,converter:a});this.isConnected?("function"==typeof this.renderNow&&this.renderNow(),this.updated&&this.updated(n,r,e)):this.updated&&(S.has(this)||S.set(this,[]),S.get(this).push({propertyKey:n,oldValue:r,newValue:e})),s&&"function"==typeof this.renderNow&&this.renderNow()}}},configurable:!0}),e.constructor._propertyInfo||(e.constructor._propertyInfo=new Map),e.constructor._propertyInfo.set(n,b(b({},t),{},{name:n,attribute:u,type:l})),u&&(e.constructor.observedAttributes||(e.constructor.observedAttributes=[]),e.constructor.observedAttributes.includes(u)||e.constructor.observedAttributes.push(u))}}var C=P({});new Map;function A(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var r,o,i,a,u=[],c=!0,l=!1;try{if(i=(n=n.call(t)).next,0===e){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(u.push(r.value),u.length!==e);c=!0);}catch(t){l=!0,o=t}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(t,e)||x(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _(t){return function(t){if(Array.isArray(t))return E(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||x(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(t,e){if(t){if("string"==typeof t)return E(t,e);var n={}.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?E(t,e):void 0}}function E(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n<e;n++)r[n]=t[n];return r}function M(t){return M="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},M(t)}function R(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,N(r.key),r)}}function N(t){var e=function(t,e){if("object"!=M(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=M(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==M(e)?e:e+""}function T(t,e){if(e&&("object"==M(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function I(t){var e="function"==typeof Map?new Map:void 0;return I=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(F())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&L(o,n.prototype),o}(t,arguments,W(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),L(n,t)},I(t)}function F(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(F=function(){return!!t})()}function L(t,e){return L=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},L(t,e)}function W(t){return W=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},W(t)}function V(t,e,n){U(t,e),e.set(t,n)}function U(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function B(t,e,n){return n(q(t,e))}function D(t,e){return t.get(q(t,e))}function z(t,e,n){return t.set(q(t,e),n),n}function q(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}var X=[],$=new WeakMap,Z=new WeakMap,H=new WeakMap,Y=new WeakMap,J=new WeakMap,G=new WeakMap,K=new WeakMap,Q=new WeakMap,tt=new WeakMap,et=new WeakMap,nt=new WeakMap,rt=new WeakMap,ot=new WeakMap,it=new WeakMap,at=new WeakMap,ut=new WeakMap,ct=new WeakSet,lt=function(){function t(e){var n,r,o,i;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),r=this,o=W(o=t),function(t,e){U(t,e),e.add(t)}(n=T(r,F()?Reflect.construct(o,i||[],W(r).constructor):o.apply(r,i)),ct),V(n,$,void 0),V(n,Z,void 0),V(n,H,!1),V(n,Y,void 0),V(n,J,void 0),V(n,G,void 0),V(n,K,!1),V(n,Q,!1),V(n,tt,!1),V(n,et,!0),V(n,nt,!0),V(n,rt,null),V(n,ot,void 0),V(n,it,[]),V(n,at,null),V(n,ut,null);var a=function(t){console.warn("ElementInternals.".concat(t," called before element was connected. Call will be ignored."))};return z(ot,n,{setValidity:function(t,e,n){a("setValidity")},reportValidity:function(){return a("reportValidity"),!1},checkValidity:function(){return a("checkValidity"),!0},setFormValue:function(t,e){a("setFormValue")}}),q(ct,n,dt).call(n),q(ct,n,st).call(n),T(n,e)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&L(t,e)}(t,I(HTMLElement)),e=t,n=[{key:"isConnected",get:function(){return D(H,this)}},{key:"properties",get:function(){var t=this.constructor;return t._propertyInfo?Array.from(t._propertyInfo.values()):[]}},{key:"updateComplete",get:function(){return D(at,this)?D(at,this):Promise.resolve()}},{key:"internals",get:function(){if(!D(H,this)&&"object"===M(D(ot,this)))return D(ot,this);var t=this.constructor;if(null===D(rt,this)&&t.formAssociated){var e=D(ot,this);for(var n in z(ot,this,null),z(rt,this,this.attachInternals()),e)"function"!=typeof D(rt,this)[n]&&(D(rt,this)[n]=e[n])}return D(rt,this)},set:function(t){z(rt,this,t)}},{key:"requestUpdate",value:function(){var t=this;return D(at,this)||(z(at,this,new Promise((function(e){z(ut,t,e)}))),this.scheduleRender()),D(at,this)}},{key:"addController",value:function(t){D(it,this).push(t),D(H,this)&&t.connected&&t.connected()}},{key:"scheduleRender",value:function(){var t;null===(t=D($,this))||void 0===t||t.scheduleRender()}},{key:"renderNow",value:function(){var t,e=this;if(this.shadowRoot&&(D(at,this)||z(at,this,new Promise((function(t){z(ut,e,t)}))),null===(t=D($,this))||void 0===t||t.renderNow(),this.updated("",null,null),D(ut,this))){var n=D(ut,this);z(ut,this,null),z(at,this,null),n()}}},{key:"updated",value:function(t,e,n){}},{key:"shouldUpdate",value:function(t,e,n){return!0}},{key:"addStylesheetToRootNode",value:function(t,e){if(B(ct,this,bt)){if(D(J,this)||z(J,this,new CSSStyleSheet),t=q(ct,this,ht).call(this),D(J,this).replaceSync(t),D(K,this))return;if(e instanceof Document){var n=q(ct,this,vt).call(this,t);-1===X.indexOf(n)&&(document.adoptedStyleSheets=[].concat(_(document.adoptedStyleSheets),[D(J,this)]),z(K,this,!0),X.push(n))}else this.shadowRoot.adoptedStyleSheets=[D(J,this)],z(K,this,!0)}else if(z(G,this,document.createElement("link")),D(G,this).rel="stylesheet",t=q(ct,this,ht).call(this),D(G,this).href=URL.createObjectURL(new Blob([t],{type:"text/css"})),e instanceof Document){var r=q(ct,this,vt).call(this,t);-1===X.indexOf(r)&&(document.head.appendChild(D(G,this)),X.push(r))}else this.shadowRoot.appendChild(D(G,this))}},{key:"templateFromString",value:function(t){var e=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=document.createElement("template");r.innerHTML=t;var o=document.createDocumentFragment();o.appendChild(r.content);var i=o.querySelector("style");return n&&(z(Q,this,!0),this.shadowRoot||this.attachShadow({mode:"open",delegatesFocus:D(tt,this)})),i&&(q(ct,this,yt).call(this,i.textContent),i.remove()),window.addEventListener("updatecssapply",(function(){q(ct,e,ht).call(e)})),o}},{key:"adoptStyle",value:function(t,e){this.addStylesheetToRootNode(e,t)}},{key:"createProjector",value:function(t,e){var n=this;return new Promise((function(r,o){var i,a=D(Z,n)?D(Z,n):"append";requestAnimationFrame((function(){(i=window.Maquette.createProjector({performanceLogger:function(t){"renderStart"!==t&&"renderDone"!==t||q(ct,n,ft).call(n,t)}}))[a](t,e.bind(n)),z($,n,i),i.renderNow(),r(i),n.dispatchEvent(new CustomEvent("firstRender",{}))}))}))}},{key:"connectedCallback",value:function(){z(H,this,!0);for(var t=0,e=D(it,this).length;t<e;){var n=D(it,this)[t];null!=n&&n.connected&&n.connected(),t+=1}O(this),this.renderNow()}},{key:"disconnectedCallback",value:function(){z(H,this,!1);for(var t=0,e=D(it,this).length;t<e;){var n=D(it,this)[t];null!=n&&n.disconnected&&n.disconnected(),t+=1}}},{key:"attributeChangedCallback",value:function(t,e,n){if(r=this,!w.has(r)){var r,o=this.constructor;if(null!=o&&o._propertyInfo){var i=Array.from(o._propertyInfo.values()).find((function(e){return e.attribute===t&&"string"==typeof e.attribute}));if(i){var a=i.converter,u=n;null!=a&&a.fromAttribute?u=a.fromAttribute(n):i.type===Boolean?u=null!==n:i.type===Number&&(u=null===n?null:Number(n)),this[i.name]=u,this.scheduleRender()}}}}}],n&&R(e.prototype,n),r&&R(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,n,r}();function st(){"function"==typeof this.init&&(this.init(),D(it,this).forEach((function(t){null!=t&&t.init&&t.init()})))}function ft(t){var e=this;this[t]&&this[t](D("renderStart"===t?et:nt,this));var n="host".concat(t.charAt(0).toUpperCase()).concat(t.slice(1));D(it,this).forEach((function(r){r[n]&&r[n](D("renderStart"===t?et:nt,e))})),z("renderStart"===t?et:nt,this,!1)}function pt(){var t=this.constructor;if(t._propertyInfo)for(var e=Array.from(t._propertyInfo.entries()),n=0,r=e.length;n<r;){var o=A(e[n],1)[0];if(Object.hasOwn(this,o)){var i=this[o];delete this[o],this[o]=i}n+=1}}function dt(){var t=this,e=this.constructor.projectorMode;z(Z,this,e||"append");var n=this.constructor.formAssociated,r=this.constructor.delegatesFocus;z(tt,this,r),n&&z(rt,this,this.attachInternals());var o=this.constructor.style;if(o){z(Q,this,!0),z(Z,this,"replace"),this.shadowRoot||this.attachShadow({mode:"open",delegatesFocus:D(tt,this)}),q(ct,this,yt).call(this,o);var i=document.createElement("div");this.shadowRoot.appendChild(i),requestAnimationFrame((function(){t.createProjector(i,t.render).then((function(){q(ct,t,pt).call(t)}))})),window.addEventListener("updatecssapply",(function(){q(ct,t,ht).call(t)}))}}function ht(){var t=function(t){for(var e,n=customElements.get("custom-style").cssApplyVars,r=t,o=/(?:^|\W+)@apply\s*\(?([^);\n]*)\)?/gi,i=function(){var t=e[0],o=e[1];if(n.has(o)){var i="@apply"+t.split("@apply",2)[1],a=n.get(o).map((function(t){return";".concat(t,": var(").concat(o,"_-_").concat(t,");")})).join("");r=r.replace(i,a)}};e=o.exec(r);)i();return r}(D(Y,this));return D(Y,this)!==t&&(z(Y,this,t),B(ct,this,bt)&&D(J,this)?D(J,this).replaceSync(t):B(ct,this,bt)||(D(G,this)&&URL.revokeObjectURL(D(G,this).href),D(G,this).href=URL.createObjectURL(new Blob([t],{type:"text/css"})))),t}function yt(t){z(Y,this,t),D(Q,this)&&this.shadowRoot?this.addStylesheetToRootNode(t,this.shadowRoot):D(Q,this)||this.addStylesheetToRootNode(t,document)}function vt(t){for(var e=0,n=0;e<t.length;e++)n=Math.imul(31,n)+t.charCodeAt(e)|0;return n}function bt(t){return Array.isArray(document.adoptedStyleSheets)&&"replace"in CSSStyleSheet.prototype}function mt(t){return mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},mt(t)}function gt(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,wt(r.key),r)}}function wt(t){var e=function(t,e){if("object"!=mt(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=mt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==mt(e)?e:e+""}function kt(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function St(t,e){return t.get(Ot(t,e))}function Ot(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}lt._propertyInfo=new Map;var jt,Pt,Ct,At,_t,xt=new WeakMap,Et=function(){return t=function t(e){var n,r,o;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),kt(this,xt,void 0),r=this,o=e,(n=xt).set(Ot(n,r),o),St(xt,this).addController(this)},(e=[{key:"hostElement",get:function(){return St(xt,this)}},{key:"renderNow",value:function(){var t;null===(t=this.hostElement)||void 0===t||t.renderNow()}},{key:"scheduleRender",value:function(){var t;null===(t=this.hostElement)||void 0===t||t.scheduleRender()}}])&&gt(t.prototype,e),n&&gt(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,n}();function Mt(t){var e="function"==typeof Map?new Map:void 0;return Mt=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(Vt())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&Dt(o,n.prototype),o}(t,arguments,Ut(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),Dt(n,t)},Mt(t)}function Rt(t,e,n,r){var o=Nt(Ut(1&r?t.prototype:t),e,n);return 2&r&&"function"==typeof o?function(t){return o.apply(n,t)}:o}function Nt(){return Nt="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,n){var r=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ut(t)););return t}(t,e);if(r){var o=Object.getOwnPropertyDescriptor(r,e);return o.get?o.get.call(arguments.length<3?t:n):o.value}},Nt.apply(null,arguments)}function Tt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function It(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,Lt(r.key),r)}}function Ft(t,e,n){return e&&It(t.prototype,e),n&&It(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function Lt(t){var e=function(t,e){if("object"!=Ht(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=Ht(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==Ht(e)?e:e+""}function Wt(t,e,n){return e=Ut(e),function(t,e){if(e&&("object"==Ht(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Vt()?Reflect.construct(e,n||[],Ut(t).constructor):e.apply(t,n))}function Vt(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Vt=function(){return!!t})()}function Ut(t){return Ut=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ut(t)}function Bt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Dt(t,e)}function Dt(t,e){return Dt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Dt(t,e)}function zt(t,e,n){qt(t,e),e.set(t,n)}function qt(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Xt(t,e){return t.get(Zt(t,e))}function $t(t,e,n){return t.set(Zt(t,e),n),n}function Zt(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}function Ht(t){return Ht="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ht(t)}var Yt=function(t,e,n,r){var o,i=arguments.length,a=i<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"===("undefined"==typeof Reflect?"undefined":Ht(Reflect))&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u--)(o=t[u])&&(a=(i<3?o(a):i>3?o(e,n,a):o(e,n))||a);return i>3&&a&&Object.defineProperty(e,n,a),a},Jt=(jt=new WeakMap,function(){function t(){var e;return Tt(this,t),zt(e=Wt(this,t,arguments),jt,void 0),e.name="foo",$t(jt,e,!1),e}return Bt(t,lt),Ft(t,[{key:"render",value:function(){return h("div",null,"Render on set: ",this.name)}},{key:"connectedCallback",value:function(){if(!Xt(jt,this)){$t(jt,this,!0);var t=this.templateFromString("<style>div{color: lime}</style><div />");this.shadowRoot.appendChild(t),this.createProjector(this.shadowRoot.querySelector("div"),this.render)}}}])}());Yt([C],Jt.prototype,"name",void 0),Jt=Yt([y({tagName:"render-on-set"})],Jt);var Gt=(Pt=function(){function t(){var e;return Tt(this,t),(e=Wt(this,t,arguments))._zero=0,e._renderCount=0,e}return Bt(t,lt),Ft(t,[{key:"alwaysZero",value:function(){return 0}},{key:"zero",get:function(){return this._zero=this.alwaysZero(),this._zero}},{key:"render",value:function(){return this._renderCount++,h("div",null,"Value of Zero: ",this.zero," - Renders: ",this._renderCount)}}])}(),Pt.style="/* */",Pt);Yt([C],Gt.prototype,"_zero",void 0),Gt=Yt([y({tagName:"p-bugs-03"})],Gt);var Kt=(Ct=function(){function t(){return Tt(this,t),Wt(this,t,arguments)}return Bt(t,lt),Ft(t,[{key:"render",value:function(){return h("button",{class:"foo"},h("slot",null))}}])}(),Ct.style=".foo{background-color: red; color: white; border: 0px;}",Ct.delegatesFocus=!0,Ct);Kt=Yt([y({tagName:"my-button"})],Kt);var Qt,te,ee=(At=function(t){function e(){var t;return Tt(this,e),(t=Wt(this,e,arguments)).count=1,t.name="",t.foo="foo",t.onInput=function(e){t.name=e.target.value},t.onPeterClick=function(e){console.log({e,p:t})},t.onFooEvent=function(e){t.foo=e.detail.foo},t}return Bt(e,t),Ft(e,[{key:"enterAnimation",value:function(t,e){d()({targets:t,translateX:[{value:100,duration:1200},{value:0,duration:800}],rotate:"2turn",duration:3e3,loop:!1})}},{key:"exitAnimation",value:function(t,e,n){d()({targets:t,translateX:[{value:100,duration:1200},{value:0,duration:800}],duration:3e3,opacity:0,loop:!1,complete:function(){e(t)}})}},{key:"countUpdateAnimation",value:function(t,e,n){d().timeline().add([{duration:300,targets:t,translateX:200,scale:1.9,easing:"easeOutExpo"},{duration:300,targets:t,translateX:0,scale:1,easing:"easeInExpo"}])}},{key:"render",value:function(){var t=this;return h("div",null,h("input",{type:"checkbox",checked:"Peter"===this.name}),h("h1",{on:{click:function(e){return console.log(e,t.slotContainer)}},id:"Foo"},"Hallo:"),h("h1",{"data-force-event-handler":"true",onclick:function(){return console.log("click "+t.name)},"data-title":this.name&&this.name.toLocaleUpperCase(),class:"title"},this.foo," ",this.name),h("p",{"data-count":this.count,updateAnimation:this.countUpdateAnimation},this.count),h("div",{id:"SlotContainer"},h("slot",null)),h("p",{eventListeners:[["mouseenter",function(){return console.log("enter")},{once:!0}],["mouseleave",function(){return console.log("leave")},{once:!0}]]},"Please enter your name (hint type"," ",h("em",null,h("strong",null,"Peter")),")",h("br",null),h("input",{type:"text",value:this.name,oninput:this.onInput})),h("p",null,h("a",{is:"super-a"},"Super a")),this.name&&this.name.toLowerCase&&this.name.toLowerCase().indexOf("peter")>-1?h("div",{key:"peter",afterRemoved:this.peterRemoved,afterCreate:this.peterCreate,class:"is-peter",eventListeners:[["click",this.onPeterClick]],enterAnimation:function(e,n){return t.enterAnimation(e,n)},exitAnimation:function(e,n,r){return t.exitAnimation(e,n,r)}},h("p",null,"Hello Peter"),h("img",{class:"is-peter--image",src:"https://s-media-cache-ak0.pinimg.com/474x/ce/1d/07/ce1d07011c0afb8e0614a0ae42a8c861.jpg",height:"140"})):"")}},{key:"peterRemoved",value:function(){console.log("removed")}},{key:"peterCreate",value:function(){console.log("create")}},{key:"connectedCallback",value:function(){var t=this;Rt(e,"connectedCallback",this,3)([]);var n=this.templateFromString('\n <style>\n\n :host{\n /* display: none; */\n }\n\n .root {\n display: flex;\n padding: 10px;\n flex-direction: row;\n }\n\n #Foo {\n @apply --mixin-sample;\n text-decoration: underline;\n }\n\n #SlotContainer ::slotted(*) {\n font-weight: bold;\n color: green;\n font-size: 1.5em;\n }\n\n </style>\n <div class="root"></div>\n ');this.shadowRoot.appendChild(n),this.createProjector(this.shadowRoot.querySelector(".root"),this.render),setInterval((function(){t.count++,t.renderNow()}),5e3),window.addEventListener("foo",this.onFooEvent)}},{key:"attributeChangedCallback",value:function(t,e,n){"name"===t&&(this.name=n)}}],[{key:"observedAttributes",get:function(){return["name"]}}])}((Qt=function(){function t(){return Tt(this,t),Wt(this,t,arguments)}return Bt(t,lt),Ft(t,[{key:"render",value:function(){return h("div",null)}}])}(),te=new WeakMap,function(t){function e(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return s(t=a(this,e,[].concat(r)),te,!1),t}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&l(t,e)}(e,t),n=e,(r=[{key:"highlight",get:function(){return e=this,(t=te).get(f(t,e));var t,e},set:function(t){var e,n,r;n=this,r=t,(e=te).set(f(e,n),r);var o="unset";t&&(o="yellow");var i=null==this?void 0:this.shadowRoot.querySelector("div");i&&(i.style.backgroundColor=o)}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(Qt))),At.isFormAssociated=!0,At);Yt([C],ee.prototype,"name",void 0),Yt([C],ee.prototype,"foo",void 0),Yt([function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return function(n,r){Object.defineProperty(n,r,{get:function(){return e?this.shadowRoot.querySelector(t):this.querySelector(t)}})}}("#SlotContainer")],ee.prototype,"slotContainer",void 0),ee=Yt([y({tagName:"my-greetings"})],ee);var ne=new WeakMap,re=new WeakSet,oe=function(){function t(){var e,n,r;return Tt(this,t),e=Wt(this,t,arguments),qt(n=e,r=re),r.add(n),zt(e,ne,void 0),$t(ne,e,!1),e.disabled=!1,e}return Bt(t,Et),Ft(t,[{key:"connected",value:function(){console.log("connected"),$t(ne,this,!0),Zt(re,this,ie).call(this)}},{key:"disconnected",value:function(){console.info("disconnected"),$t(ne,this,!1)}},{key:"shouldUpdate",value:function(t,e,n){return console.info("shouldUpdate",{property:t,oldValue:e,newValue:n}),!0}},{key:"updated",value:function(t,e,n){console.info("updated",{property:t,oldValue:e,newValue:n}),Zt(re,this,ie).call(this)}},{key:"hostRenderStart",value:function(t){console.info("hostRenderStart",{isFirstRender:t,controller:this})}},{key:"hostRenderDone",value:function(t){console.info("hostRenderDone",{isFirstRender:t,controller:this})}}])}();function ie(){Xt(ne,this)&&(!0===this.disabled?this.hostElement.setAttribute("disabled","!!"):this.hostElement.removeAttribute("disabled"))}Yt([P({type:"boolean"})],oe.prototype,"disabled",void 0);var ae=(_t=function(){function t(){var e;return Tt(this,t),(e=Wt(this,t,arguments)).disabledController=new oe(e),e.items=["foo","bar"],e.nickName="de prutser",e.render=function(){var t;return h("div",{classes:{foo:!0,foo__disabled:e.disabledController.disabled}},h("div",null,"Hello ",e.name," ",e.nickName?h("span",null," (",e.nickName,")"):null),h("div",null,"age ",e.age),e.data?h("pre",null,JSON.stringify(e.data,null,2)):null,null===(t=e.items)||void 0===t?void 0:t.map((function(t,e){return h("div",{key:"item".concat(e)},t)})))},e}return Bt(t,lt),Ft(t,[{key:"init",value:function(){console.info("init")}},{key:"shouldUpdate",value:function(t,e,n){return"name"!==t||"string"!=typeof n||"adolf"!==n.toLocaleLowerCase()}},{key:"updated",value:function(t,e,n){console.info("PFoo",{name:t,old:e,newValue:n})}},{key:"attributeChangedCallback",value:function(e,n,r){Rt(t,"attributeChangedCallback",this,3)([e,n,r]),"disabled"===e&&(this.disabledController.disabled=null!==r)}},{key:"renderStart",value:function(t){console.info("renderStart",{isFirstRender:t,tag:this.tagName})}},{key:"renderDone",value:function(t){console.info("renderDone",{isFirstRender:t,tag:this.tagName})}}])}(),_t.style=".foo{color: red} .foo__disabled{opacity: 0.5;}",_t.observedAttributes=["disabled"],_t);Yt([P({type:"string",attribute:"name",reflect:!0})],ae.prototype,"name",void 0),Yt([P({type:"number",attribute:"age",reflect:!0})],ae.prototype,"age",void 0),Yt([P({type:"object",attribute:"data",reflect:!0})],ae.prototype,"data",void 0),Yt([P({attribute:"items",type:"object",reflect:!0,converter:{fromAttribute:function(t){return t?t.split(",").map((function(t){return t.trim()})):null},toAttribute:function(t){return t.join?t.join(","):null}}})],ae.prototype,"items",void 0),Yt([P({type:"string",attribute:"nick-name"})],ae.prototype,"nickName",void 0),ae=Yt([y({tagName:"p-foo"})],ae);var ue=function(){function t(){var e;return Tt(this,t),(e=Wt(this,t)).onclick=function(t){t.preventDefault(),alert("super")},e}return Bt(t,Mt(HTMLAnchorElement)),Ft(t,[{key:"connectedCallback",value:function(){this.classList.add("super"),this.style.color="red"}}])}();window.customElements.define("super-a",ue,{extends:"a"});export{Kt as MyButton,ee as MyGreetings,Gt as PBugs03,Jt as RenderOnSet};
package/demo/screen.css CHANGED
@@ -1,16 +1,16 @@
1
- /*
2
- prevent FOUC
3
- */
4
- :not(.custom-style-defined) body{
5
- opacity: 0;
6
- }
7
-
8
- .custom-style-defined body{
9
- opacity: 1;
10
- transition: opacity 0.25s;
11
- }
12
-
13
- html, body {
14
- font-family: Verdana, Geneva, Tahoma, sans-serif;
15
- color: #666;
16
- }
1
+ /*
2
+ prevent FOUC
3
+ */
4
+ :not(.custom-style-defined) body{
5
+ opacity: 0;
6
+ }
7
+
8
+ .custom-style-defined body{
9
+ opacity: 1;
10
+ transition: opacity 0.25s;
11
+ }
12
+
13
+ html, body {
14
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
15
+ color: #666;
16
+ }