@maggioli-design-system/mds-input-otp 1.0.1

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 (248) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/index-3ce43d21.js +1360 -0
  3. package/dist/cjs/index.cjs.js +2 -0
  4. package/dist/cjs/loader.cjs.js +15 -0
  5. package/dist/cjs/mds-input-otp.cjs.entry.js +101 -0
  6. package/dist/cjs/mds-input-otp.cjs.js +25 -0
  7. package/dist/collection/collection-manifest.json +12 -0
  8. package/dist/collection/common/aria.js +45 -0
  9. package/dist/collection/common/browser.js +7 -0
  10. package/dist/collection/common/date.js +13 -0
  11. package/dist/collection/common/device.js +6 -0
  12. package/dist/collection/common/file.js +48 -0
  13. package/dist/collection/common/floating-controller.js +201 -0
  14. package/dist/collection/common/icon.js +15 -0
  15. package/dist/collection/common/keyboard-manager.js +46 -0
  16. package/dist/collection/common/locale.js +66 -0
  17. package/dist/collection/common/slot.js +28 -0
  18. package/dist/collection/common/string.js +30 -0
  19. package/dist/collection/common/unit.js +22 -0
  20. package/dist/collection/common/yugop/core.js +16 -0
  21. package/dist/collection/common/yugop/index.js +3 -0
  22. package/dist/collection/common/yugop/random-text.js +59 -0
  23. package/dist/collection/common/yugop/utils/math.js +11 -0
  24. package/dist/collection/common/yugop/utils/noop.js +1 -0
  25. package/dist/collection/common/yugop/utils/prng.js +21 -0
  26. package/dist/collection/common/yugop/utils/string.js +2 -0
  27. package/dist/collection/components/mds-input-otp/mds-input-otp.css +16 -0
  28. package/dist/collection/components/mds-input-otp/mds-input-otp.js +159 -0
  29. package/dist/collection/components/mds-input-otp/test/mds-input-otp.stories.js +56 -0
  30. package/dist/collection/dictionary/animation.js +5 -0
  31. package/dist/collection/dictionary/autocomplete.js +59 -0
  32. package/dist/collection/dictionary/button.js +39 -0
  33. package/dist/collection/dictionary/color.js +19 -0
  34. package/dist/collection/dictionary/file-extensions.js +69 -0
  35. package/dist/collection/dictionary/floating-ui.js +19 -0
  36. package/dist/collection/dictionary/icon.js +10 -0
  37. package/dist/collection/dictionary/input.js +37 -0
  38. package/dist/collection/dictionary/keyboard.js +84 -0
  39. package/dist/collection/dictionary/loading.js +5 -0
  40. package/dist/collection/dictionary/text.js +65 -0
  41. package/dist/collection/dictionary/tree.js +13 -0
  42. package/dist/collection/dictionary/typography.js +67 -0
  43. package/dist/collection/dictionary/variant.js +116 -0
  44. package/dist/collection/fixtures/cities.js +110 -0
  45. package/dist/collection/fixtures/filenames.js +118 -0
  46. package/dist/collection/type/animation.js +1 -0
  47. package/dist/collection/type/autocomplete.js +1 -0
  48. package/dist/collection/type/button.js +1 -0
  49. package/dist/collection/type/date.js +1 -0
  50. package/dist/collection/type/file-types.js +1 -0
  51. package/dist/collection/type/floating-ui.js +1 -0
  52. package/dist/collection/type/form-rel.js +1 -0
  53. package/dist/collection/type/header-bar.js +1 -0
  54. package/dist/collection/type/input-tip.js +1 -0
  55. package/dist/collection/type/input.js +1 -0
  56. package/dist/collection/type/keyboard.js +1 -0
  57. package/dist/collection/type/loading.js +1 -0
  58. package/dist/collection/type/preference.js +1 -0
  59. package/dist/collection/type/text.js +1 -0
  60. package/dist/collection/type/tree.js +1 -0
  61. package/dist/collection/type/typography.js +1 -0
  62. package/dist/collection/type/variant-file-format.js +91 -0
  63. package/dist/collection/type/variant.js +1 -0
  64. package/dist/components/index.d.ts +33 -0
  65. package/dist/components/index.js +1 -0
  66. package/dist/components/mds-input-otp.d.ts +11 -0
  67. package/dist/components/mds-input-otp.js +113 -0
  68. package/dist/documentation.d.ts +443 -0
  69. package/dist/documentation.json +105 -0
  70. package/dist/esm/app-globals-0f993ce5.js +3 -0
  71. package/dist/esm/index-7080a0cd.js +1332 -0
  72. package/dist/esm/index.js +1 -0
  73. package/dist/esm/loader.js +11 -0
  74. package/dist/esm/mds-input-otp.entry.js +97 -0
  75. package/dist/esm/mds-input-otp.js +20 -0
  76. package/dist/esm/polyfills/core-js.js +11 -0
  77. package/dist/esm/polyfills/dom.js +79 -0
  78. package/dist/esm/polyfills/es5-html-element.js +1 -0
  79. package/dist/esm/polyfills/index.js +34 -0
  80. package/dist/esm/polyfills/system.js +6 -0
  81. package/dist/esm-es5/app-globals-0f993ce5.js +1 -0
  82. package/dist/esm-es5/index-7080a0cd.js +1 -0
  83. package/dist/esm-es5/index.js +0 -0
  84. package/dist/esm-es5/loader.js +1 -0
  85. package/dist/esm-es5/mds-input-otp.entry.js +1 -0
  86. package/dist/esm-es5/mds-input-otp.js +1 -0
  87. package/dist/index.cjs.js +1 -0
  88. package/dist/index.js +1 -0
  89. package/dist/mds-input-otp/index.esm.js +0 -0
  90. package/dist/mds-input-otp/mds-input-otp.esm.js +1 -0
  91. package/dist/mds-input-otp/mds-input-otp.js +127 -0
  92. package/dist/mds-input-otp/p-0b4b7d22.system.js +1 -0
  93. package/dist/mds-input-otp/p-50ea2036.system.js +1 -0
  94. package/dist/mds-input-otp/p-56ba5cbf.system.js +1 -0
  95. package/dist/mds-input-otp/p-6fa28cad.entry.js +1 -0
  96. package/dist/mds-input-otp/p-8d749fc9.system.entry.js +1 -0
  97. package/dist/mds-input-otp/p-9c3d33cc.system.js +2 -0
  98. package/dist/mds-input-otp/p-dea9d1b9.js +2 -0
  99. package/dist/mds-input-otp/p-e1255160.js +1 -0
  100. package/dist/stats.json +588 -0
  101. package/dist/types/common/aria.d.ts +7 -0
  102. package/dist/types/common/browser.d.ts +2 -0
  103. package/dist/types/common/date.d.ts +4 -0
  104. package/dist/types/common/device.d.ts +2 -0
  105. package/dist/types/common/file.d.ts +11 -0
  106. package/dist/types/common/floating-controller.d.ts +47 -0
  107. package/dist/types/common/icon.d.ts +5 -0
  108. package/dist/types/common/keyboard-manager.d.ts +12 -0
  109. package/dist/types/common/locale.d.ts +20 -0
  110. package/dist/types/common/slot.d.ts +4 -0
  111. package/dist/types/common/string.d.ts +4 -0
  112. package/dist/types/common/unit.d.ts +3 -0
  113. package/dist/types/common/yugop/core.d.ts +10 -0
  114. package/dist/types/common/yugop/index.d.ts +1 -0
  115. package/dist/types/common/yugop/random-text.d.ts +31 -0
  116. package/dist/types/common/yugop/utils/math.d.ts +3 -0
  117. package/dist/types/common/yugop/utils/noop.d.ts +1 -0
  118. package/dist/types/common/yugop/utils/prng.d.ts +8 -0
  119. package/dist/types/common/yugop/utils/string.d.ts +1 -0
  120. package/dist/types/components/mds-input-otp/mds-input-otp.d.ts +27 -0
  121. package/dist/types/components/mds-input-otp/test/mds-input-otp.stories.d.ts +21 -0
  122. package/dist/types/components.d.ts +61 -0
  123. package/dist/types/dictionary/animation.d.ts +2 -0
  124. package/dist/types/dictionary/autocomplete.d.ts +2 -0
  125. package/dist/types/dictionary/button.d.ts +7 -0
  126. package/dist/types/dictionary/color.d.ts +3 -0
  127. package/dist/types/dictionary/file-extensions.d.ts +12 -0
  128. package/dist/types/dictionary/floating-ui.d.ts +3 -0
  129. package/dist/types/dictionary/icon.d.ts +4 -0
  130. package/dist/types/dictionary/input.d.ts +5 -0
  131. package/dist/types/dictionary/keyboard.d.ts +2 -0
  132. package/dist/types/dictionary/loading.d.ts +2 -0
  133. package/dist/types/dictionary/text.d.ts +4 -0
  134. package/dist/types/dictionary/tree.d.ts +4 -0
  135. package/dist/types/dictionary/typography.d.ts +11 -0
  136. package/dist/types/dictionary/variant.d.ts +13 -0
  137. package/dist/types/fixtures/cities.d.ts +2 -0
  138. package/dist/types/fixtures/filenames.d.ts +63 -0
  139. package/dist/types/stencil-public-runtime.d.ts +1680 -0
  140. package/dist/types/type/animation.d.ts +1 -0
  141. package/dist/types/type/autocomplete.d.ts +2 -0
  142. package/dist/types/type/button.d.ts +5 -0
  143. package/dist/types/type/date.d.ts +5 -0
  144. package/dist/types/type/file-types.d.ts +1 -0
  145. package/dist/types/type/floating-ui.d.ts +2 -0
  146. package/dist/types/type/form-rel.d.ts +1 -0
  147. package/dist/types/type/header-bar.d.ts +2 -0
  148. package/dist/types/type/input-tip.d.ts +1 -0
  149. package/dist/types/type/input.d.ts +7 -0
  150. package/dist/types/type/keyboard.d.ts +12 -0
  151. package/dist/types/type/loading.d.ts +1 -0
  152. package/dist/types/type/preference.d.ts +2 -0
  153. package/dist/types/type/text.d.ts +3 -0
  154. package/dist/types/type/tree.d.ts +3 -0
  155. package/dist/types/type/typography.d.ts +10 -0
  156. package/dist/types/type/variant-file-format.d.ts +11 -0
  157. package/dist/types/type/variant.d.ts +13 -0
  158. package/documentation.json +703 -0
  159. package/loader/cdn.js +2 -0
  160. package/loader/index.cjs.js +2 -0
  161. package/loader/index.d.ts +24 -0
  162. package/loader/index.es2017.js +2 -0
  163. package/loader/index.js +3 -0
  164. package/loader/package.json +11 -0
  165. package/package.json +54 -0
  166. package/readme.md +41 -0
  167. package/src/common/aria.ts +59 -0
  168. package/src/common/browser.ts +10 -0
  169. package/src/common/date.ts +21 -0
  170. package/src/common/device.ts +9 -0
  171. package/src/common/file.ts +62 -0
  172. package/src/common/floating-controller.ts +286 -0
  173. package/src/common/icon.ts +25 -0
  174. package/src/common/keyboard-manager.ts +51 -0
  175. package/src/common/locale.ts +90 -0
  176. package/src/common/slot.ts +35 -0
  177. package/src/common/string.ts +42 -0
  178. package/src/common/unit.ts +33 -0
  179. package/src/common/yugop/core.ts +47 -0
  180. package/src/common/yugop/index.ts +4 -0
  181. package/src/common/yugop/random-text.ts +95 -0
  182. package/src/common/yugop/utils/math.ts +21 -0
  183. package/src/common/yugop/utils/noop.ts +1 -0
  184. package/src/common/yugop/utils/prng.ts +35 -0
  185. package/src/common/yugop/utils/string.ts +4 -0
  186. package/src/components/mds-input-otp/.gitlab-ci.yml +20 -0
  187. package/src/components/mds-input-otp/mds-input-otp.css +16 -0
  188. package/src/components/mds-input-otp/mds-input-otp.tsx +123 -0
  189. package/src/components/mds-input-otp/readme.md +19 -0
  190. package/src/components/mds-input-otp/test/mds-input-otp.e2e.ts +11 -0
  191. package/src/components/mds-input-otp/test/mds-input-otp.stories.tsx +90 -0
  192. package/src/components.d.ts +61 -0
  193. package/src/dictionary/animation.ts +8 -0
  194. package/src/dictionary/autocomplete.ts +62 -0
  195. package/src/dictionary/button.ts +52 -0
  196. package/src/dictionary/color.ts +24 -0
  197. package/src/dictionary/file-extensions.ts +88 -0
  198. package/src/dictionary/floating-ui.ts +25 -0
  199. package/src/dictionary/icon.ts +15 -0
  200. package/src/dictionary/input.ts +48 -0
  201. package/src/dictionary/keyboard.ts +87 -0
  202. package/src/dictionary/loading.ts +9 -0
  203. package/src/dictionary/text.ts +73 -0
  204. package/src/dictionary/tree.ts +21 -0
  205. package/src/dictionary/typography.ts +88 -0
  206. package/src/dictionary/variant.ts +141 -0
  207. package/src/fixtures/cities.ts +116 -0
  208. package/src/fixtures/filenames.ts +123 -0
  209. package/src/fixtures/icons.json +447 -0
  210. package/src/fixtures/iconsauce.json +306 -0
  211. package/src/meta/file-format/locale.el.json +44 -0
  212. package/src/meta/file-format/locale.en.json +44 -0
  213. package/src/meta/file-format/locale.es.json +44 -0
  214. package/src/meta/file-format/locale.it.json +44 -0
  215. package/src/meta/keyboard/keys.json +83 -0
  216. package/src/tailwind/components.css +51 -0
  217. package/src/tailwind/fouc.css +118 -0
  218. package/src/tailwind/index.css +4 -0
  219. package/src/type/animation.ts +3 -0
  220. package/src/type/autocomplete.ts +68 -0
  221. package/src/type/button.ts +32 -0
  222. package/src/type/date.ts +10 -0
  223. package/src/type/file-types.ts +61 -0
  224. package/src/type/floating-ui.ts +17 -0
  225. package/src/type/form-rel.ts +11 -0
  226. package/src/type/header-bar.ts +11 -0
  227. package/src/type/input-tip.ts +11 -0
  228. package/src/type/input.ts +33 -0
  229. package/src/type/keyboard.ts +93 -0
  230. package/src/type/loading.ts +3 -0
  231. package/src/type/preference.ts +11 -0
  232. package/src/type/text.ts +63 -0
  233. package/src/type/tree.ts +12 -0
  234. package/src/type/typography.ts +65 -0
  235. package/src/type/variant-file-format.ts +126 -0
  236. package/src/type/variant.ts +119 -0
  237. package/www/build/index.esm.js +0 -0
  238. package/www/build/mds-input-otp.esm.js +1 -0
  239. package/www/build/mds-input-otp.js +127 -0
  240. package/www/build/p-0b4b7d22.system.js +1 -0
  241. package/www/build/p-50ea2036.system.js +1 -0
  242. package/www/build/p-56ba5cbf.system.js +1 -0
  243. package/www/build/p-6fa28cad.entry.js +1 -0
  244. package/www/build/p-8d749fc9.system.entry.js +1 -0
  245. package/www/build/p-9c3d33cc.system.js +2 -0
  246. package/www/build/p-dea9d1b9.js +2 -0
  247. package/www/build/p-e1255160.js +1 -0
  248. package/www/host.config.json +15 -0
@@ -0,0 +1 @@
1
+ export type HorizontalActionsAnimationType = 'fade' | 'slide';
@@ -0,0 +1,2 @@
1
+ export type AutocompleteType = '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';
2
+ export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url';
@@ -0,0 +1,5 @@
1
+ export type ButtonType = 'a' | 'button' | 'reset' | 'submit';
2
+ export type ButtonTargetType = 'self' | 'blank';
3
+ export type ButtonSizeType = 'sm' | 'md' | 'lg' | 'xl';
4
+ export type ButtonIconPositionType = 'left' | 'right';
5
+ export type ButtonVariantType = 'ai' | 'apple' | 'dark' | 'error' | 'google' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';
@@ -0,0 +1,5 @@
1
+ type ISO8601DateFormat<K, T> = K & {
2
+ __isISO8601DateFormat: T;
3
+ };
4
+ type ISO8601Date = ISO8601DateFormat<string, 'ISO8601Date'>;
5
+ export { ISO8601Date, };
@@ -0,0 +1 @@
1
+ export type ExtensionSuffixType = '7z' | 'ace' | 'ai' | 'db' | 'default' | 'dmg' | 'doc' | 'docm' | 'docx' | 'eml' | 'eps' | 'exe' | 'flac' | 'gif' | 'heic' | 'htm' | 'html' | 'jpe' | 'jpeg' | 'jpg' | 'js' | 'json' | 'jsx' | 'm2v' | 'mp2' | 'mp3' | 'mp4' | 'mp4v' | 'mpeg' | 'mpg' | 'mpg4' | 'mpga' | 'odf' | 'odp' | 'ods' | 'odt' | 'odt' | 'ole' | 'p7m' | 'pdf' | 'php' | 'png' | 'ppt' | 'rar' | 'rtf' | 'sass' | 'shtml' | 'svg' | 'tar' | 'tiff' | 'ts' | 'tsd' | 'txt' | 'wav' | 'webp' | 'xar' | 'xls' | 'xlsx' | 'xml' | 'zip';
@@ -0,0 +1,2 @@
1
+ export type FloatingUIPlacement = 'bottom' | 'bottom-end' | 'bottom-start' | 'left' | 'left-end' | 'left-start' | 'right' | 'right-end' | 'right-start' | 'top' | 'top-end' | 'top-start';
2
+ export type FloatingUIStrategy = 'absolute' | 'fixed';
@@ -0,0 +1 @@
1
+ export type FormRelType = 'external' | 'help' | 'license' | 'next' | 'nofollow' | 'noopener' | 'noreferrer' | 'opener' | 'prev' | 'search';
@@ -0,0 +1,2 @@
1
+ export type HeaderBarMenuType = 'all' | 'desktop' | 'mobile' | 'none';
2
+ export type HeaderBarNavType = 'all' | 'desktop' | 'mobile' | 'none';
@@ -0,0 +1 @@
1
+ export type InputTipItemVariantType = 'count-almost' | 'count-almost-full' | 'count-empty' | 'count-full' | 'count-incomplete' | 'disabled' | 'readonly' | 'required' | 'required-success' | 'text';
@@ -0,0 +1,7 @@
1
+ export type InputControlsLayoutType = 'horizontal' | 'vertical';
2
+ export type InputControlsIconType = 'arrow' | 'arithmetic';
3
+ export type InputValueType = null | number | string | undefined;
4
+ export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url' | 'cc' | 'cf' | 'isbn' | 'piva';
5
+ export interface MdsInputEventDetail {
6
+ value?: File | string | FormData | null;
7
+ }
@@ -0,0 +1,12 @@
1
+ export type KeyboardKeyData = {
2
+ alias: string;
3
+ description: string;
4
+ group: string;
5
+ keyCodes: string[];
6
+ keyboardPosition?: {
7
+ left?: boolean;
8
+ right?: boolean;
9
+ };
10
+ };
11
+ export type KeyboardKeyName = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'a' | 'alt' | 'altleft' | 'altright' | 'arrowdown' | 'arrowleft' | 'arrowright' | 'arrowup' | 'b' | 'backspace' | 'c' | 'capslock' | 'command' | 'commandleft' | 'commandright' | 'control' | 'controlleft' | 'controlright' | 'd' | 'delete' | 'e' | 'end' | 'enter' | 'escape' | 'f' | 'f1' | 'f10' | 'f11' | 'f12' | 'f2' | 'f3' | 'f4' | 'f5' | 'f6' | 'f7' | 'f8' | 'f9' | 'g' | 'h' | 'home' | 'i' | 'j' | 'k' | 'l' | 'm' | 'n' | 'o' | 'option' | 'optionleft' | 'optionright' | 'p' | 'pagedown' | 'pageup' | 'q' | 'r' | 's' | 'shift' | 'shiftleft' | 'shiftright' | 'space' | 't' | 'tab' | 'u' | 'v' | 'w' | 'windows' | 'windowsleft' | 'windowsright' | 'x' | 'y' | 'z';
12
+ export type KeyboardKeyMap = Record<KeyboardKeyName, KeyboardKeyData>;
@@ -0,0 +1 @@
1
+ export type LoadingType = 'eager' | 'lazy';
@@ -0,0 +1,2 @@
1
+ export type UIPreferenceType = 'animation' | 'consumption' | 'contrast' | 'theme' | 'language';
2
+ export type ConsumptionModeType = 'high' | 'medium' | 'low';
@@ -0,0 +1,3 @@
1
+ export type TypographyTagType = 'abbr' | 'address' | 'article' | 'b' | 'bdo' | 'blockquote' | 'cite' | 'code' | 'dd' | 'del' | 'details' | 'dfn' | 'div' | 'dl' | 'dt' | 'em' | 'figcaption' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'i' | 'ins' | 'kbd' | 'label' | 'legend' | 'li' | 'mark' | 'ol' | 'p' | 'pre' | 'q' | 'rb' | 'rt' | 'ruby' | 's' | 'samp' | 'small' | 'span' | 'strong' | 'sub' | 'summary' | 'sup' | 'time' | 'u' | 'ul' | 'var';
2
+ export type TypographyHeadingTagType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
3
+ export type TypographyTruncateType = 'all' | 'none' | 'word';
@@ -0,0 +1,3 @@
1
+ export type TreeAppearance = 'none' | 'depth';
2
+ export type TreeIcon = 'folder' | 'chevron';
3
+ export type TreeActions = 'auto' | 'visible';
@@ -0,0 +1,10 @@
1
+ export type TypographyType = 'action' | 'caption' | 'snippet' | 'detail' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'hack' | 'label' | 'option' | 'paragraph' | 'tip';
2
+ export type TypographyVariants = 'title' | 'info' | 'read' | 'code';
3
+ export type TypographyReadingVariants = 'info' | 'read';
4
+ export type TypographyTitleType = 'action' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
5
+ export type TypographyInfoType = 'caption' | 'detail' | 'label' | 'option' | 'paragraph' | 'tip';
6
+ export type TypographyReadType = 'caption' | 'detail' | 'paragraph';
7
+ export type TypographySmallerType = 'tip' | 'option';
8
+ export type TypographyMonoType = 'snippet' | 'hack';
9
+ export type TypographyTooltipType = 'caption' | 'detail' | 'tip';
10
+ export type TypographyInputType = 'snippet' | 'detail';
@@ -0,0 +1,11 @@
1
+ import { ThemeFullVariantType } from "./variant";
2
+ type FileFormat = 'archive' | 'attachment' | 'audio' | 'certificate' | 'code' | 'data' | 'document' | 'email' | 'executable' | 'image' | 'markup' | 'slide' | 'spreadsheet' | 'text' | 'vector' | 'video';
3
+ interface FileFormatVariant {
4
+ icon: string;
5
+ variant: ThemeFullVariantType;
6
+ }
7
+ interface FileFormatVariants {
8
+ [key: string]: FileFormatVariant;
9
+ }
10
+ declare const fileFormatsVariant: FileFormatVariants;
11
+ export { fileFormatsVariant, FileFormat, FileFormatVariant, FileFormatVariants, };
@@ -0,0 +1,13 @@
1
+ export type ThemeStatusVariantType = 'error' | 'info' | 'success' | 'warning';
2
+ export type ThemeVariantType = 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'success' | 'warning';
3
+ export type ThemeFullVariantType = 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'light' | 'lime' | 'orange' | 'orchid' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
4
+ export type ThemeFullVariantAvatarType = 'amaranth' | 'aqua' | 'blue' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
5
+ export type ThemeLuminanceVariantType = 'dark' | 'light';
6
+ export type LabelVariantType = 'amaranth' | 'aqua' | 'blue' | 'green' | 'lime' | 'orange' | 'orchid' | 'sky' | 'violet' | 'yellow';
7
+ export type ActionVariantType = 'primary' | 'dark' | 'light';
8
+ export type ChipVariantType = 'ai' | 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'secondary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
9
+ export type StateVariantType = 'disabled' | 'focused' | 'readonly';
10
+ export type ToneActionVariantType = 'primary' | 'secondary' | 'strong' | 'weak' | 'ghost' | 'quiet';
11
+ export type ToneVariantType = 'strong' | 'weak' | 'ghost' | 'quiet';
12
+ export type ToneSimpleVariantType = 'quiet' | 'strong' | 'weak';
13
+ export type ToneMinimalVariantType = 'strong' | 'weak';