@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.
- package/dist/cjs/index-fd4954d5.js +1080 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/mds-progress.cjs.entry.js +33 -0
- package/dist/cjs/mds-progress.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/mds-progress/mds-progress.css +113 -0
- package/dist/collection/components/mds-progress/mds-progress.js +97 -0
- package/dist/collection/components/mds-progress/meta/dictionary.js +5 -0
- package/dist/collection/components/mds-progress/meta/types.js +1 -0
- package/dist/collection/components/mds-progress/test/mds-progress.stories.js +37 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +26 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/icon.js +3 -0
- package/dist/collection/dictionary/input-text-type.js +13 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/typography.js +37 -0
- package/dist/collection/dictionary/variant.js +64 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/types/autocomplete.js +1 -0
- package/dist/collection/types/button.js +1 -0
- package/dist/collection/types/form-rel.js +1 -0
- package/dist/collection/types/input-text-type.js +1 -0
- package/dist/collection/types/input-value-type.js +1 -0
- package/dist/collection/types/loading.js +1 -0
- package/dist/collection/types/typography.js +1 -0
- package/dist/collection/types/variant.js +1 -0
- package/dist/custom-elements/index.d.ts +45 -0
- package/dist/custom-elements/index.js +45 -0
- package/dist/esm/index-28e8e05c.js +1054 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/mds-progress.entry.js +29 -0
- package/dist/esm/mds-progress.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm-es5/index-28e8e05c.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-progress.entry.js +1 -0
- package/dist/esm-es5/mds-progress.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-progress/index.esm.js +0 -0
- package/dist/mds-progress/mds-progress.esm.js +1 -0
- package/dist/mds-progress/mds-progress.js +130 -0
- package/dist/mds-progress/p-23f79c39.js +1 -0
- package/dist/mds-progress/p-50ea2036.system.js +1 -0
- package/dist/mds-progress/p-96a127a8.system.js +1 -0
- package/dist/mds-progress/p-9d788a47.system.entry.js +1 -0
- package/dist/mds-progress/p-e655d83d.system.js +1 -0
- package/dist/mds-progress/p-f3c59b19.entry.js +1 -0
- package/dist/stats.json +496 -0
- package/dist/types/components/mds-progress/mds-progress.d.ts +17 -0
- package/dist/types/components/mds-progress/meta/dictionary.d.ts +2 -0
- package/dist/types/components/mds-progress/meta/types.d.ts +1 -0
- package/dist/types/components.d.ts +63 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +5 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +2 -0
- package/dist/types/dictionary/input-text-type.d.ts +2 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +5 -0
- package/dist/types/dictionary/variant.d.ts +9 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1563 -0
- package/dist/types/types/autocomplete.d.ts +2 -0
- package/dist/types/types/button.d.ts +4 -0
- package/dist/types/types/form-rel.d.ts +1 -0
- package/dist/types/types/input-text-type.d.ts +1 -0
- package/dist/types/types/input-value-type.d.ts +1 -0
- package/dist/types/types/loading.d.ts +1 -0
- package/dist/types/types/typography.d.ts +4 -0
- package/dist/types/types/variant.d.ts +10 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +44 -0
- package/readme.md +34 -0
- package/src/components/mds-progress/css/mds-progress-variant-dark.css +7 -0
- package/src/components/mds-progress/css/mds-progress-variant-error.css +7 -0
- package/src/components/mds-progress/css/mds-progress-variant-info.css +7 -0
- package/src/components/mds-progress/css/mds-progress-variant-light.css +7 -0
- package/src/components/mds-progress/css/mds-progress-variant-success.css +7 -0
- package/src/components/mds-progress/css/mds-progress-variant-warning.css +7 -0
- package/src/components/mds-progress/mds-progress.css +59 -0
- package/src/components/mds-progress/mds-progress.tsx +38 -0
- package/src/components/mds-progress/meta/dictionary.ts +9 -0
- package/src/components/mds-progress/meta/types.ts +3 -0
- package/src/components/mds-progress/readme.md +19 -0
- package/src/components/mds-progress/test/mds-progress.e2e.ts +11 -0
- package/src/components/mds-progress/test/mds-progress.spec.tsx +18 -0
- package/src/components/mds-progress/test/mds-progress.stories.js +37 -0
- package/src/components.d.ts +63 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +35 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/icon.ts +5 -0
- package/src/dictionary/input-text-type.ts +17 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/typography.ts +46 -0
- package/src/dictionary/variant.ts +81 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/interface/input-value.ts +5 -0
- package/src/types/autocomplete.ts +69 -0
- package/src/types/button.ts +24 -0
- package/src/types/form-rel.ts +11 -0
- package/src/types/input-text-type.ts +11 -0
- package/src/types/input-value-type.ts +5 -0
- package/src/types/loading.ts +3 -0
- package/src/types/typography.ts +35 -0
- package/src/types/variant.ts +72 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-progress.esm.js +1 -0
- package/www/build/mds-progress.js +130 -0
- package/www/build/p-23f79c39.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-96a127a8.system.js +1 -0
- package/www/build/p-9d788a47.system.entry.js +1 -0
- package/www/build/p-e655d83d.system.js +1 -0
- package/www/build/p-f3c59b19.entry.js +1 -0
- package/www/host.config.json +15 -0
package/dist/stats.json
ADDED
|
@@ -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 @@
|
|
|
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,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,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, };
|