@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,588 @@
1
+ {
2
+ "timestamp": "2025-04-18T20:29:47",
3
+ "compiler": {
4
+ "name": "node",
5
+ "version": "22.11.0"
6
+ },
7
+ "app": {
8
+ "namespace": "MdsInputOtp",
9
+ "fsNamespace": "mds-input-otp",
10
+ "components": 1,
11
+ "entries": 1,
12
+ "bundles": 103,
13
+ "outputs": [
14
+ {
15
+ "name": "dist-collection",
16
+ "files": 55,
17
+ "generatedFiles": [
18
+ "./dist/collection/common/aria.js",
19
+ "./dist/collection/common/browser.js",
20
+ "./dist/collection/common/date.js",
21
+ "./dist/collection/common/device.js",
22
+ "./dist/collection/common/file.js",
23
+ "./dist/collection/common/floating-controller.js",
24
+ "./dist/collection/common/icon.js",
25
+ "./dist/collection/common/keyboard-manager.js",
26
+ "./dist/collection/common/locale.js",
27
+ "./dist/collection/common/slot.js",
28
+ "./dist/collection/common/string.js",
29
+ "./dist/collection/common/unit.js",
30
+ "./dist/collection/common/yugop/core.js",
31
+ "./dist/collection/common/yugop/index.js",
32
+ "./dist/collection/common/yugop/random-text.js",
33
+ "./dist/collection/common/yugop/utils/math.js",
34
+ "./dist/collection/common/yugop/utils/noop.js",
35
+ "./dist/collection/common/yugop/utils/prng.js",
36
+ "./dist/collection/common/yugop/utils/string.js",
37
+ "./dist/collection/components/mds-input-otp/mds-input-otp.js",
38
+ "./dist/collection/components/mds-input-otp/test/mds-input-otp.stories.js",
39
+ "./dist/collection/dictionary/animation.js",
40
+ "./dist/collection/dictionary/autocomplete.js",
41
+ "./dist/collection/dictionary/button.js",
42
+ "./dist/collection/dictionary/color.js",
43
+ "./dist/collection/dictionary/file-extensions.js",
44
+ "./dist/collection/dictionary/floating-ui.js",
45
+ "./dist/collection/dictionary/icon.js",
46
+ "./dist/collection/dictionary/input.js",
47
+ "./dist/collection/dictionary/keyboard.js",
48
+ "./dist/collection/dictionary/loading.js",
49
+ "./dist/collection/dictionary/text.js",
50
+ "./dist/collection/dictionary/tree.js",
51
+ "./dist/collection/dictionary/typography.js",
52
+ "./dist/collection/dictionary/variant.js",
53
+ "./dist/collection/fixtures/cities.js",
54
+ "./dist/collection/fixtures/filenames.js",
55
+ "./dist/collection/type/animation.js",
56
+ "./dist/collection/type/autocomplete.js",
57
+ "./dist/collection/type/button.js",
58
+ "./dist/collection/type/date.js",
59
+ "./dist/collection/type/file-types.js",
60
+ "./dist/collection/type/floating-ui.js",
61
+ "./dist/collection/type/form-rel.js",
62
+ "./dist/collection/type/header-bar.js",
63
+ "./dist/collection/type/input-tip.js",
64
+ "./dist/collection/type/input.js",
65
+ "./dist/collection/type/keyboard.js",
66
+ "./dist/collection/type/loading.js",
67
+ "./dist/collection/type/preference.js",
68
+ "./dist/collection/type/text.js",
69
+ "./dist/collection/type/tree.js",
70
+ "./dist/collection/type/typography.js",
71
+ "./dist/collection/type/variant-file-format.js",
72
+ "./dist/collection/type/variant.js"
73
+ ]
74
+ },
75
+ {
76
+ "name": "dist-custom-elements",
77
+ "files": 4,
78
+ "generatedFiles": [
79
+ "./dist/components/index.d.ts",
80
+ "./dist/components/index.js",
81
+ "./dist/components/mds-input-otp.d.ts",
82
+ "./dist/components/mds-input-otp.js"
83
+ ]
84
+ },
85
+ {
86
+ "name": "dist-lazy",
87
+ "files": 42,
88
+ "generatedFiles": [
89
+ "./dist/cjs/app-globals-3a1e7e63.js",
90
+ "./dist/cjs/index-3ce43d21.js",
91
+ "./dist/cjs/index.cjs.js",
92
+ "./dist/cjs/loader.cjs.js",
93
+ "./dist/cjs/mds-input-otp.cjs.entry.js",
94
+ "./dist/cjs/mds-input-otp.cjs.js",
95
+ "./dist/esm-es5/app-globals-0f993ce5.js",
96
+ "./dist/esm-es5/index-7080a0cd.js",
97
+ "./dist/esm-es5/index.js",
98
+ "./dist/esm-es5/loader.js",
99
+ "./dist/esm-es5/mds-input-otp.entry.js",
100
+ "./dist/esm-es5/mds-input-otp.js",
101
+ "./dist/esm/app-globals-0f993ce5.js",
102
+ "./dist/esm/index-7080a0cd.js",
103
+ "./dist/esm/index.js",
104
+ "./dist/esm/loader.js",
105
+ "./dist/esm/mds-input-otp.entry.js",
106
+ "./dist/esm/mds-input-otp.js",
107
+ "./dist/index.cjs.js",
108
+ "./dist/index.js",
109
+ "./dist/mds-input-otp/index.esm.js",
110
+ "./dist/mds-input-otp/mds-input-otp.esm.js",
111
+ "./dist/mds-input-otp/mds-input-otp.js",
112
+ "./dist/mds-input-otp/p-0b4b7d22.system.js",
113
+ "./dist/mds-input-otp/p-50ea2036.system.js",
114
+ "./dist/mds-input-otp/p-56ba5cbf.system.js",
115
+ "./dist/mds-input-otp/p-6fa28cad.entry.js",
116
+ "./dist/mds-input-otp/p-8d749fc9.system.entry.js",
117
+ "./dist/mds-input-otp/p-9c3d33cc.system.js",
118
+ "./dist/mds-input-otp/p-dea9d1b9.js",
119
+ "./dist/mds-input-otp/p-e1255160.js",
120
+ "./www/build/index.esm.js",
121
+ "./www/build/mds-input-otp.esm.js",
122
+ "./www/build/mds-input-otp.js",
123
+ "./www/build/p-0b4b7d22.system.js",
124
+ "./www/build/p-50ea2036.system.js",
125
+ "./www/build/p-56ba5cbf.system.js",
126
+ "./www/build/p-6fa28cad.entry.js",
127
+ "./www/build/p-8d749fc9.system.entry.js",
128
+ "./www/build/p-9c3d33cc.system.js",
129
+ "./www/build/p-dea9d1b9.js",
130
+ "./www/build/p-e1255160.js"
131
+ ]
132
+ },
133
+ {
134
+ "name": "dist-types",
135
+ "files": 1,
136
+ "generatedFiles": [
137
+ "./dist/types/stencil-public-runtime.d.ts"
138
+ ]
139
+ },
140
+ {
141
+ "name": "www",
142
+ "files": 1,
143
+ "generatedFiles": [
144
+ "./www/host.config.json"
145
+ ]
146
+ }
147
+ ]
148
+ },
149
+ "options": {
150
+ "minifyJs": true,
151
+ "minifyCss": true,
152
+ "hashFileNames": true,
153
+ "hashedFileNameLength": 8,
154
+ "buildEs5": true
155
+ },
156
+ "formats": {
157
+ "esmBrowser": [
158
+ {
159
+ "key": "mds-input-otp.entry",
160
+ "components": [
161
+ "mds-input-otp"
162
+ ],
163
+ "bundleId": "p-6fa28cad",
164
+ "fileName": "p-6fa28cad.entry.js",
165
+ "imports": [
166
+ "p-dea9d1b9.js"
167
+ ],
168
+ "originalByteSize": 3843
169
+ }
170
+ ],
171
+ "esm": [
172
+ {
173
+ "key": "mds-input-otp.entry",
174
+ "components": [
175
+ "mds-input-otp"
176
+ ],
177
+ "bundleId": "mds-input-otp",
178
+ "fileName": "mds-input-otp.entry.js",
179
+ "imports": [
180
+ "index-7080a0cd.js"
181
+ ],
182
+ "originalByteSize": 3847
183
+ }
184
+ ],
185
+ "es5": [
186
+ {
187
+ "key": "mds-input-otp.entry",
188
+ "components": [
189
+ "mds-input-otp"
190
+ ],
191
+ "bundleId": "mds-input-otp",
192
+ "fileName": "mds-input-otp.entry.js",
193
+ "imports": [
194
+ "index-7080a0cd.js"
195
+ ],
196
+ "originalByteSize": 3847
197
+ }
198
+ ],
199
+ "system": [
200
+ {
201
+ "key": "mds-input-otp.entry",
202
+ "components": [
203
+ "mds-input-otp"
204
+ ],
205
+ "bundleId": "p-8d749fc9.system",
206
+ "fileName": "p-8d749fc9.system.entry.js",
207
+ "imports": [
208
+ "p-9c3d33cc.system.js"
209
+ ],
210
+ "originalByteSize": 4620
211
+ }
212
+ ],
213
+ "commonjs": [
214
+ {
215
+ "key": "mds-input-otp.entry",
216
+ "components": [
217
+ "mds-input-otp"
218
+ ],
219
+ "bundleId": "mds-input-otp.cjs",
220
+ "fileName": "mds-input-otp.cjs.entry.js",
221
+ "imports": [
222
+ "index-3ce43d21.js"
223
+ ],
224
+ "originalByteSize": 3906
225
+ }
226
+ ]
227
+ },
228
+ "components": [
229
+ {
230
+ "tag": "mds-input-otp",
231
+ "path": "./src/components/mds-input-otp/mds-input-otp.js",
232
+ "source": "./src/components/mds-input-otp/mds-input-otp.tsx",
233
+ "elementRef": "element",
234
+ "componentClassName": "MdsInputOtp",
235
+ "assetsDirs": [],
236
+ "dependencies": [],
237
+ "dependents": [],
238
+ "directDependencies": [],
239
+ "directDependents": [],
240
+ "docs": {
241
+ "tags": [],
242
+ "text": ""
243
+ },
244
+ "encapsulation": "shadow",
245
+ "excludeFromCollection": false,
246
+ "events": [],
247
+ "internal": false,
248
+ "listeners": [],
249
+ "methods": [],
250
+ "potentialCmpRefs": [
251
+ "mds-input"
252
+ ],
253
+ "properties": [
254
+ {
255
+ "name": "length",
256
+ "type": "number",
257
+ "attribute": "length",
258
+ "reflect": false,
259
+ "mutable": false,
260
+ "required": false,
261
+ "optional": false,
262
+ "defaultValue": "6",
263
+ "complexType": {
264
+ "original": "number",
265
+ "resolved": "number",
266
+ "references": {}
267
+ },
268
+ "docs": {
269
+ "tags": [],
270
+ "text": "Number of digits in the OTP code"
271
+ },
272
+ "internal": false,
273
+ "getter": false,
274
+ "setter": false
275
+ },
276
+ {
277
+ "name": "autosubmit",
278
+ "type": "boolean",
279
+ "attribute": "autosubmit",
280
+ "reflect": true,
281
+ "mutable": false,
282
+ "required": false,
283
+ "optional": false,
284
+ "defaultValue": "false",
285
+ "complexType": {
286
+ "original": "boolean",
287
+ "resolved": "boolean",
288
+ "references": {}
289
+ },
290
+ "docs": {
291
+ "tags": [],
292
+ "text": "Automatically submits the form when the OTP code is complete"
293
+ },
294
+ "internal": false,
295
+ "getter": false,
296
+ "setter": false
297
+ },
298
+ {
299
+ "name": "value",
300
+ "type": "string",
301
+ "attribute": "value",
302
+ "reflect": true,
303
+ "mutable": true,
304
+ "required": false,
305
+ "optional": true,
306
+ "defaultValue": "''",
307
+ "complexType": {
308
+ "original": "string",
309
+ "resolved": "string | undefined",
310
+ "references": {}
311
+ },
312
+ "docs": {
313
+ "tags": [],
314
+ "text": "The current value of the OTP code"
315
+ },
316
+ "internal": false,
317
+ "getter": false,
318
+ "setter": false
319
+ }
320
+ ],
321
+ "shadowDelegatesFocus": false,
322
+ "states": []
323
+ }
324
+ ],
325
+ "entries": [
326
+ {
327
+ "cmps": [
328
+ {
329
+ "attachInternalsMemberName": "internals",
330
+ "formAssociated": true,
331
+ "tagName": "mds-input-otp",
332
+ "excludeFromCollection": false,
333
+ "isCollectionDependency": false,
334
+ "componentClassName": "MdsInputOtp",
335
+ "elementRef": "element",
336
+ "encapsulation": "shadow",
337
+ "shadowDelegatesFocus": false,
338
+ "properties": [
339
+ {
340
+ "name": "length",
341
+ "type": "number",
342
+ "attribute": "length",
343
+ "reflect": false,
344
+ "mutable": false,
345
+ "required": false,
346
+ "optional": false,
347
+ "defaultValue": "6",
348
+ "complexType": {
349
+ "original": "number",
350
+ "resolved": "number",
351
+ "references": {}
352
+ },
353
+ "docs": {
354
+ "tags": [],
355
+ "text": "Number of digits in the OTP code"
356
+ },
357
+ "internal": false,
358
+ "getter": false,
359
+ "setter": false
360
+ },
361
+ {
362
+ "name": "autosubmit",
363
+ "type": "boolean",
364
+ "attribute": "autosubmit",
365
+ "reflect": true,
366
+ "mutable": false,
367
+ "required": false,
368
+ "optional": false,
369
+ "defaultValue": "false",
370
+ "complexType": {
371
+ "original": "boolean",
372
+ "resolved": "boolean",
373
+ "references": {}
374
+ },
375
+ "docs": {
376
+ "tags": [],
377
+ "text": "Automatically submits the form when the OTP code is complete"
378
+ },
379
+ "internal": false,
380
+ "getter": false,
381
+ "setter": false
382
+ },
383
+ {
384
+ "name": "value",
385
+ "type": "string",
386
+ "attribute": "value",
387
+ "reflect": true,
388
+ "mutable": true,
389
+ "required": false,
390
+ "optional": true,
391
+ "defaultValue": "''",
392
+ "complexType": {
393
+ "original": "string",
394
+ "resolved": "string | undefined",
395
+ "references": {}
396
+ },
397
+ "docs": {
398
+ "tags": [],
399
+ "text": "The current value of the OTP code"
400
+ },
401
+ "internal": false,
402
+ "getter": false,
403
+ "setter": false
404
+ }
405
+ ],
406
+ "virtualProperties": [],
407
+ "states": [],
408
+ "methods": [],
409
+ "listeners": [],
410
+ "events": [],
411
+ "watchers": [],
412
+ "styles": [
413
+ {
414
+ "modeName": "$",
415
+ "styleId": "MDS-INPUT-OTP",
416
+ "styleStr": null,
417
+ "styleIdentifier": "MdsInputOtpStyle",
418
+ "externalStyles": [
419
+ {
420
+ "absolutePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-otp/src/components/mds-input-otp/mds-input-otp.css",
421
+ "relativePath": "mds-input-otp.css",
422
+ "originalComponentPath": "mds-input-otp.css"
423
+ }
424
+ ]
425
+ }
426
+ ],
427
+ "internal": false,
428
+ "assetsDirs": [],
429
+ "styleDocs": [],
430
+ "docs": {
431
+ "tags": [],
432
+ "text": ""
433
+ },
434
+ "jsFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-otp/src/components/mds-input-otp/mds-input-otp.js",
435
+ "sourceFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-otp/src/components/mds-input-otp/mds-input-otp.tsx",
436
+ "sourceMapPath": null,
437
+ "hasAttributeChangedCallbackFn": false,
438
+ "hasComponentWillLoadFn": false,
439
+ "hasComponentDidLoadFn": false,
440
+ "hasComponentShouldUpdateFn": false,
441
+ "hasComponentWillUpdateFn": false,
442
+ "hasComponentDidUpdateFn": false,
443
+ "hasComponentWillRenderFn": false,
444
+ "hasComponentDidRenderFn": false,
445
+ "hasConnectedCallbackFn": false,
446
+ "hasDisconnectedCallbackFn": false,
447
+ "hasElement": false,
448
+ "hasEvent": false,
449
+ "hasLifecycle": false,
450
+ "hasListener": false,
451
+ "hasListenerTarget": false,
452
+ "hasListenerTargetWindow": false,
453
+ "hasListenerTargetDocument": false,
454
+ "hasListenerTargetBody": false,
455
+ "hasListenerTargetParent": false,
456
+ "hasMember": true,
457
+ "hasMethod": false,
458
+ "hasMode": false,
459
+ "hasModernPropertyDecls": false,
460
+ "hasAttribute": true,
461
+ "hasProp": true,
462
+ "hasPropNumber": true,
463
+ "hasPropBoolean": true,
464
+ "hasPropString": true,
465
+ "hasPropMutable": true,
466
+ "hasReflect": true,
467
+ "hasRenderFn": true,
468
+ "hasState": false,
469
+ "hasStyle": true,
470
+ "hasVdomAttribute": true,
471
+ "hasVdomXlink": false,
472
+ "hasVdomClass": true,
473
+ "hasVdomFunctional": false,
474
+ "hasVdomKey": true,
475
+ "hasVdomListener": true,
476
+ "hasVdomPropOrAttr": true,
477
+ "hasVdomRef": false,
478
+ "hasVdomRender": true,
479
+ "hasVdomStyle": false,
480
+ "hasVdomText": true,
481
+ "hasWatchCallback": false,
482
+ "isPlain": false,
483
+ "htmlAttrNames": [
484
+ "key",
485
+ "class",
486
+ "maxlength",
487
+ "onKeyDown",
488
+ "onPaste"
489
+ ],
490
+ "htmlTagNames": [
491
+ "mds-input"
492
+ ],
493
+ "htmlParts": [],
494
+ "isUpdateable": true,
495
+ "potentialCmpRefs": [
496
+ "mds-input"
497
+ ],
498
+ "dependents": [],
499
+ "dependencies": [],
500
+ "directDependents": [],
501
+ "directDependencies": []
502
+ }
503
+ ],
504
+ "entryKey": "mds-input-otp.entry"
505
+ }
506
+ ],
507
+ "componentGraph": {
508
+ "sc-mds-input-otp": [
509
+ "p-dea9d1b9.js"
510
+ ]
511
+ },
512
+ "sourceGraph": {
513
+ "./src/common/aria.ts": [],
514
+ "./src/common/browser.ts": [],
515
+ "./src/common/date.ts": [],
516
+ "./src/common/device.ts": [],
517
+ "./src/common/file.ts": [],
518
+ "./src/common/floating-controller.ts": [
519
+ "./src/common/aria",
520
+ "./src/common/unit"
521
+ ],
522
+ "./src/common/icon.ts": [],
523
+ "./src/common/keyboard-manager.ts": [],
524
+ "./src/common/locale.ts": [],
525
+ "./src/common/slot.ts": [],
526
+ "./src/common/string.ts": [],
527
+ "./src/common/unit.ts": [],
528
+ "./src/common/yugop/core.ts": [
529
+ "./src/common/yugop/utils/math",
530
+ "./src/common/yugop/utils/prng",
531
+ "./src/common/yugop/utils/string"
532
+ ],
533
+ "./src/common/yugop/index.ts": [],
534
+ "./src/common/yugop/random-text.ts": [
535
+ "./src/common/yugop/core",
536
+ "./src/common/yugop/utils/noop"
537
+ ],
538
+ "./src/common/yugop/utils/math.ts": [
539
+ "./src/common/yugop/utils/prng"
540
+ ],
541
+ "./src/common/yugop/utils/noop.ts": [],
542
+ "./src/common/yugop/utils/prng.ts": [],
543
+ "./src/common/yugop/utils/string.ts": [],
544
+ "./src/components/mds-input-otp/mds-input-otp.tsx": [],
545
+ "./src/components/mds-input-otp/test/mds-input-otp.stories.tsx": [],
546
+ "./src/dictionary/animation.ts": [],
547
+ "./src/dictionary/autocomplete.ts": [],
548
+ "./src/dictionary/button.ts": [],
549
+ "./src/dictionary/color.ts": [],
550
+ "./src/dictionary/file-extensions.ts": [],
551
+ "./src/dictionary/floating-ui.ts": [],
552
+ "./src/dictionary/icon.ts": [
553
+ "./src/fixtures/icons.json",
554
+ "./src/fixtures/iconsauce.json"
555
+ ],
556
+ "./src/dictionary/input.ts": [],
557
+ "./src/dictionary/keyboard.ts": [],
558
+ "./src/dictionary/loading.ts": [],
559
+ "./src/dictionary/text.ts": [],
560
+ "./src/dictionary/tree.ts": [],
561
+ "./src/dictionary/typography.ts": [],
562
+ "./src/dictionary/variant.ts": [],
563
+ "./src/fixtures/cities.ts": [],
564
+ "./src/fixtures/filenames.ts": [],
565
+ "./src/type/animation.ts": [],
566
+ "./src/type/autocomplete.ts": [],
567
+ "./src/type/button.ts": [],
568
+ "./src/type/date.ts": [],
569
+ "./src/type/file-types.ts": [],
570
+ "./src/type/floating-ui.ts": [],
571
+ "./src/type/form-rel.ts": [],
572
+ "./src/type/header-bar.ts": [],
573
+ "./src/type/input-tip.ts": [],
574
+ "./src/type/input.ts": [],
575
+ "./src/type/keyboard.ts": [],
576
+ "./src/type/loading.ts": [],
577
+ "./src/type/preference.ts": [],
578
+ "./src/type/text.ts": [],
579
+ "./src/type/tree.ts": [],
580
+ "./src/type/typography.ts": [],
581
+ "./src/type/variant-file-format.ts": [],
582
+ "./src/type/variant.ts": []
583
+ },
584
+ "rollupResults": {
585
+ "modules": []
586
+ },
587
+ "collections": []
588
+ }
@@ -0,0 +1,7 @@
1
+ declare const unslugName: (name: string) => string;
2
+ declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
3
+ declare const removeAttributesIf: (element: HTMLElement, attribute: string, valueCheck: string | undefined, cleanAttributes: string | string[]) => boolean;
4
+ declare const ifAttribute: (element: HTMLElement, attribute: string, valueCheck?: string) => boolean;
5
+ declare const hashValue: (value: string) => string;
6
+ declare const hashRandomValue: (value?: string) => string;
7
+ export { hashRandomValue, hashValue, removeAttributesIf, setAttributeIfEmpty, ifAttribute, unslugName, };
@@ -0,0 +1,2 @@
1
+ declare const isSafari: () => boolean;
2
+ export { isSafari, };
@@ -0,0 +1,4 @@
1
+ import { ISO8601Date } from "../type/date";
2
+ declare const isISO8601Date: (dateString: string) => boolean;
3
+ declare const sanitizeISO8601Date: (dateString: string) => ISO8601Date;
4
+ export { sanitizeISO8601Date, isISO8601Date, };
@@ -0,0 +1,2 @@
1
+ declare const isMobileDevice: () => boolean;
2
+ export { isMobileDevice, };
@@ -0,0 +1,11 @@
1
+ import { ExtensionInfo } from "../dictionary/file-extensions";
2
+ import { ThemeFullVariantType } from "../type/variant";
3
+ interface FileFormatsVariants {
4
+ icon: string;
5
+ variant: ThemeFullVariantType;
6
+ }
7
+ declare const getName: (rawFilename: string) => string;
8
+ declare const getSuffix: (rawFilename: string, suffixOverride?: string) => string;
9
+ declare const getExtensionInfos: (rawFilename: string, suffixOverride?: string) => ExtensionInfo;
10
+ declare const getFormatsVariant: (rawFilename: string, suffixOverride?: string) => FileFormatsVariants;
11
+ export { getExtensionInfos, getFormatsVariant, getSuffix, getName, };
@@ -0,0 +1,47 @@
1
+ import { FloatingUIPlacement, FloatingUIStrategy } from "../type/floating-ui";
2
+ import { HTMLStencilElement } from '../stencil-public-runtime';
3
+ export interface FloatingElement extends PositionOptions {
4
+ host: HTMLFloatingElement;
5
+ }
6
+ export interface HTMLFloatingElement extends HTMLStencilElement, PositionOptions {
7
+ visible: boolean;
8
+ }
9
+ export interface PositionOptions {
10
+ arrow: boolean;
11
+ arrowPadding: number;
12
+ autoPlacement: boolean;
13
+ flip: boolean;
14
+ offset: number;
15
+ placement: FloatingUIPlacement;
16
+ shift: boolean;
17
+ shiftPadding: number;
18
+ strategy: FloatingUIStrategy;
19
+ }
20
+ export declare class FloatingController {
21
+ private _caller;
22
+ private readonly _host;
23
+ arrowEl: HTMLElement | undefined;
24
+ private cleanupAutoUpdate;
25
+ constructor(host: HTMLFloatingElement, arrowEl?: HTMLElement);
26
+ updateCaller(target: string): HTMLElement;
27
+ private readonly arrowInset;
28
+ private readonly arrowTransform;
29
+ private readonly arrowTransformOrigin;
30
+ private convertToTransformOrigin;
31
+ private readonly calculatePosition;
32
+ updatePosition(): void;
33
+ dismiss(): void;
34
+ }
35
+ export declare class Backdrop {
36
+ private readonly defaultBackdropId;
37
+ private readonly backdropBackgroundVisible;
38
+ private readonly backdropBackgroundHidden;
39
+ private readonly backdropId;
40
+ private readonly cssBackdropZIndex;
41
+ private readonly cssBackdropDuration;
42
+ private backdropEl;
43
+ private backdropTimer;
44
+ constructor(backdropId?: string);
45
+ attachBackdrop(): void;
46
+ detachBackdrop(): void;
47
+ }
@@ -0,0 +1,5 @@
1
+ declare const BASE64_SVG_ICON = "data:image/svg+xml;base64,";
2
+ declare const MARKUP_SVG_ICON = "<svg ";
3
+ declare const isIconFormatIsBase64: (icon?: string) => boolean;
4
+ declare const isIconFormatIsSVG: (icon?: string) => boolean;
5
+ export { isIconFormatIsBase64, isIconFormatIsSVG, BASE64_SVG_ICON, MARKUP_SVG_ICON, };