@eightshift/ui-components 6.3.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (973) hide show
  1. package/dist/Button-h6xF_WrP.js +225 -0
  2. package/dist/Dialog-i5VLQw1o.js +2488 -0
  3. package/dist/Disclosure-NYWFw9RJ.js +188 -0
  4. package/dist/FieldError-BWDbP5Db.js +213 -0
  5. package/dist/FocusScope-CgwbGOBB.js +746 -0
  6. package/dist/Form-DTMkbrQY.js +5 -0
  7. package/dist/Heading-Hol-wS_B.js +16 -0
  8. package/dist/Hidden-8TB37dpK.js +51 -0
  9. package/dist/Input-BURqyJXW.js +161 -0
  10. package/dist/Label-DFXXxMKY.js +17 -0
  11. package/dist/List-CMK5qsNF.js +506 -0
  12. package/dist/ListBox-B21SgugS.js +601 -0
  13. package/dist/NumberFormatter-m5VW6MTK.js +122 -0
  14. package/dist/OverlayArrow-BoloUPQM.js +573 -0
  15. package/dist/PortalProvider-DinZZCKX.js +14 -0
  16. package/dist/RSPContexts-C_z0bI8W.js +12 -0
  17. package/dist/RadioGroup-BwlGtCja.js +329 -0
  18. package/dist/SearchField-DR_I4_yn.js +765 -0
  19. package/dist/SelectionIndicator-31L6EI9F.js +13 -0
  20. package/dist/SelectionManager-B8lLv6Ue.js +2176 -0
  21. package/dist/Slider-DW1RuMVp.js +827 -0
  22. package/dist/Text-O6VBBDlP.js +16 -0
  23. package/dist/VisuallyHidden-CfsnJHZb.js +43 -0
  24. package/dist/animation-Bd2peown.js +62 -0
  25. package/dist/assets/style-admin.css +197 -200
  26. package/dist/assets/style-editor.css +197 -200
  27. package/dist/assets/style.css +197 -200
  28. package/dist/build-module-sxK3nxOK.js +855 -0
  29. package/dist/button-COTeluL8.js +524 -0
  30. package/dist/checkbox-D0AWkLhp.js +338 -0
  31. package/dist/clsx-BUU5J41u.js +16 -0
  32. package/dist/color-swatch-CBYsO_Zs.js +2572 -0
  33. package/dist/components/animated-visibility/animated-visibility.js +87 -111
  34. package/dist/components/base-control/base-control.js +73 -86
  35. package/dist/components/base-control/container.js +199 -227
  36. package/dist/components/breakpoint-preview/breakpoint-preview.js +162 -158
  37. package/dist/components/button/button.js +3 -580
  38. package/dist/components/checkbox/checkbox.js +2 -391
  39. package/dist/components/color-pickers/color-picker.js +172 -276
  40. package/dist/components/color-pickers/color-swatch.js +3 -7
  41. package/dist/components/color-pickers/gradient-editor.js +4 -552
  42. package/dist/components/color-pickers/solid-color-picker.js +3 -1710
  43. package/dist/components/component-toggle/component-toggle.js +107 -160
  44. package/dist/components/container-panel/container-panel.js +94 -151
  45. package/dist/components/draggable/draggable-context.js +4 -4
  46. package/dist/components/draggable/draggable-handle.js +27 -43
  47. package/dist/components/draggable/draggable.js +3 -7638
  48. package/dist/components/draggable-list/draggable-list-context.js +4 -4
  49. package/dist/components/draggable-list/draggable-list-item.js +63 -80
  50. package/dist/components/draggable-list/draggable-list.js +115 -142
  51. package/dist/components/expandable/expandable.js +105 -407
  52. package/dist/components/index.js +30 -106
  53. package/dist/components/input-field/input-field.js +2 -326
  54. package/dist/components/item-collection/item-collection.js +50 -56
  55. package/dist/components/layout/hstack.js +27 -29
  56. package/dist/components/layout/vstack.js +27 -29
  57. package/dist/components/link-input/link-input.js +3 -1943
  58. package/dist/components/matrix-align/matrix-align.js +127 -161
  59. package/dist/components/menu/menu.js +253 -356
  60. package/dist/components/modal/modal.js +3 -399
  61. package/dist/components/notice/notice.js +99 -139
  62. package/dist/components/number-picker/number-picker.js +3 -344
  63. package/dist/components/option-select/option-select.js +226 -404
  64. package/dist/components/options-panel/options-panel.js +138 -175
  65. package/dist/components/placeholders/file-picker-shell.js +91 -141
  66. package/dist/components/placeholders/file-placeholder.js +41 -53
  67. package/dist/components/placeholders/image-placeholder.js +65 -96
  68. package/dist/components/placeholders/media-placeholder.js +65 -68
  69. package/dist/components/popover/popover.js +147 -221
  70. package/dist/components/portal-provider/portal-provider.js +23 -21
  71. package/dist/components/radio/radio.js +246 -294
  72. package/dist/components/repeater/repeater-context.js +4 -4
  73. package/dist/components/repeater/repeater-item.js +95 -114
  74. package/dist/components/repeater/repeater.js +221 -278
  75. package/dist/components/responsive/mini-responsive.js +403 -495
  76. package/dist/components/responsive/responsive-legacy.js +271 -336
  77. package/dist/components/responsive/responsive.js +445 -562
  78. package/dist/components/responsive-preview/responsive-preview.js +94 -117
  79. package/dist/components/rich-label/rich-label.js +80 -75
  80. package/dist/components/select/async-multi-select.js +360 -589
  81. package/dist/components/select/async-select.js +284 -492
  82. package/dist/components/select/multi-select.js +340 -552
  83. package/dist/components/select/shared.js +3 -17
  84. package/dist/components/select/single-select.js +278 -475
  85. package/dist/components/select/styles.js +84 -0
  86. package/dist/components/slider/column-config-slider.js +170 -301
  87. package/dist/components/slider/slider.js +258 -405
  88. package/dist/components/slider/utils.js +77 -121
  89. package/dist/components/smart-image/image-analysis-worker.js +128 -0
  90. package/dist/components/smart-image/smart-image.js +3 -205
  91. package/dist/components/smart-image/worker-inline.js +4 -4
  92. package/dist/components/spacer/spacer.js +80 -94
  93. package/dist/components/tabs/tabs.js +3 -1051
  94. package/dist/components/toggle/switch.js +2 -295
  95. package/dist/components/toggle/toggle.js +54 -64
  96. package/dist/components/toggle-button/toggle-button.js +2 -451
  97. package/dist/components/tooltip/tooltip.js +2 -535
  98. package/dist/context-C-XNeJ_l.js +93 -0
  99. package/dist/debounce-throttle-DXxSAKpq.js +120 -0
  100. package/dist/dist-DIK9pFxO.js +55 -0
  101. package/dist/draggable-CYQyD9gG.js +6961 -0
  102. package/dist/es-dash-HqXWZZ3_.js +303 -0
  103. package/dist/filterDOMProps-_2_3GD-K.js +69 -0
  104. package/dist/general-D-7dwhuF.js +4277 -0
  105. package/dist/gradient-editor-DbH8NU2p.js +604 -0
  106. package/dist/icons/block-icon.js +34 -39
  107. package/dist/icons/generated-icon-loaders.js +759 -0
  108. package/dist/icons/generic-color-swatch.js +81 -111
  109. package/dist/icons/icon.js +67 -0
  110. package/dist/icons/icons.js +218 -3656
  111. package/dist/icons/index.js +756 -10
  112. package/dist/icons/internal.js +758 -0
  113. package/dist/icons/jsx-svg.js +2 -94
  114. package/dist/icons/spinner.js +16 -18
  115. package/dist/icons/ui-icons/a11y-warning.js +34 -0
  116. package/dist/icons/ui-icons/a11y.js +29 -0
  117. package/dist/icons/ui-icons/accelerometer.js +51 -0
  118. package/dist/icons/ui-icons/activity-log.js +53 -0
  119. package/dist/icons/ui-icons/add.js +20 -0
  120. package/dist/icons/ui-icons/alert.js +31 -0
  121. package/dist/icons/ui-icons/align-horizontal-vertical-alt.js +37 -0
  122. package/dist/icons/ui-icons/align-horizontal-vertical-alt2.js +36 -0
  123. package/dist/icons/ui-icons/align-horizontal-vertical.js +34 -0
  124. package/dist/icons/ui-icons/alt-text-generic-alt.js +19 -0
  125. package/dist/icons/ui-icons/alt-text-generic.js +25 -0
  126. package/dist/icons/ui-icons/alt-text.js +36 -0
  127. package/dist/icons/ui-icons/anchor-page.js +44 -0
  128. package/dist/icons/ui-icons/anchor.js +28 -0
  129. package/dist/icons/ui-icons/angle.js +24 -0
  130. package/dist/icons/ui-icons/animation-file.js +66 -0
  131. package/dist/icons/ui-icons/animation-generic.js +36 -0
  132. package/dist/icons/ui-icons/animation-list-generic.js +41 -0
  133. package/dist/icons/ui-icons/animation-settings-generic.js +41 -0
  134. package/dist/icons/ui-icons/animation.js +55 -0
  135. package/dist/icons/ui-icons/archive-file.js +24 -0
  136. package/dist/icons/ui-icons/archive.js +39 -0
  137. package/dist/icons/ui-icons/aria-label.js +42 -0
  138. package/dist/icons/ui-icons/arrow-down-circle-alt.js +28 -0
  139. package/dist/icons/ui-icons/arrow-down-circle.js +28 -0
  140. package/dist/icons/ui-icons/arrow-down-square-alt.js +28 -0
  141. package/dist/icons/ui-icons/arrow-down-square.js +28 -0
  142. package/dist/icons/ui-icons/arrow-down.js +20 -0
  143. package/dist/icons/ui-icons/arrow-left-circle-alt.js +28 -0
  144. package/dist/icons/ui-icons/arrow-left-circle.js +28 -0
  145. package/dist/icons/ui-icons/arrow-left-square-alt.js +28 -0
  146. package/dist/icons/ui-icons/arrow-left-square.js +28 -0
  147. package/dist/icons/ui-icons/arrow-left.js +20 -0
  148. package/dist/icons/ui-icons/arrow-right-circle-alt.js +28 -0
  149. package/dist/icons/ui-icons/arrow-right-circle.js +28 -0
  150. package/dist/icons/ui-icons/arrow-right-square-alt.js +28 -0
  151. package/dist/icons/ui-icons/arrow-right-square.js +28 -0
  152. package/dist/icons/ui-icons/arrow-right.js +20 -0
  153. package/dist/icons/ui-icons/arrow-up-circle-alt.js +28 -0
  154. package/dist/icons/ui-icons/arrow-up-circle.js +28 -0
  155. package/dist/icons/ui-icons/arrow-up-square-alt.js +28 -0
  156. package/dist/icons/ui-icons/arrow-up-square.js +28 -0
  157. package/dist/icons/ui-icons/arrow-up.js +20 -0
  158. package/dist/icons/ui-icons/arrows-down.js +38 -0
  159. package/dist/icons/ui-icons/arrows-horizontal.js +20 -0
  160. package/dist/icons/ui-icons/arrows-left-diagonal.js +20 -0
  161. package/dist/icons/ui-icons/arrows-left.js +38 -0
  162. package/dist/icons/ui-icons/arrows-right-diagonal.js +20 -0
  163. package/dist/icons/ui-icons/arrows-right.js +38 -0
  164. package/dist/icons/ui-icons/arrows-up.js +38 -0
  165. package/dist/icons/ui-icons/arrows-vertical.js +20 -0
  166. package/dist/icons/ui-icons/aspect-ratio-auto.js +38 -0
  167. package/dist/icons/ui-icons/aspect-ratio-nine-sixteen.js +28 -0
  168. package/dist/icons/ui-icons/aspect-ratio-sixteen-nine.js +28 -0
  169. package/dist/icons/ui-icons/aspect-ratio-square.js +28 -0
  170. package/dist/icons/ui-icons/aspect-ratio-three-two.js +28 -0
  171. package/dist/icons/ui-icons/aspect-ratio-twenty-one-nine.js +28 -0
  172. package/dist/icons/ui-icons/aspect-ratio.js +27 -0
  173. package/dist/icons/ui-icons/attachment.js +19 -0
  174. package/dist/icons/ui-icons/auto-close.js +26 -0
  175. package/dist/icons/ui-icons/auto-pause-scroll.js +39 -0
  176. package/dist/icons/ui-icons/auto-pause.js +26 -0
  177. package/dist/icons/ui-icons/automatic-alt.js +19 -0
  178. package/dist/icons/ui-icons/automatic.js +20 -0
  179. package/dist/icons/ui-icons/autoplay-alt.js +34 -0
  180. package/dist/icons/ui-icons/autoplay-alt2.js +23 -0
  181. package/dist/icons/ui-icons/autoplay.js +36 -0
  182. package/dist/icons/ui-icons/award.js +39 -0
  183. package/dist/icons/ui-icons/background-blur.js +66 -0
  184. package/dist/icons/ui-icons/background-color-swatch.js +48 -0
  185. package/dist/icons/ui-icons/background-image.js +41 -0
  186. package/dist/icons/ui-icons/background-repeat.js +95 -0
  187. package/dist/icons/ui-icons/background-type-alt.js +38 -0
  188. package/dist/icons/ui-icons/background-type-alt2.js +27 -0
  189. package/dist/icons/ui-icons/background-type.js +27 -0
  190. package/dist/icons/ui-icons/block-parts.js +54 -0
  191. package/dist/icons/ui-icons/bold.js +21 -0
  192. package/dist/icons/ui-icons/book.js +40 -0
  193. package/dist/icons/ui-icons/bookmark.js +18 -0
  194. package/dist/icons/ui-icons/boolean-exclude.js +24 -0
  195. package/dist/icons/ui-icons/boolean-intersect.js +31 -0
  196. package/dist/icons/ui-icons/boolean-subtract.js +27 -0
  197. package/dist/icons/ui-icons/boolean-union.js +33 -0
  198. package/dist/icons/ui-icons/border-color.js +79 -0
  199. package/dist/icons/ui-icons/border.js +60 -0
  200. package/dist/icons/ui-icons/bot-deny.js +61 -0
  201. package/dist/icons/ui-icons/bot.js +47 -0
  202. package/dist/icons/ui-icons/box.js +35 -0
  203. package/dist/icons/ui-icons/brain.js +20 -0
  204. package/dist/icons/ui-icons/branch-fork.js +46 -0
  205. package/dist/icons/ui-icons/branch.js +46 -0
  206. package/dist/icons/ui-icons/briefcase.js +26 -0
  207. package/dist/icons/ui-icons/browser.js +60 -0
  208. package/dist/icons/ui-icons/button-disabled.js +30 -0
  209. package/dist/icons/ui-icons/button-filled.js +19 -0
  210. package/dist/icons/ui-icons/button-ghost.js +28 -0
  211. package/dist/icons/ui-icons/button-outline.js +27 -0
  212. package/dist/icons/ui-icons/calculator.js +139 -0
  213. package/dist/icons/ui-icons/calendar-add.js +51 -0
  214. package/dist/icons/ui-icons/calendar-download.js +62 -0
  215. package/dist/icons/ui-icons/calendar-remove.js +51 -0
  216. package/dist/icons/ui-icons/calendar.js +34 -0
  217. package/dist/icons/ui-icons/caption-generic.js +25 -0
  218. package/dist/icons/ui-icons/card-featured.js +28 -0
  219. package/dist/icons/ui-icons/caret-down-fill.js +19 -0
  220. package/dist/icons/ui-icons/caret-down.js +19 -0
  221. package/dist/icons/ui-icons/caret-left-fill.js +19 -0
  222. package/dist/icons/ui-icons/caret-left.js +19 -0
  223. package/dist/icons/ui-icons/caret-right-fill.js +19 -0
  224. package/dist/icons/ui-icons/caret-right.js +19 -0
  225. package/dist/icons/ui-icons/caret-up-fill.js +19 -0
  226. package/dist/icons/ui-icons/caret-up.js +19 -0
  227. package/dist/icons/ui-icons/center-point.js +25 -0
  228. package/dist/icons/ui-icons/chat-bubble-alt.js +25 -0
  229. package/dist/icons/ui-icons/chat-bubble.js +19 -0
  230. package/dist/icons/ui-icons/chat.js +25 -0
  231. package/dist/icons/ui-icons/check-circle-fill-transparent.js +24 -0
  232. package/dist/icons/ui-icons/check-circle-fill.js +17 -0
  233. package/dist/icons/ui-icons/check-circle.js +27 -0
  234. package/dist/icons/ui-icons/check-square.js +28 -0
  235. package/dist/icons/ui-icons/check.js +20 -0
  236. package/dist/icons/ui-icons/checks-circle.js +26 -0
  237. package/dist/icons/ui-icons/checks.js +26 -0
  238. package/dist/icons/ui-icons/chevron-down.js +20 -0
  239. package/dist/icons/ui-icons/chevron-left.js +20 -0
  240. package/dist/icons/ui-icons/chevron-right.js +20 -0
  241. package/dist/icons/ui-icons/chevron-up.js +20 -0
  242. package/dist/icons/ui-icons/clear-alt.js +25 -0
  243. package/dist/icons/ui-icons/clear.js +20 -0
  244. package/dist/icons/ui-icons/clipboard-plain.js +35 -0
  245. package/dist/icons/ui-icons/clipboard.js +43 -0
  246. package/dist/icons/ui-icons/clock.js +26 -0
  247. package/dist/icons/ui-icons/closed-captions.js +27 -0
  248. package/dist/icons/ui-icons/code-variable.js +20 -0
  249. package/dist/icons/ui-icons/code.js +20 -0
  250. package/dist/icons/ui-icons/color-alt.js +40 -0
  251. package/dist/icons/ui-icons/color-fill-swatch.js +61 -0
  252. package/dist/icons/ui-icons/color-picker-fill.js +42 -0
  253. package/dist/icons/ui-icons/color-picker-list-marker.js +41 -0
  254. package/dist/icons/ui-icons/color-picker-text-highlight.js +19 -0
  255. package/dist/icons/ui-icons/color-picker-text.js +20 -0
  256. package/dist/icons/ui-icons/color-select.js +33 -0
  257. package/dist/icons/ui-icons/color.js +22 -0
  258. package/dist/icons/ui-icons/column-gutters-lr.js +54 -0
  259. package/dist/icons/ui-icons/columns.js +42 -0
  260. package/dist/icons/ui-icons/columns3366.js +30 -0
  261. package/dist/icons/ui-icons/columns6633.js +30 -0
  262. package/dist/icons/ui-icons/component-generic.js +27 -0
  263. package/dist/icons/ui-icons/component-options.js +36 -0
  264. package/dist/icons/ui-icons/condition-h.js +20 -0
  265. package/dist/icons/ui-icons/condition-v.js +20 -0
  266. package/dist/icons/ui-icons/conditional-visibility.js +26 -0
  267. package/dist/icons/ui-icons/container-height.js +68 -0
  268. package/dist/icons/ui-icons/container-spacing-h.js +41 -0
  269. package/dist/icons/ui-icons/container-spacing.js +41 -0
  270. package/dist/icons/ui-icons/container-width.js +68 -0
  271. package/dist/icons/ui-icons/content-bottom-left.js +31 -0
  272. package/dist/icons/ui-icons/content-bottom-right.js +31 -0
  273. package/dist/icons/ui-icons/content-center.js +31 -0
  274. package/dist/icons/ui-icons/content-top-left.js +31 -0
  275. package/dist/icons/ui-icons/content-top-right.js +31 -0
  276. package/dist/icons/ui-icons/contrast-alt.js +27 -0
  277. package/dist/icons/ui-icons/contrast.js +26 -0
  278. package/dist/icons/ui-icons/cookie-alt.js +124 -0
  279. package/dist/icons/ui-icons/cookie.js +76 -0
  280. package/dist/icons/ui-icons/copy.js +26 -0
  281. package/dist/icons/ui-icons/currency.js +48 -0
  282. package/dist/icons/ui-icons/current-page.js +42 -0
  283. package/dist/icons/ui-icons/cursor-disabled.js +35 -0
  284. package/dist/icons/ui-icons/cursor-move.js +20 -0
  285. package/dist/icons/ui-icons/dark-mode.js +20 -0
  286. package/dist/icons/ui-icons/data.js +33 -0
  287. package/dist/icons/ui-icons/date-time.js +67 -0
  288. package/dist/icons/ui-icons/defer.js +26 -0
  289. package/dist/icons/ui-icons/description-link.js +40 -0
  290. package/dist/icons/ui-icons/design.js +48 -0
  291. package/dist/icons/ui-icons/dice.js +59 -0
  292. package/dist/icons/ui-icons/divider-bottom.js +23 -0
  293. package/dist/icons/ui-icons/divider-side.js +53 -0
  294. package/dist/icons/ui-icons/divider-status.js +53 -0
  295. package/dist/icons/ui-icons/divider-top.js +23 -0
  296. package/dist/icons/ui-icons/divider.js +23 -0
  297. package/dist/icons/ui-icons/door-in.js +32 -0
  298. package/dist/icons/ui-icons/door-out.js +32 -0
  299. package/dist/icons/ui-icons/door.js +27 -0
  300. package/dist/icons/ui-icons/download.js +20 -0
  301. package/dist/icons/ui-icons/dropdown-caret-alt.js +17 -0
  302. package/dist/icons/ui-icons/dropdown-caret.js +20 -0
  303. package/dist/icons/ui-icons/dropdown-close.js +52 -0
  304. package/dist/icons/ui-icons/dropdown-open.js +38 -0
  305. package/dist/icons/ui-icons/dropdown.js +38 -0
  306. package/dist/icons/ui-icons/dummy-spacer.js +17 -0
  307. package/dist/icons/ui-icons/edit-options.js +32 -0
  308. package/dist/icons/ui-icons/edit.js +22 -0
  309. package/dist/icons/ui-icons/email-remove.js +42 -0
  310. package/dist/icons/ui-icons/email.js +28 -0
  311. package/dist/icons/ui-icons/embed.js +28 -0
  312. package/dist/icons/ui-icons/empty-circle.js +23 -0
  313. package/dist/icons/ui-icons/empty-rect.js +25 -0
  314. package/dist/icons/ui-icons/equal-columns.js +25 -0
  315. package/dist/icons/ui-icons/equal-rows.js +25 -0
  316. package/dist/icons/ui-icons/equals.js +20 -0
  317. package/dist/icons/ui-icons/error-circle-fill-transparent.js +23 -0
  318. package/dist/icons/ui-icons/error-circle-fill.js +17 -0
  319. package/dist/icons/ui-icons/error-circle.js +24 -0
  320. package/dist/icons/ui-icons/exclude-item-alt.js +38 -0
  321. package/dist/icons/ui-icons/exclude-item.js +42 -0
  322. package/dist/icons/ui-icons/exclude.js +29 -0
  323. package/dist/icons/ui-icons/expand-xl.js +20 -0
  324. package/dist/icons/ui-icons/expand.js +20 -0
  325. package/dist/icons/ui-icons/experiment.js +33 -0
  326. package/dist/icons/ui-icons/external-link.js +25 -0
  327. package/dist/icons/ui-icons/extract-alt.js +25 -0
  328. package/dist/icons/ui-icons/extract.js +25 -0
  329. package/dist/icons/ui-icons/eyedropper.js +36 -0
  330. package/dist/icons/ui-icons/fast-forward.js +26 -0
  331. package/dist/icons/ui-icons/fast-reverse.js +26 -0
  332. package/dist/icons/ui-icons/field-after-text.js +54 -0
  333. package/dist/icons/ui-icons/field-before-text.js +46 -0
  334. package/dist/icons/ui-icons/field-disabled.js +35 -0
  335. package/dist/icons/ui-icons/field-help.js +46 -0
  336. package/dist/icons/ui-icons/field-label.js +38 -0
  337. package/dist/icons/ui-icons/field-name.js +45 -0
  338. package/dist/icons/ui-icons/field-placeholder.js +49 -0
  339. package/dist/icons/ui-icons/field-readonly.js +36 -0
  340. package/dist/icons/ui-icons/field-required.js +37 -0
  341. package/dist/icons/ui-icons/field-type.js +36 -0
  342. package/dist/icons/ui-icons/field-value.js +46 -0
  343. package/dist/icons/ui-icons/field-width.js +27 -0
  344. package/dist/icons/ui-icons/file-download.js +33 -0
  345. package/dist/icons/ui-icons/file-error.js +25 -0
  346. package/dist/icons/ui-icons/file-metadata.js +41 -0
  347. package/dist/icons/ui-icons/file-pdf.js +34 -0
  348. package/dist/icons/ui-icons/file-size-max.js +33 -0
  349. package/dist/icons/ui-icons/file-size-min.js +33 -0
  350. package/dist/icons/ui-icons/file-size.js +34 -0
  351. package/dist/icons/ui-icons/file-type.js +42 -0
  352. package/dist/icons/ui-icons/file-upload.js +33 -0
  353. package/dist/icons/ui-icons/file.js +24 -0
  354. package/dist/icons/ui-icons/files.js +34 -0
  355. package/dist/icons/ui-icons/fill-color.js +49 -0
  356. package/dist/icons/ui-icons/filter-alt.js +24 -0
  357. package/dist/icons/ui-icons/filter.js +20 -0
  358. package/dist/icons/ui-icons/flag-alt.js +24 -0
  359. package/dist/icons/ui-icons/flag.js +24 -0
  360. package/dist/icons/ui-icons/flip-h.js +27 -0
  361. package/dist/icons/ui-icons/flip-v.js +27 -0
  362. package/dist/icons/ui-icons/focus.js +21 -0
  363. package/dist/icons/ui-icons/folder-add.js +22 -0
  364. package/dist/icons/ui-icons/folder-open-solid.js +17 -0
  365. package/dist/icons/ui-icons/folder-open.js +19 -0
  366. package/dist/icons/ui-icons/folder-solid.js +17 -0
  367. package/dist/icons/ui-icons/folder-top-level.js +22 -0
  368. package/dist/icons/ui-icons/folder.js +19 -0
  369. package/dist/icons/ui-icons/font-family.js +24 -0
  370. package/dist/icons/ui-icons/footer.js +23 -0
  371. package/dist/icons/ui-icons/form-alt.js +71 -0
  372. package/dist/icons/ui-icons/form.js +53 -0
  373. package/dist/icons/ui-icons/four-columns.js +38 -0
  374. package/dist/icons/ui-icons/frame.js +33 -0
  375. package/dist/icons/ui-icons/full-max-shield.js +26 -0
  376. package/dist/icons/ui-icons/full-max-text.js +20 -0
  377. package/dist/icons/ui-icons/full-width-image.js +35 -0
  378. package/dist/icons/ui-icons/gears-fill.js +19 -0
  379. package/dist/icons/ui-icons/gears.js +38 -0
  380. package/dist/icons/ui-icons/generic-color-swatch.js +6 -0
  381. package/dist/icons/ui-icons/generic-shapes-alt.js +33 -0
  382. package/dist/icons/ui-icons/generic-shapes.js +38 -0
  383. package/dist/icons/ui-icons/globe-anchor.js +55 -0
  384. package/dist/icons/ui-icons/globe-hash.js +40 -0
  385. package/dist/icons/ui-icons/globe.js +37 -0
  386. package/dist/icons/ui-icons/google-tag-manager.js +36 -0
  387. package/dist/icons/ui-icons/gradient-repeat.js +41 -0
  388. package/dist/icons/ui-icons/gradient-stop.js +36 -0
  389. package/dist/icons/ui-icons/gradient.js +54 -0
  390. package/dist/icons/ui-icons/grid-alt.js +19 -0
  391. package/dist/icons/ui-icons/grid-auto-cols.js +46 -0
  392. package/dist/icons/ui-icons/grid-auto-rows.js +41 -0
  393. package/dist/icons/ui-icons/grid-col.js +22 -0
  394. package/dist/icons/ui-icons/grid-height.js +22 -0
  395. package/dist/icons/ui-icons/grid-list-toggle.js +48 -0
  396. package/dist/icons/ui-icons/grid-manual.js +18 -0
  397. package/dist/icons/ui-icons/grid-row.js +22 -0
  398. package/dist/icons/ui-icons/grid-width.js +22 -0
  399. package/dist/icons/ui-icons/group.js +33 -0
  400. package/dist/icons/ui-icons/gutter.js +28 -0
  401. package/dist/icons/ui-icons/gyroscope.js +53 -0
  402. package/dist/icons/ui-icons/h1.js +28 -0
  403. package/dist/icons/ui-icons/h2.js +28 -0
  404. package/dist/icons/ui-icons/h3.js +28 -0
  405. package/dist/icons/ui-icons/h4.js +28 -0
  406. package/dist/icons/ui-icons/h5.js +28 -0
  407. package/dist/icons/ui-icons/h6.js +28 -0
  408. package/dist/icons/ui-icons/hamburger-menu.js +19 -0
  409. package/dist/icons/ui-icons/hard-drive.js +35 -0
  410. package/dist/icons/ui-icons/header.js +23 -0
  411. package/dist/icons/ui-icons/heading-level-alt.js +28 -0
  412. package/dist/icons/ui-icons/heading-level.js +28 -0
  413. package/dist/icons/ui-icons/heading.js +20 -0
  414. package/dist/icons/ui-icons/heart-fill-transparent.js +19 -0
  415. package/dist/icons/ui-icons/heart-fill.js +18 -0
  416. package/dist/icons/ui-icons/heart.js +18 -0
  417. package/dist/icons/ui-icons/height.js +30 -0
  418. package/dist/icons/ui-icons/help-fill.js +19 -0
  419. package/dist/icons/ui-icons/help.js +38 -0
  420. package/dist/icons/ui-icons/hide.js +29 -0
  421. package/dist/icons/ui-icons/highlighted-checkmark.js +24 -0
  422. package/dist/icons/ui-icons/highlighted-exclamation-mark.js +33 -0
  423. package/dist/icons/ui-icons/history.js +26 -0
  424. package/dist/icons/ui-icons/horizontal-align-alt.js +27 -0
  425. package/dist/icons/ui-icons/horizontal-align-around.js +37 -0
  426. package/dist/icons/ui-icons/horizontal-align-between-alt.js +37 -0
  427. package/dist/icons/ui-icons/horizontal-align-between.js +46 -0
  428. package/dist/icons/ui-icons/horizontal-align-center.js +41 -0
  429. package/dist/icons/ui-icons/horizontal-align-evenly.js +37 -0
  430. package/dist/icons/ui-icons/horizontal-align-left.js +44 -0
  431. package/dist/icons/ui-icons/horizontal-align-right.js +48 -0
  432. package/dist/icons/ui-icons/horizontal-align-stretch.js +37 -0
  433. package/dist/icons/ui-icons/horizontal-align.js +35 -0
  434. package/dist/icons/ui-icons/hover-background-glow.js +61 -0
  435. package/dist/icons/ui-icons/hover-background-type.js +34 -0
  436. package/dist/icons/ui-icons/hover-invert-object.js +42 -0
  437. package/dist/icons/ui-icons/hover-invert-text.js +32 -0
  438. package/dist/icons/ui-icons/hover-rotate.js +20 -0
  439. package/dist/icons/ui-icons/hover-zoom.js +25 -0
  440. package/dist/icons/ui-icons/hyphenate-alt.js +20 -0
  441. package/dist/icons/ui-icons/hyphenate-alt2.js +20 -0
  442. package/dist/icons/ui-icons/hyphenate.js +25 -0
  443. package/dist/icons/ui-icons/icon-generic.js +23 -0
  444. package/dist/icons/ui-icons/id-card.js +45 -0
  445. package/dist/icons/ui-icons/id.js +28 -0
  446. package/dist/icons/ui-icons/image-blur.js +50 -0
  447. package/dist/icons/ui-icons/image-caption.js +36 -0
  448. package/dist/icons/ui-icons/image-error.js +36 -0
  449. package/dist/icons/ui-icons/image-file.js +40 -0
  450. package/dist/icons/ui-icons/image-lazy-load.js +52 -0
  451. package/dist/icons/ui-icons/image-opacity.js +31 -0
  452. package/dist/icons/ui-icons/image-overlay-alt.js +93 -0
  453. package/dist/icons/ui-icons/image-overlay-alt2.js +93 -0
  454. package/dist/icons/ui-icons/image-overlay.js +92 -0
  455. package/dist/icons/ui-icons/image-remove.js +46 -0
  456. package/dist/icons/ui-icons/image.js +25 -0
  457. package/dist/icons/ui-icons/index.js +753 -0
  458. package/dist/icons/ui-icons/info-circle-fill-transparent.js +21 -0
  459. package/dist/icons/ui-icons/info-circle-fill.js +17 -0
  460. package/dist/icons/ui-icons/info-circle.js +24 -0
  461. package/dist/icons/ui-icons/info.js +17 -0
  462. package/dist/icons/ui-icons/inherit.js +41 -0
  463. package/dist/icons/ui-icons/inline-gradient-format.js +62 -0
  464. package/dist/icons/ui-icons/input-field.js +27 -0
  465. package/dist/icons/ui-icons/italic.js +20 -0
  466. package/dist/icons/ui-icons/item-limit.js +35 -0
  467. package/dist/icons/ui-icons/item-select.js +33 -0
  468. package/dist/icons/ui-icons/item-wrap.js +60 -0
  469. package/dist/icons/ui-icons/items-per-page.js +48 -0
  470. package/dist/icons/ui-icons/items-per-row.js +45 -0
  471. package/dist/icons/ui-icons/key.js +25 -0
  472. package/dist/icons/ui-icons/keyboard.js +19 -0
  473. package/dist/icons/ui-icons/large.js +24 -0
  474. package/dist/icons/ui-icons/latest-posts.js +44 -0
  475. package/dist/icons/ui-icons/layer-off.js +20 -0
  476. package/dist/icons/ui-icons/layer.js +19 -0
  477. package/dist/icons/ui-icons/layers.js +33 -0
  478. package/dist/icons/ui-icons/layout-alt.js +19 -0
  479. package/dist/icons/ui-icons/layout-alt2.js +23 -0
  480. package/dist/icons/ui-icons/layout-alt3.js +19 -0
  481. package/dist/icons/ui-icons/layout-alt4.js +19 -0
  482. package/dist/icons/ui-icons/layout-bento-box.js +19 -0
  483. package/dist/icons/ui-icons/layout-masonry.js +79 -0
  484. package/dist/icons/ui-icons/layout.js +43 -0
  485. package/dist/icons/ui-icons/left-panel-alt.js +25 -0
  486. package/dist/icons/ui-icons/left-panel.js +22 -0
  487. package/dist/icons/ui-icons/light-bulb-alt.js +30 -0
  488. package/dist/icons/ui-icons/light-bulb.js +33 -0
  489. package/dist/icons/ui-icons/light-mode.js +26 -0
  490. package/dist/icons/ui-icons/limit-width.js +26 -0
  491. package/dist/icons/ui-icons/line-break-alt-off.js +26 -0
  492. package/dist/icons/ui-icons/line-break-alt.js +25 -0
  493. package/dist/icons/ui-icons/line-break-off-alt.js +35 -0
  494. package/dist/icons/ui-icons/line-break-off.js +41 -0
  495. package/dist/icons/ui-icons/line-break.js +29 -0
  496. package/dist/icons/ui-icons/line-breaks-hyphenation.js +36 -0
  497. package/dist/icons/ui-icons/link-add.js +41 -0
  498. package/dist/icons/ui-icons/link-nav.js +59 -0
  499. package/dist/icons/ui-icons/link-remove.js +41 -0
  500. package/dist/icons/ui-icons/link.js +19 -0
  501. package/dist/icons/ui-icons/list-indent.js +26 -0
  502. package/dist/icons/ui-icons/list-ordered.js +43 -0
  503. package/dist/icons/ui-icons/list-outdent.js +26 -0
  504. package/dist/icons/ui-icons/list-unordered.js +43 -0
  505. package/dist/icons/ui-icons/loader-alt.js +19 -0
  506. package/dist/icons/ui-icons/loader.js +19 -0
  507. package/dist/icons/ui-icons/location-add.js +44 -0
  508. package/dist/icons/ui-icons/location-allow.js +44 -0
  509. package/dist/icons/ui-icons/location-deny.js +44 -0
  510. package/dist/icons/ui-icons/location-settings.js +36 -0
  511. package/dist/icons/ui-icons/location.js +26 -0
  512. package/dist/icons/ui-icons/lock.js +44 -0
  513. package/dist/icons/ui-icons/loop-mode.js +20 -0
  514. package/dist/icons/ui-icons/magic-alt-fill-transparent.js +20 -0
  515. package/dist/icons/ui-icons/magic-alt-fill.js +19 -0
  516. package/dist/icons/ui-icons/magic-alt.js +19 -0
  517. package/dist/icons/ui-icons/magic-fill-transparent.js +20 -0
  518. package/dist/icons/ui-icons/magic-fill.js +19 -0
  519. package/dist/icons/ui-icons/magic.js +19 -0
  520. package/dist/icons/ui-icons/map-layer-json.js +35 -0
  521. package/dist/icons/ui-icons/map-layer-raster.js +121 -0
  522. package/dist/icons/ui-icons/map-layer-vector.js +81 -0
  523. package/dist/icons/ui-icons/map-layer.js +26 -0
  524. package/dist/icons/ui-icons/map-pin.js +41 -0
  525. package/dist/icons/ui-icons/matrix-align-control-dot-active.js +23 -0
  526. package/dist/icons/ui-icons/matrix-align-control-dot-inactive.js +21 -0
  527. package/dist/icons/ui-icons/media.js +49 -0
  528. package/dist/icons/ui-icons/medium.js +24 -0
  529. package/dist/icons/ui-icons/menu-item-check.js +20 -0
  530. package/dist/icons/ui-icons/menu-item-circle.js +19 -0
  531. package/dist/icons/ui-icons/microphone.js +23 -0
  532. package/dist/icons/ui-icons/migration-alt-v.js +20 -0
  533. package/dist/icons/ui-icons/migration-alt.js +20 -0
  534. package/dist/icons/ui-icons/migration.js +26 -0
  535. package/dist/icons/ui-icons/module.js +24 -0
  536. package/dist/icons/ui-icons/money-paper.js +58 -0
  537. package/dist/icons/ui-icons/more-h-circle.js +40 -0
  538. package/dist/icons/ui-icons/more-h.js +33 -0
  539. package/dist/icons/ui-icons/more-v-circle.js +44 -0
  540. package/dist/icons/ui-icons/more-v.js +36 -0
  541. package/dist/icons/ui-icons/mouse-cursor.js +20 -0
  542. package/dist/icons/ui-icons/mouse-wheel.js +27 -0
  543. package/dist/icons/ui-icons/multi-item-left-inset-mobile.js +58 -0
  544. package/dist/icons/ui-icons/multi-item-left-inset.js +39 -0
  545. package/dist/icons/ui-icons/multi-item-right-inset-mobile.js +55 -0
  546. package/dist/icons/ui-icons/multi-item-right-inset.js +36 -0
  547. package/dist/icons/ui-icons/multiple.js +34 -0
  548. package/dist/icons/ui-icons/music-note.js +40 -0
  549. package/dist/icons/ui-icons/mute-centered.js +20 -0
  550. package/dist/icons/ui-icons/mute.js +20 -0
  551. package/dist/icons/ui-icons/narrow-bottom.js +49 -0
  552. package/dist/icons/ui-icons/narrow-left.js +49 -0
  553. package/dist/icons/ui-icons/narrow-right.js +49 -0
  554. package/dist/icons/ui-icons/narrow-top.js +49 -0
  555. package/dist/icons/ui-icons/navigation-buttons.js +39 -0
  556. package/dist/icons/ui-icons/new-tab.js +27 -0
  557. package/dist/icons/ui-icons/newspaper.js +45 -0
  558. package/dist/icons/ui-icons/none.js +25 -0
  559. package/dist/icons/ui-icons/notebook.js +44 -0
  560. package/dist/icons/ui-icons/num0-circle-alt.js +24 -0
  561. package/dist/icons/ui-icons/num0-circle.js +24 -0
  562. package/dist/icons/ui-icons/num0-square-alt.js +26 -0
  563. package/dist/icons/ui-icons/num0-square.js +26 -0
  564. package/dist/icons/ui-icons/num1-circle-alt.js +26 -0
  565. package/dist/icons/ui-icons/num1-circle.js +26 -0
  566. package/dist/icons/ui-icons/num1-square-alt.js +28 -0
  567. package/dist/icons/ui-icons/num1-square.js +28 -0
  568. package/dist/icons/ui-icons/num2-circle-alt.js +26 -0
  569. package/dist/icons/ui-icons/num2-circle.js +26 -0
  570. package/dist/icons/ui-icons/num2-square-alt.js +28 -0
  571. package/dist/icons/ui-icons/num2-square.js +28 -0
  572. package/dist/icons/ui-icons/num3-circle-alt.js +26 -0
  573. package/dist/icons/ui-icons/num3-circle.js +26 -0
  574. package/dist/icons/ui-icons/num3-square-alt.js +28 -0
  575. package/dist/icons/ui-icons/num3-square.js +28 -0
  576. package/dist/icons/ui-icons/num4-circle-alt.js +26 -0
  577. package/dist/icons/ui-icons/num4-circle.js +26 -0
  578. package/dist/icons/ui-icons/num4-square-alt.js +28 -0
  579. package/dist/icons/ui-icons/num4-square.js +28 -0
  580. package/dist/icons/ui-icons/num5-circle-alt.js +26 -0
  581. package/dist/icons/ui-icons/num5-circle.js +26 -0
  582. package/dist/icons/ui-icons/num5-square-alt.js +28 -0
  583. package/dist/icons/ui-icons/num5-square.js +28 -0
  584. package/dist/icons/ui-icons/num6-circle-alt.js +26 -0
  585. package/dist/icons/ui-icons/num6-circle.js +26 -0
  586. package/dist/icons/ui-icons/num6-square-alt.js +28 -0
  587. package/dist/icons/ui-icons/num6-square.js +28 -0
  588. package/dist/icons/ui-icons/num7-circle-alt.js +26 -0
  589. package/dist/icons/ui-icons/num7-circle.js +26 -0
  590. package/dist/icons/ui-icons/num7-square-alt.js +28 -0
  591. package/dist/icons/ui-icons/num7-square.js +28 -0
  592. package/dist/icons/ui-icons/num8-circle-alt.js +24 -0
  593. package/dist/icons/ui-icons/num8-circle.js +24 -0
  594. package/dist/icons/ui-icons/num8-square-alt.js +26 -0
  595. package/dist/icons/ui-icons/num8-square.js +26 -0
  596. package/dist/icons/ui-icons/num9-circle-alt.js +26 -0
  597. package/dist/icons/ui-icons/num9-circle.js +26 -0
  598. package/dist/icons/ui-icons/num9-square-alt.js +28 -0
  599. package/dist/icons/ui-icons/num9-square.js +28 -0
  600. package/dist/icons/ui-icons/office-building.js +203 -0
  601. package/dist/icons/ui-icons/office-buildings.js +256 -0
  602. package/dist/icons/ui-icons/offset-auto.js +46 -0
  603. package/dist/icons/ui-icons/offset.js +39 -0
  604. package/dist/icons/ui-icons/option-list-alt.js +61 -0
  605. package/dist/icons/ui-icons/option-list.js +63 -0
  606. package/dist/icons/ui-icons/options.js +24 -0
  607. package/dist/icons/ui-icons/order.js +49 -0
  608. package/dist/icons/ui-icons/padding-bottom.js +35 -0
  609. package/dist/icons/ui-icons/padding-top.js +35 -0
  610. package/dist/icons/ui-icons/padding.js +34 -0
  611. package/dist/icons/ui-icons/pagination.js +49 -0
  612. package/dist/icons/ui-icons/palette-color.js +111 -0
  613. package/dist/icons/ui-icons/panel-collapse.js +41 -0
  614. package/dist/icons/ui-icons/panel-expand.js +41 -0
  615. package/dist/icons/ui-icons/paragraph.js +24 -0
  616. package/dist/icons/ui-icons/paste.js +52 -0
  617. package/dist/icons/ui-icons/pause.js +20 -0
  618. package/dist/icons/ui-icons/people-group.js +57 -0
  619. package/dist/icons/ui-icons/people.js +43 -0
  620. package/dist/icons/ui-icons/person.js +26 -0
  621. package/dist/icons/ui-icons/photo-camera.js +26 -0
  622. package/dist/icons/ui-icons/picture-in-picture.js +33 -0
  623. package/dist/icons/ui-icons/play-reverse.js +20 -0
  624. package/dist/icons/ui-icons/play.js +20 -0
  625. package/dist/icons/ui-icons/playback-options.js +24 -0
  626. package/dist/icons/ui-icons/plus-circle-fill-alt.js +23 -0
  627. package/dist/icons/ui-icons/plus-circle-fill.js +17 -0
  628. package/dist/icons/ui-icons/plus-circle.js +26 -0
  629. package/dist/icons/ui-icons/plus-minus-buttons-h.js +25 -0
  630. package/dist/icons/ui-icons/plus-minus-buttons-v.js +25 -0
  631. package/dist/icons/ui-icons/plus-square-fill-transparent.js +27 -0
  632. package/dist/icons/ui-icons/plus-square-fill.js +17 -0
  633. package/dist/icons/ui-icons/plus-square.js +27 -0
  634. package/dist/icons/ui-icons/pointer-hand-disabled.js +34 -0
  635. package/dist/icons/ui-icons/pointer-hand.js +20 -0
  636. package/dist/icons/ui-icons/position-arrows-h.js +26 -0
  637. package/dist/icons/ui-icons/position-arrows-inverted-h.js +26 -0
  638. package/dist/icons/ui-icons/position-arrows-inverted-v.js +26 -0
  639. package/dist/icons/ui-icons/position-arrows-inverted.js +26 -0
  640. package/dist/icons/ui-icons/position-arrows-v.js +26 -0
  641. package/dist/icons/ui-icons/position-arrows.js +26 -0
  642. package/dist/icons/ui-icons/position-h-center.js +43 -0
  643. package/dist/icons/ui-icons/position-h-end.js +43 -0
  644. package/dist/icons/ui-icons/position-h-start.js +43 -0
  645. package/dist/icons/ui-icons/position-left.js +31 -0
  646. package/dist/icons/ui-icons/position-right.js +31 -0
  647. package/dist/icons/ui-icons/position-v-center.js +43 -0
  648. package/dist/icons/ui-icons/position-v-end.js +43 -0
  649. package/dist/icons/ui-icons/position-v-start.js +43 -0
  650. package/dist/icons/ui-icons/position2x2-bottom-left.js +52 -0
  651. package/dist/icons/ui-icons/position2x2-bottom-right.js +52 -0
  652. package/dist/icons/ui-icons/position2x2-empty.js +51 -0
  653. package/dist/icons/ui-icons/position2x2-top-left.js +52 -0
  654. package/dist/icons/ui-icons/position2x2-top-right.js +52 -0
  655. package/dist/icons/ui-icons/position3x3-bottom-center.js +97 -0
  656. package/dist/icons/ui-icons/position3x3-bottom-left.js +97 -0
  657. package/dist/icons/ui-icons/position3x3-bottom-right.js +97 -0
  658. package/dist/icons/ui-icons/position3x3-center-center.js +97 -0
  659. package/dist/icons/ui-icons/position3x3-center-left.js +97 -0
  660. package/dist/icons/ui-icons/position3x3-center-right.js +97 -0
  661. package/dist/icons/ui-icons/position3x3-empty.js +96 -0
  662. package/dist/icons/ui-icons/position3x3-top-center.js +97 -0
  663. package/dist/icons/ui-icons/position3x3-top-left.js +97 -0
  664. package/dist/icons/ui-icons/position3x3-top-right.js +97 -0
  665. package/dist/icons/ui-icons/positioning-guide-alt.js +30 -0
  666. package/dist/icons/ui-icons/positioning-guide.js +30 -0
  667. package/dist/icons/ui-icons/positioning-width-guide.js +40 -0
  668. package/dist/icons/ui-icons/preload.js +44 -0
  669. package/dist/icons/ui-icons/preview-responsive.js +48 -0
  670. package/dist/icons/ui-icons/preview.js +35 -0
  671. package/dist/icons/ui-icons/progressbar-intermittent.js +26 -0
  672. package/dist/icons/ui-icons/progressbar.js +30 -0
  673. package/dist/icons/ui-icons/range-max.js +48 -0
  674. package/dist/icons/ui-icons/range-mid.js +40 -0
  675. package/dist/icons/ui-icons/range-min.js +48 -0
  676. package/dist/icons/ui-icons/range.js +61 -0
  677. package/dist/icons/ui-icons/read-only.js +25 -0
  678. package/dist/icons/ui-icons/reduce-height-bottom.js +49 -0
  679. package/dist/icons/ui-icons/reduce-height-top.js +49 -0
  680. package/dist/icons/ui-icons/regex.js +39 -0
  681. package/dist/icons/ui-icons/remove.js +20 -0
  682. package/dist/icons/ui-icons/rename.js +24 -0
  683. package/dist/icons/ui-icons/reorder-grabber-h.js +51 -0
  684. package/dist/icons/ui-icons/reorder-grabber-v.js +57 -0
  685. package/dist/icons/ui-icons/reorder.js +35 -0
  686. package/dist/icons/ui-icons/required-alt.js +20 -0
  687. package/dist/icons/ui-icons/required.js +19 -0
  688. package/dist/icons/ui-icons/reset-to-zero.js +33 -0
  689. package/dist/icons/ui-icons/reset.js +25 -0
  690. package/dist/icons/ui-icons/responsive-overrides-alt-fill.js +26 -0
  691. package/dist/icons/ui-icons/responsive-overrides-alt.js +49 -0
  692. package/dist/icons/ui-icons/responsive-overrides-alt2-fill.js +34 -0
  693. package/dist/icons/ui-icons/responsive-overrides-alt2.js +45 -0
  694. package/dist/icons/ui-icons/responsive-overrides-alt3-fill.js +33 -0
  695. package/dist/icons/ui-icons/responsive-overrides.js +39 -0
  696. package/dist/icons/ui-icons/responsive.js +33 -0
  697. package/dist/icons/ui-icons/right-panel-alt.js +23 -0
  698. package/dist/icons/ui-icons/right-panel.js +22 -0
  699. package/dist/icons/ui-icons/rotate-left.js +20 -0
  700. package/dist/icons/ui-icons/rotate-right.js +20 -0
  701. package/dist/icons/ui-icons/rounded-corners.js +19 -0
  702. package/dist/icons/ui-icons/route.js +27 -0
  703. package/dist/icons/ui-icons/row-add.js +45 -0
  704. package/dist/icons/ui-icons/row-empty.js +51 -0
  705. package/dist/icons/ui-icons/row.js +45 -0
  706. package/dist/icons/ui-icons/rows.js +42 -0
  707. package/dist/icons/ui-icons/ruler.js +28 -0
  708. package/dist/icons/ui-icons/save.js +26 -0
  709. package/dist/icons/ui-icons/screen-desktop.js +32 -0
  710. package/dist/icons/ui-icons/screen-large.js +23 -0
  711. package/dist/icons/ui-icons/screen-mobile.js +39 -0
  712. package/dist/icons/ui-icons/screen-tablet-large.js +36 -0
  713. package/dist/icons/ui-icons/screen-tablet.js +36 -0
  714. package/dist/icons/ui-icons/scrollbar-h.js +40 -0
  715. package/dist/icons/ui-icons/scrollbar-v.js +41 -0
  716. package/dist/icons/ui-icons/scrollbars.js +55 -0
  717. package/dist/icons/ui-icons/search-empty.js +37 -0
  718. package/dist/icons/ui-icons/search.js +25 -0
  719. package/dist/icons/ui-icons/separator-h.js +41 -0
  720. package/dist/icons/ui-icons/separator-v.js +39 -0
  721. package/dist/icons/ui-icons/shadow.js +61 -0
  722. package/dist/icons/ui-icons/share.js +26 -0
  723. package/dist/icons/ui-icons/shield-plus-alt.js +27 -0
  724. package/dist/icons/ui-icons/shield-plus.js +20 -0
  725. package/dist/icons/ui-icons/shield.js +20 -0
  726. package/dist/icons/ui-icons/shrink-diagonal-left-xl.js +20 -0
  727. package/dist/icons/ui-icons/shrink-diagonal-left.js +20 -0
  728. package/dist/icons/ui-icons/shrink-diagonal-right-xl.js +20 -0
  729. package/dist/icons/ui-icons/shrink-diagonal-right.js +20 -0
  730. package/dist/icons/ui-icons/shrink-xl.js +20 -0
  731. package/dist/icons/ui-icons/shrink.js +20 -0
  732. package/dist/icons/ui-icons/shuffle.js +20 -0
  733. package/dist/icons/ui-icons/sidebar-flip.js +22 -0
  734. package/dist/icons/ui-icons/sidebar.js +22 -0
  735. package/dist/icons/ui-icons/single-item-left-inset-mobile.js +48 -0
  736. package/dist/icons/ui-icons/single-item-left-inset.js +23 -0
  737. package/dist/icons/ui-icons/single-item-right-inset-mobile.js +50 -0
  738. package/dist/icons/ui-icons/single-item-right-inset.js +23 -0
  739. package/dist/icons/ui-icons/size-alt.js +33 -0
  740. package/dist/icons/ui-icons/size.js +29 -0
  741. package/dist/icons/ui-icons/slider.js +31 -0
  742. package/dist/icons/ui-icons/sliders.js +68 -0
  743. package/dist/icons/ui-icons/small.js +24 -0
  744. package/dist/icons/ui-icons/solid-circle-fill-transparent.js +22 -0
  745. package/dist/icons/ui-icons/solid-circle-filled.js +21 -0
  746. package/dist/icons/ui-icons/solid-circle-gradient.js +31 -0
  747. package/dist/icons/ui-icons/solid-circle.js +21 -0
  748. package/dist/icons/ui-icons/solid-color.js +19 -0
  749. package/dist/icons/ui-icons/solid-rect-fill-transparent.js +24 -0
  750. package/dist/icons/ui-icons/solid-rect-filled.js +23 -0
  751. package/dist/icons/ui-icons/solid-rect-gradient.js +33 -0
  752. package/dist/icons/ui-icons/solid-rect.js +23 -0
  753. package/dist/icons/ui-icons/sort-asc.js +20 -0
  754. package/dist/icons/ui-icons/sort-desc.js +20 -0
  755. package/dist/icons/ui-icons/sort-generic.js +25 -0
  756. package/dist/icons/ui-icons/spacing-bottom-in.js +23 -0
  757. package/dist/icons/ui-icons/spacing-bottom.js +23 -0
  758. package/dist/icons/ui-icons/spacing-left-in.js +23 -0
  759. package/dist/icons/ui-icons/spacing-left.js +23 -0
  760. package/dist/icons/ui-icons/spacing-right-in.js +23 -0
  761. package/dist/icons/ui-icons/spacing-right.js +23 -0
  762. package/dist/icons/ui-icons/spacing-top-in.js +23 -0
  763. package/dist/icons/ui-icons/spacing-top.js +23 -0
  764. package/dist/icons/ui-icons/speed.js +25 -0
  765. package/dist/icons/ui-icons/stagger.js +53 -0
  766. package/dist/icons/ui-icons/star.js +18 -0
  767. package/dist/icons/ui-icons/step.js +27 -0
  768. package/dist/icons/ui-icons/stop.js +20 -0
  769. package/dist/icons/ui-icons/swap.js +41 -0
  770. package/dist/icons/ui-icons/tag-alt.js +24 -0
  771. package/dist/icons/ui-icons/tag.js +26 -0
  772. package/dist/icons/ui-icons/text-abc.js +40 -0
  773. package/dist/icons/ui-icons/text-above.js +25 -0
  774. package/dist/icons/ui-icons/text-align-center.js +20 -0
  775. package/dist/icons/ui-icons/text-align-generic.js +20 -0
  776. package/dist/icons/ui-icons/text-align-justify.js +20 -0
  777. package/dist/icons/ui-icons/text-align-left.js +20 -0
  778. package/dist/icons/ui-icons/text-align-right.js +20 -0
  779. package/dist/icons/ui-icons/text-below.js +25 -0
  780. package/dist/icons/ui-icons/text-box-edit.js +35 -0
  781. package/dist/icons/ui-icons/text-color-swatch.js +40 -0
  782. package/dist/icons/ui-icons/text-highlight-color-swatch-alt.js +49 -0
  783. package/dist/icons/ui-icons/text-highlight-color-swatch.js +48 -0
  784. package/dist/icons/ui-icons/text-larger.js +23 -0
  785. package/dist/icons/ui-icons/text-length.js +20 -0
  786. package/dist/icons/ui-icons/text-size-alt.js +23 -0
  787. package/dist/icons/ui-icons/text-size.js +20 -0
  788. package/dist/icons/ui-icons/text-smaller.js +23 -0
  789. package/dist/icons/ui-icons/text-strikethrough.js +26 -0
  790. package/dist/icons/ui-icons/text-uppercase.js +25 -0
  791. package/dist/icons/ui-icons/text-write.js +39 -0
  792. package/dist/icons/ui-icons/thumbs-down.js +22 -0
  793. package/dist/icons/ui-icons/thumbs-up.js +22 -0
  794. package/dist/icons/ui-icons/title-generic.js +25 -0
  795. package/dist/icons/ui-icons/toggle-off.js +33 -0
  796. package/dist/icons/ui-icons/toggle-on-alt.js +19 -0
  797. package/dist/icons/ui-icons/toggle-on.js +31 -0
  798. package/dist/icons/ui-icons/tools.js +25 -0
  799. package/dist/icons/ui-icons/total-items.js +45 -0
  800. package/dist/icons/ui-icons/trash-alt.js +44 -0
  801. package/dist/icons/ui-icons/trash.js +33 -0
  802. package/dist/icons/ui-icons/tree-alt.js +62 -0
  803. package/dist/icons/ui-icons/tree-alt2.js +79 -0
  804. package/dist/icons/ui-icons/tree.js +70 -0
  805. package/dist/icons/ui-icons/troubleshoot-alt.js +39 -0
  806. package/dist/icons/ui-icons/two-cards-left.js +32 -0
  807. package/dist/icons/ui-icons/two-cards-right.js +32 -0
  808. package/dist/icons/ui-icons/two-columns.js +30 -0
  809. package/dist/icons/ui-icons/typography-options.js +77 -0
  810. package/dist/icons/ui-icons/typography.js +71 -0
  811. package/dist/icons/ui-icons/underline.js +19 -0
  812. package/dist/icons/ui-icons/ungroup.js +39 -0
  813. package/dist/icons/ui-icons/upload.js +20 -0
  814. package/dist/icons/ui-icons/venn-diagram-alt.js +34 -0
  815. package/dist/icons/ui-icons/venn-diagram-alt2.js +34 -0
  816. package/dist/icons/ui-icons/venn-diagram-alt3.js +34 -0
  817. package/dist/icons/ui-icons/venn-diagram-alt4.js +34 -0
  818. package/dist/icons/ui-icons/venn-diagram-alt5.js +34 -0
  819. package/dist/icons/ui-icons/venn-diagram-alt6.js +34 -0
  820. package/dist/icons/ui-icons/venn-diagram-alt7.js +39 -0
  821. package/dist/icons/ui-icons/venn-diagram.js +26 -0
  822. package/dist/icons/ui-icons/vertical-align-alt.js +27 -0
  823. package/dist/icons/ui-icons/vertical-align-around.js +39 -0
  824. package/dist/icons/ui-icons/vertical-align-between-alt.js +39 -0
  825. package/dist/icons/ui-icons/vertical-align-between.js +48 -0
  826. package/dist/icons/ui-icons/vertical-align-bottom.js +44 -0
  827. package/dist/icons/ui-icons/vertical-align-center.js +39 -0
  828. package/dist/icons/ui-icons/vertical-align-evenly.js +39 -0
  829. package/dist/icons/ui-icons/vertical-align-stretch.js +39 -0
  830. package/dist/icons/ui-icons/vertical-align-top.js +46 -0
  831. package/dist/icons/ui-icons/vertical-align.js +35 -0
  832. package/dist/icons/ui-icons/vertical-spacing.js +28 -0
  833. package/dist/icons/ui-icons/video-chapters.js +25 -0
  834. package/dist/icons/ui-icons/video-controls.js +67 -0
  835. package/dist/icons/ui-icons/video-file.js +40 -0
  836. package/dist/icons/ui-icons/video-poster-image.js +40 -0
  837. package/dist/icons/ui-icons/video-subtitle-alt.js +39 -0
  838. package/dist/icons/ui-icons/video-subtitle.js +27 -0
  839. package/dist/icons/ui-icons/video.js +36 -0
  840. package/dist/icons/ui-icons/visibility-alt.js +40 -0
  841. package/dist/icons/ui-icons/visibility-alt2.js +41 -0
  842. package/dist/icons/ui-icons/visibility.js +45 -0
  843. package/dist/icons/ui-icons/visible.js +28 -0
  844. package/dist/icons/ui-icons/volume.js +25 -0
  845. package/dist/icons/ui-icons/warning-circle-fill-transparent.js +30 -0
  846. package/dist/icons/ui-icons/warning-circle-fill.js +17 -0
  847. package/dist/icons/ui-icons/warning-circle.js +33 -0
  848. package/dist/icons/ui-icons/warning-fill-transparent.js +30 -0
  849. package/dist/icons/ui-icons/warning-fill.js +17 -0
  850. package/dist/icons/ui-icons/warning.js +30 -0
  851. package/dist/icons/ui-icons/web-video.js +63 -0
  852. package/dist/icons/ui-icons/wide-bottom.js +49 -0
  853. package/dist/icons/ui-icons/wide-left.js +49 -0
  854. package/dist/icons/ui-icons/wide-right.js +49 -0
  855. package/dist/icons/ui-icons/wide-top.js +49 -0
  856. package/dist/icons/ui-icons/width.js +29 -0
  857. package/dist/icons/ui-icons/wordpress.js +17 -0
  858. package/dist/icons/ui-icons/wrapper-alt.js +71 -0
  859. package/dist/icons/ui-icons/wrapper-config.js +41 -0
  860. package/dist/icons/ui-icons/wrapper-off-alt.js +19 -0
  861. package/dist/icons/ui-icons/wrapper-overflow.js +31 -0
  862. package/dist/icons/ui-icons/wrapper-simple-alt.js +58 -0
  863. package/dist/icons/ui-icons/wrapper-simple.js +32 -0
  864. package/dist/icons/ui-icons/wrapper.js +42 -0
  865. package/dist/icons/ui-icons/wrench.js +19 -0
  866. package/dist/icons/ui-icons/zap-fill.js +20 -0
  867. package/dist/icons/ui-icons/zap.js +19 -0
  868. package/dist/index.js +32 -108
  869. package/dist/input-field-UCZL5bqv.js +290 -0
  870. package/dist/jsx-svg-OBADs_Qs.js +11123 -0
  871. package/dist/link-input-D7iDRpOM.js +1821 -0
  872. package/dist/modal-DbVLYMkH.js +318 -0
  873. package/dist/number-ZZIxJukn.js +40 -0
  874. package/dist/number-picker-CkA1iJNZ.js +268 -0
  875. package/dist/proxy-BG7-_Ou3.js +9638 -0
  876. package/dist/shared-DFDimxvX.js +1038 -0
  877. package/dist/smart-image-CbSsEASF.js +284 -0
  878. package/dist/solid-color-picker-DbT-aoVx.js +1415 -0
  879. package/dist/style-admin.js +1 -1
  880. package/dist/style-editor.js +1 -1
  881. package/dist/style.js +1 -1
  882. package/dist/switch-L8dFSQWQ.js +274 -0
  883. package/dist/tabs-BrdyBER5.js +975 -0
  884. package/dist/textSelection-Dv6WPj0Z.js +45 -0
  885. package/dist/toggle-button-DJ8jNQ-9.js +424 -0
  886. package/dist/tooltip-BzJzYlcc.js +440 -0
  887. package/dist/useAsyncList-BNzwKoX4.js +412 -0
  888. package/dist/useButton-ra1ZSZ4z.js +57 -0
  889. package/dist/useEvent-DkZVfgsS.js +22 -0
  890. package/dist/useField-D0WrzR2F.js +32 -0
  891. package/dist/useFilter-OiMnf6sb.js +44 -0
  892. package/dist/useFocusRing-DuYL4cdO.js +98 -0
  893. package/dist/useFormReset-DdkykzAn.js +18 -0
  894. package/dist/useHover-qaMm3XFO.js +982 -0
  895. package/dist/useLabel-2EohW5l6.js +27 -0
  896. package/dist/useLabels-B2p7RXi5.js +16 -0
  897. package/dist/useListState-CD_5vfyy.js +147 -0
  898. package/dist/useLocalizedStringFormatter-Dv2diN3k.js +108 -0
  899. package/dist/useNumberField-2xbi3jRV.js +1318 -0
  900. package/dist/useNumberFormatter-C2Cm2mNj.js +10 -0
  901. package/dist/usePress-ZP1TjkFf.js +678 -0
  902. package/dist/useToggle-ecIirvIM.js +64 -0
  903. package/dist/useToggleState-IIDbiKPl.js +23 -0
  904. package/dist/utilities/array-helpers.js +38 -49
  905. package/dist/utilities/debounce-throttle.js +2 -123
  906. package/dist/utilities/es-dash.js +2 -400
  907. package/dist/utilities/general.js +2 -10
  908. package/dist/utilities/hash.js +31 -35
  909. package/dist/utilities/index.js +6 -41
  910. package/dist/utilities/text-helpers.js +96 -129
  911. package/dist/utilities/web-workers.js +61 -44
  912. package/dist/utilities-CPFDXC3B.js +7 -0
  913. package/dist/utils-B_uiqNa4.js +372 -0
  914. package/dist/workers/image-analysis.worker.js +56 -48
  915. package/package.json +30 -18
  916. package/dist/Button-DtRmB6b8.js +0 -243
  917. package/dist/Dialog-DTIxSDhz.js +0 -2790
  918. package/dist/FieldError-BPG0hKfB.js +0 -42
  919. package/dist/FocusScope-CjFQ7cbd.js +0 -832
  920. package/dist/Form-Cq3fu75_.js +0 -5
  921. package/dist/Heading-CY-_gt-U.js +0 -16
  922. package/dist/Hidden-DOH36apC.js +0 -58
  923. package/dist/Input-BG9DaxYN.js +0 -169
  924. package/dist/Label-_aSf9-8u.js +0 -18
  925. package/dist/List-CQFXnN4w.js +0 -590
  926. package/dist/ListBox-DXFyyj_r.js +0 -695
  927. package/dist/NumberFormatter-DA8u1Ot7.js +0 -140
  928. package/dist/OverlayArrow-Fuxj-1QM.js +0 -614
  929. package/dist/PortalProvider-BQ1X8vGX.js +0 -19
  930. package/dist/RSPContexts-CJ-HBf0L.js +0 -18
  931. package/dist/RadioGroup-DCeiLxLK.js +0 -371
  932. package/dist/SearchField-B_yKFXRk.js +0 -817
  933. package/dist/SelectionIndicator-D7WMzeAW.js +0 -7
  934. package/dist/SelectionManager-B02LcxLr.js +0 -2505
  935. package/dist/SharedElementTransition-CtoWSaF0.js +0 -12
  936. package/dist/Slider-bR3fAmim.js +0 -897
  937. package/dist/Text-CjFEHSfr.js +0 -17
  938. package/dist/VisuallyHidden-DZnWrkn8.js +0 -48
  939. package/dist/animation-Dfl8uEb3.js +0 -67
  940. package/dist/clsx-DgYk2OaC.js +0 -16
  941. package/dist/color-swatch-bUFkK7ox.js +0 -2570
  942. package/dist/components/smart-image/image-analysis-worker-next.js +0 -144
  943. package/dist/components/smart-image/smart-image-next.js +0 -294
  944. package/dist/context-iUFQCK8m.js +0 -95
  945. package/dist/default-i18n-CnQeC5Pl.js +0 -731
  946. package/dist/filterDOMProps-eGTqWSTd.js +0 -71
  947. package/dist/general-BfKmjm56.js +0 -4378
  948. package/dist/index-BHpUy2Ix.js +0 -44
  949. package/dist/index-BL5gdWX4.js +0 -28323
  950. package/dist/number-7sOvrqo0.js +0 -41
  951. package/dist/proxy-CNEXmkdK.js +0 -7948
  952. package/dist/react-jsx-parser.min-DAh4myol.js +0 -11736
  953. package/dist/shared-CNH8QfV9.js +0 -1111
  954. package/dist/sprintf-DmNrJSYG.js +0 -51
  955. package/dist/textSelection-DA3VcKpG.js +0 -46
  956. package/dist/useAsyncList-DsZvQXls.js +0 -453
  957. package/dist/useButton-DyMX0EVr.js +0 -59
  958. package/dist/useEvent-Bfy68GHZ.js +0 -22
  959. package/dist/useFilter-Bg5C34XC.js +0 -50
  960. package/dist/useFocusRing-B2glEZ25.js +0 -114
  961. package/dist/useFormReset-BoxsKyJ9.js +0 -20
  962. package/dist/useFormValidation-BrbMhS2N.js +0 -232
  963. package/dist/useHover-DkmPQdGE.js +0 -1047
  964. package/dist/useLabel-DzXzKZZZ.js +0 -27
  965. package/dist/useLabels-D8O3gOdV.js +0 -23
  966. package/dist/useListState-BjnzKozj.js +0 -171
  967. package/dist/useLocalizedStringFormatter-CEDs0LsA.js +0 -121
  968. package/dist/useNumberField-CsygZKz9.js +0 -1330
  969. package/dist/useNumberFormatter-CG_IQXp9.js +0 -13
  970. package/dist/usePress-Ck5xMtDr.js +0 -701
  971. package/dist/useToggle-Ddc7N8pR.js +0 -72
  972. package/dist/useToggleState-H_lORSWO.js +0 -23
  973. package/dist/utils-Cr3pLd9c.js +0 -420
@@ -0,0 +1,2572 @@
1
+ import { t as clsx } from "./clsx-BUU5J41u.js";
2
+ import { m as $bdb11010cef70236$export$f680877a34711e37, n as $64fa3d84918910a7$export$29f1550f4b0d4415, o as $64fa3d84918910a7$export$df3a06d6289f983e, r as $64fa3d84918910a7$export$4d86445c2cf5e3, u as $3ef42575df84b30b$export$9d1611c77c2fe928 } from "./utils-B_uiqNa4.js";
3
+ import { t as $65484d02dcb7eb3e$export$457c3d6518dd4c6f } from "./filterDOMProps-_2_3GD-K.js";
4
+ import { n as $9446cca9a3875146$export$b6268554fba451f, t as $9446cca9a3875146$export$7d15b64cf5a3a4c4 } from "./number-ZZIxJukn.js";
5
+ import { t as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7 } from "./context-C-XNeJ_l.js";
6
+ import { n as $6db58dc88e78b024$export$2f817fcdc4b89ae0, r as $5b160d28a433310d$export$c17fa47878dc55b6, t as $fca6afa0e843324b$export$f12b703ca79dfbb1 } from "./useLocalizedStringFormatter-Dv2diN3k.js";
7
+ import { t as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5 } from "./NumberFormatter-m5VW6MTK.js";
8
+ import { t as __ } from "./build-module-sxK3nxOK.js";
9
+ import React, { createContext, forwardRef, useMemo } from "react";
10
+ import { jsx } from "react/jsx-runtime";
11
+ //#region node_modules/@react-aria/color/dist/ar-AE.mjs
12
+ var $eccab2b0118aef08$exports = {};
13
+ $eccab2b0118aef08$exports = {
14
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
15
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
16
+ "colorPicker": `\u{623}\u{62F}\u{627}\u{629} \u{627}\u{646}\u{62A}\u{642}\u{627}\u{621} \u{627}\u{644}\u{644}\u{648}\u{646}`,
17
+ "colorSwatch": `\u{62A}\u{63A}\u{64A}\u{64A}\u{631} \u{627}\u{644}\u{623}\u{644}\u{648}\u{627}\u{646}`,
18
+ "transparent": `\u{634}\u{641}\u{627}\u{641}`,
19
+ "twoDimensionalSlider": `\u{645}\u{64F}\u{646}\u{632}\u{644}\u{642} 2D`
20
+ };
21
+ //#endregion
22
+ //#region node_modules/@react-aria/color/dist/bg-BG.mjs
23
+ var $bf2b4507594e3d45$exports = {};
24
+ $bf2b4507594e3d45$exports = {
25
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
26
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
27
+ "colorPicker": `\u{421}\u{440}\u{435}\u{434}\u{441}\u{442}\u{432}\u{43E} \u{437}\u{430} \u{438}\u{437}\u{431}\u{438}\u{440}\u{430}\u{43D}\u{435} \u{43D}\u{430} \u{446}\u{432}\u{44F}\u{442}`,
28
+ "colorSwatch": `\u{446}\u{432}\u{435}\u{442}\u{43D}\u{430} \u{43C}\u{43E}\u{441}\u{442}\u{440}\u{430}`,
29
+ "transparent": `\u{43F}\u{440}\u{43E}\u{437}\u{440}\u{430}\u{447}\u{435}\u{43D}`,
30
+ "twoDimensionalSlider": `2D \u{43F}\u{43B}\u{44A}\u{437}\u{433}\u{430}\u{447}`
31
+ };
32
+ //#endregion
33
+ //#region node_modules/@react-aria/color/dist/cs-CZ.mjs
34
+ var $01c08487af7ecd14$exports = {};
35
+ $01c08487af7ecd14$exports = {
36
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
37
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
38
+ "colorPicker": `V\xfdb\u{11B}r barvy`,
39
+ "colorSwatch": `barevn\xfd vzorek`,
40
+ "transparent": `pr\u{16F}hledn\xfd`,
41
+ "twoDimensionalSlider": `2D posuvn\xedk`
42
+ };
43
+ //#endregion
44
+ //#region node_modules/@react-aria/color/dist/da-DK.mjs
45
+ var $5e997db6ea0d10f6$exports = {};
46
+ $5e997db6ea0d10f6$exports = {
47
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
48
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
49
+ "colorPicker": `Farvev\xe6lger`,
50
+ "colorSwatch": `farvepr\xf8ve`,
51
+ "transparent": `gennemsigtig`,
52
+ "twoDimensionalSlider": `2D-skyder`
53
+ };
54
+ //#endregion
55
+ //#region node_modules/@react-aria/color/dist/de-DE.mjs
56
+ var $fe5998f640a79fd2$exports = {};
57
+ $fe5998f640a79fd2$exports = {
58
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
59
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
60
+ "colorPicker": `Farbw\xe4hler`,
61
+ "colorSwatch": `Farbfeld`,
62
+ "transparent": `transparent`,
63
+ "twoDimensionalSlider": `2D-Schieberegler`
64
+ };
65
+ //#endregion
66
+ //#region node_modules/@react-aria/color/dist/el-GR.mjs
67
+ var $18e4d1d5b500a9ee$exports = {};
68
+ $18e4d1d5b500a9ee$exports = {
69
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
70
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
71
+ "colorPicker": `\u{395}\u{3C0}\u{3B9}\u{3BB}\u{3BF}\u{3B3}\u{3AD}\u{3B1}\u{3C2} \u{3C7}\u{3C1}\u{3C9}\u{3BC}\u{3AC}\u{3C4}\u{3C9}\u{3BD}`,
72
+ "colorSwatch": `\u{3C7}\u{3C1}\u{3C9}\u{3BC}\u{3B1}\u{3C4}\u{3B9}\u{3BA}\u{3CC} \u{3B4}\u{3B5}\u{3AF}\u{3B3}\u{3BC}\u{3B1}`,
73
+ "transparent": `\u{3B4}\u{3B9}\u{3B1}\u{3C6}\u{3B1}\u{3BD}\u{3AD}\u{3C2}`,
74
+ "twoDimensionalSlider": `\u{3A1}\u{3C5}\u{3B8}\u{3BC}\u{3B9}\u{3C3}\u{3C4}\u{3B9}\u{3BA}\u{3CC} 2D`
75
+ };
76
+ //#endregion
77
+ //#region node_modules/@react-aria/color/dist/en-US.mjs
78
+ var $bf90a11a7a42a0f7$exports = {};
79
+ $bf90a11a7a42a0f7$exports = {
80
+ "colorPicker": `Color picker`,
81
+ "twoDimensionalSlider": `2D slider`,
82
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
83
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
84
+ "colorSwatch": `color swatch`,
85
+ "transparent": `transparent`
86
+ };
87
+ //#endregion
88
+ //#region node_modules/@react-aria/color/dist/es-ES.mjs
89
+ var $dd0d25f885b5c5f3$exports = {};
90
+ $dd0d25f885b5c5f3$exports = {
91
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
92
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
93
+ "colorPicker": `Selector de color`,
94
+ "colorSwatch": `muestra de color`,
95
+ "transparent": `transparente`,
96
+ "twoDimensionalSlider": `Regulador 2D`
97
+ };
98
+ //#endregion
99
+ //#region node_modules/@react-aria/color/dist/et-EE.mjs
100
+ var $d950967017e3485b$exports = {};
101
+ $d950967017e3485b$exports = {
102
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
103
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
104
+ "colorPicker": `V\xe4rvivalija`,
105
+ "colorSwatch": `v\xe4rvin\xe4idis`,
106
+ "transparent": `l\xe4bipaistev`,
107
+ "twoDimensionalSlider": `2D-liugur`
108
+ };
109
+ //#endregion
110
+ //#region node_modules/@react-aria/color/dist/fi-FI.mjs
111
+ var $00a415a3f0ab315a$exports = {};
112
+ $00a415a3f0ab315a$exports = {
113
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
114
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
115
+ "colorPicker": `V\xe4rimuokkain`,
116
+ "colorSwatch": `v\xe4rimalli`,
117
+ "transparent": `l\xe4pin\xe4kyv\xe4`,
118
+ "twoDimensionalSlider": `2D-liukus\xe4\xe4din`
119
+ };
120
+ //#endregion
121
+ //#region node_modules/@react-aria/color/dist/fr-FR.mjs
122
+ var $d80f30fe86c95741$exports = {};
123
+ $d80f30fe86c95741$exports = {
124
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
125
+ "colorNameAndValue": (args) => `${args.name}\xa0: ${args.value}`,
126
+ "colorPicker": `S\xe9lecteur de couleurs`,
127
+ "colorSwatch": `\xc9chantillon de couleurs`,
128
+ "transparent": `Transparent`,
129
+ "twoDimensionalSlider": `Curseur\xa02D`
130
+ };
131
+ //#endregion
132
+ //#region node_modules/@react-aria/color/dist/he-IL.mjs
133
+ var $6912afb584340a2e$exports = {};
134
+ $6912afb584340a2e$exports = {
135
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
136
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
137
+ "colorPicker": `\u{5D1}\u{5D5}\u{5D7}\u{5E8} \u{5D4}\u{5E6}\u{5D1}\u{5E2}\u{5D9}\u{5DD}`,
138
+ "colorSwatch": `\u{5D3}\u{5D5}\u{5D2}\u{5DE}\u{5D9}\u{5EA} \u{5E6}\u{5D1}\u{5E2}`,
139
+ "transparent": `\u{5E9}\u{5E7}\u{5D5}\u{5E3}`,
140
+ "twoDimensionalSlider": `\u{5DE}\u{5D7}\u{5D5}\u{5D5}\u{5DF} \u{5D3}\u{5D5} \u{5DE}\u{5D9}\u{5DE}\u{5D3}\u{5D9}`
141
+ };
142
+ //#endregion
143
+ //#region node_modules/@react-aria/color/dist/hr-HR.mjs
144
+ var $7b97fcacd84ec90f$exports = {};
145
+ $7b97fcacd84ec90f$exports = {
146
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
147
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
148
+ "colorPicker": `Odabir boje`,
149
+ "colorSwatch": `uzorak boje`,
150
+ "transparent": `transparentno`,
151
+ "twoDimensionalSlider": `2D kliza\u{10D}`
152
+ };
153
+ //#endregion
154
+ //#region node_modules/@react-aria/color/dist/hu-HU.mjs
155
+ var $da9b443e89eebc6b$exports = {};
156
+ $da9b443e89eebc6b$exports = {
157
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
158
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
159
+ "colorPicker": `Sz\xednv\xe1laszt\xf3`,
160
+ "colorSwatch": `sz\xednt\xe1r`,
161
+ "transparent": `\xe1tl\xe1tsz\xf3`,
162
+ "twoDimensionalSlider": `2D-cs\xfaszka`
163
+ };
164
+ //#endregion
165
+ //#region node_modules/@react-aria/color/dist/it-IT.mjs
166
+ var $35f135b45eb4d95b$exports = {};
167
+ $35f135b45eb4d95b$exports = {
168
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
169
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
170
+ "colorPicker": `Selettore colore`,
171
+ "colorSwatch": `campione di colore`,
172
+ "transparent": `trasparente`,
173
+ "twoDimensionalSlider": `Cursore 2D`
174
+ };
175
+ //#endregion
176
+ //#region node_modules/@react-aria/color/dist/ja-JP.mjs
177
+ var $760b09448e39c6cd$exports = {};
178
+ $760b09448e39c6cd$exports = {
179
+ "colorInputLabel": (args) => `${args.label}\u{3001}${args.channelLabel}`,
180
+ "colorNameAndValue": (args) => `${args.name} : ${args.value}`,
181
+ "colorPicker": `\u{30AB}\u{30E9}\u{30FC}\u{30D4}\u{30C3}\u{30AB}\u{30FC}`,
182
+ "colorSwatch": `\u{30AB}\u{30E9}\u{30FC}\u{30B9}\u{30A6}\u{30A9}\u{30C3}\u{30C1}`,
183
+ "transparent": `\u{900F}\u{660E}`,
184
+ "twoDimensionalSlider": `2D \u{30B9}\u{30E9}\u{30A4}\u{30C0}\u{30FC}`
185
+ };
186
+ //#endregion
187
+ //#region node_modules/@react-aria/color/dist/ko-KR.mjs
188
+ var $fc7b7d43be9703ec$exports = {};
189
+ $fc7b7d43be9703ec$exports = {
190
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
191
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
192
+ "colorPicker": `\u{C0C9}\u{C0C1} \u{D53C}\u{CEE4}`,
193
+ "colorSwatch": `\u{C0C9}\u{C0C1} \u{ACAC}\u{BCF8}`,
194
+ "transparent": `\u{D22C}\u{BA85}\u{B3C4}`,
195
+ "twoDimensionalSlider": `2D \u{C2AC}\u{B77C}\u{C774}\u{B354}`
196
+ };
197
+ //#endregion
198
+ //#region node_modules/@react-aria/color/dist/lt-LT.mjs
199
+ var $74918a1664156912$exports = {};
200
+ $74918a1664156912$exports = {
201
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
202
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
203
+ "colorPicker": `Spalv\u{173} parinkiklis`,
204
+ "colorSwatch": `spalv\u{173} pavyzdys`,
205
+ "transparent": `skaidrus`,
206
+ "twoDimensionalSlider": `2D slankiklis`
207
+ };
208
+ //#endregion
209
+ //#region node_modules/@react-aria/color/dist/lv-LV.mjs
210
+ var $4e6cde11c2bc9840$exports = {};
211
+ $4e6cde11c2bc9840$exports = {
212
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
213
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
214
+ "colorPicker": `Kr\u{101}su atlas\u{12B}t\u{101}js`,
215
+ "colorSwatch": `kr\u{101}su paraugs`,
216
+ "transparent": `caursp\u{12B}d\u{12B}gs`,
217
+ "twoDimensionalSlider": `2D sl\u{12B}dnis`
218
+ };
219
+ //#endregion
220
+ //#region node_modules/@react-aria/color/dist/nb-NO.mjs
221
+ var $6faa3defebc3eb72$exports = {};
222
+ $6faa3defebc3eb72$exports = {
223
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
224
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
225
+ "colorPicker": `Fargevelger`,
226
+ "colorSwatch": `fargekart`,
227
+ "transparent": `gjennomsiktig`,
228
+ "twoDimensionalSlider": `2D-glidebryter`
229
+ };
230
+ //#endregion
231
+ //#region node_modules/@react-aria/color/dist/nl-NL.mjs
232
+ var $6ac9b6b1b7e3ca12$exports = {};
233
+ $6ac9b6b1b7e3ca12$exports = {
234
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
235
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
236
+ "colorPicker": `Kleurkiezer`,
237
+ "colorSwatch": `kleurstaal`,
238
+ "transparent": `transparant`,
239
+ "twoDimensionalSlider": `2D-schuifregelaar`
240
+ };
241
+ //#endregion
242
+ //#region node_modules/@react-aria/color/dist/pl-PL.mjs
243
+ var $1be8b0ee8841f1e7$exports = {};
244
+ $1be8b0ee8841f1e7$exports = {
245
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
246
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
247
+ "colorPicker": `Pr\xf3bnik kolor\xf3w`,
248
+ "colorSwatch": `pr\xf3bka koloru`,
249
+ "transparent": `przezroczysty`,
250
+ "twoDimensionalSlider": `Suwak 2D`
251
+ };
252
+ //#endregion
253
+ //#region node_modules/@react-aria/color/dist/pt-BR.mjs
254
+ var $f9507c2d404ed689$exports = {};
255
+ $f9507c2d404ed689$exports = {
256
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
257
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
258
+ "colorPicker": `Seletor de cores`,
259
+ "colorSwatch": `amostra de cores`,
260
+ "transparent": `transparente`,
261
+ "twoDimensionalSlider": `Controle deslizante 2D`
262
+ };
263
+ //#endregion
264
+ //#region node_modules/@react-aria/color/dist/pt-PT.mjs
265
+ var $8f872ea59c02d67e$exports = {};
266
+ $8f872ea59c02d67e$exports = {
267
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
268
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
269
+ "colorPicker": `Seletor de cores`,
270
+ "colorSwatch": `amostra de cor`,
271
+ "transparent": `transparente`,
272
+ "twoDimensionalSlider": `Controle deslizante 2D`
273
+ };
274
+ //#endregion
275
+ //#region node_modules/@react-aria/color/dist/ro-RO.mjs
276
+ var $b03b45b62a7ccae4$exports = {};
277
+ $b03b45b62a7ccae4$exports = {
278
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
279
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
280
+ "colorPicker": `Selector de culori`,
281
+ "colorSwatch": `specimen de culoare`,
282
+ "transparent": `transparent`,
283
+ "twoDimensionalSlider": `Glisor 2D`
284
+ };
285
+ //#endregion
286
+ //#region node_modules/@react-aria/color/dist/ru-RU.mjs
287
+ var $f1107d94c09df9b8$exports = {};
288
+ $f1107d94c09df9b8$exports = {
289
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
290
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
291
+ "colorPicker": `\u{41F}\u{430}\u{43B}\u{438}\u{442}\u{440}\u{430} \u{446}\u{432}\u{435}\u{442}\u{43E}\u{432}`,
292
+ "colorSwatch": `\u{446}\u{432}\u{435}\u{442}\u{43E}\u{432}\u{43E}\u{439} \u{43E}\u{431}\u{440}\u{430}\u{437}\u{435}\u{446}`,
293
+ "transparent": `\u{43F}\u{440}\u{43E}\u{437}\u{440}\u{430}\u{447}\u{43D}\u{44B}\u{439}`,
294
+ "twoDimensionalSlider": `\u{41F}\u{43E}\u{43B}\u{437}\u{443}\u{43D}\u{43E}\u{43A} 2D`
295
+ };
296
+ //#endregion
297
+ //#region node_modules/@react-aria/color/dist/sk-SK.mjs
298
+ var $b61325f242fafc7c$exports = {};
299
+ $b61325f242fafc7c$exports = {
300
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
301
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
302
+ "colorPicker": `V\xfdber farieb`,
303
+ "colorSwatch": `vzorkovn\xedk farieb`,
304
+ "transparent": `transparentn\xfd`,
305
+ "twoDimensionalSlider": `2D jazdec`
306
+ };
307
+ //#endregion
308
+ //#region node_modules/@react-aria/color/dist/sl-SI.mjs
309
+ var $f44b7cf39ac8f315$exports = {};
310
+ $f44b7cf39ac8f315$exports = {
311
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
312
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
313
+ "colorPicker": `Izbirnik barv`,
314
+ "colorSwatch": `barvna paleta`,
315
+ "transparent": `prozorno`,
316
+ "twoDimensionalSlider": `2D drsnik`
317
+ };
318
+ //#endregion
319
+ //#region node_modules/@react-aria/color/dist/sr-SP.mjs
320
+ var $aa8cd83fc8d4982b$exports = {};
321
+ $aa8cd83fc8d4982b$exports = {
322
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
323
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
324
+ "colorPicker": `Bira\u{10D} boja`,
325
+ "colorSwatch": `Uzorak boje`,
326
+ "transparent": `providno`,
327
+ "twoDimensionalSlider": `2D kliza\u{10D}`
328
+ };
329
+ //#endregion
330
+ //#region node_modules/@react-aria/color/dist/sv-SE.mjs
331
+ var $7c4f4e5bb7c06f1e$exports = {};
332
+ $7c4f4e5bb7c06f1e$exports = {
333
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
334
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
335
+ "colorPicker": `F\xe4rgv\xe4ljaren`,
336
+ "colorSwatch": `f\xe4rgruta`,
337
+ "transparent": `genomskinlig`,
338
+ "twoDimensionalSlider": `2D-reglage`
339
+ };
340
+ //#endregion
341
+ //#region node_modules/@react-aria/color/dist/tr-TR.mjs
342
+ var $8045cf930ef745aa$exports = {};
343
+ $8045cf930ef745aa$exports = {
344
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
345
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
346
+ "colorPicker": `Renk Se\xe7ici`,
347
+ "colorSwatch": `renk \xf6rne\u{11F}i`,
348
+ "transparent": `saydam`,
349
+ "twoDimensionalSlider": `2D s\xfcrg\xfc`
350
+ };
351
+ //#endregion
352
+ //#region node_modules/@react-aria/color/dist/uk-UA.mjs
353
+ var $ee2044a77f24b118$exports = {};
354
+ $ee2044a77f24b118$exports = {
355
+ "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
356
+ "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
357
+ "colorPicker": `\u{41F}\u{430}\u{43B}\u{456}\u{442}\u{440}\u{430} \u{43A}\u{43E}\u{43B}\u{44C}\u{43E}\u{440}\u{456}\u{432}`,
358
+ "colorSwatch": `\u{437}\u{440}\u{430}\u{437}\u{43E}\u{43A} \u{43A}\u{43E}\u{43B}\u{44C}\u{43E}\u{440}\u{443}`,
359
+ "transparent": `\u{43F}\u{440}\u{43E}\u{437}\u{43E}\u{440}\u{438}\u{439}`,
360
+ "twoDimensionalSlider": `\u{41F}\u{43E}\u{432}\u{437}\u{443}\u{43D}\u{43E}\u{43A} 2D`
361
+ };
362
+ //#endregion
363
+ //#region node_modules/@react-aria/color/dist/zh-CN.mjs
364
+ var $4e1dbc65a687dd93$exports = {};
365
+ $4e1dbc65a687dd93$exports = {
366
+ "colorInputLabel": (args) => `${args.label}\u{3001}${args.channelLabel}`,
367
+ "colorNameAndValue": (args) => `${args.name}\u{FF1A}${args.value}`,
368
+ "colorPicker": `\u{62FE}\u{8272}\u{5668}`,
369
+ "colorSwatch": `\u{989C}\u{8272}\u{8272}\u{677F}`,
370
+ "transparent": `\u{900F}\u{660E}`,
371
+ "twoDimensionalSlider": `2D \u{6ED1}\u{5757}`
372
+ };
373
+ //#endregion
374
+ //#region node_modules/@react-aria/color/dist/zh-TW.mjs
375
+ var $b0fef28529309aa6$exports = {};
376
+ $b0fef28529309aa6$exports = {
377
+ "colorInputLabel": (args) => `${args.label}\u{FF0C}${args.channelLabel}`,
378
+ "colorNameAndValue": (args) => `${args.name}\u{FF1A}${args.value}`,
379
+ "colorPicker": `\u{6AA2}\u{8272}\u{5668}`,
380
+ "colorSwatch": `\u{8272}\u{7968}`,
381
+ "transparent": `\u{900F}\u{660E}`,
382
+ "twoDimensionalSlider": `2D \u{6ED1}\u{687F}`
383
+ };
384
+ //#endregion
385
+ //#region node_modules/@react-aria/color/dist/intlStrings.mjs
386
+ var $3493a52097159720$exports = {};
387
+ $3493a52097159720$exports = {
388
+ "ar-AE": $eccab2b0118aef08$exports,
389
+ "bg-BG": $bf2b4507594e3d45$exports,
390
+ "cs-CZ": $01c08487af7ecd14$exports,
391
+ "da-DK": $5e997db6ea0d10f6$exports,
392
+ "de-DE": $fe5998f640a79fd2$exports,
393
+ "el-GR": $18e4d1d5b500a9ee$exports,
394
+ "en-US": $bf90a11a7a42a0f7$exports,
395
+ "es-ES": $dd0d25f885b5c5f3$exports,
396
+ "et-EE": $d950967017e3485b$exports,
397
+ "fi-FI": $00a415a3f0ab315a$exports,
398
+ "fr-FR": $d80f30fe86c95741$exports,
399
+ "he-IL": $6912afb584340a2e$exports,
400
+ "hr-HR": $7b97fcacd84ec90f$exports,
401
+ "hu-HU": $da9b443e89eebc6b$exports,
402
+ "it-IT": $35f135b45eb4d95b$exports,
403
+ "ja-JP": $760b09448e39c6cd$exports,
404
+ "ko-KR": $fc7b7d43be9703ec$exports,
405
+ "lt-LT": $74918a1664156912$exports,
406
+ "lv-LV": $4e6cde11c2bc9840$exports,
407
+ "nb-NO": $6faa3defebc3eb72$exports,
408
+ "nl-NL": $6ac9b6b1b7e3ca12$exports,
409
+ "pl-PL": $1be8b0ee8841f1e7$exports,
410
+ "pt-BR": $f9507c2d404ed689$exports,
411
+ "pt-PT": $8f872ea59c02d67e$exports,
412
+ "ro-RO": $b03b45b62a7ccae4$exports,
413
+ "ru-RU": $f1107d94c09df9b8$exports,
414
+ "sk-SK": $b61325f242fafc7c$exports,
415
+ "sl-SI": $f44b7cf39ac8f315$exports,
416
+ "sr-SP": $aa8cd83fc8d4982b$exports,
417
+ "sv-SE": $7c4f4e5bb7c06f1e$exports,
418
+ "tr-TR": $8045cf930ef745aa$exports,
419
+ "uk-UA": $ee2044a77f24b118$exports,
420
+ "zh-CN": $4e1dbc65a687dd93$exports,
421
+ "zh-TW": $b0fef28529309aa6$exports
422
+ };
423
+ //#endregion
424
+ //#region node_modules/@react-stately/color/dist/ar-AE.mjs
425
+ var $2d805fd52bb48883$exports = {};
426
+ $2d805fd52bb48883$exports = {
427
+ "alpha": `\u{623}\u{644}\u{641}\u{627}`,
428
+ "black": `\u{623}\u{633}\u{648}\u{62F}`,
429
+ "blue": `\u{623}\u{632}\u{631}\u{642}`,
430
+ "blue purple": `\u{623}\u{631}\u{62C}\u{648}\u{627}\u{646}\u{64A} \u{645}\u{632}\u{631}\u{642}`,
431
+ "brightness": `\u{627}\u{644}\u{633}\u{637}\u{648}\u{639}`,
432
+ "brown": `\u{628}\u{646}\u{64A}`,
433
+ "brown yellow": `\u{623}\u{635}\u{641}\u{631} \u{628}\u{646}\u{64A}`,
434
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
435
+ "cyan": `\u{633}\u{645}\u{627}\u{648}\u{64A}`,
436
+ "cyan blue": `\u{623}\u{632}\u{631}\u{642} \u{633}\u{645}\u{627}\u{648}\u{64A}`,
437
+ "dark": `\u{62F}\u{627}\u{643}\u{646}`,
438
+ "gray": `\u{631}\u{645}\u{627}\u{62F}\u{64A}`,
439
+ "grayish": `\u{645}\u{627}\u{626}\u{644} \u{644}\u{644}\u{631}\u{645}\u{627}\u{62F}\u{64A}`,
440
+ "green": `\u{623}\u{62E}\u{636}\u{631}`,
441
+ "green cyan": `\u{633}\u{645}\u{627}\u{648}\u{64A} \u{645}\u{62E}\u{636}\u{631}`,
442
+ "hue": `\u{62F}\u{631}\u{62C}\u{629} \u{627}\u{644}\u{644}\u{648}\u{646}`,
443
+ "light": `\u{641}\u{627}\u{62A}\u{62D}`,
444
+ "lightness": `\u{627}\u{644}\u{625}\u{636}\u{627}\u{621}\u{629}`,
445
+ "magenta": `\u{623}\u{631}\u{62C}\u{648}\u{627}\u{646}\u{64A}`,
446
+ "magenta pink": `\u{623}\u{631}\u{62C}\u{648}\u{627}\u{646}\u{64A} \u{648}\u{631}\u{62F}\u{64A}`,
447
+ "orange": `\u{628}\u{631}\u{62A}\u{642}\u{627}\u{644}\u{64A}`,
448
+ "orange yellow": `\u{623}\u{635}\u{641}\u{631} \u{628}\u{631}\u{62A}\u{642}\u{627}\u{644}\u{64A}`,
449
+ "pale": `\u{628}\u{627}\u{647}\u{62A}`,
450
+ "pink": `\u{648}\u{631}\u{62F}\u{64A}`,
451
+ "pink red": `\u{623}\u{62D}\u{645}\u{631} \u{648}\u{631}\u{62F}\u{64A}`,
452
+ "purple": `\u{623}\u{631}\u{62C}\u{648}\u{627}\u{646}\u{64A}`,
453
+ "purple magenta": `\u{628}\u{646}\u{641}\u{633}\u{62C}\u{64A}`,
454
+ "red": `\u{623}\u{62D}\u{645}\u{631}`,
455
+ "red orange": `\u{628}\u{631}\u{62A}\u{642}\u{627}\u{644}\u{64A} \u{645}\u{62D}\u{645}\u{631}`,
456
+ "saturation": `\u{627}\u{644}\u{62A}\u{634}\u{628}\u{639}`,
457
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{634}\u{641}\u{627}\u{641}`,
458
+ "very dark": `\u{62F}\u{627}\u{643}\u{646} \u{62C}\u{62F}\u{64B}\u{627}`,
459
+ "very light": `\u{641}\u{627}\u{62A}\u{62D} \u{62C}\u{62F}\u{64B}\u{627}`,
460
+ "vibrant": `\u{633}\u{627}\u{637}\u{639}`,
461
+ "white": `\u{623}\u{628}\u{64A}\u{636}`,
462
+ "yellow": `\u{623}\u{635}\u{641}\u{631}`,
463
+ "yellow green": `\u{623}\u{62E}\u{636}\u{631} \u{645}\u{635}\u{641}\u{631}`
464
+ };
465
+ //#endregion
466
+ //#region node_modules/@react-stately/color/dist/bg-BG.mjs
467
+ var $6c28468dc1df643c$exports = {};
468
+ $6c28468dc1df643c$exports = {
469
+ "alpha": `\u{410}\u{43B}\u{444}\u{430}`,
470
+ "black": `\u{447}\u{435}\u{440}\u{43D}\u{43E}`,
471
+ "blue": `\u{421}\u{438}\u{43D}\u{44C}\u{43E}`,
472
+ "blue purple": `\u{441}\u{438}\u{43D}\u{44C}\u{43E} \u{43B}\u{438}\u{43B}\u{430}\u{432}\u{43E}`,
473
+ "brightness": `\u{42F}\u{440}\u{43A}\u{43E}\u{441}\u{442}`,
474
+ "brown": `\u{43A}\u{430}\u{444}\u{44F}\u{432}\u{43E}`,
475
+ "brown yellow": `\u{43A}\u{430}\u{444}\u{44F}\u{432}\u{43E} \u{436}\u{44A}\u{43B}\u{442}\u{43E}`,
476
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
477
+ "cyan": `\u{446}\u{438}\u{430}\u{43D}`,
478
+ "cyan blue": `\u{446}\u{438}\u{430}\u{43D} \u{441}\u{438}\u{43D}\u{44C}\u{43E}`,
479
+ "dark": `\u{442}\u{44A}\u{43C}\u{43D}\u{43E}`,
480
+ "gray": `\u{441}\u{438}\u{432}\u{43E}`,
481
+ "grayish": `\u{441}\u{438}\u{432}\u{43A}\u{430}\u{432}`,
482
+ "green": `\u{417}\u{435}\u{43B}\u{435}\u{43D}\u{43E}`,
483
+ "green cyan": `\u{437}\u{435}\u{43B}\u{435}\u{43D} \u{446}\u{438}\u{430}\u{43D}`,
484
+ "hue": `\u{41E}\u{442}\u{442}\u{435}\u{43D}\u{44A}\u{43A}`,
485
+ "light": `\u{441}\u{432}\u{435}\u{442}\u{43B}\u{43E}`,
486
+ "lightness": `\u{41B}\u{435}\u{43A}\u{43E}\u{442}\u{430}`,
487
+ "magenta": `\u{43C}\u{430}\u{433}\u{435}\u{43D}\u{442}\u{430}`,
488
+ "magenta pink": `\u{43C}\u{430}\u{433}\u{435}\u{43D}\u{442}\u{430} \u{440}\u{43E}\u{437}\u{43E}\u{432}\u{43E}`,
489
+ "orange": `\u{43E}\u{440}\u{430}\u{43D}\u{436}\u{435}\u{432}\u{43E}`,
490
+ "orange yellow": `\u{43E}\u{440}\u{430}\u{43D}\u{436}\u{435}\u{432}\u{43E} \u{436}\u{44A}\u{43B}\u{442}\u{43E}`,
491
+ "pale": `\u{431}\u{43B}\u{435}\u{434}\u{43E}`,
492
+ "pink": `\u{440}\u{43E}\u{437}\u{43E}\u{432}\u{43E}`,
493
+ "pink red": `\u{440}\u{43E}\u{437}\u{43E}\u{432}\u{43E} \u{447}\u{435}\u{440}\u{432}\u{435}\u{43D}\u{43E}`,
494
+ "purple": `\u{43B}\u{438}\u{43B}\u{430}\u{432}\u{43E}`,
495
+ "purple magenta": `\u{43B}\u{438}\u{43B}\u{430}\u{432}\u{43E} \u{43C}\u{430}\u{433}\u{435}\u{43D}\u{442}\u{430}`,
496
+ "red": `\u{427}\u{435}\u{440}\u{432}\u{435}\u{43D}\u{43E}`,
497
+ "red orange": `\u{447}\u{435}\u{440}\u{432}\u{435}\u{43D} \u{43F}\u{43E}\u{440}\u{442}\u{43E}\u{43A}\u{430}\u{43B}`,
498
+ "saturation": `\u{41D}\u{430}\u{441}\u{438}\u{442}\u{435}\u{43D}\u{43E}\u{441}\u{442}`,
499
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{43F}\u{440}\u{43E}\u{437}\u{440}\u{430}\u{447}\u{435}\u{43D}`,
500
+ "very dark": `\u{43C}\u{43D}\u{43E}\u{433}\u{43E} \u{442}\u{44A}\u{43C}\u{43D}\u{43E}`,
501
+ "very light": `\u{43C}\u{43D}\u{43E}\u{433}\u{43E} \u{441}\u{432}\u{435}\u{442}\u{43B}\u{43E}`,
502
+ "vibrant": ` \u{44F}\u{440}\u{43A}\u{43E}`,
503
+ "white": `\u{431}\u{44F}\u{43B}\u{43E}`,
504
+ "yellow": `\u{436}\u{44A}\u{43B}\u{442}\u{43E}`,
505
+ "yellow green": `\u{436}\u{44A}\u{43B}\u{442}\u{43E} \u{437}\u{435}\u{43B}\u{435}\u{43D}`
506
+ };
507
+ //#endregion
508
+ //#region node_modules/@react-stately/color/dist/cs-CZ.mjs
509
+ var $807554f8230db0ed$exports = {};
510
+ $807554f8230db0ed$exports = {
511
+ "alpha": `Alfa`,
512
+ "black": `\u{10D}ern\xe1`,
513
+ "blue": `Modr\xe1`,
514
+ "blue purple": `modrofialov\xe1`,
515
+ "brightness": `Jas`,
516
+ "brown": `hn\u{11B}d\xe1`,
517
+ "brown yellow": `hn\u{11B}do\u{17E}lut\xe1`,
518
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
519
+ "cyan": `tyrkysov\xe1`,
520
+ "cyan blue": `tyrkysovomodr\xe1`,
521
+ "dark": `tmav\xe1`,
522
+ "gray": `\u{161}ed\xe1`,
523
+ "grayish": `na\u{161}edl\xe1`,
524
+ "green": `Zelen\xe1`,
525
+ "green cyan": `zelenotyrkysov\xe1`,
526
+ "hue": `Odst\xedn`,
527
+ "light": `sv\u{11B}tl\xe1`,
528
+ "lightness": `Sv\u{11B}tlost`,
529
+ "magenta": `purpurov\xe1`,
530
+ "magenta pink": `purpurov\u{11B} r\u{16F}\u{17E}ov\xe1`,
531
+ "orange": `oran\u{17E}ov\xe1`,
532
+ "orange yellow": `oran\u{17E}ovo\u{17E}lut\xe1`,
533
+ "pale": `bled\xe1`,
534
+ "pink": `r\u{16F}\u{17E}ov\xe1`,
535
+ "pink red": `r\u{16F}\u{17E}ovo\u{10D}erven\xe1`,
536
+ "purple": `fialov\xe1`,
537
+ "purple magenta": `fialov\u{11B} purpurov\xe1`,
538
+ "red": `\u{10C}erven\xe1`,
539
+ "red orange": `\u{10D}ervenooran\u{17E}ov\xe1`,
540
+ "saturation": `Sytost`,
541
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} pr\u{16F}hledn\xe9`,
542
+ "very dark": `velmi tmav\xe1`,
543
+ "very light": `velmi sv\u{11B}tl\xe1`,
544
+ "vibrant": `z\xe1\u{159}iv\xe1`,
545
+ "white": `b\xedl\xe1`,
546
+ "yellow": `\u{17E}lut\xe1`,
547
+ "yellow green": `\u{17E}lutozelen\xe1`
548
+ };
549
+ //#endregion
550
+ //#region node_modules/@react-stately/color/dist/da-DK.mjs
551
+ var $7097f64386f1761c$exports = {};
552
+ $7097f64386f1761c$exports = {
553
+ "alpha": `Alfa`,
554
+ "black": `sort`,
555
+ "blue": `Bl\xe5`,
556
+ "blue purple": `bl\xe5lilla`,
557
+ "brightness": `Lysstyrke`,
558
+ "brown": `brun`,
559
+ "brown yellow": `brungul`,
560
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
561
+ "cyan": `cyan`,
562
+ "cyan blue": `cyan bl\xe5`,
563
+ "dark": `m\xf8rk`,
564
+ "gray": `gr\xe5`,
565
+ "grayish": `gr\xe5lig`,
566
+ "green": `Gr\xf8n`,
567
+ "green cyan": `gr\xf8n cyan`,
568
+ "hue": `Tone`,
569
+ "light": `lys`,
570
+ "lightness": `Lyshed`,
571
+ "magenta": `magenta`,
572
+ "magenta pink": `magenta pink`,
573
+ "orange": `orange`,
574
+ "orange yellow": `orangegul`,
575
+ "pale": `bleg`,
576
+ "pink": `lyser\xf8d`,
577
+ "pink red": `lyser\xf8dlig r\xf8d`,
578
+ "purple": `lilla`,
579
+ "purple magenta": `lilla magenta`,
580
+ "red": `R\xf8d`,
581
+ "red orange": `r\xf8dorange`,
582
+ "saturation": `Farvem\xe6tning`,
583
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} gennemsigtig`,
584
+ "very dark": `meget m\xf8rk`,
585
+ "very light": `meget lys`,
586
+ "vibrant": `klar`,
587
+ "white": `hvid`,
588
+ "yellow": `gul`,
589
+ "yellow green": `gulgr\xf8n`
590
+ };
591
+ //#endregion
592
+ //#region node_modules/@react-stately/color/dist/de-DE.mjs
593
+ var $bdd847d8beb08799$exports = {};
594
+ $bdd847d8beb08799$exports = {
595
+ "alpha": `Alpha`,
596
+ "black": `Schwarz`,
597
+ "blue": `Blau`,
598
+ "blue purple": `Blaulila`,
599
+ "brightness": `Helligkeit`,
600
+ "brown": `Braun`,
601
+ "brown yellow": `Braungelb`,
602
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
603
+ "cyan": `Cyan`,
604
+ "cyan blue": `Cyanblau`,
605
+ "dark": `dunkles`,
606
+ "gray": `Grau`,
607
+ "grayish": `gr\xe4uliches`,
608
+ "green": `Gr\xfcn`,
609
+ "green cyan": `Gr\xfcncyan`,
610
+ "hue": `Farbton`,
611
+ "light": `helles`,
612
+ "lightness": `Leuchtkraft`,
613
+ "magenta": `Magenta`,
614
+ "magenta pink": `Magentarosa`,
615
+ "orange": `Orange`,
616
+ "orange yellow": `Orangegelb`,
617
+ "pale": `blasses`,
618
+ "pink": `Rosa`,
619
+ "pink red": `Rosarot`,
620
+ "purple": `Lila`,
621
+ "purple magenta": `Lilamagenta`,
622
+ "red": `Rot`,
623
+ "red orange": `Rotorange`,
624
+ "saturation": `S\xe4ttigung`,
625
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, zu ${args.percentTransparent} transparent`,
626
+ "very dark": `sehr dunkles`,
627
+ "very light": `sehr helles`,
628
+ "vibrant": `lebhaftes`,
629
+ "white": `Wei\xdf`,
630
+ "yellow": `Gelb`,
631
+ "yellow green": `Gelbgr\xfcn`
632
+ };
633
+ //#endregion
634
+ //#region node_modules/@react-stately/color/dist/el-GR.mjs
635
+ var $a53e00b683950971$exports = {};
636
+ $a53e00b683950971$exports = {
637
+ "alpha": `\u{386}\u{3BB}\u{3C6}\u{3B1}`,
638
+ "black": `\u{3BC}\u{3B1}\u{3CD}\u{3C1}\u{3BF}`,
639
+ "blue": `\u{39C}\u{3C0}\u{3BB}\u{3B5}`,
640
+ "blue purple": `\u{3BC}\u{3C0}\u{3BB}\u{3B5} \u{3BC}\u{3C9}\u{3B2}`,
641
+ "brightness": `\u{3A6}\u{3C9}\u{3C4}\u{3B5}\u{3B9}\u{3BD}\u{3CC}\u{3C4}\u{3B7}\u{3C4}\u{3B1}`,
642
+ "brown": `\u{3BA}\u{3B1}\u{3C6}\u{3AD}`,
643
+ "brown yellow": `\u{3BA}\u{3B1}\u{3C6}\u{3AD} \u{3BA}\u{3AF}\u{3C4}\u{3C1}\u{3B9}\u{3BD}\u{3BF}`,
644
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
645
+ "cyan": `\u{3BA}\u{3C5}\u{3B1}\u{3BD}\u{3CC}`,
646
+ "cyan blue": `\u{3BA}\u{3C5}\u{3B1}\u{3BD}\u{3CC} \u{3BC}\u{3C0}\u{3BB}\u{3B5}`,
647
+ "dark": `\u{3C3}\u{3BA}\u{3BF}\u{3CD}\u{3C1}\u{3BF}`,
648
+ "gray": `\u{3B3}\u{3BA}\u{3C1}\u{3B9}`,
649
+ "grayish": `\u{3B3}\u{3BA}\u{3C1}\u{3B9}\u{3B6}\u{3C9}\u{3C0}\u{3CC}`,
650
+ "green": `\u{3A0}\u{3C1}\u{3AC}\u{3C3}\u{3B9}\u{3BD}\u{3BF}`,
651
+ "green cyan": `\u{3C0}\u{3C1}\u{3AC}\u{3C3}\u{3B9}\u{3BD}\u{3BF} \u{3BA}\u{3C5}\u{3B1}\u{3BD}\u{3CC}`,
652
+ "hue": `\u{3A4}\u{3CC}\u{3BD}\u{3BF}\u{3C2}`,
653
+ "light": `\u{3B1}\u{3BD}\u{3BF}\u{3B9}\u{3C7}\u{3C4}\u{3CC}`,
654
+ "lightness": `\u{3A6}\u{3C9}\u{3C4}\u{3B5}\u{3B9}\u{3BD}\u{3CC}\u{3C4}\u{3B7}\u{3C4}\u{3B1}`,
655
+ "magenta": `\u{3BC}\u{3B1}\u{3C4}\u{3B6}\u{3AD}\u{3BD}\u{3C4}\u{3B1}`,
656
+ "magenta pink": `\u{3BC}\u{3B1}\u{3C4}\u{3B6}\u{3AD}\u{3BD}\u{3C4}\u{3B1} \u{3C1}\u{3BF}\u{3B6}`,
657
+ "orange": `\u{3C0}\u{3BF}\u{3C1}\u{3C4}\u{3BF}\u{3BA}\u{3B1}\u{3BB}\u{3AF}`,
658
+ "orange yellow": `\u{3C0}\u{3BF}\u{3C1}\u{3C4}\u{3BF}\u{3BA}\u{3B1}\u{3BB}\u{3AF} \u{3BA}\u{3AF}\u{3C4}\u{3C1}\u{3B9}\u{3BD}\u{3BF}`,
659
+ "pale": `\u{3B1}\u{3BD}\u{3BF}\u{3B9}\u{3C7}\u{3C4}\u{3CC}`,
660
+ "pink": `\u{3C1}\u{3BF}\u{3B6}`,
661
+ "pink red": `\u{3C1}\u{3BF}\u{3B6} \u{3BA}\u{3CC}\u{3BA}\u{3BA}\u{3B9}\u{3BD}\u{3BF}`,
662
+ "purple": `\u{3BC}\u{3C9}\u{3B2}`,
663
+ "purple magenta": `\u{3BC}\u{3C9}\u{3B2} \u{3BC}\u{3B1}\u{3C4}\u{3B6}\u{3AD}\u{3BD}\u{3C4}\u{3B1}`,
664
+ "red": `\u{39A}\u{3CC}\u{3BA}\u{3BA}\u{3B9}\u{3BD}\u{3BF}`,
665
+ "red orange": `\u{3BA}\u{3CC}\u{3BA}\u{3BA}\u{3B9}\u{3BD}\u{3BF} \u{3C0}\u{3BF}\u{3C1}\u{3C4}\u{3BF}\u{3BA}\u{3B1}\u{3BB}\u{3AF}`,
666
+ "saturation": `\u{39A}\u{3BF}\u{3C1}\u{3B5}\u{3C3}\u{3BC}\u{3CC}\u{3C2}`,
667
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{3B4}\u{3B9}\u{3B1}\u{3C6}\u{3B1}\u{3BD}\u{3AD}\u{3C2}`,
668
+ "very dark": `\u{3C0}\u{3BF}\u{3BB}\u{3CD} \u{3C3}\u{3BA}\u{3BF}\u{3CD}\u{3C1}\u{3BF}`,
669
+ "very light": `\u{3C0}\u{3BF}\u{3BB}\u{3CD} \u{3B1}\u{3BD}\u{3BF}\u{3B9}\u{3C7}\u{3C4}\u{3CC}`,
670
+ "vibrant": `\u{3AD}\u{3BD}\u{3C4}\u{3BF}\u{3BD}\u{3BF}`,
671
+ "white": `\u{3BB}\u{3B5}\u{3C5}\u{3BA}\u{3CC}`,
672
+ "yellow": `\u{3BA}\u{3AF}\u{3C4}\u{3C1}\u{3B9}\u{3BD}\u{3BF}`,
673
+ "yellow green": `\u{3BA}\u{3AF}\u{3C4}\u{3C1}\u{3B9}\u{3BD}\u{3BF} \u{3C0}\u{3C1}\u{3AC}\u{3C3}\u{3B9}\u{3BD}\u{3BF}`
674
+ };
675
+ //#endregion
676
+ //#region node_modules/@react-stately/color/dist/en-US.mjs
677
+ var $21cdd87e84f28d89$exports = {};
678
+ $21cdd87e84f28d89$exports = {
679
+ "hue": `Hue`,
680
+ "saturation": `Saturation`,
681
+ "lightness": `Lightness`,
682
+ "brightness": `Brightness`,
683
+ "red": `Red`,
684
+ "green": `Green`,
685
+ "blue": `Blue`,
686
+ "alpha": `Alpha`,
687
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
688
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
689
+ "very dark": `very dark`,
690
+ "dark": `dark`,
691
+ "light": `light`,
692
+ "very light": `very light`,
693
+ "pale": `pale`,
694
+ "grayish": `grayish`,
695
+ "vibrant": `vibrant`,
696
+ "black": `black`,
697
+ "white": `white`,
698
+ "gray": `gray`,
699
+ "pink": `pink`,
700
+ "pink red": `pink red`,
701
+ "red orange": `red orange`,
702
+ "brown": `brown`,
703
+ "orange": `orange`,
704
+ "orange yellow": `orange yellow`,
705
+ "brown yellow": `brown yellow`,
706
+ "yellow": `yellow`,
707
+ "yellow green": `yellow green`,
708
+ "green cyan": `green cyan`,
709
+ "cyan": `cyan`,
710
+ "cyan blue": `cyan blue`,
711
+ "blue purple": `blue purple`,
712
+ "purple": `purple`,
713
+ "purple magenta": `purple magenta`,
714
+ "magenta": `magenta`,
715
+ "magenta pink": `magenta pink`
716
+ };
717
+ //#endregion
718
+ //#region node_modules/@react-stately/color/dist/es-ES.mjs
719
+ var $92fee9698e4d675a$exports = {};
720
+ $92fee9698e4d675a$exports = {
721
+ "alpha": `Alpha`,
722
+ "black": `negro`,
723
+ "blue": `Azul`,
724
+ "blue purple": `p\xfarpura azulado`,
725
+ "brightness": `Brillo`,
726
+ "brown": `marr\xf3n`,
727
+ "brown yellow": `amarillo amarronado`,
728
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
729
+ "cyan": `cian`,
730
+ "cyan blue": `azul cian`,
731
+ "dark": `oscuro`,
732
+ "gray": `gris`,
733
+ "grayish": `gris\xe1ceo`,
734
+ "green": `Verde`,
735
+ "green cyan": `cian verdoso`,
736
+ "hue": `Tono`,
737
+ "light": `claro`,
738
+ "lightness": `Luminosidad`,
739
+ "magenta": `magenta`,
740
+ "magenta pink": `rosa magenta`,
741
+ "orange": `naranja`,
742
+ "orange yellow": `amarillo anaranjado`,
743
+ "pale": `p\xe1lido`,
744
+ "pink": `rosa`,
745
+ "pink red": `rojo rosado`,
746
+ "purple": `morado`,
747
+ "purple magenta": `magenta viol\xe1ceo`,
748
+ "red": `Rojo`,
749
+ "red orange": `naranja rojizo`,
750
+ "saturation": `Saturaci\xf3n`,
751
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
752
+ "very dark": `muy oscuro`,
753
+ "very light": `muy claro`,
754
+ "vibrant": `intenso`,
755
+ "white": `blanco`,
756
+ "yellow": `amarillo`,
757
+ "yellow green": `verde amarillento`
758
+ };
759
+ //#endregion
760
+ //#region node_modules/@react-stately/color/dist/et-EE.mjs
761
+ var $7ea012e91a5ad3ee$exports = {};
762
+ $7ea012e91a5ad3ee$exports = {
763
+ "alpha": `Alfa`,
764
+ "black": `must`,
765
+ "blue": `Sinine`,
766
+ "blue purple": `sinakaslilla`,
767
+ "brightness": `Heledus`,
768
+ "brown": `pruun`,
769
+ "brown yellow": `pruunikaskollane`,
770
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
771
+ "cyan": `ts\xfcaan`,
772
+ "cyan blue": `ts\xfcaansinine`,
773
+ "dark": `tume`,
774
+ "gray": `hall`,
775
+ "grayish": `hallikas`,
776
+ "green": `Roheline`,
777
+ "green cyan": `ts\xfcaanroheline`,
778
+ "hue": `V\xe4rv`,
779
+ "light": `valgus`,
780
+ "lightness": `Valgus`,
781
+ "magenta": `magentapunane`,
782
+ "magenta pink": `magentaroosa`,
783
+ "orange": `oran\u{17E}`,
784
+ "orange yellow": `oran\u{17E}ikaskollane`,
785
+ "pale": `kahvatu`,
786
+ "pink": `roosa`,
787
+ "pink red": `vaarikapunane`,
788
+ "purple": `lilla`,
789
+ "purple magenta": `purpurne magenta`,
790
+ "red": `Punane`,
791
+ "red orange": `punakasoran\u{17E}`,
792
+ "saturation": `K\xfcllastus`,
793
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} l\xe4bipaistev`,
794
+ "very dark": `v\xe4ga tume`,
795
+ "very light": `v\xe4ga hele`,
796
+ "vibrant": `ere`,
797
+ "white": `valge`,
798
+ "yellow": `kollane`,
799
+ "yellow green": `kollakasroheline`
800
+ };
801
+ //#endregion
802
+ //#region node_modules/@react-stately/color/dist/fi-FI.mjs
803
+ var $8460c13bb2d75345$exports = {};
804
+ $8460c13bb2d75345$exports = {
805
+ "alpha": `Alpha`,
806
+ "black": `musta`,
807
+ "blue": `Sininen`,
808
+ "blue purple": `sinivioletti`,
809
+ "brightness": `Kirkkaus`,
810
+ "brown": `ruskea`,
811
+ "brown yellow": `ruskeankeltainen`,
812
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
813
+ "cyan": `syaani`,
814
+ "cyan blue": `syaaninsininen`,
815
+ "dark": `tumma`,
816
+ "gray": `harmaa`,
817
+ "grayish": `harmahtava`,
818
+ "green": `Vihre\xe4`,
819
+ "green cyan": `vihre\xe4nsyaani`,
820
+ "hue": `S\xe4vy`,
821
+ "light": `vaalea`,
822
+ "lightness": `Valom\xe4\xe4r\xe4`,
823
+ "magenta": `magenta`,
824
+ "magenta pink": `magentapinkki`,
825
+ "orange": `oranssi`,
826
+ "orange yellow": `oranssinkeltainen`,
827
+ "pale": `vaalea`,
828
+ "pink": `pinkki`,
829
+ "pink red": `vaaleanpunainen`,
830
+ "purple": `violetti`,
831
+ "purple magenta": `violettimagenta`,
832
+ "red": `Punainen`,
833
+ "red orange": `punaoranssi`,
834
+ "saturation": `V\xe4rikyll\xe4isyys`,
835
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} l\xe4pin\xe4kyv\xe4`,
836
+ "very dark": `hyvin tumma`,
837
+ "very light": `eritt\xe4in vaalea`,
838
+ "vibrant": `eloisa`,
839
+ "white": `valkea`,
840
+ "yellow": `keltainen`,
841
+ "yellow green": `keltavihre\xe4`
842
+ };
843
+ //#endregion
844
+ //#region node_modules/@react-stately/color/dist/fr-FR.mjs
845
+ var $2a2d5dc14e680587$exports = {};
846
+ $2a2d5dc14e680587$exports = {
847
+ "alpha": `Alpha`,
848
+ "black": `Noir`,
849
+ "blue": `Bleu`,
850
+ "blue purple": `Violet bleu`,
851
+ "brightness": `Luminosit\xe9`,
852
+ "brown": `Brun`,
853
+ "brown yellow": `Jaune brun`,
854
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
855
+ "cyan": `Cyan`,
856
+ "cyan blue": `Bleu cyan`,
857
+ "dark": `Sombre`,
858
+ "gray": `Gris`,
859
+ "grayish": `Gris\xe2tre`,
860
+ "green": `Vert`,
861
+ "green cyan": `Cyan vert`,
862
+ "hue": `Teinte`,
863
+ "light": `Clair`,
864
+ "lightness": `Luminosit\xe9`,
865
+ "magenta": `Magenta`,
866
+ "magenta pink": `Rose magenta`,
867
+ "orange": `Orange`,
868
+ "orange yellow": `Jaune orang\xe9`,
869
+ "pale": `P\xe2le`,
870
+ "pink": `Rose`,
871
+ "pink red": `Rouge ros\xe9`,
872
+ "purple": `Violet`,
873
+ "purple magenta": `Magenta violet`,
874
+ "red": `Rouge`,
875
+ "red orange": `Orange rouge`,
876
+ "saturation": `Saturation`,
877
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
878
+ "very dark": `Tr\xe8s sombre`,
879
+ "very light": `Tr\xe8s clair`,
880
+ "vibrant": `Vif`,
881
+ "white": `Blanc`,
882
+ "yellow": `Jaune`,
883
+ "yellow green": `Vert jaune`
884
+ };
885
+ //#endregion
886
+ //#region node_modules/@react-stately/color/dist/he-IL.mjs
887
+ var $9a3f292371bb0589$exports = {};
888
+ $9a3f292371bb0589$exports = {
889
+ "alpha": `\u{5D0}\u{5DC}\u{5E4}\u{5D0}`,
890
+ "black": `\u{5E9}\u{5D7}\u{5D5}\u{5E8}`,
891
+ "blue": `\u{5DB}\u{5D7}\u{5D5}\u{5DC}`,
892
+ "blue purple": `\u{5DB}\u{5D7}\u{5D5}\u{5DC} \u{5E1}\u{5D2}\u{5D5}\u{5DC}`,
893
+ "brightness": `\u{5D1}\u{5D4}\u{5D9}\u{5E8}\u{5D5}\u{5EA}`,
894
+ "brown": `\u{5D7}\u{5D5}\u{5DD}`,
895
+ "brown yellow": `\u{5D7}\u{5D5}\u{5DD} \u{5E6}\u{5D4}\u{5D5}\u{5D1}`,
896
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
897
+ "cyan": `\u{5D8}\u{5D5}\u{5E8}\u{5E7}\u{5D9}\u{5D6}`,
898
+ "cyan blue": `\u{5DB}\u{5D7}\u{5D5}\u{5DC} \u{5E6}\u{5D9}\u{5D0}\u{5DF}`,
899
+ "dark": `\u{5DB}\u{5D4}\u{5D4}`,
900
+ "gray": `\u{5D0}\u{5E4}\u{5D5}\u{5E8}`,
901
+ "grayish": `\u{5D0}\u{5E4}\u{5E8}\u{5E4}\u{5E8}`,
902
+ "green": `\u{5D9}\u{5E8}\u{5D5}\u{5E7}`,
903
+ "green cyan": `\u{5E6}\u{5D9}\u{5D0}\u{5DF} \u{5D9}\u{5E8}\u{5D5}\u{5E7}`,
904
+ "hue": `\u{5D2}\u{5D5}\u{5D5}\u{5DF}`,
905
+ "light": `\u{5D0}\u{5D5}\u{5E8}`,
906
+ "lightness": `\u{5DB}\u{5DE}\u{5D5}\u{5EA} \u{5D0}\u{5D5}\u{5E8}`,
907
+ "magenta": `\u{5DE}\u{5D2}'\u{5E0}\u{5D8}\u{5D4}`,
908
+ "magenta pink": `\u{5D5}\u{5E8}\u{5D5}\u{5D3} \u{5DE}\u{5D2}'\u{5E0}\u{5D8}\u{5D4}`,
909
+ "orange": `\u{5DB}\u{5EA}\u{5D5}\u{5DD}`,
910
+ "orange yellow": `\u{5DB}\u{5EA}\u{5D5}\u{5DD} \u{5E6}\u{5D4}\u{5D5}\u{5D1}`,
911
+ "pale": `\u{5D7}\u{5D9}\u{5D5}\u{5D5}\u{5E8}`,
912
+ "pink": `\u{5D5}\u{5E8}\u{5D5}\u{5D3}`,
913
+ "pink red": `\u{5D5}\u{5E8}\u{5D5}\u{5D3} \u{5D0}\u{5D3}\u{5D5}\u{5DD}`,
914
+ "purple": `\u{5E1}\u{5D2}\u{5D5}\u{5DC}`,
915
+ "purple magenta": `\u{5DE}\u{5D2}'\u{5E0}\u{5D8}\u{5D4} \u{5E1}\u{5D2}\u{5D5}\u{5DC}`,
916
+ "red": `\u{5D0}\u{5D3}\u{5D5}\u{5DD}`,
917
+ "red orange": `\u{5DB}\u{5EA}\u{5D5}\u{5DD} \u{5D0}\u{5D3}\u{5D5}\u{5DD}`,
918
+ "saturation": `\u{5E8}\u{5D5}\u{5D5}\u{5D9}\u{5D4}`,
919
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{5E9}\u{5E7}\u{5D5}\u{5E3}`,
920
+ "very dark": `\u{5DB}\u{5D4}\u{5D4} \u{5DE}\u{5D0}\u{5D5}\u{5D3}`,
921
+ "very light": `\u{5D1}\u{5D4}\u{5D9}\u{5E8} \u{5DE}\u{5D0}\u{5D5}\u{5D3}`,
922
+ "vibrant": `\u{5EA}\u{5D5}\u{5E1}\u{5E1}`,
923
+ "white": `\u{5DC}\u{5D1}\u{5DF}`,
924
+ "yellow": `\u{5E6}\u{5D4}\u{5D5}\u{5D1}`,
925
+ "yellow green": `\u{5E6}\u{5D4}\u{5D5}\u{5D1} \u{5D9}\u{5E8}\u{5D5}\u{5E7}`
926
+ };
927
+ //#endregion
928
+ //#region node_modules/@react-stately/color/dist/hr-HR.mjs
929
+ var $4742231a685fa068$exports = {};
930
+ $4742231a685fa068$exports = {
931
+ "alpha": `Alfa`,
932
+ "black": `crno`,
933
+ "blue": `Plava`,
934
+ "blue purple": `plavo ljubi\u{10D}asta`,
935
+ "brightness": `Svjetlina`,
936
+ "brown": `sme\u{111}a`,
937
+ "brown yellow": `sme\u{111}e \u{17E}uta`,
938
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
939
+ "cyan": `cijan`,
940
+ "cyan blue": `cijan plava`,
941
+ "dark": `tamno`,
942
+ "gray": `siva`,
943
+ "grayish": `sivkasto`,
944
+ "green": `Zelena`,
945
+ "green cyan": `zelena cijan`,
946
+ "hue": `Nijansa`,
947
+ "light": `svjetlo`,
948
+ "lightness": `Osvijetljenost`,
949
+ "magenta": `magenta`,
950
+ "magenta pink": `magentno ru\u{17E}i\u{10D}asta`,
951
+ "orange": `naran\u{10D}asta`,
952
+ "orange yellow": `naran\u{10D}asto \u{17E}uta`,
953
+ "pale": `blijeda`,
954
+ "pink": `ru\u{17E}i\u{10D}asta`,
955
+ "pink red": `ru\u{17E}i\u{10D}asto crvena`,
956
+ "purple": `ljubi\u{10D}asta`,
957
+ "purple magenta": `ljubi\u{10D}asta magenta`,
958
+ "red": `Crvena`,
959
+ "red orange": `crveno naran\u{10D}asta`,
960
+ "saturation": `Zasi\u{107}enost`,
961
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozirnosti`,
962
+ "very dark": `jako tamna`,
963
+ "very light": `vrlo svijetlo`,
964
+ "vibrant": `vibrantna`,
965
+ "white": `bijela`,
966
+ "yellow": `\u{17E}uto`,
967
+ "yellow green": `\u{17E}uto zelena`
968
+ };
969
+ //#endregion
970
+ //#region node_modules/@react-stately/color/dist/hu-HU.mjs
971
+ var $05e247fd2960981e$exports = {};
972
+ $05e247fd2960981e$exports = {
973
+ "alpha": `Alfa`,
974
+ "black": `fekete`,
975
+ "blue": `K\xe9k`,
976
+ "blue purple": `k\xe9k lila`,
977
+ "brightness": `F\xe9nyess\xe9g`,
978
+ "brown": `barna`,
979
+ "brown yellow": `barna s\xe1rga`,
980
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
981
+ "cyan": `ci\xe1nk\xe9k`,
982
+ "cyan blue": `ci\xe1nk\xe9k`,
983
+ "dark": `s\xf6t\xe9t`,
984
+ "gray": `sz\xfcrke`,
985
+ "grayish": `sz\xfcrk\xe9s`,
986
+ "green": `Z\xf6ld`,
987
+ "green cyan": `z\xf6ld ci\xe1nk\xe9k`,
988
+ "hue": `Sz\xedn\xe1rnyalat`,
989
+ "light": `vil\xe1gos`,
990
+ "lightness": `Vil\xe1goss\xe1g`,
991
+ "magenta": `b\xedbor`,
992
+ "magenta pink": `b\xedbor r\xf3zsasz\xedn`,
993
+ "orange": `narancs`,
994
+ "orange yellow": `narancss\xe1rga`,
995
+ "pale": `halv\xe1ny`,
996
+ "pink": `r\xf3zsasz\xedn`,
997
+ "pink red": `r\xf3zsasz\xedn piros`,
998
+ "purple": `lila`,
999
+ "purple magenta": `lila b\xedbor`,
1000
+ "red": `Piros`,
1001
+ "red orange": `piros narancs`,
1002
+ "saturation": `Tel\xedtetts\xe9g`,
1003
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \xe1tl\xe1tsz\xf3`,
1004
+ "very dark": `nagyon s\xf6t\xe9t`,
1005
+ "very light": `nagyon vil\xe1gos`,
1006
+ "vibrant": `\xe9l\xe9nk`,
1007
+ "white": `feh\xe9r`,
1008
+ "yellow": `s\xe1rga`,
1009
+ "yellow green": `s\xe1rga z\xf6ld`
1010
+ };
1011
+ //#endregion
1012
+ //#region node_modules/@react-stately/color/dist/it-IT.mjs
1013
+ var $a67524a79ccbe190$exports = {};
1014
+ $a67524a79ccbe190$exports = {
1015
+ "alpha": `Alfa`,
1016
+ "black": `nero`,
1017
+ "blue": `Blu`,
1018
+ "blue purple": `blu viola`,
1019
+ "brightness": `Luminosit\xe0`,
1020
+ "brown": `marrone`,
1021
+ "brown yellow": `giallo bruno`,
1022
+ "colorName": (args) => `${args.hue} ${args.chroma} ${args.lightness}`,
1023
+ "cyan": `ciano`,
1024
+ "cyan blue": `blu ciano`,
1025
+ "dark": `scuro`,
1026
+ "gray": `grigio`,
1027
+ "grayish": `grigiastro`,
1028
+ "green": `Verde`,
1029
+ "green cyan": `verde ciano`,
1030
+ "hue": `Tonalit\xe0`,
1031
+ "light": `chiaro`,
1032
+ "lightness": `Luminosit\xe0`,
1033
+ "magenta": `magenta`,
1034
+ "magenta pink": `rosa magenta`,
1035
+ "orange": `arancio`,
1036
+ "orange yellow": `giallo arancio`,
1037
+ "pale": `tenue`,
1038
+ "pink": `rosa`,
1039
+ "pink red": `rosa rosso`,
1040
+ "purple": `viola`,
1041
+ "purple magenta": `viola magenta`,
1042
+ "red": `Rosso`,
1043
+ "red orange": `rosso arancio`,
1044
+ "saturation": `Saturazione`,
1045
+ "transparentColorName": (args) => `${args.hue} ${args.chroma} ${args.lightness}, trasparenza ${args.percentTransparent}`,
1046
+ "very dark": `molto scuro`,
1047
+ "very light": `molto chiaro`,
1048
+ "vibrant": `vivace`,
1049
+ "white": `bianco`,
1050
+ "yellow": `giallo`,
1051
+ "yellow green": `giallo verde`
1052
+ };
1053
+ //#endregion
1054
+ //#region node_modules/@react-stately/color/dist/ja-JP.mjs
1055
+ var $a9eefe9d6c8cb7d5$exports = {};
1056
+ $a9eefe9d6c8cb7d5$exports = {
1057
+ "alpha": `\u{30A2}\u{30EB}\u{30D5}\u{30A1}`,
1058
+ "black": `\u{30D6}\u{30E9}\u{30C3}\u{30AF}`,
1059
+ "blue": `\u{9752}`,
1060
+ "blue purple": `\u{30D6}\u{30EB}\u{30FC}\u{30D1}\u{30FC}\u{30D7}\u{30EB}`,
1061
+ "brightness": `\u{660E}\u{308B}\u{3055}`,
1062
+ "brown": `\u{30D6}\u{30E9}\u{30A6}\u{30F3}`,
1063
+ "brown yellow": `\u{30D6}\u{30E9}\u{30A6}\u{30F3}\u{30A4}\u{30A8}\u{30ED}\u{30FC}`,
1064
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1065
+ "cyan": `\u{30B7}\u{30A2}\u{30F3}`,
1066
+ "cyan blue": `\u{30B7}\u{30A2}\u{30F3}\u{30D6}\u{30EB}\u{30FC}`,
1067
+ "dark": `\u{30C0}\u{30FC}\u{30AF}`,
1068
+ "gray": `\u{30B0}\u{30EC}\u{30FC}`,
1069
+ "grayish": `\u{30B0}\u{30EC}\u{30A4}\u{30C3}\u{30B7}\u{30E5}`,
1070
+ "green": `\u{7DD1}`,
1071
+ "green cyan": `\u{30B0}\u{30EA}\u{30FC}\u{30F3}\u{30B7}\u{30A2}\u{30F3}`,
1072
+ "hue": `\u{8272}\u{76F8}`,
1073
+ "light": `\u{30E9}\u{30A4}\u{30C8}`,
1074
+ "lightness": `\u{660E}\u{5EA6}`,
1075
+ "magenta": `\u{30DE}\u{30BC}\u{30F3}\u{30BF}`,
1076
+ "magenta pink": `\u{30DE}\u{30BC}\u{30F3}\u{30BF}\u{30D4}\u{30F3}\u{30AF}`,
1077
+ "orange": `\u{30AA}\u{30EC}\u{30F3}\u{30B8}`,
1078
+ "orange yellow": `\u{30AA}\u{30EC}\u{30F3}\u{30B8}\u{30A4}\u{30A8}\u{30ED}\u{30FC}`,
1079
+ "pale": `\u{30DA}\u{30FC}\u{30EB}`,
1080
+ "pink": `\u{30D4}\u{30F3}\u{30AF}`,
1081
+ "pink red": `\u{30D4}\u{30F3}\u{30AF}\u{30EC}\u{30C3}\u{30C9}`,
1082
+ "purple": `\u{30D1}\u{30FC}\u{30D7}\u{30EB}`,
1083
+ "purple magenta": `\u{30D1}\u{30FC}\u{30D7}\u{30EB}\u{30DE}\u{30BC}\u{30F3}\u{30BF}`,
1084
+ "red": `\u{8D64}`,
1085
+ "red orange": `\u{30EC}\u{30C3}\u{30C9}\u{30AA}\u{30EC}\u{30F3}\u{30B8}`,
1086
+ "saturation": `\u{5F69}\u{5EA6}`,
1087
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{900F}\u{660E}`,
1088
+ "very dark": `\u{6700}\u{3082}\u{6697}\u{3044}`,
1089
+ "very light": `\u{30D9}\u{30EA}\u{30FC}\u{30E9}\u{30A4}\u{30C8}`,
1090
+ "vibrant": `\u{9BAE}\u{3084}\u{304B}`,
1091
+ "white": `\u{30DB}\u{30EF}\u{30A4}\u{30C8}`,
1092
+ "yellow": `\u{30A4}\u{30A8}\u{30ED}\u{30FC}`,
1093
+ "yellow green": `\u{30A4}\u{30A8}\u{30ED}\u{30FC}\u{30B0}\u{30EA}\u{30FC}\u{30F3}`
1094
+ };
1095
+ //#endregion
1096
+ //#region node_modules/@react-stately/color/dist/ko-KR.mjs
1097
+ var $4a6b836d4f1bfaba$exports = {};
1098
+ $4a6b836d4f1bfaba$exports = {
1099
+ "alpha": `\u{C54C}\u{D30C}`,
1100
+ "black": `\u{AC80}\u{C740}\u{C0C9}`,
1101
+ "blue": `\u{D30C}\u{B791}`,
1102
+ "blue purple": `\u{CCAD}\u{C790}\u{C0C9}`,
1103
+ "brightness": `\u{BA85}\u{B3C4}`,
1104
+ "brown": `\u{AC08}\u{C0C9}`,
1105
+ "brown yellow": `\u{D669}\u{AC08}\u{C0C9}`,
1106
+ "colorName": (args) => `${args.lightness}, ${args.chroma}, ${args.hue}`,
1107
+ "cyan": `\u{CCAD}\u{B85D}\u{C0C9}`,
1108
+ "cyan blue": `\u{CCAD}\u{B85D}\u{C0C9}`,
1109
+ "dark": `\u{B2E4}\u{D06C}`,
1110
+ "gray": `\u{D68C}\u{C0C9}`,
1111
+ "grayish": `\u{D68C}\u{AC08}\u{C0C9}`,
1112
+ "green": `\u{CD08}\u{B85D}`,
1113
+ "green cyan": `\u{CCAD}\u{B85D}\u{C0C9}`,
1114
+ "hue": `\u{C0C9}\u{C870}`,
1115
+ "light": `\u{B77C}\u{C774}\u{D2B8}`,
1116
+ "lightness": `\u{BC1D}\u{AE30}`,
1117
+ "magenta": `\u{C790}\u{D64D}\u{C0C9}`,
1118
+ "magenta pink": `\u{B9C8}\u{C820}\u{D0C0} \u{D551}\u{D06C}`,
1119
+ "orange": `\u{C8FC}\u{D669}\u{C0C9}`,
1120
+ "orange yellow": `\u{BD88}\u{ADF8}\u{C2A4}\u{B984}\u{D55C} \u{B178}\u{B791}`,
1121
+ "pale": `\u{D759}\u{C0C9}`,
1122
+ "pink": `\u{BD84}\u{D64D}\u{C0C9}`,
1123
+ "pink red": `\u{D551}\u{D06C} \u{B808}\u{B4DC}`,
1124
+ "purple": `\u{C790}\u{C8FC}\u{C0C9}`,
1125
+ "purple magenta": `\u{BCF4}\u{B77C}\u{BE5B} \u{C790}\u{D64D}\u{C0C9}`,
1126
+ "red": `\u{BE68}\u{AC15}`,
1127
+ "red orange": `\u{BD89}\u{C740} \u{C8FC}\u{D669}\u{C0C9}`,
1128
+ "saturation": `\u{CC44}\u{B3C4}`,
1129
+ "transparentColorName": (args) => `${args.lightness}, ${args.chroma}, ${args.hue}, ${args.percentTransparent} \u{D22C}\u{BA85}\u{B3C4}`,
1130
+ "very dark": `\u{B9E4}\u{C6B0} \u{C5B4}\u{B450}\u{C6B4}`,
1131
+ "very light": `\u{B9E4}\u{C6B0} \u{C5F0}\u{D568}`,
1132
+ "vibrant": `\u{AC15}\u{B82C}\u{D55C}`,
1133
+ "white": `\u{D770}\u{C0C9}`,
1134
+ "yellow": `\u{B178}\u{B780}\u{C0C9}`,
1135
+ "yellow green": `\u{C5F0}\u{B450}\u{C0C9}`
1136
+ };
1137
+ //#endregion
1138
+ //#region node_modules/@react-stately/color/dist/lt-LT.mjs
1139
+ var $c950e4b1c482abde$exports = {};
1140
+ $c950e4b1c482abde$exports = {
1141
+ "alpha": `Alfa`,
1142
+ "black": `juoda`,
1143
+ "blue": `M\u{117}lyna`,
1144
+ "blue purple": `melsvai violetin\u{117}`,
1145
+ "brightness": `Ry\u{161}kumas`,
1146
+ "brown": `ruda`,
1147
+ "brown yellow": `rusvai geltona`,
1148
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1149
+ "cyan": `\u{17E}alsvai m\u{117}lyna`,
1150
+ "cyan blue": `\u{17E}alsvai m\u{117}lyna`,
1151
+ "dark": `tamsi`,
1152
+ "gray": `pilka`,
1153
+ "grayish": `pilk\u{161}va`,
1154
+ "green": `\u{17D}alia`,
1155
+ "green cyan": `\u{17E}alsvai m\u{117}lyna`,
1156
+ "hue": `Atspalvis`,
1157
+ "light": `\u{161}viesi`,
1158
+ "lightness": `\u{160}viesumas`,
1159
+ "magenta": `rausvai raudona`,
1160
+ "magenta pink": `purpurin\u{117}`,
1161
+ "orange": `oran\u{17E}in\u{117}`,
1162
+ "orange yellow": `oran\u{17E}inio atspalvio geltona`,
1163
+ "pale": `bly\u{161}ki`,
1164
+ "pink": `ro\u{17E}in\u{117}`,
1165
+ "pink red": `ro\u{17E}in\u{117} raudona`,
1166
+ "purple": `violetin\u{117}`,
1167
+ "purple magenta": `purpurin\u{117} rausvai raudona`,
1168
+ "red": `Raudona`,
1169
+ "red orange": `rausvai oran\u{17E}in\u{117}`,
1170
+ "saturation": `\u{12E}sotinimas`,
1171
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} skaidri`,
1172
+ "very dark": `labai tamsi`,
1173
+ "very light": `labai \u{161}viesi`,
1174
+ "vibrant": `ry\u{161}ki`,
1175
+ "white": `balta`,
1176
+ "yellow": `geltona`,
1177
+ "yellow green": `gelsvai \u{17E}alia`
1178
+ };
1179
+ //#endregion
1180
+ //#region node_modules/@react-stately/color/dist/lv-LV.mjs
1181
+ var $d10d6b60dc50b438$exports = {};
1182
+ $d10d6b60dc50b438$exports = {
1183
+ "alpha": `Alfa`,
1184
+ "black": `melns`,
1185
+ "blue": `Zila`,
1186
+ "blue purple": `zili violets`,
1187
+ "brightness": `Spilgtums`,
1188
+ "brown": `br\u{16B}ns`,
1189
+ "brown yellow": `br\u{16B}ni dzeltens`,
1190
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1191
+ "cyan": `ci\u{101}ns`,
1192
+ "cyan blue": `ci\u{101}na zils`,
1193
+ "dark": `tum\u{161}s`,
1194
+ "gray": `pel\u{113}ks`,
1195
+ "grayish": `pel\u{113}c\u{12B}gs`,
1196
+ "green": `Za\u{13C}a`,
1197
+ "green cyan": `za\u{13C}\u{161} ci\u{101}ns`,
1198
+ "hue": `Nokr\u{101}sa`,
1199
+ "light": `gai\u{161}s`,
1200
+ "lightness": `Gai\u{161}ums`,
1201
+ "magenta": `fuksiju`,
1202
+ "magenta pink": `fuksiju roz\u{101}`,
1203
+ "orange": `oran\u{17E}s`,
1204
+ "orange yellow": `oran\u{17E}i dzeltens`,
1205
+ "pale": `b\u{101}ls`,
1206
+ "pink": `roz\u{101}`,
1207
+ "pink red": `roz\u{12B}gi sarkans`,
1208
+ "purple": `violets`,
1209
+ "purple magenta": `violets fuksiju`,
1210
+ "red": `Sarkana`,
1211
+ "red orange": `sarkan\u{12B}gi oran\u{17E}s`,
1212
+ "saturation": `Pies\u{101}tin\u{101}jums`,
1213
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} caursp\u{12B}d\u{12B}gs`,
1214
+ "very dark": `\u{13C}oti tum\u{161}s`,
1215
+ "very light": `\u{13C}oti gai\u{161}s`,
1216
+ "vibrant": `ko\u{161}s`,
1217
+ "white": `balts`,
1218
+ "yellow": `dzeltens`,
1219
+ "yellow green": `dzelteni za\u{13C}\u{161}`
1220
+ };
1221
+ //#endregion
1222
+ //#region node_modules/@react-stately/color/dist/nb-NO.mjs
1223
+ var $371a732b2494f452$exports = {};
1224
+ $371a732b2494f452$exports = {
1225
+ "alpha": `Alfa`,
1226
+ "black": `svart`,
1227
+ "blue": `Bl\xe5`,
1228
+ "blue purple": `bl\xe5lilla`,
1229
+ "brightness": `Lysstyrke`,
1230
+ "brown": `brun`,
1231
+ "brown yellow": `brungul`,
1232
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1233
+ "cyan": `cyan`,
1234
+ "cyan blue": `cyanbl\xe5`,
1235
+ "dark": `m\xf8rk`,
1236
+ "gray": `gr\xe5`,
1237
+ "grayish": `gr\xe5aktig`,
1238
+ "green": `Gr\xf8nn`,
1239
+ "green cyan": `gr\xf8nncyan`,
1240
+ "hue": `Fargetone`,
1241
+ "light": `lys`,
1242
+ "lightness": `Lyshet`,
1243
+ "magenta": `magenta`,
1244
+ "magenta pink": `magentarosa`,
1245
+ "orange": `oransje`,
1246
+ "orange yellow": `oransjegul`,
1247
+ "pale": `blek`,
1248
+ "pink": `rosa`,
1249
+ "pink red": `rosar\xf8d`,
1250
+ "purple": `lilla`,
1251
+ "purple magenta": `lillamagenta`,
1252
+ "red": `R\xf8d`,
1253
+ "red orange": `r\xf8doransje`,
1254
+ "saturation": `Metning`,
1255
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} gjennomsiktig`,
1256
+ "very dark": `sv\xe6rt m\xf8rk`,
1257
+ "very light": `sv\xe6rt lys`,
1258
+ "vibrant": `levende`,
1259
+ "white": `hvit`,
1260
+ "yellow": `gul`,
1261
+ "yellow green": `gulgr\xf8nn`
1262
+ };
1263
+ //#endregion
1264
+ //#region node_modules/@react-stately/color/dist/nl-NL.mjs
1265
+ var $6d042cae6243464b$exports = {};
1266
+ $6d042cae6243464b$exports = {
1267
+ "alpha": `Alfa`,
1268
+ "black": `zwart`,
1269
+ "blue": `Blauw`,
1270
+ "blue purple": `paarsblauw`,
1271
+ "brightness": `Helderheid`,
1272
+ "brown": `bruin`,
1273
+ "brown yellow": `bruingeel`,
1274
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1275
+ "cyan": `cyaan`,
1276
+ "cyan blue": `cyaanblauw`,
1277
+ "dark": `donker`,
1278
+ "gray": `grijs`,
1279
+ "grayish": `grijsachtig`,
1280
+ "green": `Groen`,
1281
+ "green cyan": `cyaangroen`,
1282
+ "hue": `Kleurtoon`,
1283
+ "light": `licht`,
1284
+ "lightness": `Lichtsterkte`,
1285
+ "magenta": `magenta`,
1286
+ "magenta pink": `magentaroze`,
1287
+ "orange": `oranje`,
1288
+ "orange yellow": `oranjegeel`,
1289
+ "pale": `bleek`,
1290
+ "pink": `roze`,
1291
+ "pink red": `rozerood`,
1292
+ "purple": `paars`,
1293
+ "purple magenta": `magentapaars`,
1294
+ "red": `Rood`,
1295
+ "red orange": `roodoranje`,
1296
+ "saturation": `Verzadiging`,
1297
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparant`,
1298
+ "very dark": `heel donker`,
1299
+ "very light": `heel licht`,
1300
+ "vibrant": `levendig`,
1301
+ "white": `wit`,
1302
+ "yellow": `geel`,
1303
+ "yellow green": `geelgroen`
1304
+ };
1305
+ //#endregion
1306
+ //#region node_modules/@react-stately/color/dist/pl-PL.mjs
1307
+ var $d9ab5c2611e0bcd3$exports = {};
1308
+ $d9ab5c2611e0bcd3$exports = {
1309
+ "alpha": `Alfa`,
1310
+ "black": `czarny`,
1311
+ "blue": `Niebieski`,
1312
+ "blue purple": `niebiesko-fioletowy`,
1313
+ "brightness": `Jasno\u{15B}\u{107}`,
1314
+ "brown": `br\u{105}zowy`,
1315
+ "brown yellow": `br\u{105}zowo-\u{17C}\xf3\u{142}ty`,
1316
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1317
+ "cyan": `cyjanowy`,
1318
+ "cyan blue": `cyjanowo-niebieski`,
1319
+ "dark": `ciemny`,
1320
+ "gray": `szary`,
1321
+ "grayish": `szarawy`,
1322
+ "green": `Zielony`,
1323
+ "green cyan": `zielono-cyjanowy`,
1324
+ "hue": `Odcie\u{144}`,
1325
+ "light": `jasny`,
1326
+ "lightness": `Jaskrawo\u{15B}\u{107}`,
1327
+ "magenta": `purpurowy`,
1328
+ "magenta pink": `purpurowo-r\xf3\u{17C}owy`,
1329
+ "orange": `pomara\u{144}czowy`,
1330
+ "orange yellow": `pomara\u{144}czowo-\u{17C}\xf3\u{142}ty`,
1331
+ "pale": `blady`,
1332
+ "pink": `r\xf3\u{17C}owy`,
1333
+ "pink red": `r\xf3\u{17C}owo-czerwony`,
1334
+ "purple": `fioletowy`,
1335
+ "purple magenta": `fioletowo-purpurowy`,
1336
+ "red": `Czerwony`,
1337
+ "red orange": `czerwono-pomara\u{144}czowy`,
1338
+ "saturation": `Nasycenie`,
1339
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} przezroczysto\u{15B}ci`,
1340
+ "very dark": `bardzo ciemny`,
1341
+ "very light": `bardzo jasny`,
1342
+ "vibrant": `intensywny`,
1343
+ "white": `bia\u{142}y`,
1344
+ "yellow": `\u{17C}\xf3\u{142}ty`,
1345
+ "yellow green": `\u{17C}\xf3\u{142}to-zielony`
1346
+ };
1347
+ //#endregion
1348
+ //#region node_modules/@react-stately/color/dist/pt-BR.mjs
1349
+ var $73f77c9902e29ca6$exports = {};
1350
+ $73f77c9902e29ca6$exports = {
1351
+ "alpha": `Alfa`,
1352
+ "black": `preto`,
1353
+ "blue": `Azul`,
1354
+ "blue purple": `roxo azulado`,
1355
+ "brightness": `Brilho`,
1356
+ "brown": `marrom`,
1357
+ "brown yellow": `marrom amarelado`,
1358
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1359
+ "cyan": `ciano`,
1360
+ "cyan blue": `azul-ciano`,
1361
+ "dark": `escuro`,
1362
+ "gray": `cinza`,
1363
+ "grayish": `acinzentado`,
1364
+ "green": `Verde`,
1365
+ "green cyan": `verde-ciano`,
1366
+ "hue": `Matiz`,
1367
+ "light": `claro`,
1368
+ "lightness": `Luminosidade`,
1369
+ "magenta": `magenta`,
1370
+ "magenta pink": `rosa-magenta`,
1371
+ "orange": `laranja`,
1372
+ "orange yellow": `amarelo alaranjado`,
1373
+ "pale": `p\xe1lido`,
1374
+ "pink": `rosa`,
1375
+ "pink red": `rosa avermelhado`,
1376
+ "purple": `roxo`,
1377
+ "purple magenta": `roxo-magenta`,
1378
+ "red": `Vermelho`,
1379
+ "red orange": `laranja avermelhado`,
1380
+ "saturation": `Satura\xe7\xe3o`,
1381
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
1382
+ "very dark": `muito escuro`,
1383
+ "very light": `muito claro`,
1384
+ "vibrant": `vibrante`,
1385
+ "white": `branco`,
1386
+ "yellow": `amarelo`,
1387
+ "yellow green": `verde amarelado`
1388
+ };
1389
+ //#endregion
1390
+ //#region node_modules/@react-stately/color/dist/pt-PT.mjs
1391
+ var $4f461eb266a95c10$exports = {};
1392
+ $4f461eb266a95c10$exports = {
1393
+ "alpha": `Alfa`,
1394
+ "black": `preto`,
1395
+ "blue": `Azul`,
1396
+ "blue purple": `azul-p\xfarpura`,
1397
+ "brightness": `Luminosidade`,
1398
+ "brown": `castanho`,
1399
+ "brown yellow": `amarelo-castanho`,
1400
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1401
+ "cyan": `ciano`,
1402
+ "cyan blue": `azul-ciano`,
1403
+ "dark": `escuro`,
1404
+ "gray": `cinzento`,
1405
+ "grayish": `acinzentado`,
1406
+ "green": `Verde`,
1407
+ "green cyan": `verde-ciano`,
1408
+ "hue": `Tonalidade`,
1409
+ "light": `claro`,
1410
+ "lightness": `Claridade`,
1411
+ "magenta": `magenta`,
1412
+ "magenta pink": `rosa-magenta`,
1413
+ "orange": `laranja`,
1414
+ "orange yellow": `amarelo-laranja`,
1415
+ "pale": `p\xe1lido`,
1416
+ "pink": `cor-de-rosa`,
1417
+ "pink red": `vermelho-rosa`,
1418
+ "purple": `p\xfarpura`,
1419
+ "purple magenta": `p\xfarpura-magenta`,
1420
+ "red": `Vermelho`,
1421
+ "red orange": `laranja-vermelho`,
1422
+ "saturation": `Satura\xe7\xe3o`,
1423
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
1424
+ "very dark": `muito escuro`,
1425
+ "very light": `muito claro`,
1426
+ "vibrant": `vibrante`,
1427
+ "white": `branco`,
1428
+ "yellow": `amarelo`,
1429
+ "yellow green": `verde-amarelo`
1430
+ };
1431
+ //#endregion
1432
+ //#region node_modules/@react-stately/color/dist/ro-RO.mjs
1433
+ var $dc46bea2f2597899$exports = {};
1434
+ $dc46bea2f2597899$exports = {
1435
+ "alpha": `Alfa`,
1436
+ "black": `negru`,
1437
+ "blue": `Albastru`,
1438
+ "blue purple": `albastru-violet`,
1439
+ "brightness": `Luminozitate`,
1440
+ "brown": `maro`,
1441
+ "brown yellow": `galben maro`,
1442
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1443
+ "cyan": `bleu`,
1444
+ "cyan blue": `albastru-bleu`,
1445
+ "dark": `\xeenchis`,
1446
+ "gray": `gri`,
1447
+ "grayish": `cenu\u{219}iu`,
1448
+ "green": `Verde`,
1449
+ "green cyan": `verde bleu`,
1450
+ "hue": `Nuan\u{21B}\u{103}`,
1451
+ "light": `deschis`,
1452
+ "lightness": `Luminozitate`,
1453
+ "magenta": `fucsia`,
1454
+ "magenta pink": `roz-fucsia`,
1455
+ "orange": `portocaliu`,
1456
+ "orange yellow": `galben-portocaliu`,
1457
+ "pale": `pal`,
1458
+ "pink": `roz`,
1459
+ "pink red": `roz-ro\u{219}u`,
1460
+ "purple": `violet`,
1461
+ "purple magenta": `violet-fucsia`,
1462
+ "red": `Ro\u{219}u`,
1463
+ "red orange": `portocaliu-ro\u{219}u`,
1464
+ "saturation": `Satura\u{21B}ie`,
1465
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
1466
+ "very dark": `foarte \xeenchis`,
1467
+ "very light": `foarte deschis`,
1468
+ "vibrant": `plin de via\u{21B}\u{103}`,
1469
+ "white": `alb`,
1470
+ "yellow": `galben`,
1471
+ "yellow green": `galben-verde`
1472
+ };
1473
+ //#endregion
1474
+ //#region node_modules/@react-stately/color/dist/ru-RU.mjs
1475
+ var $622bbd6719cc95af$exports = {};
1476
+ $622bbd6719cc95af$exports = {
1477
+ "alpha": `\u{410}\u{43B}\u{44C}\u{444}\u{430}`,
1478
+ "black": `\u{447}\u{435}\u{440}\u{43D}\u{44B}\u{439}`,
1479
+ "blue": `\u{421}\u{438}\u{43D}\u{438}\u{439}`,
1480
+ "blue purple": `\u{441}\u{438}\u{43D}\u{435}-\u{444}\u{438}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{44B}\u{439}`,
1481
+ "brightness": `\u{42F}\u{440}\u{43A}\u{43E}\u{441}\u{442}\u{44C}`,
1482
+ "brown": `\u{43A}\u{43E}\u{440}\u{438}\u{447}\u{43D}\u{435}\u{432}\u{44B}\u{439}`,
1483
+ "brown yellow": `\u{43A}\u{43E}\u{440}\u{438}\u{447}\u{43D}\u{435}\u{432}\u{43E}-\u{436}\u{435}\u{43B}\u{442}\u{44B}\u{439}`,
1484
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1485
+ "cyan": `\u{433}\u{43E}\u{43B}\u{443}\u{431}\u{43E}\u{439}`,
1486
+ "cyan blue": `\u{446}\u{432}\u{435}\u{442} \u{43C}\u{43E}\u{440}\u{441}\u{43A}\u{43E}\u{439} \u{432}\u{43E}\u{43B}\u{43D}\u{44B}`,
1487
+ "dark": `\u{442}\u{435}\u{43C}\u{43D}\u{44B}\u{439}`,
1488
+ "gray": `\u{441}\u{435}\u{440}\u{44B}\u{439}`,
1489
+ "grayish": `\u{441}\u{435}\u{440}\u{43E}\u{432}\u{430}\u{442}\u{44B}\u{439}`,
1490
+ "green": `\u{417}\u{435}\u{43B}\u{435}\u{43D}\u{44B}\u{439}`,
1491
+ "green cyan": `\u{441}\u{438}\u{43D}\u{435}-\u{437}\u{435}\u{43B}\u{435}\u{43D}\u{44B}\u{439}`,
1492
+ "hue": `\u{41E}\u{442}\u{442}\u{435}\u{43D}\u{43E}\u{43A}`,
1493
+ "light": `\u{441}\u{432}\u{435}\u{442}\u{43B}\u{44B}\u{439}`,
1494
+ "lightness": `\u{41E}\u{441}\u{432}\u{435}\u{449}\u{435}\u{43D}\u{43D}\u{43E}\u{441}\u{442}\u{44C}`,
1495
+ "magenta": `\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43D}\u{44B}\u{439}`,
1496
+ "magenta pink": `\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43D}\u{43E}-\u{440}\u{43E}\u{437}\u{43E}\u{432}\u{44B}\u{439}`,
1497
+ "orange": `\u{43E}\u{440}\u{430}\u{43D}\u{436}\u{435}\u{432}\u{44B}\u{439}`,
1498
+ "orange yellow": `\u{43E}\u{440}\u{430}\u{43D}\u{436}\u{435}\u{432}\u{43E}-\u{436}\u{435}\u{43B}\u{442}\u{44B}\u{439}`,
1499
+ "pale": `\u{431}\u{43B}\u{435}\u{434}\u{43D}\u{44B}\u{439}`,
1500
+ "pink": `\u{440}\u{43E}\u{437}\u{43E}\u{432}\u{44B}\u{439}`,
1501
+ "pink red": `\u{440}\u{43E}\u{437}\u{43E}\u{432}\u{43E}-\u{43A}\u{440}\u{430}\u{441}\u{43D}\u{44B}\u{439}`,
1502
+ "purple": `\u{444}\u{438}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{44B}\u{439}`,
1503
+ "purple magenta": `\u{444}\u{438}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{43E}-\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43D}\u{44B}\u{439}`,
1504
+ "red": `\u{41A}\u{440}\u{430}\u{441}\u{43D}\u{44B}\u{439}`,
1505
+ "red orange": `\u{43A}\u{440}\u{430}\u{441}\u{43D}\u{43E}-\u{43E}\u{440}\u{430}\u{43D}\u{436}\u{435}\u{432}\u{44B}\u{439}`,
1506
+ "saturation": `\u{41D}\u{430}\u{441}\u{44B}\u{449}\u{435}\u{43D}\u{43D}\u{43E}\u{441}\u{442}\u{44C}`,
1507
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, \u{43F}\u{440}\u{43E}\u{437}\u{440}\u{430}\u{447}\u{43D}\u{44B}\u{439} \u{43D}\u{430} ${args.percentTransparent}`,
1508
+ "very dark": `\u{43E}\u{447}\u{435}\u{43D}\u{44C} \u{442}\u{435}\u{43C}\u{43D}\u{44B}\u{439}`,
1509
+ "very light": `\u{43E}\u{447}\u{435}\u{43D}\u{44C} \u{441}\u{432}\u{435}\u{442}\u{43B}\u{44B}\u{439}`,
1510
+ "vibrant": `\u{44F}\u{440}\u{43A}\u{438}\u{439}`,
1511
+ "white": `\u{431}\u{435}\u{43B}\u{44B}\u{439}`,
1512
+ "yellow": `\u{436}\u{435}\u{43B}\u{442}\u{44B}\u{439}`,
1513
+ "yellow green": `\u{436}\u{435}\u{43B}\u{442}\u{43E}-\u{437}\u{435}\u{43B}\u{435}\u{43D}\u{44B}\u{439}`
1514
+ };
1515
+ //#endregion
1516
+ //#region node_modules/@react-stately/color/dist/sk-SK.mjs
1517
+ var $4da03c1ecd9a9c7d$exports = {};
1518
+ $4da03c1ecd9a9c7d$exports = {
1519
+ "alpha": `Alfa`,
1520
+ "black": `\u{10D}ierna`,
1521
+ "blue": `Modr\xe1`,
1522
+ "blue purple": `modrofialov\xe1`,
1523
+ "brightness": `Jas`,
1524
+ "brown": `hned\xe1`,
1525
+ "brown yellow": `hnedo\u{17E}lt\xe1`,
1526
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1527
+ "cyan": `az\xfarov\xe1`,
1528
+ "cyan blue": `az\xfarov\xe1 modr\xe1`,
1529
+ "dark": `tmav\xe1`,
1530
+ "gray": `siv\xe1`,
1531
+ "grayish": `sivast\xe1`,
1532
+ "green": `Zelen\xe1`,
1533
+ "green cyan": `zelen\xe1 az\xfarov\xe1`,
1534
+ "hue": `Odtie\u{148}`,
1535
+ "light": `svetl\xe1`,
1536
+ "lightness": `Svetlos\u{165}`,
1537
+ "magenta": `purpurov\xe1`,
1538
+ "magenta pink": `ru\u{17E}ov\xe1 purpurov\xe1`,
1539
+ "orange": `oran\u{17E}ov\xe1`,
1540
+ "orange yellow": `oran\u{17E}ovo\u{17E}lt\xe1`,
1541
+ "pale": `bled\xe1`,
1542
+ "pink": `ru\u{17E}ov\xe1`,
1543
+ "pink red": `ru\u{17E}ovo\u{10D}erven\xe1`,
1544
+ "purple": `fialov\xe1`,
1545
+ "purple magenta": `fialov\xe1 purpurov\xe1`,
1546
+ "red": `\u{10C}erven\xe1`,
1547
+ "red orange": `\u{10D}ervenooran\u{17E}ov\xe1`,
1548
+ "saturation": `S\xfdtos\u{165}`,
1549
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prieh\u{13E}adn\xe1`,
1550
+ "very dark": `ve\u{13E}mi tmav\xe1`,
1551
+ "very light": `ve\u{13E}mi svetl\xe1`,
1552
+ "vibrant": `energick\xe1`,
1553
+ "white": `biela`,
1554
+ "yellow": `\u{17E}lt\xe1`,
1555
+ "yellow green": `\u{17E}ltozelen\xe1`
1556
+ };
1557
+ //#endregion
1558
+ //#region node_modules/@react-stately/color/dist/sl-SI.mjs
1559
+ var $edb6b2fe456ed4e8$exports = {};
1560
+ $edb6b2fe456ed4e8$exports = {
1561
+ "alpha": `Alfa`,
1562
+ "black": `\u{10D}rna`,
1563
+ "blue": `Modra`,
1564
+ "blue purple": `modro vijoli\u{10D}na`,
1565
+ "brightness": `Svetlost`,
1566
+ "brown": `rjava`,
1567
+ "brown yellow": `rjavo rumena`,
1568
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1569
+ "cyan": `cian`,
1570
+ "cyan blue": `cian modra`,
1571
+ "dark": `temna`,
1572
+ "gray": `siva`,
1573
+ "grayish": `sivkasta`,
1574
+ "green": `Zelena`,
1575
+ "green cyan": `zelena cian`,
1576
+ "hue": `Barva`,
1577
+ "light": `svetla`,
1578
+ "lightness": `Lahkost`,
1579
+ "magenta": `\u{161}krlatna`,
1580
+ "magenta pink": `\u{161}krlatno roza`,
1581
+ "orange": `oran\u{17E}na`,
1582
+ "orange yellow": `oran\u{17E}no rumena`,
1583
+ "pale": `bleda`,
1584
+ "pink": `roza`,
1585
+ "pink red": `roza rde\u{10D}a`,
1586
+ "purple": `vijoli\u{10D}na`,
1587
+ "purple magenta": `vijoli\u{10D}no \u{161}krlatna`,
1588
+ "red": `Rde\u{10D}a`,
1589
+ "red orange": `rde\u{10D}e oran\u{17E}na`,
1590
+ "saturation": `Nasi\u{10D}enost`,
1591
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozorna`,
1592
+ "very dark": `zelo temna`,
1593
+ "very light": `zelo svetla`,
1594
+ "vibrant": `\u{17E}ivahna`,
1595
+ "white": `bela`,
1596
+ "yellow": `rumena`,
1597
+ "yellow green": `rumeno zelena`
1598
+ };
1599
+ //#endregion
1600
+ //#region node_modules/@react-stately/color/dist/sr-SP.mjs
1601
+ var $264cd81c52b30815$exports = {};
1602
+ $264cd81c52b30815$exports = {
1603
+ "alpha": `Alfa`,
1604
+ "black": `crno`,
1605
+ "blue": `Plava`,
1606
+ "blue purple": `plavoljubi\u{10D}asta`,
1607
+ "brightness": `Osvetljenost`,
1608
+ "brown": `sme\u{111}a`,
1609
+ "brown yellow": `sme\u{111}e\u{17E}uta`,
1610
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1611
+ "cyan": `cijan`,
1612
+ "cyan blue": `cijan plava`,
1613
+ "dark": `tamno`,
1614
+ "gray": `siva`,
1615
+ "grayish": `sivkasta`,
1616
+ "green": `Zelena`,
1617
+ "green cyan": `zeleno cijan`,
1618
+ "hue": `Nijansa`,
1619
+ "light": `svetla`,
1620
+ "lightness": `Osvetljenje`,
1621
+ "magenta": `purpurnocrvena`,
1622
+ "magenta pink": `magenta ru\u{17E}i\u{10D}asta`,
1623
+ "orange": `narand\u{17E}asta`,
1624
+ "orange yellow": `narand\u{17E}asto\u{17E}uta`,
1625
+ "pale": `bledo`,
1626
+ "pink": `ru\u{17E}i\u{10D}asta`,
1627
+ "pink red": `ru\u{17E}i\u{10D}astocrvena`,
1628
+ "purple": `ljubi\u{10D}asta`,
1629
+ "purple magenta": `ljubi\u{10D}asta magenta`,
1630
+ "red": `Crvena`,
1631
+ "red orange": `crvenonarand\u{17E}asta`,
1632
+ "saturation": `Zasi\u{107}enje`,
1633
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozirna`,
1634
+ "very dark": `veoma tamno`,
1635
+ "very light": `vrlo svetlo`,
1636
+ "vibrant": `\u{17E}ivopisna`,
1637
+ "white": `bela`,
1638
+ "yellow": `\u{17E}uto`,
1639
+ "yellow green": `\u{17E}utozelena`
1640
+ };
1641
+ //#endregion
1642
+ //#region node_modules/@react-stately/color/dist/sv-SE.mjs
1643
+ var $6f80afde0270dda7$exports = {};
1644
+ $6f80afde0270dda7$exports = {
1645
+ "alpha": `Alfa`,
1646
+ "black": `svart`,
1647
+ "blue": `Bl\xe5tt`,
1648
+ "blue purple": `bl\xe5lila`,
1649
+ "brightness": `Ljusstyrka`,
1650
+ "brown": `brun`,
1651
+ "brown yellow": `brungul`,
1652
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1653
+ "cyan": `cyan`,
1654
+ "cyan blue": `cyanbl\xe5`,
1655
+ "dark": `m\xf6rk`,
1656
+ "gray": `gr\xe5`,
1657
+ "grayish": `gr\xe5aktig`,
1658
+ "green": `Gr\xf6nt`,
1659
+ "green cyan": `gr\xf6n cyan`,
1660
+ "hue": `Nyans`,
1661
+ "light": `ljus`,
1662
+ "lightness": `Ljushet`,
1663
+ "magenta": `magenta`,
1664
+ "magenta pink": `magentarosa`,
1665
+ "orange": `orange`,
1666
+ "orange yellow": `orangegul`,
1667
+ "pale": `blek`,
1668
+ "pink": `rosa`,
1669
+ "pink red": `rosar\xf6d`,
1670
+ "purple": `lila`,
1671
+ "purple magenta": `lila magenta`,
1672
+ "red": `R\xf6tt`,
1673
+ "red orange": `r\xf6dorange`,
1674
+ "saturation": `M\xe4ttnad`,
1675
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} genomskinlig`,
1676
+ "very dark": `mycket m\xf6rk`,
1677
+ "very light": `mycket ljus`,
1678
+ "vibrant": `livfull`,
1679
+ "white": `vit`,
1680
+ "yellow": `gul`,
1681
+ "yellow green": `gulgr\xf6n`
1682
+ };
1683
+ //#endregion
1684
+ //#region node_modules/@react-stately/color/dist/tr-TR.mjs
1685
+ var $23a92651c6957668$exports = {};
1686
+ $23a92651c6957668$exports = {
1687
+ "alpha": `Alfa`,
1688
+ "black": `siyah`,
1689
+ "blue": `Mavi`,
1690
+ "blue purple": `mavi mor`,
1691
+ "brightness": `Parlakl\u{131}k`,
1692
+ "brown": `kahverengi`,
1693
+ "brown yellow": `kahverengi sar\u{131}`,
1694
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1695
+ "cyan": `camg\xf6be\u{11F}i`,
1696
+ "cyan blue": `camg\xf6be\u{11F}i mavi`,
1697
+ "dark": `koyu`,
1698
+ "gray": `gri`,
1699
+ "grayish": `grimsi`,
1700
+ "green": `Ye\u{15F}il`,
1701
+ "green cyan": `ye\u{15F}il camg\xf6be\u{11F}i`,
1702
+ "hue": `Ton`,
1703
+ "light": `a\xe7\u{131}k`,
1704
+ "lightness": `Canl\u{131}l\u{131}k`,
1705
+ "magenta": `eflatun`,
1706
+ "magenta pink": `eflatun pembe`,
1707
+ "orange": `turuncu`,
1708
+ "orange yellow": `turuncu sar\u{131}`,
1709
+ "pale": `solgun`,
1710
+ "pink": `pembe`,
1711
+ "pink red": `pembe k\u{131}rm\u{131}z\u{131}`,
1712
+ "purple": `mor`,
1713
+ "purple magenta": `mor eflatun`,
1714
+ "red": `K\u{131}rm\u{131}z\u{131}`,
1715
+ "red orange": `k\u{131}rm\u{131}z\u{131} portakal`,
1716
+ "saturation": `Doygunluk`,
1717
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} saydam`,
1718
+ "very dark": `\xe7ok koyu`,
1719
+ "very light": `\xe7ok a\xe7\u{131}k`,
1720
+ "vibrant": `canl\u{131}`,
1721
+ "white": `beyaz`,
1722
+ "yellow": `sar\u{131}`,
1723
+ "yellow green": `sar\u{131} ye\u{15F}il`
1724
+ };
1725
+ //#endregion
1726
+ //#region node_modules/@react-stately/color/dist/uk-UA.mjs
1727
+ var $0f9b1074d04f4954$exports = {};
1728
+ $0f9b1074d04f4954$exports = {
1729
+ "alpha": `\u{410}\u{43B}\u{44C}\u{444}\u{430}`,
1730
+ "black": `\u{447}\u{43E}\u{440}\u{43D}\u{438}\u{439}`,
1731
+ "blue": `\u{421}\u{438}\u{43D}\u{456}\u{439}`,
1732
+ "blue purple": `\u{441}\u{438}\u{43D}\u{44C}\u{43E}-\u{444}\u{456}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{438}\u{439}`,
1733
+ "brightness": `\u{42F}\u{441}\u{43A}\u{440}\u{430}\u{432}\u{456}\u{441}\u{442}\u{44C}`,
1734
+ "brown": `\u{43A}\u{43E}\u{440}\u{438}\u{447}\u{43D}\u{435}\u{432}\u{438}\u{439}`,
1735
+ "brown yellow": `\u{43A}\u{43E}\u{440}\u{438}\u{447}\u{43D}\u{435}\u{432}\u{43E}-\u{436}\u{43E}\u{432}\u{442}\u{438}\u{439}`,
1736
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1737
+ "cyan": `\u{431}\u{43B}\u{430}\u{43A}\u{438}\u{442}\u{43D}\u{438}\u{439}`,
1738
+ "cyan blue": `\u{441}\u{438}\u{43D}\u{44C}\u{43E}-\u{431}\u{43B}\u{430}\u{43A}\u{438}\u{442}\u{43D}\u{438}\u{439}`,
1739
+ "dark": `\u{442}\u{435}\u{43C}\u{43D}\u{438}\u{439}`,
1740
+ "gray": `\u{441}\u{456}\u{440}\u{438}\u{439}`,
1741
+ "grayish": `\u{441}\u{456}\u{440}\u{443}\u{432}\u{430}\u{442}\u{438}\u{439}`,
1742
+ "green": `\u{417}\u{435}\u{43B}\u{435}\u{43D}\u{438}\u{439}`,
1743
+ "green cyan": `\u{437}\u{435}\u{43B}\u{435}\u{43D}\u{43E}-\u{431}\u{43B}\u{430}\u{43A}\u{438}\u{442}\u{43D}\u{438}\u{439}`,
1744
+ "hue": `\u{422}\u{43E}\u{43D}`,
1745
+ "light": `\u{441}\u{432}\u{456}\u{442}\u{43B}\u{438}\u{439}`,
1746
+ "lightness": `\u{41E}\u{441}\u{432}\u{456}\u{442}\u{43B}\u{435}\u{43D}\u{456}\u{441}\u{442}\u{44C}`,
1747
+ "magenta": `\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43E}\u{432}\u{438}\u{439}`,
1748
+ "magenta pink": `\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43E}\u{432}\u{43E}-\u{440}\u{43E}\u{436}\u{435}\u{432}\u{438}\u{439}`,
1749
+ "orange": `\u{43F}\u{43E}\u{43C}\u{430}\u{440}\u{430}\u{43D}\u{447}\u{435}\u{432}\u{438}\u{439}`,
1750
+ "orange yellow": `\u{43F}\u{43E}\u{43C}\u{430}\u{440}\u{430}\u{43D}\u{447}\u{435}\u{432}\u{43E}-\u{436}\u{43E}\u{432}\u{442}\u{438}\u{439}`,
1751
+ "pale": `\u{431}\u{43B}\u{456}\u{434}\u{438}\u{439}`,
1752
+ "pink": `\u{440}\u{43E}\u{436}\u{435}\u{432}\u{438}\u{439}`,
1753
+ "pink red": `\u{440}\u{43E}\u{436}\u{435}\u{432}\u{43E}-\u{447}\u{435}\u{440}\u{432}\u{43E}\u{43D}\u{438}\u{439}`,
1754
+ "purple": `\u{444}\u{456}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{438}\u{439}`,
1755
+ "purple magenta": `\u{444}\u{456}\u{43E}\u{43B}\u{435}\u{442}\u{43E}\u{432}\u{43E}-\u{43F}\u{443}\u{440}\u{43F}\u{443}\u{440}\u{43E}\u{432}\u{438}\u{439}`,
1756
+ "red": `\u{427}\u{435}\u{440}\u{432}\u{43E}\u{43D}\u{438}\u{439}`,
1757
+ "red orange": `\u{447}\u{435}\u{440}\u{432}\u{43E}\u{43D}\u{43E}-\u{43F}\u{43E}\u{43C}\u{430}\u{440}\u{430}\u{43D}\u{447}\u{435}\u{432}\u{438}\u{439}`,
1758
+ "saturation": `\u{41D}\u{430}\u{441}\u{438}\u{447}\u{435}\u{43D}\u{456}\u{441}\u{442}\u{44C}`,
1759
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, \u{43F}\u{440}\u{43E}\u{437}\u{43E}\u{440}\u{438}\u{439} \u{43D}\u{430} ${args.percentTransparent}`,
1760
+ "very dark": `\u{434}\u{443}\u{436}\u{435} \u{442}\u{435}\u{43C}\u{43D}\u{438}\u{439}`,
1761
+ "very light": `\u{434}\u{443}\u{436}\u{435} \u{441}\u{432}\u{456}\u{442}\u{43B}\u{438}\u{439}`,
1762
+ "vibrant": `\u{44F}\u{441}\u{43A}\u{440}\u{430}\u{432}\u{438}\u{439}`,
1763
+ "white": `\u{431}\u{456}\u{43B}\u{438}\u{439}`,
1764
+ "yellow": `\u{436}\u{43E}\u{432}\u{442}\u{438}\u{439}`,
1765
+ "yellow green": `\u{436}\u{43E}\u{432}\u{442}\u{43E}-\u{437}\u{435}\u{43B}\u{435}\u{43D}\u{438}\u{439}`
1766
+ };
1767
+ //#endregion
1768
+ //#region node_modules/@react-stately/color/dist/zh-CN.mjs
1769
+ var $a9cedf75b94e4916$exports = {};
1770
+ $a9cedf75b94e4916$exports = {
1771
+ "alpha": `Alpha`,
1772
+ "black": `\u{9ED1}\u{8272}`,
1773
+ "blue": `\u{84DD}\u{8272}`,
1774
+ "blue purple": `\u{84DD}\u{7D2B}\u{8272}`,
1775
+ "brightness": `\u{4EAE}\u{5EA6}`,
1776
+ "brown": `\u{68D5}\u{8272}\u{7684}`,
1777
+ "brown yellow": `\u{68D5}\u{9EC4}\u{8272}`,
1778
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1779
+ "cyan": `\u{84DD}\u{7EFF}\u{8272}`,
1780
+ "cyan blue": `\u{9752}\u{84DD}\u{8272}`,
1781
+ "dark": `\u{6DF1}\u{8272}`,
1782
+ "gray": `\u{7070}\u{8272}`,
1783
+ "grayish": `\u{6D45}\u{7070}\u{8272}\u{7684}`,
1784
+ "green": `\u{7EFF}\u{8272}`,
1785
+ "green cyan": `\u{7EFF}\u{9752}\u{8272}`,
1786
+ "hue": `\u{8272}\u{76F8}`,
1787
+ "light": `\u{6D45}\u{8272}`,
1788
+ "lightness": `\u{660E}\u{4EAE}\u{5EA6}`,
1789
+ "magenta": `\u{7D2B}\u{7EA2}\u{8272}`,
1790
+ "magenta pink": `\u{7D2B}\u{7C89}\u{8272}`,
1791
+ "orange": `\u{6A59}\u{8272}`,
1792
+ "orange yellow": `\u{6A59}\u{9EC4}\u{8272}`,
1793
+ "pale": `\u{82CD}\u{767D}\u{7684}`,
1794
+ "pink": `\u{7C89}\u{8272}`,
1795
+ "pink red": `\u{7C89}\u{7EA2}\u{8272}`,
1796
+ "purple": `\u{7D2B}\u{8272}`,
1797
+ "purple magenta": `\u{7D2B}\u{6D0B}\u{7EA2}\u{8272}`,
1798
+ "red": `\u{7EA2}\u{8272}`,
1799
+ "red orange": `\u{7EA2}\u{6A59}\u{8272}`,
1800
+ "saturation": `\u{9971}\u{548C}\u{5EA6}`,
1801
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{900F}\u{660E}`,
1802
+ "very dark": `\u{5F88}\u{6697}`,
1803
+ "very light": `\u{5F88}\u{6D45}`,
1804
+ "vibrant": `\u{751F}\u{673A}\u{52C3}\u{52C3}`,
1805
+ "white": `\u{767D}\u{8272}`,
1806
+ "yellow": `\u{9EC4}\u{8272}`,
1807
+ "yellow green": `\u{9EC4}\u{8272}/\u{7EFF}\u{8272}`
1808
+ };
1809
+ //#endregion
1810
+ //#region node_modules/@react-stately/color/dist/zh-TW.mjs
1811
+ var $37cff576474bc8d4$exports = {};
1812
+ $37cff576474bc8d4$exports = {
1813
+ "alpha": `Alpha`,
1814
+ "black": `\u{9ED1}`,
1815
+ "blue": `\u{85CD}\u{8272}`,
1816
+ "blue purple": `\u{85CD}\u{7D2B}`,
1817
+ "brightness": `\u{4EAE}\u{5EA6}`,
1818
+ "brown": `\u{68D5}`,
1819
+ "brown yellow": `\u{68D5}\u{9EC3}`,
1820
+ "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1821
+ "cyan": `\u{9752}`,
1822
+ "cyan blue": `\u{9752}\u{85CD}`,
1823
+ "dark": `\u{6697}`,
1824
+ "gray": `\u{7070}`,
1825
+ "grayish": `\u{504F}\u{7070}`,
1826
+ "green": `\u{7DA0}\u{8272}`,
1827
+ "green cyan": `\u{9752}\u{7DA0}`,
1828
+ "hue": `\u{8272}\u{76F8}`,
1829
+ "light": `\u{6DFA}`,
1830
+ "lightness": `\u{660E}\u{4EAE}`,
1831
+ "magenta": `\u{6D0B}\u{7D05}`,
1832
+ "magenta pink": `\u{6DFA}\u{6D0B}\u{7D05}`,
1833
+ "orange": `\u{6A59}`,
1834
+ "orange yellow": `\u{6A59}\u{9EC3}`,
1835
+ "pale": `\u{6DE1}`,
1836
+ "pink": `\u{7C89}\u{7D05}`,
1837
+ "pink red": `\u{7C89}\u{7D05}`,
1838
+ "purple": `\u{7D2B}`,
1839
+ "purple magenta": `\u{7D2B}\u{6D0B}\u{7D05}`,
1840
+ "red": `\u{7D05}\u{8272}`,
1841
+ "red orange": `\u{6A59}\u{7D05}`,
1842
+ "saturation": `\u{98FD}\u{548C}\u{5EA6}`,
1843
+ "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} \u{900F}\u{660E}`,
1844
+ "very dark": `\u{5F88}\u{6697}`,
1845
+ "very light": `\u{5F88}\u{6DFA}`,
1846
+ "vibrant": `\u{9BAE}\u{8C54}`,
1847
+ "white": `\u{767D}`,
1848
+ "yellow": `\u{9EC3}`,
1849
+ "yellow green": `\u{9EC3}\u{7DA0}`
1850
+ };
1851
+ //#endregion
1852
+ //#region node_modules/@react-stately/color/dist/intlStrings.mjs
1853
+ var $f98dad178a72c00d$exports = {};
1854
+ $f98dad178a72c00d$exports = {
1855
+ "ar-AE": $2d805fd52bb48883$exports,
1856
+ "bg-BG": $6c28468dc1df643c$exports,
1857
+ "cs-CZ": $807554f8230db0ed$exports,
1858
+ "da-DK": $7097f64386f1761c$exports,
1859
+ "de-DE": $bdd847d8beb08799$exports,
1860
+ "el-GR": $a53e00b683950971$exports,
1861
+ "en-US": $21cdd87e84f28d89$exports,
1862
+ "es-ES": $92fee9698e4d675a$exports,
1863
+ "et-EE": $7ea012e91a5ad3ee$exports,
1864
+ "fi-FI": $8460c13bb2d75345$exports,
1865
+ "fr-FR": $2a2d5dc14e680587$exports,
1866
+ "he-IL": $9a3f292371bb0589$exports,
1867
+ "hr-HR": $4742231a685fa068$exports,
1868
+ "hu-HU": $05e247fd2960981e$exports,
1869
+ "it-IT": $a67524a79ccbe190$exports,
1870
+ "ja-JP": $a9eefe9d6c8cb7d5$exports,
1871
+ "ko-KR": $4a6b836d4f1bfaba$exports,
1872
+ "lt-LT": $c950e4b1c482abde$exports,
1873
+ "lv-LV": $d10d6b60dc50b438$exports,
1874
+ "nb-NO": $371a732b2494f452$exports,
1875
+ "nl-NL": $6d042cae6243464b$exports,
1876
+ "pl-PL": $d9ab5c2611e0bcd3$exports,
1877
+ "pt-BR": $73f77c9902e29ca6$exports,
1878
+ "pt-PT": $4f461eb266a95c10$exports,
1879
+ "ro-RO": $dc46bea2f2597899$exports,
1880
+ "ru-RU": $622bbd6719cc95af$exports,
1881
+ "sk-SK": $4da03c1ecd9a9c7d$exports,
1882
+ "sl-SI": $edb6b2fe456ed4e8$exports,
1883
+ "sr-SP": $264cd81c52b30815$exports,
1884
+ "sv-SE": $6f80afde0270dda7$exports,
1885
+ "tr-TR": $23a92651c6957668$exports,
1886
+ "uk-UA": $0f9b1074d04f4954$exports,
1887
+ "zh-CN": $a9cedf75b94e4916$exports,
1888
+ "zh-TW": $37cff576474bc8d4$exports
1889
+ };
1890
+ //#endregion
1891
+ //#region node_modules/@react-stately/color/dist/Color.mjs
1892
+ function $parcel$interopDefault$1(a) {
1893
+ return a && a.__esModule ? a.default : a;
1894
+ }
1895
+ var $799cddbef784668f$var$dictionary = new $5b160d28a433310d$export$c17fa47878dc55b6($parcel$interopDefault$1($f98dad178a72c00d$exports));
1896
+ function $799cddbef784668f$export$6e865ea70d7724f(value) {
1897
+ let res = $799cddbef784668f$var$RGBColor.parse(value) || $799cddbef784668f$var$HSBColor.parse(value) || $799cddbef784668f$var$HSLColor.parse(value);
1898
+ if (res) return res;
1899
+ throw new Error("Invalid color value: " + value);
1900
+ }
1901
+ function $799cddbef784668f$export$4cde5df63f53f473(v) {
1902
+ if (typeof v === "string") return $799cddbef784668f$export$6e865ea70d7724f(v);
1903
+ else return v;
1904
+ }
1905
+ function $799cddbef784668f$export$87f5012e10bb20b2(hue) {
1906
+ if (hue === 360) return hue;
1907
+ return (hue % 360 + 360) % 360;
1908
+ }
1909
+ var $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD = .68;
1910
+ var $799cddbef784668f$var$YELLOW_GREEN_LIGHTNESS_THRESHOLD = .85;
1911
+ var $799cddbef784668f$var$MAX_DARK_LIGHTNESS = .55;
1912
+ var $799cddbef784668f$var$GRAY_THRESHOLD = .001;
1913
+ var $799cddbef784668f$var$OKLCH_HUES = [
1914
+ [0, "pink"],
1915
+ [15, "red"],
1916
+ [48, "orange"],
1917
+ [94, "yellow"],
1918
+ [135, "green"],
1919
+ [175, "cyan"],
1920
+ [264, "blue"],
1921
+ [284, "purple"],
1922
+ [320, "magenta"],
1923
+ [349, "pink"]
1924
+ ];
1925
+ var $799cddbef784668f$var$Color = class {
1926
+ toHexInt() {
1927
+ return this.toFormat("rgb").toHexInt();
1928
+ }
1929
+ getChannelValue(channel) {
1930
+ if (channel in this) return this[channel];
1931
+ throw new Error("Unsupported color channel: " + channel);
1932
+ }
1933
+ withChannelValue(channel, value) {
1934
+ if (channel in this) {
1935
+ let x = this.clone();
1936
+ x[channel] = value;
1937
+ return x;
1938
+ }
1939
+ throw new Error("Unsupported color channel: " + channel);
1940
+ }
1941
+ getChannelName(channel, locale) {
1942
+ return ($5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary).getStringForLocale(channel, locale);
1943
+ }
1944
+ getColorSpaceAxes(xyChannels) {
1945
+ let { xChannel, yChannel } = xyChannels;
1946
+ let xCh = xChannel || this.getColorChannels().find((c) => c !== yChannel);
1947
+ let yCh = yChannel || this.getColorChannels().find((c) => c !== xCh);
1948
+ return {
1949
+ xChannel: xCh,
1950
+ yChannel: yCh,
1951
+ zChannel: this.getColorChannels().find((c) => c !== xCh && c !== yCh)
1952
+ };
1953
+ }
1954
+ getColorName(locale) {
1955
+ let [l, c, h] = $799cddbef784668f$var$toOKLCH(this);
1956
+ let strings = $5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary;
1957
+ if (l > .999) return strings.getStringForLocale("white", locale);
1958
+ if (l < .001) return strings.getStringForLocale("black", locale);
1959
+ let hue;
1960
+ [hue, l] = this.getOklchHue(l, c, h, locale);
1961
+ let lightness = "";
1962
+ let chroma = "";
1963
+ if (c <= .1 && c >= $799cddbef784668f$var$GRAY_THRESHOLD) if (l >= .7) chroma = "pale";
1964
+ else chroma = "grayish";
1965
+ else if (c >= .15) chroma = "vibrant";
1966
+ if (l < .3) lightness = "very dark";
1967
+ else if (l < $799cddbef784668f$var$MAX_DARK_LIGHTNESS) lightness = "dark";
1968
+ else if (l < .7);
1969
+ else if (l < .85) lightness = "light";
1970
+ else lightness = "very light";
1971
+ if (chroma) chroma = strings.getStringForLocale(chroma, locale);
1972
+ if (lightness) lightness = strings.getStringForLocale(lightness, locale);
1973
+ let alpha = this.getChannelValue("alpha");
1974
+ let formatter = new $6db58dc88e78b024$export$2f817fcdc4b89ae0(locale, strings);
1975
+ if (alpha < 1) {
1976
+ let percentTransparent = new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, { style: "percent" }).format(1 - alpha);
1977
+ return formatter.format("transparentColorName", {
1978
+ lightness,
1979
+ chroma,
1980
+ hue,
1981
+ percentTransparent
1982
+ }).replace(/\s+/g, " ").trim();
1983
+ } else return formatter.format("colorName", {
1984
+ lightness,
1985
+ chroma,
1986
+ hue
1987
+ }).replace(/\s+/g, " ").trim();
1988
+ }
1989
+ getOklchHue(l, c, h, locale) {
1990
+ let strings = $5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary;
1991
+ if (c < $799cddbef784668f$var$GRAY_THRESHOLD) return [strings.getStringForLocale("gray", locale), l];
1992
+ for (let i = 0; i < $799cddbef784668f$var$OKLCH_HUES.length; i++) {
1993
+ let [hue, hueName] = $799cddbef784668f$var$OKLCH_HUES[i];
1994
+ let [nextHue, nextHueName] = $799cddbef784668f$var$OKLCH_HUES[i + 1] || [360, "pink"];
1995
+ if (h >= hue && h < nextHue) {
1996
+ if (hueName === "orange") if (l < $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD) hueName = "brown";
1997
+ else l = l - $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD + $799cddbef784668f$var$MAX_DARK_LIGHTNESS;
1998
+ if (h > hue + (nextHue - hue) / 2 && hueName !== nextHueName) hueName = `${hueName} ${nextHueName}`;
1999
+ else if (hueName === "yellow" && l < $799cddbef784668f$var$YELLOW_GREEN_LIGHTNESS_THRESHOLD) hueName = "yellow green";
2000
+ return [strings.getStringForLocale(hueName, locale).toLocaleLowerCase(locale), l];
2001
+ }
2002
+ }
2003
+ throw new Error("Unexpected hue");
2004
+ }
2005
+ getHueName(locale) {
2006
+ let [l, c, h] = $799cddbef784668f$var$toOKLCH(this);
2007
+ let [name] = this.getOklchHue(l, c, h, locale);
2008
+ return name;
2009
+ }
2010
+ };
2011
+ var $799cddbef784668f$var$RGBColor = class $799cddbef784668f$var$RGBColor extends $799cddbef784668f$var$Color {
2012
+ static parse(value) {
2013
+ let colors = [];
2014
+ if (/^#[\da-f]+$/i.test(value) && [
2015
+ 4,
2016
+ 5,
2017
+ 7,
2018
+ 9
2019
+ ].includes(value.length)) {
2020
+ const values = (value.length < 6 ? value.replace(/[^#]/gi, "$&$&") : value).slice(1).split("");
2021
+ while (values.length > 0) colors.push(parseInt(values.splice(0, 2).join(""), 16));
2022
+ colors[3] = colors[3] !== void 0 ? colors[3] / 255 : void 0;
2023
+ }
2024
+ const match = value.match(/^rgba?\((.*)\)$/);
2025
+ if (match === null || match === void 0 ? void 0 : match[1]) {
2026
+ colors = match[1].split(",").map((value) => Number(value.trim()));
2027
+ colors = colors.map((num, i) => {
2028
+ return $9446cca9a3875146$export$7d15b64cf5a3a4c4(num !== null && num !== void 0 ? num : 0, 0, i < 3 ? 255 : 1);
2029
+ });
2030
+ }
2031
+ if (colors[0] === void 0 || colors[1] === void 0 || colors[2] === void 0) return void 0;
2032
+ var _colors_;
2033
+ return colors.length < 3 ? void 0 : new $799cddbef784668f$var$RGBColor(colors[0], colors[1], colors[2], (_colors_ = colors[3]) !== null && _colors_ !== void 0 ? _colors_ : 1);
2034
+ }
2035
+ toString(format = "css") {
2036
+ switch (format) {
2037
+ case "hex": return "#" + (this.red.toString(16).padStart(2, "0") + this.green.toString(16).padStart(2, "0") + this.blue.toString(16).padStart(2, "0")).toUpperCase();
2038
+ case "hexa": return "#" + (this.red.toString(16).padStart(2, "0") + this.green.toString(16).padStart(2, "0") + this.blue.toString(16).padStart(2, "0") + Math.round(this.alpha * 255).toString(16).padStart(2, "0")).toUpperCase();
2039
+ case "rgb": return `rgb(${this.red}, ${this.green}, ${this.blue})`;
2040
+ case "css":
2041
+ case "rgba": return `rgba(${this.red}, ${this.green}, ${this.blue}, ${this.alpha})`;
2042
+ default: return this.toFormat(format).toString(format);
2043
+ }
2044
+ }
2045
+ toFormat(format) {
2046
+ switch (format) {
2047
+ case "hex":
2048
+ case "hexa":
2049
+ case "rgb":
2050
+ case "rgba": return this;
2051
+ case "hsb":
2052
+ case "hsba": return this.toHSB();
2053
+ case "hsl":
2054
+ case "hsla": return this.toHSL();
2055
+ default: throw new Error("Unsupported color conversion: rgb -> " + format);
2056
+ }
2057
+ }
2058
+ toHexInt() {
2059
+ return this.red << 16 | this.green << 8 | this.blue;
2060
+ }
2061
+ /**
2062
+ * Converts an RGB color value to HSB.
2063
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#From_RGB.
2064
+ * @returns An HSBColor object.
2065
+ */ toHSB() {
2066
+ const red = this.red / 255;
2067
+ const green = this.green / 255;
2068
+ const blue = this.blue / 255;
2069
+ const min = Math.min(red, green, blue);
2070
+ const brightness = Math.max(red, green, blue);
2071
+ const chroma = brightness - min;
2072
+ const saturation = brightness === 0 ? 0 : chroma / brightness;
2073
+ let hue = 0;
2074
+ if (chroma !== 0) {
2075
+ switch (brightness) {
2076
+ case red:
2077
+ hue = (green - blue) / chroma + (green < blue ? 6 : 0);
2078
+ break;
2079
+ case green:
2080
+ hue = (blue - red) / chroma + 2;
2081
+ break;
2082
+ case blue:
2083
+ hue = (red - green) / chroma + 4;
2084
+ break;
2085
+ }
2086
+ hue /= 6;
2087
+ }
2088
+ return new $799cddbef784668f$var$HSBColor($9446cca9a3875146$export$b6268554fba451f(hue * 360, 2), $9446cca9a3875146$export$b6268554fba451f(saturation * 100, 2), $9446cca9a3875146$export$b6268554fba451f(brightness * 100, 2), this.alpha);
2089
+ }
2090
+ /**
2091
+ * Converts an RGB color value to HSL.
2092
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#From_RGB.
2093
+ * @returns An HSLColor object.
2094
+ */ toHSL() {
2095
+ const red = this.red / 255;
2096
+ const green = this.green / 255;
2097
+ const blue = this.blue / 255;
2098
+ const min = Math.min(red, green, blue);
2099
+ const max = Math.max(red, green, blue);
2100
+ const lightness = (max + min) / 2;
2101
+ const chroma = max - min;
2102
+ let hue;
2103
+ let saturation;
2104
+ if (chroma === 0) hue = saturation = 0;
2105
+ else {
2106
+ saturation = chroma / (lightness < .5 ? max + min : 2 - max - min);
2107
+ switch (max) {
2108
+ case red:
2109
+ hue = (green - blue) / chroma + (green < blue ? 6 : 0);
2110
+ break;
2111
+ case green:
2112
+ hue = (blue - red) / chroma + 2;
2113
+ break;
2114
+ case blue:
2115
+ default:
2116
+ hue = (red - green) / chroma + 4;
2117
+ break;
2118
+ }
2119
+ hue /= 6;
2120
+ }
2121
+ return new $799cddbef784668f$var$HSLColor($9446cca9a3875146$export$b6268554fba451f(hue * 360, 2), $9446cca9a3875146$export$b6268554fba451f(saturation * 100, 2), $9446cca9a3875146$export$b6268554fba451f(lightness * 100, 2), this.alpha);
2122
+ }
2123
+ clone() {
2124
+ return new $799cddbef784668f$var$RGBColor(this.red, this.green, this.blue, this.alpha);
2125
+ }
2126
+ getChannelRange(channel) {
2127
+ switch (channel) {
2128
+ case "red":
2129
+ case "green":
2130
+ case "blue": return {
2131
+ minValue: 0,
2132
+ maxValue: 255,
2133
+ step: 1,
2134
+ pageSize: 17
2135
+ };
2136
+ case "alpha": return {
2137
+ minValue: 0,
2138
+ maxValue: 1,
2139
+ step: .01,
2140
+ pageSize: .1
2141
+ };
2142
+ default: throw new Error("Unknown color channel: " + channel);
2143
+ }
2144
+ }
2145
+ getChannelFormatOptions(channel) {
2146
+ switch (channel) {
2147
+ case "red":
2148
+ case "green":
2149
+ case "blue": return { style: "decimal" };
2150
+ case "alpha": return { style: "percent" };
2151
+ default: throw new Error("Unknown color channel: " + channel);
2152
+ }
2153
+ }
2154
+ formatChannelValue(channel, locale) {
2155
+ let options = this.getChannelFormatOptions(channel);
2156
+ let value = this.getChannelValue(channel);
2157
+ return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2158
+ }
2159
+ getColorSpace() {
2160
+ return "rgb";
2161
+ }
2162
+ getColorChannels() {
2163
+ return $799cddbef784668f$var$RGBColor.colorChannels;
2164
+ }
2165
+ constructor(red, green, blue, alpha) {
2166
+ super(), this.red = red, this.green = green, this.blue = blue, this.alpha = alpha;
2167
+ }
2168
+ };
2169
+ $799cddbef784668f$var$RGBColor.colorChannels = [
2170
+ "red",
2171
+ "green",
2172
+ "blue"
2173
+ ];
2174
+ var $799cddbef784668f$var$HSB_REGEX = /hsb\(([-+]?\d+(?:.\d+)?\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d+(?:.\d+)?%)\)|hsba\(([-+]?\d+(?:.\d+)?\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d(.\d+)?)\)/;
2175
+ var $799cddbef784668f$var$HSBColor = class $799cddbef784668f$var$HSBColor extends $799cddbef784668f$var$Color {
2176
+ static parse(value) {
2177
+ let m;
2178
+ if (m = value.match($799cddbef784668f$var$HSB_REGEX)) {
2179
+ var _m_;
2180
+ const [h, s, b, a] = ((_m_ = m[1]) !== null && _m_ !== void 0 ? _m_ : m[2]).split(",").map((n) => Number(n.trim().replace("%", "")));
2181
+ return new $799cddbef784668f$var$HSBColor($799cddbef784668f$export$87f5012e10bb20b2(h), $9446cca9a3875146$export$7d15b64cf5a3a4c4(s, 0, 100), $9446cca9a3875146$export$7d15b64cf5a3a4c4(b, 0, 100), $9446cca9a3875146$export$7d15b64cf5a3a4c4(a !== null && a !== void 0 ? a : 1, 0, 1));
2182
+ }
2183
+ }
2184
+ toString(format = "css") {
2185
+ switch (format) {
2186
+ case "css": return this.toHSL().toString("css");
2187
+ case "hex": return this.toRGB().toString("hex");
2188
+ case "hexa": return this.toRGB().toString("hexa");
2189
+ case "hsb": return `hsb(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.brightness, 2)}%)`;
2190
+ case "hsba": return `hsba(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.brightness, 2)}%, ${this.alpha})`;
2191
+ default: return this.toFormat(format).toString(format);
2192
+ }
2193
+ }
2194
+ toFormat(format) {
2195
+ switch (format) {
2196
+ case "hsb":
2197
+ case "hsba": return this;
2198
+ case "hsl":
2199
+ case "hsla": return this.toHSL();
2200
+ case "rgb":
2201
+ case "rgba": return this.toRGB();
2202
+ default: throw new Error("Unsupported color conversion: hsb -> " + format);
2203
+ }
2204
+ }
2205
+ /**
2206
+ * Converts a HSB color to HSL.
2207
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSV_to_HSL.
2208
+ * @returns An HSLColor object.
2209
+ */ toHSL() {
2210
+ let saturation = this.saturation / 100;
2211
+ let brightness = this.brightness / 100;
2212
+ let lightness = brightness * (1 - saturation / 2);
2213
+ saturation = lightness === 0 || lightness === 1 ? 0 : (brightness - lightness) / Math.min(lightness, 1 - lightness);
2214
+ return new $799cddbef784668f$var$HSLColor($9446cca9a3875146$export$b6268554fba451f(this.hue, 2), $9446cca9a3875146$export$b6268554fba451f(saturation * 100, 2), $9446cca9a3875146$export$b6268554fba451f(lightness * 100, 2), this.alpha);
2215
+ }
2216
+ /**
2217
+ * Converts a HSV color value to RGB.
2218
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSV_to_RGB_alternative.
2219
+ * @returns An RGBColor object.
2220
+ */ toRGB() {
2221
+ let hue = this.hue;
2222
+ let saturation = this.saturation / 100;
2223
+ let brightness = this.brightness / 100;
2224
+ let fn = (n, k = (n + hue / 60) % 6) => brightness - saturation * brightness * Math.max(Math.min(k, 4 - k, 1), 0);
2225
+ return new $799cddbef784668f$var$RGBColor(Math.round(fn(5) * 255), Math.round(fn(3) * 255), Math.round(fn(1) * 255), this.alpha);
2226
+ }
2227
+ clone() {
2228
+ return new $799cddbef784668f$var$HSBColor(this.hue, this.saturation, this.brightness, this.alpha);
2229
+ }
2230
+ getChannelRange(channel) {
2231
+ switch (channel) {
2232
+ case "hue": return {
2233
+ minValue: 0,
2234
+ maxValue: 360,
2235
+ step: 1,
2236
+ pageSize: 15
2237
+ };
2238
+ case "saturation":
2239
+ case "brightness": return {
2240
+ minValue: 0,
2241
+ maxValue: 100,
2242
+ step: 1,
2243
+ pageSize: 10
2244
+ };
2245
+ case "alpha": return {
2246
+ minValue: 0,
2247
+ maxValue: 1,
2248
+ step: .01,
2249
+ pageSize: .1
2250
+ };
2251
+ default: throw new Error("Unknown color channel: " + channel);
2252
+ }
2253
+ }
2254
+ getChannelFormatOptions(channel) {
2255
+ switch (channel) {
2256
+ case "hue": return {
2257
+ style: "unit",
2258
+ unit: "degree",
2259
+ unitDisplay: "narrow"
2260
+ };
2261
+ case "saturation":
2262
+ case "brightness":
2263
+ case "alpha": return { style: "percent" };
2264
+ default: throw new Error("Unknown color channel: " + channel);
2265
+ }
2266
+ }
2267
+ formatChannelValue(channel, locale) {
2268
+ let options = this.getChannelFormatOptions(channel);
2269
+ let value = this.getChannelValue(channel);
2270
+ if (channel === "saturation" || channel === "brightness") value /= 100;
2271
+ return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2272
+ }
2273
+ getColorSpace() {
2274
+ return "hsb";
2275
+ }
2276
+ getColorChannels() {
2277
+ return $799cddbef784668f$var$HSBColor.colorChannels;
2278
+ }
2279
+ constructor(hue, saturation, brightness, alpha) {
2280
+ super(), this.hue = hue, this.saturation = saturation, this.brightness = brightness, this.alpha = alpha;
2281
+ }
2282
+ };
2283
+ $799cddbef784668f$var$HSBColor.colorChannels = [
2284
+ "hue",
2285
+ "saturation",
2286
+ "brightness"
2287
+ ];
2288
+ var $799cddbef784668f$var$HSL_REGEX = /hsl\(([-+]?\d+(?:.\d+)?\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d+(?:.\d+)?%)\)|hsla\(([-+]?\d+(?:.\d+)?\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d+(?:.\d+)?%\s*,\s*[-+]?\d(.\d+)?)\)/;
2289
+ var $799cddbef784668f$var$HSLColor = class $799cddbef784668f$var$HSLColor extends $799cddbef784668f$var$Color {
2290
+ static parse(value) {
2291
+ let m;
2292
+ if (m = value.match($799cddbef784668f$var$HSL_REGEX)) {
2293
+ var _m_;
2294
+ const [h, s, l, a] = ((_m_ = m[1]) !== null && _m_ !== void 0 ? _m_ : m[2]).split(",").map((n) => Number(n.trim().replace("%", "")));
2295
+ return new $799cddbef784668f$var$HSLColor($799cddbef784668f$export$87f5012e10bb20b2(h), $9446cca9a3875146$export$7d15b64cf5a3a4c4(s, 0, 100), $9446cca9a3875146$export$7d15b64cf5a3a4c4(l, 0, 100), $9446cca9a3875146$export$7d15b64cf5a3a4c4(a !== null && a !== void 0 ? a : 1, 0, 1));
2296
+ }
2297
+ }
2298
+ toString(format = "css") {
2299
+ switch (format) {
2300
+ case "hex": return this.toRGB().toString("hex");
2301
+ case "hexa": return this.toRGB().toString("hexa");
2302
+ case "hsl": return `hsl(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.lightness, 2)}%)`;
2303
+ case "css":
2304
+ case "hsla": return `hsla(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.lightness, 2)}%, ${this.alpha})`;
2305
+ default: return this.toFormat(format).toString(format);
2306
+ }
2307
+ }
2308
+ toFormat(format) {
2309
+ switch (format) {
2310
+ case "hsl":
2311
+ case "hsla": return this;
2312
+ case "hsb":
2313
+ case "hsba": return this.toHSB();
2314
+ case "rgb":
2315
+ case "rgba": return this.toRGB();
2316
+ default: throw new Error("Unsupported color conversion: hsl -> " + format);
2317
+ }
2318
+ }
2319
+ /**
2320
+ * Converts a HSL color to HSB.
2321
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_HSV.
2322
+ * @returns An HSBColor object.
2323
+ */ toHSB() {
2324
+ let saturation = this.saturation / 100;
2325
+ let lightness = this.lightness / 100;
2326
+ let brightness = lightness + saturation * Math.min(lightness, 1 - lightness);
2327
+ saturation = brightness === 0 ? 0 : 2 * (1 - lightness / brightness);
2328
+ return new $799cddbef784668f$var$HSBColor($9446cca9a3875146$export$b6268554fba451f(this.hue, 2), $9446cca9a3875146$export$b6268554fba451f(saturation * 100, 2), $9446cca9a3875146$export$b6268554fba451f(brightness * 100, 2), this.alpha);
2329
+ }
2330
+ /**
2331
+ * Converts a HSL color to RGB.
2332
+ * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB_alternative.
2333
+ * @returns An RGBColor object.
2334
+ */ toRGB() {
2335
+ let hue = this.hue;
2336
+ let saturation = this.saturation / 100;
2337
+ let lightness = this.lightness / 100;
2338
+ let a = saturation * Math.min(lightness, 1 - lightness);
2339
+ let fn = (n, k = (n + hue / 30) % 12) => lightness - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);
2340
+ return new $799cddbef784668f$var$RGBColor(Math.round(fn(0) * 255), Math.round(fn(8) * 255), Math.round(fn(4) * 255), this.alpha);
2341
+ }
2342
+ clone() {
2343
+ return new $799cddbef784668f$var$HSLColor(this.hue, this.saturation, this.lightness, this.alpha);
2344
+ }
2345
+ getChannelRange(channel) {
2346
+ switch (channel) {
2347
+ case "hue": return {
2348
+ minValue: 0,
2349
+ maxValue: 360,
2350
+ step: 1,
2351
+ pageSize: 15
2352
+ };
2353
+ case "saturation":
2354
+ case "lightness": return {
2355
+ minValue: 0,
2356
+ maxValue: 100,
2357
+ step: 1,
2358
+ pageSize: 10
2359
+ };
2360
+ case "alpha": return {
2361
+ minValue: 0,
2362
+ maxValue: 1,
2363
+ step: .01,
2364
+ pageSize: .1
2365
+ };
2366
+ default: throw new Error("Unknown color channel: " + channel);
2367
+ }
2368
+ }
2369
+ getChannelFormatOptions(channel) {
2370
+ switch (channel) {
2371
+ case "hue": return {
2372
+ style: "unit",
2373
+ unit: "degree",
2374
+ unitDisplay: "narrow"
2375
+ };
2376
+ case "saturation":
2377
+ case "lightness":
2378
+ case "alpha": return { style: "percent" };
2379
+ default: throw new Error("Unknown color channel: " + channel);
2380
+ }
2381
+ }
2382
+ formatChannelValue(channel, locale) {
2383
+ let options = this.getChannelFormatOptions(channel);
2384
+ let value = this.getChannelValue(channel);
2385
+ if (channel === "saturation" || channel === "lightness") value /= 100;
2386
+ return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2387
+ }
2388
+ getColorSpace() {
2389
+ return "hsl";
2390
+ }
2391
+ getColorChannels() {
2392
+ return $799cddbef784668f$var$HSLColor.colorChannels;
2393
+ }
2394
+ constructor(hue, saturation, lightness, alpha) {
2395
+ super(), this.hue = hue, this.saturation = saturation, this.lightness = lightness, this.alpha = alpha;
2396
+ }
2397
+ };
2398
+ $799cddbef784668f$var$HSLColor.colorChannels = [
2399
+ "hue",
2400
+ "saturation",
2401
+ "lightness"
2402
+ ];
2403
+ function $799cddbef784668f$var$toOKLCH(color) {
2404
+ let rgb = color.toFormat("rgb");
2405
+ let red = rgb.getChannelValue("red") / 255;
2406
+ let green = rgb.getChannelValue("green") / 255;
2407
+ let blue = rgb.getChannelValue("blue") / 255;
2408
+ [red, green, blue] = $799cddbef784668f$var$lin_sRGB(red, green, blue);
2409
+ let [x, y, z] = $799cddbef784668f$var$lin_sRGB_to_XYZ(red, green, blue);
2410
+ let [l, a, b] = $799cddbef784668f$var$XYZ_to_OKLab(x, y, z);
2411
+ return $799cddbef784668f$var$OKLab_to_OKLCH(l, a, b);
2412
+ }
2413
+ function $799cddbef784668f$var$OKLab_to_OKLCH(l, a, b) {
2414
+ var hue = Math.atan2(b, a) * 180 / Math.PI;
2415
+ return [
2416
+ l,
2417
+ Math.sqrt(a ** 2 + b ** 2),
2418
+ hue >= 0 ? hue : hue + 360
2419
+ ];
2420
+ }
2421
+ function $799cddbef784668f$var$lin_sRGB(r, g, b) {
2422
+ return [
2423
+ $799cddbef784668f$var$lin_sRGB_component(r),
2424
+ $799cddbef784668f$var$lin_sRGB_component(g),
2425
+ $799cddbef784668f$var$lin_sRGB_component(b)
2426
+ ];
2427
+ }
2428
+ function $799cddbef784668f$var$lin_sRGB_component(val) {
2429
+ let sign = val < 0 ? -1 : 1;
2430
+ let abs = Math.abs(val);
2431
+ if (abs <= .04045) return val / 12.92;
2432
+ return sign * Math.pow((abs + .055) / 1.055, 2.4);
2433
+ }
2434
+ function $799cddbef784668f$var$lin_sRGB_to_XYZ(r, g, b) {
2435
+ return $799cddbef784668f$var$multiplyMatrix([
2436
+ 506752 / 1228815,
2437
+ 87881 / 245763,
2438
+ 12673 / 70218,
2439
+ 87098 / 409605,
2440
+ 175762 / 245763,
2441
+ 12673 / 175545,
2442
+ 7918 / 409605,
2443
+ 87881 / 737289,
2444
+ 1001167 / 1053270
2445
+ ], r, g, b);
2446
+ }
2447
+ function $799cddbef784668f$var$XYZ_to_OKLab(x, y, z) {
2448
+ const XYZtoLMS = [
2449
+ .819022437996703,
2450
+ .3619062600528904,
2451
+ -.1288737815209879,
2452
+ .0329836539323885,
2453
+ .9292868615863434,
2454
+ .0361446663506424,
2455
+ .0481771893596242,
2456
+ .2642395317527308,
2457
+ .6335478284694309
2458
+ ];
2459
+ const LMStoOKLab = [
2460
+ .210454268309314,
2461
+ .7936177747023054,
2462
+ -.0040720430116193,
2463
+ 1.9779985324311684,
2464
+ -2.42859224204858,
2465
+ .450593709617411,
2466
+ .0259040424655478,
2467
+ .7827717124575296,
2468
+ -.8086757549230774
2469
+ ];
2470
+ let [a, b, c] = $799cddbef784668f$var$multiplyMatrix(XYZtoLMS, x, y, z);
2471
+ return $799cddbef784668f$var$multiplyMatrix(LMStoOKLab, Math.cbrt(a), Math.cbrt(b), Math.cbrt(c));
2472
+ }
2473
+ function $799cddbef784668f$var$multiplyMatrix(m, x, y, z) {
2474
+ return [
2475
+ m[0] * x + m[1] * y + m[2] * z,
2476
+ m[3] * x + m[4] * y + m[5] * z,
2477
+ m[6] * x + m[7] * y + m[8] * z
2478
+ ];
2479
+ }
2480
+ //#endregion
2481
+ //#region node_modules/@react-aria/color/dist/useColorSwatch.mjs
2482
+ function $parcel$interopDefault(a) {
2483
+ return a && a.__esModule ? a.default : a;
2484
+ }
2485
+ function $2993fcad7650b98d$export$9060ae606178d849(props) {
2486
+ let { color: value, colorName } = props;
2487
+ let nonNullValue = value || "#fff0";
2488
+ let color = useMemo(() => typeof nonNullValue === "string" ? $799cddbef784668f$export$6e865ea70d7724f(nonNullValue) : nonNullValue, [nonNullValue]);
2489
+ let { locale } = $18f2051aff69b9bf$export$43bb16f9c6d9e3f7();
2490
+ let DOMProps = $65484d02dcb7eb3e$export$457c3d6518dd4c6f(props, { labelable: true });
2491
+ let stringFormatter = $fca6afa0e843324b$export$f12b703ca79dfbb1($parcel$interopDefault($3493a52097159720$exports), "@react-aria/color");
2492
+ let id = $bdb11010cef70236$export$f680877a34711e37(props.id);
2493
+ if (!colorName) colorName = color.getChannelValue("alpha") === 0 ? stringFormatter.format("transparent") : color.getColorName(locale);
2494
+ return {
2495
+ colorSwatchProps: {
2496
+ ...DOMProps,
2497
+ role: "img",
2498
+ "aria-roledescription": stringFormatter.format("colorSwatch"),
2499
+ "aria-label": [colorName, props["aria-label"] || ""].filter(Boolean).join(", "),
2500
+ "aria-labelledby": props["aria-labelledby"] ? `${id} ${props["aria-labelledby"]}` : void 0,
2501
+ id,
2502
+ style: {
2503
+ backgroundColor: color.toString("css"),
2504
+ forcedColorAdjust: "none"
2505
+ }
2506
+ },
2507
+ color: color || null
2508
+ };
2509
+ }
2510
+ //#endregion
2511
+ //#region node_modules/react-aria-components/dist/ColorSwatch.mjs
2512
+ var $251c695a52d94a8d$export$83cc445538396800 = createContext(null);
2513
+ var $251c695a52d94a8d$export$cae13e90592f246a = forwardRef(function ColorSwatch(props, ref) {
2514
+ [props, ref] = $64fa3d84918910a7$export$29f1550f4b0d4415(props, ref, $251c695a52d94a8d$export$83cc445538396800);
2515
+ let { colorSwatchProps, color } = $2993fcad7650b98d$export$9060ae606178d849(props);
2516
+ let renderProps = $64fa3d84918910a7$export$4d86445c2cf5e3({
2517
+ ...props,
2518
+ defaultClassName: "react-aria-ColorSwatch",
2519
+ defaultStyle: colorSwatchProps.style,
2520
+ values: { color }
2521
+ });
2522
+ let DOMProps = $65484d02dcb7eb3e$export$457c3d6518dd4c6f(props, { global: true });
2523
+ return React.createElement($64fa3d84918910a7$export$df3a06d6289f983e.div, {
2524
+ ...$3ef42575df84b30b$export$9d1611c77c2fe928(DOMProps, colorSwatchProps, renderProps),
2525
+ slot: props.slot || void 0,
2526
+ ref
2527
+ });
2528
+ });
2529
+ //#endregion
2530
+ //#region lib/components/color-pickers/color-swatch.jsx
2531
+ /**
2532
+ * A simple color/gradient swatch.
2533
+ *
2534
+ * @component
2535
+ * @param {Object} props - Component props.
2536
+ * @param {string} [props.color] - The color to display.
2537
+ * @param {string} [props.gradient] - The gradient to display.
2538
+ * @param {string} [props.className] - Additional clsx to apply.
2539
+ * @param {string} [props.colorName] - The name of the color. Should be auto-generated for colors.
2540
+ * @param {boolean} [props.flat] - If `true`, component will look more flat. Useful for nested layer of controls.
2541
+ * @param {boolean} [props.customGradient=false] - Set to `true` if using a custom gradient.
2542
+ *
2543
+ * @returns {JSX.Element} The ColorSwatch component.
2544
+ *
2545
+ * @example
2546
+ * <ColorSwatch color="#FF0000" />
2547
+ *
2548
+ * @example
2549
+ * <ColorSwatch gradient="linear-gradient(45deg, #FF0000, #00FF00)" />
2550
+ */
2551
+ var ColorSwatch = (props) => {
2552
+ const { color: rawColor, gradient, className, colorName, flat, customGradient = false } = props;
2553
+ const checkerPattern = "repeating-conic-gradient(#CCC 0% 25%, white 0% 50%) 50% / 0.75rem 0.75rem";
2554
+ let color;
2555
+ if (rawColor && !gradient && !customGradient) try {
2556
+ if (rawColor === "transparent") color = "rgba(0, 0, 0, 0)";
2557
+ else color = $799cddbef784668f$export$6e865ea70d7724f(rawColor);
2558
+ } catch (error) {
2559
+ color = null;
2560
+ }
2561
+ const backgroundGradient = gradient ? `${gradient}, ${checkerPattern}` : `linear-gradient(${color}, ${color}), ${checkerPattern}`;
2562
+ return jsx($251c695a52d94a8d$export$cae13e90592f246a, {
2563
+ ...props,
2564
+ style: { background: (color || gradient) && backgroundGradient },
2565
+ className: () => clsx("es:size-6 es:rounded-5 es:in-aria-expanded:rounded-2xl es:border es:border-secondary-300 es:transition-[border-radius]", !color && !gradient && !customGradient && "es:bg-white", !flat && "es:shadow-sm", className),
2566
+ colorName: !color && !gradient && !customGradient ? __("No color", "eightshift-ui-components") : colorName,
2567
+ color,
2568
+ children: !color && !gradient && !customGradient && jsx("div", { className: "es:m-auto es:h-full es:w-px es:rotate-45 es:rounded-md es:bg-red-500" })
2569
+ });
2570
+ };
2571
+ //#endregion
2572
+ export { $3493a52097159720$exports as a, $799cddbef784668f$export$6e865ea70d7724f as i, $251c695a52d94a8d$export$cae13e90592f246a as n, $799cddbef784668f$export$4cde5df63f53f473 as r, ColorSwatch as t };