@maggioli-design-system/mds-list 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-41114fc6.js +673 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/mds-list.cjs.entry.js +19 -0
- package/dist/cjs/mds-list.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/mds-list/mds-list.css +26 -0
- package/dist/collection/components/mds-list/mds-list.js +15 -0
- package/dist/collection/components/mds-list/test/mds-list.stories.js +22 -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 +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-list.d.ts +11 -0
- package/dist/components/mds-list.js +34 -0
- package/dist/esm/index-6230983e.js +647 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/mds-list.entry.js +15 -0
- package/dist/esm/mds-list.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-6230983e.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-list.entry.js +1 -0
- package/dist/esm-es5/mds-list.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-list/index.esm.js +0 -0
- package/dist/mds-list/mds-list.esm.js +1 -0
- package/dist/mds-list/mds-list.js +130 -0
- package/dist/mds-list/p-233f72af.system.js +1 -0
- package/dist/mds-list/p-50ea2036.system.js +1 -0
- package/dist/mds-list/p-5b7327b3.js +1 -0
- package/dist/mds-list/p-9fd9e0ef.system.js +1 -0
- package/dist/mds-list/p-f2ee2e84.entry.js +1 -0
- package/dist/mds-list/p-f3960731.system.entry.js +1 -0
- package/dist/stats.json +349 -0
- package/dist/types/components/mds-list/mds-list.d.ts +3 -0
- package/dist/types/components.d.ts +37 -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 +10 -0
- package/src/components/mds-list/mds-list.css +15 -0
- package/src/components/mds-list/mds-list.tsx +19 -0
- package/src/components/mds-list/readme.md +10 -0
- package/src/components/mds-list/test/mds-list.stories.js +22 -0
- package/src/components.d.ts +37 -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 +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 +35 -0
- package/src/types/variant.ts +73 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-list.esm.js +1 -0
- package/www/build/mds-list.js +130 -0
- package/www/build/p-233f72af.system.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-5b7327b3.js +1 -0
- package/www/build/p-9fd9e0ef.system.js +1 -0
- package/www/build/p-f2ee2e84.entry.js +1 -0
- package/www/build/p-f3960731.system.entry.js +1 -0
- package/www/host.config.json +15 -0
package/dist/stats.json
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2022-01-10T15:52:47",
|
|
3
|
+
"compiler": {
|
|
4
|
+
"name": "node",
|
|
5
|
+
"version": "16.13.0"
|
|
6
|
+
},
|
|
7
|
+
"app": {
|
|
8
|
+
"namespace": "MdsList",
|
|
9
|
+
"fsNamespace": "mds-list",
|
|
10
|
+
"components": 1,
|
|
11
|
+
"entries": 1,
|
|
12
|
+
"bundles": 60,
|
|
13
|
+
"outputs": [
|
|
14
|
+
{
|
|
15
|
+
"name": "dist-collection",
|
|
16
|
+
"files": 19,
|
|
17
|
+
"generatedFiles": [
|
|
18
|
+
"./dist/collection/components/mds-list/mds-list.js",
|
|
19
|
+
"./dist/collection/dictionary/autocomplete.js",
|
|
20
|
+
"./dist/collection/dictionary/button.js",
|
|
21
|
+
"./dist/collection/dictionary/color.js",
|
|
22
|
+
"./dist/collection/dictionary/icon.js",
|
|
23
|
+
"./dist/collection/dictionary/input-text-type.js",
|
|
24
|
+
"./dist/collection/dictionary/loading.js",
|
|
25
|
+
"./dist/collection/dictionary/typography.js",
|
|
26
|
+
"./dist/collection/dictionary/variant.js",
|
|
27
|
+
"./dist/collection/fixtures/cities.js",
|
|
28
|
+
"./dist/collection/interface/input-value.js",
|
|
29
|
+
"./dist/collection/types/autocomplete.js",
|
|
30
|
+
"./dist/collection/types/button.js",
|
|
31
|
+
"./dist/collection/types/form-rel.js",
|
|
32
|
+
"./dist/collection/types/input-text-type.js",
|
|
33
|
+
"./dist/collection/types/input-value-type.js",
|
|
34
|
+
"./dist/collection/types/loading.js",
|
|
35
|
+
"./dist/collection/types/typography.js",
|
|
36
|
+
"./dist/collection/types/variant.js"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "dist-custom-elements",
|
|
41
|
+
"files": 4,
|
|
42
|
+
"generatedFiles": [
|
|
43
|
+
"./dist/components/index.d.ts",
|
|
44
|
+
"./dist/components/index.js",
|
|
45
|
+
"./dist/components/mds-list.d.ts",
|
|
46
|
+
"./dist/components/mds-list.js"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "dist-lazy",
|
|
51
|
+
"files": 35,
|
|
52
|
+
"generatedFiles": [
|
|
53
|
+
"./dist/cjs/index-41114fc6.js",
|
|
54
|
+
"./dist/cjs/index.cjs.js",
|
|
55
|
+
"./dist/cjs/loader.cjs.js",
|
|
56
|
+
"./dist/cjs/mds-list.cjs.entry.js",
|
|
57
|
+
"./dist/cjs/mds-list.cjs.js",
|
|
58
|
+
"./dist/esm-es5/index-6230983e.js",
|
|
59
|
+
"./dist/esm-es5/index.js",
|
|
60
|
+
"./dist/esm-es5/loader.js",
|
|
61
|
+
"./dist/esm-es5/mds-list.entry.js",
|
|
62
|
+
"./dist/esm-es5/mds-list.js",
|
|
63
|
+
"./dist/esm/index-6230983e.js",
|
|
64
|
+
"./dist/esm/index.js",
|
|
65
|
+
"./dist/esm/loader.js",
|
|
66
|
+
"./dist/esm/mds-list.entry.js",
|
|
67
|
+
"./dist/esm/mds-list.js",
|
|
68
|
+
"./dist/index.cjs.js",
|
|
69
|
+
"./dist/index.js",
|
|
70
|
+
"./dist/mds-list/index.esm.js",
|
|
71
|
+
"./dist/mds-list/mds-list.esm.js",
|
|
72
|
+
"./dist/mds-list/mds-list.js",
|
|
73
|
+
"./dist/mds-list/p-233f72af.system.js",
|
|
74
|
+
"./dist/mds-list/p-50ea2036.system.js",
|
|
75
|
+
"./dist/mds-list/p-5b7327b3.js",
|
|
76
|
+
"./dist/mds-list/p-9fd9e0ef.system.js",
|
|
77
|
+
"./dist/mds-list/p-f2ee2e84.entry.js",
|
|
78
|
+
"./dist/mds-list/p-f3960731.system.entry.js",
|
|
79
|
+
"./www/build/index.esm.js",
|
|
80
|
+
"./www/build/mds-list.esm.js",
|
|
81
|
+
"./www/build/mds-list.js",
|
|
82
|
+
"./www/build/p-233f72af.system.js",
|
|
83
|
+
"./www/build/p-50ea2036.system.js",
|
|
84
|
+
"./www/build/p-5b7327b3.js",
|
|
85
|
+
"./www/build/p-9fd9e0ef.system.js",
|
|
86
|
+
"./www/build/p-f2ee2e84.entry.js",
|
|
87
|
+
"./www/build/p-f3960731.system.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-list.entry",
|
|
117
|
+
"components": [
|
|
118
|
+
"mds-list"
|
|
119
|
+
],
|
|
120
|
+
"bundleId": "p-f2ee2e84",
|
|
121
|
+
"fileName": "p-f2ee2e84.entry.js",
|
|
122
|
+
"imports": [
|
|
123
|
+
"p-5b7327b3.js"
|
|
124
|
+
],
|
|
125
|
+
"originalByteSize": 955
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"esm": [
|
|
129
|
+
{
|
|
130
|
+
"key": "mds-list.entry",
|
|
131
|
+
"components": [
|
|
132
|
+
"mds-list"
|
|
133
|
+
],
|
|
134
|
+
"bundleId": "mds-list",
|
|
135
|
+
"fileName": "mds-list.entry.js",
|
|
136
|
+
"imports": [
|
|
137
|
+
"index-6230983e.js"
|
|
138
|
+
],
|
|
139
|
+
"originalByteSize": 959
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"es5": [
|
|
143
|
+
{
|
|
144
|
+
"key": "mds-list.entry",
|
|
145
|
+
"components": [
|
|
146
|
+
"mds-list"
|
|
147
|
+
],
|
|
148
|
+
"bundleId": "mds-list",
|
|
149
|
+
"fileName": "mds-list.entry.js",
|
|
150
|
+
"imports": [
|
|
151
|
+
"index-6230983e.js"
|
|
152
|
+
],
|
|
153
|
+
"originalByteSize": 959
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"system": [
|
|
157
|
+
{
|
|
158
|
+
"key": "mds-list.entry",
|
|
159
|
+
"components": [
|
|
160
|
+
"mds-list"
|
|
161
|
+
],
|
|
162
|
+
"bundleId": "p-f3960731.system",
|
|
163
|
+
"fileName": "p-f3960731.system.entry.js",
|
|
164
|
+
"imports": [
|
|
165
|
+
"p-9fd9e0ef.system.js"
|
|
166
|
+
],
|
|
167
|
+
"originalByteSize": 1220
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"commonjs": [
|
|
171
|
+
{
|
|
172
|
+
"key": "mds-list.entry",
|
|
173
|
+
"components": [
|
|
174
|
+
"mds-list"
|
|
175
|
+
],
|
|
176
|
+
"bundleId": "mds-list.cjs",
|
|
177
|
+
"fileName": "mds-list.cjs.entry.js",
|
|
178
|
+
"imports": [
|
|
179
|
+
"index-41114fc6.js"
|
|
180
|
+
],
|
|
181
|
+
"originalByteSize": 1029
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"components": [
|
|
186
|
+
{
|
|
187
|
+
"tag": "mds-list",
|
|
188
|
+
"path": "./src/components/mds-list/mds-list.js",
|
|
189
|
+
"source": "./src/components/mds-list/mds-list.tsx",
|
|
190
|
+
"elementRef": null,
|
|
191
|
+
"componentClassName": "MdsList",
|
|
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
|
+
"shadowDelegatesFocus": false,
|
|
212
|
+
"states": []
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"entries": [
|
|
216
|
+
{
|
|
217
|
+
"cmps": [
|
|
218
|
+
{
|
|
219
|
+
"tagName": "mds-list",
|
|
220
|
+
"excludeFromCollection": false,
|
|
221
|
+
"isCollectionDependency": false,
|
|
222
|
+
"componentClassName": "MdsList",
|
|
223
|
+
"elementRef": null,
|
|
224
|
+
"encapsulation": "shadow",
|
|
225
|
+
"shadowDelegatesFocus": false,
|
|
226
|
+
"properties": [],
|
|
227
|
+
"virtualProperties": [],
|
|
228
|
+
"states": [],
|
|
229
|
+
"methods": [],
|
|
230
|
+
"listeners": [],
|
|
231
|
+
"events": [],
|
|
232
|
+
"watchers": [],
|
|
233
|
+
"styles": [
|
|
234
|
+
{
|
|
235
|
+
"modeName": "$",
|
|
236
|
+
"styleId": "MDS-LIST",
|
|
237
|
+
"styleStr": null,
|
|
238
|
+
"styleIdentifier": "mdsListStyle",
|
|
239
|
+
"externalStyles": [
|
|
240
|
+
{
|
|
241
|
+
"absolutePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-list/src/components/mds-list/mds-list.css",
|
|
242
|
+
"relativePath": "mds-list.css",
|
|
243
|
+
"originalComponentPath": "mds-list.css"
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"legacyConnect": [],
|
|
249
|
+
"legacyContext": [],
|
|
250
|
+
"internal": false,
|
|
251
|
+
"assetsDirs": [],
|
|
252
|
+
"styleDocs": [],
|
|
253
|
+
"docs": {
|
|
254
|
+
"tags": [],
|
|
255
|
+
"text": ""
|
|
256
|
+
},
|
|
257
|
+
"jsFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-list/src/components/mds-list/mds-list.js",
|
|
258
|
+
"sourceFilePath": "/Users/vitto/repo/design-system/projects/stencil/.build/mds-list/src/components/mds-list/mds-list.tsx",
|
|
259
|
+
"sourceMapPath": null,
|
|
260
|
+
"hasAttributeChangedCallbackFn": false,
|
|
261
|
+
"hasComponentWillLoadFn": false,
|
|
262
|
+
"hasComponentDidLoadFn": false,
|
|
263
|
+
"hasComponentShouldUpdateFn": false,
|
|
264
|
+
"hasComponentWillUpdateFn": false,
|
|
265
|
+
"hasComponentDidUpdateFn": false,
|
|
266
|
+
"hasComponentWillRenderFn": false,
|
|
267
|
+
"hasComponentDidRenderFn": false,
|
|
268
|
+
"hasComponentDidUnloadFn": false,
|
|
269
|
+
"hasConnectedCallbackFn": false,
|
|
270
|
+
"hasDisconnectedCallbackFn": false,
|
|
271
|
+
"hasElement": false,
|
|
272
|
+
"hasEvent": false,
|
|
273
|
+
"hasLifecycle": false,
|
|
274
|
+
"hasListener": false,
|
|
275
|
+
"hasListenerTarget": false,
|
|
276
|
+
"hasListenerTargetWindow": false,
|
|
277
|
+
"hasListenerTargetDocument": false,
|
|
278
|
+
"hasListenerTargetBody": false,
|
|
279
|
+
"hasListenerTargetParent": false,
|
|
280
|
+
"hasMember": false,
|
|
281
|
+
"hasMethod": false,
|
|
282
|
+
"hasMode": false,
|
|
283
|
+
"hasAttribute": false,
|
|
284
|
+
"hasProp": false,
|
|
285
|
+
"hasPropNumber": false,
|
|
286
|
+
"hasPropBoolean": false,
|
|
287
|
+
"hasPropString": false,
|
|
288
|
+
"hasPropMutable": false,
|
|
289
|
+
"hasReflect": false,
|
|
290
|
+
"hasRenderFn": true,
|
|
291
|
+
"hasState": false,
|
|
292
|
+
"hasStyle": true,
|
|
293
|
+
"hasVdomAttribute": false,
|
|
294
|
+
"hasVdomXlink": false,
|
|
295
|
+
"hasVdomClass": false,
|
|
296
|
+
"hasVdomFunctional": false,
|
|
297
|
+
"hasVdomKey": false,
|
|
298
|
+
"hasVdomListener": false,
|
|
299
|
+
"hasVdomPropOrAttr": false,
|
|
300
|
+
"hasVdomRef": false,
|
|
301
|
+
"hasVdomRender": true,
|
|
302
|
+
"hasVdomStyle": false,
|
|
303
|
+
"hasVdomText": false,
|
|
304
|
+
"hasWatchCallback": false,
|
|
305
|
+
"isPlain": false,
|
|
306
|
+
"htmlAttrNames": [],
|
|
307
|
+
"htmlTagNames": [
|
|
308
|
+
"slot"
|
|
309
|
+
],
|
|
310
|
+
"htmlParts": [],
|
|
311
|
+
"isUpdateable": false,
|
|
312
|
+
"potentialCmpRefs": [],
|
|
313
|
+
"directDependencies": [],
|
|
314
|
+
"dependencies": [],
|
|
315
|
+
"dependents": [],
|
|
316
|
+
"directDependents": []
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"entryKey": "mds-list.entry"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"componentGraph": {
|
|
323
|
+
"sc-mds-list": [
|
|
324
|
+
"p-5b7327b3.js"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
327
|
+
"sourceGraph": {
|
|
328
|
+
"./src/components/mds-list/mds-list.tsx": [],
|
|
329
|
+
"./src/dictionary/autocomplete.ts": [],
|
|
330
|
+
"./src/dictionary/button.ts": [],
|
|
331
|
+
"./src/dictionary/color.ts": [],
|
|
332
|
+
"./src/dictionary/icon.ts": [],
|
|
333
|
+
"./src/dictionary/input-text-type.ts": [],
|
|
334
|
+
"./src/dictionary/loading.ts": [],
|
|
335
|
+
"./src/dictionary/typography.ts": [],
|
|
336
|
+
"./src/dictionary/variant.ts": [],
|
|
337
|
+
"./src/fixtures/cities.ts": [],
|
|
338
|
+
"./src/interface/input-value.ts": [],
|
|
339
|
+
"./src/types/autocomplete.ts": [],
|
|
340
|
+
"./src/types/button.ts": [],
|
|
341
|
+
"./src/types/form-rel.ts": [],
|
|
342
|
+
"./src/types/input-text-type.ts": [],
|
|
343
|
+
"./src/types/input-value-type.ts": [],
|
|
344
|
+
"./src/types/loading.ts": [],
|
|
345
|
+
"./src/types/typography.ts": [],
|
|
346
|
+
"./src/types/variant.ts": []
|
|
347
|
+
},
|
|
348
|
+
"collections": []
|
|
349
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
export namespace Components {
|
|
9
|
+
interface MdsList {
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
declare global {
|
|
13
|
+
interface HTMLMdsListElement extends Components.MdsList, HTMLStencilElement {
|
|
14
|
+
}
|
|
15
|
+
var HTMLMdsListElement: {
|
|
16
|
+
prototype: HTMLMdsListElement;
|
|
17
|
+
new (): HTMLMdsListElement;
|
|
18
|
+
};
|
|
19
|
+
interface HTMLElementTagNameMap {
|
|
20
|
+
"mds-list": HTMLMdsListElement;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
declare namespace LocalJSX {
|
|
24
|
+
interface MdsList {
|
|
25
|
+
}
|
|
26
|
+
interface IntrinsicElements {
|
|
27
|
+
"mds-list": MdsList;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export { LocalJSX as JSX };
|
|
31
|
+
declare module "@stencil/core" {
|
|
32
|
+
export namespace JSX {
|
|
33
|
+
interface IntrinsicElements {
|
|
34
|
+
"mds-list": LocalJSX.MdsList & JSXBase.HTMLAttributes<HTMLMdsListElement>;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -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, };
|