@maggioli-design-system/mds-input-range 1.0.1

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 (187) hide show
  1. package/dist/cjs/index-5f49298d.js +1790 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +13 -0
  4. package/dist/cjs/mds-input-range.cjs.entry.js +81 -0
  5. package/dist/cjs/mds-input-range.cjs.js +23 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/common/aria.js +29 -0
  8. package/dist/collection/common/file.js +48 -0
  9. package/dist/collection/common/icon.js +15 -0
  10. package/dist/collection/common/keyboard-manager.js +45 -0
  11. package/dist/collection/common/unit.js +22 -0
  12. package/dist/collection/common/yugop/core.js +16 -0
  13. package/dist/collection/common/yugop/index.js +3 -0
  14. package/dist/collection/common/yugop/random-text.js +59 -0
  15. package/dist/collection/common/yugop/utils/math.js +11 -0
  16. package/dist/collection/common/yugop/utils/noop.js +1 -0
  17. package/dist/collection/common/yugop/utils/prng.js +21 -0
  18. package/dist/collection/common/yugop/utils/string.js +2 -0
  19. package/dist/collection/components/mds-input-range/mds-input-range.css +280 -0
  20. package/dist/collection/components/mds-input-range/mds-input-range.js +182 -0
  21. package/dist/collection/components/mds-input-range/test/mds-input-range.e2e.js +10 -0
  22. package/dist/collection/components/mds-input-range/test/mds-input-range.stories.js +40 -0
  23. package/dist/collection/dictionary/autocomplete.js +59 -0
  24. package/dist/collection/dictionary/button.js +30 -0
  25. package/dist/collection/dictionary/color.js +19 -0
  26. package/dist/collection/dictionary/file-extensions.js +64 -0
  27. package/dist/collection/dictionary/floating-ui.js +19 -0
  28. package/dist/collection/dictionary/icon.js +10 -0
  29. package/dist/collection/dictionary/input.js +37 -0
  30. package/dist/collection/dictionary/loading.js +5 -0
  31. package/dist/collection/dictionary/text.js +6 -0
  32. package/dist/collection/dictionary/typography.js +67 -0
  33. package/dist/collection/dictionary/variant.js +90 -0
  34. package/dist/collection/fixtures/cities.js +110 -0
  35. package/dist/collection/fixtures/filenames.js +57 -0
  36. package/dist/collection/interface/input-value.js +1 -0
  37. package/dist/collection/type/autocomplete.js +1 -0
  38. package/dist/collection/type/button.js +1 -0
  39. package/dist/collection/type/file-types.js +1 -0
  40. package/dist/collection/type/floating-ui.js +1 -0
  41. package/dist/collection/type/form-rel.js +1 -0
  42. package/dist/collection/type/input.js +1 -0
  43. package/dist/collection/type/loading.js +1 -0
  44. package/dist/collection/type/text.js +1 -0
  45. package/dist/collection/type/typography.js +1 -0
  46. package/dist/collection/type/variant-file-format.js +120 -0
  47. package/dist/collection/type/variant.js +1 -0
  48. package/dist/components/index.d.ts +33 -0
  49. package/dist/components/index.js +1 -0
  50. package/dist/components/mds-input-range.d.ts +11 -0
  51. package/dist/components/mds-input-range.js +100 -0
  52. package/dist/documentation.d.ts +401 -0
  53. package/dist/documentation.json +158 -0
  54. package/dist/esm/index-1ed4544f.js +1761 -0
  55. package/dist/esm/index.js +1 -0
  56. package/dist/esm/loader.js +9 -0
  57. package/dist/esm/mds-input-range.entry.js +77 -0
  58. package/dist/esm/mds-input-range.js +18 -0
  59. package/dist/esm/polyfills/core-js.js +11 -0
  60. package/dist/esm/polyfills/dom.js +79 -0
  61. package/dist/esm/polyfills/es5-html-element.js +1 -0
  62. package/dist/esm/polyfills/index.js +34 -0
  63. package/dist/esm/polyfills/system.js +6 -0
  64. package/dist/esm-es5/index-1ed4544f.js +1 -0
  65. package/dist/esm-es5/index.js +0 -0
  66. package/dist/esm-es5/loader.js +1 -0
  67. package/dist/esm-es5/mds-input-range.entry.js +1 -0
  68. package/dist/esm-es5/mds-input-range.js +1 -0
  69. package/dist/index.cjs.js +1 -0
  70. package/dist/index.js +1 -0
  71. package/dist/mds-input-range/index.esm.js +0 -0
  72. package/dist/mds-input-range/mds-input-range.esm.js +1 -0
  73. package/dist/mds-input-range/mds-input-range.js +127 -0
  74. package/dist/mds-input-range/p-1afe8cf0.system.entry.js +1 -0
  75. package/dist/mds-input-range/p-50ea2036.system.js +1 -0
  76. package/dist/mds-input-range/p-5dcf9ad8.js +2 -0
  77. package/dist/mds-input-range/p-7a418e68.system.js +1 -0
  78. package/dist/mds-input-range/p-c87cd964.entry.js +1 -0
  79. package/dist/mds-input-range/p-e5d9d1a5.system.js +2 -0
  80. package/dist/stats.json +669 -0
  81. package/dist/types/common/aria.d.ts +5 -0
  82. package/dist/types/common/file.d.ts +12 -0
  83. package/dist/types/common/icon.d.ts +5 -0
  84. package/dist/types/common/keyboard-manager.d.ts +12 -0
  85. package/dist/types/common/unit.d.ts +3 -0
  86. package/dist/types/common/yugop/core.d.ts +10 -0
  87. package/dist/types/common/yugop/index.d.ts +1 -0
  88. package/dist/types/common/yugop/random-text.d.ts +31 -0
  89. package/dist/types/common/yugop/utils/math.d.ts +3 -0
  90. package/dist/types/common/yugop/utils/noop.d.ts +1 -0
  91. package/dist/types/common/yugop/utils/prng.d.ts +8 -0
  92. package/dist/types/common/yugop/utils/string.d.ts +1 -0
  93. package/dist/types/components/mds-input-range/mds-input-range.d.ts +36 -0
  94. package/dist/types/components/mds-input-range/test/mds-input-range.stories.d.ts +39 -0
  95. package/dist/types/components.d.ts +88 -0
  96. package/dist/types/dictionary/autocomplete.d.ts +2 -0
  97. package/dist/types/dictionary/button.d.ts +6 -0
  98. package/dist/types/dictionary/color.d.ts +3 -0
  99. package/dist/types/dictionary/file-extensions.d.ts +11 -0
  100. package/dist/types/dictionary/floating-ui.d.ts +3 -0
  101. package/dist/types/dictionary/icon.d.ts +4 -0
  102. package/dist/types/dictionary/input.d.ts +5 -0
  103. package/dist/types/dictionary/loading.d.ts +2 -0
  104. package/dist/types/dictionary/text.d.ts +2 -0
  105. package/dist/types/dictionary/typography.d.ts +11 -0
  106. package/dist/types/dictionary/variant.d.ts +11 -0
  107. package/dist/types/fixtures/cities.d.ts +2 -0
  108. package/dist/types/fixtures/filenames.d.ts +2 -0
  109. package/dist/types/interface/input-value.d.ts +4 -0
  110. package/dist/types/stencil-public-runtime.d.ts +1681 -0
  111. package/dist/types/type/autocomplete.d.ts +2 -0
  112. package/dist/types/type/button.d.ts +5 -0
  113. package/dist/types/type/file-types.d.ts +1 -0
  114. package/dist/types/type/floating-ui.d.ts +2 -0
  115. package/dist/types/type/form-rel.d.ts +1 -0
  116. package/dist/types/type/input.d.ts +4 -0
  117. package/dist/types/type/loading.d.ts +1 -0
  118. package/dist/types/type/text.d.ts +1 -0
  119. package/dist/types/type/typography.d.ts +10 -0
  120. package/dist/types/type/variant-file-format.d.ts +11 -0
  121. package/dist/types/type/variant.d.ts +12 -0
  122. package/documentation.json +596 -0
  123. package/loader/cdn.js +3 -0
  124. package/loader/index.cjs.js +3 -0
  125. package/loader/index.d.ts +21 -0
  126. package/loader/index.es2017.js +3 -0
  127. package/loader/index.js +4 -0
  128. package/loader/package.json +11 -0
  129. package/package.json +49 -0
  130. package/readme.md +53 -0
  131. package/src/common/aria.ts +39 -0
  132. package/src/common/file.ts +63 -0
  133. package/src/common/icon.ts +25 -0
  134. package/src/common/keyboard-manager.ts +50 -0
  135. package/src/common/unit.ts +33 -0
  136. package/src/common/yugop/core.ts +47 -0
  137. package/src/common/yugop/index.ts +4 -0
  138. package/src/common/yugop/random-text.ts +95 -0
  139. package/src/common/yugop/utils/math.ts +21 -0
  140. package/src/common/yugop/utils/noop.ts +1 -0
  141. package/src/common/yugop/utils/prng.ts +35 -0
  142. package/src/common/yugop/utils/string.ts +4 -0
  143. package/src/components/mds-input-range/.gitlab-ci.yml +25 -0
  144. package/src/components/mds-input-range/mds-input-range.css +109 -0
  145. package/src/components/mds-input-range/mds-input-range.tsx +117 -0
  146. package/src/components/mds-input-range/readme.md +38 -0
  147. package/src/components/mds-input-range/test/mds-input-range.e2e.ts +12 -0
  148. package/src/components/mds-input-range/test/mds-input-range.stories.tsx +50 -0
  149. package/src/components.d.ts +88 -0
  150. package/src/dictionary/autocomplete.ts +62 -0
  151. package/src/dictionary/button.ts +41 -0
  152. package/src/dictionary/color.ts +24 -0
  153. package/src/dictionary/file-extensions.ts +81 -0
  154. package/src/dictionary/floating-ui.ts +25 -0
  155. package/src/dictionary/icon.ts +15 -0
  156. package/src/dictionary/input.ts +48 -0
  157. package/src/dictionary/loading.ts +9 -0
  158. package/src/dictionary/text.ts +9 -0
  159. package/src/dictionary/typography.ts +88 -0
  160. package/src/dictionary/variant.ts +111 -0
  161. package/src/fixtures/cities.ts +116 -0
  162. package/src/fixtures/filenames.ts +60 -0
  163. package/src/fixtures/icons.json +332 -0
  164. package/src/fixtures/iconsauce.json +253 -0
  165. package/src/interface/input-value.ts +5 -0
  166. package/src/tailwind/components.css +15 -0
  167. package/src/type/autocomplete.ts +69 -0
  168. package/src/type/button.ts +28 -0
  169. package/src/type/file-types.ts +55 -0
  170. package/src/type/floating-ui.ts +17 -0
  171. package/src/type/form-rel.ts +11 -0
  172. package/src/type/input.ts +25 -0
  173. package/src/type/loading.ts +3 -0
  174. package/src/type/text.ts +4 -0
  175. package/src/type/typography.ts +65 -0
  176. package/src/type/variant-file-format.ts +137 -0
  177. package/src/type/variant.ts +99 -0
  178. package/www/build/index.esm.js +0 -0
  179. package/www/build/mds-input-range.esm.js +1 -0
  180. package/www/build/mds-input-range.js +127 -0
  181. package/www/build/p-1afe8cf0.system.entry.js +1 -0
  182. package/www/build/p-50ea2036.system.js +1 -0
  183. package/www/build/p-5dcf9ad8.js +2 -0
  184. package/www/build/p-7a418e68.system.js +1 -0
  185. package/www/build/p-c87cd964.entry.js +1 -0
  186. package/www/build/p-e5d9d1a5.system.js +2 -0
  187. package/www/host.config.json +15 -0
@@ -0,0 +1,669 @@
1
+ {
2
+ "timestamp": "2024-07-29T15:14:42",
3
+ "compiler": {
4
+ "name": "node",
5
+ "version": "20.10.0"
6
+ },
7
+ "app": {
8
+ "namespace": "MdsInputRange",
9
+ "fsNamespace": "mds-input-range",
10
+ "components": 1,
11
+ "entries": 1,
12
+ "bundles": 81,
13
+ "outputs": [
14
+ {
15
+ "name": "dist-collection",
16
+ "files": 40,
17
+ "generatedFiles": [
18
+ "./dist/collection/common/aria.js",
19
+ "./dist/collection/common/file.js",
20
+ "./dist/collection/common/icon.js",
21
+ "./dist/collection/common/keyboard-manager.js",
22
+ "./dist/collection/common/unit.js",
23
+ "./dist/collection/common/yugop/core.js",
24
+ "./dist/collection/common/yugop/index.js",
25
+ "./dist/collection/common/yugop/random-text.js",
26
+ "./dist/collection/common/yugop/utils/math.js",
27
+ "./dist/collection/common/yugop/utils/noop.js",
28
+ "./dist/collection/common/yugop/utils/prng.js",
29
+ "./dist/collection/common/yugop/utils/string.js",
30
+ "./dist/collection/components/mds-input-range/mds-input-range.js",
31
+ "./dist/collection/components/mds-input-range/test/mds-input-range.e2e.js",
32
+ "./dist/collection/components/mds-input-range/test/mds-input-range.stories.js",
33
+ "./dist/collection/dictionary/autocomplete.js",
34
+ "./dist/collection/dictionary/button.js",
35
+ "./dist/collection/dictionary/color.js",
36
+ "./dist/collection/dictionary/file-extensions.js",
37
+ "./dist/collection/dictionary/floating-ui.js",
38
+ "./dist/collection/dictionary/icon.js",
39
+ "./dist/collection/dictionary/input.js",
40
+ "./dist/collection/dictionary/loading.js",
41
+ "./dist/collection/dictionary/text.js",
42
+ "./dist/collection/dictionary/typography.js",
43
+ "./dist/collection/dictionary/variant.js",
44
+ "./dist/collection/fixtures/cities.js",
45
+ "./dist/collection/fixtures/filenames.js",
46
+ "./dist/collection/interface/input-value.js",
47
+ "./dist/collection/type/autocomplete.js",
48
+ "./dist/collection/type/button.js",
49
+ "./dist/collection/type/file-types.js",
50
+ "./dist/collection/type/floating-ui.js",
51
+ "./dist/collection/type/form-rel.js",
52
+ "./dist/collection/type/input.js",
53
+ "./dist/collection/type/loading.js",
54
+ "./dist/collection/type/text.js",
55
+ "./dist/collection/type/typography.js",
56
+ "./dist/collection/type/variant-file-format.js",
57
+ "./dist/collection/type/variant.js"
58
+ ]
59
+ },
60
+ {
61
+ "name": "dist-custom-elements",
62
+ "files": 4,
63
+ "generatedFiles": [
64
+ "./dist/components/index.d.ts",
65
+ "./dist/components/index.js",
66
+ "./dist/components/mds-input-range.d.ts",
67
+ "./dist/components/mds-input-range.js"
68
+ ]
69
+ },
70
+ {
71
+ "name": "dist-lazy",
72
+ "files": 35,
73
+ "generatedFiles": [
74
+ "./dist/cjs/index-5f49298d.js",
75
+ "./dist/cjs/index.cjs.js",
76
+ "./dist/cjs/loader.cjs.js",
77
+ "./dist/cjs/mds-input-range.cjs.entry.js",
78
+ "./dist/cjs/mds-input-range.cjs.js",
79
+ "./dist/esm-es5/index-1ed4544f.js",
80
+ "./dist/esm-es5/index.js",
81
+ "./dist/esm-es5/loader.js",
82
+ "./dist/esm-es5/mds-input-range.entry.js",
83
+ "./dist/esm-es5/mds-input-range.js",
84
+ "./dist/esm/index-1ed4544f.js",
85
+ "./dist/esm/index.js",
86
+ "./dist/esm/loader.js",
87
+ "./dist/esm/mds-input-range.entry.js",
88
+ "./dist/esm/mds-input-range.js",
89
+ "./dist/index.cjs.js",
90
+ "./dist/index.js",
91
+ "./dist/mds-input-range/index.esm.js",
92
+ "./dist/mds-input-range/mds-input-range.esm.js",
93
+ "./dist/mds-input-range/mds-input-range.js",
94
+ "./dist/mds-input-range/p-1afe8cf0.system.entry.js",
95
+ "./dist/mds-input-range/p-50ea2036.system.js",
96
+ "./dist/mds-input-range/p-5dcf9ad8.js",
97
+ "./dist/mds-input-range/p-7a418e68.system.js",
98
+ "./dist/mds-input-range/p-c87cd964.entry.js",
99
+ "./dist/mds-input-range/p-e5d9d1a5.system.js",
100
+ "./www/build/index.esm.js",
101
+ "./www/build/mds-input-range.esm.js",
102
+ "./www/build/mds-input-range.js",
103
+ "./www/build/p-1afe8cf0.system.entry.js",
104
+ "./www/build/p-50ea2036.system.js",
105
+ "./www/build/p-5dcf9ad8.js",
106
+ "./www/build/p-7a418e68.system.js",
107
+ "./www/build/p-c87cd964.entry.js",
108
+ "./www/build/p-e5d9d1a5.system.js"
109
+ ]
110
+ },
111
+ {
112
+ "name": "dist-types",
113
+ "files": 1,
114
+ "generatedFiles": [
115
+ "./dist/types/stencil-public-runtime.d.ts"
116
+ ]
117
+ },
118
+ {
119
+ "name": "www",
120
+ "files": 1,
121
+ "generatedFiles": [
122
+ "./www/host.config.json"
123
+ ]
124
+ }
125
+ ]
126
+ },
127
+ "options": {
128
+ "minifyJs": true,
129
+ "minifyCss": true,
130
+ "hashFileNames": true,
131
+ "hashedFileNameLength": 8,
132
+ "buildEs5": true
133
+ },
134
+ "formats": {
135
+ "esmBrowser": [
136
+ {
137
+ "key": "mds-input-range.entry",
138
+ "components": [
139
+ "mds-input-range"
140
+ ],
141
+ "bundleId": "p-c87cd964",
142
+ "fileName": "p-c87cd964.entry.js",
143
+ "imports": [
144
+ "p-5dcf9ad8.js"
145
+ ],
146
+ "originalByteSize": 9822
147
+ }
148
+ ],
149
+ "esm": [
150
+ {
151
+ "key": "mds-input-range.entry",
152
+ "components": [
153
+ "mds-input-range"
154
+ ],
155
+ "bundleId": "mds-input-range",
156
+ "fileName": "mds-input-range.entry.js",
157
+ "imports": [
158
+ "index-1ed4544f.js"
159
+ ],
160
+ "originalByteSize": 9826
161
+ }
162
+ ],
163
+ "es5": [
164
+ {
165
+ "key": "mds-input-range.entry",
166
+ "components": [
167
+ "mds-input-range"
168
+ ],
169
+ "bundleId": "mds-input-range",
170
+ "fileName": "mds-input-range.entry.js",
171
+ "imports": [
172
+ "index-1ed4544f.js"
173
+ ],
174
+ "originalByteSize": 9826
175
+ }
176
+ ],
177
+ "system": [
178
+ {
179
+ "key": "mds-input-range.entry",
180
+ "components": [
181
+ "mds-input-range"
182
+ ],
183
+ "bundleId": "p-1afe8cf0.system",
184
+ "fileName": "p-1afe8cf0.system.entry.js",
185
+ "imports": [
186
+ "p-e5d9d1a5.system.js"
187
+ ],
188
+ "originalByteSize": 10502
189
+ }
190
+ ],
191
+ "commonjs": [
192
+ {
193
+ "key": "mds-input-range.entry",
194
+ "components": [
195
+ "mds-input-range"
196
+ ],
197
+ "bundleId": "mds-input-range.cjs",
198
+ "fileName": "mds-input-range.cjs.entry.js",
199
+ "imports": [
200
+ "index-5f49298d.js"
201
+ ],
202
+ "originalByteSize": 9921
203
+ }
204
+ ]
205
+ },
206
+ "components": [
207
+ {
208
+ "tag": "mds-input-range",
209
+ "path": "./src/components/mds-input-range/mds-input-range.js",
210
+ "source": "./src/components/mds-input-range/mds-input-range.tsx",
211
+ "elementRef": "element",
212
+ "componentClassName": "MdsInputRange",
213
+ "assetsDirs": [],
214
+ "dependencies": [],
215
+ "dependents": [],
216
+ "directDependencies": [],
217
+ "directDependents": [],
218
+ "docs": {
219
+ "tags": [],
220
+ "text": ""
221
+ },
222
+ "encapsulation": "shadow",
223
+ "excludeFromCollection": false,
224
+ "events": [
225
+ {
226
+ "name": "mdsInputRangeChange",
227
+ "method": "changeEvent",
228
+ "bubbles": true,
229
+ "cancelable": true,
230
+ "composed": true,
231
+ "docs": {
232
+ "tags": [],
233
+ "text": "Emits when the input range is changed"
234
+ },
235
+ "complexType": {
236
+ "original": "number",
237
+ "resolved": "number",
238
+ "references": {}
239
+ },
240
+ "internal": false
241
+ }
242
+ ],
243
+ "internal": false,
244
+ "listeners": [],
245
+ "methods": [],
246
+ "potentialCmpRefs": [
247
+ "mds-text"
248
+ ],
249
+ "properties": [
250
+ {
251
+ "name": "max",
252
+ "type": "number",
253
+ "attribute": "max",
254
+ "reflect": false,
255
+ "mutable": false,
256
+ "required": false,
257
+ "optional": false,
258
+ "defaultValue": "100",
259
+ "complexType": {
260
+ "original": "number",
261
+ "resolved": "number",
262
+ "references": {}
263
+ },
264
+ "docs": {
265
+ "tags": [],
266
+ "text": "The greatest value in the range of permitted values"
267
+ },
268
+ "internal": false
269
+ },
270
+ {
271
+ "name": "min",
272
+ "type": "number",
273
+ "attribute": "min",
274
+ "reflect": false,
275
+ "mutable": false,
276
+ "required": false,
277
+ "optional": false,
278
+ "defaultValue": "0",
279
+ "complexType": {
280
+ "original": "number",
281
+ "resolved": "number",
282
+ "references": {}
283
+ },
284
+ "docs": {
285
+ "tags": [],
286
+ "text": "The lowest value in the range of permitted values"
287
+ },
288
+ "internal": false
289
+ },
290
+ {
291
+ "name": "step",
292
+ "type": "number",
293
+ "attribute": "step",
294
+ "reflect": false,
295
+ "mutable": false,
296
+ "required": false,
297
+ "optional": false,
298
+ "defaultValue": "1",
299
+ "complexType": {
300
+ "original": "number",
301
+ "resolved": "number",
302
+ "references": {}
303
+ },
304
+ "docs": {
305
+ "tags": [],
306
+ "text": "The step attribute is a number that specifies the granularity that\nthe value must adhere to, or the special value any, which is described below."
307
+ },
308
+ "internal": false
309
+ },
310
+ {
311
+ "name": "value",
312
+ "type": "number",
313
+ "attribute": "value",
314
+ "reflect": true,
315
+ "mutable": true,
316
+ "required": false,
317
+ "optional": false,
318
+ "complexType": {
319
+ "original": "number",
320
+ "resolved": "number",
321
+ "references": {}
322
+ },
323
+ "docs": {
324
+ "tags": [],
325
+ "text": "The value attribute contains a number which contains a representation of the selected number."
326
+ },
327
+ "internal": false
328
+ }
329
+ ],
330
+ "shadowDelegatesFocus": false,
331
+ "states": [
332
+ {
333
+ "name": "progress"
334
+ }
335
+ ]
336
+ }
337
+ ],
338
+ "entries": [
339
+ {
340
+ "cmps": [
341
+ {
342
+ "attachInternalsMemberName": "internals",
343
+ "formAssociated": true,
344
+ "tagName": "mds-input-range",
345
+ "excludeFromCollection": false,
346
+ "isCollectionDependency": false,
347
+ "componentClassName": "MdsInputRange",
348
+ "elementRef": "element",
349
+ "encapsulation": "shadow",
350
+ "shadowDelegatesFocus": false,
351
+ "properties": [
352
+ {
353
+ "name": "max",
354
+ "type": "number",
355
+ "attribute": "max",
356
+ "reflect": false,
357
+ "mutable": false,
358
+ "required": false,
359
+ "optional": false,
360
+ "defaultValue": "100",
361
+ "complexType": {
362
+ "original": "number",
363
+ "resolved": "number",
364
+ "references": {}
365
+ },
366
+ "docs": {
367
+ "tags": [],
368
+ "text": "The greatest value in the range of permitted values"
369
+ },
370
+ "internal": false
371
+ },
372
+ {
373
+ "name": "min",
374
+ "type": "number",
375
+ "attribute": "min",
376
+ "reflect": false,
377
+ "mutable": false,
378
+ "required": false,
379
+ "optional": false,
380
+ "defaultValue": "0",
381
+ "complexType": {
382
+ "original": "number",
383
+ "resolved": "number",
384
+ "references": {}
385
+ },
386
+ "docs": {
387
+ "tags": [],
388
+ "text": "The lowest value in the range of permitted values"
389
+ },
390
+ "internal": false
391
+ },
392
+ {
393
+ "name": "step",
394
+ "type": "number",
395
+ "attribute": "step",
396
+ "reflect": false,
397
+ "mutable": false,
398
+ "required": false,
399
+ "optional": false,
400
+ "defaultValue": "1",
401
+ "complexType": {
402
+ "original": "number",
403
+ "resolved": "number",
404
+ "references": {}
405
+ },
406
+ "docs": {
407
+ "tags": [],
408
+ "text": "The step attribute is a number that specifies the granularity that\nthe value must adhere to, or the special value any, which is described below."
409
+ },
410
+ "internal": false
411
+ },
412
+ {
413
+ "name": "value",
414
+ "type": "number",
415
+ "attribute": "value",
416
+ "reflect": true,
417
+ "mutable": true,
418
+ "required": false,
419
+ "optional": false,
420
+ "complexType": {
421
+ "original": "number",
422
+ "resolved": "number",
423
+ "references": {}
424
+ },
425
+ "docs": {
426
+ "tags": [],
427
+ "text": "The value attribute contains a number which contains a representation of the selected number."
428
+ },
429
+ "internal": false
430
+ }
431
+ ],
432
+ "virtualProperties": [],
433
+ "states": [
434
+ {
435
+ "name": "progress"
436
+ }
437
+ ],
438
+ "methods": [],
439
+ "listeners": [],
440
+ "events": [
441
+ {
442
+ "name": "mdsInputRangeChange",
443
+ "method": "changeEvent",
444
+ "bubbles": true,
445
+ "cancelable": true,
446
+ "composed": true,
447
+ "docs": {
448
+ "tags": [],
449
+ "text": "Emits when the input range is changed"
450
+ },
451
+ "complexType": {
452
+ "original": "number",
453
+ "resolved": "number",
454
+ "references": {}
455
+ },
456
+ "internal": false
457
+ }
458
+ ],
459
+ "watchers": [
460
+ {
461
+ "propName": "value",
462
+ "methodName": "valueChanged"
463
+ },
464
+ {
465
+ "propName": "min",
466
+ "methodName": "minChanged"
467
+ },
468
+ {
469
+ "propName": "max",
470
+ "methodName": "maxChanged"
471
+ },
472
+ {
473
+ "propName": "step",
474
+ "methodName": "stepChanged"
475
+ }
476
+ ],
477
+ "styles": [
478
+ {
479
+ "modeName": "$",
480
+ "styleId": "MDS-INPUT-RANGE",
481
+ "styleStr": null,
482
+ "styleIdentifier": "MdsInputRangeStyle",
483
+ "externalStyles": [
484
+ {
485
+ "absolutePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-range/src/components/mds-input-range/mds-input-range.css",
486
+ "relativePath": "mds-input-range.css",
487
+ "originalComponentPath": "mds-input-range.css"
488
+ }
489
+ ]
490
+ }
491
+ ],
492
+ "internal": false,
493
+ "assetsDirs": [],
494
+ "styleDocs": [
495
+ {
496
+ "name": "--mds-input-range-thumb-size",
497
+ "docs": "Sets the thumb width and height of the component",
498
+ "annotation": "prop"
499
+ },
500
+ {
501
+ "name": "--mds-input-range-thumb-background",
502
+ "docs": "",
503
+ "annotation": "prop"
504
+ },
505
+ {
506
+ "name": "--mds-input-range-track-background",
507
+ "docs": "",
508
+ "annotation": "prop"
509
+ },
510
+ {
511
+ "name": "--mds-input-range-track-size",
512
+ "docs": "",
513
+ "annotation": "prop"
514
+ },
515
+ {
516
+ "name": "--mds-input-range-track-progress-background",
517
+ "docs": "",
518
+ "annotation": "prop"
519
+ }
520
+ ],
521
+ "docs": {
522
+ "tags": [],
523
+ "text": ""
524
+ },
525
+ "jsFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-range/src/components/mds-input-range/mds-input-range.js",
526
+ "sourceFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-range/src/components/mds-input-range/mds-input-range.tsx",
527
+ "sourceMapPath": null,
528
+ "hasAttributeChangedCallbackFn": false,
529
+ "hasComponentWillLoadFn": false,
530
+ "hasComponentDidLoadFn": true,
531
+ "hasComponentShouldUpdateFn": false,
532
+ "hasComponentWillUpdateFn": false,
533
+ "hasComponentDidUpdateFn": false,
534
+ "hasComponentWillRenderFn": false,
535
+ "hasComponentDidRenderFn": false,
536
+ "hasComponentDidUnloadFn": false,
537
+ "hasConnectedCallbackFn": false,
538
+ "hasDisconnectedCallbackFn": false,
539
+ "hasElement": false,
540
+ "hasEvent": true,
541
+ "hasLifecycle": true,
542
+ "hasListener": false,
543
+ "hasListenerTarget": false,
544
+ "hasListenerTargetWindow": false,
545
+ "hasListenerTargetDocument": false,
546
+ "hasListenerTargetBody": false,
547
+ "hasListenerTargetParent": false,
548
+ "hasMember": true,
549
+ "hasMethod": false,
550
+ "hasMode": false,
551
+ "hasAttribute": true,
552
+ "hasProp": true,
553
+ "hasPropNumber": true,
554
+ "hasPropBoolean": false,
555
+ "hasPropString": false,
556
+ "hasPropMutable": true,
557
+ "hasReflect": true,
558
+ "hasRenderFn": true,
559
+ "hasState": true,
560
+ "hasStyle": true,
561
+ "hasVdomAttribute": true,
562
+ "hasVdomXlink": false,
563
+ "hasVdomClass": true,
564
+ "hasVdomFunctional": false,
565
+ "hasVdomKey": false,
566
+ "hasVdomListener": true,
567
+ "hasVdomPropOrAttr": true,
568
+ "hasVdomRef": false,
569
+ "hasVdomRender": true,
570
+ "hasVdomStyle": true,
571
+ "hasVdomText": true,
572
+ "hasWatchCallback": true,
573
+ "isPlain": false,
574
+ "htmlAttrNames": [
575
+ "class",
576
+ "typography",
577
+ "style",
578
+ "max",
579
+ "min",
580
+ "onInput",
581
+ "step",
582
+ "type",
583
+ "value"
584
+ ],
585
+ "htmlTagNames": [
586
+ "header",
587
+ "mds-text",
588
+ "slot",
589
+ "div",
590
+ "input"
591
+ ],
592
+ "htmlParts": [],
593
+ "isUpdateable": true,
594
+ "potentialCmpRefs": [
595
+ "mds-text"
596
+ ],
597
+ "dependents": [],
598
+ "dependencies": [],
599
+ "directDependents": [],
600
+ "directDependencies": []
601
+ }
602
+ ],
603
+ "entryKey": "mds-input-range.entry"
604
+ }
605
+ ],
606
+ "componentGraph": {
607
+ "sc-mds-input-range": [
608
+ "p-5dcf9ad8.js"
609
+ ]
610
+ },
611
+ "sourceGraph": {
612
+ "./src/common/aria.ts": [],
613
+ "./src/common/file.ts": [],
614
+ "./src/common/icon.ts": [],
615
+ "./src/common/keyboard-manager.ts": [],
616
+ "./src/common/unit.ts": [],
617
+ "./src/common/yugop/core.ts": [
618
+ "./src/common/yugop/utils/math",
619
+ "./src/common/yugop/utils/prng",
620
+ "./src/common/yugop/utils/string"
621
+ ],
622
+ "./src/common/yugop/index.ts": [],
623
+ "./src/common/yugop/random-text.ts": [
624
+ "./src/common/yugop/core",
625
+ "./src/common/yugop/utils/noop"
626
+ ],
627
+ "./src/common/yugop/utils/math.ts": [
628
+ "./src/common/yugop/utils/prng"
629
+ ],
630
+ "./src/common/yugop/utils/noop.ts": [],
631
+ "./src/common/yugop/utils/prng.ts": [],
632
+ "./src/common/yugop/utils/string.ts": [],
633
+ "./src/components/mds-input-range/mds-input-range.tsx": [],
634
+ "./src/components/mds-input-range/test/mds-input-range.e2e.ts": [],
635
+ "./src/components/mds-input-range/test/mds-input-range.stories.tsx": [],
636
+ "./src/dictionary/autocomplete.ts": [],
637
+ "./src/dictionary/button.ts": [],
638
+ "./src/dictionary/color.ts": [],
639
+ "./src/dictionary/file-extensions.ts": [],
640
+ "./src/dictionary/floating-ui.ts": [],
641
+ "./src/dictionary/icon.ts": [
642
+ "./src/fixtures/icons.json",
643
+ "./src/fixtures/iconsauce.json"
644
+ ],
645
+ "./src/dictionary/input.ts": [],
646
+ "./src/dictionary/loading.ts": [],
647
+ "./src/dictionary/text.ts": [],
648
+ "./src/dictionary/typography.ts": [],
649
+ "./src/dictionary/variant.ts": [],
650
+ "./src/fixtures/cities.ts": [],
651
+ "./src/fixtures/filenames.ts": [],
652
+ "./src/interface/input-value.ts": [],
653
+ "./src/type/autocomplete.ts": [],
654
+ "./src/type/button.ts": [],
655
+ "./src/type/file-types.ts": [],
656
+ "./src/type/floating-ui.ts": [],
657
+ "./src/type/form-rel.ts": [],
658
+ "./src/type/input.ts": [],
659
+ "./src/type/loading.ts": [],
660
+ "./src/type/text.ts": [],
661
+ "./src/type/typography.ts": [],
662
+ "./src/type/variant-file-format.ts": [],
663
+ "./src/type/variant.ts": []
664
+ },
665
+ "rollupResults": {
666
+ "modules": []
667
+ },
668
+ "collections": []
669
+ }
@@ -0,0 +1,5 @@
1
+ declare const unslugName: (name: string) => string;
2
+ declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
3
+ declare const hashValue: (value: string) => string;
4
+ declare const hashRandomValue: (value?: string) => string;
5
+ export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
@@ -0,0 +1,12 @@
1
+ import { ExtensionInfo } from '@dictionary/file-extensions';
2
+ interface FileFormatsVariants {
3
+ color: string;
4
+ icon: string;
5
+ iconBackground: string;
6
+ variant: string;
7
+ }
8
+ declare const getName: (rawFilename: string) => string;
9
+ declare const getSuffix: (rawFilename: string, suffixOverride?: string) => string;
10
+ declare const getExtensionInfos: (rawFilename: string, suffixOverride?: string) => ExtensionInfo;
11
+ declare const getFormatsVariant: (rawFilename: string, suffixOverride?: string) => FileFormatsVariants;
12
+ export { getExtensionInfos, getFormatsVariant, getSuffix, getName, };
@@ -0,0 +1,5 @@
1
+ declare const BASE64_SVG_ICON = "data:image/svg+xml;base64,";
2
+ declare const MARKUP_SVG_ICON = "<svg ";
3
+ declare const isIconFormatIsBase64: (icon?: string) => boolean;
4
+ declare const isIconFormatIsSVG: (icon?: string) => boolean;
5
+ export { isIconFormatIsBase64, isIconFormatIsSVG, BASE64_SVG_ICON, MARKUP_SVG_ICON, };