@maggioli-design-system/mds-input-select 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-49333be9.js +1713 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mds-input-select.cjs.entry.js +80 -0
- package/dist/cjs/mds-input-select.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/common/aria.js +29 -0
- package/dist/collection/common/file.js +48 -0
- package/dist/collection/common/icon.js +15 -0
- package/dist/collection/common/keyboard-manager.js +45 -0
- package/dist/collection/common/unit.js +22 -0
- package/dist/collection/common/yugop/core.js +16 -0
- package/dist/collection/common/yugop/index.js +3 -0
- package/dist/collection/common/yugop/random-text.js +59 -0
- package/dist/collection/common/yugop/utils/math.js +11 -0
- package/dist/collection/common/yugop/utils/noop.js +1 -0
- package/dist/collection/common/yugop/utils/prng.js +21 -0
- package/dist/collection/common/yugop/utils/string.js +2 -0
- package/dist/collection/components/mds-input-select/mds-input-select.css +533 -0
- package/dist/collection/components/mds-input-select/mds-input-select.js +174 -0
- package/dist/collection/components/mds-input-select/test/mds-input-select.e2e.js +10 -0
- package/dist/collection/components/mds-input-select/test/mds-input-select.stories.js +28 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +30 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/file-extensions.js +64 -0
- package/dist/collection/dictionary/floating-ui.js +19 -0
- package/dist/collection/dictionary/icon.js +10 -0
- package/dist/collection/dictionary/input.js +37 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/text.js +6 -0
- package/dist/collection/dictionary/typography.js +67 -0
- package/dist/collection/dictionary/variant.js +90 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/fixtures/filenames.js +57 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/type/autocomplete.js +1 -0
- package/dist/collection/type/button.js +1 -0
- package/dist/collection/type/file-types.js +1 -0
- package/dist/collection/type/floating-ui.js +1 -0
- package/dist/collection/type/form-rel.js +1 -0
- package/dist/collection/type/input.js +1 -0
- package/dist/collection/type/loading.js +1 -0
- package/dist/collection/type/text.js +1 -0
- package/dist/collection/type/typography.js +1 -0
- package/dist/collection/type/variant-file-format.js +111 -0
- package/dist/collection/type/variant.js +1 -0
- package/dist/components/index.d.ts +33 -0
- package/dist/components/index.js +1 -0
- package/dist/components/mds-input-select.d.ts +11 -0
- package/dist/components/mds-input-select.js +94 -0
- package/dist/documentation.d.ts +401 -0
- package/dist/documentation.json +161 -0
- package/dist/esm/index-5f46338e.js +1684 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +9 -0
- package/dist/esm/mds-input-select.entry.js +76 -0
- package/dist/esm/mds-input-select.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -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-5f46338e.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-select.entry.js +1 -0
- package/dist/esm-es5/mds-input-select.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input-select/index.esm.js +0 -0
- package/dist/mds-input-select/mds-input-select.esm.js +1 -0
- package/dist/mds-input-select/mds-input-select.js +127 -0
- package/dist/mds-input-select/p-50ea2036.system.js +1 -0
- package/dist/mds-input-select/p-7c9868ca.entry.js +1 -0
- package/dist/mds-input-select/p-861fc894.system.js +2 -0
- package/dist/mds-input-select/p-ac8d0a7e.js +2 -0
- package/dist/mds-input-select/p-d16d283c.system.js +1 -0
- package/dist/mds-input-select/p-f6ca4ca0.system.entry.js +1 -0
- package/dist/stats.json +628 -0
- package/dist/types/common/aria.d.ts +5 -0
- package/dist/types/common/file.d.ts +12 -0
- package/dist/types/common/icon.d.ts +5 -0
- package/dist/types/common/keyboard-manager.d.ts +12 -0
- package/dist/types/common/unit.d.ts +3 -0
- package/dist/types/common/yugop/core.d.ts +10 -0
- package/dist/types/common/yugop/index.d.ts +1 -0
- package/dist/types/common/yugop/random-text.d.ts +31 -0
- package/dist/types/common/yugop/utils/math.d.ts +3 -0
- package/dist/types/common/yugop/utils/noop.d.ts +1 -0
- package/dist/types/common/yugop/utils/prng.d.ts +8 -0
- package/dist/types/common/yugop/utils/string.d.ts +1 -0
- package/dist/types/components/mds-input-select/test/mds-input-select.stories.d.ts +26 -0
- package/dist/types/components.d.ts +90 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +6 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/file-extensions.d.ts +11 -0
- package/dist/types/dictionary/floating-ui.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +4 -0
- package/dist/types/dictionary/input.d.ts +5 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/text.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +11 -0
- package/dist/types/dictionary/variant.d.ts +11 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/fixtures/filenames.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1681 -0
- package/dist/types/type/autocomplete.d.ts +2 -0
- package/dist/types/type/button.d.ts +5 -0
- package/dist/types/type/file-types.d.ts +1 -0
- package/dist/types/type/floating-ui.d.ts +2 -0
- package/dist/types/type/form-rel.d.ts +1 -0
- package/dist/types/type/input.d.ts +4 -0
- package/dist/types/type/loading.d.ts +1 -0
- package/dist/types/type/text.d.ts +1 -0
- package/dist/types/type/typography.d.ts +10 -0
- package/dist/types/type/variant-file-format.d.ts +11 -0
- package/dist/types/type/variant.d.ts +12 -0
- package/documentation.json +577 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +21 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +11 -0
- package/package.json +57 -0
- package/readme.md +29 -0
- package/src/common/aria.ts +39 -0
- package/src/common/file.ts +63 -0
- package/src/common/icon.ts +25 -0
- package/src/common/keyboard-manager.ts +50 -0
- package/src/common/unit.ts +33 -0
- package/src/common/yugop/core.ts +47 -0
- package/src/common/yugop/index.ts +4 -0
- package/src/common/yugop/random-text.ts +95 -0
- package/src/common/yugop/utils/math.ts +21 -0
- package/src/common/yugop/utils/noop.ts +1 -0
- package/src/common/yugop/utils/prng.ts +35 -0
- package/src/common/yugop/utils/string.ts +4 -0
- package/src/components/mds-input-select/.gitlab-ci.yml +25 -0
- package/src/components/mds-input-select/mds-input-select.css +98 -0
- package/src/components/mds-input-select/mds-input-select.tsx +112 -0
- package/src/components/mds-input-select/readme.md +27 -0
- package/src/components/mds-input-select/test/mds-input-select.e2e.ts +12 -0
- package/src/components/mds-input-select/test/mds-input-select.stories.tsx +38 -0
- package/src/components.d.ts +90 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +41 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/file-extensions.ts +81 -0
- package/src/dictionary/floating-ui.ts +25 -0
- package/src/dictionary/icon.ts +15 -0
- package/src/dictionary/input.ts +48 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/text.ts +9 -0
- package/src/dictionary/typography.ts +88 -0
- package/src/dictionary/variant.ts +111 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/fixtures/filenames.ts +60 -0
- package/src/fixtures/icons.json +315 -0
- package/src/fixtures/iconsauce.json +236 -0
- package/src/interface/input-value.ts +5 -0
- package/src/tailwind/components.css +15 -0
- package/src/type/autocomplete.ts +69 -0
- package/src/type/button.ts +28 -0
- package/src/type/file-types.ts +55 -0
- package/src/type/floating-ui.ts +17 -0
- package/src/type/form-rel.ts +11 -0
- package/src/type/input.ts +25 -0
- package/src/type/loading.ts +3 -0
- package/src/type/text.ts +4 -0
- package/src/type/typography.ts +65 -0
- package/src/type/variant-file-format.ts +128 -0
- package/src/type/variant.ts +99 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-input-select.esm.js +1 -0
- package/www/build/mds-input-select.js +127 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-7c9868ca.entry.js +1 -0
- package/www/build/p-861fc894.system.js +2 -0
- package/www/build/p-ac8d0a7e.js +2 -0
- package/www/build/p-d16d283c.system.js +1 -0
- package/www/build/p-f6ca4ca0.system.entry.js +1 -0
- package/www/host.config.json +15 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2024-02-26T21:05:49",
|
|
3
|
+
"compiler": {
|
|
4
|
+
"name": "@stencil/core",
|
|
5
|
+
"version": "4.10.0",
|
|
6
|
+
"typescriptVersion": "5.3.3"
|
|
7
|
+
},
|
|
8
|
+
"components": [
|
|
9
|
+
{
|
|
10
|
+
"filePath": "src/components/mds-input-select/mds-input-select.tsx",
|
|
11
|
+
"encapsulation": "shadow",
|
|
12
|
+
"tag": "mds-input-select",
|
|
13
|
+
"docs": "",
|
|
14
|
+
"docsTags": [],
|
|
15
|
+
"usage": {},
|
|
16
|
+
"props": [
|
|
17
|
+
{
|
|
18
|
+
"name": "autoFocus",
|
|
19
|
+
"type": "boolean | undefined",
|
|
20
|
+
"complexType": {
|
|
21
|
+
"original": "boolean",
|
|
22
|
+
"resolved": "boolean | undefined",
|
|
23
|
+
"references": {}
|
|
24
|
+
},
|
|
25
|
+
"mutable": false,
|
|
26
|
+
"attr": "auto-focus",
|
|
27
|
+
"reflectToAttr": true,
|
|
28
|
+
"docs": "Specifies a short hint that describes the expected value of the element",
|
|
29
|
+
"docsTags": [],
|
|
30
|
+
"values": [
|
|
31
|
+
{
|
|
32
|
+
"type": "boolean"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "undefined"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"optional": true,
|
|
39
|
+
"required": false
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "autocomplete",
|
|
43
|
+
"type": "\"on\" | undefined",
|
|
44
|
+
"complexType": {
|
|
45
|
+
"original": "'on'",
|
|
46
|
+
"resolved": "\"on\" | undefined",
|
|
47
|
+
"references": {}
|
|
48
|
+
},
|
|
49
|
+
"mutable": false,
|
|
50
|
+
"attr": "autocomplete",
|
|
51
|
+
"reflectToAttr": true,
|
|
52
|
+
"docs": "Specifies a short hint that describes the expected value of the element",
|
|
53
|
+
"docsTags": [],
|
|
54
|
+
"values": [
|
|
55
|
+
{
|
|
56
|
+
"value": "on",
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "undefined"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"optional": true,
|
|
64
|
+
"required": false
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "placeholder",
|
|
68
|
+
"type": "string | undefined",
|
|
69
|
+
"complexType": {
|
|
70
|
+
"original": "string",
|
|
71
|
+
"resolved": "string | undefined",
|
|
72
|
+
"references": {}
|
|
73
|
+
},
|
|
74
|
+
"mutable": false,
|
|
75
|
+
"attr": "placeholder",
|
|
76
|
+
"reflectToAttr": true,
|
|
77
|
+
"docs": "Specifies a short hint that describes the expected value of the element",
|
|
78
|
+
"docsTags": [],
|
|
79
|
+
"values": [
|
|
80
|
+
{
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "undefined"
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
"optional": true,
|
|
88
|
+
"required": false
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "value",
|
|
92
|
+
"type": "null | number | string | undefined",
|
|
93
|
+
"complexType": {
|
|
94
|
+
"original": "string | number | null",
|
|
95
|
+
"resolved": "null | number | string | undefined",
|
|
96
|
+
"references": {}
|
|
97
|
+
},
|
|
98
|
+
"mutable": false,
|
|
99
|
+
"attr": "value",
|
|
100
|
+
"reflectToAttr": true,
|
|
101
|
+
"docs": "Specifies the value of the element",
|
|
102
|
+
"docsTags": [],
|
|
103
|
+
"default": "''",
|
|
104
|
+
"values": [
|
|
105
|
+
{
|
|
106
|
+
"type": "null"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"type": "number"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"type": "undefined"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"optional": true,
|
|
119
|
+
"required": false
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"methods": [],
|
|
123
|
+
"events": [
|
|
124
|
+
{
|
|
125
|
+
"event": "mdsInputSelectChange",
|
|
126
|
+
"detail": "InputValue",
|
|
127
|
+
"bubbles": true,
|
|
128
|
+
"complexType": {
|
|
129
|
+
"original": "InputValue",
|
|
130
|
+
"resolved": "InputValue",
|
|
131
|
+
"references": {
|
|
132
|
+
"InputValue": {
|
|
133
|
+
"location": "import",
|
|
134
|
+
"path": "@interface/input-value",
|
|
135
|
+
"id": "src/interface/input-value.ts::InputValue"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"cancelable": true,
|
|
140
|
+
"composed": true,
|
|
141
|
+
"docs": "Emits an InputChangeEventDetail when the value of the input element changes",
|
|
142
|
+
"docsTags": []
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"listeners": [],
|
|
146
|
+
"styles": [],
|
|
147
|
+
"slots": [],
|
|
148
|
+
"parts": [],
|
|
149
|
+
"dependents": [],
|
|
150
|
+
"dependencies": [],
|
|
151
|
+
"dependencyGraph": {}
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"typeLibrary": {
|
|
155
|
+
"src/interface/input-value.ts::InputValue": {
|
|
156
|
+
"declaration": "export interface InputValue {\n value: InputValueType\n}",
|
|
157
|
+
"docstring": "",
|
|
158
|
+
"path": "src/interface/input-value.ts"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|