@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.
Files changed (186) hide show
  1. package/dist/cjs/index-49333be9.js +1713 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +13 -0
  4. package/dist/cjs/mds-input-select.cjs.entry.js +80 -0
  5. package/dist/cjs/mds-input-select.cjs.js +23 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/common/aria.js +29 -0
  8. package/dist/collection/common/file.js +48 -0
  9. package/dist/collection/common/icon.js +15 -0
  10. package/dist/collection/common/keyboard-manager.js +45 -0
  11. package/dist/collection/common/unit.js +22 -0
  12. package/dist/collection/common/yugop/core.js +16 -0
  13. package/dist/collection/common/yugop/index.js +3 -0
  14. package/dist/collection/common/yugop/random-text.js +59 -0
  15. package/dist/collection/common/yugop/utils/math.js +11 -0
  16. package/dist/collection/common/yugop/utils/noop.js +1 -0
  17. package/dist/collection/common/yugop/utils/prng.js +21 -0
  18. package/dist/collection/common/yugop/utils/string.js +2 -0
  19. package/dist/collection/components/mds-input-select/mds-input-select.css +533 -0
  20. package/dist/collection/components/mds-input-select/mds-input-select.js +174 -0
  21. package/dist/collection/components/mds-input-select/test/mds-input-select.e2e.js +10 -0
  22. package/dist/collection/components/mds-input-select/test/mds-input-select.stories.js +28 -0
  23. package/dist/collection/dictionary/autocomplete.js +59 -0
  24. package/dist/collection/dictionary/button.js +30 -0
  25. package/dist/collection/dictionary/color.js +19 -0
  26. package/dist/collection/dictionary/file-extensions.js +64 -0
  27. package/dist/collection/dictionary/floating-ui.js +19 -0
  28. package/dist/collection/dictionary/icon.js +10 -0
  29. package/dist/collection/dictionary/input.js +37 -0
  30. package/dist/collection/dictionary/loading.js +5 -0
  31. package/dist/collection/dictionary/text.js +6 -0
  32. package/dist/collection/dictionary/typography.js +67 -0
  33. package/dist/collection/dictionary/variant.js +90 -0
  34. package/dist/collection/fixtures/cities.js +110 -0
  35. package/dist/collection/fixtures/filenames.js +57 -0
  36. package/dist/collection/interface/input-value.js +1 -0
  37. package/dist/collection/type/autocomplete.js +1 -0
  38. package/dist/collection/type/button.js +1 -0
  39. package/dist/collection/type/file-types.js +1 -0
  40. package/dist/collection/type/floating-ui.js +1 -0
  41. package/dist/collection/type/form-rel.js +1 -0
  42. package/dist/collection/type/input.js +1 -0
  43. package/dist/collection/type/loading.js +1 -0
  44. package/dist/collection/type/text.js +1 -0
  45. package/dist/collection/type/typography.js +1 -0
  46. package/dist/collection/type/variant-file-format.js +111 -0
  47. package/dist/collection/type/variant.js +1 -0
  48. package/dist/components/index.d.ts +33 -0
  49. package/dist/components/index.js +1 -0
  50. package/dist/components/mds-input-select.d.ts +11 -0
  51. package/dist/components/mds-input-select.js +94 -0
  52. package/dist/documentation.d.ts +401 -0
  53. package/dist/documentation.json +161 -0
  54. package/dist/esm/index-5f46338e.js +1684 -0
  55. package/dist/esm/index.js +1 -0
  56. package/dist/esm/loader.js +9 -0
  57. package/dist/esm/mds-input-select.entry.js +76 -0
  58. package/dist/esm/mds-input-select.js +18 -0
  59. package/dist/esm/polyfills/core-js.js +11 -0
  60. package/dist/esm/polyfills/dom.js +79 -0
  61. package/dist/esm/polyfills/es5-html-element.js +1 -0
  62. package/dist/esm/polyfills/index.js +34 -0
  63. package/dist/esm/polyfills/system.js +6 -0
  64. package/dist/esm-es5/index-5f46338e.js +1 -0
  65. package/dist/esm-es5/index.js +0 -0
  66. package/dist/esm-es5/loader.js +1 -0
  67. package/dist/esm-es5/mds-input-select.entry.js +1 -0
  68. package/dist/esm-es5/mds-input-select.js +1 -0
  69. package/dist/index.cjs.js +1 -0
  70. package/dist/index.js +1 -0
  71. package/dist/mds-input-select/index.esm.js +0 -0
  72. package/dist/mds-input-select/mds-input-select.esm.js +1 -0
  73. package/dist/mds-input-select/mds-input-select.js +127 -0
  74. package/dist/mds-input-select/p-50ea2036.system.js +1 -0
  75. package/dist/mds-input-select/p-7c9868ca.entry.js +1 -0
  76. package/dist/mds-input-select/p-861fc894.system.js +2 -0
  77. package/dist/mds-input-select/p-ac8d0a7e.js +2 -0
  78. package/dist/mds-input-select/p-d16d283c.system.js +1 -0
  79. package/dist/mds-input-select/p-f6ca4ca0.system.entry.js +1 -0
  80. package/dist/stats.json +628 -0
  81. package/dist/types/common/aria.d.ts +5 -0
  82. package/dist/types/common/file.d.ts +12 -0
  83. package/dist/types/common/icon.d.ts +5 -0
  84. package/dist/types/common/keyboard-manager.d.ts +12 -0
  85. package/dist/types/common/unit.d.ts +3 -0
  86. package/dist/types/common/yugop/core.d.ts +10 -0
  87. package/dist/types/common/yugop/index.d.ts +1 -0
  88. package/dist/types/common/yugop/random-text.d.ts +31 -0
  89. package/dist/types/common/yugop/utils/math.d.ts +3 -0
  90. package/dist/types/common/yugop/utils/noop.d.ts +1 -0
  91. package/dist/types/common/yugop/utils/prng.d.ts +8 -0
  92. package/dist/types/common/yugop/utils/string.d.ts +1 -0
  93. package/dist/types/components/mds-input-select/test/mds-input-select.stories.d.ts +26 -0
  94. package/dist/types/components.d.ts +90 -0
  95. package/dist/types/dictionary/autocomplete.d.ts +2 -0
  96. package/dist/types/dictionary/button.d.ts +6 -0
  97. package/dist/types/dictionary/color.d.ts +3 -0
  98. package/dist/types/dictionary/file-extensions.d.ts +11 -0
  99. package/dist/types/dictionary/floating-ui.d.ts +3 -0
  100. package/dist/types/dictionary/icon.d.ts +4 -0
  101. package/dist/types/dictionary/input.d.ts +5 -0
  102. package/dist/types/dictionary/loading.d.ts +2 -0
  103. package/dist/types/dictionary/text.d.ts +2 -0
  104. package/dist/types/dictionary/typography.d.ts +11 -0
  105. package/dist/types/dictionary/variant.d.ts +11 -0
  106. package/dist/types/fixtures/cities.d.ts +2 -0
  107. package/dist/types/fixtures/filenames.d.ts +2 -0
  108. package/dist/types/interface/input-value.d.ts +4 -0
  109. package/dist/types/stencil-public-runtime.d.ts +1681 -0
  110. package/dist/types/type/autocomplete.d.ts +2 -0
  111. package/dist/types/type/button.d.ts +5 -0
  112. package/dist/types/type/file-types.d.ts +1 -0
  113. package/dist/types/type/floating-ui.d.ts +2 -0
  114. package/dist/types/type/form-rel.d.ts +1 -0
  115. package/dist/types/type/input.d.ts +4 -0
  116. package/dist/types/type/loading.d.ts +1 -0
  117. package/dist/types/type/text.d.ts +1 -0
  118. package/dist/types/type/typography.d.ts +10 -0
  119. package/dist/types/type/variant-file-format.d.ts +11 -0
  120. package/dist/types/type/variant.d.ts +12 -0
  121. package/documentation.json +577 -0
  122. package/loader/cdn.js +3 -0
  123. package/loader/index.cjs.js +3 -0
  124. package/loader/index.d.ts +21 -0
  125. package/loader/index.es2017.js +3 -0
  126. package/loader/index.js +4 -0
  127. package/loader/package.json +11 -0
  128. package/package.json +57 -0
  129. package/readme.md +29 -0
  130. package/src/common/aria.ts +39 -0
  131. package/src/common/file.ts +63 -0
  132. package/src/common/icon.ts +25 -0
  133. package/src/common/keyboard-manager.ts +50 -0
  134. package/src/common/unit.ts +33 -0
  135. package/src/common/yugop/core.ts +47 -0
  136. package/src/common/yugop/index.ts +4 -0
  137. package/src/common/yugop/random-text.ts +95 -0
  138. package/src/common/yugop/utils/math.ts +21 -0
  139. package/src/common/yugop/utils/noop.ts +1 -0
  140. package/src/common/yugop/utils/prng.ts +35 -0
  141. package/src/common/yugop/utils/string.ts +4 -0
  142. package/src/components/mds-input-select/.gitlab-ci.yml +25 -0
  143. package/src/components/mds-input-select/mds-input-select.css +98 -0
  144. package/src/components/mds-input-select/mds-input-select.tsx +112 -0
  145. package/src/components/mds-input-select/readme.md +27 -0
  146. package/src/components/mds-input-select/test/mds-input-select.e2e.ts +12 -0
  147. package/src/components/mds-input-select/test/mds-input-select.stories.tsx +38 -0
  148. package/src/components.d.ts +90 -0
  149. package/src/dictionary/autocomplete.ts +62 -0
  150. package/src/dictionary/button.ts +41 -0
  151. package/src/dictionary/color.ts +24 -0
  152. package/src/dictionary/file-extensions.ts +81 -0
  153. package/src/dictionary/floating-ui.ts +25 -0
  154. package/src/dictionary/icon.ts +15 -0
  155. package/src/dictionary/input.ts +48 -0
  156. package/src/dictionary/loading.ts +9 -0
  157. package/src/dictionary/text.ts +9 -0
  158. package/src/dictionary/typography.ts +88 -0
  159. package/src/dictionary/variant.ts +111 -0
  160. package/src/fixtures/cities.ts +116 -0
  161. package/src/fixtures/filenames.ts +60 -0
  162. package/src/fixtures/icons.json +315 -0
  163. package/src/fixtures/iconsauce.json +236 -0
  164. package/src/interface/input-value.ts +5 -0
  165. package/src/tailwind/components.css +15 -0
  166. package/src/type/autocomplete.ts +69 -0
  167. package/src/type/button.ts +28 -0
  168. package/src/type/file-types.ts +55 -0
  169. package/src/type/floating-ui.ts +17 -0
  170. package/src/type/form-rel.ts +11 -0
  171. package/src/type/input.ts +25 -0
  172. package/src/type/loading.ts +3 -0
  173. package/src/type/text.ts +4 -0
  174. package/src/type/typography.ts +65 -0
  175. package/src/type/variant-file-format.ts +128 -0
  176. package/src/type/variant.ts +99 -0
  177. package/www/build/index.esm.js +0 -0
  178. package/www/build/mds-input-select.esm.js +1 -0
  179. package/www/build/mds-input-select.js +127 -0
  180. package/www/build/p-50ea2036.system.js +1 -0
  181. package/www/build/p-7c9868ca.entry.js +1 -0
  182. package/www/build/p-861fc894.system.js +2 -0
  183. package/www/build/p-ac8d0a7e.js +2 -0
  184. package/www/build/p-d16d283c.system.js +1 -0
  185. package/www/build/p-f6ca4ca0.system.entry.js +1 -0
  186. 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
+ }