@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,306 @@
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/ai-brain-outline",
25
+ "mgg/ai-brain",
26
+ "mgg/ai-human",
27
+ "mgg/ai-message",
28
+ "mgg/ai-outline",
29
+ "mgg/ai-status-completed",
30
+ "mgg/ai-status-error",
31
+ "mgg/ai-status-processing",
32
+ "mgg/ai-status-suspended",
33
+ "mgg/alerts-pagopa",
34
+ "mgg/anagrafe-nazionale",
35
+ "mgg/anist",
36
+ "mgg/anpr",
37
+ "mgg/ansc",
38
+ "mgg/area-edificabile",
39
+ "mgg/area-weather",
40
+ "mgg/assignments-accept-rejection",
41
+ "mgg/assignments-acceptance-accepted",
42
+ "mgg/assignments-assignment",
43
+ "mgg/assignments-competence",
44
+ "mgg/assignments-completed",
45
+ "mgg/assignments-rejected",
46
+ "mgg/assignments-sorted",
47
+ "mgg/auto-awesome-motion",
48
+ "mgg/back-to-document",
49
+ "mgg/balance",
50
+ "mgg/bill",
51
+ "mgg/box-multiple",
52
+ "mgg/breadcrumb",
53
+ "mgg/bus-stops",
54
+ "mgg/calendar-euro",
55
+ "mgg/calendar-multiple",
56
+ "mgg/calendar-schedule",
57
+ "mgg/cancelled-sheet",
58
+ "mgg/car-license",
59
+ "mgg/card-stamping",
60
+ "mgg/cash-register-settings",
61
+ "mgg/check-small",
62
+ "mgg/checklist-settings",
63
+ "mgg/checklist",
64
+ "mgg/citizenship",
65
+ "mgg/city-bin",
66
+ "mgg/classic-permission",
67
+ "mgg/consumption-high",
68
+ "mgg/consumption-low",
69
+ "mgg/consumption-medium",
70
+ "mgg/copy-paste",
71
+ "mgg/d-instrumental-buildings",
72
+ "mgg/data-analytics-alt",
73
+ "mgg/data-analytics-search",
74
+ "mgg/data-analytics-time",
75
+ "mgg/data-category-alt",
76
+ "mgg/data-civil-union",
77
+ "mgg/data-cleaning",
78
+ "mgg/data-death-civil-union",
79
+ "mgg/data-death-marriage",
80
+ "mgg/data-end-civil-union",
81
+ "mgg/data-end-marriage",
82
+ "mgg/dataset",
83
+ "mgg/delivered-to-the-recipient",
84
+ "mgg/document-euro",
85
+ "mgg/document-less",
86
+ "mgg/document-magic",
87
+ "mgg/document-rename",
88
+ "mgg/download-csv",
89
+ "mgg/download-json",
90
+ "mgg/edit-article",
91
+ "mgg/electronic-document",
92
+ "mgg/email-assigned",
93
+ "mgg/email-open-blocked",
94
+ "mgg/email-open-check",
95
+ "mgg/email-open-lock",
96
+ "mgg/email-open-off",
97
+ "mgg/email-open-play",
98
+ "mgg/email-open-stop",
99
+ "mgg/email-open-user",
100
+ "mgg/email-open-view",
101
+ "mgg/email-to-assign",
102
+ "mgg/face-to-face-meeting",
103
+ "mgg/factory",
104
+ "mgg/farmer",
105
+ "mgg/field",
106
+ "mgg/file-certificate",
107
+ "mgg/file-clock",
108
+ "mgg/file-download",
109
+ "mgg/file-folder-tree-open",
110
+ "mgg/file-folder-tree",
111
+ "mgg/file-import",
112
+ "mgg/file-odt",
113
+ "mgg/file-rtf",
114
+ "mgg/file-settings-alt",
115
+ "mgg/file-stack-alt",
116
+ "mgg/file-stack",
117
+ "mgg/file-sub",
118
+ "mgg/file-type-document-attachment",
119
+ "mgg/file-type-document-multiple-attachment",
120
+ "mgg/file-type-document-rubber-stamp",
121
+ "mgg/file-type-home",
122
+ "mgg/file-type-pdf",
123
+ "mgg/file-type-success",
124
+ "mgg/file-type-warning",
125
+ "mgg/file-xml",
126
+ "mgg/finance-euro-cashback",
127
+ "mgg/fit-horizontal",
128
+ "mgg/fit-vertical",
129
+ "mgg/fontawesome-torii-gate",
130
+ "mgg/forwarded-with-a-single-sending",
131
+ "mgg/fullscreen-on-alt",
132
+ "mgg/google-book-closed-outline",
133
+ "mgg/google-book-closed",
134
+ "mgg/google-book-large-outline",
135
+ "mgg/google-book-large",
136
+ "mgg/google-book-opening-outline",
137
+ "mgg/google-book-opening",
138
+ "mgg/google-check-small",
139
+ "mgg/google-drag-pan",
140
+ "mgg/google-experiment",
141
+ "mgg/google-face-retouching-off",
142
+ "mgg/google-hub",
143
+ "mgg/google-keyboard-double-arrow-down",
144
+ "mgg/google-keyboard-double-arrow-up",
145
+ "mgg/google-newsstand",
146
+ "mgg/google-place-item",
147
+ "mgg/group-assigned-automatically-system",
148
+ "mgg/group-ceased",
149
+ "mgg/group-inherited",
150
+ "mgg/heart-outline",
151
+ "mgg/heart",
152
+ "mgg/historic-building-unusable",
153
+ "mgg/historic-building",
154
+ "mgg/home-hammer",
155
+ "mgg/home-link",
156
+ "mgg/home-number",
157
+ "mgg/inad",
158
+ "mgg/inagibile",
159
+ "mgg/inps",
160
+ "mgg/input-calendar-costs",
161
+ "mgg/input-calendar-period",
162
+ "mgg/input-calendar-time",
163
+ "mgg/instrumental-buildings",
164
+ "mgg/internationalization-add",
165
+ "mgg/internationalization-check",
166
+ "mgg/internationalization-delete",
167
+ "mgg/isbn",
168
+ "mgg/judge-hammer",
169
+ "mgg/land-registry",
170
+ "mgg/layers",
171
+ "mgg/liquidated-document",
172
+ "mgg/list-dot",
173
+ "mgg/logo-girasole-camuno",
174
+ "mgg/logo-gpl",
175
+ "mgg/logo-ilibro",
176
+ "mgg/map-marker-settings",
177
+ "mgg/masks-office",
178
+ "mgg/mdi-binoculars",
179
+ "mgg/mdi-graph-outline",
180
+ "mgg/mdi-microscope",
181
+ "mgg/mdi-telescope",
182
+ "mgg/military-draft",
183
+ "mgg/money-bag-settings",
184
+ "mgg/money-on-hand",
185
+ "mgg/money-paid",
186
+ "mgg/move-down",
187
+ "mgg/move-left",
188
+ "mgg/move-right",
189
+ "mgg/move-row-down",
190
+ "mgg/move-row-up",
191
+ "mgg/move-up",
192
+ "mgg/multiple-payments",
193
+ "mgg/national-document-off",
194
+ "mgg/national-document",
195
+ "mgg/not-instrumental-d-buildings",
196
+ "mgg/not-sent-yet",
197
+ "mgg/office-off",
198
+ "mgg/order-return-down-left-to-right",
199
+ "mgg/order-return-down-left-to-up",
200
+ "mgg/order-return-down-right-to-left",
201
+ "mgg/order-return-down-right-to-up",
202
+ "mgg/order-return-up-left-to-down",
203
+ "mgg/order-return-up-left-to-right",
204
+ "mgg/order-return-up-right-to-down",
205
+ "mgg/order-return-up-right-to-left",
206
+ "mgg/order-zigzag-down-left-to-right",
207
+ "mgg/order-zigzag-down-left-to-up",
208
+ "mgg/order-zigzag-down-right-to-left",
209
+ "mgg/order-zigzag-down-right-to-up",
210
+ "mgg/order-zigzag-up-left-to-down",
211
+ "mgg/order-zigzag-up-left-to-right",
212
+ "mgg/order-zigzag-up-right-to-down",
213
+ "mgg/order-zigzag-up-right-to-left",
214
+ "mgg/other-properties-off",
215
+ "mgg/other-properties",
216
+ "mgg/other-residential-buildings",
217
+ "mgg/pagopa",
218
+ "mgg/partial-wall",
219
+ "mgg/payment-settings",
220
+ "mgg/pec-handshake",
221
+ "mgg/pec-ok",
222
+ "mgg/pec-sent-to-the-not-pec-recipient",
223
+ "mgg/places-green-doc",
224
+ "mgg/places-green-history",
225
+ "mgg/places-green-info",
226
+ "mgg/places-green",
227
+ "mgg/places-holiday-beach",
228
+ "mgg/places-market",
229
+ "mgg/places-park-alt",
230
+ "mgg/places-park",
231
+ "mgg/places-store-access-denied",
232
+ "mgg/pos",
233
+ "mgg/property-owner",
234
+ "mgg/registro-imprese",
235
+ "mgg/relevance",
236
+ "mgg/reporting-abuse",
237
+ "mgg/residency-permit",
238
+ "mgg/robot",
239
+ "mgg/roles-permission",
240
+ "mgg/rubber-stamp",
241
+ "mgg/rurale",
242
+ "mgg/search-maggioli",
243
+ "mgg/send-progress",
244
+ "mgg/sending-error",
245
+ "mgg/session",
246
+ "mgg/settings-attachment",
247
+ "mgg/sign-shop",
248
+ "mgg/square-viewfinder",
249
+ "mgg/stacked-documents",
250
+ "mgg/stamp",
251
+ "mgg/status-progress-a-quarter",
252
+ "mgg/status-progress-complete",
253
+ "mgg/status-progress-half",
254
+ "mgg/status-progress-three-quarter",
255
+ "mgg/stuck-codes",
256
+ "mgg/subtractive-permission",
257
+ "mgg/tea-light",
258
+ "mgg/terminal",
259
+ "mgg/tie",
260
+ "mgg/to-single-document",
261
+ "mgg/to-stacked-documents",
262
+ "mgg/todo-action-businessman-view",
263
+ "mgg/todo-action-certificate",
264
+ "mgg/todo-action-contract",
265
+ "mgg/todo-action-currency-euro",
266
+ "mgg/todo-action-graduate",
267
+ "mgg/todo-action-graduation-hat",
268
+ "mgg/todo-action-judge",
269
+ "mgg/todo-action-money",
270
+ "mgg/todo-action-protocol",
271
+ "mgg/todo-action-upload",
272
+ "mgg/todo-action-wkf-document-checked",
273
+ "mgg/todo-action-wkf-people-checked",
274
+ "mgg/todo-action-wkf-set-pub-date",
275
+ "mgg/todo-completed-re-executable",
276
+ "mgg/todo-completed",
277
+ "mgg/todo-in-charge-by-me",
278
+ "mgg/todo-in-charge-by-others",
279
+ "mgg/todo-in-evaluation-by-others",
280
+ "mgg/todo-in-evaluation",
281
+ "mgg/todo-incoming-in-charge",
282
+ "mgg/todo-incoming-rejected",
283
+ "mgg/todo-pause",
284
+ "mgg/todo-running-completed",
285
+ "mgg/todo-suspended",
286
+ "mgg/todo",
287
+ "mgg/touchpoint-laptop-info",
288
+ "mgg/touchpoint-laptop-search",
289
+ "mgg/traffic-cone",
290
+ "mgg/trending-down",
291
+ "mgg/tribute",
292
+ "mgg/tributes",
293
+ "mgg/urban-city",
294
+ "mgg/user-dead",
295
+ "mgg/user-family",
296
+ "mgg/user-location-off",
297
+ "mgg/user-location",
298
+ "mgg/user-signed-out",
299
+ "mgg/user-substitution",
300
+ "mgg/view-chart-gantt",
301
+ "mgg/view-side-by-side",
302
+ "mgg/vote",
303
+ "mgg/warning-superscript",
304
+ "mgg/web-app-ansc",
305
+ "mgg/work-book"
306
+ ]
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Εικόνα δίσκου Apple",
3
+ "certificateTSD": "Πιστοποιητικό χρονικής σήμανσης",
4
+ "compressedArchive": "Συμπιεσμένο αρχείο",
5
+ "compressedAudio": "Συμπιεσμένος ήχος",
6
+ "compressedDocumentMS": "Συμπιεσμένο έγγραφο Microsoft Word",
7
+ "compressedImage": "Συμπιεσμένη εικόνα",
8
+ "dart": "Αρχείο Dart",
9
+ "documentAdobe": "Έγγραφο Adobe",
10
+ "documentDigitalSingnature": "Έγγραφο με ψηφιακή υπογραφή",
11
+ "documentLO": "Έγγραφο LibreOffice",
12
+ "documentMS": "Έγγραφο Microsoft Word",
13
+ "documentRTF": "Έγγραφο μορφής εμπλουτισμένου κειμένου",
14
+ "documentTXT": "Απλό έγγραφο κειμένου",
15
+ "documentWeb": "Ιστοσελίδα",
16
+ "email": "Ηλεκτρονικό ταχυδρομείο",
17
+ "extensibleMarkupLanguage": "Γλώσσα σήμανσης για δεδομένα",
18
+ "fileAI": "Διανυσματικό αρχείο Adobe Illustrator",
19
+ "fileDB": "Αρχείο βάσης δεδομένων",
20
+ "fileEPS": "Διανυσματικό αρχείο Corel Draw",
21
+ "fileEXE": "Εκτελέσιμο αρχείο Windows",
22
+ "fileJS": "Αρχείο JavaScript",
23
+ "fileJSON": "Αρχείο JavaScript Object Notation",
24
+ "filePHP": "Αρχείο Hypertext Preprocessor",
25
+ "fileSASS": "Αρχείο Syntactically Awesome StyleSheets",
26
+ "fileTS": "Αρχείο TypeScript",
27
+ "fileTSX": "Αρχείο TypeScript Extended Syntax",
28
+ "imageHEIC": "Μορφή αρχείου εικόνας υψηλής αποδοτικότητας",
29
+ "imagePNG": "Εικόνα Portable Network Graphics",
30
+ "imageSVG": "Διανυσματική εικόνα Scalable Vector Graphics",
31
+ "imageTIFF": "Εικόνα Tag Image File Format",
32
+ "imageWEBP": "Εικόνα Google Web Picture",
33
+ "objectLinkingAndEmbedding": "Σύνδεση και ενσωμάτωση αντικειμένων",
34
+ "openDocumentFormat": "Έγγραφο OpenDocument",
35
+ "slideLO": "Διαφάνεια παρουσίασης LibreOffice",
36
+ "slidePowerPoint": "Διαφάνεια παρουσίασης PowerPoint",
37
+ "spreadsheetLO": "Υπολογιστικό φύλλο LibreOffice",
38
+ "spreadsheetMS": "Υπολογιστικό φύλλο Microsoft Office",
39
+ "uncompressedArchive": "Μη συμπιεσμένο αρχείο",
40
+ "uncompressedAudio": "Μη συμπιεσμένος ήχος",
41
+ "unknown": "Άγνωστη μορφή αρχείου",
42
+ "videoHD": "Βίντεο υψηλής ανάλυσης",
43
+ "videoSD": "Βίντεο χαμηλής ανάλυσης"
44
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Apple Disk Image",
3
+ "certificateTSD": "Timestamp Certificate",
4
+ "compressedArchive": "Compressed Archive",
5
+ "compressedAudio": "Compressed Audio",
6
+ "compressedDocumentMS": "Compressed Microsoft Word Document",
7
+ "compressedImage": "Compressed Image",
8
+ "dart": "Dart File",
9
+ "documentAdobe": "Adobe Document",
10
+ "documentDigitalSingnature": "Document with digital signature",
11
+ "documentLO": "LibreOffice Document",
12
+ "documentMS": "Microsoft Word Document",
13
+ "documentRTF": "Rich Text Format Document",
14
+ "documentTXT": "Plain Text Document",
15
+ "documentWeb": "Web Page",
16
+ "email": "E-mail",
17
+ "extensibleMarkupLanguage": "Markup language for data",
18
+ "fileAI": "Adobe Illustrator Vector File",
19
+ "fileDB": "Database File",
20
+ "fileEPS": "Corel Draw Vector File",
21
+ "fileEXE": "Windows Executable File",
22
+ "fileJS": "JavaScript File",
23
+ "fileJSON": "JavaScript Object Notation File",
24
+ "filePHP": "Hypertext Preprocessor File",
25
+ "fileSASS": "Syntactically Awesome StyleSheets File",
26
+ "fileTS": "TypeScript File",
27
+ "fileTSX": "TypeScript Extended Syntax File",
28
+ "imageHEIC": "High Efficiency Image File Format",
29
+ "imagePNG": "Portable Network Graphics Image",
30
+ "imageSVG": "Scalable Vector Graphics Image",
31
+ "imageTIFF": "Tag Image File Format Image",
32
+ "imageWEBP": "Google Web Picture Image",
33
+ "objectLinkingAndEmbedding": "Object Linking and Embedding",
34
+ "openDocumentFormat": "OpenDocument Document",
35
+ "slideLO": "LibreOffice Presentation Slide",
36
+ "slidePowerPoint": "PowerPoint Presentation Slide",
37
+ "spreadsheetLO": "LibreOffice Spreadsheet",
38
+ "spreadsheetMS": "Microsoft Office Spreadsheet",
39
+ "uncompressedArchive": "Uncompressed Archive",
40
+ "uncompressedAudio": "Uncompressed Audio",
41
+ "unknown": "Unknown File Format",
42
+ "videoHD": "High Definition Video",
43
+ "videoSD": "Standard Definition Video"
44
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Imagen de disco Apple",
3
+ "certificateTSD": "Certificado de sello de tiempo",
4
+ "compressedArchive": "Archivo comprimido",
5
+ "compressedAudio": "Audio comprimido",
6
+ "compressedDocumentMS": "Documento comprimido de Microsoft Word",
7
+ "compressedImage": "Imagen comprimida",
8
+ "dart": "Archivo Dart",
9
+ "documentAdobe": "Documento Adobe",
10
+ "documentDigitalSingnature": "Documento con firma digital",
11
+ "documentLO": "Documento de LibreOffice",
12
+ "documentMS": "Documento de Microsoft Word",
13
+ "documentRTF": "Documento de formato de texto enriquecido",
14
+ "documentTXT": "Documento de texto sin formato",
15
+ "documentWeb": "Página web",
16
+ "email": "Correo electrónico",
17
+ "extensibleMarkupLanguage": "Lenguaje de marcado para datos",
18
+ "fileAI": "Archivo vectorial de Adobe Illustrator",
19
+ "fileDB": "Archivo de base de datos",
20
+ "fileEPS": "Archivo vectorial de Corel Draw",
21
+ "fileEXE": "Archivo ejecutable de Windows",
22
+ "fileJS": "Archivo JavaScript",
23
+ "fileJSON": "Archivo de notación de objetos de JavaScript",
24
+ "filePHP": "Archivo de preprocesador de hipertexto",
25
+ "fileSASS": "Archivo de Syntactically Awesome StyleSheets",
26
+ "fileTS": "Archivo TypeScript",
27
+ "fileTSX": "Archivo de sintaxis extendida de TypeScript",
28
+ "imageHEIC": "Formato de archivo de imagen de alta eficiencia",
29
+ "imagePNG": "Imagen Portable Network Graphics",
30
+ "imageSVG": "Imagen de gráficos vectoriales escalables",
31
+ "imageTIFF": "Imagen de formato de archivo de imagen etiquetado",
32
+ "imageWEBP": "Imagen Google Web Picture",
33
+ "objectLinkingAndEmbedding": "Vinculación e incrustación de objetos",
34
+ "openDocumentFormat": "Documento OpenDocument",
35
+ "slideLO": "Diapositiva de presentación de LibreOffice",
36
+ "slidePowerPoint": "Diapositiva de presentación de PowerPoint",
37
+ "spreadsheetLO": "Hoja de cálculo de LibreOffice",
38
+ "spreadsheetMS": "Hoja de cálculo de Microsoft Office",
39
+ "uncompressedArchive": "Archivo no comprimido",
40
+ "uncompressedAudio": "Audio no comprimido",
41
+ "unknown": "Formato de archivo desconocido",
42
+ "videoHD": "Video de alta definición",
43
+ "videoSD": "Video de definición estándar"
44
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Immagine Disco Apple",
3
+ "certificateTSD": "Marca temporale",
4
+ "compressedArchive": "Archivio compresso",
5
+ "compressedAudio": "Audio compresso",
6
+ "compressedDocumentMS": "Documento di testo Microsoft Word Compresso",
7
+ "compressedImage": "Immagine compressa",
8
+ "dart": "File Dart",
9
+ "documentAdobe": "Documento Adobe",
10
+ "documentDigitalSingnature": "Documento con firma digitale",
11
+ "documentLO": "Documento di testo LibreOffice",
12
+ "documentMS": "Documento di testo Microsoft Word",
13
+ "documentRTF": "Documento di testo Rich Text Format",
14
+ "documentTXT": "Documento di testo senza formattazione",
15
+ "documentWeb": "Pagina web",
16
+ "email": "E-mail",
17
+ "extensibleMarkupLanguage": "Linguaggio markup per dati",
18
+ "fileAI": "File vettoriale Adobe Illustrator",
19
+ "fileDB": "File di database",
20
+ "fileEPS": "File vettoriale Corel Draw",
21
+ "fileEXE": "File eseguibile Windows",
22
+ "fileJS": "File JavaScript",
23
+ "fileJSON": "File JavaScript Object Notation",
24
+ "filePHP": "File Hypertext Preprocessor",
25
+ "fileSASS": "File Syntactically Awesome StyleSheets",
26
+ "fileTS": "File TypeScript",
27
+ "fileTSX": "File TypeScript Extended Syntax",
28
+ "imageHEIC": "High Efficiency Image File Format",
29
+ "imagePNG": "Immagine Portable Network Graphics",
30
+ "imageSVG": "Immagine vettoriale Scalable Vector Graphics",
31
+ "imageTIFF": "Immagine Tag Image File Format",
32
+ "imageWEBP": "Immagine Google Web Picture",
33
+ "objectLinkingAndEmbedding": "Integrazione oggetti nei file",
34
+ "openDocumentFormat": "Documento OpenDocument",
35
+ "slideLO": "Slide di presentazione LibreOffice",
36
+ "slidePowerPoint": "Slide di presentazione PowerPoint",
37
+ "spreadsheetLO": "Foglio di calcolo LibreOffice",
38
+ "spreadsheetMS": "Foglio di calcolo Office",
39
+ "uncompressedArchive": "Archivio non compresso",
40
+ "uncompressedAudio": "Audio non compresso",
41
+ "unknown": "Formato file sconosciuto",
42
+ "videoHD": "Filmato HD ad alta risoluzione",
43
+ "videoSD": "Filmato SD a bassa risoluzione"
44
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "0": { "description": "keyNumber", "group": "Number", "alias": "0", "keyCodes": ["Digit0", "Numpad0"] },
3
+ "1": { "description": "keyNumber", "group": "Number", "alias": "1", "keyCodes": ["Digit1", "Numpad1"] },
4
+ "2": { "description": "keyNumber", "group": "Number", "alias": "2", "keyCodes": ["Digit2", "Numpad2"] },
5
+ "3": { "description": "keyNumber", "group": "Number", "alias": "3", "keyCodes": ["Digit3", "Numpad3"] },
6
+ "4": { "description": "keyNumber", "group": "Number", "alias": "4", "keyCodes": ["Digit4", "Numpad4"] },
7
+ "5": { "description": "keyNumber", "group": "Number", "alias": "5", "keyCodes": ["Digit5", "Numpad5"] },
8
+ "6": { "description": "keyNumber", "group": "Number", "alias": "6", "keyCodes": ["Digit6", "Numpad6"] },
9
+ "7": { "description": "keyNumber", "group": "Number", "alias": "7", "keyCodes": ["Digit7", "Numpad7"] },
10
+ "8": { "description": "keyNumber", "group": "Number", "alias": "8", "keyCodes": ["Digit8", "Numpad8"] },
11
+ "9": { "description": "keyNumber", "group": "Number", "alias": "9", "keyCodes": ["Digit9", "Numpad9"] },
12
+ "a": { "description": "keyCharacter", "group": "Character", "alias": "A", "keyCodes": ["KeyA"] },
13
+ "alt": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyCodes": ["AltLeft", "AltRight"] },
14
+ "altleft": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyboardPosition": {"left": true}, "keyCodes": ["AltLeft"] },
15
+ "altright": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyboardPosition": {"right": true}, "keyCodes": ["AltRight"] },
16
+ "arrowdown": { "description": "navArrowDown", "group": "Arrow", "alias": "ArrowDown", "keyCodes": ["ArrowDown"] },
17
+ "arrowleft": { "description": "navArrowLeft", "group": "Arrow", "alias": "ArrowLeft", "keyCodes": ["ArrowLeft"] },
18
+ "arrowright": { "description": "navArrowRight", "group": "Arrow", "alias": "ArrowRight", "keyCodes": ["ArrowRight"] },
19
+ "arrowup": { "description": "navArrowUp", "group": "Arrow", "alias": "ArrowUp", "keyCodes": ["ArrowUp"] },
20
+ "b": { "description": "keyCharacter", "group": "Character", "alias": "B", "keyCodes": ["KeyB"] },
21
+ "backspace": { "description": "specBackspace", "group": "Special", "alias": "Backspace", "keyCodes": ["Backspace"] },
22
+ "c": { "description": "keyCharacter", "group": "Character", "alias": "C", "keyCodes": ["KeyC"] },
23
+ "capslock": { "description": "specCapsLock", "group": "Special", "alias": "CapsLock", "keyCodes": ["CapsLock"] },
24
+ "command": { "description": "modMeta", "group": "Modificator", "alias": "Cmd", "keyCodes": ["MetaLeft", "MetaRight"] },
25
+ "commandleft": { "description": "modMeta", "group": "Modificator", "alias": "Cmd", "keyboardPosition": {"left": true}, "keyCodes": ["MetaLeft"] },
26
+ "commandright": { "description": "modMeta", "group": "Modificator", "alias": "Cmd", "keyboardPosition": {"right": true}, "keyCodes": ["MetaRight"] },
27
+ "control": { "description": "modControl", "group": "Modificator", "alias": "Ctrl", "keyCodes": ["ControlLeft", "ControlRight"] },
28
+ "controlleft": { "description": "modControl", "group": "Modificator", "alias": "Ctrl", "keyboardPosition": {"left": true}, "keyCode": "Control", "keyCodes": ["ControlLeft"] },
29
+ "controlright": { "description": "modControl", "group": "Modificator", "alias": "Ctrl", "keyboardPosition": {"right": true}, "keyCode": "Control", "keyCodes": ["ControlRight"] },
30
+ "d": { "description": "keyCharacter", "group": "Character", "alias": "D", "keyCodes": ["KeyD"] },
31
+ "delete": { "description": "specDelete", "group": "Special", "alias": "Delete", "keyCodes": ["Delete"] },
32
+ "e": { "description": "keyCharacter", "group": "Character", "alias": "E", "keyCodes": ["KeyE"] },
33
+ "end": { "description": "navEnd", "group": "Navigator", "alias": "End", "keyCodes": ["End"] },
34
+ "enter": { "description": "specEnter", "group": "Special", "alias": "Enter", "keyCodes": ["Enter"] },
35
+ "escape": { "description": "specEscape", "group": "Special", "alias": "Esc", "keyCodes": ["Escape"] },
36
+ "f": { "description": "keyCharacter", "group": "Character", "alias": "F", "keyCodes": ["KeyF"] },
37
+ "f1": { "description": "keyFunction", "group": "Function", "alias": "F1", "keyCodes": ["F1"] },
38
+ "f10": { "description": "keyFunction", "group": "Function", "alias": "F10", "keyCodes": ["F10"] },
39
+ "f11": { "description": "keyFunction", "group": "Function", "alias": "F11", "keyCodes": ["F11"] },
40
+ "f12": { "description": "keyFunction", "group": "Function", "alias": "F12", "keyCodes": ["F12"] },
41
+ "f2": { "description": "keyFunction", "group": "Function", "alias": "F2", "keyCodes": ["F2"] },
42
+ "f3": { "description": "keyFunction", "group": "Function", "alias": "F3", "keyCodes": ["F3"] },
43
+ "f4": { "description": "keyFunction", "group": "Function", "alias": "F4", "keyCodes": ["F4"] },
44
+ "f5": { "description": "keyFunction", "group": "Function", "alias": "F5", "keyCodes": ["F5"] },
45
+ "f6": { "description": "keyFunction", "group": "Function", "alias": "F6", "keyCodes": ["F6"] },
46
+ "f7": { "description": "keyFunction", "group": "Function", "alias": "F7", "keyCodes": ["F7"] },
47
+ "f8": { "description": "keyFunction", "group": "Function", "alias": "F8", "keyCodes": ["F8"] },
48
+ "f9": { "description": "keyFunction", "group": "Function", "alias": "F9", "keyCodes": ["F9"] },
49
+ "g": { "description": "keyCharacter", "group": "Character", "alias": "G", "keyCodes": ["KeyG"] },
50
+ "h": { "description": "keyCharacter", "group": "Character", "alias": "H", "keyCodes": ["KeyH"] },
51
+ "home": { "description": "navHome", "group": "Navigator", "alias": "Home", "keyCodes": ["Home"] },
52
+ "i": { "description": "keyCharacter", "group": "Character", "alias": "I", "keyCodes": ["KeyI"] },
53
+ "j": { "description": "keyCharacter", "group": "Character", "alias": "J", "keyCodes": ["KeyJ"] },
54
+ "k": { "description": "keyCharacter", "group": "Character", "alias": "K", "keyCodes": ["KeyK"] },
55
+ "l": { "description": "keyCharacter", "group": "Character", "alias": "L", "keyCodes": ["KeyL"] },
56
+ "m": { "description": "keyCharacter", "group": "Character", "alias": "M", "keyCodes": ["KeyM"] },
57
+ "n": { "description": "keyCharacter", "group": "Character", "alias": "N", "keyCodes": ["KeyN"] },
58
+ "o": { "description": "keyCharacter", "group": "Character", "alias": "O", "keyCodes": ["KeyO"] },
59
+ "option": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyCodes": ["AltLeft", "AltRight"] },
60
+ "optionleft": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyboardPosition": {"left": true}, "keyCodes": ["AltLeft"] },
61
+ "optionright": { "description": "modAlt", "group": "Modificator", "alias": "Alt", "keyboardPosition": {"right": true}, "keyCodes": ["AltRight"] },
62
+ "p": { "description": "keyCharacter", "group": "Character", "alias": "P", "keyCodes": ["KeyP"] },
63
+ "pagedown": { "description": "navPageDown", "group": "Navigator", "alias": "PageDown", "keyCodes": ["PageDown"] },
64
+ "pageup": { "description": "navPageUp", "group": "Navigator", "alias": "PageUp", "keyCodes": ["PageUp"] },
65
+ "q": { "description": "keyCharacter", "group": "Character", "alias": "Q", "keyCodes": ["KeyQ"] },
66
+ "r": { "description": "keyCharacter", "group": "Character", "alias": "R", "keyCodes": ["KeyR"] },
67
+ "s": { "description": "keyCharacter", "group": "Character", "alias": "S", "keyCodes": ["KeyS"] },
68
+ "shift": { "description": "modShift", "group": "Modificator", "alias": "Shift", "keyCodes": ["ShiftLeft", "ShiftRight"] },
69
+ "shiftleft": { "description": "modShift", "group": "Modificator", "alias": "Shift", "keyboardPosition": {"left": true}, "keyCodes": ["ShiftLeft"] },
70
+ "shiftright": { "description": "modShift", "group": "Modificator", "alias": "Shift", "keyboardPosition": {"right": true}, "keyCodes": ["ShiftRight"] },
71
+ "space": { "description": "specSpace", "group": "Special", "alias": "Space", "keyCodes": ["Space"] },
72
+ "t": { "description": "keyCharacter", "group": "Character", "alias": "T", "keyCodes": ["KeyT"] },
73
+ "tab": { "description": "specTab", "group": "Special", "alias": "Tab", "keyCodes": ["Tab"] },
74
+ "u": { "description": "keyCharacter", "group": "Character", "alias": "U", "keyCodes": ["KeyU"] },
75
+ "v": { "description": "keyCharacter", "group": "Character", "alias": "V", "keyCodes": ["KeyV"] },
76
+ "w": { "description": "keyCharacter", "group": "Character", "alias": "W", "keyCodes": ["KeyW"] },
77
+ "windows": { "description": "modMeta", "group": "Modificator", "alias": "Win", "keyCodes": ["MetaLeft", "MetaRight"] },
78
+ "windowsleft": { "description": "modMeta", "group": "Modificator", "alias": "Win", "keyboardPosition": {"left": true}, "keyCodes": ["MetaLeft"] },
79
+ "windowsright": { "description": "modMeta", "group": "Modificator", "alias": "Win", "keyboardPosition": {"right": true}, "keyCodes": ["MetaRight"] },
80
+ "x": { "description": "keyCharacter", "group": "Character", "alias": "X", "keyCodes": ["KeyX"] },
81
+ "y": { "description": "keyCharacter", "group": "Character", "alias": "Y", "keyCodes": ["KeyY"] },
82
+ "z": { "description": "keyCharacter", "group": "Character", "alias": "Z", "keyCodes": ["KeyZ"] }
83
+ }
@@ -0,0 +1,51 @@
1
+ @import '~@maggioli-design-system/styles/dist/tailwind/components.css';
2
+
3
+ @layer components {
4
+ .svg {
5
+ @apply flex;
6
+ }
7
+
8
+ .svg svg {
9
+ @apply
10
+ aspect-square
11
+ h-full
12
+ w-full;
13
+ }
14
+
15
+ .contrast-area-base {
16
+ border-radius: inherit;
17
+ box-shadow: theme('boxShadow.outline-50') inset;
18
+ display: none;
19
+ inset: 0;
20
+ opacity: 0;
21
+ pointer-events: none;
22
+ position: absolute;
23
+ transition-behavior: allow-discrete;
24
+ transition-property: display opacity;
25
+ }
26
+
27
+ .contrast-area-50 {
28
+ @apply contrast-area-base;
29
+
30
+ box-shadow: theme('boxShadow.outline-50') inset;
31
+ }
32
+
33
+ .contrast-area {
34
+ @apply contrast-area-base;
35
+
36
+ box-shadow: theme('boxShadow.outline') inset;
37
+ }
38
+
39
+ .not-hydrated {
40
+ animation-duration: 0s;
41
+ border-color: transparent;
42
+ box-shadow: 0 0 0 transparent;
43
+ opacity: 0;
44
+ outline-color: transparent;
45
+ transition-delay: 0s;
46
+ transition-duration: 0s;
47
+ visibility: hidden;
48
+ }
49
+ }
50
+
51
+ @tailwind components;