@maggioli-design-system/mds-input-tip 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. package/dist/cjs/index-fe2df682.js +1571 -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-tip.cjs.entry.js +21 -0
  5. package/dist/cjs/mds-input-tip.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/locale.js +20 -0
  12. package/dist/collection/common/unit.js +22 -0
  13. package/dist/collection/common/yugop/core.js +16 -0
  14. package/dist/collection/common/yugop/index.js +3 -0
  15. package/dist/collection/common/yugop/random-text.js +59 -0
  16. package/dist/collection/common/yugop/utils/math.js +11 -0
  17. package/dist/collection/common/yugop/utils/noop.js +1 -0
  18. package/dist/collection/common/yugop/utils/prng.js +21 -0
  19. package/dist/collection/common/yugop/utils/string.js +2 -0
  20. package/dist/collection/components/mds-input-tip/mds-input-tip.css +280 -0
  21. package/dist/collection/components/mds-input-tip/mds-input-tip.js +68 -0
  22. package/dist/collection/components/mds-input-tip/meta/types.js +1 -0
  23. package/dist/collection/components/mds-input-tip/test/mds-input-tip.e2e.js +9 -0
  24. package/dist/collection/dictionary/autocomplete.js +59 -0
  25. package/dist/collection/dictionary/button.js +30 -0
  26. package/dist/collection/dictionary/color.js +19 -0
  27. package/dist/collection/dictionary/file-extensions.js +64 -0
  28. package/dist/collection/dictionary/floating-ui.js +19 -0
  29. package/dist/collection/dictionary/icon.js +10 -0
  30. package/dist/collection/dictionary/input.js +37 -0
  31. package/dist/collection/dictionary/loading.js +5 -0
  32. package/dist/collection/dictionary/text.js +6 -0
  33. package/dist/collection/dictionary/typography.js +67 -0
  34. package/dist/collection/dictionary/variant.js +90 -0
  35. package/dist/collection/fixtures/cities.js +110 -0
  36. package/dist/collection/fixtures/filenames.js +57 -0
  37. package/dist/collection/interface/input-value.js +1 -0
  38. package/dist/collection/type/autocomplete.js +1 -0
  39. package/dist/collection/type/button.js +1 -0
  40. package/dist/collection/type/file-types.js +1 -0
  41. package/dist/collection/type/floating-ui.js +1 -0
  42. package/dist/collection/type/form-rel.js +1 -0
  43. package/dist/collection/type/input.js +1 -0
  44. package/dist/collection/type/loading.js +1 -0
  45. package/dist/collection/type/text.js +1 -0
  46. package/dist/collection/type/typography.js +1 -0
  47. package/dist/collection/type/variant-file-format.js +120 -0
  48. package/dist/collection/type/variant.js +1 -0
  49. package/dist/components/index.d.ts +33 -0
  50. package/dist/components/index.js +1 -0
  51. package/dist/components/mds-input-tip.d.ts +11 -0
  52. package/dist/components/mds-input-tip.js +38 -0
  53. package/dist/documentation.d.ts +401 -0
  54. package/dist/documentation.json +97 -0
  55. package/dist/esm/index-351c5c8a.js +1544 -0
  56. package/dist/esm/index.js +1 -0
  57. package/dist/esm/loader.js +9 -0
  58. package/dist/esm/mds-input-tip.entry.js +17 -0
  59. package/dist/esm/mds-input-tip.js +18 -0
  60. package/dist/esm/polyfills/core-js.js +11 -0
  61. package/dist/esm/polyfills/dom.js +79 -0
  62. package/dist/esm/polyfills/es5-html-element.js +1 -0
  63. package/dist/esm/polyfills/index.js +34 -0
  64. package/dist/esm/polyfills/system.js +6 -0
  65. package/dist/esm-es5/index-351c5c8a.js +1 -0
  66. package/dist/esm-es5/index.js +0 -0
  67. package/dist/esm-es5/loader.js +1 -0
  68. package/dist/esm-es5/mds-input-tip.entry.js +1 -0
  69. package/dist/esm-es5/mds-input-tip.js +1 -0
  70. package/dist/index.cjs.js +1 -0
  71. package/dist/index.js +1 -0
  72. package/dist/mds-input-tip/index.esm.js +0 -0
  73. package/dist/mds-input-tip/mds-input-tip.esm.js +1 -0
  74. package/dist/mds-input-tip/mds-input-tip.js +127 -0
  75. package/dist/mds-input-tip/p-22b86e20.js +2 -0
  76. package/dist/mds-input-tip/p-3428f886.system.js +2 -0
  77. package/dist/mds-input-tip/p-50ea2036.system.js +1 -0
  78. package/dist/mds-input-tip/p-630886b5.entry.js +1 -0
  79. package/dist/mds-input-tip/p-89e037f5.system.entry.js +1 -0
  80. package/dist/mds-input-tip/p-e5fe0b68.system.js +1 -0
  81. package/dist/stats.json +500 -0
  82. package/dist/types/common/aria.d.ts +5 -0
  83. package/dist/types/common/file.d.ts +12 -0
  84. package/dist/types/common/icon.d.ts +5 -0
  85. package/dist/types/common/keyboard-manager.d.ts +12 -0
  86. package/dist/types/common/locale.d.ts +14 -0
  87. package/dist/types/common/unit.d.ts +3 -0
  88. package/dist/types/common/yugop/core.d.ts +10 -0
  89. package/dist/types/common/yugop/index.d.ts +1 -0
  90. package/dist/types/common/yugop/random-text.d.ts +31 -0
  91. package/dist/types/common/yugop/utils/math.d.ts +3 -0
  92. package/dist/types/common/yugop/utils/noop.d.ts +1 -0
  93. package/dist/types/common/yugop/utils/prng.d.ts +8 -0
  94. package/dist/types/common/yugop/utils/string.d.ts +1 -0
  95. package/dist/types/components/mds-input-tip/mds-input-tip.d.ts +12 -0
  96. package/dist/types/components/mds-input-tip/meta/types.d.ts +1 -0
  97. package/dist/types/components.d.ts +55 -0
  98. package/dist/types/dictionary/autocomplete.d.ts +2 -0
  99. package/dist/types/dictionary/button.d.ts +6 -0
  100. package/dist/types/dictionary/color.d.ts +3 -0
  101. package/dist/types/dictionary/file-extensions.d.ts +11 -0
  102. package/dist/types/dictionary/floating-ui.d.ts +3 -0
  103. package/dist/types/dictionary/icon.d.ts +4 -0
  104. package/dist/types/dictionary/input.d.ts +5 -0
  105. package/dist/types/dictionary/loading.d.ts +2 -0
  106. package/dist/types/dictionary/text.d.ts +2 -0
  107. package/dist/types/dictionary/typography.d.ts +11 -0
  108. package/dist/types/dictionary/variant.d.ts +11 -0
  109. package/dist/types/fixtures/cities.d.ts +2 -0
  110. package/dist/types/fixtures/filenames.d.ts +2 -0
  111. package/dist/types/interface/input-value.d.ts +4 -0
  112. package/dist/types/stencil-public-runtime.d.ts +1681 -0
  113. package/dist/types/type/autocomplete.d.ts +2 -0
  114. package/dist/types/type/button.d.ts +5 -0
  115. package/dist/types/type/file-types.d.ts +1 -0
  116. package/dist/types/type/floating-ui.d.ts +2 -0
  117. package/dist/types/type/form-rel.d.ts +1 -0
  118. package/dist/types/type/input.d.ts +4 -0
  119. package/dist/types/type/loading.d.ts +1 -0
  120. package/dist/types/type/text.d.ts +1 -0
  121. package/dist/types/type/typography.d.ts +10 -0
  122. package/dist/types/type/variant-file-format.d.ts +11 -0
  123. package/dist/types/type/variant.d.ts +12 -0
  124. package/documentation.json +568 -0
  125. package/loader/cdn.js +3 -0
  126. package/loader/index.cjs.js +3 -0
  127. package/loader/index.d.ts +21 -0
  128. package/loader/index.es2017.js +3 -0
  129. package/loader/index.js +4 -0
  130. package/loader/package.json +11 -0
  131. package/package.json +59 -0
  132. package/readme.md +33 -0
  133. package/src/common/aria.ts +39 -0
  134. package/src/common/file.ts +63 -0
  135. package/src/common/icon.ts +25 -0
  136. package/src/common/keyboard-manager.ts +50 -0
  137. package/src/common/locale.ts +31 -0
  138. package/src/common/unit.ts +33 -0
  139. package/src/common/yugop/core.ts +47 -0
  140. package/src/common/yugop/index.ts +4 -0
  141. package/src/common/yugop/random-text.ts +95 -0
  142. package/src/common/yugop/utils/math.ts +21 -0
  143. package/src/common/yugop/utils/noop.ts +1 -0
  144. package/src/common/yugop/utils/prng.ts +35 -0
  145. package/src/common/yugop/utils/string.ts +4 -0
  146. package/src/components/mds-input-tip/.gitlab-ci.yml +25 -0
  147. package/src/components/mds-input-tip/mds-input-tip.css +52 -0
  148. package/src/components/mds-input-tip/mds-input-tip.tsx +28 -0
  149. package/src/components/mds-input-tip/meta/types.ts +3 -0
  150. package/src/components/mds-input-tip/readme.md +18 -0
  151. package/src/components/mds-input-tip/test/mds-input-tip.e2e.ts +11 -0
  152. package/src/components.d.ts +55 -0
  153. package/src/dictionary/autocomplete.ts +62 -0
  154. package/src/dictionary/button.ts +41 -0
  155. package/src/dictionary/color.ts +24 -0
  156. package/src/dictionary/file-extensions.ts +81 -0
  157. package/src/dictionary/floating-ui.ts +25 -0
  158. package/src/dictionary/icon.ts +15 -0
  159. package/src/dictionary/input.ts +48 -0
  160. package/src/dictionary/loading.ts +9 -0
  161. package/src/dictionary/text.ts +9 -0
  162. package/src/dictionary/typography.ts +88 -0
  163. package/src/dictionary/variant.ts +111 -0
  164. package/src/fixtures/cities.ts +116 -0
  165. package/src/fixtures/filenames.ts +60 -0
  166. package/src/fixtures/icons.json +344 -0
  167. package/src/fixtures/iconsauce.json +257 -0
  168. package/src/interface/input-value.ts +5 -0
  169. package/src/tailwind/components.css +15 -0
  170. package/src/type/autocomplete.ts +69 -0
  171. package/src/type/button.ts +28 -0
  172. package/src/type/file-types.ts +55 -0
  173. package/src/type/floating-ui.ts +17 -0
  174. package/src/type/form-rel.ts +11 -0
  175. package/src/type/input.ts +25 -0
  176. package/src/type/loading.ts +3 -0
  177. package/src/type/text.ts +4 -0
  178. package/src/type/typography.ts +65 -0
  179. package/src/type/variant-file-format.ts +137 -0
  180. package/src/type/variant.ts +99 -0
  181. package/www/build/index.esm.js +0 -0
  182. package/www/build/mds-input-tip.esm.js +1 -0
  183. package/www/build/mds-input-tip.js +127 -0
  184. package/www/build/p-22b86e20.js +2 -0
  185. package/www/build/p-3428f886.system.js +2 -0
  186. package/www/build/p-50ea2036.system.js +1 -0
  187. package/www/build/p-630886b5.entry.js +1 -0
  188. package/www/build/p-89e037f5.system.entry.js +1 -0
  189. package/www/build/p-e5fe0b68.system.js +1 -0
  190. package/www/host.config.json +15 -0
@@ -0,0 +1,257 @@
1
+ [
2
+ "mgg/abitazione-principale",
3
+ "mgg/action-email-overlay-progress-10",
4
+ "mgg/action-email-overlay-progress-90",
5
+ "mgg/action-email-send-wait",
6
+ "mgg/action-email-send-warning",
7
+ "mgg/action-hide-down-side",
8
+ "mgg/action-hide-left-side",
9
+ "mgg/action-hide-right-side",
10
+ "mgg/action-hide-sidebar-left",
11
+ "mgg/action-hide-sidebar-right",
12
+ "mgg/action-show-down-side",
13
+ "mgg/action-show-left-side",
14
+ "mgg/action-show-right-side",
15
+ "mgg/action-show-sidebar-left",
16
+ "mgg/action-show-sidebar-right",
17
+ "mgg/activation-key",
18
+ "mgg/activity-list",
19
+ "mgg/add-document-settings",
20
+ "mgg/additional-contents",
21
+ "mgg/address-book-off",
22
+ "mgg/address-book-on",
23
+ "mgg/adv-denied",
24
+ "mgg/alerts-pagopa",
25
+ "mgg/ansc",
26
+ "mgg/area-edificabile",
27
+ "mgg/area-weather",
28
+ "mgg/assignments-accept-rejection",
29
+ "mgg/assignments-acceptance-accepted",
30
+ "mgg/assignments-assignment",
31
+ "mgg/assignments-competence",
32
+ "mgg/assignments-completed",
33
+ "mgg/assignments-rejected",
34
+ "mgg/assignments-sorted",
35
+ "mgg/auto-awesome-motion",
36
+ "mgg/balance",
37
+ "mgg/bill",
38
+ "mgg/box-multiple",
39
+ "mgg/breadcrumb",
40
+ "mgg/bus-stops",
41
+ "mgg/calendar-euro",
42
+ "mgg/calendar-multiple",
43
+ "mgg/calendar-schedule",
44
+ "mgg/cancelled-sheet",
45
+ "mgg/car-license",
46
+ "mgg/card-stamping",
47
+ "mgg/check-small",
48
+ "mgg/checklist-settings",
49
+ "mgg/checklist",
50
+ "mgg/citizenship",
51
+ "mgg/city-bin",
52
+ "mgg/classic-permission",
53
+ "mgg/consumption-high",
54
+ "mgg/consumption-low",
55
+ "mgg/consumption-medium",
56
+ "mgg/copy-paste",
57
+ "mgg/d-instrumental-buildings",
58
+ "mgg/data-analytics-alt",
59
+ "mgg/data-analytics-search",
60
+ "mgg/data-analytics-time",
61
+ "mgg/data-category-alt",
62
+ "mgg/data-civil-union",
63
+ "mgg/data-cleaning",
64
+ "mgg/data-death-civil-union",
65
+ "mgg/data-death-marriage",
66
+ "mgg/data-end-civil-union",
67
+ "mgg/data-end-marriage",
68
+ "mgg/dataset",
69
+ "mgg/delivered-to-the-recipient",
70
+ "mgg/document-euro",
71
+ "mgg/document-less",
72
+ "mgg/document-magic",
73
+ "mgg/document-rename",
74
+ "mgg/download-csv",
75
+ "mgg/download-json",
76
+ "mgg/electronic-document",
77
+ "mgg/email-open-check",
78
+ "mgg/email-open-off",
79
+ "mgg/face-to-face-meeting",
80
+ "mgg/factory",
81
+ "mgg/farmer",
82
+ "mgg/field",
83
+ "mgg/file-download",
84
+ "mgg/file-folder-tree-open",
85
+ "mgg/file-folder-tree",
86
+ "mgg/file-import",
87
+ "mgg/file-odt",
88
+ "mgg/file-rtf",
89
+ "mgg/file-settings-alt",
90
+ "mgg/file-stack-alt",
91
+ "mgg/file-stack",
92
+ "mgg/file-sub",
93
+ "mgg/file-type-document-attachment",
94
+ "mgg/file-type-document-multiple-attachment",
95
+ "mgg/file-type-document-rubber-stamp",
96
+ "mgg/file-type-home",
97
+ "mgg/file-type-pdf",
98
+ "mgg/file-type-success",
99
+ "mgg/file-type-warning",
100
+ "mgg/file-xml",
101
+ "mgg/finance-euro-cashback",
102
+ "mgg/fit-horizontal",
103
+ "mgg/fit-vertical",
104
+ "mgg/forwarded-with-a-single-sending",
105
+ "mgg/fullscreen-on-alt",
106
+ "mgg/google-check-small",
107
+ "mgg/google-experiment",
108
+ "mgg/google-face-retouching-off",
109
+ "mgg/google-hub",
110
+ "mgg/google-keyboard-double-arrow-down",
111
+ "mgg/google-keyboard-double-arrow-up",
112
+ "mgg/google-place-item",
113
+ "mgg/group-assigned-automatically-system",
114
+ "mgg/group-ceased",
115
+ "mgg/group-inherited",
116
+ "mgg/heart-outline",
117
+ "mgg/heart",
118
+ "mgg/historic-building-unusable",
119
+ "mgg/historic-building",
120
+ "mgg/home-hammer",
121
+ "mgg/home-number",
122
+ "mgg/inagibile",
123
+ "mgg/input-calendar-costs",
124
+ "mgg/input-calendar-period",
125
+ "mgg/input-calendar-time",
126
+ "mgg/instrumental-buildings",
127
+ "mgg/internationalization-add",
128
+ "mgg/internationalization-check",
129
+ "mgg/internationalization-delete",
130
+ "mgg/isbn",
131
+ "mgg/judge-hammer",
132
+ "mgg/land-registry",
133
+ "mgg/layers",
134
+ "mgg/liquidated-document",
135
+ "mgg/list-dot",
136
+ "mgg/logo-girasole-camuno",
137
+ "mgg/logo-gpl",
138
+ "mgg/logo-ilibro",
139
+ "mgg/map-marker-settings",
140
+ "mgg/masks-office",
141
+ "mgg/military-draft",
142
+ "mgg/money-bag-settings",
143
+ "mgg/money-on-hand",
144
+ "mgg/money-paid",
145
+ "mgg/move-down",
146
+ "mgg/move-left",
147
+ "mgg/move-right",
148
+ "mgg/move-row-down",
149
+ "mgg/move-row-up",
150
+ "mgg/move-up",
151
+ "mgg/multiple-payments",
152
+ "mgg/national-document-off",
153
+ "mgg/national-document",
154
+ "mgg/not-instrumental-d-buildings",
155
+ "mgg/not-sent-yet",
156
+ "mgg/office-off",
157
+ "mgg/order-return-down-left-to-right",
158
+ "mgg/order-return-down-left-to-up",
159
+ "mgg/order-return-down-right-to-left",
160
+ "mgg/order-return-down-right-to-up",
161
+ "mgg/order-return-up-left-to-down",
162
+ "mgg/order-return-up-left-to-right",
163
+ "mgg/order-return-up-right-to-down",
164
+ "mgg/order-return-up-right-to-left",
165
+ "mgg/order-zigzag-down-left-to-right",
166
+ "mgg/order-zigzag-down-left-to-up",
167
+ "mgg/order-zigzag-down-right-to-left",
168
+ "mgg/order-zigzag-down-right-to-up",
169
+ "mgg/order-zigzag-up-left-to-down",
170
+ "mgg/order-zigzag-up-left-to-right",
171
+ "mgg/order-zigzag-up-right-to-down",
172
+ "mgg/order-zigzag-up-right-to-left",
173
+ "mgg/other-properties-off",
174
+ "mgg/other-properties",
175
+ "mgg/other-residential-buildings",
176
+ "mgg/pagopa",
177
+ "mgg/partial-wall",
178
+ "mgg/payment-settings",
179
+ "mgg/pec-handshake",
180
+ "mgg/pec-ok",
181
+ "mgg/pec-sent-to-the-not-pec-recipient",
182
+ "mgg/places-green-doc",
183
+ "mgg/places-green-history",
184
+ "mgg/places-green-info",
185
+ "mgg/places-green",
186
+ "mgg/places-holiday-beach",
187
+ "mgg/places-market",
188
+ "mgg/places-park-alt",
189
+ "mgg/places-park",
190
+ "mgg/places-store-access-denied",
191
+ "mgg/property-owner",
192
+ "mgg/relevance",
193
+ "mgg/reporting-abuse",
194
+ "mgg/residency-permit",
195
+ "mgg/robot",
196
+ "mgg/roles-permission",
197
+ "mgg/rubber-stamp",
198
+ "mgg/rurale",
199
+ "mgg/search-maggioli",
200
+ "mgg/send-progress",
201
+ "mgg/sending-error",
202
+ "mgg/session",
203
+ "mgg/settings-attachment",
204
+ "mgg/sign-shop",
205
+ "mgg/square-viewfinder",
206
+ "mgg/stamp",
207
+ "mgg/status-progress-a-quarter",
208
+ "mgg/status-progress-complete",
209
+ "mgg/status-progress-half",
210
+ "mgg/status-progress-three-quarter",
211
+ "mgg/stuck-codes",
212
+ "mgg/subtractive-permission",
213
+ "mgg/tea-light",
214
+ "mgg/terminal",
215
+ "mgg/todo-action-businessman-view",
216
+ "mgg/todo-action-certificate",
217
+ "mgg/todo-action-contract",
218
+ "mgg/todo-action-currency-euro",
219
+ "mgg/todo-action-graduate",
220
+ "mgg/todo-action-graduation-hat",
221
+ "mgg/todo-action-judge",
222
+ "mgg/todo-action-money",
223
+ "mgg/todo-action-protocol",
224
+ "mgg/todo-action-upload",
225
+ "mgg/todo-action-wkf-document-checked",
226
+ "mgg/todo-action-wkf-people-checked",
227
+ "mgg/todo-action-wkf-set-pub-date",
228
+ "mgg/todo-completed-re-executable",
229
+ "mgg/todo-completed",
230
+ "mgg/todo-in-charge-by-me",
231
+ "mgg/todo-in-charge-by-others",
232
+ "mgg/todo-in-evaluation-by-others",
233
+ "mgg/todo-in-evaluation",
234
+ "mgg/todo-incoming-in-charge",
235
+ "mgg/todo-incoming-rejected",
236
+ "mgg/todo-pause",
237
+ "mgg/todo-running-completed",
238
+ "mgg/todo-suspended",
239
+ "mgg/todo",
240
+ "mgg/touchpoint-laptop-info",
241
+ "mgg/touchpoint-laptop-search",
242
+ "mgg/traffic-cone",
243
+ "mgg/trending-down",
244
+ "mgg/tribute",
245
+ "mgg/tributes",
246
+ "mgg/urban-city",
247
+ "mgg/user-dead",
248
+ "mgg/user-family",
249
+ "mgg/user-location-off",
250
+ "mgg/user-location",
251
+ "mgg/user-signed-out",
252
+ "mgg/view-chart-gantt",
253
+ "mgg/view-side-by-side",
254
+ "mgg/warning-superscript",
255
+ "mgg/web-app-ansc",
256
+ "mgg/work-book"
257
+ ]
@@ -0,0 +1,5 @@
1
+ import { InputValueType } from '@type/input'
2
+
3
+ export interface InputValue {
4
+ value: InputValueType
5
+ }
@@ -0,0 +1,15 @@
1
+ @import '~@maggioli-design-system/styles/dist/tailwind/components.css';
2
+ @tailwind components;
3
+
4
+ @layer components {
5
+ .svg {
6
+ @apply flex;
7
+ }
8
+
9
+ .svg svg {
10
+ @apply
11
+ aspect-square
12
+ h-full
13
+ w-full;
14
+ }
15
+ }
@@ -0,0 +1,69 @@
1
+ export type AutocompleteType =
2
+ | 'additional-name'
3
+ | 'address'
4
+ | 'address-level1'
5
+ | 'address-level2'
6
+ | 'address-level3'
7
+ | 'address-level4'
8
+ | 'address-line1'
9
+ | 'address-line2'
10
+ | 'address-line3'
11
+ | 'bday'
12
+ | 'bday-day'
13
+ | 'bday-month'
14
+ | 'bday-year'
15
+ | 'cc-additional-name'
16
+ | 'cc-csc'
17
+ | 'cc-exp'
18
+ | 'cc-exp-month'
19
+ | 'cc-exp-year'
20
+ | 'cc-family-name'
21
+ | 'cc-family-name'
22
+ | 'cc-given-name'
23
+ | 'cc-name'
24
+ | 'cc-number'
25
+ | 'cc-type'
26
+ | 'country'
27
+ | 'country-name'
28
+ | 'current-password'
29
+ | 'email'
30
+ | 'family-name'
31
+ | 'given-name'
32
+ | 'honorific-prefix'
33
+ | 'honorific-suffix'
34
+ | 'impp'
35
+ | 'language'
36
+ | 'name'
37
+ | 'new-password'
38
+ | 'nickname'
39
+ | 'off'
40
+ | 'on'
41
+ | 'one-time-code'
42
+ | 'organization'
43
+ | 'organization-title'
44
+ | 'photo'
45
+ | 'postal-code'
46
+ | 'sex'
47
+ | 'street-address'
48
+ | 'tel'
49
+ | 'tel-area-code'
50
+ | 'tel-country-code'
51
+ | 'tel-extension'
52
+ | 'tel-local'
53
+ | 'tel-national'
54
+ | 'transaction-amount'
55
+ | 'transaction-currency'
56
+ | 'url'
57
+ | 'username'
58
+
59
+ export type InputTextType =
60
+ | 'date'
61
+ | 'email'
62
+ | 'number'
63
+ | 'password'
64
+ | 'search'
65
+ | 'tel'
66
+ | 'text'
67
+ | 'textarea'
68
+ | 'time'
69
+ | 'url'
@@ -0,0 +1,28 @@
1
+ export type ButtonType =
2
+ | 'a'
3
+ | 'button'
4
+ | 'reset'
5
+ | 'submit'
6
+
7
+ export type ButtonTargetType =
8
+ |'self'
9
+ |'blank'
10
+
11
+ export type ButtonSizeType =
12
+ | 'sm'
13
+ | 'md'
14
+ | 'lg'
15
+ | 'xl'
16
+
17
+ export type ButtonIconPositionType =
18
+ | 'left'
19
+ | 'right'
20
+
21
+ export type ButtonVariantType =
22
+ | 'primary'
23
+ | 'dark'
24
+ | 'light'
25
+ | 'error'
26
+ | 'info'
27
+ | 'success'
28
+ | 'warning'
@@ -0,0 +1,55 @@
1
+ export type ExtensionSuffixType =
2
+ | '7z'
3
+ | 'ace'
4
+ | 'ai'
5
+ | 'db'
6
+ | 'default'
7
+ | 'dmg'
8
+ | 'doc'
9
+ | 'docm'
10
+ | 'docx'
11
+ | 'eml'
12
+ | 'eps'
13
+ | 'exe'
14
+ | 'flac'
15
+ | 'gif'
16
+ | 'heic'
17
+ | 'htm'
18
+ | 'html'
19
+ | 'jpe'
20
+ | 'jpeg'
21
+ | 'jpg'
22
+ | 'js'
23
+ | 'json'
24
+ | 'jsx'
25
+ | 'm2v'
26
+ | 'mp2'
27
+ | 'mp3'
28
+ | 'mp4'
29
+ | 'mp4v'
30
+ | 'mpeg'
31
+ | 'mpg'
32
+ | 'mpg4'
33
+ | 'mpga'
34
+ | 'odp'
35
+ | 'ods'
36
+ | 'odt'
37
+ | 'pdf'
38
+ | 'php'
39
+ | 'png'
40
+ | 'ppt'
41
+ | 'rar'
42
+ | 'rtf'
43
+ | 'sass'
44
+ | 'shtml'
45
+ | 'svg'
46
+ | 'tar'
47
+ | 'tiff'
48
+ | 'ts'
49
+ | 'txt'
50
+ | 'wav'
51
+ | 'webp'
52
+ | 'xar'
53
+ | 'xls'
54
+ | 'xlsx'
55
+ | 'zip'
@@ -0,0 +1,17 @@
1
+ export type FloatingUIPlacement =
2
+ | 'bottom'
3
+ | 'bottom-end'
4
+ | 'bottom-start'
5
+ | 'left'
6
+ | 'left-end'
7
+ | 'left-start'
8
+ | 'right'
9
+ | 'right-end'
10
+ | 'right-start'
11
+ | 'top'
12
+ | 'top-end'
13
+ | 'top-start'
14
+
15
+ export type FloatingUIStrategy =
16
+ | 'absolute'
17
+ | 'fixed'
@@ -0,0 +1,11 @@
1
+ export type FormRelType =
2
+ | 'external' // Specifies that the referenced document is not a part of the current site
3
+ | 'help' // Links to a help document
4
+ | 'license' // Links to copyright information for the document
5
+ | 'next' // The next document in a selection
6
+ | 'nofollow' // Links to an unendorsed document, like a paid link. ("nofollow" is used by Google, to specify that the Google search spider should not follow that link)
7
+ | 'noopener'
8
+ | 'noreferrer' // Specifies that the browser should not send a HTTP referrer header if the user follows the hyperlink
9
+ | 'opener'
10
+ | 'prev' // The previous document in a selection
11
+ | 'search' // Links to a search tool for the document
@@ -0,0 +1,25 @@
1
+ export type InputControlsLayoutType =
2
+ | 'horizontal'
3
+ | 'vertical'
4
+
5
+ export type InputControlsIconType =
6
+ | 'arrow'
7
+ | 'arithmetic'
8
+
9
+ export type InputValueType =
10
+ | null
11
+ | number
12
+ | string
13
+ | undefined
14
+
15
+ export type InputTextType =
16
+ | 'date'
17
+ | 'email'
18
+ | 'number'
19
+ | 'password'
20
+ | 'search'
21
+ | 'tel'
22
+ | 'text'
23
+ | 'textarea'
24
+ | 'time'
25
+ | 'url'
@@ -0,0 +1,3 @@
1
+ export type LoadingType =
2
+ | 'eager'
3
+ | 'lazy'
@@ -0,0 +1,4 @@
1
+ export type TypographyTruncateType =
2
+ | 'all'
3
+ | 'none'
4
+ | 'word'
@@ -0,0 +1,65 @@
1
+ export type TypographyType =
2
+ | 'action'
3
+ | 'caption'
4
+ | 'snippet'
5
+ | 'detail'
6
+ | 'h1'
7
+ | 'h2'
8
+ | 'h3'
9
+ | 'h4'
10
+ | 'h5'
11
+ | 'h6'
12
+ | 'hack'
13
+ | 'label'
14
+ | 'option'
15
+ | 'paragraph'
16
+ | 'tip'
17
+
18
+ export type TypographyVariants =
19
+ | 'title'
20
+ | 'info'
21
+ | 'read'
22
+ | 'code'
23
+
24
+ export type TypographyReadingVariants =
25
+ | 'info'
26
+ | 'read'
27
+
28
+ export type TypographyTitleType =
29
+ | 'action'
30
+ | 'h1'
31
+ | 'h2'
32
+ | 'h3'
33
+ | 'h4'
34
+ | 'h5'
35
+ | 'h6'
36
+
37
+ export type TypographyInfoType =
38
+ | 'caption'
39
+ | 'detail'
40
+ | 'label'
41
+ | 'option'
42
+ | 'paragraph'
43
+ | 'tip'
44
+
45
+ export type TypographyReadType =
46
+ | 'caption'
47
+ | 'detail'
48
+ | 'paragraph'
49
+
50
+ export type TypographySmallerType =
51
+ | 'tip'
52
+ | 'option'
53
+
54
+ export type TypographyMonoType =
55
+ | 'snippet'
56
+ | 'hack'
57
+
58
+ export type TypographyTooltipType =
59
+ | 'caption'
60
+ | 'detail'
61
+ | 'tip'
62
+
63
+ export type TypographyInputType =
64
+ | 'snippet'
65
+ | 'detail'