@maggioli-design-system/mds-input 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-3aa055da.js +1207 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/mds-input.cjs.entry.js +162 -0
- package/dist/cjs/mds-input.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/mds-input/mds-input.css +482 -0
- package/dist/collection/components/mds-input/mds-input.js +586 -0
- package/dist/collection/components/mds-input/meta/interfaces.js +1 -0
- package/dist/collection/components/mds-input/test/mds-input.stories.js +165 -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 +43 -0
- package/dist/collection/dictionary/variant.js +65 -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/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/mds-input.d.ts +11 -0
- package/dist/components/mds-input.js +200 -0
- package/dist/esm/index-2cdf06e7.js +1179 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/mds-input.entry.js +158 -0
- package/dist/esm/mds-input.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-2cdf06e7.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-input.entry.js +1 -0
- package/dist/esm-es5/mds-input.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input/index.esm.js +0 -0
- package/dist/mds-input/mds-input.esm.js +1 -0
- package/dist/mds-input/mds-input.js +130 -0
- package/dist/mds-input/p-132bdeae.system.entry.js +1 -0
- package/dist/mds-input/p-275873d7.entry.js +1 -0
- package/dist/mds-input/p-50ea2036.system.js +1 -0
- package/dist/mds-input/p-8bdf82a6.js +1 -0
- package/dist/mds-input/p-91d946fe.system.js +1 -0
- package/dist/mds-input/p-992602db.system.js +1 -0
- package/dist/stats.json +1424 -0
- package/dist/types/components/mds-input/meta/interfaces.d.ts +4 -0
- package/dist/types/components.d.ts +218 -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 +6 -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 +1565 -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 +5 -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 +46 -0
- package/readme.md +97 -0
- package/src/components/mds-input/css/mds-input-variant.css +65 -0
- package/src/components/mds-input/mds-input.css +133 -0
- package/src/components/mds-input/mds-input.tsx +294 -0
- package/src/components/mds-input/meta/interfaces.ts +5 -0
- package/src/components/mds-input/readme.md +77 -0
- package/src/components/mds-input/test/mds-input.e2e.ts +12 -0
- package/src/components/mds-input/test/mds-input.spec.tsx +19 -0
- package/src/components/mds-input/test/mds-input.stories.js +165 -0
- package/src/components.d.ts +218 -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 +54 -0
- package/src/dictionary/variant.ts +82 -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 +41 -0
- package/src/types/variant.ts +73 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-input.esm.js +1 -0
- package/www/build/mds-input.js +130 -0
- package/www/build/p-132bdeae.system.entry.js +1 -0
- package/www/build/p-275873d7.entry.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-8bdf82a6.js +1 -0
- package/www/build/p-91d946fe.system.js +1 -0
- package/www/build/p-992602db.system.js +1 -0
- package/www/host.config.json +15 -0
package/dist/stats.json
ADDED
|
@@ -0,0 +1,1424 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2022-01-24T10:56:35",
|
|
3
|
+
"compiler": {
|
|
4
|
+
"name": "node",
|
|
5
|
+
"version": "16.13.0"
|
|
6
|
+
},
|
|
7
|
+
"app": {
|
|
8
|
+
"namespace": "MdsInput",
|
|
9
|
+
"fsNamespace": "mds-input",
|
|
10
|
+
"components": 1,
|
|
11
|
+
"entries": 1,
|
|
12
|
+
"bundles": 61,
|
|
13
|
+
"outputs": [
|
|
14
|
+
{
|
|
15
|
+
"name": "dist-collection",
|
|
16
|
+
"files": 20,
|
|
17
|
+
"generatedFiles": [
|
|
18
|
+
"./dist/collection/components/mds-input/mds-input.js",
|
|
19
|
+
"./dist/collection/components/mds-input/meta/interfaces.js",
|
|
20
|
+
"./dist/collection/dictionary/autocomplete.js",
|
|
21
|
+
"./dist/collection/dictionary/button.js",
|
|
22
|
+
"./dist/collection/dictionary/color.js",
|
|
23
|
+
"./dist/collection/dictionary/icon.js",
|
|
24
|
+
"./dist/collection/dictionary/input-text-type.js",
|
|
25
|
+
"./dist/collection/dictionary/loading.js",
|
|
26
|
+
"./dist/collection/dictionary/typography.js",
|
|
27
|
+
"./dist/collection/dictionary/variant.js",
|
|
28
|
+
"./dist/collection/fixtures/cities.js",
|
|
29
|
+
"./dist/collection/interface/input-value.js",
|
|
30
|
+
"./dist/collection/types/autocomplete.js",
|
|
31
|
+
"./dist/collection/types/button.js",
|
|
32
|
+
"./dist/collection/types/form-rel.js",
|
|
33
|
+
"./dist/collection/types/input-text-type.js",
|
|
34
|
+
"./dist/collection/types/input-value-type.js",
|
|
35
|
+
"./dist/collection/types/loading.js",
|
|
36
|
+
"./dist/collection/types/typography.js",
|
|
37
|
+
"./dist/collection/types/variant.js"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "dist-custom-elements",
|
|
42
|
+
"files": 4,
|
|
43
|
+
"generatedFiles": [
|
|
44
|
+
"./dist/components/index.d.ts",
|
|
45
|
+
"./dist/components/index.js",
|
|
46
|
+
"./dist/components/mds-input.d.ts",
|
|
47
|
+
"./dist/components/mds-input.js"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "dist-lazy",
|
|
52
|
+
"files": 35,
|
|
53
|
+
"generatedFiles": [
|
|
54
|
+
"./dist/cjs/index-3aa055da.js",
|
|
55
|
+
"./dist/cjs/index.cjs.js",
|
|
56
|
+
"./dist/cjs/loader.cjs.js",
|
|
57
|
+
"./dist/cjs/mds-input.cjs.entry.js",
|
|
58
|
+
"./dist/cjs/mds-input.cjs.js",
|
|
59
|
+
"./dist/esm-es5/index-2cdf06e7.js",
|
|
60
|
+
"./dist/esm-es5/index.js",
|
|
61
|
+
"./dist/esm-es5/loader.js",
|
|
62
|
+
"./dist/esm-es5/mds-input.entry.js",
|
|
63
|
+
"./dist/esm-es5/mds-input.js",
|
|
64
|
+
"./dist/esm/index-2cdf06e7.js",
|
|
65
|
+
"./dist/esm/index.js",
|
|
66
|
+
"./dist/esm/loader.js",
|
|
67
|
+
"./dist/esm/mds-input.entry.js",
|
|
68
|
+
"./dist/esm/mds-input.js",
|
|
69
|
+
"./dist/index.cjs.js",
|
|
70
|
+
"./dist/index.js",
|
|
71
|
+
"./dist/mds-input/index.esm.js",
|
|
72
|
+
"./dist/mds-input/mds-input.esm.js",
|
|
73
|
+
"./dist/mds-input/mds-input.js",
|
|
74
|
+
"./dist/mds-input/p-132bdeae.system.entry.js",
|
|
75
|
+
"./dist/mds-input/p-275873d7.entry.js",
|
|
76
|
+
"./dist/mds-input/p-50ea2036.system.js",
|
|
77
|
+
"./dist/mds-input/p-8bdf82a6.js",
|
|
78
|
+
"./dist/mds-input/p-91d946fe.system.js",
|
|
79
|
+
"./dist/mds-input/p-992602db.system.js",
|
|
80
|
+
"./www/build/index.esm.js",
|
|
81
|
+
"./www/build/mds-input.esm.js",
|
|
82
|
+
"./www/build/mds-input.js",
|
|
83
|
+
"./www/build/p-132bdeae.system.entry.js",
|
|
84
|
+
"./www/build/p-275873d7.entry.js",
|
|
85
|
+
"./www/build/p-50ea2036.system.js",
|
|
86
|
+
"./www/build/p-8bdf82a6.js",
|
|
87
|
+
"./www/build/p-91d946fe.system.js",
|
|
88
|
+
"./www/build/p-992602db.system.js"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "dist-types",
|
|
93
|
+
"files": 1,
|
|
94
|
+
"generatedFiles": [
|
|
95
|
+
"./dist/types/stencil-public-runtime.d.ts"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "www",
|
|
100
|
+
"files": 1,
|
|
101
|
+
"generatedFiles": [
|
|
102
|
+
"./www/host.config.json"
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"options": {
|
|
108
|
+
"minifyJs": true,
|
|
109
|
+
"minifyCss": true,
|
|
110
|
+
"hashFileNames": true,
|
|
111
|
+
"hashedFileNameLength": 8,
|
|
112
|
+
"buildEs5": true
|
|
113
|
+
},
|
|
114
|
+
"formats": {
|
|
115
|
+
"esmBrowser": [
|
|
116
|
+
{
|
|
117
|
+
"key": "mds-input.entry",
|
|
118
|
+
"components": [
|
|
119
|
+
"mds-input"
|
|
120
|
+
],
|
|
121
|
+
"bundleId": "p-275873d7",
|
|
122
|
+
"fileName": "p-275873d7.entry.js",
|
|
123
|
+
"imports": [
|
|
124
|
+
"p-8bdf82a6.js"
|
|
125
|
+
],
|
|
126
|
+
"originalByteSize": 15497
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"esm": [
|
|
130
|
+
{
|
|
131
|
+
"key": "mds-input.entry",
|
|
132
|
+
"components": [
|
|
133
|
+
"mds-input"
|
|
134
|
+
],
|
|
135
|
+
"bundleId": "mds-input",
|
|
136
|
+
"fileName": "mds-input.entry.js",
|
|
137
|
+
"imports": [
|
|
138
|
+
"index-2cdf06e7.js"
|
|
139
|
+
],
|
|
140
|
+
"originalByteSize": 15501
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"es5": [
|
|
144
|
+
{
|
|
145
|
+
"key": "mds-input.entry",
|
|
146
|
+
"components": [
|
|
147
|
+
"mds-input"
|
|
148
|
+
],
|
|
149
|
+
"bundleId": "mds-input",
|
|
150
|
+
"fileName": "mds-input.entry.js",
|
|
151
|
+
"imports": [
|
|
152
|
+
"index-2cdf06e7.js"
|
|
153
|
+
],
|
|
154
|
+
"originalByteSize": 15501
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"system": [
|
|
158
|
+
{
|
|
159
|
+
"key": "mds-input.entry",
|
|
160
|
+
"components": [
|
|
161
|
+
"mds-input"
|
|
162
|
+
],
|
|
163
|
+
"bundleId": "p-132bdeae.system",
|
|
164
|
+
"fileName": "p-132bdeae.system.entry.js",
|
|
165
|
+
"imports": [
|
|
166
|
+
"p-91d946fe.system.js"
|
|
167
|
+
],
|
|
168
|
+
"originalByteSize": 16170
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"commonjs": [
|
|
172
|
+
{
|
|
173
|
+
"key": "mds-input.entry",
|
|
174
|
+
"components": [
|
|
175
|
+
"mds-input"
|
|
176
|
+
],
|
|
177
|
+
"bundleId": "mds-input.cjs",
|
|
178
|
+
"fileName": "mds-input.cjs.entry.js",
|
|
179
|
+
"imports": [
|
|
180
|
+
"index-3aa055da.js"
|
|
181
|
+
],
|
|
182
|
+
"originalByteSize": 15614
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"components": [
|
|
187
|
+
{
|
|
188
|
+
"tag": "mds-input",
|
|
189
|
+
"path": "./src/components/mds-input/mds-input.js",
|
|
190
|
+
"source": "./src/components/mds-input/mds-input.tsx",
|
|
191
|
+
"elementRef": "el",
|
|
192
|
+
"componentClassName": "MdsInput",
|
|
193
|
+
"assetsDirs": [],
|
|
194
|
+
"dependencies": [],
|
|
195
|
+
"dependents": [],
|
|
196
|
+
"directDependencies": [],
|
|
197
|
+
"directDependents": [],
|
|
198
|
+
"docs": {
|
|
199
|
+
"tags": [],
|
|
200
|
+
"text": ""
|
|
201
|
+
},
|
|
202
|
+
"encapsulation": "shadow",
|
|
203
|
+
"excludeFromCollection": false,
|
|
204
|
+
"events": [
|
|
205
|
+
{
|
|
206
|
+
"name": "changeEvent",
|
|
207
|
+
"method": "changeEvent",
|
|
208
|
+
"bubbles": true,
|
|
209
|
+
"cancelable": true,
|
|
210
|
+
"composed": true,
|
|
211
|
+
"docs": {
|
|
212
|
+
"tags": [],
|
|
213
|
+
"text": "Emits an InputChangeEventDetail when the value of the input element changes"
|
|
214
|
+
},
|
|
215
|
+
"complexType": {
|
|
216
|
+
"original": "InputValue",
|
|
217
|
+
"resolved": "InputValue",
|
|
218
|
+
"references": {
|
|
219
|
+
"InputValue": {
|
|
220
|
+
"location": "import",
|
|
221
|
+
"path": "./meta/interfaces"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"internal": false
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "keyDownEvent",
|
|
229
|
+
"method": "keyDownEvent",
|
|
230
|
+
"bubbles": true,
|
|
231
|
+
"cancelable": true,
|
|
232
|
+
"composed": true,
|
|
233
|
+
"docs": {
|
|
234
|
+
"tags": [],
|
|
235
|
+
"text": "Emits a KeyboardEvent when a keboard key is pressed on the focused input element"
|
|
236
|
+
},
|
|
237
|
+
"complexType": {
|
|
238
|
+
"original": "KeyboardEvent",
|
|
239
|
+
"resolved": "KeyboardEvent",
|
|
240
|
+
"references": {
|
|
241
|
+
"KeyboardEvent": {
|
|
242
|
+
"location": "global"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"internal": false
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"name": "blurEvent",
|
|
250
|
+
"method": "blurEvent",
|
|
251
|
+
"bubbles": true,
|
|
252
|
+
"cancelable": true,
|
|
253
|
+
"composed": true,
|
|
254
|
+
"docs": {
|
|
255
|
+
"tags": [],
|
|
256
|
+
"text": "Emits a void event when input element is blurred"
|
|
257
|
+
},
|
|
258
|
+
"complexType": {
|
|
259
|
+
"original": "void",
|
|
260
|
+
"resolved": "void",
|
|
261
|
+
"references": {}
|
|
262
|
+
},
|
|
263
|
+
"internal": false
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "focusEvent",
|
|
267
|
+
"method": "focusEvent",
|
|
268
|
+
"bubbles": true,
|
|
269
|
+
"cancelable": true,
|
|
270
|
+
"composed": true,
|
|
271
|
+
"docs": {
|
|
272
|
+
"tags": [],
|
|
273
|
+
"text": "Emits a void event when input element is focused"
|
|
274
|
+
},
|
|
275
|
+
"complexType": {
|
|
276
|
+
"original": "void",
|
|
277
|
+
"resolved": "void",
|
|
278
|
+
"references": {}
|
|
279
|
+
},
|
|
280
|
+
"internal": false
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"internal": false,
|
|
284
|
+
"legacyConnect": [],
|
|
285
|
+
"legacyContext": [],
|
|
286
|
+
"listeners": [],
|
|
287
|
+
"methods": [
|
|
288
|
+
{
|
|
289
|
+
"name": "setFocus",
|
|
290
|
+
"docs": {
|
|
291
|
+
"text": "Sets focus on the specified `my-input`.\nUse this method instead\nof the global `input.focus()`.",
|
|
292
|
+
"tags": []
|
|
293
|
+
},
|
|
294
|
+
"complexType": {
|
|
295
|
+
"signature": "() => Promise<void>",
|
|
296
|
+
"parameters": [],
|
|
297
|
+
"references": {
|
|
298
|
+
"Promise": {
|
|
299
|
+
"location": "global"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"return": "Promise<void>"
|
|
303
|
+
},
|
|
304
|
+
"internal": false
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "getInputElement",
|
|
308
|
+
"docs": {
|
|
309
|
+
"text": "Returns the native `<input>` element used under the hood.",
|
|
310
|
+
"tags": []
|
|
311
|
+
},
|
|
312
|
+
"complexType": {
|
|
313
|
+
"signature": "() => Promise<HTMLInputElement | HTMLTextAreaElement>",
|
|
314
|
+
"parameters": [],
|
|
315
|
+
"references": {
|
|
316
|
+
"Promise": {
|
|
317
|
+
"location": "global"
|
|
318
|
+
},
|
|
319
|
+
"HTMLInputElement": {
|
|
320
|
+
"location": "global"
|
|
321
|
+
},
|
|
322
|
+
"HTMLTextAreaElement": {
|
|
323
|
+
"location": "global"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"return": "Promise<HTMLInputElement | HTMLTextAreaElement>"
|
|
327
|
+
},
|
|
328
|
+
"internal": false
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"potentialCmpRefs": [
|
|
332
|
+
"mds-text",
|
|
333
|
+
"mds-icon"
|
|
334
|
+
],
|
|
335
|
+
"properties": [
|
|
336
|
+
{
|
|
337
|
+
"name": "autocomplete",
|
|
338
|
+
"type": "string",
|
|
339
|
+
"attribute": "autocomplete",
|
|
340
|
+
"reflect": false,
|
|
341
|
+
"mutable": false,
|
|
342
|
+
"required": false,
|
|
343
|
+
"optional": true,
|
|
344
|
+
"defaultValue": "'off'",
|
|
345
|
+
"complexType": {
|
|
346
|
+
"original": "AutocompleteType",
|
|
347
|
+
"resolved": "\"additional-name\" | \"address\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-additional-name\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"email\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"impp\" | \"language\" | \"name\" | \"new-password\" | \"nickname\" | \"off\" | \"on\" | \"one-time-code\" | \"organization\" | \"organization-title\" | \"photo\" | \"postal-code\" | \"sex\" | \"street-address\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"transaction-amount\" | \"transaction-currency\" | \"url\" | \"username\"",
|
|
348
|
+
"references": {
|
|
349
|
+
"AutocompleteType": {
|
|
350
|
+
"location": "import",
|
|
351
|
+
"path": "../../types/autocomplete"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"docs": {
|
|
356
|
+
"tags": [],
|
|
357
|
+
"text": "Specifies whether the element should have autocomplete enabled"
|
|
358
|
+
},
|
|
359
|
+
"internal": false
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "autofocus",
|
|
363
|
+
"type": "boolean",
|
|
364
|
+
"attribute": "autofocus",
|
|
365
|
+
"reflect": false,
|
|
366
|
+
"mutable": false,
|
|
367
|
+
"required": false,
|
|
368
|
+
"optional": true,
|
|
369
|
+
"defaultValue": "false",
|
|
370
|
+
"complexType": {
|
|
371
|
+
"original": "boolean",
|
|
372
|
+
"resolved": "boolean",
|
|
373
|
+
"references": {}
|
|
374
|
+
},
|
|
375
|
+
"docs": {
|
|
376
|
+
"tags": [],
|
|
377
|
+
"text": "Specifies that the element should automatically get focus when the page loads"
|
|
378
|
+
},
|
|
379
|
+
"internal": false
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"name": "datalist",
|
|
383
|
+
"type": "unknown",
|
|
384
|
+
"reflect": false,
|
|
385
|
+
"mutable": false,
|
|
386
|
+
"required": false,
|
|
387
|
+
"optional": true,
|
|
388
|
+
"complexType": {
|
|
389
|
+
"original": "string[]",
|
|
390
|
+
"resolved": "string[]",
|
|
391
|
+
"references": {}
|
|
392
|
+
},
|
|
393
|
+
"docs": {
|
|
394
|
+
"tags": [],
|
|
395
|
+
"text": "A list of search terms to be searched from the input field,\nit should be used with type=\"search\" input."
|
|
396
|
+
},
|
|
397
|
+
"internal": false
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "disabled",
|
|
401
|
+
"type": "boolean",
|
|
402
|
+
"attribute": "disabled",
|
|
403
|
+
"reflect": false,
|
|
404
|
+
"mutable": false,
|
|
405
|
+
"required": false,
|
|
406
|
+
"optional": true,
|
|
407
|
+
"defaultValue": "false",
|
|
408
|
+
"complexType": {
|
|
409
|
+
"original": "boolean",
|
|
410
|
+
"resolved": "boolean",
|
|
411
|
+
"references": {}
|
|
412
|
+
},
|
|
413
|
+
"docs": {
|
|
414
|
+
"tags": [],
|
|
415
|
+
"text": "If true, the element is displayed as disabled"
|
|
416
|
+
},
|
|
417
|
+
"internal": false
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "icon",
|
|
421
|
+
"type": "string",
|
|
422
|
+
"attribute": "icon",
|
|
423
|
+
"reflect": false,
|
|
424
|
+
"mutable": false,
|
|
425
|
+
"required": false,
|
|
426
|
+
"optional": true,
|
|
427
|
+
"complexType": {
|
|
428
|
+
"original": "string",
|
|
429
|
+
"resolved": "string",
|
|
430
|
+
"references": {}
|
|
431
|
+
},
|
|
432
|
+
"docs": {
|
|
433
|
+
"tags": [],
|
|
434
|
+
"text": "An icon displayed at the right of the input"
|
|
435
|
+
},
|
|
436
|
+
"internal": false
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "max",
|
|
440
|
+
"type": "number",
|
|
441
|
+
"attribute": "max",
|
|
442
|
+
"reflect": false,
|
|
443
|
+
"mutable": false,
|
|
444
|
+
"required": false,
|
|
445
|
+
"optional": true,
|
|
446
|
+
"complexType": {
|
|
447
|
+
"original": "number",
|
|
448
|
+
"resolved": "number",
|
|
449
|
+
"references": {}
|
|
450
|
+
},
|
|
451
|
+
"docs": {
|
|
452
|
+
"tags": [],
|
|
453
|
+
"text": "Specifies the maximum value\nuse it with input type=\"number\" or type=\"date\"\nExample: max=\"180\", max=\"2046-12-04\""
|
|
454
|
+
},
|
|
455
|
+
"internal": false
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "maxlength",
|
|
459
|
+
"type": "number",
|
|
460
|
+
"attribute": "maxlength",
|
|
461
|
+
"reflect": false,
|
|
462
|
+
"mutable": false,
|
|
463
|
+
"required": false,
|
|
464
|
+
"optional": true,
|
|
465
|
+
"complexType": {
|
|
466
|
+
"original": "number",
|
|
467
|
+
"resolved": "number",
|
|
468
|
+
"references": {}
|
|
469
|
+
},
|
|
470
|
+
"docs": {
|
|
471
|
+
"tags": [],
|
|
472
|
+
"text": "Specifies the maximum number of characters allowed in an element\nuse it with input type=\"number\""
|
|
473
|
+
},
|
|
474
|
+
"internal": false
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "min",
|
|
478
|
+
"type": "string",
|
|
479
|
+
"attribute": "min",
|
|
480
|
+
"reflect": false,
|
|
481
|
+
"mutable": false,
|
|
482
|
+
"required": false,
|
|
483
|
+
"optional": true,
|
|
484
|
+
"complexType": {
|
|
485
|
+
"original": "string",
|
|
486
|
+
"resolved": "string",
|
|
487
|
+
"references": {}
|
|
488
|
+
},
|
|
489
|
+
"docs": {
|
|
490
|
+
"tags": [],
|
|
491
|
+
"text": "Specifies the minimum value\nuse it with input type=\"number\" or type=\"date\"\nExample: min=\"-3\", min=\"1988-04-15\""
|
|
492
|
+
},
|
|
493
|
+
"internal": false
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "minlength",
|
|
497
|
+
"type": "number",
|
|
498
|
+
"attribute": "minlength",
|
|
499
|
+
"reflect": false,
|
|
500
|
+
"mutable": false,
|
|
501
|
+
"required": false,
|
|
502
|
+
"optional": true,
|
|
503
|
+
"complexType": {
|
|
504
|
+
"original": "number",
|
|
505
|
+
"resolved": "number",
|
|
506
|
+
"references": {}
|
|
507
|
+
},
|
|
508
|
+
"docs": {
|
|
509
|
+
"tags": [],
|
|
510
|
+
"text": "Specifies the minimum number of characters allowed in an element\nuse it with input type=\"number\""
|
|
511
|
+
},
|
|
512
|
+
"internal": false
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "name",
|
|
516
|
+
"type": "string",
|
|
517
|
+
"attribute": "name",
|
|
518
|
+
"reflect": false,
|
|
519
|
+
"mutable": false,
|
|
520
|
+
"required": false,
|
|
521
|
+
"optional": true,
|
|
522
|
+
"complexType": {
|
|
523
|
+
"original": "string",
|
|
524
|
+
"resolved": "string",
|
|
525
|
+
"references": {}
|
|
526
|
+
},
|
|
527
|
+
"docs": {
|
|
528
|
+
"tags": [],
|
|
529
|
+
"text": "Is needed to reference the form data after the form is submitted"
|
|
530
|
+
},
|
|
531
|
+
"internal": false
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "pattern",
|
|
535
|
+
"type": "string",
|
|
536
|
+
"attribute": "pattern",
|
|
537
|
+
"reflect": false,
|
|
538
|
+
"mutable": false,
|
|
539
|
+
"required": false,
|
|
540
|
+
"optional": true,
|
|
541
|
+
"complexType": {
|
|
542
|
+
"original": "string",
|
|
543
|
+
"resolved": "string",
|
|
544
|
+
"references": {}
|
|
545
|
+
},
|
|
546
|
+
"docs": {
|
|
547
|
+
"tags": [],
|
|
548
|
+
"text": "Specifies a regular expression that element\\'s value is checked against"
|
|
549
|
+
},
|
|
550
|
+
"internal": false
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "placeholder",
|
|
554
|
+
"type": "string",
|
|
555
|
+
"attribute": "placeholder",
|
|
556
|
+
"reflect": false,
|
|
557
|
+
"mutable": false,
|
|
558
|
+
"required": false,
|
|
559
|
+
"optional": true,
|
|
560
|
+
"complexType": {
|
|
561
|
+
"original": "string",
|
|
562
|
+
"resolved": "string",
|
|
563
|
+
"references": {}
|
|
564
|
+
},
|
|
565
|
+
"docs": {
|
|
566
|
+
"tags": [],
|
|
567
|
+
"text": "Specifies a short hint that describes the expected value of the element"
|
|
568
|
+
},
|
|
569
|
+
"internal": false
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "readonly",
|
|
573
|
+
"type": "boolean",
|
|
574
|
+
"attribute": "readonly",
|
|
575
|
+
"reflect": false,
|
|
576
|
+
"mutable": false,
|
|
577
|
+
"required": false,
|
|
578
|
+
"optional": true,
|
|
579
|
+
"defaultValue": "false",
|
|
580
|
+
"complexType": {
|
|
581
|
+
"original": "boolean",
|
|
582
|
+
"resolved": "boolean",
|
|
583
|
+
"references": {}
|
|
584
|
+
},
|
|
585
|
+
"docs": {
|
|
586
|
+
"tags": [],
|
|
587
|
+
"text": "Specifies that the element is read-only"
|
|
588
|
+
},
|
|
589
|
+
"internal": false
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "required",
|
|
593
|
+
"type": "boolean",
|
|
594
|
+
"attribute": "required",
|
|
595
|
+
"reflect": false,
|
|
596
|
+
"mutable": false,
|
|
597
|
+
"required": false,
|
|
598
|
+
"optional": true,
|
|
599
|
+
"defaultValue": "false",
|
|
600
|
+
"complexType": {
|
|
601
|
+
"original": "boolean",
|
|
602
|
+
"resolved": "boolean",
|
|
603
|
+
"references": {}
|
|
604
|
+
},
|
|
605
|
+
"docs": {
|
|
606
|
+
"tags": [],
|
|
607
|
+
"text": "Specifies that the element must be filled out before submitting the form"
|
|
608
|
+
},
|
|
609
|
+
"internal": false
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"name": "variant",
|
|
613
|
+
"type": "string",
|
|
614
|
+
"attribute": "variant",
|
|
615
|
+
"reflect": true,
|
|
616
|
+
"mutable": false,
|
|
617
|
+
"required": false,
|
|
618
|
+
"optional": true,
|
|
619
|
+
"complexType": {
|
|
620
|
+
"original": "ThemeStatusVariantType",
|
|
621
|
+
"resolved": "\"error\" | \"info\" | \"success\" | \"warning\"",
|
|
622
|
+
"references": {
|
|
623
|
+
"ThemeStatusVariantType": {
|
|
624
|
+
"location": "import",
|
|
625
|
+
"path": "../../types/variant"
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"docs": {
|
|
630
|
+
"tags": [],
|
|
631
|
+
"text": "Sets the variant of the input field"
|
|
632
|
+
},
|
|
633
|
+
"internal": false
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "variantTip",
|
|
637
|
+
"type": "string",
|
|
638
|
+
"attribute": "variant-tip",
|
|
639
|
+
"reflect": false,
|
|
640
|
+
"mutable": false,
|
|
641
|
+
"required": false,
|
|
642
|
+
"optional": true,
|
|
643
|
+
"complexType": {
|
|
644
|
+
"original": "string",
|
|
645
|
+
"resolved": "string",
|
|
646
|
+
"references": {}
|
|
647
|
+
},
|
|
648
|
+
"docs": {
|
|
649
|
+
"tags": [],
|
|
650
|
+
"text": "Sets the word(s) of the variant of the input field"
|
|
651
|
+
},
|
|
652
|
+
"internal": false
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "step",
|
|
656
|
+
"type": "string",
|
|
657
|
+
"attribute": "step",
|
|
658
|
+
"reflect": false,
|
|
659
|
+
"mutable": false,
|
|
660
|
+
"required": false,
|
|
661
|
+
"optional": true,
|
|
662
|
+
"complexType": {
|
|
663
|
+
"original": "string",
|
|
664
|
+
"resolved": "string",
|
|
665
|
+
"references": {}
|
|
666
|
+
},
|
|
667
|
+
"docs": {
|
|
668
|
+
"tags": [],
|
|
669
|
+
"text": "Specifies the interval between legal numbers in an input field"
|
|
670
|
+
},
|
|
671
|
+
"internal": false
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"name": "type",
|
|
675
|
+
"type": "string",
|
|
676
|
+
"attribute": "type",
|
|
677
|
+
"reflect": false,
|
|
678
|
+
"mutable": false,
|
|
679
|
+
"required": false,
|
|
680
|
+
"optional": false,
|
|
681
|
+
"defaultValue": "'text'",
|
|
682
|
+
"complexType": {
|
|
683
|
+
"original": "InputTextType",
|
|
684
|
+
"resolved": "\"date\" | \"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"textarea\" | \"time\" | \"url\"",
|
|
685
|
+
"references": {
|
|
686
|
+
"InputTextType": {
|
|
687
|
+
"location": "import",
|
|
688
|
+
"path": "../../types/input-text-type"
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"docs": {
|
|
693
|
+
"tags": [],
|
|
694
|
+
"text": "Specifies the type of input element"
|
|
695
|
+
},
|
|
696
|
+
"internal": false
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"name": "value",
|
|
700
|
+
"type": "any",
|
|
701
|
+
"attribute": "value",
|
|
702
|
+
"reflect": false,
|
|
703
|
+
"mutable": false,
|
|
704
|
+
"required": false,
|
|
705
|
+
"optional": true,
|
|
706
|
+
"defaultValue": "''",
|
|
707
|
+
"complexType": {
|
|
708
|
+
"original": "InputValueType",
|
|
709
|
+
"resolved": "number | string",
|
|
710
|
+
"references": {
|
|
711
|
+
"InputValueType": {
|
|
712
|
+
"location": "import",
|
|
713
|
+
"path": "../../types/input-value-type"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"docs": {
|
|
718
|
+
"tags": [],
|
|
719
|
+
"text": "Specifies the value of the input element"
|
|
720
|
+
},
|
|
721
|
+
"internal": false
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"shadowDelegatesFocus": false,
|
|
725
|
+
"states": [
|
|
726
|
+
{
|
|
727
|
+
"name": "hasFocus"
|
|
728
|
+
}
|
|
729
|
+
]
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"entries": [
|
|
733
|
+
{
|
|
734
|
+
"cmps": [
|
|
735
|
+
{
|
|
736
|
+
"tagName": "mds-input",
|
|
737
|
+
"excludeFromCollection": false,
|
|
738
|
+
"isCollectionDependency": false,
|
|
739
|
+
"componentClassName": "MdsInput",
|
|
740
|
+
"elementRef": "el",
|
|
741
|
+
"encapsulation": "shadow",
|
|
742
|
+
"shadowDelegatesFocus": false,
|
|
743
|
+
"properties": [
|
|
744
|
+
{
|
|
745
|
+
"name": "autocomplete",
|
|
746
|
+
"type": "string",
|
|
747
|
+
"attribute": "autocomplete",
|
|
748
|
+
"reflect": false,
|
|
749
|
+
"mutable": false,
|
|
750
|
+
"required": false,
|
|
751
|
+
"optional": true,
|
|
752
|
+
"defaultValue": "'off'",
|
|
753
|
+
"complexType": {
|
|
754
|
+
"original": "AutocompleteType",
|
|
755
|
+
"resolved": "\"additional-name\" | \"address\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-additional-name\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"email\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"impp\" | \"language\" | \"name\" | \"new-password\" | \"nickname\" | \"off\" | \"on\" | \"one-time-code\" | \"organization\" | \"organization-title\" | \"photo\" | \"postal-code\" | \"sex\" | \"street-address\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"transaction-amount\" | \"transaction-currency\" | \"url\" | \"username\"",
|
|
756
|
+
"references": {
|
|
757
|
+
"AutocompleteType": {
|
|
758
|
+
"location": "import",
|
|
759
|
+
"path": "../../types/autocomplete"
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"docs": {
|
|
764
|
+
"tags": [],
|
|
765
|
+
"text": "Specifies whether the element should have autocomplete enabled"
|
|
766
|
+
},
|
|
767
|
+
"internal": false
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"name": "autofocus",
|
|
771
|
+
"type": "boolean",
|
|
772
|
+
"attribute": "autofocus",
|
|
773
|
+
"reflect": false,
|
|
774
|
+
"mutable": false,
|
|
775
|
+
"required": false,
|
|
776
|
+
"optional": true,
|
|
777
|
+
"defaultValue": "false",
|
|
778
|
+
"complexType": {
|
|
779
|
+
"original": "boolean",
|
|
780
|
+
"resolved": "boolean",
|
|
781
|
+
"references": {}
|
|
782
|
+
},
|
|
783
|
+
"docs": {
|
|
784
|
+
"tags": [],
|
|
785
|
+
"text": "Specifies that the element should automatically get focus when the page loads"
|
|
786
|
+
},
|
|
787
|
+
"internal": false
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"name": "datalist",
|
|
791
|
+
"type": "unknown",
|
|
792
|
+
"reflect": false,
|
|
793
|
+
"mutable": false,
|
|
794
|
+
"required": false,
|
|
795
|
+
"optional": true,
|
|
796
|
+
"complexType": {
|
|
797
|
+
"original": "string[]",
|
|
798
|
+
"resolved": "string[]",
|
|
799
|
+
"references": {}
|
|
800
|
+
},
|
|
801
|
+
"docs": {
|
|
802
|
+
"tags": [],
|
|
803
|
+
"text": "A list of search terms to be searched from the input field,\nit should be used with type=\"search\" input."
|
|
804
|
+
},
|
|
805
|
+
"internal": false
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"name": "disabled",
|
|
809
|
+
"type": "boolean",
|
|
810
|
+
"attribute": "disabled",
|
|
811
|
+
"reflect": false,
|
|
812
|
+
"mutable": false,
|
|
813
|
+
"required": false,
|
|
814
|
+
"optional": true,
|
|
815
|
+
"defaultValue": "false",
|
|
816
|
+
"complexType": {
|
|
817
|
+
"original": "boolean",
|
|
818
|
+
"resolved": "boolean",
|
|
819
|
+
"references": {}
|
|
820
|
+
},
|
|
821
|
+
"docs": {
|
|
822
|
+
"tags": [],
|
|
823
|
+
"text": "If true, the element is displayed as disabled"
|
|
824
|
+
},
|
|
825
|
+
"internal": false
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"name": "icon",
|
|
829
|
+
"type": "string",
|
|
830
|
+
"attribute": "icon",
|
|
831
|
+
"reflect": false,
|
|
832
|
+
"mutable": false,
|
|
833
|
+
"required": false,
|
|
834
|
+
"optional": true,
|
|
835
|
+
"complexType": {
|
|
836
|
+
"original": "string",
|
|
837
|
+
"resolved": "string",
|
|
838
|
+
"references": {}
|
|
839
|
+
},
|
|
840
|
+
"docs": {
|
|
841
|
+
"tags": [],
|
|
842
|
+
"text": "An icon displayed at the right of the input"
|
|
843
|
+
},
|
|
844
|
+
"internal": false
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"name": "max",
|
|
848
|
+
"type": "number",
|
|
849
|
+
"attribute": "max",
|
|
850
|
+
"reflect": false,
|
|
851
|
+
"mutable": false,
|
|
852
|
+
"required": false,
|
|
853
|
+
"optional": true,
|
|
854
|
+
"complexType": {
|
|
855
|
+
"original": "number",
|
|
856
|
+
"resolved": "number",
|
|
857
|
+
"references": {}
|
|
858
|
+
},
|
|
859
|
+
"docs": {
|
|
860
|
+
"tags": [],
|
|
861
|
+
"text": "Specifies the maximum value\nuse it with input type=\"number\" or type=\"date\"\nExample: max=\"180\", max=\"2046-12-04\""
|
|
862
|
+
},
|
|
863
|
+
"internal": false
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "maxlength",
|
|
867
|
+
"type": "number",
|
|
868
|
+
"attribute": "maxlength",
|
|
869
|
+
"reflect": false,
|
|
870
|
+
"mutable": false,
|
|
871
|
+
"required": false,
|
|
872
|
+
"optional": true,
|
|
873
|
+
"complexType": {
|
|
874
|
+
"original": "number",
|
|
875
|
+
"resolved": "number",
|
|
876
|
+
"references": {}
|
|
877
|
+
},
|
|
878
|
+
"docs": {
|
|
879
|
+
"tags": [],
|
|
880
|
+
"text": "Specifies the maximum number of characters allowed in an element\nuse it with input type=\"number\""
|
|
881
|
+
},
|
|
882
|
+
"internal": false
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "min",
|
|
886
|
+
"type": "string",
|
|
887
|
+
"attribute": "min",
|
|
888
|
+
"reflect": false,
|
|
889
|
+
"mutable": false,
|
|
890
|
+
"required": false,
|
|
891
|
+
"optional": true,
|
|
892
|
+
"complexType": {
|
|
893
|
+
"original": "string",
|
|
894
|
+
"resolved": "string",
|
|
895
|
+
"references": {}
|
|
896
|
+
},
|
|
897
|
+
"docs": {
|
|
898
|
+
"tags": [],
|
|
899
|
+
"text": "Specifies the minimum value\nuse it with input type=\"number\" or type=\"date\"\nExample: min=\"-3\", min=\"1988-04-15\""
|
|
900
|
+
},
|
|
901
|
+
"internal": false
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"name": "minlength",
|
|
905
|
+
"type": "number",
|
|
906
|
+
"attribute": "minlength",
|
|
907
|
+
"reflect": false,
|
|
908
|
+
"mutable": false,
|
|
909
|
+
"required": false,
|
|
910
|
+
"optional": true,
|
|
911
|
+
"complexType": {
|
|
912
|
+
"original": "number",
|
|
913
|
+
"resolved": "number",
|
|
914
|
+
"references": {}
|
|
915
|
+
},
|
|
916
|
+
"docs": {
|
|
917
|
+
"tags": [],
|
|
918
|
+
"text": "Specifies the minimum number of characters allowed in an element\nuse it with input type=\"number\""
|
|
919
|
+
},
|
|
920
|
+
"internal": false
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "name",
|
|
924
|
+
"type": "string",
|
|
925
|
+
"attribute": "name",
|
|
926
|
+
"reflect": false,
|
|
927
|
+
"mutable": false,
|
|
928
|
+
"required": false,
|
|
929
|
+
"optional": true,
|
|
930
|
+
"complexType": {
|
|
931
|
+
"original": "string",
|
|
932
|
+
"resolved": "string",
|
|
933
|
+
"references": {}
|
|
934
|
+
},
|
|
935
|
+
"docs": {
|
|
936
|
+
"tags": [],
|
|
937
|
+
"text": "Is needed to reference the form data after the form is submitted"
|
|
938
|
+
},
|
|
939
|
+
"internal": false
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"name": "pattern",
|
|
943
|
+
"type": "string",
|
|
944
|
+
"attribute": "pattern",
|
|
945
|
+
"reflect": false,
|
|
946
|
+
"mutable": false,
|
|
947
|
+
"required": false,
|
|
948
|
+
"optional": true,
|
|
949
|
+
"complexType": {
|
|
950
|
+
"original": "string",
|
|
951
|
+
"resolved": "string",
|
|
952
|
+
"references": {}
|
|
953
|
+
},
|
|
954
|
+
"docs": {
|
|
955
|
+
"tags": [],
|
|
956
|
+
"text": "Specifies a regular expression that element\\'s value is checked against"
|
|
957
|
+
},
|
|
958
|
+
"internal": false
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "placeholder",
|
|
962
|
+
"type": "string",
|
|
963
|
+
"attribute": "placeholder",
|
|
964
|
+
"reflect": false,
|
|
965
|
+
"mutable": false,
|
|
966
|
+
"required": false,
|
|
967
|
+
"optional": true,
|
|
968
|
+
"complexType": {
|
|
969
|
+
"original": "string",
|
|
970
|
+
"resolved": "string",
|
|
971
|
+
"references": {}
|
|
972
|
+
},
|
|
973
|
+
"docs": {
|
|
974
|
+
"tags": [],
|
|
975
|
+
"text": "Specifies a short hint that describes the expected value of the element"
|
|
976
|
+
},
|
|
977
|
+
"internal": false
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"name": "readonly",
|
|
981
|
+
"type": "boolean",
|
|
982
|
+
"attribute": "readonly",
|
|
983
|
+
"reflect": false,
|
|
984
|
+
"mutable": false,
|
|
985
|
+
"required": false,
|
|
986
|
+
"optional": true,
|
|
987
|
+
"defaultValue": "false",
|
|
988
|
+
"complexType": {
|
|
989
|
+
"original": "boolean",
|
|
990
|
+
"resolved": "boolean",
|
|
991
|
+
"references": {}
|
|
992
|
+
},
|
|
993
|
+
"docs": {
|
|
994
|
+
"tags": [],
|
|
995
|
+
"text": "Specifies that the element is read-only"
|
|
996
|
+
},
|
|
997
|
+
"internal": false
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"name": "required",
|
|
1001
|
+
"type": "boolean",
|
|
1002
|
+
"attribute": "required",
|
|
1003
|
+
"reflect": false,
|
|
1004
|
+
"mutable": false,
|
|
1005
|
+
"required": false,
|
|
1006
|
+
"optional": true,
|
|
1007
|
+
"defaultValue": "false",
|
|
1008
|
+
"complexType": {
|
|
1009
|
+
"original": "boolean",
|
|
1010
|
+
"resolved": "boolean",
|
|
1011
|
+
"references": {}
|
|
1012
|
+
},
|
|
1013
|
+
"docs": {
|
|
1014
|
+
"tags": [],
|
|
1015
|
+
"text": "Specifies that the element must be filled out before submitting the form"
|
|
1016
|
+
},
|
|
1017
|
+
"internal": false
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"name": "variant",
|
|
1021
|
+
"type": "string",
|
|
1022
|
+
"attribute": "variant",
|
|
1023
|
+
"reflect": true,
|
|
1024
|
+
"mutable": false,
|
|
1025
|
+
"required": false,
|
|
1026
|
+
"optional": true,
|
|
1027
|
+
"complexType": {
|
|
1028
|
+
"original": "ThemeStatusVariantType",
|
|
1029
|
+
"resolved": "\"error\" | \"info\" | \"success\" | \"warning\"",
|
|
1030
|
+
"references": {
|
|
1031
|
+
"ThemeStatusVariantType": {
|
|
1032
|
+
"location": "import",
|
|
1033
|
+
"path": "../../types/variant"
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"docs": {
|
|
1038
|
+
"tags": [],
|
|
1039
|
+
"text": "Sets the variant of the input field"
|
|
1040
|
+
},
|
|
1041
|
+
"internal": false
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "variantTip",
|
|
1045
|
+
"type": "string",
|
|
1046
|
+
"attribute": "variant-tip",
|
|
1047
|
+
"reflect": false,
|
|
1048
|
+
"mutable": false,
|
|
1049
|
+
"required": false,
|
|
1050
|
+
"optional": true,
|
|
1051
|
+
"complexType": {
|
|
1052
|
+
"original": "string",
|
|
1053
|
+
"resolved": "string",
|
|
1054
|
+
"references": {}
|
|
1055
|
+
},
|
|
1056
|
+
"docs": {
|
|
1057
|
+
"tags": [],
|
|
1058
|
+
"text": "Sets the word(s) of the variant of the input field"
|
|
1059
|
+
},
|
|
1060
|
+
"internal": false
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"name": "step",
|
|
1064
|
+
"type": "string",
|
|
1065
|
+
"attribute": "step",
|
|
1066
|
+
"reflect": false,
|
|
1067
|
+
"mutable": false,
|
|
1068
|
+
"required": false,
|
|
1069
|
+
"optional": true,
|
|
1070
|
+
"complexType": {
|
|
1071
|
+
"original": "string",
|
|
1072
|
+
"resolved": "string",
|
|
1073
|
+
"references": {}
|
|
1074
|
+
},
|
|
1075
|
+
"docs": {
|
|
1076
|
+
"tags": [],
|
|
1077
|
+
"text": "Specifies the interval between legal numbers in an input field"
|
|
1078
|
+
},
|
|
1079
|
+
"internal": false
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"name": "type",
|
|
1083
|
+
"type": "string",
|
|
1084
|
+
"attribute": "type",
|
|
1085
|
+
"reflect": false,
|
|
1086
|
+
"mutable": false,
|
|
1087
|
+
"required": false,
|
|
1088
|
+
"optional": false,
|
|
1089
|
+
"defaultValue": "'text'",
|
|
1090
|
+
"complexType": {
|
|
1091
|
+
"original": "InputTextType",
|
|
1092
|
+
"resolved": "\"date\" | \"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"textarea\" | \"time\" | \"url\"",
|
|
1093
|
+
"references": {
|
|
1094
|
+
"InputTextType": {
|
|
1095
|
+
"location": "import",
|
|
1096
|
+
"path": "../../types/input-text-type"
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"docs": {
|
|
1101
|
+
"tags": [],
|
|
1102
|
+
"text": "Specifies the type of input element"
|
|
1103
|
+
},
|
|
1104
|
+
"internal": false
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"name": "value",
|
|
1108
|
+
"type": "any",
|
|
1109
|
+
"attribute": "value",
|
|
1110
|
+
"reflect": false,
|
|
1111
|
+
"mutable": false,
|
|
1112
|
+
"required": false,
|
|
1113
|
+
"optional": true,
|
|
1114
|
+
"defaultValue": "''",
|
|
1115
|
+
"complexType": {
|
|
1116
|
+
"original": "InputValueType",
|
|
1117
|
+
"resolved": "number | string",
|
|
1118
|
+
"references": {
|
|
1119
|
+
"InputValueType": {
|
|
1120
|
+
"location": "import",
|
|
1121
|
+
"path": "../../types/input-value-type"
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1125
|
+
"docs": {
|
|
1126
|
+
"tags": [],
|
|
1127
|
+
"text": "Specifies the value of the input element"
|
|
1128
|
+
},
|
|
1129
|
+
"internal": false
|
|
1130
|
+
}
|
|
1131
|
+
],
|
|
1132
|
+
"virtualProperties": [],
|
|
1133
|
+
"states": [
|
|
1134
|
+
{
|
|
1135
|
+
"name": "hasFocus"
|
|
1136
|
+
}
|
|
1137
|
+
],
|
|
1138
|
+
"methods": [
|
|
1139
|
+
{
|
|
1140
|
+
"name": "setFocus",
|
|
1141
|
+
"docs": {
|
|
1142
|
+
"text": "Sets focus on the specified `my-input`.\nUse this method instead\nof the global `input.focus()`.",
|
|
1143
|
+
"tags": []
|
|
1144
|
+
},
|
|
1145
|
+
"complexType": {
|
|
1146
|
+
"signature": "() => Promise<void>",
|
|
1147
|
+
"parameters": [],
|
|
1148
|
+
"references": {
|
|
1149
|
+
"Promise": {
|
|
1150
|
+
"location": "global"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"return": "Promise<void>"
|
|
1154
|
+
},
|
|
1155
|
+
"internal": false
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "getInputElement",
|
|
1159
|
+
"docs": {
|
|
1160
|
+
"text": "Returns the native `<input>` element used under the hood.",
|
|
1161
|
+
"tags": []
|
|
1162
|
+
},
|
|
1163
|
+
"complexType": {
|
|
1164
|
+
"signature": "() => Promise<HTMLInputElement | HTMLTextAreaElement>",
|
|
1165
|
+
"parameters": [],
|
|
1166
|
+
"references": {
|
|
1167
|
+
"Promise": {
|
|
1168
|
+
"location": "global"
|
|
1169
|
+
},
|
|
1170
|
+
"HTMLInputElement": {
|
|
1171
|
+
"location": "global"
|
|
1172
|
+
},
|
|
1173
|
+
"HTMLTextAreaElement": {
|
|
1174
|
+
"location": "global"
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
"return": "Promise<HTMLInputElement | HTMLTextAreaElement>"
|
|
1178
|
+
},
|
|
1179
|
+
"internal": false
|
|
1180
|
+
}
|
|
1181
|
+
],
|
|
1182
|
+
"listeners": [],
|
|
1183
|
+
"events": [
|
|
1184
|
+
{
|
|
1185
|
+
"name": "changeEvent",
|
|
1186
|
+
"method": "changeEvent",
|
|
1187
|
+
"bubbles": true,
|
|
1188
|
+
"cancelable": true,
|
|
1189
|
+
"composed": true,
|
|
1190
|
+
"docs": {
|
|
1191
|
+
"tags": [],
|
|
1192
|
+
"text": "Emits an InputChangeEventDetail when the value of the input element changes"
|
|
1193
|
+
},
|
|
1194
|
+
"complexType": {
|
|
1195
|
+
"original": "InputValue",
|
|
1196
|
+
"resolved": "InputValue",
|
|
1197
|
+
"references": {
|
|
1198
|
+
"InputValue": {
|
|
1199
|
+
"location": "import",
|
|
1200
|
+
"path": "./meta/interfaces"
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
"internal": false
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "keyDownEvent",
|
|
1208
|
+
"method": "keyDownEvent",
|
|
1209
|
+
"bubbles": true,
|
|
1210
|
+
"cancelable": true,
|
|
1211
|
+
"composed": true,
|
|
1212
|
+
"docs": {
|
|
1213
|
+
"tags": [],
|
|
1214
|
+
"text": "Emits a KeyboardEvent when a keboard key is pressed on the focused input element"
|
|
1215
|
+
},
|
|
1216
|
+
"complexType": {
|
|
1217
|
+
"original": "KeyboardEvent",
|
|
1218
|
+
"resolved": "KeyboardEvent",
|
|
1219
|
+
"references": {
|
|
1220
|
+
"KeyboardEvent": {
|
|
1221
|
+
"location": "global"
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"internal": false
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"name": "blurEvent",
|
|
1229
|
+
"method": "blurEvent",
|
|
1230
|
+
"bubbles": true,
|
|
1231
|
+
"cancelable": true,
|
|
1232
|
+
"composed": true,
|
|
1233
|
+
"docs": {
|
|
1234
|
+
"tags": [],
|
|
1235
|
+
"text": "Emits a void event when input element is blurred"
|
|
1236
|
+
},
|
|
1237
|
+
"complexType": {
|
|
1238
|
+
"original": "void",
|
|
1239
|
+
"resolved": "void",
|
|
1240
|
+
"references": {}
|
|
1241
|
+
},
|
|
1242
|
+
"internal": false
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"name": "focusEvent",
|
|
1246
|
+
"method": "focusEvent",
|
|
1247
|
+
"bubbles": true,
|
|
1248
|
+
"cancelable": true,
|
|
1249
|
+
"composed": true,
|
|
1250
|
+
"docs": {
|
|
1251
|
+
"tags": [],
|
|
1252
|
+
"text": "Emits a void event when input element is focused"
|
|
1253
|
+
},
|
|
1254
|
+
"complexType": {
|
|
1255
|
+
"original": "void",
|
|
1256
|
+
"resolved": "void",
|
|
1257
|
+
"references": {}
|
|
1258
|
+
},
|
|
1259
|
+
"internal": false
|
|
1260
|
+
}
|
|
1261
|
+
],
|
|
1262
|
+
"watchers": [
|
|
1263
|
+
{
|
|
1264
|
+
"propName": "value",
|
|
1265
|
+
"methodName": "valueChanged"
|
|
1266
|
+
}
|
|
1267
|
+
],
|
|
1268
|
+
"styles": [
|
|
1269
|
+
{
|
|
1270
|
+
"modeName": "$",
|
|
1271
|
+
"styleId": "MDS-INPUT",
|
|
1272
|
+
"styleStr": null,
|
|
1273
|
+
"styleIdentifier": "mdsInputStyle",
|
|
1274
|
+
"externalStyles": [
|
|
1275
|
+
{
|
|
1276
|
+
"absolutePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-input/src/components/mds-input/mds-input.css",
|
|
1277
|
+
"relativePath": "mds-input.css",
|
|
1278
|
+
"originalComponentPath": "mds-input.css"
|
|
1279
|
+
}
|
|
1280
|
+
]
|
|
1281
|
+
}
|
|
1282
|
+
],
|
|
1283
|
+
"legacyConnect": [],
|
|
1284
|
+
"legacyContext": [],
|
|
1285
|
+
"internal": false,
|
|
1286
|
+
"assetsDirs": [],
|
|
1287
|
+
"styleDocs": [
|
|
1288
|
+
{
|
|
1289
|
+
"name": "--background",
|
|
1290
|
+
"docs": "Sets the background-color of the component",
|
|
1291
|
+
"annotation": "prop"
|
|
1292
|
+
}
|
|
1293
|
+
],
|
|
1294
|
+
"docs": {
|
|
1295
|
+
"tags": [],
|
|
1296
|
+
"text": ""
|
|
1297
|
+
},
|
|
1298
|
+
"jsFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-input/src/components/mds-input/mds-input.js",
|
|
1299
|
+
"sourceFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-input/src/components/mds-input/mds-input.tsx",
|
|
1300
|
+
"sourceMapPath": null,
|
|
1301
|
+
"hasAttributeChangedCallbackFn": false,
|
|
1302
|
+
"hasComponentWillLoadFn": true,
|
|
1303
|
+
"hasComponentDidLoadFn": false,
|
|
1304
|
+
"hasComponentShouldUpdateFn": false,
|
|
1305
|
+
"hasComponentWillUpdateFn": false,
|
|
1306
|
+
"hasComponentDidUpdateFn": false,
|
|
1307
|
+
"hasComponentWillRenderFn": false,
|
|
1308
|
+
"hasComponentDidRenderFn": false,
|
|
1309
|
+
"hasComponentDidUnloadFn": false,
|
|
1310
|
+
"hasConnectedCallbackFn": false,
|
|
1311
|
+
"hasDisconnectedCallbackFn": false,
|
|
1312
|
+
"hasElement": false,
|
|
1313
|
+
"hasEvent": true,
|
|
1314
|
+
"hasLifecycle": true,
|
|
1315
|
+
"hasListener": false,
|
|
1316
|
+
"hasListenerTarget": false,
|
|
1317
|
+
"hasListenerTargetWindow": false,
|
|
1318
|
+
"hasListenerTargetDocument": false,
|
|
1319
|
+
"hasListenerTargetBody": false,
|
|
1320
|
+
"hasListenerTargetParent": false,
|
|
1321
|
+
"hasMember": true,
|
|
1322
|
+
"hasMethod": true,
|
|
1323
|
+
"hasMode": false,
|
|
1324
|
+
"hasAttribute": true,
|
|
1325
|
+
"hasProp": true,
|
|
1326
|
+
"hasPropNumber": true,
|
|
1327
|
+
"hasPropBoolean": true,
|
|
1328
|
+
"hasPropString": true,
|
|
1329
|
+
"hasPropMutable": false,
|
|
1330
|
+
"hasReflect": true,
|
|
1331
|
+
"hasRenderFn": true,
|
|
1332
|
+
"hasState": true,
|
|
1333
|
+
"hasStyle": true,
|
|
1334
|
+
"hasVdomAttribute": true,
|
|
1335
|
+
"hasVdomXlink": false,
|
|
1336
|
+
"hasVdomClass": true,
|
|
1337
|
+
"hasVdomFunctional": false,
|
|
1338
|
+
"hasVdomKey": false,
|
|
1339
|
+
"hasVdomListener": true,
|
|
1340
|
+
"hasVdomPropOrAttr": true,
|
|
1341
|
+
"hasVdomRef": true,
|
|
1342
|
+
"hasVdomRender": true,
|
|
1343
|
+
"hasVdomStyle": false,
|
|
1344
|
+
"hasVdomText": true,
|
|
1345
|
+
"hasWatchCallback": true,
|
|
1346
|
+
"isPlain": false,
|
|
1347
|
+
"htmlAttrNames": [
|
|
1348
|
+
"class",
|
|
1349
|
+
"autoFocus",
|
|
1350
|
+
"disabled",
|
|
1351
|
+
"maxLength",
|
|
1352
|
+
"minLength",
|
|
1353
|
+
"name",
|
|
1354
|
+
"onBlur",
|
|
1355
|
+
"onFocus",
|
|
1356
|
+
"onInput",
|
|
1357
|
+
"placeholder",
|
|
1358
|
+
"readOnly",
|
|
1359
|
+
"ref",
|
|
1360
|
+
"required",
|
|
1361
|
+
"tabIndex",
|
|
1362
|
+
"value",
|
|
1363
|
+
"autoComplete",
|
|
1364
|
+
"max",
|
|
1365
|
+
"min",
|
|
1366
|
+
"pattern",
|
|
1367
|
+
"list",
|
|
1368
|
+
"step",
|
|
1369
|
+
"type",
|
|
1370
|
+
"typography",
|
|
1371
|
+
"id"
|
|
1372
|
+
],
|
|
1373
|
+
"htmlTagNames": [
|
|
1374
|
+
"textarea",
|
|
1375
|
+
"input",
|
|
1376
|
+
"mds-text",
|
|
1377
|
+
"datalist",
|
|
1378
|
+
"option",
|
|
1379
|
+
"mds-icon"
|
|
1380
|
+
],
|
|
1381
|
+
"htmlParts": [],
|
|
1382
|
+
"isUpdateable": true,
|
|
1383
|
+
"potentialCmpRefs": [
|
|
1384
|
+
"mds-text",
|
|
1385
|
+
"mds-icon"
|
|
1386
|
+
],
|
|
1387
|
+
"directDependencies": [],
|
|
1388
|
+
"dependencies": [],
|
|
1389
|
+
"dependents": [],
|
|
1390
|
+
"directDependents": []
|
|
1391
|
+
}
|
|
1392
|
+
],
|
|
1393
|
+
"entryKey": "mds-input.entry"
|
|
1394
|
+
}
|
|
1395
|
+
],
|
|
1396
|
+
"componentGraph": {
|
|
1397
|
+
"sc-mds-input": [
|
|
1398
|
+
"p-8bdf82a6.js"
|
|
1399
|
+
]
|
|
1400
|
+
},
|
|
1401
|
+
"sourceGraph": {
|
|
1402
|
+
"./src/components/mds-input/mds-input.tsx": [],
|
|
1403
|
+
"./src/components/mds-input/meta/interfaces.ts": [],
|
|
1404
|
+
"./src/dictionary/autocomplete.ts": [],
|
|
1405
|
+
"./src/dictionary/button.ts": [],
|
|
1406
|
+
"./src/dictionary/color.ts": [],
|
|
1407
|
+
"./src/dictionary/icon.ts": [],
|
|
1408
|
+
"./src/dictionary/input-text-type.ts": [],
|
|
1409
|
+
"./src/dictionary/loading.ts": [],
|
|
1410
|
+
"./src/dictionary/typography.ts": [],
|
|
1411
|
+
"./src/dictionary/variant.ts": [],
|
|
1412
|
+
"./src/fixtures/cities.ts": [],
|
|
1413
|
+
"./src/interface/input-value.ts": [],
|
|
1414
|
+
"./src/types/autocomplete.ts": [],
|
|
1415
|
+
"./src/types/button.ts": [],
|
|
1416
|
+
"./src/types/form-rel.ts": [],
|
|
1417
|
+
"./src/types/input-text-type.ts": [],
|
|
1418
|
+
"./src/types/input-value-type.ts": [],
|
|
1419
|
+
"./src/types/loading.ts": [],
|
|
1420
|
+
"./src/types/typography.ts": [],
|
|
1421
|
+
"./src/types/variant.ts": []
|
|
1422
|
+
},
|
|
1423
|
+
"collections": []
|
|
1424
|
+
}
|