@maggioli-design-system/mds-input-tip 1.2.3 → 1.4.0

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 (65) hide show
  1. package/dist/cjs/{index-66d8bb25.js → index-4daec419.js} +119 -62
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-input-tip.cjs.entry.js +2 -2
  4. package/dist/cjs/mds-input-tip.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/common/floating-controller.js +3 -3
  7. package/dist/collection/common/slot.js +10 -1
  8. package/dist/collection/common/string.js +30 -0
  9. package/dist/collection/components/mds-input-tip/mds-input-tip.css +127 -19
  10. package/dist/collection/dictionary/keyboard.js +84 -0
  11. package/dist/collection/type/keyboard.js +1 -0
  12. package/dist/components/mds-input-tip.js +1 -1
  13. package/dist/documentation.json +9 -3
  14. package/dist/esm/{index-4e431d49.js → index-07630e0c.js} +119 -62
  15. package/dist/esm/loader.js +2 -2
  16. package/dist/esm/mds-input-tip.entry.js +2 -2
  17. package/dist/esm/mds-input-tip.js +3 -3
  18. package/dist/esm-es5/index-07630e0c.js +1 -0
  19. package/dist/esm-es5/loader.js +1 -1
  20. package/dist/esm-es5/mds-input-tip.entry.js +1 -1
  21. package/dist/esm-es5/mds-input-tip.js +1 -1
  22. package/dist/mds-input-tip/mds-input-tip.esm.js +1 -1
  23. package/dist/mds-input-tip/mds-input-tip.js +1 -1
  24. package/dist/mds-input-tip/p-04193c07.entry.js +1 -0
  25. package/dist/mds-input-tip/{p-c7ede63a.system.js → p-41e6f98e.system.js} +1 -1
  26. package/dist/mds-input-tip/p-937c40eb.js +2 -0
  27. package/dist/mds-input-tip/p-d28332e9.system.js +2 -0
  28. package/dist/mds-input-tip/p-d8a5540f.system.entry.js +1 -0
  29. package/dist/stats.json +45 -33
  30. package/dist/types/common/slot.d.ts +2 -1
  31. package/dist/types/common/string.d.ts +4 -0
  32. package/dist/types/dictionary/keyboard.d.ts +2 -0
  33. package/dist/types/type/keyboard.d.ts +12 -0
  34. package/documentation.json +29 -3
  35. package/package.json +4 -4
  36. package/readme.md +7 -0
  37. package/src/common/floating-controller.ts +6 -6
  38. package/src/common/slot.ts +11 -0
  39. package/src/common/string.ts +42 -0
  40. package/src/components/mds-input-tip/css/mds-input-tip-pref-animation.css +5 -12
  41. package/src/components/mds-input-tip/mds-input-tip.css +6 -6
  42. package/src/components/mds-input-tip/readme.md +7 -0
  43. package/src/dictionary/keyboard.ts +87 -0
  44. package/src/fixtures/icons.json +18 -1
  45. package/src/meta/keyboard/keys.json +83 -0
  46. package/src/tailwind/components.css +11 -46
  47. package/src/tailwind/fouc.css +118 -0
  48. package/src/tailwind/index.css +4 -0
  49. package/src/type/keyboard.ts +93 -0
  50. package/www/build/mds-input-tip.esm.js +1 -1
  51. package/www/build/mds-input-tip.js +1 -1
  52. package/www/build/p-04193c07.entry.js +1 -0
  53. package/www/build/{p-c7ede63a.system.js → p-41e6f98e.system.js} +1 -1
  54. package/www/build/p-937c40eb.js +2 -0
  55. package/www/build/p-d28332e9.system.js +2 -0
  56. package/www/build/p-d8a5540f.system.entry.js +1 -0
  57. package/dist/esm-es5/index-4e431d49.js +0 -1
  58. package/dist/mds-input-tip/p-3bf85392.entry.js +0 -1
  59. package/dist/mds-input-tip/p-5c7f52a4.system.entry.js +0 -1
  60. package/dist/mds-input-tip/p-7eeec96b.system.js +0 -2
  61. package/dist/mds-input-tip/p-b8376582.js +0 -2
  62. package/www/build/p-3bf85392.entry.js +0 -1
  63. package/www/build/p-5c7f52a4.system.entry.js +0 -1
  64. package/www/build/p-7eeec96b.system.js +0 -2
  65. package/www/build/p-b8376582.js +0 -2
@@ -1,17 +1,13 @@
1
- @tailwind utilities;
1
+ /**
2
+ * @prop --mds-input-tip-active-translate: Set the translate of the tip when it is active.
3
+ */
2
4
 
3
5
  :host {
4
-
5
6
  --mds-input-tip-active-translate: translate(0, 0);
6
-
7
7
  left: 0.25rem;
8
-
9
8
  right: 0.25rem;
10
-
11
9
  gap: 0.25rem;
12
-
13
10
  transition-duration: 300ms;
14
-
15
11
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
16
12
 
17
13
  display: flex;
@@ -35,37 +31,149 @@
35
31
  }
36
32
 
37
33
  :host([position="top"][active]:not([active="false"])) {
38
-
39
34
  --mds-input-tip-active-translate: translate(calc(0.25rem * -1), calc(0.25rem * -1));
40
35
  }
41
36
 
42
- :host([position="top"][active]:not([active="false"])) ::slotted( mds-input-tip-item ) {
37
+ :host([position="top"][active]:not([active="false"])) ::slotted( mds-input-tip-item) {
43
38
  border-top-left-radius: 0;
44
39
  border-top-right-radius: 0;
45
40
  }
46
41
 
47
42
  :host([position="bottom"][active]:not([active="false"])) {
48
-
49
43
  --mds-input-tip-active-translate: translate(calc(0.25rem * -1), 0.25rem);
50
44
  }
51
45
 
52
- :host([position="bottom"][active]:not([active="false"])) ::slotted( mds-input-tip-item ) {
46
+ :host([position="bottom"][active]:not([active="false"])) ::slotted( mds-input-tip-item) {
53
47
  border-bottom-left-radius: 0;
54
48
  border-bottom-right-radius: 0;
55
49
  }
56
50
 
57
- @container style(--magma-pref-animation: reduce) {
58
- :host {
51
+ :host-context(.pref-animation-reduce) {
52
+ transition-duration: 0s;
53
+ }
54
+
55
+ @media (prefers-reduced-motion) {
56
+ :host-context(.pref-animation-system) {
59
57
  transition-duration: 0s;
60
58
  }
61
59
  }
62
60
 
63
- @container style(--magma-pref-animation: system) {
61
+ :host(:not(:is([hydrated], .hydrated))) {
62
+ animation-duration: 0s;
63
+ border-color: transparent;
64
+ box-shadow: 0 0 0 transparent;
65
+ opacity: 0;
66
+ outline-color: transparent;
67
+ transition-delay: 0s;
68
+ transition-duration: 0s;
69
+ visibility: hidden;
70
+ }
64
71
 
65
- @media (prefers-reduced-motion) {
66
- :host {
67
- transition-duration: 0s;
68
- }
69
- }
72
+ /* TODO refact(stencil): Uses only used selector from parent shadowDOM component */
73
+
74
+ mds-accordion:not(:is([hydrated], .hydrated)),
75
+ mds-accordion-item:not(:is([hydrated], .hydrated)),
76
+ mds-accordion-timer:not(:is([hydrated], .hydrated)),
77
+ mds-accordion-timer-item:not(:is([hydrated], .hydrated)),
78
+ mds-author:not(:is([hydrated], .hydrated)),
79
+ mds-avatar:not(:is([hydrated], .hydrated)),
80
+ mds-badge:not(:is([hydrated], .hydrated)),
81
+ mds-banner:not(:is([hydrated], .hydrated)),
82
+ mds-benchmark-bar:not(:is([hydrated], .hydrated)),
83
+ mds-bibliography:not(:is([hydrated], .hydrated)),
84
+ mds-breadcrumb:not(:is([hydrated], .hydrated)),
85
+ mds-breadcrumb-item:not(:is([hydrated], .hydrated)),
86
+ mds-button:not(:is([hydrated], .hydrated)),
87
+ mds-card:not(:is([hydrated], .hydrated)),
88
+ mds-card-content:not(:is([hydrated], .hydrated)),
89
+ mds-card-footer:not(:is([hydrated], .hydrated)),
90
+ mds-card-header:not(:is([hydrated], .hydrated)),
91
+ mds-card-media:not(:is([hydrated], .hydrated)),
92
+ mds-chip:not(:is([hydrated], .hydrated)),
93
+ mds-details:not(:is([hydrated], .hydrated)),
94
+ mds-dropdown:not(:is([hydrated], .hydrated)),
95
+ mds-entity:not(:is([hydrated], .hydrated)),
96
+ mds-file:not(:is([hydrated], .hydrated)),
97
+ mds-file-preview:not(:is([hydrated], .hydrated)),
98
+ mds-filter:not(:is([hydrated], .hydrated)),
99
+ mds-filter-item:not(:is([hydrated], .hydrated)),
100
+ mds-header:not(:is([hydrated], .hydrated)),
101
+ mds-header-bar:not(:is([hydrated], .hydrated)),
102
+ mds-help:not(:is([hydrated], .hydrated)),
103
+ mds-horizontal-scroll:not(:is([hydrated], .hydrated)),
104
+ mds-hr:not(:is([hydrated], .hydrated)),
105
+ mds-icon:not(:is([hydrated], .hydrated)),
106
+ mds-img:not(:is([hydrated], .hydrated)),
107
+ mds-input:not(:is([hydrated], .hydrated)),
108
+ mds-input-field:not(:is([hydrated], .hydrated)),
109
+ mds-input-range:not(:is([hydrated], .hydrated)),
110
+ mds-input-select:not(:is([hydrated], .hydrated)),
111
+ mds-input-switch:not(:is([hydrated], .hydrated)),
112
+ mds-input-tip:not(:is([hydrated], .hydrated)),
113
+ mds-input-tip-item:not(:is([hydrated], .hydrated)),
114
+ mds-input-upload:not(:is([hydrated], .hydrated)),
115
+ mds-keyboard:not(:is([hydrated], .hydrated)),
116
+ mds-keyboard-key:not(:is([hydrated], .hydrated)),
117
+ mds-kpi:not(:is([hydrated], .hydrated)),
118
+ mds-kpi-item:not(:is([hydrated], .hydrated)),
119
+ mds-label:not(:is([hydrated], .hydrated)),
120
+ mds-list:not(:is([hydrated], .hydrated)),
121
+ mds-list-item:not(:is([hydrated], .hydrated)),
122
+ mds-modal:not(:is([hydrated], .hydrated)),
123
+ mds-note:not(:is([hydrated], .hydrated)),
124
+ mds-notification:not(:is([hydrated], .hydrated)),
125
+ mds-paginator:not(:is([hydrated], .hydrated)),
126
+ mds-paginator-item:not(:is([hydrated], .hydrated)),
127
+ mds-pref:not(:is([hydrated], .hydrated)),
128
+ mds-pref-animation:not(:is([hydrated], .hydrated)),
129
+ mds-pref-consumption:not(:is([hydrated], .hydrated)),
130
+ mds-pref-contrast:not(:is([hydrated], .hydrated)),
131
+ mds-pref-language:not(:is([hydrated], .hydrated)),
132
+ mds-pref-language-item:not(:is([hydrated], .hydrated)),
133
+ mds-pref-theme:not(:is([hydrated], .hydrated)),
134
+ mds-price-table:not(:is([hydrated], .hydrated)),
135
+ mds-price-table-features:not(:is([hydrated], .hydrated)),
136
+ mds-price-table-features-cell:not(:is([hydrated], .hydrated)),
137
+ mds-price-table-features-row:not(:is([hydrated], .hydrated)),
138
+ mds-price-table-header:not(:is([hydrated], .hydrated)),
139
+ mds-price-table-list:not(:is([hydrated], .hydrated)),
140
+ mds-price-table-list-item:not(:is([hydrated], .hydrated)),
141
+ mds-progress:not(:is([hydrated], .hydrated)),
142
+ mds-push-notification:not(:is([hydrated], .hydrated)),
143
+ mds-push-notifications:not(:is([hydrated], .hydrated)),
144
+ mds-quote:not(:is([hydrated], .hydrated)),
145
+ mds-separator:not(:is([hydrated], .hydrated)),
146
+ mds-spinner:not(:is([hydrated], .hydrated)),
147
+ mds-stepper-bar:not(:is([hydrated], .hydrated)),
148
+ mds-stepper-bar-item:not(:is([hydrated], .hydrated)),
149
+ mds-tab:not(:is([hydrated], .hydrated)),
150
+ mds-tab-bar:not(:is([hydrated], .hydrated)),
151
+ mds-tab-bar-item:not(:is([hydrated], .hydrated)),
152
+ mds-tab-item:not(:is([hydrated], .hydrated)),
153
+ mds-table:not(:is([hydrated], .hydrated)),
154
+ mds-table-body:not(:is([hydrated], .hydrated)),
155
+ mds-table-cell:not(:is([hydrated], .hydrated)),
156
+ mds-table-footer:not(:is([hydrated], .hydrated)),
157
+ mds-table-header:not(:is([hydrated], .hydrated)),
158
+ mds-table-header-cell:not(:is([hydrated], .hydrated)),
159
+ mds-table-row:not(:is([hydrated], .hydrated)),
160
+ mds-text:not(:is([hydrated], .hydrated)),
161
+ mds-toast:not(:is([hydrated], .hydrated)),
162
+ mds-tooltip:not(:is([hydrated], .hydrated)),
163
+ mds-tree:not(:is([hydrated], .hydrated)),
164
+ mds-tree-item:not(:is([hydrated], .hydrated)),
165
+ mds-url-view:not(:is([hydrated], .hydrated)),
166
+ mds-usage:not(:is([hydrated], .hydrated)),
167
+ mds-video-wall:not(:is([hydrated], .hydrated)),
168
+ mds-zero:not(:is([hydrated], .hydrated))
169
+ {
170
+ animation-duration: 0s;
171
+ border-color: transparent;
172
+ box-shadow: 0 0 0 transparent;
173
+ opacity: 0;
174
+ outline-color: transparent;
175
+ transition-delay: 0s;
176
+ transition-duration: 0s;
177
+ visibility: hidden;
70
178
  }
71
179
 
@@ -0,0 +1,84 @@
1
+ const keyboardKeyNameDictionary = [
2
+ '0',
3
+ '1',
4
+ '2',
5
+ '3',
6
+ '4',
7
+ '5',
8
+ '6',
9
+ '7',
10
+ '8',
11
+ '9',
12
+ 'a',
13
+ 'alt',
14
+ 'altleft',
15
+ 'altright',
16
+ 'arrowdown',
17
+ 'arrowleft',
18
+ 'arrowright',
19
+ 'arrowup',
20
+ 'b',
21
+ 'backspace',
22
+ 'c',
23
+ 'capslock',
24
+ 'command',
25
+ 'commandleft',
26
+ 'commandright',
27
+ 'control',
28
+ 'controlleft',
29
+ 'controlright',
30
+ 'd',
31
+ 'delete',
32
+ 'e',
33
+ 'end',
34
+ 'enter',
35
+ 'escape',
36
+ 'f',
37
+ 'f1',
38
+ 'f10',
39
+ 'f11',
40
+ 'f12',
41
+ 'f2',
42
+ 'f3',
43
+ 'f4',
44
+ 'f5',
45
+ 'f6',
46
+ 'f7',
47
+ 'f8',
48
+ 'f9',
49
+ 'g',
50
+ 'h',
51
+ 'home',
52
+ 'i',
53
+ 'j',
54
+ 'k',
55
+ 'l',
56
+ 'm',
57
+ 'n',
58
+ 'o',
59
+ 'option',
60
+ 'optionleft',
61
+ 'optionright',
62
+ 'p',
63
+ 'pagedown',
64
+ 'pageup',
65
+ 'q',
66
+ 'r',
67
+ 's',
68
+ 'shift',
69
+ 'shiftleft',
70
+ 'shiftright',
71
+ 'space',
72
+ 't',
73
+ 'tab',
74
+ 'u',
75
+ 'v',
76
+ 'w',
77
+ 'windows',
78
+ 'windowsleft',
79
+ 'windowsright',
80
+ 'x',
81
+ 'y',
82
+ 'z',
83
+ ];
84
+ export { keyboardKeyNameDictionary, };
@@ -0,0 +1 @@
1
+ export {};
@@ -1,6 +1,6 @@
1
1
  import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
2
2
 
3
- const mdsInputTipCss = "@tailwind utilities;\n\n:host {\n\n --mds-input-tip-active-translate: translate(0, 0);\n\n left: 0.25rem;\n\n right: 0.25rem;\n\n gap: 0.25rem;\n\n -webkit-transition-duration: 300ms;\n\n transition-duration: 300ms;\n\n -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);\n\n transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);\n\n display: -ms-flexbox;\n\n display: flex;\n -ms-flex-pack: end;\n justify-content: flex-end;\n pointer-events: none;\n position: absolute;\n -webkit-transform: var(--mds-input-tip-active-translate);\n transform: var(--mds-input-tip-active-translate);\n -webkit-transition-property: -webkit-transform;\n transition-property: -webkit-transform;\n transition-property: transform;\n transition-property: transform, -webkit-transform;\n}\n\n:host(:empty) {\n display: none;\n}\n\n:host([position=\"top\"]) {\n top: 0.25rem;\n}\n\n:host([position=\"bottom\"]) {\n bottom: 0.25rem;\n}\n\n:host([position=\"top\"][active]:not([active=\"false\"])) {\n\n --mds-input-tip-active-translate: translate(calc(0.25rem * -1), calc(0.25rem * -1));\n}\n\n:host([position=\"top\"][active]:not([active=\"false\"])) ::slotted( mds-input-tip-item ) {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n:host([position=\"bottom\"][active]:not([active=\"false\"])) {\n\n --mds-input-tip-active-translate: translate(calc(0.25rem * -1), 0.25rem);\n}\n\n:host([position=\"bottom\"][active]:not([active=\"false\"])) ::slotted( mds-input-tip-item ) {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n@container style(--magma-pref-animation: reduce) {\n :host {\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n\n@container style(--magma-pref-animation: system) {\n\n @media (prefers-reduced-motion) {\n :host {\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n }\n}\n\n";
3
+ const mdsInputTipCss = ":host{--mds-input-tip-active-translate:translate(0, 0);left:0.25rem;right:0.25rem;gap:0.25rem;-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;pointer-events:none;position:absolute;-webkit-transform:var(--mds-input-tip-active-translate);transform:var(--mds-input-tip-active-translate);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}:host(:empty){display:none}:host([position=\"top\"]){top:0.25rem}:host([position=\"bottom\"]){bottom:0.25rem}:host([position=\"top\"][active]:not([active=\"false\"])){--mds-input-tip-active-translate:translate(calc(0.25rem * -1), calc(0.25rem * -1))}:host([position=\"top\"][active]:not([active=\"false\"])) ::slotted(mds-input-tip-item){border-top-left-radius:0;border-top-right-radius:0}:host([position=\"bottom\"][active]:not([active=\"false\"])){--mds-input-tip-active-translate:translate(calc(0.25rem * -1), 0.25rem)}:host([position=\"bottom\"][active]:not([active=\"false\"])) ::slotted(mds-input-tip-item){border-bottom-left-radius:0;border-bottom-right-radius:0}:host-context(.pref-animation-reduce){-webkit-transition-duration:0s;transition-duration:0s}@media (prefers-reduced-motion){:host-context(.pref-animation-system){-webkit-transition-duration:0s;transition-duration:0s}}:host(:not(:is([hydrated],.hydrated))){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}mds-accordion:not(:is([hydrated],.hydrated)),mds-accordion-item:not(:is([hydrated],.hydrated)),mds-accordion-timer:not(:is([hydrated],.hydrated)),mds-accordion-timer-item:not(:is([hydrated],.hydrated)),mds-author:not(:is([hydrated],.hydrated)),mds-avatar:not(:is([hydrated],.hydrated)),mds-badge:not(:is([hydrated],.hydrated)),mds-banner:not(:is([hydrated],.hydrated)),mds-benchmark-bar:not(:is([hydrated],.hydrated)),mds-bibliography:not(:is([hydrated],.hydrated)),mds-breadcrumb:not(:is([hydrated],.hydrated)),mds-breadcrumb-item:not(:is([hydrated],.hydrated)),mds-button:not(:is([hydrated],.hydrated)),mds-card:not(:is([hydrated],.hydrated)),mds-card-content:not(:is([hydrated],.hydrated)),mds-card-footer:not(:is([hydrated],.hydrated)),mds-card-header:not(:is([hydrated],.hydrated)),mds-card-media:not(:is([hydrated],.hydrated)),mds-chip:not(:is([hydrated],.hydrated)),mds-details:not(:is([hydrated],.hydrated)),mds-dropdown:not(:is([hydrated],.hydrated)),mds-entity:not(:is([hydrated],.hydrated)),mds-file:not(:is([hydrated],.hydrated)),mds-file-preview:not(:is([hydrated],.hydrated)),mds-filter:not(:is([hydrated],.hydrated)),mds-filter-item:not(:is([hydrated],.hydrated)),mds-header:not(:is([hydrated],.hydrated)),mds-header-bar:not(:is([hydrated],.hydrated)),mds-help:not(:is([hydrated],.hydrated)),mds-horizontal-scroll:not(:is([hydrated],.hydrated)),mds-hr:not(:is([hydrated],.hydrated)),mds-icon:not(:is([hydrated],.hydrated)),mds-img:not(:is([hydrated],.hydrated)),mds-input:not(:is([hydrated],.hydrated)),mds-input-field:not(:is([hydrated],.hydrated)),mds-input-range:not(:is([hydrated],.hydrated)),mds-input-select:not(:is([hydrated],.hydrated)),mds-input-switch:not(:is([hydrated],.hydrated)),mds-input-tip:not(:is([hydrated],.hydrated)),mds-input-tip-item:not(:is([hydrated],.hydrated)),mds-input-upload:not(:is([hydrated],.hydrated)),mds-keyboard:not(:is([hydrated],.hydrated)),mds-keyboard-key:not(:is([hydrated],.hydrated)),mds-kpi:not(:is([hydrated],.hydrated)),mds-kpi-item:not(:is([hydrated],.hydrated)),mds-label:not(:is([hydrated],.hydrated)),mds-list:not(:is([hydrated],.hydrated)),mds-list-item:not(:is([hydrated],.hydrated)),mds-modal:not(:is([hydrated],.hydrated)),mds-note:not(:is([hydrated],.hydrated)),mds-notification:not(:is([hydrated],.hydrated)),mds-paginator:not(:is([hydrated],.hydrated)),mds-paginator-item:not(:is([hydrated],.hydrated)),mds-pref:not(:is([hydrated],.hydrated)),mds-pref-animation:not(:is([hydrated],.hydrated)),mds-pref-consumption:not(:is([hydrated],.hydrated)),mds-pref-contrast:not(:is([hydrated],.hydrated)),mds-pref-language:not(:is([hydrated],.hydrated)),mds-pref-language-item:not(:is([hydrated],.hydrated)),mds-pref-theme:not(:is([hydrated],.hydrated)),mds-price-table:not(:is([hydrated],.hydrated)),mds-price-table-features:not(:is([hydrated],.hydrated)),mds-price-table-features-cell:not(:is([hydrated],.hydrated)),mds-price-table-features-row:not(:is([hydrated],.hydrated)),mds-price-table-header:not(:is([hydrated],.hydrated)),mds-price-table-list:not(:is([hydrated],.hydrated)),mds-price-table-list-item:not(:is([hydrated],.hydrated)),mds-progress:not(:is([hydrated],.hydrated)),mds-push-notification:not(:is([hydrated],.hydrated)),mds-push-notifications:not(:is([hydrated],.hydrated)),mds-quote:not(:is([hydrated],.hydrated)),mds-separator:not(:is([hydrated],.hydrated)),mds-spinner:not(:is([hydrated],.hydrated)),mds-stepper-bar:not(:is([hydrated],.hydrated)),mds-stepper-bar-item:not(:is([hydrated],.hydrated)),mds-tab:not(:is([hydrated],.hydrated)),mds-tab-bar:not(:is([hydrated],.hydrated)),mds-tab-bar-item:not(:is([hydrated],.hydrated)),mds-tab-item:not(:is([hydrated],.hydrated)),mds-table:not(:is([hydrated],.hydrated)),mds-table-body:not(:is([hydrated],.hydrated)),mds-table-cell:not(:is([hydrated],.hydrated)),mds-table-footer:not(:is([hydrated],.hydrated)),mds-table-header:not(:is([hydrated],.hydrated)),mds-table-header-cell:not(:is([hydrated],.hydrated)),mds-table-row:not(:is([hydrated],.hydrated)),mds-text:not(:is([hydrated],.hydrated)),mds-toast:not(:is([hydrated],.hydrated)),mds-tooltip:not(:is([hydrated],.hydrated)),mds-tree:not(:is([hydrated],.hydrated)),mds-tree-item:not(:is([hydrated],.hydrated)),mds-url-view:not(:is([hydrated],.hydrated)),mds-usage:not(:is([hydrated],.hydrated)),mds-video-wall:not(:is([hydrated],.hydrated)),mds-zero:not(:is([hydrated],.hydrated)){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}";
4
4
  const MdsInputTipStyle0 = mdsInputTipCss;
5
5
 
6
6
  const MdsInputTip$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputTip extends HTMLElement {
@@ -1,8 +1,8 @@
1
1
  {
2
- "timestamp": "2025-02-06T09:13:05",
2
+ "timestamp": "2025-03-05T17:39:52",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
- "version": "4.25.1",
5
+ "version": "4.27.2",
6
6
  "typescriptVersion": "5.5.4"
7
7
  },
8
8
  "components": [
@@ -83,7 +83,13 @@
83
83
  "methods": [],
84
84
  "events": [],
85
85
  "listeners": [],
86
- "styles": [],
86
+ "styles": [
87
+ {
88
+ "name": "--mds-input-tip-active-translate",
89
+ "annotation": "prop",
90
+ "docs": "Set the translate of the tip when it is active."
91
+ }
92
+ ],
87
93
  "slots": [],
88
94
  "parts": [],
89
95
  "dependents": [],