@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
@@ -1,2570 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { d as $bdb11010cef70236$export$f680877a34711e37, $ as $64fa3d84918910a7$export$29f1550f4b0d4415, h as $64fa3d84918910a7$export$4d86445c2cf5e3, a as $64fa3d84918910a7$export$df3a06d6289f983e, b as $3ef42575df84b30b$export$9d1611c77c2fe928 } from "./utils-Cr3pLd9c.js";
3
- import { $ as $65484d02dcb7eb3e$export$457c3d6518dd4c6f } from "./filterDOMProps-eGTqWSTd.js";
4
- import $dbSRa$react__default, { useMemo, forwardRef, createContext } from "react";
5
- import { $ as $9446cca9a3875146$export$7d15b64cf5a3a4c4, b as $9446cca9a3875146$export$b6268554fba451f } from "./number-7sOvrqo0.js";
6
- import { a as $5b160d28a433310d$export$c17fa47878dc55b6, b as $6db58dc88e78b024$export$2f817fcdc4b89ae0, $ as $fca6afa0e843324b$export$f12b703ca79dfbb1 } from "./useLocalizedStringFormatter-CEDs0LsA.js";
7
- import { $ as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5 } from "./NumberFormatter-DA8u1Ot7.js";
8
- import { $ as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7 } from "./context-iUFQCK8m.js";
9
- import { c as clsx } from "./clsx-DgYk2OaC.js";
10
- import { _ as __ } from "./default-i18n-CnQeC5Pl.js";
11
- var $eccab2b0118aef08$exports = {};
12
- $eccab2b0118aef08$exports = {
13
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
14
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
15
- "colorPicker": `أداة انتقاء اللون`,
16
- "colorSwatch": `تغيير الألوان`,
17
- "transparent": `شفاف`,
18
- "twoDimensionalSlider": `مُنزلق 2D`
19
- };
20
- var $bf2b4507594e3d45$exports = {};
21
- $bf2b4507594e3d45$exports = {
22
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
23
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
24
- "colorPicker": `Средство за избиране на цвят`,
25
- "colorSwatch": `цветна мостра`,
26
- "transparent": `прозрачен`,
27
- "twoDimensionalSlider": `2D плъзгач`
28
- };
29
- var $01c08487af7ecd14$exports = {};
30
- $01c08487af7ecd14$exports = {
31
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
32
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
33
- "colorPicker": `Výběr barvy`,
34
- "colorSwatch": `barevný vzorek`,
35
- "transparent": `průhledný`,
36
- "twoDimensionalSlider": `2D posuvník`
37
- };
38
- var $5e997db6ea0d10f6$exports = {};
39
- $5e997db6ea0d10f6$exports = {
40
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
41
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
42
- "colorPicker": `Farvevælger`,
43
- "colorSwatch": `farveprøve`,
44
- "transparent": `gennemsigtig`,
45
- "twoDimensionalSlider": `2D-skyder`
46
- };
47
- var $fe5998f640a79fd2$exports = {};
48
- $fe5998f640a79fd2$exports = {
49
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
50
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
51
- "colorPicker": `Farbwähler`,
52
- "colorSwatch": `Farbfeld`,
53
- "transparent": `transparent`,
54
- "twoDimensionalSlider": `2D-Schieberegler`
55
- };
56
- var $18e4d1d5b500a9ee$exports = {};
57
- $18e4d1d5b500a9ee$exports = {
58
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
59
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
60
- "colorPicker": `Επιλογέας χρωμάτων`,
61
- "colorSwatch": `χρωματικό δείγμα`,
62
- "transparent": `διαφανές`,
63
- "twoDimensionalSlider": `Ρυθμιστικό 2D`
64
- };
65
- var $bf90a11a7a42a0f7$exports = {};
66
- $bf90a11a7a42a0f7$exports = {
67
- "colorPicker": `Color picker`,
68
- "twoDimensionalSlider": `2D slider`,
69
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
70
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
71
- "colorSwatch": `color swatch`,
72
- "transparent": `transparent`
73
- };
74
- var $dd0d25f885b5c5f3$exports = {};
75
- $dd0d25f885b5c5f3$exports = {
76
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
77
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
78
- "colorPicker": `Selector de color`,
79
- "colorSwatch": `muestra de color`,
80
- "transparent": `transparente`,
81
- "twoDimensionalSlider": `Regulador 2D`
82
- };
83
- var $d950967017e3485b$exports = {};
84
- $d950967017e3485b$exports = {
85
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
86
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
87
- "colorPicker": `Värvivalija`,
88
- "colorSwatch": `värvinäidis`,
89
- "transparent": `läbipaistev`,
90
- "twoDimensionalSlider": `2D-liugur`
91
- };
92
- var $00a415a3f0ab315a$exports = {};
93
- $00a415a3f0ab315a$exports = {
94
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
95
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
96
- "colorPicker": `Värimuokkain`,
97
- "colorSwatch": `värimalli`,
98
- "transparent": `läpinäkyvä`,
99
- "twoDimensionalSlider": `2D-liukusäädin`
100
- };
101
- var $d80f30fe86c95741$exports = {};
102
- $d80f30fe86c95741$exports = {
103
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
104
- "colorNameAndValue": (args) => `${args.name} : ${args.value}`,
105
- "colorPicker": `Sélecteur de couleurs`,
106
- "colorSwatch": `Échantillon de couleurs`,
107
- "transparent": `Transparent`,
108
- "twoDimensionalSlider": `Curseur 2D`
109
- };
110
- var $6912afb584340a2e$exports = {};
111
- $6912afb584340a2e$exports = {
112
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
113
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
114
- "colorPicker": `בוחר הצבעים`,
115
- "colorSwatch": `דוגמית צבע`,
116
- "transparent": `שקוף`,
117
- "twoDimensionalSlider": `מחוון דו מימדי`
118
- };
119
- var $7b97fcacd84ec90f$exports = {};
120
- $7b97fcacd84ec90f$exports = {
121
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
122
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
123
- "colorPicker": `Odabir boje`,
124
- "colorSwatch": `uzorak boje`,
125
- "transparent": `transparentno`,
126
- "twoDimensionalSlider": `2D klizač`
127
- };
128
- var $da9b443e89eebc6b$exports = {};
129
- $da9b443e89eebc6b$exports = {
130
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
131
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
132
- "colorPicker": `Színválasztó`,
133
- "colorSwatch": `színtár`,
134
- "transparent": `átlátszó`,
135
- "twoDimensionalSlider": `2D-csúszka`
136
- };
137
- var $35f135b45eb4d95b$exports = {};
138
- $35f135b45eb4d95b$exports = {
139
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
140
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
141
- "colorPicker": `Selettore colore`,
142
- "colorSwatch": `campione di colore`,
143
- "transparent": `trasparente`,
144
- "twoDimensionalSlider": `Cursore 2D`
145
- };
146
- var $760b09448e39c6cd$exports = {};
147
- $760b09448e39c6cd$exports = {
148
- "colorInputLabel": (args) => `${args.label}、${args.channelLabel}`,
149
- "colorNameAndValue": (args) => `${args.name} : ${args.value}`,
150
- "colorPicker": `カラーピッカー`,
151
- "colorSwatch": `カラースウォッチ`,
152
- "transparent": `透明`,
153
- "twoDimensionalSlider": `2D スライダー`
154
- };
155
- var $fc7b7d43be9703ec$exports = {};
156
- $fc7b7d43be9703ec$exports = {
157
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
158
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
159
- "colorPicker": `색상 피커`,
160
- "colorSwatch": `색상 견본`,
161
- "transparent": `투명도`,
162
- "twoDimensionalSlider": `2D 슬라이더`
163
- };
164
- var $74918a1664156912$exports = {};
165
- $74918a1664156912$exports = {
166
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
167
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
168
- "colorPicker": `Spalvų parinkiklis`,
169
- "colorSwatch": `spalvų pavyzdys`,
170
- "transparent": `skaidrus`,
171
- "twoDimensionalSlider": `2D slankiklis`
172
- };
173
- var $4e6cde11c2bc9840$exports = {};
174
- $4e6cde11c2bc9840$exports = {
175
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
176
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
177
- "colorPicker": `Krāsu atlasītājs`,
178
- "colorSwatch": `krāsu paraugs`,
179
- "transparent": `caurspīdīgs`,
180
- "twoDimensionalSlider": `2D slīdnis`
181
- };
182
- var $6faa3defebc3eb72$exports = {};
183
- $6faa3defebc3eb72$exports = {
184
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
185
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
186
- "colorPicker": `Fargevelger`,
187
- "colorSwatch": `fargekart`,
188
- "transparent": `gjennomsiktig`,
189
- "twoDimensionalSlider": `2D-glidebryter`
190
- };
191
- var $6ac9b6b1b7e3ca12$exports = {};
192
- $6ac9b6b1b7e3ca12$exports = {
193
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
194
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
195
- "colorPicker": `Kleurkiezer`,
196
- "colorSwatch": `kleurstaal`,
197
- "transparent": `transparant`,
198
- "twoDimensionalSlider": `2D-schuifregelaar`
199
- };
200
- var $1be8b0ee8841f1e7$exports = {};
201
- $1be8b0ee8841f1e7$exports = {
202
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
203
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
204
- "colorPicker": `Próbnik kolorów`,
205
- "colorSwatch": `próbka koloru`,
206
- "transparent": `przezroczysty`,
207
- "twoDimensionalSlider": `Suwak 2D`
208
- };
209
- var $f9507c2d404ed689$exports = {};
210
- $f9507c2d404ed689$exports = {
211
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
212
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
213
- "colorPicker": `Seletor de cores`,
214
- "colorSwatch": `amostra de cores`,
215
- "transparent": `transparente`,
216
- "twoDimensionalSlider": `Controle deslizante 2D`
217
- };
218
- var $8f872ea59c02d67e$exports = {};
219
- $8f872ea59c02d67e$exports = {
220
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
221
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
222
- "colorPicker": `Seletor de cores`,
223
- "colorSwatch": `amostra de cor`,
224
- "transparent": `transparente`,
225
- "twoDimensionalSlider": `Controle deslizante 2D`
226
- };
227
- var $b03b45b62a7ccae4$exports = {};
228
- $b03b45b62a7ccae4$exports = {
229
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
230
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
231
- "colorPicker": `Selector de culori`,
232
- "colorSwatch": `specimen de culoare`,
233
- "transparent": `transparent`,
234
- "twoDimensionalSlider": `Glisor 2D`
235
- };
236
- var $f1107d94c09df9b8$exports = {};
237
- $f1107d94c09df9b8$exports = {
238
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
239
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
240
- "colorPicker": `Палитра цветов`,
241
- "colorSwatch": `цветовой образец`,
242
- "transparent": `прозрачный`,
243
- "twoDimensionalSlider": `Ползунок 2D`
244
- };
245
- var $b61325f242fafc7c$exports = {};
246
- $b61325f242fafc7c$exports = {
247
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
248
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
249
- "colorPicker": `Výber farieb`,
250
- "colorSwatch": `vzorkovník farieb`,
251
- "transparent": `transparentný`,
252
- "twoDimensionalSlider": `2D jazdec`
253
- };
254
- var $f44b7cf39ac8f315$exports = {};
255
- $f44b7cf39ac8f315$exports = {
256
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
257
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
258
- "colorPicker": `Izbirnik barv`,
259
- "colorSwatch": `barvna paleta`,
260
- "transparent": `prozorno`,
261
- "twoDimensionalSlider": `2D drsnik`
262
- };
263
- var $aa8cd83fc8d4982b$exports = {};
264
- $aa8cd83fc8d4982b$exports = {
265
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
266
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
267
- "colorPicker": `Birač boja`,
268
- "colorSwatch": `Uzorak boje`,
269
- "transparent": `providno`,
270
- "twoDimensionalSlider": `2D klizač`
271
- };
272
- var $7c4f4e5bb7c06f1e$exports = {};
273
- $7c4f4e5bb7c06f1e$exports = {
274
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
275
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
276
- "colorPicker": `Färgväljaren`,
277
- "colorSwatch": `färgruta`,
278
- "transparent": `genomskinlig`,
279
- "twoDimensionalSlider": `2D-reglage`
280
- };
281
- var $8045cf930ef745aa$exports = {};
282
- $8045cf930ef745aa$exports = {
283
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
284
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
285
- "colorPicker": `Renk Seçici`,
286
- "colorSwatch": `renk örneği`,
287
- "transparent": `saydam`,
288
- "twoDimensionalSlider": `2D sürgü`
289
- };
290
- var $ee2044a77f24b118$exports = {};
291
- $ee2044a77f24b118$exports = {
292
- "colorInputLabel": (args) => `${args.label}, ${args.channelLabel}`,
293
- "colorNameAndValue": (args) => `${args.name}: ${args.value}`,
294
- "colorPicker": `Палітра кольорів`,
295
- "colorSwatch": `зразок кольору`,
296
- "transparent": `прозорий`,
297
- "twoDimensionalSlider": `Повзунок 2D`
298
- };
299
- var $4e1dbc65a687dd93$exports = {};
300
- $4e1dbc65a687dd93$exports = {
301
- "colorInputLabel": (args) => `${args.label}、${args.channelLabel}`,
302
- "colorNameAndValue": (args) => `${args.name}:${args.value}`,
303
- "colorPicker": `拾色器`,
304
- "colorSwatch": `颜色色板`,
305
- "transparent": `透明`,
306
- "twoDimensionalSlider": `2D 滑块`
307
- };
308
- var $b0fef28529309aa6$exports = {};
309
- $b0fef28529309aa6$exports = {
310
- "colorInputLabel": (args) => `${args.label},${args.channelLabel}`,
311
- "colorNameAndValue": (args) => `${args.name}:${args.value}`,
312
- "colorPicker": `檢色器`,
313
- "colorSwatch": `色票`,
314
- "transparent": `透明`,
315
- "twoDimensionalSlider": `2D 滑桿`
316
- };
317
- var $3493a52097159720$exports = {};
318
- $3493a52097159720$exports = {
319
- "ar-AE": $eccab2b0118aef08$exports,
320
- "bg-BG": $bf2b4507594e3d45$exports,
321
- "cs-CZ": $01c08487af7ecd14$exports,
322
- "da-DK": $5e997db6ea0d10f6$exports,
323
- "de-DE": $fe5998f640a79fd2$exports,
324
- "el-GR": $18e4d1d5b500a9ee$exports,
325
- "en-US": $bf90a11a7a42a0f7$exports,
326
- "es-ES": $dd0d25f885b5c5f3$exports,
327
- "et-EE": $d950967017e3485b$exports,
328
- "fi-FI": $00a415a3f0ab315a$exports,
329
- "fr-FR": $d80f30fe86c95741$exports,
330
- "he-IL": $6912afb584340a2e$exports,
331
- "hr-HR": $7b97fcacd84ec90f$exports,
332
- "hu-HU": $da9b443e89eebc6b$exports,
333
- "it-IT": $35f135b45eb4d95b$exports,
334
- "ja-JP": $760b09448e39c6cd$exports,
335
- "ko-KR": $fc7b7d43be9703ec$exports,
336
- "lt-LT": $74918a1664156912$exports,
337
- "lv-LV": $4e6cde11c2bc9840$exports,
338
- "nb-NO": $6faa3defebc3eb72$exports,
339
- "nl-NL": $6ac9b6b1b7e3ca12$exports,
340
- "pl-PL": $1be8b0ee8841f1e7$exports,
341
- "pt-BR": $f9507c2d404ed689$exports,
342
- "pt-PT": $8f872ea59c02d67e$exports,
343
- "ro-RO": $b03b45b62a7ccae4$exports,
344
- "ru-RU": $f1107d94c09df9b8$exports,
345
- "sk-SK": $b61325f242fafc7c$exports,
346
- "sl-SI": $f44b7cf39ac8f315$exports,
347
- "sr-SP": $aa8cd83fc8d4982b$exports,
348
- "sv-SE": $7c4f4e5bb7c06f1e$exports,
349
- "tr-TR": $8045cf930ef745aa$exports,
350
- "uk-UA": $ee2044a77f24b118$exports,
351
- "zh-CN": $4e1dbc65a687dd93$exports,
352
- "zh-TW": $b0fef28529309aa6$exports
353
- };
354
- var $2d805fd52bb48883$exports = {};
355
- $2d805fd52bb48883$exports = {
356
- "alpha": `ألفا`,
357
- "black": `أسود`,
358
- "blue": `أزرق`,
359
- "blue purple": `أرجواني مزرق`,
360
- "brightness": `السطوع`,
361
- "brown": `بني`,
362
- "brown yellow": `أصفر بني`,
363
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
364
- "cyan": `سماوي`,
365
- "cyan blue": `أزرق سماوي`,
366
- "dark": `داكن`,
367
- "gray": `رمادي`,
368
- "grayish": `مائل للرمادي`,
369
- "green": `أخضر`,
370
- "green cyan": `سماوي مخضر`,
371
- "hue": `درجة اللون`,
372
- "light": `فاتح`,
373
- "lightness": `الإضاءة`,
374
- "magenta": `أرجواني`,
375
- "magenta pink": `أرجواني وردي`,
376
- "orange": `برتقالي`,
377
- "orange yellow": `أصفر برتقالي`,
378
- "pale": `باهت`,
379
- "pink": `وردي`,
380
- "pink red": `أحمر وردي`,
381
- "purple": `أرجواني`,
382
- "purple magenta": `بنفسجي`,
383
- "red": `أحمر`,
384
- "red orange": `برتقالي محمر`,
385
- "saturation": `التشبع`,
386
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} شفاف`,
387
- "very dark": `داكن جدًا`,
388
- "very light": `فاتح جدًا`,
389
- "vibrant": `ساطع`,
390
- "white": `أبيض`,
391
- "yellow": `أصفر`,
392
- "yellow green": `أخضر مصفر`
393
- };
394
- var $6c28468dc1df643c$exports = {};
395
- $6c28468dc1df643c$exports = {
396
- "alpha": `Алфа`,
397
- "black": `черно`,
398
- "blue": `Синьо`,
399
- "blue purple": `синьо лилаво`,
400
- "brightness": `Яркост`,
401
- "brown": `кафяво`,
402
- "brown yellow": `кафяво жълто`,
403
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
404
- "cyan": `циан`,
405
- "cyan blue": `циан синьо`,
406
- "dark": `тъмно`,
407
- "gray": `сиво`,
408
- "grayish": `сивкав`,
409
- "green": `Зелено`,
410
- "green cyan": `зелен циан`,
411
- "hue": `Оттенък`,
412
- "light": `светло`,
413
- "lightness": `Лекота`,
414
- "magenta": `магента`,
415
- "magenta pink": `магента розово`,
416
- "orange": `оранжево`,
417
- "orange yellow": `оранжево жълто`,
418
- "pale": `бледо`,
419
- "pink": `розово`,
420
- "pink red": `розово червено`,
421
- "purple": `лилаво`,
422
- "purple magenta": `лилаво магента`,
423
- "red": `Червено`,
424
- "red orange": `червен портокал`,
425
- "saturation": `Наситеност`,
426
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} прозрачен`,
427
- "very dark": `много тъмно`,
428
- "very light": `много светло`,
429
- "vibrant": ` ярко`,
430
- "white": `бяло`,
431
- "yellow": `жълто`,
432
- "yellow green": `жълто зелен`
433
- };
434
- var $807554f8230db0ed$exports = {};
435
- $807554f8230db0ed$exports = {
436
- "alpha": `Alfa`,
437
- "black": `černá`,
438
- "blue": `Modrá`,
439
- "blue purple": `modrofialová`,
440
- "brightness": `Jas`,
441
- "brown": `hnědá`,
442
- "brown yellow": `hnědožlutá`,
443
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
444
- "cyan": `tyrkysová`,
445
- "cyan blue": `tyrkysovomodrá`,
446
- "dark": `tmavá`,
447
- "gray": `šedá`,
448
- "grayish": `našedlá`,
449
- "green": `Zelená`,
450
- "green cyan": `zelenotyrkysová`,
451
- "hue": `Odstín`,
452
- "light": `světlá`,
453
- "lightness": `Světlost`,
454
- "magenta": `purpurová`,
455
- "magenta pink": `purpurově růžová`,
456
- "orange": `oranžová`,
457
- "orange yellow": `oranžovožlutá`,
458
- "pale": `bledá`,
459
- "pink": `růžová`,
460
- "pink red": `růžovočervená`,
461
- "purple": `fialová`,
462
- "purple magenta": `fialově purpurová`,
463
- "red": `Červená`,
464
- "red orange": `červenooranžová`,
465
- "saturation": `Sytost`,
466
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} průhledné`,
467
- "very dark": `velmi tmavá`,
468
- "very light": `velmi světlá`,
469
- "vibrant": `zářivá`,
470
- "white": `bílá`,
471
- "yellow": `žlutá`,
472
- "yellow green": `žlutozelená`
473
- };
474
- var $7097f64386f1761c$exports = {};
475
- $7097f64386f1761c$exports = {
476
- "alpha": `Alfa`,
477
- "black": `sort`,
478
- "blue": `Blå`,
479
- "blue purple": `blålilla`,
480
- "brightness": `Lysstyrke`,
481
- "brown": `brun`,
482
- "brown yellow": `brungul`,
483
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
484
- "cyan": `cyan`,
485
- "cyan blue": `cyan blå`,
486
- "dark": `mørk`,
487
- "gray": `grå`,
488
- "grayish": `grålig`,
489
- "green": `Grøn`,
490
- "green cyan": `grøn cyan`,
491
- "hue": `Tone`,
492
- "light": `lys`,
493
- "lightness": `Lyshed`,
494
- "magenta": `magenta`,
495
- "magenta pink": `magenta pink`,
496
- "orange": `orange`,
497
- "orange yellow": `orangegul`,
498
- "pale": `bleg`,
499
- "pink": `lyserød`,
500
- "pink red": `lyserødlig rød`,
501
- "purple": `lilla`,
502
- "purple magenta": `lilla magenta`,
503
- "red": `Rød`,
504
- "red orange": `rødorange`,
505
- "saturation": `Farvemætning`,
506
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} gennemsigtig`,
507
- "very dark": `meget mørk`,
508
- "very light": `meget lys`,
509
- "vibrant": `klar`,
510
- "white": `hvid`,
511
- "yellow": `gul`,
512
- "yellow green": `gulgrøn`
513
- };
514
- var $bdd847d8beb08799$exports = {};
515
- $bdd847d8beb08799$exports = {
516
- "alpha": `Alpha`,
517
- "black": `Schwarz`,
518
- "blue": `Blau`,
519
- "blue purple": `Blaulila`,
520
- "brightness": `Helligkeit`,
521
- "brown": `Braun`,
522
- "brown yellow": `Braungelb`,
523
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
524
- "cyan": `Cyan`,
525
- "cyan blue": `Cyanblau`,
526
- "dark": `dunkles`,
527
- "gray": `Grau`,
528
- "grayish": `gräuliches`,
529
- "green": `Grün`,
530
- "green cyan": `Grüncyan`,
531
- "hue": `Farbton`,
532
- "light": `helles`,
533
- "lightness": `Leuchtkraft`,
534
- "magenta": `Magenta`,
535
- "magenta pink": `Magentarosa`,
536
- "orange": `Orange`,
537
- "orange yellow": `Orangegelb`,
538
- "pale": `blasses`,
539
- "pink": `Rosa`,
540
- "pink red": `Rosarot`,
541
- "purple": `Lila`,
542
- "purple magenta": `Lilamagenta`,
543
- "red": `Rot`,
544
- "red orange": `Rotorange`,
545
- "saturation": `Sättigung`,
546
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, zu ${args.percentTransparent} transparent`,
547
- "very dark": `sehr dunkles`,
548
- "very light": `sehr helles`,
549
- "vibrant": `lebhaftes`,
550
- "white": `Weiß`,
551
- "yellow": `Gelb`,
552
- "yellow green": `Gelbgrün`
553
- };
554
- var $a53e00b683950971$exports = {};
555
- $a53e00b683950971$exports = {
556
- "alpha": `Άλφα`,
557
- "black": `μαύρο`,
558
- "blue": `Μπλε`,
559
- "blue purple": `μπλε μωβ`,
560
- "brightness": `Φωτεινότητα`,
561
- "brown": `καφέ`,
562
- "brown yellow": `καφέ κίτρινο`,
563
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
564
- "cyan": `κυανό`,
565
- "cyan blue": `κυανό μπλε`,
566
- "dark": `σκούρο`,
567
- "gray": `γκρι`,
568
- "grayish": `γκριζωπό`,
569
- "green": `Πράσινο`,
570
- "green cyan": `πράσινο κυανό`,
571
- "hue": `Τόνος`,
572
- "light": `ανοιχτό`,
573
- "lightness": `Φωτεινότητα`,
574
- "magenta": `ματζέντα`,
575
- "magenta pink": `ματζέντα ροζ`,
576
- "orange": `πορτοκαλί`,
577
- "orange yellow": `πορτοκαλί κίτρινο`,
578
- "pale": `ανοιχτό`,
579
- "pink": `ροζ`,
580
- "pink red": `ροζ κόκκινο`,
581
- "purple": `μωβ`,
582
- "purple magenta": `μωβ ματζέντα`,
583
- "red": `Κόκκινο`,
584
- "red orange": `κόκκινο πορτοκαλί`,
585
- "saturation": `Κορεσμός`,
586
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} διαφανές`,
587
- "very dark": `πολύ σκούρο`,
588
- "very light": `πολύ ανοιχτό`,
589
- "vibrant": `έντονο`,
590
- "white": `λευκό`,
591
- "yellow": `κίτρινο`,
592
- "yellow green": `κίτρινο πράσινο`
593
- };
594
- var $21cdd87e84f28d89$exports = {};
595
- $21cdd87e84f28d89$exports = {
596
- "hue": `Hue`,
597
- "saturation": `Saturation`,
598
- "lightness": `Lightness`,
599
- "brightness": `Brightness`,
600
- "red": `Red`,
601
- "green": `Green`,
602
- "blue": `Blue`,
603
- "alpha": `Alpha`,
604
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
605
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
606
- "very dark": `very dark`,
607
- "dark": `dark`,
608
- "light": `light`,
609
- "very light": `very light`,
610
- "pale": `pale`,
611
- "grayish": `grayish`,
612
- "vibrant": `vibrant`,
613
- "black": `black`,
614
- "white": `white`,
615
- "gray": `gray`,
616
- "pink": `pink`,
617
- "pink red": `pink red`,
618
- "red orange": `red orange`,
619
- "brown": `brown`,
620
- "orange": `orange`,
621
- "orange yellow": `orange yellow`,
622
- "brown yellow": `brown yellow`,
623
- "yellow": `yellow`,
624
- "yellow green": `yellow green`,
625
- "green cyan": `green cyan`,
626
- "cyan": `cyan`,
627
- "cyan blue": `cyan blue`,
628
- "blue purple": `blue purple`,
629
- "purple": `purple`,
630
- "purple magenta": `purple magenta`,
631
- "magenta": `magenta`,
632
- "magenta pink": `magenta pink`
633
- };
634
- var $92fee9698e4d675a$exports = {};
635
- $92fee9698e4d675a$exports = {
636
- "alpha": `Alpha`,
637
- "black": `negro`,
638
- "blue": `Azul`,
639
- "blue purple": `púrpura azulado`,
640
- "brightness": `Brillo`,
641
- "brown": `marrón`,
642
- "brown yellow": `amarillo amarronado`,
643
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
644
- "cyan": `cian`,
645
- "cyan blue": `azul cian`,
646
- "dark": `oscuro`,
647
- "gray": `gris`,
648
- "grayish": `grisáceo`,
649
- "green": `Verde`,
650
- "green cyan": `cian verdoso`,
651
- "hue": `Tono`,
652
- "light": `claro`,
653
- "lightness": `Luminosidad`,
654
- "magenta": `magenta`,
655
- "magenta pink": `rosa magenta`,
656
- "orange": `naranja`,
657
- "orange yellow": `amarillo anaranjado`,
658
- "pale": `pálido`,
659
- "pink": `rosa`,
660
- "pink red": `rojo rosado`,
661
- "purple": `morado`,
662
- "purple magenta": `magenta violáceo`,
663
- "red": `Rojo`,
664
- "red orange": `naranja rojizo`,
665
- "saturation": `Saturación`,
666
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
667
- "very dark": `muy oscuro`,
668
- "very light": `muy claro`,
669
- "vibrant": `intenso`,
670
- "white": `blanco`,
671
- "yellow": `amarillo`,
672
- "yellow green": `verde amarillento`
673
- };
674
- var $7ea012e91a5ad3ee$exports = {};
675
- $7ea012e91a5ad3ee$exports = {
676
- "alpha": `Alfa`,
677
- "black": `must`,
678
- "blue": `Sinine`,
679
- "blue purple": `sinakaslilla`,
680
- "brightness": `Heledus`,
681
- "brown": `pruun`,
682
- "brown yellow": `pruunikaskollane`,
683
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
684
- "cyan": `tsüaan`,
685
- "cyan blue": `tsüaansinine`,
686
- "dark": `tume`,
687
- "gray": `hall`,
688
- "grayish": `hallikas`,
689
- "green": `Roheline`,
690
- "green cyan": `tsüaanroheline`,
691
- "hue": `Värv`,
692
- "light": `valgus`,
693
- "lightness": `Valgus`,
694
- "magenta": `magentapunane`,
695
- "magenta pink": `magentaroosa`,
696
- "orange": `oranž`,
697
- "orange yellow": `oranžikaskollane`,
698
- "pale": `kahvatu`,
699
- "pink": `roosa`,
700
- "pink red": `vaarikapunane`,
701
- "purple": `lilla`,
702
- "purple magenta": `purpurne magenta`,
703
- "red": `Punane`,
704
- "red orange": `punakasoranž`,
705
- "saturation": `Küllastus`,
706
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} läbipaistev`,
707
- "very dark": `väga tume`,
708
- "very light": `väga hele`,
709
- "vibrant": `ere`,
710
- "white": `valge`,
711
- "yellow": `kollane`,
712
- "yellow green": `kollakasroheline`
713
- };
714
- var $8460c13bb2d75345$exports = {};
715
- $8460c13bb2d75345$exports = {
716
- "alpha": `Alpha`,
717
- "black": `musta`,
718
- "blue": `Sininen`,
719
- "blue purple": `sinivioletti`,
720
- "brightness": `Kirkkaus`,
721
- "brown": `ruskea`,
722
- "brown yellow": `ruskeankeltainen`,
723
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
724
- "cyan": `syaani`,
725
- "cyan blue": `syaaninsininen`,
726
- "dark": `tumma`,
727
- "gray": `harmaa`,
728
- "grayish": `harmahtava`,
729
- "green": `Vihreä`,
730
- "green cyan": `vihreänsyaani`,
731
- "hue": `Sävy`,
732
- "light": `vaalea`,
733
- "lightness": `Valomäärä`,
734
- "magenta": `magenta`,
735
- "magenta pink": `magentapinkki`,
736
- "orange": `oranssi`,
737
- "orange yellow": `oranssinkeltainen`,
738
- "pale": `vaalea`,
739
- "pink": `pinkki`,
740
- "pink red": `vaaleanpunainen`,
741
- "purple": `violetti`,
742
- "purple magenta": `violettimagenta`,
743
- "red": `Punainen`,
744
- "red orange": `punaoranssi`,
745
- "saturation": `Värikylläisyys`,
746
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} läpinäkyvä`,
747
- "very dark": `hyvin tumma`,
748
- "very light": `erittäin vaalea`,
749
- "vibrant": `eloisa`,
750
- "white": `valkea`,
751
- "yellow": `keltainen`,
752
- "yellow green": `keltavihreä`
753
- };
754
- var $2a2d5dc14e680587$exports = {};
755
- $2a2d5dc14e680587$exports = {
756
- "alpha": `Alpha`,
757
- "black": `Noir`,
758
- "blue": `Bleu`,
759
- "blue purple": `Violet bleu`,
760
- "brightness": `Luminosité`,
761
- "brown": `Brun`,
762
- "brown yellow": `Jaune brun`,
763
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
764
- "cyan": `Cyan`,
765
- "cyan blue": `Bleu cyan`,
766
- "dark": `Sombre`,
767
- "gray": `Gris`,
768
- "grayish": `Grisâtre`,
769
- "green": `Vert`,
770
- "green cyan": `Cyan vert`,
771
- "hue": `Teinte`,
772
- "light": `Clair`,
773
- "lightness": `Luminosité`,
774
- "magenta": `Magenta`,
775
- "magenta pink": `Rose magenta`,
776
- "orange": `Orange`,
777
- "orange yellow": `Jaune orangé`,
778
- "pale": `Pâle`,
779
- "pink": `Rose`,
780
- "pink red": `Rouge rosé`,
781
- "purple": `Violet`,
782
- "purple magenta": `Magenta violet`,
783
- "red": `Rouge`,
784
- "red orange": `Orange rouge`,
785
- "saturation": `Saturation`,
786
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
787
- "very dark": `Très sombre`,
788
- "very light": `Très clair`,
789
- "vibrant": `Vif`,
790
- "white": `Blanc`,
791
- "yellow": `Jaune`,
792
- "yellow green": `Vert jaune`
793
- };
794
- var $9a3f292371bb0589$exports = {};
795
- $9a3f292371bb0589$exports = {
796
- "alpha": `אלפא`,
797
- "black": `שחור`,
798
- "blue": `כחול`,
799
- "blue purple": `כחול סגול`,
800
- "brightness": `בהירות`,
801
- "brown": `חום`,
802
- "brown yellow": `חום צהוב`,
803
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
804
- "cyan": `טורקיז`,
805
- "cyan blue": `כחול ציאן`,
806
- "dark": `כהה`,
807
- "gray": `אפור`,
808
- "grayish": `אפרפר`,
809
- "green": `ירוק`,
810
- "green cyan": `ציאן ירוק`,
811
- "hue": `גוון`,
812
- "light": `אור`,
813
- "lightness": `כמות אור`,
814
- "magenta": `מג'נטה`,
815
- "magenta pink": `ורוד מג'נטה`,
816
- "orange": `כתום`,
817
- "orange yellow": `כתום צהוב`,
818
- "pale": `חיוור`,
819
- "pink": `ורוד`,
820
- "pink red": `ורוד אדום`,
821
- "purple": `סגול`,
822
- "purple magenta": `מג'נטה סגול`,
823
- "red": `אדום`,
824
- "red orange": `כתום אדום`,
825
- "saturation": `רוויה`,
826
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} שקוף`,
827
- "very dark": `כהה מאוד`,
828
- "very light": `בהיר מאוד`,
829
- "vibrant": `תוסס`,
830
- "white": `לבן`,
831
- "yellow": `צהוב`,
832
- "yellow green": `צהוב ירוק`
833
- };
834
- var $4742231a685fa068$exports = {};
835
- $4742231a685fa068$exports = {
836
- "alpha": `Alfa`,
837
- "black": `crno`,
838
- "blue": `Plava`,
839
- "blue purple": `plavo ljubičasta`,
840
- "brightness": `Svjetlina`,
841
- "brown": `smeđa`,
842
- "brown yellow": `smeđe žuta`,
843
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
844
- "cyan": `cijan`,
845
- "cyan blue": `cijan plava`,
846
- "dark": `tamno`,
847
- "gray": `siva`,
848
- "grayish": `sivkasto`,
849
- "green": `Zelena`,
850
- "green cyan": `zelena cijan`,
851
- "hue": `Nijansa`,
852
- "light": `svjetlo`,
853
- "lightness": `Osvijetljenost`,
854
- "magenta": `magenta`,
855
- "magenta pink": `magentno ružičasta`,
856
- "orange": `narančasta`,
857
- "orange yellow": `narančasto žuta`,
858
- "pale": `blijeda`,
859
- "pink": `ružičasta`,
860
- "pink red": `ružičasto crvena`,
861
- "purple": `ljubičasta`,
862
- "purple magenta": `ljubičasta magenta`,
863
- "red": `Crvena`,
864
- "red orange": `crveno narančasta`,
865
- "saturation": `Zasićenost`,
866
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozirnosti`,
867
- "very dark": `jako tamna`,
868
- "very light": `vrlo svijetlo`,
869
- "vibrant": `vibrantna`,
870
- "white": `bijela`,
871
- "yellow": `žuto`,
872
- "yellow green": `žuto zelena`
873
- };
874
- var $05e247fd2960981e$exports = {};
875
- $05e247fd2960981e$exports = {
876
- "alpha": `Alfa`,
877
- "black": `fekete`,
878
- "blue": `Kék`,
879
- "blue purple": `kék lila`,
880
- "brightness": `Fényesség`,
881
- "brown": `barna`,
882
- "brown yellow": `barna sárga`,
883
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
884
- "cyan": `ciánkék`,
885
- "cyan blue": `ciánkék`,
886
- "dark": `sötét`,
887
- "gray": `szürke`,
888
- "grayish": `szürkés`,
889
- "green": `Zöld`,
890
- "green cyan": `zöld ciánkék`,
891
- "hue": `Színárnyalat`,
892
- "light": `világos`,
893
- "lightness": `Világosság`,
894
- "magenta": `bíbor`,
895
- "magenta pink": `bíbor rózsaszín`,
896
- "orange": `narancs`,
897
- "orange yellow": `narancssárga`,
898
- "pale": `halvány`,
899
- "pink": `rózsaszín`,
900
- "pink red": `rózsaszín piros`,
901
- "purple": `lila`,
902
- "purple magenta": `lila bíbor`,
903
- "red": `Piros`,
904
- "red orange": `piros narancs`,
905
- "saturation": `Telítettség`,
906
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} átlátszó`,
907
- "very dark": `nagyon sötét`,
908
- "very light": `nagyon világos`,
909
- "vibrant": `élénk`,
910
- "white": `fehér`,
911
- "yellow": `sárga`,
912
- "yellow green": `sárga zöld`
913
- };
914
- var $a67524a79ccbe190$exports = {};
915
- $a67524a79ccbe190$exports = {
916
- "alpha": `Alfa`,
917
- "black": `nero`,
918
- "blue": `Blu`,
919
- "blue purple": `blu viola`,
920
- "brightness": `Luminosità`,
921
- "brown": `marrone`,
922
- "brown yellow": `giallo bruno`,
923
- "colorName": (args) => `${args.hue} ${args.chroma} ${args.lightness}`,
924
- "cyan": `ciano`,
925
- "cyan blue": `blu ciano`,
926
- "dark": `scuro`,
927
- "gray": `grigio`,
928
- "grayish": `grigiastro`,
929
- "green": `Verde`,
930
- "green cyan": `verde ciano`,
931
- "hue": `Tonalità`,
932
- "light": `chiaro`,
933
- "lightness": `Luminosità`,
934
- "magenta": `magenta`,
935
- "magenta pink": `rosa magenta`,
936
- "orange": `arancio`,
937
- "orange yellow": `giallo arancio`,
938
- "pale": `tenue`,
939
- "pink": `rosa`,
940
- "pink red": `rosa rosso`,
941
- "purple": `viola`,
942
- "purple magenta": `viola magenta`,
943
- "red": `Rosso`,
944
- "red orange": `rosso arancio`,
945
- "saturation": `Saturazione`,
946
- "transparentColorName": (args) => `${args.hue} ${args.chroma} ${args.lightness}, trasparenza ${args.percentTransparent}`,
947
- "very dark": `molto scuro`,
948
- "very light": `molto chiaro`,
949
- "vibrant": `vivace`,
950
- "white": `bianco`,
951
- "yellow": `giallo`,
952
- "yellow green": `giallo verde`
953
- };
954
- var $a9eefe9d6c8cb7d5$exports = {};
955
- $a9eefe9d6c8cb7d5$exports = {
956
- "alpha": `アルファ`,
957
- "black": `ブラック`,
958
- "blue": `青`,
959
- "blue purple": `ブルーパープル`,
960
- "brightness": `明るさ`,
961
- "brown": `ブラウン`,
962
- "brown yellow": `ブラウンイエロー`,
963
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
964
- "cyan": `シアン`,
965
- "cyan blue": `シアンブルー`,
966
- "dark": `ダーク`,
967
- "gray": `グレー`,
968
- "grayish": `グレイッシュ`,
969
- "green": `緑`,
970
- "green cyan": `グリーンシアン`,
971
- "hue": `色相`,
972
- "light": `ライト`,
973
- "lightness": `明度`,
974
- "magenta": `マゼンタ`,
975
- "magenta pink": `マゼンタピンク`,
976
- "orange": `オレンジ`,
977
- "orange yellow": `オレンジイエロー`,
978
- "pale": `ペール`,
979
- "pink": `ピンク`,
980
- "pink red": `ピンクレッド`,
981
- "purple": `パープル`,
982
- "purple magenta": `パープルマゼンタ`,
983
- "red": `赤`,
984
- "red orange": `レッドオレンジ`,
985
- "saturation": `彩度`,
986
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} 透明`,
987
- "very dark": `最も暗い`,
988
- "very light": `ベリーライト`,
989
- "vibrant": `鮮やか`,
990
- "white": `ホワイト`,
991
- "yellow": `イエロー`,
992
- "yellow green": `イエローグリーン`
993
- };
994
- var $4a6b836d4f1bfaba$exports = {};
995
- $4a6b836d4f1bfaba$exports = {
996
- "alpha": `알파`,
997
- "black": `검은색`,
998
- "blue": `파랑`,
999
- "blue purple": `청자색`,
1000
- "brightness": `명도`,
1001
- "brown": `갈색`,
1002
- "brown yellow": `황갈색`,
1003
- "colorName": (args) => `${args.lightness}, ${args.chroma}, ${args.hue}`,
1004
- "cyan": `청록색`,
1005
- "cyan blue": `청록색`,
1006
- "dark": `다크`,
1007
- "gray": `회색`,
1008
- "grayish": `회갈색`,
1009
- "green": `초록`,
1010
- "green cyan": `청록색`,
1011
- "hue": `색조`,
1012
- "light": `라이트`,
1013
- "lightness": `밝기`,
1014
- "magenta": `자홍색`,
1015
- "magenta pink": `마젠타 핑크`,
1016
- "orange": `주황색`,
1017
- "orange yellow": `불그스름한 노랑`,
1018
- "pale": `흙색`,
1019
- "pink": `분홍색`,
1020
- "pink red": `핑크 레드`,
1021
- "purple": `자주색`,
1022
- "purple magenta": `보라빛 자홍색`,
1023
- "red": `빨강`,
1024
- "red orange": `붉은 주황색`,
1025
- "saturation": `채도`,
1026
- "transparentColorName": (args) => `${args.lightness}, ${args.chroma}, ${args.hue}, ${args.percentTransparent} 투명도`,
1027
- "very dark": `매우 어두운`,
1028
- "very light": `매우 연함`,
1029
- "vibrant": `강렬한`,
1030
- "white": `흰색`,
1031
- "yellow": `노란색`,
1032
- "yellow green": `연두색`
1033
- };
1034
- var $c950e4b1c482abde$exports = {};
1035
- $c950e4b1c482abde$exports = {
1036
- "alpha": `Alfa`,
1037
- "black": `juoda`,
1038
- "blue": `Mėlyna`,
1039
- "blue purple": `melsvai violetinė`,
1040
- "brightness": `Ryškumas`,
1041
- "brown": `ruda`,
1042
- "brown yellow": `rusvai geltona`,
1043
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1044
- "cyan": `žalsvai mėlyna`,
1045
- "cyan blue": `žalsvai mėlyna`,
1046
- "dark": `tamsi`,
1047
- "gray": `pilka`,
1048
- "grayish": `pilkšva`,
1049
- "green": `Žalia`,
1050
- "green cyan": `žalsvai mėlyna`,
1051
- "hue": `Atspalvis`,
1052
- "light": `šviesi`,
1053
- "lightness": `Šviesumas`,
1054
- "magenta": `rausvai raudona`,
1055
- "magenta pink": `purpurinė`,
1056
- "orange": `oranžinė`,
1057
- "orange yellow": `oranžinio atspalvio geltona`,
1058
- "pale": `blyški`,
1059
- "pink": `rožinė`,
1060
- "pink red": `rožinė raudona`,
1061
- "purple": `violetinė`,
1062
- "purple magenta": `purpurinė rausvai raudona`,
1063
- "red": `Raudona`,
1064
- "red orange": `rausvai oranžinė`,
1065
- "saturation": `Įsotinimas`,
1066
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} skaidri`,
1067
- "very dark": `labai tamsi`,
1068
- "very light": `labai šviesi`,
1069
- "vibrant": `ryški`,
1070
- "white": `balta`,
1071
- "yellow": `geltona`,
1072
- "yellow green": `gelsvai žalia`
1073
- };
1074
- var $d10d6b60dc50b438$exports = {};
1075
- $d10d6b60dc50b438$exports = {
1076
- "alpha": `Alfa`,
1077
- "black": `melns`,
1078
- "blue": `Zila`,
1079
- "blue purple": `zili violets`,
1080
- "brightness": `Spilgtums`,
1081
- "brown": `brūns`,
1082
- "brown yellow": `brūni dzeltens`,
1083
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1084
- "cyan": `ciāns`,
1085
- "cyan blue": `ciāna zils`,
1086
- "dark": `tumšs`,
1087
- "gray": `pelēks`,
1088
- "grayish": `pelēcīgs`,
1089
- "green": `Zaļa`,
1090
- "green cyan": `zaļš ciāns`,
1091
- "hue": `Nokrāsa`,
1092
- "light": `gaišs`,
1093
- "lightness": `Gaišums`,
1094
- "magenta": `fuksiju`,
1095
- "magenta pink": `fuksiju rozā`,
1096
- "orange": `oranžs`,
1097
- "orange yellow": `oranži dzeltens`,
1098
- "pale": `bāls`,
1099
- "pink": `rozā`,
1100
- "pink red": `rozīgi sarkans`,
1101
- "purple": `violets`,
1102
- "purple magenta": `violets fuksiju`,
1103
- "red": `Sarkana`,
1104
- "red orange": `sarkanīgi oranžs`,
1105
- "saturation": `Piesātinājums`,
1106
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} caurspīdīgs`,
1107
- "very dark": `ļoti tumšs`,
1108
- "very light": `ļoti gaišs`,
1109
- "vibrant": `košs`,
1110
- "white": `balts`,
1111
- "yellow": `dzeltens`,
1112
- "yellow green": `dzelteni zaļš`
1113
- };
1114
- var $371a732b2494f452$exports = {};
1115
- $371a732b2494f452$exports = {
1116
- "alpha": `Alfa`,
1117
- "black": `svart`,
1118
- "blue": `Blå`,
1119
- "blue purple": `blålilla`,
1120
- "brightness": `Lysstyrke`,
1121
- "brown": `brun`,
1122
- "brown yellow": `brungul`,
1123
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1124
- "cyan": `cyan`,
1125
- "cyan blue": `cyanblå`,
1126
- "dark": `mørk`,
1127
- "gray": `grå`,
1128
- "grayish": `gråaktig`,
1129
- "green": `Grønn`,
1130
- "green cyan": `grønncyan`,
1131
- "hue": `Fargetone`,
1132
- "light": `lys`,
1133
- "lightness": `Lyshet`,
1134
- "magenta": `magenta`,
1135
- "magenta pink": `magentarosa`,
1136
- "orange": `oransje`,
1137
- "orange yellow": `oransjegul`,
1138
- "pale": `blek`,
1139
- "pink": `rosa`,
1140
- "pink red": `rosarød`,
1141
- "purple": `lilla`,
1142
- "purple magenta": `lillamagenta`,
1143
- "red": `Rød`,
1144
- "red orange": `rødoransje`,
1145
- "saturation": `Metning`,
1146
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} gjennomsiktig`,
1147
- "very dark": `svært mørk`,
1148
- "very light": `svært lys`,
1149
- "vibrant": `levende`,
1150
- "white": `hvit`,
1151
- "yellow": `gul`,
1152
- "yellow green": `gulgrønn`
1153
- };
1154
- var $6d042cae6243464b$exports = {};
1155
- $6d042cae6243464b$exports = {
1156
- "alpha": `Alfa`,
1157
- "black": `zwart`,
1158
- "blue": `Blauw`,
1159
- "blue purple": `paarsblauw`,
1160
- "brightness": `Helderheid`,
1161
- "brown": `bruin`,
1162
- "brown yellow": `bruingeel`,
1163
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1164
- "cyan": `cyaan`,
1165
- "cyan blue": `cyaanblauw`,
1166
- "dark": `donker`,
1167
- "gray": `grijs`,
1168
- "grayish": `grijsachtig`,
1169
- "green": `Groen`,
1170
- "green cyan": `cyaangroen`,
1171
- "hue": `Kleurtoon`,
1172
- "light": `licht`,
1173
- "lightness": `Lichtsterkte`,
1174
- "magenta": `magenta`,
1175
- "magenta pink": `magentaroze`,
1176
- "orange": `oranje`,
1177
- "orange yellow": `oranjegeel`,
1178
- "pale": `bleek`,
1179
- "pink": `roze`,
1180
- "pink red": `rozerood`,
1181
- "purple": `paars`,
1182
- "purple magenta": `magentapaars`,
1183
- "red": `Rood`,
1184
- "red orange": `roodoranje`,
1185
- "saturation": `Verzadiging`,
1186
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparant`,
1187
- "very dark": `heel donker`,
1188
- "very light": `heel licht`,
1189
- "vibrant": `levendig`,
1190
- "white": `wit`,
1191
- "yellow": `geel`,
1192
- "yellow green": `geelgroen`
1193
- };
1194
- var $d9ab5c2611e0bcd3$exports = {};
1195
- $d9ab5c2611e0bcd3$exports = {
1196
- "alpha": `Alfa`,
1197
- "black": `czarny`,
1198
- "blue": `Niebieski`,
1199
- "blue purple": `niebiesko-fioletowy`,
1200
- "brightness": `Jasność`,
1201
- "brown": `brązowy`,
1202
- "brown yellow": `brązowo-żółty`,
1203
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1204
- "cyan": `cyjanowy`,
1205
- "cyan blue": `cyjanowo-niebieski`,
1206
- "dark": `ciemny`,
1207
- "gray": `szary`,
1208
- "grayish": `szarawy`,
1209
- "green": `Zielony`,
1210
- "green cyan": `zielono-cyjanowy`,
1211
- "hue": `Odcień`,
1212
- "light": `jasny`,
1213
- "lightness": `Jaskrawość`,
1214
- "magenta": `purpurowy`,
1215
- "magenta pink": `purpurowo-różowy`,
1216
- "orange": `pomarańczowy`,
1217
- "orange yellow": `pomarańczowo-żółty`,
1218
- "pale": `blady`,
1219
- "pink": `różowy`,
1220
- "pink red": `różowo-czerwony`,
1221
- "purple": `fioletowy`,
1222
- "purple magenta": `fioletowo-purpurowy`,
1223
- "red": `Czerwony`,
1224
- "red orange": `czerwono-pomarańczowy`,
1225
- "saturation": `Nasycenie`,
1226
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} przezroczystości`,
1227
- "very dark": `bardzo ciemny`,
1228
- "very light": `bardzo jasny`,
1229
- "vibrant": `intensywny`,
1230
- "white": `biały`,
1231
- "yellow": `żółty`,
1232
- "yellow green": `żółto-zielony`
1233
- };
1234
- var $73f77c9902e29ca6$exports = {};
1235
- $73f77c9902e29ca6$exports = {
1236
- "alpha": `Alfa`,
1237
- "black": `preto`,
1238
- "blue": `Azul`,
1239
- "blue purple": `roxo azulado`,
1240
- "brightness": `Brilho`,
1241
- "brown": `marrom`,
1242
- "brown yellow": `marrom amarelado`,
1243
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1244
- "cyan": `ciano`,
1245
- "cyan blue": `azul-ciano`,
1246
- "dark": `escuro`,
1247
- "gray": `cinza`,
1248
- "grayish": `acinzentado`,
1249
- "green": `Verde`,
1250
- "green cyan": `verde-ciano`,
1251
- "hue": `Matiz`,
1252
- "light": `claro`,
1253
- "lightness": `Luminosidade`,
1254
- "magenta": `magenta`,
1255
- "magenta pink": `rosa-magenta`,
1256
- "orange": `laranja`,
1257
- "orange yellow": `amarelo alaranjado`,
1258
- "pale": `pálido`,
1259
- "pink": `rosa`,
1260
- "pink red": `rosa avermelhado`,
1261
- "purple": `roxo`,
1262
- "purple magenta": `roxo-magenta`,
1263
- "red": `Vermelho`,
1264
- "red orange": `laranja avermelhado`,
1265
- "saturation": `Saturação`,
1266
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
1267
- "very dark": `muito escuro`,
1268
- "very light": `muito claro`,
1269
- "vibrant": `vibrante`,
1270
- "white": `branco`,
1271
- "yellow": `amarelo`,
1272
- "yellow green": `verde amarelado`
1273
- };
1274
- var $4f461eb266a95c10$exports = {};
1275
- $4f461eb266a95c10$exports = {
1276
- "alpha": `Alfa`,
1277
- "black": `preto`,
1278
- "blue": `Azul`,
1279
- "blue purple": `azul-púrpura`,
1280
- "brightness": `Luminosidade`,
1281
- "brown": `castanho`,
1282
- "brown yellow": `amarelo-castanho`,
1283
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1284
- "cyan": `ciano`,
1285
- "cyan blue": `azul-ciano`,
1286
- "dark": `escuro`,
1287
- "gray": `cinzento`,
1288
- "grayish": `acinzentado`,
1289
- "green": `Verde`,
1290
- "green cyan": `verde-ciano`,
1291
- "hue": `Tonalidade`,
1292
- "light": `claro`,
1293
- "lightness": `Claridade`,
1294
- "magenta": `magenta`,
1295
- "magenta pink": `rosa-magenta`,
1296
- "orange": `laranja`,
1297
- "orange yellow": `amarelo-laranja`,
1298
- "pale": `pálido`,
1299
- "pink": `cor-de-rosa`,
1300
- "pink red": `vermelho-rosa`,
1301
- "purple": `púrpura`,
1302
- "purple magenta": `púrpura-magenta`,
1303
- "red": `Vermelho`,
1304
- "red orange": `laranja-vermelho`,
1305
- "saturation": `Saturação`,
1306
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparente`,
1307
- "very dark": `muito escuro`,
1308
- "very light": `muito claro`,
1309
- "vibrant": `vibrante`,
1310
- "white": `branco`,
1311
- "yellow": `amarelo`,
1312
- "yellow green": `verde-amarelo`
1313
- };
1314
- var $dc46bea2f2597899$exports = {};
1315
- $dc46bea2f2597899$exports = {
1316
- "alpha": `Alfa`,
1317
- "black": `negru`,
1318
- "blue": `Albastru`,
1319
- "blue purple": `albastru-violet`,
1320
- "brightness": `Luminozitate`,
1321
- "brown": `maro`,
1322
- "brown yellow": `galben maro`,
1323
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1324
- "cyan": `bleu`,
1325
- "cyan blue": `albastru-bleu`,
1326
- "dark": `închis`,
1327
- "gray": `gri`,
1328
- "grayish": `cenușiu`,
1329
- "green": `Verde`,
1330
- "green cyan": `verde bleu`,
1331
- "hue": `Nuanță`,
1332
- "light": `deschis`,
1333
- "lightness": `Luminozitate`,
1334
- "magenta": `fucsia`,
1335
- "magenta pink": `roz-fucsia`,
1336
- "orange": `portocaliu`,
1337
- "orange yellow": `galben-portocaliu`,
1338
- "pale": `pal`,
1339
- "pink": `roz`,
1340
- "pink red": `roz-roșu`,
1341
- "purple": `violet`,
1342
- "purple magenta": `violet-fucsia`,
1343
- "red": `Roșu`,
1344
- "red orange": `portocaliu-roșu`,
1345
- "saturation": `Saturație`,
1346
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} transparent`,
1347
- "very dark": `foarte închis`,
1348
- "very light": `foarte deschis`,
1349
- "vibrant": `plin de viață`,
1350
- "white": `alb`,
1351
- "yellow": `galben`,
1352
- "yellow green": `galben-verde`
1353
- };
1354
- var $622bbd6719cc95af$exports = {};
1355
- $622bbd6719cc95af$exports = {
1356
- "alpha": `Альфа`,
1357
- "black": `черный`,
1358
- "blue": `Синий`,
1359
- "blue purple": `сине-фиолетовый`,
1360
- "brightness": `Яркость`,
1361
- "brown": `коричневый`,
1362
- "brown yellow": `коричнево-желтый`,
1363
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1364
- "cyan": `голубой`,
1365
- "cyan blue": `цвет морской волны`,
1366
- "dark": `темный`,
1367
- "gray": `серый`,
1368
- "grayish": `сероватый`,
1369
- "green": `Зеленый`,
1370
- "green cyan": `сине-зеленый`,
1371
- "hue": `Оттенок`,
1372
- "light": `светлый`,
1373
- "lightness": `Освещенность`,
1374
- "magenta": `пурпурный`,
1375
- "magenta pink": `пурпурно-розовый`,
1376
- "orange": `оранжевый`,
1377
- "orange yellow": `оранжево-желтый`,
1378
- "pale": `бледный`,
1379
- "pink": `розовый`,
1380
- "pink red": `розово-красный`,
1381
- "purple": `фиолетовый`,
1382
- "purple magenta": `фиолетово-пурпурный`,
1383
- "red": `Красный`,
1384
- "red orange": `красно-оранжевый`,
1385
- "saturation": `Насыщенность`,
1386
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, прозрачный на ${args.percentTransparent}`,
1387
- "very dark": `очень темный`,
1388
- "very light": `очень светлый`,
1389
- "vibrant": `яркий`,
1390
- "white": `белый`,
1391
- "yellow": `желтый`,
1392
- "yellow green": `желто-зеленый`
1393
- };
1394
- var $4da03c1ecd9a9c7d$exports = {};
1395
- $4da03c1ecd9a9c7d$exports = {
1396
- "alpha": `Alfa`,
1397
- "black": `čierna`,
1398
- "blue": `Modrá`,
1399
- "blue purple": `modrofialová`,
1400
- "brightness": `Jas`,
1401
- "brown": `hnedá`,
1402
- "brown yellow": `hnedožltá`,
1403
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1404
- "cyan": `azúrová`,
1405
- "cyan blue": `azúrová modrá`,
1406
- "dark": `tmavá`,
1407
- "gray": `sivá`,
1408
- "grayish": `sivastá`,
1409
- "green": `Zelená`,
1410
- "green cyan": `zelená azúrová`,
1411
- "hue": `Odtieň`,
1412
- "light": `svetlá`,
1413
- "lightness": `Svetlosť`,
1414
- "magenta": `purpurová`,
1415
- "magenta pink": `ružová purpurová`,
1416
- "orange": `oranžová`,
1417
- "orange yellow": `oranžovožltá`,
1418
- "pale": `bledá`,
1419
- "pink": `ružová`,
1420
- "pink red": `ružovočervená`,
1421
- "purple": `fialová`,
1422
- "purple magenta": `fialová purpurová`,
1423
- "red": `Červená`,
1424
- "red orange": `červenooranžová`,
1425
- "saturation": `Sýtosť`,
1426
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} priehľadná`,
1427
- "very dark": `veľmi tmavá`,
1428
- "very light": `veľmi svetlá`,
1429
- "vibrant": `energická`,
1430
- "white": `biela`,
1431
- "yellow": `žltá`,
1432
- "yellow green": `žltozelená`
1433
- };
1434
- var $edb6b2fe456ed4e8$exports = {};
1435
- $edb6b2fe456ed4e8$exports = {
1436
- "alpha": `Alfa`,
1437
- "black": `črna`,
1438
- "blue": `Modra`,
1439
- "blue purple": `modro vijolična`,
1440
- "brightness": `Svetlost`,
1441
- "brown": `rjava`,
1442
- "brown yellow": `rjavo rumena`,
1443
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1444
- "cyan": `cian`,
1445
- "cyan blue": `cian modra`,
1446
- "dark": `temna`,
1447
- "gray": `siva`,
1448
- "grayish": `sivkasta`,
1449
- "green": `Zelena`,
1450
- "green cyan": `zelena cian`,
1451
- "hue": `Barva`,
1452
- "light": `svetla`,
1453
- "lightness": `Lahkost`,
1454
- "magenta": `škrlatna`,
1455
- "magenta pink": `škrlatno roza`,
1456
- "orange": `oranžna`,
1457
- "orange yellow": `oranžno rumena`,
1458
- "pale": `bleda`,
1459
- "pink": `roza`,
1460
- "pink red": `roza rdeča`,
1461
- "purple": `vijolična`,
1462
- "purple magenta": `vijolično škrlatna`,
1463
- "red": `Rdeča`,
1464
- "red orange": `rdeče oranžna`,
1465
- "saturation": `Nasičenost`,
1466
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozorna`,
1467
- "very dark": `zelo temna`,
1468
- "very light": `zelo svetla`,
1469
- "vibrant": `živahna`,
1470
- "white": `bela`,
1471
- "yellow": `rumena`,
1472
- "yellow green": `rumeno zelena`
1473
- };
1474
- var $264cd81c52b30815$exports = {};
1475
- $264cd81c52b30815$exports = {
1476
- "alpha": `Alfa`,
1477
- "black": `crno`,
1478
- "blue": `Plava`,
1479
- "blue purple": `plavoljubičasta`,
1480
- "brightness": `Osvetljenost`,
1481
- "brown": `smeđa`,
1482
- "brown yellow": `smeđežuta`,
1483
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1484
- "cyan": `cijan`,
1485
- "cyan blue": `cijan plava`,
1486
- "dark": `tamno`,
1487
- "gray": `siva`,
1488
- "grayish": `sivkasta`,
1489
- "green": `Zelena`,
1490
- "green cyan": `zeleno cijan`,
1491
- "hue": `Nijansa`,
1492
- "light": `svetla`,
1493
- "lightness": `Osvetljenje`,
1494
- "magenta": `purpurnocrvena`,
1495
- "magenta pink": `magenta ružičasta`,
1496
- "orange": `narandžasta`,
1497
- "orange yellow": `narandžastožuta`,
1498
- "pale": `bledo`,
1499
- "pink": `ružičasta`,
1500
- "pink red": `ružičastocrvena`,
1501
- "purple": `ljubičasta`,
1502
- "purple magenta": `ljubičasta magenta`,
1503
- "red": `Crvena`,
1504
- "red orange": `crvenonarandžasta`,
1505
- "saturation": `Zasićenje`,
1506
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} prozirna`,
1507
- "very dark": `veoma tamno`,
1508
- "very light": `vrlo svetlo`,
1509
- "vibrant": `živopisna`,
1510
- "white": `bela`,
1511
- "yellow": `žuto`,
1512
- "yellow green": `žutozelena`
1513
- };
1514
- var $6f80afde0270dda7$exports = {};
1515
- $6f80afde0270dda7$exports = {
1516
- "alpha": `Alfa`,
1517
- "black": `svart`,
1518
- "blue": `Blått`,
1519
- "blue purple": `blålila`,
1520
- "brightness": `Ljusstyrka`,
1521
- "brown": `brun`,
1522
- "brown yellow": `brungul`,
1523
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1524
- "cyan": `cyan`,
1525
- "cyan blue": `cyanblå`,
1526
- "dark": `mörk`,
1527
- "gray": `grå`,
1528
- "grayish": `gråaktig`,
1529
- "green": `Grönt`,
1530
- "green cyan": `grön cyan`,
1531
- "hue": `Nyans`,
1532
- "light": `ljus`,
1533
- "lightness": `Ljushet`,
1534
- "magenta": `magenta`,
1535
- "magenta pink": `magentarosa`,
1536
- "orange": `orange`,
1537
- "orange yellow": `orangegul`,
1538
- "pale": `blek`,
1539
- "pink": `rosa`,
1540
- "pink red": `rosaröd`,
1541
- "purple": `lila`,
1542
- "purple magenta": `lila magenta`,
1543
- "red": `Rött`,
1544
- "red orange": `rödorange`,
1545
- "saturation": `Mättnad`,
1546
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} genomskinlig`,
1547
- "very dark": `mycket mörk`,
1548
- "very light": `mycket ljus`,
1549
- "vibrant": `livfull`,
1550
- "white": `vit`,
1551
- "yellow": `gul`,
1552
- "yellow green": `gulgrön`
1553
- };
1554
- var $23a92651c6957668$exports = {};
1555
- $23a92651c6957668$exports = {
1556
- "alpha": `Alfa`,
1557
- "black": `siyah`,
1558
- "blue": `Mavi`,
1559
- "blue purple": `mavi mor`,
1560
- "brightness": `Parlaklık`,
1561
- "brown": `kahverengi`,
1562
- "brown yellow": `kahverengi sarı`,
1563
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1564
- "cyan": `camgöbeği`,
1565
- "cyan blue": `camgöbeği mavi`,
1566
- "dark": `koyu`,
1567
- "gray": `gri`,
1568
- "grayish": `grimsi`,
1569
- "green": `Yeşil`,
1570
- "green cyan": `yeşil camgöbeği`,
1571
- "hue": `Ton`,
1572
- "light": `açık`,
1573
- "lightness": `Canlılık`,
1574
- "magenta": `eflatun`,
1575
- "magenta pink": `eflatun pembe`,
1576
- "orange": `turuncu`,
1577
- "orange yellow": `turuncu sarı`,
1578
- "pale": `solgun`,
1579
- "pink": `pembe`,
1580
- "pink red": `pembe kırmızı`,
1581
- "purple": `mor`,
1582
- "purple magenta": `mor eflatun`,
1583
- "red": `Kırmızı`,
1584
- "red orange": `kırmızı portakal`,
1585
- "saturation": `Doygunluk`,
1586
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} saydam`,
1587
- "very dark": `çok koyu`,
1588
- "very light": `çok açık`,
1589
- "vibrant": `canlı`,
1590
- "white": `beyaz`,
1591
- "yellow": `sarı`,
1592
- "yellow green": `sarı yeşil`
1593
- };
1594
- var $0f9b1074d04f4954$exports = {};
1595
- $0f9b1074d04f4954$exports = {
1596
- "alpha": `Альфа`,
1597
- "black": `чорний`,
1598
- "blue": `Синій`,
1599
- "blue purple": `синьо-фіолетовий`,
1600
- "brightness": `Яскравість`,
1601
- "brown": `коричневий`,
1602
- "brown yellow": `коричнево-жовтий`,
1603
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1604
- "cyan": `блакитний`,
1605
- "cyan blue": `синьо-блакитний`,
1606
- "dark": `темний`,
1607
- "gray": `сірий`,
1608
- "grayish": `сіруватий`,
1609
- "green": `Зелений`,
1610
- "green cyan": `зелено-блакитний`,
1611
- "hue": `Тон`,
1612
- "light": `світлий`,
1613
- "lightness": `Освітленість`,
1614
- "magenta": `пурпуровий`,
1615
- "magenta pink": `пурпурово-рожевий`,
1616
- "orange": `помаранчевий`,
1617
- "orange yellow": `помаранчево-жовтий`,
1618
- "pale": `блідий`,
1619
- "pink": `рожевий`,
1620
- "pink red": `рожево-червоний`,
1621
- "purple": `фіолетовий`,
1622
- "purple magenta": `фіолетово-пурпуровий`,
1623
- "red": `Червоний`,
1624
- "red orange": `червоно-помаранчевий`,
1625
- "saturation": `Насиченість`,
1626
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, прозорий на ${args.percentTransparent}`,
1627
- "very dark": `дуже темний`,
1628
- "very light": `дуже світлий`,
1629
- "vibrant": `яскравий`,
1630
- "white": `білий`,
1631
- "yellow": `жовтий`,
1632
- "yellow green": `жовто-зелений`
1633
- };
1634
- var $a9cedf75b94e4916$exports = {};
1635
- $a9cedf75b94e4916$exports = {
1636
- "alpha": `Alpha`,
1637
- "black": `黑色`,
1638
- "blue": `蓝色`,
1639
- "blue purple": `蓝紫色`,
1640
- "brightness": `亮度`,
1641
- "brown": `棕色的`,
1642
- "brown yellow": `棕黄色`,
1643
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1644
- "cyan": `蓝绿色`,
1645
- "cyan blue": `青蓝色`,
1646
- "dark": `深色`,
1647
- "gray": `灰色`,
1648
- "grayish": `浅灰色的`,
1649
- "green": `绿色`,
1650
- "green cyan": `绿青色`,
1651
- "hue": `色相`,
1652
- "light": `浅色`,
1653
- "lightness": `明亮度`,
1654
- "magenta": `紫红色`,
1655
- "magenta pink": `紫粉色`,
1656
- "orange": `橙色`,
1657
- "orange yellow": `橙黄色`,
1658
- "pale": `苍白的`,
1659
- "pink": `粉色`,
1660
- "pink red": `粉红色`,
1661
- "purple": `紫色`,
1662
- "purple magenta": `紫洋红色`,
1663
- "red": `红色`,
1664
- "red orange": `红橙色`,
1665
- "saturation": `饱和度`,
1666
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} 透明`,
1667
- "very dark": `很暗`,
1668
- "very light": `很浅`,
1669
- "vibrant": `生机勃勃`,
1670
- "white": `白色`,
1671
- "yellow": `黄色`,
1672
- "yellow green": `黄色/绿色`
1673
- };
1674
- var $37cff576474bc8d4$exports = {};
1675
- $37cff576474bc8d4$exports = {
1676
- "alpha": `Alpha`,
1677
- "black": `黑`,
1678
- "blue": `藍色`,
1679
- "blue purple": `藍紫`,
1680
- "brightness": `亮度`,
1681
- "brown": `棕`,
1682
- "brown yellow": `棕黃`,
1683
- "colorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}`,
1684
- "cyan": `青`,
1685
- "cyan blue": `青藍`,
1686
- "dark": `暗`,
1687
- "gray": `灰`,
1688
- "grayish": `偏灰`,
1689
- "green": `綠色`,
1690
- "green cyan": `青綠`,
1691
- "hue": `色相`,
1692
- "light": `淺`,
1693
- "lightness": `明亮`,
1694
- "magenta": `洋紅`,
1695
- "magenta pink": `淺洋紅`,
1696
- "orange": `橙`,
1697
- "orange yellow": `橙黃`,
1698
- "pale": `淡`,
1699
- "pink": `粉紅`,
1700
- "pink red": `粉紅`,
1701
- "purple": `紫`,
1702
- "purple magenta": `紫洋紅`,
1703
- "red": `紅色`,
1704
- "red orange": `橙紅`,
1705
- "saturation": `飽和度`,
1706
- "transparentColorName": (args) => `${args.lightness} ${args.chroma} ${args.hue}, ${args.percentTransparent} 透明`,
1707
- "very dark": `很暗`,
1708
- "very light": `很淺`,
1709
- "vibrant": `鮮豔`,
1710
- "white": `白`,
1711
- "yellow": `黃`,
1712
- "yellow green": `黃綠`
1713
- };
1714
- var $f98dad178a72c00d$exports = {};
1715
- $f98dad178a72c00d$exports = {
1716
- "ar-AE": $2d805fd52bb48883$exports,
1717
- "bg-BG": $6c28468dc1df643c$exports,
1718
- "cs-CZ": $807554f8230db0ed$exports,
1719
- "da-DK": $7097f64386f1761c$exports,
1720
- "de-DE": $bdd847d8beb08799$exports,
1721
- "el-GR": $a53e00b683950971$exports,
1722
- "en-US": $21cdd87e84f28d89$exports,
1723
- "es-ES": $92fee9698e4d675a$exports,
1724
- "et-EE": $7ea012e91a5ad3ee$exports,
1725
- "fi-FI": $8460c13bb2d75345$exports,
1726
- "fr-FR": $2a2d5dc14e680587$exports,
1727
- "he-IL": $9a3f292371bb0589$exports,
1728
- "hr-HR": $4742231a685fa068$exports,
1729
- "hu-HU": $05e247fd2960981e$exports,
1730
- "it-IT": $a67524a79ccbe190$exports,
1731
- "ja-JP": $a9eefe9d6c8cb7d5$exports,
1732
- "ko-KR": $4a6b836d4f1bfaba$exports,
1733
- "lt-LT": $c950e4b1c482abde$exports,
1734
- "lv-LV": $d10d6b60dc50b438$exports,
1735
- "nb-NO": $371a732b2494f452$exports,
1736
- "nl-NL": $6d042cae6243464b$exports,
1737
- "pl-PL": $d9ab5c2611e0bcd3$exports,
1738
- "pt-BR": $73f77c9902e29ca6$exports,
1739
- "pt-PT": $4f461eb266a95c10$exports,
1740
- "ro-RO": $dc46bea2f2597899$exports,
1741
- "ru-RU": $622bbd6719cc95af$exports,
1742
- "sk-SK": $4da03c1ecd9a9c7d$exports,
1743
- "sl-SI": $edb6b2fe456ed4e8$exports,
1744
- "sr-SP": $264cd81c52b30815$exports,
1745
- "sv-SE": $6f80afde0270dda7$exports,
1746
- "tr-TR": $23a92651c6957668$exports,
1747
- "uk-UA": $0f9b1074d04f4954$exports,
1748
- "zh-CN": $a9cedf75b94e4916$exports,
1749
- "zh-TW": $37cff576474bc8d4$exports
1750
- };
1751
- function $parcel$interopDefault$1(a) {
1752
- return a && a.__esModule ? a.default : a;
1753
- }
1754
- let $799cddbef784668f$var$dictionary = new $5b160d28a433310d$export$c17fa47878dc55b6($parcel$interopDefault$1($f98dad178a72c00d$exports));
1755
- function $799cddbef784668f$export$6e865ea70d7724f(value) {
1756
- let res = $799cddbef784668f$var$RGBColor.parse(value) || $799cddbef784668f$var$HSBColor.parse(value) || $799cddbef784668f$var$HSLColor.parse(value);
1757
- if (res) return res;
1758
- throw new Error("Invalid color value: " + value);
1759
- }
1760
- function $799cddbef784668f$export$4cde5df63f53f473(v) {
1761
- if (typeof v === "string") return $799cddbef784668f$export$6e865ea70d7724f(v);
1762
- else return v;
1763
- }
1764
- function $799cddbef784668f$export$87f5012e10bb20b2(hue) {
1765
- if (hue === 360) return hue;
1766
- return (hue % 360 + 360) % 360;
1767
- }
1768
- const $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD = 0.68;
1769
- const $799cddbef784668f$var$YELLOW_GREEN_LIGHTNESS_THRESHOLD = 0.85;
1770
- const $799cddbef784668f$var$MAX_DARK_LIGHTNESS = 0.55;
1771
- const $799cddbef784668f$var$GRAY_THRESHOLD = 1e-3;
1772
- const $799cddbef784668f$var$OKLCH_HUES = [
1773
- [
1774
- 0,
1775
- "pink"
1776
- ],
1777
- [
1778
- 15,
1779
- "red"
1780
- ],
1781
- [
1782
- 48,
1783
- "orange"
1784
- ],
1785
- [
1786
- 94,
1787
- "yellow"
1788
- ],
1789
- [
1790
- 135,
1791
- "green"
1792
- ],
1793
- [
1794
- 175,
1795
- "cyan"
1796
- ],
1797
- [
1798
- 264,
1799
- "blue"
1800
- ],
1801
- [
1802
- 284,
1803
- "purple"
1804
- ],
1805
- [
1806
- 320,
1807
- "magenta"
1808
- ],
1809
- [
1810
- 349,
1811
- "pink"
1812
- ]
1813
- ];
1814
- class $799cddbef784668f$var$Color {
1815
- toHexInt() {
1816
- return this.toFormat("rgb").toHexInt();
1817
- }
1818
- getChannelValue(channel) {
1819
- if (channel in this) return this[channel];
1820
- throw new Error("Unsupported color channel: " + channel);
1821
- }
1822
- withChannelValue(channel, value) {
1823
- if (channel in this) {
1824
- let x = this.clone();
1825
- x[channel] = value;
1826
- return x;
1827
- }
1828
- throw new Error("Unsupported color channel: " + channel);
1829
- }
1830
- getChannelName(channel, locale) {
1831
- let strings = $5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary;
1832
- return strings.getStringForLocale(channel, locale);
1833
- }
1834
- getColorSpaceAxes(xyChannels) {
1835
- let { xChannel, yChannel } = xyChannels;
1836
- let xCh = xChannel || this.getColorChannels().find((c) => c !== yChannel);
1837
- let yCh = yChannel || this.getColorChannels().find((c) => c !== xCh);
1838
- let zCh = this.getColorChannels().find((c) => c !== xCh && c !== yCh);
1839
- return {
1840
- xChannel: xCh,
1841
- yChannel: yCh,
1842
- zChannel: zCh
1843
- };
1844
- }
1845
- getColorName(locale) {
1846
- let [l, c, h] = $799cddbef784668f$var$toOKLCH(this);
1847
- let strings = $5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary;
1848
- if (l > 0.999) return strings.getStringForLocale("white", locale);
1849
- if (l < 1e-3) return strings.getStringForLocale("black", locale);
1850
- let hue;
1851
- [hue, l] = this.getOklchHue(l, c, h, locale);
1852
- let lightness = "";
1853
- let chroma = "";
1854
- if (c <= 0.1 && c >= $799cddbef784668f$var$GRAY_THRESHOLD) {
1855
- if (l >= 0.7) chroma = "pale";
1856
- else chroma = "grayish";
1857
- } else if (c >= 0.15) chroma = "vibrant";
1858
- if (l < 0.3) lightness = "very dark";
1859
- else if (l < $799cddbef784668f$var$MAX_DARK_LIGHTNESS) lightness = "dark";
1860
- else if (l < 0.7) ;
1861
- else if (l < 0.85) lightness = "light";
1862
- else lightness = "very light";
1863
- if (chroma) chroma = strings.getStringForLocale(chroma, locale);
1864
- if (lightness) lightness = strings.getStringForLocale(lightness, locale);
1865
- let alpha = this.getChannelValue("alpha");
1866
- let formatter = new $6db58dc88e78b024$export$2f817fcdc4b89ae0(locale, strings);
1867
- if (alpha < 1) {
1868
- let percentTransparent = new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, {
1869
- style: "percent"
1870
- }).format(1 - alpha);
1871
- return formatter.format("transparentColorName", {
1872
- lightness,
1873
- chroma,
1874
- hue,
1875
- percentTransparent
1876
- }).replace(/\s+/g, " ").trim();
1877
- } else return formatter.format("colorName", {
1878
- lightness,
1879
- chroma,
1880
- hue
1881
- }).replace(/\s+/g, " ").trim();
1882
- }
1883
- getOklchHue(l, c, h, locale) {
1884
- let strings = $5b160d28a433310d$export$c17fa47878dc55b6.getGlobalDictionaryForPackage("@react-stately/color") || $799cddbef784668f$var$dictionary;
1885
- if (c < $799cddbef784668f$var$GRAY_THRESHOLD) return [
1886
- strings.getStringForLocale("gray", locale),
1887
- l
1888
- ];
1889
- for (let i = 0; i < $799cddbef784668f$var$OKLCH_HUES.length; i++) {
1890
- let [hue, hueName] = $799cddbef784668f$var$OKLCH_HUES[i];
1891
- let [nextHue, nextHueName] = $799cddbef784668f$var$OKLCH_HUES[i + 1] || [
1892
- 360,
1893
- "pink"
1894
- ];
1895
- if (h >= hue && h < nextHue) {
1896
- if (hueName === "orange") {
1897
- if (l < $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD) hueName = "brown";
1898
- else
1899
- l = l - $799cddbef784668f$var$ORANGE_LIGHTNESS_THRESHOLD + $799cddbef784668f$var$MAX_DARK_LIGHTNESS;
1900
- }
1901
- if (h > hue + (nextHue - hue) / 2 && hueName !== nextHueName) hueName = `${hueName} ${nextHueName}`;
1902
- else if (hueName === "yellow" && l < $799cddbef784668f$var$YELLOW_GREEN_LIGHTNESS_THRESHOLD)
1903
- hueName = "yellow green";
1904
- let name = strings.getStringForLocale(hueName, locale).toLocaleLowerCase(locale);
1905
- return [
1906
- name,
1907
- l
1908
- ];
1909
- }
1910
- }
1911
- throw new Error("Unexpected hue");
1912
- }
1913
- getHueName(locale) {
1914
- let [l, c, h] = $799cddbef784668f$var$toOKLCH(this);
1915
- let [name] = this.getOklchHue(l, c, h, locale);
1916
- return name;
1917
- }
1918
- }
1919
- class $799cddbef784668f$var$RGBColor extends $799cddbef784668f$var$Color {
1920
- static parse(value) {
1921
- let colors = [];
1922
- if (/^#[\da-f]+$/i.test(value) && [
1923
- 4,
1924
- 5,
1925
- 7,
1926
- 9
1927
- ].includes(value.length)) {
1928
- const values = (value.length < 6 ? value.replace(/[^#]/gi, "$&$&") : value).slice(1).split("");
1929
- while (values.length > 0) colors.push(parseInt(values.splice(0, 2).join(""), 16));
1930
- colors[3] = colors[3] !== void 0 ? colors[3] / 255 : void 0;
1931
- }
1932
- const match = value.match(/^rgba?\((.*)\)$/);
1933
- if (match === null || match === void 0 ? void 0 : match[1]) {
1934
- colors = match[1].split(",").map((value2) => Number(value2.trim()));
1935
- colors = colors.map((num, i) => {
1936
- return $9446cca9a3875146$export$7d15b64cf5a3a4c4(num !== null && num !== void 0 ? num : 0, 0, i < 3 ? 255 : 1);
1937
- });
1938
- }
1939
- if (colors[0] === void 0 || colors[1] === void 0 || colors[2] === void 0) return void 0;
1940
- var _colors_;
1941
- 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);
1942
- }
1943
- toString(format = "css") {
1944
- switch (format) {
1945
- case "hex":
1946
- return "#" + (this.red.toString(16).padStart(2, "0") + this.green.toString(16).padStart(2, "0") + this.blue.toString(16).padStart(2, "0")).toUpperCase();
1947
- case "hexa":
1948
- 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();
1949
- case "rgb":
1950
- return `rgb(${this.red}, ${this.green}, ${this.blue})`;
1951
- case "css":
1952
- case "rgba":
1953
- return `rgba(${this.red}, ${this.green}, ${this.blue}, ${this.alpha})`;
1954
- default:
1955
- return this.toFormat(format).toString(format);
1956
- }
1957
- }
1958
- toFormat(format) {
1959
- switch (format) {
1960
- case "hex":
1961
- case "hexa":
1962
- case "rgb":
1963
- case "rgba":
1964
- return this;
1965
- case "hsb":
1966
- case "hsba":
1967
- return this.toHSB();
1968
- case "hsl":
1969
- case "hsla":
1970
- return this.toHSL();
1971
- default:
1972
- throw new Error("Unsupported color conversion: rgb -> " + format);
1973
- }
1974
- }
1975
- toHexInt() {
1976
- return this.red << 16 | this.green << 8 | this.blue;
1977
- }
1978
- /**
1979
- * Converts an RGB color value to HSB.
1980
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#From_RGB.
1981
- * @returns An HSBColor object.
1982
- */
1983
- toHSB() {
1984
- const red = this.red / 255;
1985
- const green = this.green / 255;
1986
- const blue = this.blue / 255;
1987
- const min = Math.min(red, green, blue);
1988
- const brightness = Math.max(red, green, blue);
1989
- const chroma = brightness - min;
1990
- const saturation = brightness === 0 ? 0 : chroma / brightness;
1991
- let hue = 0;
1992
- if (chroma !== 0) {
1993
- switch (brightness) {
1994
- case red:
1995
- hue = (green - blue) / chroma + (green < blue ? 6 : 0);
1996
- break;
1997
- case green:
1998
- hue = (blue - red) / chroma + 2;
1999
- break;
2000
- case blue:
2001
- hue = (red - green) / chroma + 4;
2002
- break;
2003
- }
2004
- hue /= 6;
2005
- }
2006
- 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);
2007
- }
2008
- /**
2009
- * Converts an RGB color value to HSL.
2010
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#From_RGB.
2011
- * @returns An HSLColor object.
2012
- */
2013
- toHSL() {
2014
- const red = this.red / 255;
2015
- const green = this.green / 255;
2016
- const blue = this.blue / 255;
2017
- const min = Math.min(red, green, blue);
2018
- const max = Math.max(red, green, blue);
2019
- const lightness = (max + min) / 2;
2020
- const chroma = max - min;
2021
- let hue;
2022
- let saturation;
2023
- if (chroma === 0) hue = saturation = 0;
2024
- else {
2025
- saturation = chroma / (lightness < 0.5 ? max + min : 2 - max - min);
2026
- switch (max) {
2027
- case red:
2028
- hue = (green - blue) / chroma + (green < blue ? 6 : 0);
2029
- break;
2030
- case green:
2031
- hue = (blue - red) / chroma + 2;
2032
- break;
2033
- case blue:
2034
- default:
2035
- hue = (red - green) / chroma + 4;
2036
- break;
2037
- }
2038
- hue /= 6;
2039
- }
2040
- 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);
2041
- }
2042
- clone() {
2043
- return new $799cddbef784668f$var$RGBColor(this.red, this.green, this.blue, this.alpha);
2044
- }
2045
- getChannelRange(channel) {
2046
- switch (channel) {
2047
- case "red":
2048
- case "green":
2049
- case "blue":
2050
- return {
2051
- minValue: 0,
2052
- maxValue: 255,
2053
- step: 1,
2054
- pageSize: 17
2055
- };
2056
- case "alpha":
2057
- return {
2058
- minValue: 0,
2059
- maxValue: 1,
2060
- step: 0.01,
2061
- pageSize: 0.1
2062
- };
2063
- default:
2064
- throw new Error("Unknown color channel: " + channel);
2065
- }
2066
- }
2067
- getChannelFormatOptions(channel) {
2068
- switch (channel) {
2069
- case "red":
2070
- case "green":
2071
- case "blue":
2072
- return {
2073
- style: "decimal"
2074
- };
2075
- case "alpha":
2076
- return {
2077
- style: "percent"
2078
- };
2079
- default:
2080
- throw new Error("Unknown color channel: " + channel);
2081
- }
2082
- }
2083
- formatChannelValue(channel, locale) {
2084
- let options = this.getChannelFormatOptions(channel);
2085
- let value = this.getChannelValue(channel);
2086
- return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2087
- }
2088
- getColorSpace() {
2089
- return "rgb";
2090
- }
2091
- getColorChannels() {
2092
- return $799cddbef784668f$var$RGBColor.colorChannels;
2093
- }
2094
- constructor(red, green, blue, alpha) {
2095
- super(), this.red = red, this.green = green, this.blue = blue, this.alpha = alpha;
2096
- }
2097
- }
2098
- $799cddbef784668f$var$RGBColor.colorChannels = [
2099
- "red",
2100
- "green",
2101
- "blue"
2102
- ];
2103
- const $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+)?)\)/;
2104
- class $799cddbef784668f$var$HSBColor extends $799cddbef784668f$var$Color {
2105
- static parse(value) {
2106
- let m;
2107
- if (m = value.match($799cddbef784668f$var$HSB_REGEX)) {
2108
- var _m_;
2109
- const [h, s, b, a] = ((_m_ = m[1]) !== null && _m_ !== void 0 ? _m_ : m[2]).split(",").map((n) => Number(n.trim().replace("%", "")));
2110
- 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));
2111
- }
2112
- }
2113
- toString(format = "css") {
2114
- switch (format) {
2115
- case "css":
2116
- return this.toHSL().toString("css");
2117
- case "hex":
2118
- return this.toRGB().toString("hex");
2119
- case "hexa":
2120
- return this.toRGB().toString("hexa");
2121
- case "hsb":
2122
- return `hsb(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.brightness, 2)}%)`;
2123
- case "hsba":
2124
- return `hsba(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.brightness, 2)}%, ${this.alpha})`;
2125
- default:
2126
- return this.toFormat(format).toString(format);
2127
- }
2128
- }
2129
- toFormat(format) {
2130
- switch (format) {
2131
- case "hsb":
2132
- case "hsba":
2133
- return this;
2134
- case "hsl":
2135
- case "hsla":
2136
- return this.toHSL();
2137
- case "rgb":
2138
- case "rgba":
2139
- return this.toRGB();
2140
- default:
2141
- throw new Error("Unsupported color conversion: hsb -> " + format);
2142
- }
2143
- }
2144
- /**
2145
- * Converts a HSB color to HSL.
2146
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSV_to_HSL.
2147
- * @returns An HSLColor object.
2148
- */
2149
- toHSL() {
2150
- let saturation = this.saturation / 100;
2151
- let brightness = this.brightness / 100;
2152
- let lightness = brightness * (1 - saturation / 2);
2153
- saturation = lightness === 0 || lightness === 1 ? 0 : (brightness - lightness) / Math.min(lightness, 1 - lightness);
2154
- 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);
2155
- }
2156
- /**
2157
- * Converts a HSV color value to RGB.
2158
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSV_to_RGB_alternative.
2159
- * @returns An RGBColor object.
2160
- */
2161
- toRGB() {
2162
- let hue = this.hue;
2163
- let saturation = this.saturation / 100;
2164
- let brightness = this.brightness / 100;
2165
- let fn = (n, k = (n + hue / 60) % 6) => brightness - saturation * brightness * Math.max(Math.min(k, 4 - k, 1), 0);
2166
- return new $799cddbef784668f$var$RGBColor(Math.round(fn(5) * 255), Math.round(fn(3) * 255), Math.round(fn(1) * 255), this.alpha);
2167
- }
2168
- clone() {
2169
- return new $799cddbef784668f$var$HSBColor(this.hue, this.saturation, this.brightness, this.alpha);
2170
- }
2171
- getChannelRange(channel) {
2172
- switch (channel) {
2173
- case "hue":
2174
- return {
2175
- minValue: 0,
2176
- maxValue: 360,
2177
- step: 1,
2178
- pageSize: 15
2179
- };
2180
- case "saturation":
2181
- case "brightness":
2182
- return {
2183
- minValue: 0,
2184
- maxValue: 100,
2185
- step: 1,
2186
- pageSize: 10
2187
- };
2188
- case "alpha":
2189
- return {
2190
- minValue: 0,
2191
- maxValue: 1,
2192
- step: 0.01,
2193
- pageSize: 0.1
2194
- };
2195
- default:
2196
- throw new Error("Unknown color channel: " + channel);
2197
- }
2198
- }
2199
- getChannelFormatOptions(channel) {
2200
- switch (channel) {
2201
- case "hue":
2202
- return {
2203
- style: "unit",
2204
- unit: "degree",
2205
- unitDisplay: "narrow"
2206
- };
2207
- case "saturation":
2208
- case "brightness":
2209
- case "alpha":
2210
- return {
2211
- style: "percent"
2212
- };
2213
- default:
2214
- throw new Error("Unknown color channel: " + channel);
2215
- }
2216
- }
2217
- formatChannelValue(channel, locale) {
2218
- let options = this.getChannelFormatOptions(channel);
2219
- let value = this.getChannelValue(channel);
2220
- if (channel === "saturation" || channel === "brightness") value /= 100;
2221
- return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2222
- }
2223
- getColorSpace() {
2224
- return "hsb";
2225
- }
2226
- getColorChannels() {
2227
- return $799cddbef784668f$var$HSBColor.colorChannels;
2228
- }
2229
- constructor(hue, saturation, brightness, alpha) {
2230
- super(), this.hue = hue, this.saturation = saturation, this.brightness = brightness, this.alpha = alpha;
2231
- }
2232
- }
2233
- $799cddbef784668f$var$HSBColor.colorChannels = [
2234
- "hue",
2235
- "saturation",
2236
- "brightness"
2237
- ];
2238
- const $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+)?)\)/;
2239
- class $799cddbef784668f$var$HSLColor extends $799cddbef784668f$var$Color {
2240
- static parse(value) {
2241
- let m;
2242
- if (m = value.match($799cddbef784668f$var$HSL_REGEX)) {
2243
- var _m_;
2244
- const [h, s, l, a] = ((_m_ = m[1]) !== null && _m_ !== void 0 ? _m_ : m[2]).split(",").map((n) => Number(n.trim().replace("%", "")));
2245
- 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));
2246
- }
2247
- }
2248
- toString(format = "css") {
2249
- switch (format) {
2250
- case "hex":
2251
- return this.toRGB().toString("hex");
2252
- case "hexa":
2253
- return this.toRGB().toString("hexa");
2254
- case "hsl":
2255
- return `hsl(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.lightness, 2)}%)`;
2256
- case "css":
2257
- case "hsla":
2258
- return `hsla(${this.hue}, ${$9446cca9a3875146$export$b6268554fba451f(this.saturation, 2)}%, ${$9446cca9a3875146$export$b6268554fba451f(this.lightness, 2)}%, ${this.alpha})`;
2259
- default:
2260
- return this.toFormat(format).toString(format);
2261
- }
2262
- }
2263
- toFormat(format) {
2264
- switch (format) {
2265
- case "hsl":
2266
- case "hsla":
2267
- return this;
2268
- case "hsb":
2269
- case "hsba":
2270
- return this.toHSB();
2271
- case "rgb":
2272
- case "rgba":
2273
- return this.toRGB();
2274
- default:
2275
- throw new Error("Unsupported color conversion: hsl -> " + format);
2276
- }
2277
- }
2278
- /**
2279
- * Converts a HSL color to HSB.
2280
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_HSV.
2281
- * @returns An HSBColor object.
2282
- */
2283
- toHSB() {
2284
- let saturation = this.saturation / 100;
2285
- let lightness = this.lightness / 100;
2286
- let brightness = lightness + saturation * Math.min(lightness, 1 - lightness);
2287
- saturation = brightness === 0 ? 0 : 2 * (1 - lightness / brightness);
2288
- 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);
2289
- }
2290
- /**
2291
- * Converts a HSL color to RGB.
2292
- * Conversion formula adapted from https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB_alternative.
2293
- * @returns An RGBColor object.
2294
- */
2295
- toRGB() {
2296
- let hue = this.hue;
2297
- let saturation = this.saturation / 100;
2298
- let lightness = this.lightness / 100;
2299
- let a = saturation * Math.min(lightness, 1 - lightness);
2300
- let fn = (n, k = (n + hue / 30) % 12) => lightness - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);
2301
- return new $799cddbef784668f$var$RGBColor(Math.round(fn(0) * 255), Math.round(fn(8) * 255), Math.round(fn(4) * 255), this.alpha);
2302
- }
2303
- clone() {
2304
- return new $799cddbef784668f$var$HSLColor(this.hue, this.saturation, this.lightness, this.alpha);
2305
- }
2306
- getChannelRange(channel) {
2307
- switch (channel) {
2308
- case "hue":
2309
- return {
2310
- minValue: 0,
2311
- maxValue: 360,
2312
- step: 1,
2313
- pageSize: 15
2314
- };
2315
- case "saturation":
2316
- case "lightness":
2317
- return {
2318
- minValue: 0,
2319
- maxValue: 100,
2320
- step: 1,
2321
- pageSize: 10
2322
- };
2323
- case "alpha":
2324
- return {
2325
- minValue: 0,
2326
- maxValue: 1,
2327
- step: 0.01,
2328
- pageSize: 0.1
2329
- };
2330
- default:
2331
- throw new Error("Unknown color channel: " + channel);
2332
- }
2333
- }
2334
- getChannelFormatOptions(channel) {
2335
- switch (channel) {
2336
- case "hue":
2337
- return {
2338
- style: "unit",
2339
- unit: "degree",
2340
- unitDisplay: "narrow"
2341
- };
2342
- case "saturation":
2343
- case "lightness":
2344
- case "alpha":
2345
- return {
2346
- style: "percent"
2347
- };
2348
- default:
2349
- throw new Error("Unknown color channel: " + channel);
2350
- }
2351
- }
2352
- formatChannelValue(channel, locale) {
2353
- let options = this.getChannelFormatOptions(channel);
2354
- let value = this.getChannelValue(channel);
2355
- if (channel === "saturation" || channel === "lightness") value /= 100;
2356
- return new $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5(locale, options).format(value);
2357
- }
2358
- getColorSpace() {
2359
- return "hsl";
2360
- }
2361
- getColorChannels() {
2362
- return $799cddbef784668f$var$HSLColor.colorChannels;
2363
- }
2364
- constructor(hue, saturation, lightness, alpha) {
2365
- super(), this.hue = hue, this.saturation = saturation, this.lightness = lightness, this.alpha = alpha;
2366
- }
2367
- }
2368
- $799cddbef784668f$var$HSLColor.colorChannels = [
2369
- "hue",
2370
- "saturation",
2371
- "lightness"
2372
- ];
2373
- function $799cddbef784668f$var$toOKLCH(color) {
2374
- let rgb = color.toFormat("rgb");
2375
- let red = rgb.getChannelValue("red") / 255;
2376
- let green = rgb.getChannelValue("green") / 255;
2377
- let blue = rgb.getChannelValue("blue") / 255;
2378
- [red, green, blue] = $799cddbef784668f$var$lin_sRGB(red, green, blue);
2379
- let [x, y, z] = $799cddbef784668f$var$lin_sRGB_to_XYZ(red, green, blue);
2380
- let [l, a, b] = $799cddbef784668f$var$XYZ_to_OKLab(x, y, z);
2381
- return $799cddbef784668f$var$OKLab_to_OKLCH(l, a, b);
2382
- }
2383
- function $799cddbef784668f$var$OKLab_to_OKLCH(l, a, b) {
2384
- var hue = Math.atan2(b, a) * 180 / Math.PI;
2385
- return [
2386
- l,
2387
- Math.sqrt(a ** 2 + b ** 2),
2388
- hue >= 0 ? hue : hue + 360
2389
- // Hue, in degrees [0 to 360)
2390
- ];
2391
- }
2392
- function $799cddbef784668f$var$lin_sRGB(r, g, b) {
2393
- return [
2394
- $799cddbef784668f$var$lin_sRGB_component(r),
2395
- $799cddbef784668f$var$lin_sRGB_component(g),
2396
- $799cddbef784668f$var$lin_sRGB_component(b)
2397
- ];
2398
- }
2399
- function $799cddbef784668f$var$lin_sRGB_component(val) {
2400
- let sign = val < 0 ? -1 : 1;
2401
- let abs = Math.abs(val);
2402
- if (abs <= 0.04045) return val / 12.92;
2403
- return sign * Math.pow((abs + 0.055) / 1.055, 2.4);
2404
- }
2405
- function $799cddbef784668f$var$lin_sRGB_to_XYZ(r, g, b) {
2406
- const M = [
2407
- 506752 / 1228815,
2408
- 87881 / 245763,
2409
- 12673 / 70218,
2410
- 87098 / 409605,
2411
- 175762 / 245763,
2412
- 12673 / 175545,
2413
- 7918 / 409605,
2414
- 87881 / 737289,
2415
- 1001167 / 1053270
2416
- ];
2417
- return $799cddbef784668f$var$multiplyMatrix(M, r, g, b);
2418
- }
2419
- function $799cddbef784668f$var$XYZ_to_OKLab(x, y, z) {
2420
- const XYZtoLMS = [
2421
- 0.819022437996703,
2422
- 0.3619062600528904,
2423
- -0.1288737815209879,
2424
- 0.0329836539323885,
2425
- 0.9292868615863434,
2426
- 0.0361446663506424,
2427
- 0.0481771893596242,
2428
- 0.2642395317527308,
2429
- 0.6335478284694309
2430
- ];
2431
- const LMStoOKLab = [
2432
- 0.210454268309314,
2433
- 0.7936177747023054,
2434
- -0.0040720430116193,
2435
- 1.9779985324311684,
2436
- -2.42859224204858,
2437
- 0.450593709617411,
2438
- 0.0259040424655478,
2439
- 0.7827717124575296,
2440
- -0.8086757549230774
2441
- ];
2442
- let [a, b, c] = $799cddbef784668f$var$multiplyMatrix(XYZtoLMS, x, y, z);
2443
- return $799cddbef784668f$var$multiplyMatrix(LMStoOKLab, Math.cbrt(a), Math.cbrt(b), Math.cbrt(c));
2444
- }
2445
- function $799cddbef784668f$var$multiplyMatrix(m, x, y, z) {
2446
- let a = m[0] * x + m[1] * y + m[2] * z;
2447
- let b = m[3] * x + m[4] * y + m[5] * z;
2448
- let c = m[6] * x + m[7] * y + m[8] * z;
2449
- return [
2450
- a,
2451
- b,
2452
- c
2453
- ];
2454
- }
2455
- function $parcel$interopDefault(a) {
2456
- return a && a.__esModule ? a.default : a;
2457
- }
2458
- function $2993fcad7650b98d$export$9060ae606178d849(props) {
2459
- let { color: value, colorName } = props;
2460
- let nonNullValue = value || "#fff0";
2461
- let color = useMemo(() => typeof nonNullValue === "string" ? $799cddbef784668f$export$6e865ea70d7724f(nonNullValue) : nonNullValue, [
2462
- nonNullValue
2463
- ]);
2464
- let { locale } = $18f2051aff69b9bf$export$43bb16f9c6d9e3f7();
2465
- let DOMProps = $65484d02dcb7eb3e$export$457c3d6518dd4c6f(props, {
2466
- labelable: true
2467
- });
2468
- let stringFormatter = $fca6afa0e843324b$export$f12b703ca79dfbb1($parcel$interopDefault($3493a52097159720$exports), "@react-aria/color");
2469
- let id = $bdb11010cef70236$export$f680877a34711e37(props.id);
2470
- if (!colorName) colorName = color.getChannelValue("alpha") === 0 ? stringFormatter.format("transparent") : color.getColorName(locale);
2471
- return {
2472
- colorSwatchProps: {
2473
- ...DOMProps,
2474
- role: "img",
2475
- "aria-roledescription": stringFormatter.format("colorSwatch"),
2476
- "aria-label": [
2477
- colorName,
2478
- props["aria-label"] || ""
2479
- ].filter(Boolean).join(", "),
2480
- "aria-labelledby": props["aria-labelledby"] ? `${id} ${props["aria-labelledby"]}` : void 0,
2481
- id,
2482
- style: {
2483
- backgroundColor: color.toString("css"),
2484
- // @ts-ignore
2485
- forcedColorAdjust: "none"
2486
- }
2487
- },
2488
- color: color || null
2489
- };
2490
- }
2491
- const $251c695a52d94a8d$export$83cc445538396800 = /* @__PURE__ */ createContext(null);
2492
- const $251c695a52d94a8d$export$cae13e90592f246a = /* @__PURE__ */ forwardRef(function ColorSwatch(props, ref) {
2493
- [props, ref] = $64fa3d84918910a7$export$29f1550f4b0d4415(props, ref, $251c695a52d94a8d$export$83cc445538396800);
2494
- let { colorSwatchProps, color } = $2993fcad7650b98d$export$9060ae606178d849(props);
2495
- let renderProps = $64fa3d84918910a7$export$4d86445c2cf5e3({
2496
- ...props,
2497
- defaultClassName: "react-aria-ColorSwatch",
2498
- defaultStyle: colorSwatchProps.style,
2499
- values: {
2500
- color
2501
- }
2502
- });
2503
- let DOMProps = $65484d02dcb7eb3e$export$457c3d6518dd4c6f(props, {
2504
- global: true
2505
- });
2506
- return /* @__PURE__ */ $dbSRa$react__default.createElement($64fa3d84918910a7$export$df3a06d6289f983e.div, {
2507
- ...$3ef42575df84b30b$export$9d1611c77c2fe928(DOMProps, colorSwatchProps, renderProps),
2508
- slot: props.slot || void 0,
2509
- ref
2510
- });
2511
- });
2512
- /**
2513
- * A simple color/gradient swatch.
2514
- *
2515
- * @component
2516
- * @param {Object} props - Component props.
2517
- * @param {string} [props.color] - The color to display.
2518
- * @param {string} [props.gradient] - The gradient to display.
2519
- * @param {string} [props.className] - Additional clsx to apply.
2520
- * @param {string} [props.colorName] - The name of the color. Should be auto-generated for colors.
2521
- * @param {boolean} [props.flat] - If `true`, component will look more flat. Useful for nested layer of controls.
2522
- * @param {boolean} [props.customGradient=false] - Set to `true` if using a custom gradient.
2523
- *
2524
- * @returns {JSX.Element} The ColorSwatch component.
2525
- *
2526
- * @example
2527
- * <ColorSwatch color="#FF0000" />
2528
- *
2529
- * @example
2530
- * <ColorSwatch gradient="linear-gradient(45deg, #FF0000, #00FF00)" />
2531
- *
2532
- * @preserve
2533
- */
2534
- const ColorSwatch2 = (props) => {
2535
- const { color: rawColor, gradient, className, colorName, flat, customGradient = false } = props;
2536
- const checkerPattern = "repeating-conic-gradient(#CCC 0% 25%, white 0% 50%) 50% / 0.75rem 0.75rem";
2537
- let color;
2538
- if (rawColor && !gradient && !customGradient) {
2539
- try {
2540
- if (rawColor === "transparent") {
2541
- color = "rgba(0, 0, 0, 0)";
2542
- } else {
2543
- color = $799cddbef784668f$export$6e865ea70d7724f(rawColor);
2544
- }
2545
- } catch (error) {
2546
- color = null;
2547
- }
2548
- }
2549
- const backgroundGradient = gradient ? `${gradient}, ${checkerPattern}` : `linear-gradient(${color}, ${color}), ${checkerPattern}`;
2550
- return /* @__PURE__ */ jsx(
2551
- $251c695a52d94a8d$export$cae13e90592f246a,
2552
- {
2553
- ...props,
2554
- style: {
2555
- background: (color || gradient) && backgroundGradient
2556
- },
2557
- className: () => clsx("es:size-6 es:rounded-md es:border es:border-secondary-300", !color && !gradient && !customGradient && "es:bg-white", !flat && "es:shadow-sm", className),
2558
- colorName: !color && !gradient && !customGradient ? __("No color", "eightshift-ui-components") : colorName,
2559
- color,
2560
- children: !color && !gradient && !customGradient && /* @__PURE__ */ jsx("div", { className: "es:m-auto es:h-full es:w-px es:rotate-45 es:rounded-md es:bg-red-500" })
2561
- }
2562
- );
2563
- };
2564
- export {
2565
- $251c695a52d94a8d$export$cae13e90592f246a as $,
2566
- ColorSwatch2 as C,
2567
- $799cddbef784668f$export$4cde5df63f53f473 as a,
2568
- $799cddbef784668f$export$6e865ea70d7724f as b,
2569
- $3493a52097159720$exports as c
2570
- };