@maggioli-design-system/mds-progress 1.0.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 (133) hide show
  1. package/dist/cjs/index-fd4954d5.js +1080 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +21 -0
  4. package/dist/cjs/mds-progress.cjs.entry.js +33 -0
  5. package/dist/cjs/mds-progress.cjs.js +19 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/mds-progress/mds-progress.css +113 -0
  8. package/dist/collection/components/mds-progress/mds-progress.js +97 -0
  9. package/dist/collection/components/mds-progress/meta/dictionary.js +5 -0
  10. package/dist/collection/components/mds-progress/meta/types.js +1 -0
  11. package/dist/collection/components/mds-progress/test/mds-progress.stories.js +37 -0
  12. package/dist/collection/dictionary/autocomplete.js +59 -0
  13. package/dist/collection/dictionary/button.js +26 -0
  14. package/dist/collection/dictionary/color.js +19 -0
  15. package/dist/collection/dictionary/icon.js +3 -0
  16. package/dist/collection/dictionary/input-text-type.js +13 -0
  17. package/dist/collection/dictionary/loading.js +5 -0
  18. package/dist/collection/dictionary/typography.js +37 -0
  19. package/dist/collection/dictionary/variant.js +64 -0
  20. package/dist/collection/fixtures/cities.js +110 -0
  21. package/dist/collection/interface/input-value.js +1 -0
  22. package/dist/collection/types/autocomplete.js +1 -0
  23. package/dist/collection/types/button.js +1 -0
  24. package/dist/collection/types/form-rel.js +1 -0
  25. package/dist/collection/types/input-text-type.js +1 -0
  26. package/dist/collection/types/input-value-type.js +1 -0
  27. package/dist/collection/types/loading.js +1 -0
  28. package/dist/collection/types/typography.js +1 -0
  29. package/dist/collection/types/variant.js +1 -0
  30. package/dist/custom-elements/index.d.ts +45 -0
  31. package/dist/custom-elements/index.js +45 -0
  32. package/dist/esm/index-28e8e05c.js +1054 -0
  33. package/dist/esm/index.js +1 -0
  34. package/dist/esm/loader.js +17 -0
  35. package/dist/esm/mds-progress.entry.js +29 -0
  36. package/dist/esm/mds-progress.js +17 -0
  37. package/dist/esm/polyfills/core-js.js +11 -0
  38. package/dist/esm/polyfills/css-shim.js +1 -0
  39. package/dist/esm/polyfills/dom.js +79 -0
  40. package/dist/esm/polyfills/es5-html-element.js +1 -0
  41. package/dist/esm/polyfills/index.js +34 -0
  42. package/dist/esm/polyfills/system.js +6 -0
  43. package/dist/esm-es5/index-28e8e05c.js +1 -0
  44. package/dist/esm-es5/index.js +0 -0
  45. package/dist/esm-es5/loader.js +1 -0
  46. package/dist/esm-es5/mds-progress.entry.js +1 -0
  47. package/dist/esm-es5/mds-progress.js +1 -0
  48. package/dist/index.cjs.js +1 -0
  49. package/dist/index.js +1 -0
  50. package/dist/mds-progress/index.esm.js +0 -0
  51. package/dist/mds-progress/mds-progress.esm.js +1 -0
  52. package/dist/mds-progress/mds-progress.js +130 -0
  53. package/dist/mds-progress/p-23f79c39.js +1 -0
  54. package/dist/mds-progress/p-50ea2036.system.js +1 -0
  55. package/dist/mds-progress/p-96a127a8.system.js +1 -0
  56. package/dist/mds-progress/p-9d788a47.system.entry.js +1 -0
  57. package/dist/mds-progress/p-e655d83d.system.js +1 -0
  58. package/dist/mds-progress/p-f3c59b19.entry.js +1 -0
  59. package/dist/stats.json +496 -0
  60. package/dist/types/components/mds-progress/mds-progress.d.ts +17 -0
  61. package/dist/types/components/mds-progress/meta/dictionary.d.ts +2 -0
  62. package/dist/types/components/mds-progress/meta/types.d.ts +1 -0
  63. package/dist/types/components.d.ts +63 -0
  64. package/dist/types/dictionary/autocomplete.d.ts +2 -0
  65. package/dist/types/dictionary/button.d.ts +5 -0
  66. package/dist/types/dictionary/color.d.ts +3 -0
  67. package/dist/types/dictionary/icon.d.ts +2 -0
  68. package/dist/types/dictionary/input-text-type.d.ts +2 -0
  69. package/dist/types/dictionary/loading.d.ts +2 -0
  70. package/dist/types/dictionary/typography.d.ts +5 -0
  71. package/dist/types/dictionary/variant.d.ts +9 -0
  72. package/dist/types/fixtures/cities.d.ts +2 -0
  73. package/dist/types/interface/input-value.d.ts +4 -0
  74. package/dist/types/stencil-public-runtime.d.ts +1563 -0
  75. package/dist/types/types/autocomplete.d.ts +2 -0
  76. package/dist/types/types/button.d.ts +4 -0
  77. package/dist/types/types/form-rel.d.ts +1 -0
  78. package/dist/types/types/input-text-type.d.ts +1 -0
  79. package/dist/types/types/input-value-type.d.ts +1 -0
  80. package/dist/types/types/loading.d.ts +1 -0
  81. package/dist/types/types/typography.d.ts +4 -0
  82. package/dist/types/types/variant.d.ts +10 -0
  83. package/loader/cdn.js +3 -0
  84. package/loader/index.cjs.js +3 -0
  85. package/loader/index.d.ts +12 -0
  86. package/loader/index.es2017.js +3 -0
  87. package/loader/index.js +4 -0
  88. package/loader/package.json +10 -0
  89. package/package.json +44 -0
  90. package/readme.md +34 -0
  91. package/src/components/mds-progress/css/mds-progress-variant-dark.css +7 -0
  92. package/src/components/mds-progress/css/mds-progress-variant-error.css +7 -0
  93. package/src/components/mds-progress/css/mds-progress-variant-info.css +7 -0
  94. package/src/components/mds-progress/css/mds-progress-variant-light.css +7 -0
  95. package/src/components/mds-progress/css/mds-progress-variant-success.css +7 -0
  96. package/src/components/mds-progress/css/mds-progress-variant-warning.css +7 -0
  97. package/src/components/mds-progress/mds-progress.css +59 -0
  98. package/src/components/mds-progress/mds-progress.tsx +38 -0
  99. package/src/components/mds-progress/meta/dictionary.ts +9 -0
  100. package/src/components/mds-progress/meta/types.ts +3 -0
  101. package/src/components/mds-progress/readme.md +19 -0
  102. package/src/components/mds-progress/test/mds-progress.e2e.ts +11 -0
  103. package/src/components/mds-progress/test/mds-progress.spec.tsx +18 -0
  104. package/src/components/mds-progress/test/mds-progress.stories.js +37 -0
  105. package/src/components.d.ts +63 -0
  106. package/src/dictionary/autocomplete.ts +62 -0
  107. package/src/dictionary/button.ts +35 -0
  108. package/src/dictionary/color.ts +24 -0
  109. package/src/dictionary/icon.ts +5 -0
  110. package/src/dictionary/input-text-type.ts +17 -0
  111. package/src/dictionary/loading.ts +9 -0
  112. package/src/dictionary/typography.ts +46 -0
  113. package/src/dictionary/variant.ts +81 -0
  114. package/src/fixtures/cities.ts +116 -0
  115. package/src/interface/input-value.ts +5 -0
  116. package/src/types/autocomplete.ts +69 -0
  117. package/src/types/button.ts +24 -0
  118. package/src/types/form-rel.ts +11 -0
  119. package/src/types/input-text-type.ts +11 -0
  120. package/src/types/input-value-type.ts +5 -0
  121. package/src/types/loading.ts +3 -0
  122. package/src/types/typography.ts +35 -0
  123. package/src/types/variant.ts +72 -0
  124. package/www/build/index.esm.js +0 -0
  125. package/www/build/mds-progress.esm.js +1 -0
  126. package/www/build/mds-progress.js +130 -0
  127. package/www/build/p-23f79c39.js +1 -0
  128. package/www/build/p-50ea2036.system.js +1 -0
  129. package/www/build/p-96a127a8.system.js +1 -0
  130. package/www/build/p-9d788a47.system.entry.js +1 -0
  131. package/www/build/p-e655d83d.system.js +1 -0
  132. package/www/build/p-f3c59b19.entry.js +1 -0
  133. package/www/host.config.json +15 -0
@@ -0,0 +1,496 @@
1
+ {
2
+ "timestamp": "2021-11-25T10:05:52",
3
+ "compiler": {
4
+ "name": "node",
5
+ "version": "16.13.0"
6
+ },
7
+ "app": {
8
+ "namespace": "MdsProgress",
9
+ "fsNamespace": "mds-progress",
10
+ "components": 1,
11
+ "entries": 1,
12
+ "bundles": 60,
13
+ "outputs": [
14
+ {
15
+ "name": "dist-collection",
16
+ "files": 21,
17
+ "generatedFiles": [
18
+ "./dist/collection/components/mds-progress/mds-progress.js",
19
+ "./dist/collection/components/mds-progress/meta/dictionary.js",
20
+ "./dist/collection/components/mds-progress/meta/types.js",
21
+ "./dist/collection/dictionary/autocomplete.js",
22
+ "./dist/collection/dictionary/button.js",
23
+ "./dist/collection/dictionary/color.js",
24
+ "./dist/collection/dictionary/icon.js",
25
+ "./dist/collection/dictionary/input-text-type.js",
26
+ "./dist/collection/dictionary/loading.js",
27
+ "./dist/collection/dictionary/typography.js",
28
+ "./dist/collection/dictionary/variant.js",
29
+ "./dist/collection/fixtures/cities.js",
30
+ "./dist/collection/interface/input-value.js",
31
+ "./dist/collection/types/autocomplete.js",
32
+ "./dist/collection/types/button.js",
33
+ "./dist/collection/types/form-rel.js",
34
+ "./dist/collection/types/input-text-type.js",
35
+ "./dist/collection/types/input-value-type.js",
36
+ "./dist/collection/types/loading.js",
37
+ "./dist/collection/types/typography.js",
38
+ "./dist/collection/types/variant.js"
39
+ ]
40
+ },
41
+ {
42
+ "name": "dist-custom-elements-bundle",
43
+ "files": 2,
44
+ "generatedFiles": [
45
+ "./dist/custom-elements/index.d.ts",
46
+ "./dist/custom-elements/index.js"
47
+ ]
48
+ },
49
+ {
50
+ "name": "dist-lazy",
51
+ "files": 35,
52
+ "generatedFiles": [
53
+ "./dist/cjs/index-fd4954d5.js",
54
+ "./dist/cjs/index.cjs.js",
55
+ "./dist/cjs/loader.cjs.js",
56
+ "./dist/cjs/mds-progress.cjs.entry.js",
57
+ "./dist/cjs/mds-progress.cjs.js",
58
+ "./dist/esm-es5/index-28e8e05c.js",
59
+ "./dist/esm-es5/index.js",
60
+ "./dist/esm-es5/loader.js",
61
+ "./dist/esm-es5/mds-progress.entry.js",
62
+ "./dist/esm-es5/mds-progress.js",
63
+ "./dist/esm/index-28e8e05c.js",
64
+ "./dist/esm/index.js",
65
+ "./dist/esm/loader.js",
66
+ "./dist/esm/mds-progress.entry.js",
67
+ "./dist/esm/mds-progress.js",
68
+ "./dist/index.cjs.js",
69
+ "./dist/index.js",
70
+ "./dist/mds-progress/index.esm.js",
71
+ "./dist/mds-progress/mds-progress.esm.js",
72
+ "./dist/mds-progress/mds-progress.js",
73
+ "./dist/mds-progress/p-23f79c39.js",
74
+ "./dist/mds-progress/p-50ea2036.system.js",
75
+ "./dist/mds-progress/p-96a127a8.system.js",
76
+ "./dist/mds-progress/p-9d788a47.system.entry.js",
77
+ "./dist/mds-progress/p-e655d83d.system.js",
78
+ "./dist/mds-progress/p-f3c59b19.entry.js",
79
+ "./www/build/index.esm.js",
80
+ "./www/build/mds-progress.esm.js",
81
+ "./www/build/mds-progress.js",
82
+ "./www/build/p-23f79c39.js",
83
+ "./www/build/p-50ea2036.system.js",
84
+ "./www/build/p-96a127a8.system.js",
85
+ "./www/build/p-9d788a47.system.entry.js",
86
+ "./www/build/p-e655d83d.system.js",
87
+ "./www/build/p-f3c59b19.entry.js"
88
+ ]
89
+ },
90
+ {
91
+ "name": "dist-types",
92
+ "files": 1,
93
+ "generatedFiles": [
94
+ "./dist/types/stencil-public-runtime.d.ts"
95
+ ]
96
+ },
97
+ {
98
+ "name": "www",
99
+ "files": 1,
100
+ "generatedFiles": [
101
+ "./www/host.config.json"
102
+ ]
103
+ }
104
+ ]
105
+ },
106
+ "options": {
107
+ "minifyJs": true,
108
+ "minifyCss": true,
109
+ "hashFileNames": true,
110
+ "hashedFileNameLength": 8,
111
+ "buildEs5": true
112
+ },
113
+ "formats": {
114
+ "esmBrowser": [
115
+ {
116
+ "key": "mds-progress.entry",
117
+ "components": [
118
+ "mds-progress"
119
+ ],
120
+ "bundleId": "p-f3c59b19",
121
+ "fileName": "p-f3c59b19.entry.js",
122
+ "imports": [
123
+ "p-23f79c39.js"
124
+ ],
125
+ "originalByteSize": 3076
126
+ }
127
+ ],
128
+ "esm": [
129
+ {
130
+ "key": "mds-progress.entry",
131
+ "components": [
132
+ "mds-progress"
133
+ ],
134
+ "bundleId": "mds-progress",
135
+ "fileName": "mds-progress.entry.js",
136
+ "imports": [
137
+ "index-28e8e05c.js"
138
+ ],
139
+ "originalByteSize": 3080
140
+ }
141
+ ],
142
+ "es5": [
143
+ {
144
+ "key": "mds-progress.entry",
145
+ "components": [
146
+ "mds-progress"
147
+ ],
148
+ "bundleId": "mds-progress",
149
+ "fileName": "mds-progress.entry.js",
150
+ "imports": [
151
+ "index-28e8e05c.js"
152
+ ],
153
+ "originalByteSize": 3080
154
+ }
155
+ ],
156
+ "system": [
157
+ {
158
+ "key": "mds-progress.entry",
159
+ "components": [
160
+ "mds-progress"
161
+ ],
162
+ "bundleId": "p-9d788a47.system",
163
+ "fileName": "p-9d788a47.system.entry.js",
164
+ "imports": [
165
+ "p-e655d83d.system.js"
166
+ ],
167
+ "originalByteSize": 3421
168
+ }
169
+ ],
170
+ "commonjs": [
171
+ {
172
+ "key": "mds-progress.entry",
173
+ "components": [
174
+ "mds-progress"
175
+ ],
176
+ "bundleId": "mds-progress.cjs",
177
+ "fileName": "mds-progress.cjs.entry.js",
178
+ "imports": [
179
+ "index-fd4954d5.js"
180
+ ],
181
+ "originalByteSize": 3150
182
+ }
183
+ ]
184
+ },
185
+ "components": [
186
+ {
187
+ "tag": "mds-progress",
188
+ "path": "./src/components/mds-progress/mds-progress.js",
189
+ "source": "./src/components/mds-progress/mds-progress.tsx",
190
+ "elementRef": null,
191
+ "componentClassName": "MdsProgress",
192
+ "assetsDirs": [],
193
+ "dependencies": [],
194
+ "dependents": [],
195
+ "directDependencies": [],
196
+ "directDependents": [],
197
+ "docs": {
198
+ "tags": [],
199
+ "text": ""
200
+ },
201
+ "encapsulation": "shadow",
202
+ "excludeFromCollection": false,
203
+ "events": [],
204
+ "internal": false,
205
+ "legacyConnect": [],
206
+ "legacyContext": [],
207
+ "listeners": [],
208
+ "methods": [],
209
+ "potentialCmpRefs": [],
210
+ "properties": [
211
+ {
212
+ "name": "progress",
213
+ "type": "number",
214
+ "attribute": "progress",
215
+ "reflect": false,
216
+ "mutable": false,
217
+ "required": false,
218
+ "optional": true,
219
+ "defaultValue": "0",
220
+ "complexType": {
221
+ "original": "number",
222
+ "resolved": "number",
223
+ "references": {}
224
+ },
225
+ "docs": {
226
+ "tags": [],
227
+ "text": "A value between 0 and 1 that rapresents the status progress"
228
+ },
229
+ "internal": false
230
+ },
231
+ {
232
+ "name": "direction",
233
+ "type": "string",
234
+ "attribute": "direction",
235
+ "reflect": false,
236
+ "mutable": false,
237
+ "required": false,
238
+ "optional": true,
239
+ "defaultValue": "'horizontal'",
240
+ "complexType": {
241
+ "original": "DirectionType",
242
+ "resolved": "\"horizontal\" | \"vertical\"",
243
+ "references": {
244
+ "DirectionType": {
245
+ "location": "import",
246
+ "path": "./meta/types"
247
+ }
248
+ }
249
+ },
250
+ "docs": {
251
+ "tags": [],
252
+ "text": "Specifies the direction of the progress bar, if horizonatl or vertical"
253
+ },
254
+ "internal": false
255
+ },
256
+ {
257
+ "name": "variant",
258
+ "type": "string",
259
+ "attribute": "variant",
260
+ "reflect": true,
261
+ "mutable": false,
262
+ "required": false,
263
+ "optional": true,
264
+ "defaultValue": "'dark'",
265
+ "complexType": {
266
+ "original": "ThemeVariantType",
267
+ "resolved": "\"dark\" | \"error\" | \"info\" | \"light\" | \"success\" | \"warning\"",
268
+ "references": {
269
+ "ThemeVariantType": {
270
+ "location": "import",
271
+ "path": "../../types/variant"
272
+ }
273
+ }
274
+ },
275
+ "docs": {
276
+ "tags": [],
277
+ "text": "Sets the theme variant colors"
278
+ },
279
+ "internal": false
280
+ }
281
+ ],
282
+ "shadowDelegatesFocus": false,
283
+ "states": []
284
+ }
285
+ ],
286
+ "entries": [
287
+ {
288
+ "cmps": [
289
+ {
290
+ "tagName": "mds-progress",
291
+ "excludeFromCollection": false,
292
+ "isCollectionDependency": false,
293
+ "componentClassName": "MdsProgress",
294
+ "elementRef": null,
295
+ "encapsulation": "shadow",
296
+ "shadowDelegatesFocus": false,
297
+ "properties": [
298
+ {
299
+ "name": "progress",
300
+ "type": "number",
301
+ "attribute": "progress",
302
+ "reflect": false,
303
+ "mutable": false,
304
+ "required": false,
305
+ "optional": true,
306
+ "defaultValue": "0",
307
+ "complexType": {
308
+ "original": "number",
309
+ "resolved": "number",
310
+ "references": {}
311
+ },
312
+ "docs": {
313
+ "tags": [],
314
+ "text": "A value between 0 and 1 that rapresents the status progress"
315
+ },
316
+ "internal": false
317
+ },
318
+ {
319
+ "name": "direction",
320
+ "type": "string",
321
+ "attribute": "direction",
322
+ "reflect": false,
323
+ "mutable": false,
324
+ "required": false,
325
+ "optional": true,
326
+ "defaultValue": "'horizontal'",
327
+ "complexType": {
328
+ "original": "DirectionType",
329
+ "resolved": "\"horizontal\" | \"vertical\"",
330
+ "references": {
331
+ "DirectionType": {
332
+ "location": "import",
333
+ "path": "./meta/types"
334
+ }
335
+ }
336
+ },
337
+ "docs": {
338
+ "tags": [],
339
+ "text": "Specifies the direction of the progress bar, if horizonatl or vertical"
340
+ },
341
+ "internal": false
342
+ },
343
+ {
344
+ "name": "variant",
345
+ "type": "string",
346
+ "attribute": "variant",
347
+ "reflect": true,
348
+ "mutable": false,
349
+ "required": false,
350
+ "optional": true,
351
+ "defaultValue": "'dark'",
352
+ "complexType": {
353
+ "original": "ThemeVariantType",
354
+ "resolved": "\"dark\" | \"error\" | \"info\" | \"light\" | \"success\" | \"warning\"",
355
+ "references": {
356
+ "ThemeVariantType": {
357
+ "location": "import",
358
+ "path": "../../types/variant"
359
+ }
360
+ }
361
+ },
362
+ "docs": {
363
+ "tags": [],
364
+ "text": "Sets the theme variant colors"
365
+ },
366
+ "internal": false
367
+ }
368
+ ],
369
+ "virtualProperties": [],
370
+ "states": [],
371
+ "methods": [],
372
+ "listeners": [],
373
+ "events": [],
374
+ "watchers": [],
375
+ "styles": [
376
+ {
377
+ "modeName": "$",
378
+ "styleId": "MDS-PROGRESS",
379
+ "styleStr": null,
380
+ "styleIdentifier": "mdsProgressStyle",
381
+ "externalStyles": [
382
+ {
383
+ "absolutePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-progress/src/components/mds-progress/mds-progress.css",
384
+ "relativePath": "mds-progress.css",
385
+ "originalComponentPath": "mds-progress.css"
386
+ }
387
+ ]
388
+ }
389
+ ],
390
+ "legacyConnect": [],
391
+ "legacyContext": [],
392
+ "internal": false,
393
+ "assetsDirs": [],
394
+ "styleDocs": [],
395
+ "docs": {
396
+ "tags": [],
397
+ "text": ""
398
+ },
399
+ "jsFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-progress/src/components/mds-progress/mds-progress.js",
400
+ "sourceFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-progress/src/components/mds-progress/mds-progress.tsx",
401
+ "sourceMapPath": null,
402
+ "hasAttributeChangedCallbackFn": false,
403
+ "hasComponentWillLoadFn": false,
404
+ "hasComponentDidLoadFn": false,
405
+ "hasComponentShouldUpdateFn": false,
406
+ "hasComponentWillUpdateFn": false,
407
+ "hasComponentDidUpdateFn": false,
408
+ "hasComponentWillRenderFn": false,
409
+ "hasComponentDidRenderFn": false,
410
+ "hasComponentDidUnloadFn": false,
411
+ "hasConnectedCallbackFn": false,
412
+ "hasDisconnectedCallbackFn": false,
413
+ "hasElement": false,
414
+ "hasEvent": false,
415
+ "hasLifecycle": false,
416
+ "hasListener": false,
417
+ "hasListenerTarget": false,
418
+ "hasListenerTargetWindow": false,
419
+ "hasListenerTargetDocument": false,
420
+ "hasListenerTargetBody": false,
421
+ "hasListenerTargetParent": false,
422
+ "hasMember": true,
423
+ "hasMethod": false,
424
+ "hasMode": false,
425
+ "hasAttribute": true,
426
+ "hasProp": true,
427
+ "hasPropNumber": true,
428
+ "hasPropBoolean": false,
429
+ "hasPropString": true,
430
+ "hasPropMutable": false,
431
+ "hasReflect": true,
432
+ "hasRenderFn": true,
433
+ "hasState": false,
434
+ "hasStyle": true,
435
+ "hasVdomAttribute": true,
436
+ "hasVdomXlink": false,
437
+ "hasVdomClass": true,
438
+ "hasVdomFunctional": false,
439
+ "hasVdomKey": false,
440
+ "hasVdomListener": false,
441
+ "hasVdomPropOrAttr": false,
442
+ "hasVdomRef": false,
443
+ "hasVdomRender": true,
444
+ "hasVdomStyle": true,
445
+ "hasVdomText": false,
446
+ "hasWatchCallback": false,
447
+ "isPlain": false,
448
+ "htmlAttrNames": [
449
+ "class",
450
+ "style"
451
+ ],
452
+ "htmlTagNames": [
453
+ "div"
454
+ ],
455
+ "htmlParts": [],
456
+ "isUpdateable": true,
457
+ "potentialCmpRefs": [],
458
+ "directDependencies": [],
459
+ "dependencies": [],
460
+ "dependents": [],
461
+ "directDependents": []
462
+ }
463
+ ],
464
+ "entryKey": "mds-progress.entry"
465
+ }
466
+ ],
467
+ "componentGraph": {
468
+ "sc-mds-progress": [
469
+ "p-23f79c39.js"
470
+ ]
471
+ },
472
+ "sourceGraph": {
473
+ "./src/components/mds-progress/mds-progress.tsx": [],
474
+ "./src/components/mds-progress/meta/dictionary.ts": [],
475
+ "./src/components/mds-progress/meta/types.ts": [],
476
+ "./src/dictionary/autocomplete.ts": [],
477
+ "./src/dictionary/button.ts": [],
478
+ "./src/dictionary/color.ts": [],
479
+ "./src/dictionary/icon.ts": [],
480
+ "./src/dictionary/input-text-type.ts": [],
481
+ "./src/dictionary/loading.ts": [],
482
+ "./src/dictionary/typography.ts": [],
483
+ "./src/dictionary/variant.ts": [],
484
+ "./src/fixtures/cities.ts": [],
485
+ "./src/interface/input-value.ts": [],
486
+ "./src/types/autocomplete.ts": [],
487
+ "./src/types/button.ts": [],
488
+ "./src/types/form-rel.ts": [],
489
+ "./src/types/input-text-type.ts": [],
490
+ "./src/types/input-value-type.ts": [],
491
+ "./src/types/loading.ts": [],
492
+ "./src/types/typography.ts": [],
493
+ "./src/types/variant.ts": []
494
+ },
495
+ "collections": []
496
+ }
@@ -0,0 +1,17 @@
1
+ import { DirectionType } from './meta/types';
2
+ import { ThemeVariantType } from '../../types/variant';
3
+ export declare class MdsProgress {
4
+ /**
5
+ * A value between 0 and 1 that rapresents the status progress
6
+ */
7
+ readonly progress?: number;
8
+ /**
9
+ * Specifies the direction of the progress bar, if horizonatl or vertical
10
+ */
11
+ readonly direction?: DirectionType;
12
+ /**
13
+ * Sets the theme variant colors
14
+ */
15
+ readonly variant?: ThemeVariantType;
16
+ render(): any;
17
+ }
@@ -0,0 +1,2 @@
1
+ declare const directionDictionary: string[];
2
+ export { directionDictionary, };
@@ -0,0 +1 @@
1
+ export declare type DirectionType = 'horizontal' | 'vertical';
@@ -0,0 +1,63 @@
1
+ /* eslint-disable */
2
+ /* tslint:disable */
3
+ /**
4
+ * This is an autogenerated file created by the Stencil compiler.
5
+ * It contains typing information for all components that exist in this project.
6
+ */
7
+ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
+ import { DirectionType } from "./components/mds-progress/meta/types";
9
+ import { ThemeVariantType } from "./types/variant";
10
+ export namespace Components {
11
+ interface MdsProgress {
12
+ /**
13
+ * Specifies the direction of the progress bar, if horizonatl or vertical
14
+ */
15
+ "direction"?: DirectionType;
16
+ /**
17
+ * A value between 0 and 1 that rapresents the status progress
18
+ */
19
+ "progress"?: number;
20
+ /**
21
+ * Sets the theme variant colors
22
+ */
23
+ "variant"?: ThemeVariantType;
24
+ }
25
+ }
26
+ declare global {
27
+ interface HTMLMdsProgressElement extends Components.MdsProgress, HTMLStencilElement {
28
+ }
29
+ var HTMLMdsProgressElement: {
30
+ prototype: HTMLMdsProgressElement;
31
+ new (): HTMLMdsProgressElement;
32
+ };
33
+ interface HTMLElementTagNameMap {
34
+ "mds-progress": HTMLMdsProgressElement;
35
+ }
36
+ }
37
+ declare namespace LocalJSX {
38
+ interface MdsProgress {
39
+ /**
40
+ * Specifies the direction of the progress bar, if horizonatl or vertical
41
+ */
42
+ "direction"?: DirectionType;
43
+ /**
44
+ * A value between 0 and 1 that rapresents the status progress
45
+ */
46
+ "progress"?: number;
47
+ /**
48
+ * Sets the theme variant colors
49
+ */
50
+ "variant"?: ThemeVariantType;
51
+ }
52
+ interface IntrinsicElements {
53
+ "mds-progress": MdsProgress;
54
+ }
55
+ }
56
+ export { LocalJSX as JSX };
57
+ declare module "@stencil/core" {
58
+ export namespace JSX {
59
+ interface IntrinsicElements {
60
+ "mds-progress": LocalJSX.MdsProgress & JSXBase.HTMLAttributes<HTMLMdsProgressElement>;
61
+ }
62
+ }
63
+ }
@@ -0,0 +1,2 @@
1
+ declare const autoCompleteDictionary: string[];
2
+ export { autoCompleteDictionary, };
@@ -0,0 +1,5 @@
1
+ declare const buttonVariantDictionary: string[];
2
+ declare const buttonToneVariantDictionary: string[];
3
+ declare const buttonSizeDictionary: string[];
4
+ declare const buttonIconPositionDictionary: string[];
5
+ export { buttonSizeDictionary, buttonToneVariantDictionary, buttonVariantDictionary, buttonIconPositionDictionary, };
@@ -0,0 +1,3 @@
1
+ declare const colorLabelDictionary: string[];
2
+ declare const colorStatusDictionary: string[];
3
+ export { colorLabelDictionary, colorStatusDictionary, };
@@ -0,0 +1,2 @@
1
+ declare const iconsDictionary: string[];
2
+ export { iconsDictionary, };
@@ -0,0 +1,2 @@
1
+ declare const inputTextTypeDictionary: string[];
2
+ export { inputTextTypeDictionary, };
@@ -0,0 +1,2 @@
1
+ declare const loadingDictionary: string[];
2
+ export { loadingDictionary, };
@@ -0,0 +1,5 @@
1
+ declare const typographyDictionary: string[];
2
+ declare const typographyMonoDictionary: string[];
3
+ declare const typographyPrimaryDictionary: string[];
4
+ declare const typographySecondaryDictionary: string[];
5
+ export { typographyDictionary, typographyMonoDictionary, typographyPrimaryDictionary, typographySecondaryDictionary, };
@@ -0,0 +1,9 @@
1
+ declare const themeVariantDictionary: string[];
2
+ declare const themeLuminanceVariantDictionary: string[];
3
+ declare const themeStatusVariantDictionary: string[];
4
+ declare const themeFullVariantDictionary: string[];
5
+ declare const themeLabelVariantDictionary: string[];
6
+ declare const toneVariantDictionary: string[];
7
+ declare const toneSimpleVariantDictionary: string[];
8
+ declare const toneMinimalVariantDictionary: string[];
9
+ export { themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneVariantDictionary, };
@@ -0,0 +1,2 @@
1
+ declare const citiesDictionary: string[];
2
+ export { citiesDictionary, };
@@ -0,0 +1,4 @@
1
+ import { InputValueType } from '../types/input-value-type';
2
+ export interface InputValue {
3
+ value: InputValueType;
4
+ }