@v-miniapp/ui-react 1.0.60 → 1.0.71

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 (491) hide show
  1. package/dist/_virtual/_cloneBuffer.js +4 -0
  2. package/dist/_virtual/_commonjsHelpers.js +8 -0
  3. package/dist/_virtual/_nodeUtil.js +4 -0
  4. package/dist/_virtual/cloneDeepWith.js +7 -0
  5. package/dist/_virtual/isBuffer.js +4 -0
  6. package/dist/_virtual/isObject.js +7 -0
  7. package/dist/_virtual/isSameOrAfter.js +7 -0
  8. package/dist/_virtual/isSameOrAfter2.js +4 -0
  9. package/dist/_virtual/isSameOrBefore.js +7 -0
  10. package/dist/_virtual/isSameOrBefore2.js +4 -0
  11. package/dist/_virtual/merge.js +7 -0
  12. package/dist/_virtual/omit.js +7 -0
  13. package/dist/_virtual/pick.js +7 -0
  14. package/dist/_virtual/throttle.js +7 -0
  15. package/dist/assets/icons/loader.svg.js +5 -0
  16. package/dist/assets/icons/placeholder.svg.js +5 -0
  17. package/dist/assets/images/broken-image.svg.js +5 -0
  18. package/dist/assets/images/default-error.png.js +4 -0
  19. package/dist/assets/images/image.svg.js +5 -0
  20. package/dist/components/ai-app/ai-app.d.ts +7 -0
  21. package/dist/components/ai-app/ai-app.js +20 -0
  22. package/dist/components/ai-app/index.d.ts +1 -0
  23. package/dist/components/alert/alert.js +76 -0
  24. package/dist/components/app/app.d.ts +1 -6
  25. package/dist/components/app/app.js +78 -0
  26. package/dist/components/app/app.store.d.ts +6 -0
  27. package/dist/components/app/app.store.js +8 -0
  28. package/dist/components/app/bottom-tab-bar-layout/hook.js +36 -0
  29. package/dist/components/app/bottom-tab-bar-layout/index.js +38 -0
  30. package/dist/components/app/bottom-tab-bar-layout/store.js +54 -0
  31. package/dist/components/app/data-theme.js +29 -0
  32. package/dist/components/app/navigation-bar-layout/hook.js +39 -0
  33. package/dist/components/app/navigation-bar-layout/index.js +46 -0
  34. package/dist/components/app/navigation-bar-layout/store.js +60 -0
  35. package/dist/components/app/page-layout/hook.js +62 -0
  36. package/dist/components/app/page-layout/index.js +21 -0
  37. package/dist/components/app/page-layout/store.js +52 -0
  38. package/dist/components/avatar/avatar.js +79 -0
  39. package/dist/components/badge/badge.js +40 -0
  40. package/dist/components/bottom-tab-bar/bottom-tab-bar.js +90 -0
  41. package/dist/components/button/button.const.js +7 -0
  42. package/dist/components/button/button.js +62 -0
  43. package/dist/components/calendar/calendar-range-sheet.js +66 -0
  44. package/dist/components/calendar/calendar-single-sheet.js +64 -0
  45. package/dist/components/calendar/calendar.js +16 -0
  46. package/dist/components/calendar/default-render.js +16 -0
  47. package/dist/components/calendar/range-picker.js +301 -0
  48. package/dist/components/calendar/single-picker.js +186 -0
  49. package/dist/components/calendar/utils.js +25 -0
  50. package/dist/components/carousel/carousel.js +47 -0
  51. package/dist/components/carousel/use-carousel.js +54 -0
  52. package/dist/components/checkbox/check-icon.js +23 -0
  53. package/dist/components/checkbox/checkbox.js +131 -0
  54. package/dist/components/checkbox/indeterminate-icon.js +20 -0
  55. package/dist/components/chip/chip.js +80 -0
  56. package/dist/components/date-field/date-field-range.js +153 -0
  57. package/dist/components/date-field/date-field.js +100 -0
  58. package/dist/components/date-field/input.js +53 -0
  59. package/dist/components/date-picker/date-picker-base.js +214 -0
  60. package/dist/components/date-picker/date-picker-item.js +69 -0
  61. package/dist/components/date-picker/date-picker-sheet.js +54 -0
  62. package/dist/components/date-picker/date-picker.constant.js +11 -0
  63. package/dist/components/date-picker/date-picker.js +76 -0
  64. package/dist/components/date-picker/date-picker.utils.js +58 -0
  65. package/dist/components/dialog/dialog.js +115 -0
  66. package/dist/components/dropdown/dropdown-base.js +22 -0
  67. package/dist/components/dropdown/dropdown.js +148 -0
  68. package/dist/components/error/error-boundary.js +28 -0
  69. package/dist/components/error/error.js +25 -0
  70. package/dist/components/icon/icon-mapping.js +260 -0
  71. package/dist/components/icon/icon.js +54 -0
  72. package/dist/components/image/image.js +70 -0
  73. package/dist/components/index.d.ts +1 -0
  74. package/dist/components/input-wrapper/input-wrapper.js +153 -0
  75. package/dist/components/label/label.js +58 -0
  76. package/dist/components/layout/page-loading.js +39 -0
  77. package/dist/components/layout/page.js +103 -0
  78. package/dist/components/list-item/list-item.js +36 -0
  79. package/dist/components/navigation-bar/navigation-bar.d.ts +1 -4
  80. package/dist/components/navigation-bar/navigation-bar.js +106 -0
  81. package/dist/components/number-field/number-field.js +162 -0
  82. package/dist/components/option-item/option-item.js +56 -0
  83. package/dist/components/pagination/pagination.js +20 -0
  84. package/dist/components/pull-to-refresh/pull-to-refresh.js +120 -0
  85. package/dist/components/radio/radio.js +72 -0
  86. package/dist/components/rating/rating.js +62 -0
  87. package/dist/components/rating/star.js +22 -0
  88. package/dist/components/search-field/search-field.js +40 -0
  89. package/dist/components/section/section-content.js +10 -0
  90. package/dist/components/section/section-title.js +32 -0
  91. package/dist/components/section/section.js +21 -0
  92. package/dist/components/seo/seo.js +18 -0
  93. package/dist/components/sheet/sheet-body.js +25 -0
  94. package/dist/components/sheet/sheet-footer.js +11 -0
  95. package/dist/components/sheet/sheet-header.js +52 -0
  96. package/dist/components/sheet/sheet.js +72 -0
  97. package/dist/components/skeleton/skeleton.js +50 -0
  98. package/dist/components/switch/switch.js +68 -0
  99. package/dist/components/tab-bar/tab-bar.js +130 -0
  100. package/dist/components/tab-bar/tab.js +55 -0
  101. package/dist/components/text-area/text-area.js +75 -0
  102. package/dist/components/text-field/text-field.js +63 -0
  103. package/dist/components/toast/toast-provider.js +45 -0
  104. package/dist/components/toast/toast.js +66 -0
  105. package/dist/components/toast/toast.store.js +35 -0
  106. package/dist/components/tooltip/tooltip.js +43 -0
  107. package/dist/components/typography/typography.js +28 -0
  108. package/dist/components/uploader/helper.js +21 -0
  109. package/dist/components/uploader/uploader.js +93 -0
  110. package/dist/components/visibility-sensor/visibility-sensor.js +17 -0
  111. package/dist/docs/ui-react/icon-list-grid.d.ts +1 -0
  112. package/dist/external/index.js +13357 -13497
  113. package/dist/external/styles.css +1 -1
  114. package/dist/hooks/use-custom-icon-event.js +16 -0
  115. package/dist/hooks/use-settings-changed.js +16 -0
  116. package/dist/index.d.ts +1 -0
  117. package/dist/index.js +139 -7488
  118. package/dist/locales/en.json.js +30 -0
  119. package/dist/locales/index.d.ts +2 -0
  120. package/dist/locales/index.js +10 -0
  121. package/dist/locales/vi.json.js +30 -0
  122. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrAfter.js +18 -0
  123. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrBefore.js +18 -0
  124. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_DataView.js +12 -0
  125. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Hash.js +22 -0
  126. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_ListCache.js +22 -0
  127. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Map.js +12 -0
  128. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_MapCache.js +22 -0
  129. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Promise.js +12 -0
  130. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Set.js +12 -0
  131. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Stack.js +20 -0
  132. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Symbol.js +11 -0
  133. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Uint8Array.js +11 -0
  134. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_WeakMap.js +12 -0
  135. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_apply.js +22 -0
  136. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayEach.js +14 -0
  137. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayFilter.js +16 -0
  138. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayLikeKeys.js +26 -0
  139. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayMap.js +14 -0
  140. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayPush.js +14 -0
  141. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignMergeValue.js +15 -0
  142. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignValue.js +16 -0
  143. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assocIndexOf.js +17 -0
  144. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssign.js +15 -0
  145. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignIn.js +15 -0
  146. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignValue.js +19 -0
  147. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseClone.js +70 -0
  148. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseCreate.js +23 -0
  149. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFlatten.js +20 -0
  150. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFor.js +11 -0
  151. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGet.js +18 -0
  152. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetAllKeys.js +16 -0
  153. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetTag.js +16 -0
  154. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseHasIn.js +12 -0
  155. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsArguments.js +15 -0
  156. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsMap.js +15 -0
  157. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsNative.js +22 -0
  158. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsSet.js +15 -0
  159. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsTypedArray.js +17 -0
  160. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeys.js +20 -0
  161. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeysIn.js +21 -0
  162. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMerge.js +27 -0
  163. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMergeDeep.js +38 -0
  164. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePick.js +17 -0
  165. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePickBy.js +20 -0
  166. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseRest.js +16 -0
  167. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSet.js +31 -0
  168. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSetToString.js +20 -0
  169. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSlice.js +16 -0
  170. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTimes.js +14 -0
  171. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseToString.js +24 -0
  172. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTrim.js +14 -0
  173. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnary.js +14 -0
  174. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnset.js +34 -0
  175. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_castPath.js +17 -0
  176. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneArrayBuffer.js +15 -0
  177. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneBuffer.js +19 -0
  178. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneDataView.js +15 -0
  179. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneRegExp.js +14 -0
  180. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneSymbol.js +14 -0
  181. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneTypedArray.js +15 -0
  182. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyArray.js +15 -0
  183. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyObject.js +21 -0
  184. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbols.js +15 -0
  185. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbolsIn.js +15 -0
  186. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_coreJsData.js +11 -0
  187. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createAssigner.js +22 -0
  188. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createBaseFor.js +19 -0
  189. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_customOmitClone.js +14 -0
  190. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_defineProperty.js +17 -0
  191. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_flatRest.js +16 -0
  192. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_freeGlobal.js +11 -0
  193. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeys.js +16 -0
  194. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeysIn.js +16 -0
  195. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getMapData.js +15 -0
  196. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getNative.js +16 -0
  197. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getPrototype.js +11 -0
  198. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getRawTag.js +21 -0
  199. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbols.js +16 -0
  200. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbolsIn.js +18 -0
  201. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getTag.js +33 -0
  202. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getValue.js +12 -0
  203. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hasPath.js +26 -0
  204. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashClear.js +14 -0
  205. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashDelete.js +13 -0
  206. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashGet.js +19 -0
  207. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashHas.js +15 -0
  208. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashSet.js +15 -0
  209. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneArray.js +14 -0
  210. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneByTag.js +48 -0
  211. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneObject.js +16 -0
  212. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isFlattenable.js +16 -0
  213. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIndex.js +14 -0
  214. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIterateeCall.js +20 -0
  215. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKey.js +18 -0
  216. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKeyable.js +13 -0
  217. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isMasked.js +17 -0
  218. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isPrototype.js +14 -0
  219. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheClear.js +12 -0
  220. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheDelete.js +18 -0
  221. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheGet.js +15 -0
  222. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheHas.js +14 -0
  223. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheSet.js +15 -0
  224. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheClear.js +20 -0
  225. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheDelete.js +15 -0
  226. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheGet.js +14 -0
  227. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheHas.js +14 -0
  228. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheSet.js +15 -0
  229. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_memoizeCapped.js +17 -0
  230. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeCreate.js +11 -0
  231. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeys.js +11 -0
  232. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeysIn.js +16 -0
  233. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nodeUtil.js +19 -0
  234. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_objectToString.js +13 -0
  235. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overArg.js +14 -0
  236. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overRest.js +21 -0
  237. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_parent.js +15 -0
  238. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_root.js +11 -0
  239. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_safeGet.js +13 -0
  240. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_setToString.js +12 -0
  241. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_shortOut.js +22 -0
  242. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackClear.js +14 -0
  243. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackDelete.js +13 -0
  244. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackGet.js +12 -0
  245. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackHas.js +12 -0
  246. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackSet.js +23 -0
  247. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stringToPath.js +16 -0
  248. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toKey.js +17 -0
  249. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toSource.js +23 -0
  250. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_trimmedEndIndex.js +15 -0
  251. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/cloneDeepWith.js +14 -0
  252. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/constant.js +14 -0
  253. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/debounce.js +60 -0
  254. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/eq.js +12 -0
  255. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/flatten.js +15 -0
  256. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/hasIn.js +15 -0
  257. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/identity.js +12 -0
  258. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArguments.js +16 -0
  259. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArray.js +10 -0
  260. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLike.js +15 -0
  261. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLikeObject.js +15 -0
  262. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isBuffer.js +14 -0
  263. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isFunction.js +18 -0
  264. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isLength.js +13 -0
  265. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isMap.js +13 -0
  266. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObject.js +13 -0
  267. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObjectLike.js +12 -0
  268. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isPlainObject.js +22 -0
  269. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSet.js +13 -0
  270. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSymbol.js +15 -0
  271. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isTypedArray.js +13 -0
  272. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keys.js +16 -0
  273. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keysIn.js +16 -0
  274. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/last.js +13 -0
  275. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/memoize.js +23 -0
  276. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/merge.js +14 -0
  277. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/now.js +13 -0
  278. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/omit.js +29 -0
  279. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/pick.js +14 -0
  280. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubArray.js +12 -0
  281. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubFalse.js +12 -0
  282. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/throttle.js +22 -0
  283. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toNumber.js +28 -0
  284. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toPlainObject.js +15 -0
  285. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toString.js +14 -0
  286. package/dist/styles.css +1 -1
  287. package/dist/utils/bound.js +7 -0
  288. package/dist/utils/can-use-dom.js +4 -0
  289. package/dist/utils/classname.js +6 -0
  290. package/dist/utils/colors.gen.js +371 -0
  291. package/dist/utils/colors.js +8 -0
  292. package/dist/utils/convert-px.js +14 -0
  293. package/dist/utils/date.d.ts +2 -1
  294. package/dist/utils/date.js +9 -0
  295. package/dist/utils/deep-clone.js +10 -0
  296. package/dist/utils/dev-log.js +7 -0
  297. package/dist/utils/get-scroll-parent.js +20 -0
  298. package/dist/utils/is-dev.js +4 -0
  299. package/dist/utils/rubberband.js +11 -0
  300. package/dist/utils/sleep.js +4 -0
  301. package/dist/utils/supports-passive.js +15 -0
  302. package/dist/utils/to-css-length.js +6 -0
  303. package/dist/vsf/choose-image.js +14 -0
  304. package/dist-storybook/assets/AIApp-C4keJkW8.js +37 -0
  305. package/dist-storybook/assets/{App-CJxOxRXd.js → App-BkiRuUOF.js} +1 -1
  306. package/dist-storybook/assets/Color-6BZIO3FS-EdXZe4iv.js +1 -0
  307. package/dist-storybook/assets/{DEEPLINK-B5vUshJ4.js → DEEPLINK-CvpIbZVm.js} +1 -1
  308. package/dist-storybook/assets/DocsRenderer-LL677BLK-Ch7ovClC.js +2 -0
  309. package/dist-storybook/assets/{EVENTS-DIl-sE2t.js → EVENTS-Bnl2ehlm.js} +1 -1
  310. package/dist-storybook/assets/{GETTING_STARTED-CR4dG_o7.js → GETTING_STARTED-BYcN9hg3.js} +1 -1
  311. package/dist-storybook/assets/{GETTING_STARTED-CtonLhRi.js → GETTING_STARTED-BmHWFQQE.js} +1 -1
  312. package/dist-storybook/assets/GETTING_STARTED-C1AOB25Z.js +45 -0
  313. package/dist-storybook/assets/{GETTING_STARTED-CS2BpDsP.js → GETTING_STARTED-CBY9dL2_.js} +1 -1
  314. package/dist-storybook/assets/ICON-BaZgXbtw.js +6 -0
  315. package/dist-storybook/assets/ICON-CT1pTB1A.js +6 -0
  316. package/dist-storybook/assets/{INFINITE_SCROLL-BerukJIr.js → INFINITE_SCROLL-BJeWhgO7.js} +1 -1
  317. package/dist-storybook/assets/{LocalesProvider-CehS9yzW.js → LocalesProvider-CQEwtoq3.js} +1 -1
  318. package/dist-storybook/assets/{MIGRATE_DARKMODE_TO_THEME-CRf-7Wcz.js → MIGRATE_DARKMODE_TO_THEME-DCxXgvQC.js} +1 -1
  319. package/dist-storybook/assets/{MIGRATION_GUIDE-CRIHuXpT.js → MIGRATION_GUIDE-BN_V-xNj.js} +1 -1
  320. package/dist-storybook/assets/OVERVIEW-AI-CLWBzviY.js +35 -0
  321. package/dist-storybook/assets/{OVERVIEW-DayETux4.js → OVERVIEW-Byly3lQV.js} +1 -1
  322. package/dist-storybook/assets/{Router-CGsO5Wd_.js → Router-CO6rjSXr.js} +1 -1
  323. package/dist-storybook/assets/{TAILWIND_INTEGRATION-RPvFP-GI.js → TAILWIND_INTEGRATION-CpN4_fSu.js} +1 -1
  324. package/dist-storybook/assets/{THEME-C-pA_uq_.js → THEME-B9Y39f9D.js} +1 -1
  325. package/dist-storybook/assets/WithTooltip-65CFNBJE-D6J_7FjK.js +9 -0
  326. package/dist-storybook/assets/{alert.stories-CFBhdabd.js → alert.stories-CUItfPLn.js} +12 -12
  327. package/dist-storybook/assets/app.store-BJVKVv1J.js +1 -0
  328. package/dist-storybook/assets/avatar.stories-8_vV7Bb0.js +136 -0
  329. package/dist-storybook/assets/{axe-Cj9fkEY9.js → axe-4EaTvypG.js} +13 -13
  330. package/dist-storybook/assets/badge-Gh2kTOE3.js +1 -0
  331. package/dist-storybook/assets/{badge.stories-DhVKBE64.js → badge.stories-BXGAtgaV.js} +3 -3
  332. package/dist-storybook/assets/blocks-CB7UwFa4.js +758 -0
  333. package/dist-storybook/assets/bottom-tab-bar.stories-OrY-k1sb.js +280 -0
  334. package/dist-storybook/assets/button-BLW8SOpg.js +1 -0
  335. package/dist-storybook/assets/{button.stories-DgRH6oVV.js → button.stories--0kpp_af.js} +3 -3
  336. package/dist-storybook/assets/calendar-ySr-9cXG.js +1 -0
  337. package/dist-storybook/assets/{calendar.stories-B0K_T9ak.js → calendar.stories-4MQj1nsX.js} +1 -1
  338. package/dist-storybook/assets/carousel.stories-CMtljvBR.js +253 -0
  339. package/dist-storybook/assets/checkbox.stories-xYjsVg2X.js +201 -0
  340. package/dist-storybook/assets/{chip.stories-D0908ZyT.js → chip.stories-DYEfUGq3.js} +12 -12
  341. package/dist-storybook/assets/classname-Bl5epEs-.js +1 -0
  342. package/dist-storybook/assets/client-CN8vOzuD.js +9 -0
  343. package/dist-storybook/assets/{date-C1W0DfQy.js → date-DWIyMGld.js} +1 -1
  344. package/dist-storybook/assets/date-field.stories-5Tlzdpvr.js +129 -0
  345. package/dist-storybook/assets/date-picker-DeB43YU4.js +1 -0
  346. package/dist-storybook/assets/{date-picker.stories-Bahq3f1W.js → date-picker.stories-Shn-MmVG.js} +1 -1
  347. package/dist-storybook/assets/dialog.stories-DeNKN0oJ.js +212 -0
  348. package/dist-storybook/assets/dropdown.stories-Bqmu2_KM.js +449 -0
  349. package/dist-storybook/assets/{embla-carousel-react.esm-Pp2OIUrN.js → embla-carousel-react.esm-DOEAp-w3.js} +1 -1
  350. package/dist-storybook/assets/{en-Cs9O0XWn.js → en-IjeCvZ5U.js} +1 -1
  351. package/dist-storybook/assets/formatter-EIJCOSYU-DZLV30KU.js +1 -0
  352. package/dist-storybook/assets/icon-Cc9W858e.js +1 -0
  353. package/dist-storybook/assets/icon-list-grid-CSnpdoAW.js +1 -0
  354. package/dist-storybook/assets/{icon.stories-qg8UAHBM.js → icon.stories-DE484rTd.js} +3 -3
  355. package/dist-storybook/assets/iframe-BBKyXin_.css +1 -0
  356. package/dist-storybook/assets/iframe-Crg_lbde.js +1119 -0
  357. package/dist-storybook/assets/image-CB4oeTy-.js +9 -0
  358. package/dist-storybook/assets/{image.stories-sQtCaoL2.js → image.stories-BlYIb_Qu.js} +1 -1
  359. package/dist-storybook/assets/index-B24pfkXD.js +1 -0
  360. package/dist-storybook/assets/{index-1AHvPexM.js → index-CdnALcTP.js} +1 -1
  361. package/dist-storybook/assets/{index-DWjPAWoJ.js → index-hDlmuyu2.js} +1 -1
  362. package/dist-storybook/assets/input-wrapper-Gd3QJKqj.js +1 -0
  363. package/dist-storybook/assets/label-zfqCJTGJ.js +22 -0
  364. package/dist-storybook/assets/{label.stories-CCtGPDrS.js → label.stories-C-MVt-cu.js} +3 -3
  365. package/dist-storybook/assets/matchers-5TDFFDYO-HJu_DfWo.js +14 -0
  366. package/dist-storybook/assets/navigation-bar.stories-CZ-y3eDE.js +136 -0
  367. package/dist-storybook/assets/number-field.stories-BA0FySSU.js +167 -0
  368. package/dist-storybook/assets/omit-CRXr8Lio.js +1 -0
  369. package/dist-storybook/assets/option-item-DFWc14Up.js +1 -0
  370. package/dist-storybook/assets/{option-item.stories-ClUj8qVT.js → option-item.stories-DqA-ydWX.js} +3 -3
  371. package/dist-storybook/assets/pagination-CjgiVNvu.js +1 -0
  372. package/dist-storybook/assets/{pagination.stories-C9j6mE5z.js → pagination.stories-BsKHvdF4.js} +4 -4
  373. package/dist-storybook/assets/{radio.stories-D8_YUTw1.js → radio.stories-CBmxZRxo.js} +10 -10
  374. package/dist-storybook/assets/{rating.stories-BIftLeu2.js → rating.stories-CcdFtcNH.js} +9 -9
  375. package/dist-storybook/assets/react-18-D2tl8ksm.js +1 -0
  376. package/dist-storybook/assets/{react-zqqxT5R_.js → react-DO0-owxu.js} +1 -1
  377. package/dist-storybook/assets/search-field-zl4ROLfn.js +1 -0
  378. package/dist-storybook/assets/{search-field.stories-D1okdN8e.js → search-field.stories-DoclnxtC.js} +1 -1
  379. package/dist-storybook/assets/{section.stories-Cq5CY978.js → section.stories-Bqz_QgYp.js} +8 -8
  380. package/dist-storybook/assets/sheet-body-2dWL2AE5.js +1 -0
  381. package/dist-storybook/assets/sheet-footer-DuPhbVOb.js +1 -0
  382. package/dist-storybook/assets/{sheet.stories-DPcC0I5i.js → sheet.stories-CoXnt4LG.js} +4 -4
  383. package/dist-storybook/assets/skeleton-BVLpHxKT.js +1 -0
  384. package/dist-storybook/assets/{skeleton.stories-CD3J1XrJ.js → skeleton.stories-B-OfMZId.js} +3 -3
  385. package/dist-storybook/assets/{store-BmYgrUro.js → store-BwIebEt6.js} +5 -5
  386. package/dist-storybook/assets/{switch.stories-C5SDbdGL.js → switch.stories-D4PQjgbo.js} +9 -9
  387. package/dist-storybook/assets/syntaxhighlighter-ED5Y7EFY-BxRQp_WE.js +6 -0
  388. package/dist-storybook/assets/tab-bar.stories-BrcQMypS.js +164 -0
  389. package/dist-storybook/assets/{text-area.stories-3Z574UAD.js → text-area.stories-Bpaw2_4A.js} +10 -10
  390. package/dist-storybook/assets/text-field-CqJG0bIl.js +1 -0
  391. package/dist-storybook/assets/{text-field.stories-DzjpcKin.js → text-field.stories-PQoP3DbL.js} +1 -1
  392. package/dist-storybook/assets/toast.stories-DmPy9T3m.js +209 -0
  393. package/dist-storybook/assets/{tooltip.stories-DEnYdL1d.js → tooltip.stories-Be_kIaDc.js} +8 -8
  394. package/dist-storybook/assets/typography-CMIMyivt.js +1 -0
  395. package/dist-storybook/assets/{typography.stories-DWxFgTz3.js → typography.stories-DSt5W_AG.js} +3 -3
  396. package/dist-storybook/assets/uploader.stories-C5CmeXEk.js +65 -0
  397. package/dist-storybook/assets/{use-app-pause-CyjeIEPG.js → use-app-pause-_ycnhKwZ.js} +3 -3
  398. package/dist-storybook/assets/{use-app-resume-DntO6Rkm.js → use-app-resume-CWb2s-wo.js} +1 -1
  399. package/dist-storybook/assets/{use-bottom-tab-bar-Da7gjw6y.js → use-bottom-tab-bar--DRl-8c4.js} +1 -1
  400. package/dist-storybook/assets/{use-custom-icon-event-BEYPYrKY.js → use-custom-icon-event-BXcRPkLg.js} +1 -1
  401. package/dist-storybook/assets/{use-did-hide-Do-KOSzV.js → use-did-hide-LBcrwoUo.js} +1 -1
  402. package/dist-storybook/assets/{use-did-show-Bv9k7DdG.js → use-did-show-BXLstTgt.js} +1 -1
  403. package/dist-storybook/assets/{use-histories-Ci1HfRe-.js → use-histories-Cz7ncXaj.js} +1 -1
  404. package/dist-storybook/assets/{use-history-CkVE1jRy.js → use-history-B_w6SPwr.js} +1 -1
  405. package/dist-storybook/assets/{use-language-Bg-LzpzQ.js → use-language-D84C9QNT.js} +1 -1
  406. package/dist-storybook/assets/{use-load-more-eaC8W6Cc.js → use-load-more-Bb9YFkAE.js} +1 -1
  407. package/dist-storybook/assets/{use-location-BMrQnhPi.js → use-location-DnxJ5FvJ.js} +1 -1
  408. package/dist-storybook/assets/{use-navigate-BwwmhToy.js → use-navigate-OLqoL3vR.js} +3 -3
  409. package/dist-storybook/assets/{use-navigation-bar-DzgWeTpM.js → use-navigation-bar-D5BX6S-r.js} +15 -15
  410. package/dist-storybook/assets/{use-navigation-type-DNvXTqYH.js → use-navigation-type-Cq7T35ur.js} +1 -1
  411. package/dist-storybook/assets/{use-page-layout-BA2HvjAQ.js → use-page-layout-BrFRWwC6.js} +1 -1
  412. package/dist-storybook/assets/{use-page-scroll-D_gjlV-S.js → use-page-scroll-BZ8XiPza.js} +1 -1
  413. package/dist-storybook/assets/{use-pull-to-refresh-SZfswIA6.js → use-pull-to-refresh-BEjtxiFn.js} +1 -1
  414. package/dist-storybook/assets/{use-settings-changed-D2gdx5rD.js → use-settings-changed-UaQRSWAg.js} +1 -1
  415. package/dist-storybook/assets/{use-translate-BTC2AQ0k.js → use-translate-BO8E9Sde.js} +1 -1
  416. package/dist-storybook/iframe.html +58 -40
  417. package/dist-storybook/index.html +8 -16
  418. package/dist-storybook/index.json +1 -1
  419. package/dist-storybook/project.json +1 -1
  420. package/dist-storybook/sb-addons/a11y-2/manager-bundle.js +55 -3
  421. package/dist-storybook/sb-addons/docs-1/manager-bundle.js +1 -149
  422. package/dist-storybook/sb-addons/storybook-build-3/manager-bundle.js +19 -1
  423. package/dist-storybook/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +93 -436
  424. package/dist-storybook/sb-manager/globals-runtime.js +73307 -65142
  425. package/dist-storybook/sb-manager/globals.js +6 -16
  426. package/dist-storybook/sb-manager/manager-stores.js +23 -0
  427. package/dist-storybook/sb-manager/runtime.js +17679 -10455
  428. package/dist-storybook/stories-data.json +91 -27
  429. package/dist-storybook/vite-inject-mocker-entry.js +2 -2
  430. package/package.json +5 -5
  431. package/dist-storybook/assets/Color-AVL7NMMY-DwohVA43.js +0 -1
  432. package/dist-storybook/assets/DocsRenderer-PQXLIZUC-vNsl3A7z.js +0 -2
  433. package/dist-storybook/assets/_baseClone-4nOrhHpR.js +0 -1
  434. package/dist-storybook/assets/alert-D3VdqAYm.js +0 -1
  435. package/dist-storybook/assets/app-B__CxZQv.js +0 -1
  436. package/dist-storybook/assets/avatar-BVV1WSnD.js +0 -1
  437. package/dist-storybook/assets/avatar.stories-D0RA2Mhh.js +0 -136
  438. package/dist-storybook/assets/badge-DLt8CmDs.js +0 -1
  439. package/dist-storybook/assets/blocks-D4qvS4eZ.js +0 -1243
  440. package/dist-storybook/assets/bottom-tab-bar-UaYvPAic.js +0 -115
  441. package/dist-storybook/assets/bottom-tab-bar.stories--7Qh-68J.js +0 -186
  442. package/dist-storybook/assets/button-CbLEqALK.js +0 -1
  443. package/dist-storybook/assets/calendar-C7tiySn0.js +0 -1
  444. package/dist-storybook/assets/carousel-C1nQGnJZ.js +0 -37
  445. package/dist-storybook/assets/carousel.stories-C5d6yLzd.js +0 -217
  446. package/dist-storybook/assets/checkbox-Bs8ghsWP.js +0 -1
  447. package/dist-storybook/assets/checkbox.stories-CG74gIlt.js +0 -201
  448. package/dist-storybook/assets/chip-D4_ukvFv.js +0 -1
  449. package/dist-storybook/assets/date-field-range-DSAQp9qR.js +0 -1
  450. package/dist-storybook/assets/date-field.stories-Dx6-qeWT.js +0 -129
  451. package/dist-storybook/assets/date-picker--PiU9sOL.js +0 -1
  452. package/dist-storybook/assets/dialog-8K5u-kre.js +0 -1
  453. package/dist-storybook/assets/dialog.stories-BxYc78Eo.js +0 -212
  454. package/dist-storybook/assets/dropdown-BeoO7m-R.js +0 -247
  455. package/dist-storybook/assets/dropdown.stories-Bfhg63tZ.js +0 -200
  456. package/dist-storybook/assets/icon-CgGksgRS.js +0 -1
  457. package/dist-storybook/assets/iframe-BKfReaAn.css +0 -1
  458. package/dist-storybook/assets/iframe-C0PGuV5s.js +0 -1071
  459. package/dist-storybook/assets/image-BdsCB1je.js +0 -9
  460. package/dist-storybook/assets/index-BLzgbpm2.js +0 -1
  461. package/dist-storybook/assets/index-SzFZQQjs.js +0 -1
  462. package/dist-storybook/assets/input-wrapper-DkEl0Eih.js +0 -1
  463. package/dist-storybook/assets/label-CHVpMhb5.js +0 -27
  464. package/dist-storybook/assets/matchers-7Z3WT2CE-Dw4MQV_s.js +0 -14
  465. package/dist-storybook/assets/navigation-bar-TpF0DSXB.js +0 -79
  466. package/dist-storybook/assets/navigation-bar.stories-CNXAxMYL.js +0 -73
  467. package/dist-storybook/assets/number-field-CvCF5adO.js +0 -1
  468. package/dist-storybook/assets/number-field.stories-Dsb_eChm.js +0 -167
  469. package/dist-storybook/assets/omit-D04qL5V_.js +0 -1
  470. package/dist-storybook/assets/option-item-Bmby544G.js +0 -1
  471. package/dist-storybook/assets/pagination-MBP1YLhT.js +0 -1
  472. package/dist-storybook/assets/proxy-edvPwIiD.js +0 -1
  473. package/dist-storybook/assets/radio-DRPO7cjx.js +0 -1
  474. package/dist-storybook/assets/rating-CTv8C1tH.js +0 -1
  475. package/dist-storybook/assets/react-18-CacBUmwb.js +0 -9
  476. package/dist-storybook/assets/search-field-CophTGGH.js +0 -1
  477. package/dist-storybook/assets/section-content-dVOJuOaN.js +0 -1
  478. package/dist-storybook/assets/sheet-footer-BL2JAvmb.js +0 -1
  479. package/dist-storybook/assets/skeleton-CmGRbWqE.js +0 -1
  480. package/dist-storybook/assets/switch-Cc-NvT4X.js +0 -1
  481. package/dist-storybook/assets/tab-bar-DTyg7tFP.js +0 -31
  482. package/dist-storybook/assets/tab-bar.stories-zKrihgXo.js +0 -136
  483. package/dist-storybook/assets/text-area-WRb8Dkvn.js +0 -1
  484. package/dist-storybook/assets/text-field-DrODy0yz.js +0 -1
  485. package/dist-storybook/assets/toast-provider-ChNGFQlt.js +0 -9
  486. package/dist-storybook/assets/toast.stories-Zj4qfKO_.js +0 -201
  487. package/dist-storybook/assets/tooltip-CrxOWTXS.js +0 -1
  488. package/dist-storybook/assets/typography-BcLxefPi.js +0 -1
  489. package/dist-storybook/assets/uploader.stories-DQN8yjt-.js +0 -65
  490. package/dist-storybook/assets/visibility-sensor-FN9n9CLs.js +0 -1
  491. package/dist-storybook/sb-manager/globals-module-info.js +0 -799
@@ -1,151 +1,3 @@
1
1
  try{
2
- (()=>{var d=__REACT__,{Children:dt,Component:lt,Fragment:ft,Profiler:mt,PureComponent:ct,StrictMode:bt,Suspense:ht,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:gt,act:yt,cloneElement:vt,createContext:xt,createElement:St,createFactory:_t,createRef:kt,forwardRef:Tt,isValidElement:wt,lazy:Pt,memo:Ct,startTransition:Et,unstable_act:Rt,useCallback:It,useContext:Ot,useDebugValue:Ft,useDeferredValue:jt,useEffect:G,useId:Ht,useImperativeHandle:zt,useInsertionEffect:At,useLayoutEffect:Mt,useMemo:Bt,useReducer:Nt,useRef:Lt,useState:K,useSyncExternalStore:Dt,useTransition:$t,version:qt}=__REACT__;var Ut=__STORYBOOK_COMPONENTS__,{A:Zt,ActionBar:Jt,AddonPanel:U,Badge:Qt,Bar:Xt,Blockquote:Vt,Button:er,ClipboardCode:tr,Code:rr,DL:ar,Div:nr,DocumentWrapper:or,EmptyTabContent:sr,ErrorFormatter:ir,FlexBar:pr,Form:ur,H1:dr,H2:lr,H3:fr,H4:mr,H5:cr,H6:br,HR:hr,IconButton:gr,Img:yr,LI:vr,Link:xr,ListItem:Sr,Loader:_r,Modal:kr,OL:Tr,P:wr,Placeholder:Pr,Pre:Cr,ProgressSpinner:Er,ResetWrapper:Rr,ScrollArea:Ir,Separator:Or,Spaced:Fr,Span:jr,StorybookIcon:Hr,StorybookLogo:zr,SyntaxHighlighter:Z,TT:Ar,TabBar:Mr,TabButton:Br,TabWrapper:Nr,Table:Lr,Tabs:Dr,TabsState:$r,TooltipLinkList:qr,TooltipMessage:Wr,TooltipNote:Yr,UL:Gr,WithTooltip:Kr,WithTooltipPure:Ur,Zoom:Zr,codeCommon:Jr,components:Qr,createCopyToClipboardFunction:Xr,getStoryHref:Vr,interleaveSeparators:ea,nameSpaceClassNames:ta,resetComponents:ra,withReset:J}=__STORYBOOK_COMPONENTS__;var ia=__STORYBOOK_API__,{ActiveTabs:pa,Consumer:ua,ManagerContext:da,Provider:la,RequestResponseError:fa,addons:j,combineParameters:ma,controlOrMetaKey:ca,controlOrMetaSymbol:ba,eventMatchesShortcut:ha,eventToShortcut:ga,experimental_MockUniversalStore:ya,experimental_UniversalStore:va,experimental_getStatusStore:xa,experimental_getTestProviderStore:Sa,experimental_requestResponse:_a,experimental_useStatusStore:ka,experimental_useTestProviderStore:Ta,experimental_useUniversalStore:wa,internal_fullStatusStore:Pa,internal_fullTestProviderStore:Ca,internal_universalStatusStore:Ea,internal_universalTestProviderStore:Ra,isMacLike:Ia,isShortcutTaken:Oa,keyToSymbol:Fa,merge:ja,mockChannel:Ha,optionOrAltSymbol:za,shortcutMatchesShortcut:Aa,shortcutToHumanString:Ma,types:Q,useAddonState:Ba,useArgTypes:Na,useArgs:La,useChannel:X,useGlobalTypes:Da,useGlobals:$a,useParameter:V,useSharedState:qa,useStoryPrepared:Wa,useStorybookApi:Ya,useStorybookState:Ga}=__STORYBOOK_API__;var Qa=__STORYBOOK_THEMING__,{CacheProvider:Xa,ClassNames:Va,Global:en,ThemeProvider:ee,background:tn,color:rn,convert:te,create:an,createCache:nn,createGlobal:on,createReset:sn,css:pn,darken:un,ensure:dn,ignoreSsrWarning:H,isPropValid:ln,jsx:fn,keyframes:mn,lighten:cn,styled:x,themes:z,typography:bn,useTheme:A,withTheme:hn}=__STORYBOOK_THEMING__;var W="storybook/docs",de=`${W}/panel`,re="docs",ae=`${W}/snippet-rendered`;function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var a in r)({}).hasOwnProperty.call(r,a)&&(e[a]=r[a])}return e},l.apply(null,arguments)}function le(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function C(e,t){return C=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,a){return r.__proto__=a,r},C(e,t)}function fe(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,C(e,t)}function L(e){return L=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},L(e)}function me(e){try{return Function.toString.call(e).indexOf("[native code]")!==-1}catch{return typeof e=="function"}}function oe(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(oe=function(){return!!e})()}function ce(e,t,r){if(oe())return Reflect.construct.apply(null,arguments);var a=[null];a.push.apply(a,t);var n=new(e.bind.apply(e,a));return r&&C(n,r.prototype),n}function D(e){var t=typeof Map=="function"?new Map:void 0;return D=function(r){if(r===null||!me(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(t!==void 0){if(t.has(r))return t.get(r);t.set(r,a)}function a(){return ce(r,arguments,L(this).constructor)}return a.prototype=Object.create(r.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),C(a,r)},D(e)}var be={1:`Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }).
3
-
4
- `,2:`Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }).
5
-
6
- `,3:`Passed an incorrect argument to a color function, please pass a string representation of a color.
7
-
8
- `,4:`Couldn't generate valid rgb string from %s, it returned %s.
9
-
10
- `,5:`Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.
11
-
12
- `,6:`Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }).
13
-
14
- `,7:`Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }).
15
-
16
- `,8:`Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.
17
-
18
- `,9:`Please provide a number of steps to the modularScale helper.
19
-
20
- `,10:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
21
-
22
- `,11:`Invalid value passed as base to modularScale, expected number or em string but got "%s"
23
-
24
- `,12:`Expected a string ending in "px" or a number passed as the first argument to %s(), got "%s" instead.
25
-
26
- `,13:`Expected a string ending in "px" or a number passed as the second argument to %s(), got "%s" instead.
27
-
28
- `,14:`Passed invalid pixel value ("%s") to %s(), please pass a value like "12px" or 12.
29
-
30
- `,15:`Passed invalid base value ("%s") to %s(), please pass a value like "12px" or 12.
31
-
32
- `,16:`You must provide a template to this method.
33
-
34
- `,17:`You passed an unsupported selector state to this method.
35
-
36
- `,18:`minScreen and maxScreen must be provided as stringified numbers with the same units.
37
-
38
- `,19:`fromSize and toSize must be provided as stringified numbers with the same units.
39
-
40
- `,20:`expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
41
-
42
- `,21:"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n",22:"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n",23:`fontFace expects a name of a font-family.
43
-
44
- `,24:`fontFace expects either the path to the font file(s) or a name of a local copy.
45
-
46
- `,25:`fontFace expects localFonts to be an array.
47
-
48
- `,26:`fontFace expects fileFormats to be an array.
49
-
50
- `,27:`radialGradient requries at least 2 color-stops to properly render.
51
-
52
- `,28:`Please supply a filename to retinaImage() as the first argument.
53
-
54
- `,29:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
55
-
56
- `,30:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",31:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation
57
-
58
- `,32:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])
59
- To pass a single animation please supply them in simple values, e.g. animation('rotate', '2s')
60
-
61
- `,33:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation
62
-
63
- `,34:`borderRadius expects a radius value as a string or number as the second argument.
64
-
65
- `,35:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
66
-
67
- `,36:`Property must be a string value.
68
-
69
- `,37:`Syntax Error at %s.
70
-
71
- `,38:`Formula contains a function that needs parentheses at %s.
72
-
73
- `,39:`Formula is missing closing parenthesis at %s.
74
-
75
- `,40:`Formula has too many closing parentheses at %s.
76
-
77
- `,41:`All values in a formula must have the same unit or be unitless.
78
-
79
- `,42:`Please provide a number of steps to the modularScale helper.
80
-
81
- `,43:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio.
82
-
83
- `,44:`Invalid value passed as base to modularScale, expected number or em/rem string but got %s.
84
-
85
- `,45:`Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.
86
-
87
- `,46:`Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.
88
-
89
- `,47:`minScreen and maxScreen must be provided as stringified numbers with the same units.
90
-
91
- `,48:`fromSize and toSize must be provided as stringified numbers with the same units.
92
-
93
- `,49:`Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.
94
-
95
- `,50:`Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.
96
-
97
- `,51:`Expects the first argument object to have the properties prop, fromSize, and toSize.
98
-
99
- `,52:`fontFace expects either the path to the font file(s) or a name of a local copy.
100
-
101
- `,53:`fontFace expects localFonts to be an array.
102
-
103
- `,54:`fontFace expects fileFormats to be an array.
104
-
105
- `,55:`fontFace expects a name of a font-family.
106
-
107
- `,56:`linearGradient requries at least 2 color-stops to properly render.
108
-
109
- `,57:`radialGradient requries at least 2 color-stops to properly render.
110
-
111
- `,58:`Please supply a filename to retinaImage() as the first argument.
112
-
113
- `,59:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.
114
-
115
- `,60:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",61:`Property must be a string value.
116
-
117
- `,62:`borderRadius expects a radius value as a string or number as the second argument.
118
-
119
- `,63:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.
120
-
121
- `,64:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.
122
-
123
- `,65:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s').
124
-
125
- `,66:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.
126
-
127
- `,67:`You must provide a template to this method.
128
-
129
- `,68:`You passed an unsupported selector state to this method.
130
-
131
- `,69:`Expected a string ending in "px" or a number passed as the first argument to %s(), got %s instead.
132
-
133
- `,70:`Expected a string ending in "px" or a number passed as the second argument to %s(), got %s instead.
134
-
135
- `,71:`Passed invalid pixel value %s to %s(), please pass a value like "12px" or 12.
136
-
137
- `,72:`Passed invalid base value %s to %s(), please pass a value like "12px" or 12.
138
-
139
- `,73:`Please provide a valid CSS variable.
140
-
141
- `,74:`CSS variable not found and no default was provided.
142
-
143
- `,75:`important requires a valid style object, got a %s instead.
144
-
145
- `,76:`fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.
146
-
147
- `,77:`remToPx expects a value in "rem" but you provided it in "%s".
148
-
149
- `,78:`base must be set in "px" or "%" but you set it in "%s".
150
- `};function he(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var a=t[0],n=[],o;for(o=1;o<t.length;o+=1)n.push(t[o]);return n.forEach(function(s){a=a.replace(/%[a-z]/,s)}),a}var h=(function(e){fe(t,e);function t(r){for(var a,n=arguments.length,o=new Array(n>1?n-1:0),s=1;s<n;s++)o[s-1]=arguments[s];return a=e.call(this,he.apply(void 0,[be[r]].concat(o)))||this,le(a)}return t})(D(Error));function M(e){return Math.round(e*255)}function ge(e,t,r){return M(e)+","+M(t)+","+M(r)}function E(e,t,r,a){if(a===void 0&&(a=ge),t===0)return a(r,r,r);var n=(e%360+360)%360/60,o=(1-Math.abs(2*r-1))*t,s=o*(1-Math.abs(n%2-1)),i=0,p=0,u=0;n>=0&&n<1?(i=o,p=s):n>=1&&n<2?(i=s,p=o):n>=2&&n<3?(p=o,u=s):n>=3&&n<4?(p=s,u=o):n>=4&&n<5?(i=s,u=o):n>=5&&n<6&&(i=o,u=s);var b=r-o/2,c=i+b,f=p+b,k=u+b;return a(c,f,k)}var ne={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function ye(e){if(typeof e!="string")return e;var t=e.toLowerCase();return ne[t]?"#"+ne[t]:e}var ve=/^#[a-fA-F0-9]{6}$/,xe=/^#[a-fA-F0-9]{8}$/,Se=/^#[a-fA-F0-9]{3}$/,_e=/^#[a-fA-F0-9]{4}$/,B=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,ke=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,Te=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,we=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function S(e){if(typeof e!="string")throw new h(3);var t=ye(e);if(t.match(ve))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(xe)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match(Se))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(_e)){var a=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:a}}var n=B.exec(t);if(n)return{red:parseInt(""+n[1],10),green:parseInt(""+n[2],10),blue:parseInt(""+n[3],10)};var o=ke.exec(t.substring(0,50));if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10),alpha:parseFloat(""+o[4])>1?parseFloat(""+o[4])/100:parseFloat(""+o[4])};var s=Te.exec(t);if(s){var i=parseInt(""+s[1],10),p=parseInt(""+s[2],10)/100,u=parseInt(""+s[3],10)/100,b="rgb("+E(i,p,u)+")",c=B.exec(b);if(!c)throw new h(4,t,b);return{red:parseInt(""+c[1],10),green:parseInt(""+c[2],10),blue:parseInt(""+c[3],10)}}var f=we.exec(t.substring(0,50));if(f){var k=parseInt(""+f[1],10),pe=parseInt(""+f[2],10)/100,ue=parseInt(""+f[3],10)/100,Y="rgb("+E(k,pe,ue)+")",R=B.exec(Y);if(!R)throw new h(4,t,Y);return{red:parseInt(""+R[1],10),green:parseInt(""+R[2],10),blue:parseInt(""+R[3],10),alpha:parseFloat(""+f[4])>1?parseFloat(""+f[4])/100:parseFloat(""+f[4])}}throw new h(5)}function Pe(e){var t=e.red/255,r=e.green/255,a=e.blue/255,n=Math.max(t,r,a),o=Math.min(t,r,a),s=(n+o)/2;if(n===o)return e.alpha!==void 0?{hue:0,saturation:0,lightness:s,alpha:e.alpha}:{hue:0,saturation:0,lightness:s};var i,p=n-o,u=s>.5?p/(2-n-o):p/(n+o);switch(n){case t:i=(r-a)/p+(r<a?6:0);break;case r:i=(a-t)/p+2;break;default:i=(t-r)/p+4;break}return i*=60,e.alpha!==void 0?{hue:i,saturation:u,lightness:s,alpha:e.alpha}:{hue:i,saturation:u,lightness:s}}function g(e){return Pe(S(e))}var Ce=function(e){return e.length===7&&e[1]===e[2]&&e[3]===e[4]&&e[5]===e[6]?"#"+e[1]+e[3]+e[5]:e},$=Ce;function v(e){var t=e.toString(16);return t.length===1?"0"+t:t}function N(e){return v(Math.round(e*255))}function Ee(e,t,r){return $("#"+N(e)+N(t)+N(r))}function O(e,t,r){return E(e,t,r,Ee)}function Re(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return O(e,t,r);if(typeof e=="object"&&t===void 0&&r===void 0)return O(e.hue,e.saturation,e.lightness);throw new h(1)}function Ie(e,t,r,a){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof a=="number")return a>=1?O(e,t,r):"rgba("+E(e,t,r)+","+a+")";if(typeof e=="object"&&t===void 0&&r===void 0&&a===void 0)return e.alpha>=1?O(e.hue,e.saturation,e.lightness):"rgba("+E(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new h(2)}function q(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return $("#"+v(e)+v(t)+v(r));if(typeof e=="object"&&t===void 0&&r===void 0)return $("#"+v(e.red)+v(e.green)+v(e.blue));throw new h(6)}function F(e,t,r,a){if(typeof e=="string"&&typeof t=="number"){var n=S(e);return"rgba("+n.red+","+n.green+","+n.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof a=="number")return a>=1?q(e,t,r):"rgba("+e+","+t+","+r+","+a+")";if(typeof e=="object"&&t===void 0&&r===void 0&&a===void 0)return e.alpha>=1?q(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new h(7)}var Oe=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},Fe=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},je=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},He=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function y(e){if(typeof e!="object")throw new h(8);if(Fe(e))return F(e);if(Oe(e))return q(e);if(He(e))return Ie(e);if(je(e))return Re(e);throw new h(8)}function se(e,t,r){return function(){var a=r.concat(Array.prototype.slice.call(arguments));return a.length>=t?e.apply(this,a):se(e,t,a)}}function m(e){return se(e,e.length,[])}function ze(e,t){if(t==="transparent")return t;var r=g(t);return y(l({},r,{hue:r.hue+parseFloat(e)}))}m(ze);function _(e,t,r){return Math.max(e,Math.min(t,r))}function Ae(e,t){if(t==="transparent")return t;var r=g(t);return y(l({},r,{lightness:_(0,1,r.lightness-parseFloat(e))}))}m(Ae);function Me(e,t){if(t==="transparent")return t;var r=g(t);return y(l({},r,{saturation:_(0,1,r.saturation-parseFloat(e))}))}m(Me);function Be(e,t){if(t==="transparent")return t;var r=g(t);return y(l({},r,{lightness:_(0,1,r.lightness+parseFloat(e))}))}m(Be);function Ne(e,t,r){if(t==="transparent")return r;if(r==="transparent")return t;if(e===0)return r;var a=S(t),n=l({},a,{alpha:typeof a.alpha=="number"?a.alpha:1}),o=S(r),s=l({},o,{alpha:typeof o.alpha=="number"?o.alpha:1}),i=n.alpha-s.alpha,p=parseFloat(e)*2-1,u=p*i===-1?p:p+i,b=1+p*i,c=(u/b+1)/2,f=1-c,k={red:Math.floor(n.red*c+s.red*f),green:Math.floor(n.green*c+s.green*f),blue:Math.floor(n.blue*c+s.blue*f),alpha:n.alpha*parseFloat(e)+s.alpha*(1-parseFloat(e))};return F(k)}var Le=m(Ne),ie=Le;function De(e,t){if(t==="transparent")return t;var r=S(t),a=typeof r.alpha=="number"?r.alpha:1,n=l({},r,{alpha:_(0,1,(a*100+parseFloat(e)*100)/100)});return F(n)}m(De);function $e(e,t){if(t==="transparent")return t;var r=g(t);return y(l({},r,{saturation:_(0,1,r.saturation+parseFloat(e))}))}m($e);function qe(e,t){return t==="transparent"?t:y(l({},g(t),{hue:parseFloat(e)}))}m(qe);function We(e,t){return t==="transparent"?t:y(l({},g(t),{lightness:parseFloat(e)}))}m(We);function Ye(e,t){return t==="transparent"?t:y(l({},g(t),{saturation:parseFloat(e)}))}m(Ye);function Ge(e,t){return t==="transparent"?t:ie(parseFloat(e),"rgb(0, 0, 0)",t)}m(Ge);function Ke(e,t){return t==="transparent"?t:ie(parseFloat(e),"rgb(255, 255, 255)",t)}m(Ke);function Ue(e,t){if(t==="transparent")return t;var r=S(t),a=typeof r.alpha=="number"?r.alpha:1,n=l({},r,{alpha:_(0,1,+(a*100-parseFloat(e)*100).toFixed(2)/100)});return F(n)}var Ze=m(Ue),Je=Ze,Qe=x.div(J,({theme:e})=>({backgroundColor:e.base==="light"?"rgba(0,0,0,.01)":"rgba(255,255,255,.01)",borderRadius:e.appBorderRadius,border:`1px dashed ${e.appBorderColor}`,display:"flex",alignItems:"center",justifyContent:"center",padding:20,margin:"25px 0 40px",color:Je(.3,e.color.defaultText),fontSize:e.typography.size.s2})),Xe=e=>d.createElement(Qe,{...e,className:"docblock-emptyblock sb-unstyled"}),Ve=x(Z)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,lineHeight:"19px",margin:"25px 0 40px",borderRadius:e.appBorderRadius,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0","pre.prismjs":{padding:20,background:"inherit"}})),et=x.div(({theme:e})=>({background:e.background.content,borderRadius:e.appBorderRadius,border:`1px solid ${e.appBorderColor}`,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",margin:"25px 0 40px",padding:"20px 20px 20px 22px"})),I=x.div(({theme:e})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,height:17,marginTop:1,width:"60%",[`&:first-child${H}`]:{margin:0}})),tt=()=>d.createElement(et,null,d.createElement(I,null),d.createElement(I,{style:{width:"80%"}}),d.createElement(I,{style:{width:"30%"}}),d.createElement(I,{style:{width:"80%"}})),rt=({isLoading:e,error:t,language:r,code:a,dark:n,format:o=!0,...s})=>{let{typography:i}=A();if(e)return d.createElement(tt,null);if(t)return d.createElement(Xe,null,t);let p=d.createElement(Ve,{bordered:!0,copyable:!0,format:o,language:r??"jsx",className:"docblock-source sb-unstyled",...s},a);if(typeof n>"u")return p;let u=n?z.dark:z.light;return d.createElement(ee,{theme:te({...u,fontCode:i.fonts.mono,fontBase:i.fonts.base})},p)};j.register(W,e=>{j.add(de,{title:"Code",type:Q.PANEL,paramKey:re,disabled:t=>!t?.docs?.codePanel,match:({viewMode:t})=>t==="story",render:({active:t})=>{let r=e.getChannel(),a=e.getCurrentStoryData(),n=r?.last(ae)?.[0],[o,s]=K({source:n?.source,format:n?.format??void 0}),i=V(re,{source:{code:""},theme:"dark"});G(()=>{s({source:void 0,format:void 0})},[a?.id]),X({[ae]:({source:u,format:b})=>{s({source:u,format:b})}});let p=A().base!=="light";return d.createElement(U,{active:!!t},d.createElement(at,null,d.createElement(rt,{...i.source,code:i.source?.code||o.source||i.source?.originalSource,format:o.format,dark:p})))}})});var at=x.div(()=>({height:"100%",[`> :first-child${H}`]:{margin:0,height:"100%",boxShadow:"none"}}));})();
2
+ (()=>{var u=__REACT__,{Children:cr,Component:br,Fragment:hr,Profiler:gr,PureComponent:yr,StrictMode:vr,Suspense:_r,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Sr,act:xr,cloneElement:kr,createContext:Tr,createElement:Pr,createFactory:wr,createRef:Or,forwardRef:Cr,isValidElement:Er,lazy:Rr,memo:Ir,startTransition:Fr,unstable_act:jr,useCallback:Hr,useContext:Ar,useDebugValue:zr,useDeferredValue:Mr,useEffect:K,useId:Br,useImperativeHandle:Nr,useInsertionEffect:Lr,useLayoutEffect:Dr,useMemo:$r,useReducer:qr,useRef:Wr,useState:G,useSyncExternalStore:Yr,useTransition:Kr,version:Gr}=__REACT__;var Xr=__STORYBOOK_COMPONENTS__,{A:Vr,AbstractToolbar:et,ActionBar:rt,ActionList:tt,AddonPanel:U,Badge:at,Bar:nt,Blockquote:ot,Button:st,Card:it,ClipboardCode:pt,Code:ut,Collapsible:lt,DL:dt,Div:ft,DocumentWrapper:mt,EmptyTabContent:ct,ErrorFormatter:bt,FlexBar:ht,Form:gt,H1:yt,H2:vt,H3:_t,H4:St,H5:xt,H6:kt,HR:Tt,IconButton:Pt,Img:wt,LI:Ot,Link:Ct,ListItem:Et,Loader:Rt,Modal:It,ModalDecorator:Ft,OL:jt,P:Ht,Placeholder:At,Popover:zt,PopoverProvider:Mt,Pre:Bt,ProgressSpinner:Nt,ResetWrapper:Lt,ScrollArea:Dt,Select:$t,Separator:qt,Spaced:Wt,Span:Yt,StatelessTab:Kt,StatelessTabList:Gt,StatelessTabPanel:Ut,StatelessTabsView:Jt,StorybookIcon:Zt,StorybookLogo:Qt,SyntaxHighlighter:J,TT:Xt,TabBar:Vt,TabButton:ea,TabList:ra,TabPanel:ta,TabWrapper:aa,Table:na,Tabs:oa,TabsState:sa,TabsView:ia,ToggleButton:pa,Toolbar:ua,Tooltip:la,TooltipLinkList:da,TooltipMessage:fa,TooltipNote:ma,TooltipProvider:ca,UL:ba,WithTooltip:ha,WithTooltipPure:ga,Zoom:ya,codeCommon:va,components:_a,convertToReactAriaPlacement:Sa,createCopyToClipboardFunction:xa,getStoryHref:ka,interleaveSeparators:Ta,nameSpaceClassNames:Pa,resetComponents:wa,useTabsState:Oa,withReset:Z}=__STORYBOOK_COMPONENTS__;var Fa=__STORYBOOK_THEMING__,{CacheProvider:ja,ClassNames:Ha,Global:Aa,ThemeProvider:Q,background:za,color:Ma,convert:X,create:Ba,createCache:Na,createGlobal:La,createReset:Da,css:$a,darken:qa,ensure:Wa,getPreferredColorScheme:Ya,ignoreSsrWarning:R,isPropValid:Ka,jsx:Ga,keyframes:Ua,lighten:Ja,styled:g,themes:A,tokens:Za,typography:Qa,useTheme:I,withTheme:Xa}=__STORYBOOK_THEMING__;function f(){return f=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var a in t)({}).hasOwnProperty.call(t,a)&&(e[a]=t[a])}return e},f.apply(null,arguments)}function ce(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function O(e,r){return O=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,a){return t.__proto__=a,t},O(e,r)}function be(e,r){e.prototype=Object.create(r.prototype),e.prototype.constructor=e,O(e,r)}function N(e){return N=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},N(e)}function he(e){try{return Function.toString.call(e).indexOf("[native code]")!==-1}catch{return typeof e=="function"}}function te(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(te=function(){return!!e})()}function ge(e,r,t){if(te())return Reflect.construct.apply(null,arguments);var a=[null];a.push.apply(a,r);var n=new(e.bind.apply(e,a));return t&&O(n,t.prototype),n}function L(e){var r=typeof Map=="function"?new Map:void 0;return L=function(t){if(t===null||!he(t))return t;if(typeof t!="function")throw new TypeError("Super expression must either be null or a function");if(r!==void 0){if(r.has(t))return r.get(t);r.set(t,a)}function a(){return ge(t,arguments,N(this).constructor)}return a.prototype=Object.create(t.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),O(a,t)},L(e)}var d=(function(e){be(r,e);function r(t){var a;if(1)a=e.call(this,"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#"+t+" for more information.")||this;else for(var n,o,s;s<n;s++);return ce(a)}return r})(L(Error));function V(e,r){return e.substr(-r.length)===r}var ye=/^([+-]?(?:\d+|\d*\.\d+))([a-z]*|%)$/;function ee(e){if(typeof e!="string")return e;var r=e.match(ye);return r?parseFloat(e):e}var ve=function(e){return function(r,t){t===void 0&&(t="16px");var a=r,n=t;if(typeof r=="string"){if(!V(r,"px"))throw new d(69,e,r);a=ee(r)}if(typeof t=="string"){if(!V(t,"px"))throw new d(70,e,t);n=ee(t)}if(typeof a=="string")throw new d(71,r,e);if(typeof n=="string")throw new d(72,t,e);return""+a/n+e}},ae=ve,un=ae("em"),ln=ae("rem");function z(e){return Math.round(e*255)}function _e(e,r,t){return z(e)+","+z(r)+","+z(t)}function C(e,r,t,a){if(a===void 0&&(a=_e),r===0)return a(t,t,t);var n=(e%360+360)%360/60,o=(1-Math.abs(2*t-1))*r,s=o*(1-Math.abs(n%2-1)),i=0,p=0,l=0;n>=0&&n<1?(i=o,p=s):n>=1&&n<2?(i=s,p=o):n>=2&&n<3?(p=o,l=s):n>=3&&n<4?(p=s,l=o):n>=4&&n<5?(i=s,l=o):n>=5&&n<6&&(i=o,l=s);var h=t-o/2,b=i+h,m=p+h,w=l+h;return a(b,m,w)}var re={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function Se(e){if(typeof e!="string")return e;var r=e.toLowerCase();return re[r]?"#"+re[r]:e}var xe=/^#[a-fA-F0-9]{6}$/,ke=/^#[a-fA-F0-9]{8}$/,Te=/^#[a-fA-F0-9]{3}$/,Pe=/^#[a-fA-F0-9]{4}$/,M=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,we=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,Oe=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,Ce=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function T(e){if(typeof e!="string")throw new d(3);var r=Se(e);if(r.match(xe))return{red:parseInt(""+r[1]+r[2],16),green:parseInt(""+r[3]+r[4],16),blue:parseInt(""+r[5]+r[6],16)};if(r.match(ke)){var t=parseFloat((parseInt(""+r[7]+r[8],16)/255).toFixed(2));return{red:parseInt(""+r[1]+r[2],16),green:parseInt(""+r[3]+r[4],16),blue:parseInt(""+r[5]+r[6],16),alpha:t}}if(r.match(Te))return{red:parseInt(""+r[1]+r[1],16),green:parseInt(""+r[2]+r[2],16),blue:parseInt(""+r[3]+r[3],16)};if(r.match(Pe)){var a=parseFloat((parseInt(""+r[4]+r[4],16)/255).toFixed(2));return{red:parseInt(""+r[1]+r[1],16),green:parseInt(""+r[2]+r[2],16),blue:parseInt(""+r[3]+r[3],16),alpha:a}}var n=M.exec(r);if(n)return{red:parseInt(""+n[1],10),green:parseInt(""+n[2],10),blue:parseInt(""+n[3],10)};var o=we.exec(r.substring(0,50));if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10),alpha:parseFloat(""+o[4])>1?parseFloat(""+o[4])/100:parseFloat(""+o[4])};var s=Oe.exec(r);if(s){var i=parseInt(""+s[1],10),p=parseInt(""+s[2],10)/100,l=parseInt(""+s[3],10)/100,h="rgb("+C(i,p,l)+")",b=M.exec(h);if(!b)throw new d(4,r,h);return{red:parseInt(""+b[1],10),green:parseInt(""+b[2],10),blue:parseInt(""+b[3],10)}}var m=Ce.exec(r.substring(0,50));if(m){var w=parseInt(""+m[1],10),fe=parseInt(""+m[2],10)/100,me=parseInt(""+m[3],10)/100,Y="rgb("+C(w,fe,me)+")",E=M.exec(Y);if(!E)throw new d(4,r,Y);return{red:parseInt(""+E[1],10),green:parseInt(""+E[2],10),blue:parseInt(""+E[3],10),alpha:parseFloat(""+m[4])>1?parseFloat(""+m[4])/100:parseFloat(""+m[4])}}throw new d(5)}function Ee(e){var r=e.red/255,t=e.green/255,a=e.blue/255,n=Math.max(r,t,a),o=Math.min(r,t,a),s=(n+o)/2;if(n===o)return e.alpha!==void 0?{hue:0,saturation:0,lightness:s,alpha:e.alpha}:{hue:0,saturation:0,lightness:s};var i,p=n-o,l=s>.5?p/(2-n-o):p/(n+o);switch(n){case r:i=(t-a)/p+(t<a?6:0);break;case t:i=(a-r)/p+2;break;default:i=(r-t)/p+4;break}return i*=60,e.alpha!==void 0?{hue:i,saturation:l,lightness:s,alpha:e.alpha}:{hue:i,saturation:l,lightness:s}}function y(e){return Ee(T(e))}var Re=function(e){return e.length===7&&e[1]===e[2]&&e[3]===e[4]&&e[5]===e[6]?"#"+e[1]+e[3]+e[5]:e},D=Re;function k(e){var r=e.toString(16);return r.length===1?"0"+r:r}function B(e){return k(Math.round(e*255))}function Ie(e,r,t){return D("#"+B(e)+B(r)+B(t))}function j(e,r,t){return C(e,r,t,Ie)}function Fe(e,r,t){if(typeof e=="number"&&typeof r=="number"&&typeof t=="number")return j(e,r,t);if(typeof e=="object"&&r===void 0&&t===void 0)return j(e.hue,e.saturation,e.lightness);throw new d(1)}function je(e,r,t,a){if(typeof e=="number"&&typeof r=="number"&&typeof t=="number"&&typeof a=="number")return a>=1?j(e,r,t):"rgba("+C(e,r,t)+","+a+")";if(typeof e=="object"&&r===void 0&&t===void 0&&a===void 0)return e.alpha>=1?j(e.hue,e.saturation,e.lightness):"rgba("+C(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new d(2)}function $(e,r,t){if(typeof e=="number"&&typeof r=="number"&&typeof t=="number")return D("#"+k(e)+k(r)+k(t));if(typeof e=="object"&&r===void 0&&t===void 0)return D("#"+k(e.red)+k(e.green)+k(e.blue));throw new d(6)}function H(e,r,t,a){if(typeof e=="string"&&typeof r=="number"){var n=T(e);return"rgba("+n.red+","+n.green+","+n.blue+","+r+")"}else{if(typeof e=="number"&&typeof r=="number"&&typeof t=="number"&&typeof a=="number")return a>=1?$(e,r,t):"rgba("+e+","+r+","+t+","+a+")";if(typeof e=="object"&&r===void 0&&t===void 0&&a===void 0)return e.alpha>=1?$(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new d(7)}var He=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},Ae=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},ze=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},Me=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function v(e){if(typeof e!="object")throw new d(8);if(Ae(e))return H(e);if(He(e))return $(e);if(Me(e))return je(e);if(ze(e))return Fe(e);throw new d(8)}function ne(e,r,t){return function(){var a=t.concat(Array.prototype.slice.call(arguments));return a.length>=r?e.apply(this,a):ne(e,r,a)}}function c(e){return ne(e,e.length,[])}function Be(e,r){if(r==="transparent")return r;var t=y(r);return v(f({},t,{hue:t.hue+parseFloat(e)}))}var dn=c(Be);function P(e,r,t){return Math.max(e,Math.min(r,t))}function Ne(e,r){if(r==="transparent")return r;var t=y(r);return v(f({},t,{lightness:P(0,1,t.lightness-parseFloat(e))}))}var fn=c(Ne);function Le(e,r){if(r==="transparent")return r;var t=y(r);return v(f({},t,{saturation:P(0,1,t.saturation-parseFloat(e))}))}var mn=c(Le);function De(e,r){if(r==="transparent")return r;var t=y(r);return v(f({},t,{lightness:P(0,1,t.lightness+parseFloat(e))}))}var cn=c(De);function $e(e,r,t){if(r==="transparent")return t;if(t==="transparent")return r;if(e===0)return t;var a=T(r),n=f({},a,{alpha:typeof a.alpha=="number"?a.alpha:1}),o=T(t),s=f({},o,{alpha:typeof o.alpha=="number"?o.alpha:1}),i=n.alpha-s.alpha,p=parseFloat(e)*2-1,l=p*i===-1?p:p+i,h=1+p*i,b=(l/h+1)/2,m=1-b,w={red:Math.floor(n.red*b+s.red*m),green:Math.floor(n.green*b+s.green*m),blue:Math.floor(n.blue*b+s.blue*m),alpha:n.alpha*parseFloat(e)+s.alpha*(1-parseFloat(e))};return H(w)}var qe=c($e),oe=qe;function We(e,r){if(r==="transparent")return r;var t=T(r),a=typeof t.alpha=="number"?t.alpha:1,n=f({},t,{alpha:P(0,1,(a*100+parseFloat(e)*100)/100)});return H(n)}var bn=c(We);function Ye(e,r){if(r==="transparent")return r;var t=y(r);return v(f({},t,{saturation:P(0,1,t.saturation+parseFloat(e))}))}var hn=c(Ye);function Ke(e,r){return r==="transparent"?r:v(f({},y(r),{hue:parseFloat(e)}))}var gn=c(Ke);function Ge(e,r){return r==="transparent"?r:v(f({},y(r),{lightness:parseFloat(e)}))}var yn=c(Ge);function Ue(e,r){return r==="transparent"?r:v(f({},y(r),{saturation:parseFloat(e)}))}var vn=c(Ue);function Je(e,r){return r==="transparent"?r:oe(parseFloat(e),"rgb(0, 0, 0)",r)}var _n=c(Je);function Ze(e,r){return r==="transparent"?r:oe(parseFloat(e),"rgb(255, 255, 255)",r)}var Sn=c(Ze);function Qe(e,r){if(r==="transparent")return r;var t=T(r),a=typeof t.alpha=="number"?t.alpha:1,n=f({},t,{alpha:P(0,1,+(a*100-parseFloat(e)*100).toFixed(2)/100)});return H(n)}var Xe=c(Qe),Ve=Xe,er=g.div(Z,({theme:e})=>({backgroundColor:e.base==="light"?"rgba(0,0,0,.01)":"rgba(255,255,255,.01)",borderRadius:e.appBorderRadius,border:`1px dashed ${e.appBorderColor}`,display:"flex",alignItems:"center",justifyContent:"center",padding:20,margin:"25px 0 40px",color:Ve(.3,e.color.defaultText),fontSize:e.typography.size.s2})),rr=e=>u.createElement(er,{...e,className:"docblock-emptyblock sb-unstyled"}),tr=g(J)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,lineHeight:"19px",margin:"25px 0 40px",borderRadius:e.appBorderRadius,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0","pre.prismjs":{padding:20,background:"inherit"}})),ar=g.div(({theme:e})=>({background:e.background.content,borderRadius:e.appBorderRadius,border:`1px solid ${e.appBorderColor}`,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",margin:"25px 0 40px",padding:"20px 20px 20px 22px"})),F=g.div(({theme:e})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,height:17,marginTop:1,width:"60%",[`&:first-child${R}`]:{margin:0}})),nr=()=>u.createElement(ar,null,u.createElement(F,null),u.createElement(F,{style:{width:"80%"}}),u.createElement(F,{style:{width:"30%"}}),u.createElement(F,{style:{width:"80%"}})),se=({isLoading:e,error:r,language:t,code:a,dark:n,format:o=!0,...s})=>{let{typography:i}=I();if(e)return u.createElement(nr,null);if(r)return u.createElement(rr,null,r);let p=u.createElement(tr,{bordered:!0,copyable:!0,format:o,language:t??"jsx",className:"docblock-source sb-unstyled",...s},a);if(typeof n>"u")return p;let l=n?A.dark:A.light;return u.createElement(Q,{theme:X({...l,fontCode:i.fonts.mono,fontBase:i.fonts.base})},p)};var In=__STORYBOOK_API__,{ActiveTabs:Fn,Consumer:jn,ManagerContext:Hn,Provider:An,RequestResponseError:zn,Tag:Mn,addons:q,combineParameters:Bn,controlOrMetaKey:Nn,controlOrMetaSymbol:Ln,eventMatchesShortcut:Dn,eventToShortcut:$n,experimental_MockUniversalStore:qn,experimental_UniversalStore:Wn,experimental_getStatusStore:Yn,experimental_getTestProviderStore:Kn,experimental_requestResponse:Gn,experimental_useStatusStore:Un,experimental_useTestProviderStore:Jn,experimental_useUniversalStore:Zn,internal_checklistStore:Qn,internal_fullStatusStore:Xn,internal_fullTestProviderStore:Vn,internal_universalChecklistStore:eo,internal_universalStatusStore:ro,internal_universalTestProviderStore:to,isMacLike:ao,isShortcutTaken:no,keyToSymbol:oo,merge:so,mockChannel:io,optionOrAltSymbol:po,shortcutMatchesShortcut:uo,shortcutToAriaKeyshortcuts:lo,shortcutToHumanString:fo,types:ie,useAddonState:mo,useArgTypes:co,useArgs:bo,useChannel:pe,useGlobalTypes:ho,useGlobals:go,useParameter:ue,useSharedState:yo,useStoryPrepared:vo,useStorybookApi:_o,useStorybookState:So}=__STORYBOOK_API__;var W="storybook/docs",or=`${W}/panel`,le="docs",de=`${W}/snippet-rendered`,sr=({active:e,lastEvent:r,currentStoryId:t})=>{let[a,n]=G({source:r?.source,format:r?.format??void 0}),o=ue(le,{source:{code:""},theme:"dark"});K(()=>{n({source:void 0,format:void 0})},[t]),pe({[de]:({source:i,format:p})=>{n({source:i,format:p})}});let s=I().base!=="light";return u.createElement(U,{active:!!e},u.createElement(ir,null,u.createElement(se,{...o.source,code:o.source?.code||a.source||o.source?.originalSource,format:a.format,dark:s})))};q.register(W,e=>{q.add(or,{title:"Code",type:ie.PANEL,paramKey:le,disabled:r=>!r?.docs?.codePanel,match:({viewMode:r})=>r==="story",render:({active:r})=>{let t=e.getChannel(),a=e.getCurrentStoryData(),n=t?.last(de)?.[0];return u.createElement(sr,{currentStoryId:a?.id,lastEvent:n,active:r})}})});var ir=g.div(()=>({height:"100%",[`> :first-child${R}`]:{margin:0,height:"100%",boxShadow:"none"}}));})();
151
3
  }catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); }
@@ -1,3 +1,21 @@
1
1
  try{
2
- (()=>{var S=__STORYBOOK_API__,{ActiveTabs:h,Consumer:v,ManagerContext:g,Provider:k,RequestResponseError:E,addons:s,combineParameters:C,controlOrMetaKey:T,controlOrMetaSymbol:B,eventMatchesShortcut:x,eventToShortcut:R,experimental_MockUniversalStore:O,experimental_UniversalStore:P,experimental_getStatusStore:w,experimental_getTestProviderStore:A,experimental_requestResponse:M,experimental_useStatusStore:I,experimental_useTestProviderStore:L,experimental_useUniversalStore:D,internal_fullStatusStore:j,internal_fullTestProviderStore:U,internal_universalStatusStore:H,internal_universalTestProviderStore:N,isMacLike:V,isShortcutTaken:K,keyToSymbol:Y,merge:q,mockChannel:F,optionOrAltSymbol:G,shortcutMatchesShortcut:z,shortcutToHumanString:W,types:J,useAddonState:Q,useArgTypes:X,useArgs:Z,useChannel:$,useGlobalTypes:ee,useGlobals:te,useParameter:oe,useSharedState:re,useStoryPrepared:ne,useStorybookApi:se,useStorybookState:ie}=__STORYBOOK_API__;var me=__REACT__,{Children:le,Component:ce,Fragment:_e,Profiler:fe,PureComponent:be,StrictMode:ye,Suspense:Se,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:he,act:ve,cloneElement:ge,createContext:ke,createElement:Ee,createFactory:Ce,createRef:Te,forwardRef:Be,isValidElement:xe,lazy:Re,memo:Oe,startTransition:Pe,unstable_act:we,useCallback:Ae,useContext:Me,useDebugValue:Ie,useDeferredValue:Le,useEffect:d,useId:De,useImperativeHandle:je,useInsertionEffect:Ue,useLayoutEffect:He,useMemo:Ne,useReducer:Ve,useRef:Ke,useState:Ye,useSyncExternalStore:qe,useTransition:Fe,version:Ge}=__REACT__;var i={base:"light",colorPrimary:"#fff",colorSecondary:"#1b6bff",appBg:"#fff",appContentBg:"#fff",appPreviewBg:"#fff",appBorderColor:"#E5E7EB",appBorderRadius:8,fontBase:'"Inter", system-ui, sans-serif',fontCode:'"Inter", system-ui, sans-serif',textColor:"#111827",textInverseColor:"#fff",textMutedColor:"#6B7280",barBg:"#fff",barTextColor:"#374151",barHoverColor:"#E5E7EB",barSelectedColor:"#2563EB",buttonBg:"#fff",buttonBorder:"#444446ff",booleanBg:"#fff",booleanSelectedBg:"#D1D5DB",inputBg:"#fff",inputBorder:"#D1D5DB",inputTextColor:"#111827",inputBorderRadius:6};var a=location.search,n=()=>{let e=location.search;if(e===a)return;a=e;let p=new URLSearchParams(e);window.parent?.postMessage?.({type:"STORYBOOK_PARAM_CHANGE",params:Object.fromEntries(new URLSearchParams(e).entries())},p.get("parent-origin")||window.location.origin)};window.addEventListener("popstate",n);var u=history.pushState;history.pushState=function(...e){u.apply(this,e),n()};var m=history.replaceState;history.replaceState=function(...e){m.apply(this,e),n()};window.addEventListener("hashchange",n);s.setConfig({theme:i,toolbar:{title:{hidden:!0},zoom:{hidden:!0},remount:{hidden:!0},"storybook/background":{hidden:!0},"storybook/viewport":{hidden:!0},"storybook/outline":{hidden:!0}}});})();
2
+ (()=>{var g=__STORYBOOK_API__,{ActiveTabs:E,Consumer:T,ManagerContext:C,Provider:B,RequestResponseError:x,Tag:R,addons:p,combineParameters:w,controlOrMetaKey:O,controlOrMetaSymbol:P,eventMatchesShortcut:A,eventToShortcut:M,experimental_MockUniversalStore:L,experimental_UniversalStore:I,experimental_getStatusStore:D,experimental_getTestProviderStore:j,experimental_requestResponse:U,experimental_useStatusStore:H,experimental_useTestProviderStore:N,experimental_useUniversalStore:K,internal_checklistStore:V,internal_fullStatusStore:Y,internal_fullTestProviderStore:q,internal_universalChecklistStore:F,internal_universalStatusStore:G,internal_universalTestProviderStore:W,isMacLike:z,isShortcutTaken:$,keyToSymbol:J,merge:Q,mockChannel:X,optionOrAltSymbol:Z,shortcutMatchesShortcut:ee,shortcutToAriaKeyshortcuts:te,shortcutToHumanString:oe,types:re,useAddonState:ae,useArgTypes:ne,useArgs:se,useChannel:ie,useGlobalTypes:pe,useGlobals:de,useParameter:me,useSharedState:ue,useStoryPrepared:le,useStorybookApi:ce,useStorybookState:_e}=__STORYBOOK_API__;var Se=__REACT__,{Children:ve,Component:ke,Fragment:ge,Profiler:Ee,PureComponent:Te,StrictMode:Ce,Suspense:Be,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:xe,act:Re,cloneElement:we,createContext:Oe,createElement:Pe,createFactory:Ae,createRef:Me,forwardRef:Le,isValidElement:Ie,lazy:De,memo:je,startTransition:Ue,unstable_act:He,useCallback:Ne,useContext:Ke,useDebugValue:Ve,useDeferredValue:Ye,useEffect:l,useId:qe,useImperativeHandle:Fe,useInsertionEffect:Ge,useLayoutEffect:We,useMemo:ze,useReducer:$e,useRef:Je,useState:Qe,useSyncExternalStore:Xe,useTransition:Ze,version:et}=__REACT__;var d={base:"light",colorPrimary:"#fff",colorSecondary:"#1b6bff",appBg:"#fff",appContentBg:"#fff",appPreviewBg:"#fff",appBorderColor:"#E5E7EB",appBorderRadius:8,fontBase:'"Inter", system-ui, sans-serif',fontCode:'"Inter", system-ui, sans-serif',textColor:"#111827",textInverseColor:"#fff",textMutedColor:"#6B7280",barBg:"#fff",barTextColor:"#374151",barHoverColor:"#E5E7EB",barSelectedColor:"#2563EB",buttonBg:"#fff",buttonBorder:"#444446ff",booleanBg:"#fff",booleanSelectedBg:"#D1D5DB",inputBg:"#fff",inputBorder:"#D1D5DB",inputTextColor:"#111827",inputBorderRadius:6};var m=location.search,n=()=>{let e=location.search;if(e===m)return;m=e;let u=new URLSearchParams(e),s=window.location.origin,a=u.get("host");a&&(a.startsWith("localhost")?s=`http://${a}`:s=`https://${a}`),window.parent?.postMessage?.({type:"STORYBOOK_PARAM_CHANGE",params:Object.fromEntries(new URLSearchParams(e).entries())},s)};window.addEventListener("popstate",n);var c=history.pushState;history.pushState=function(...e){c.apply(this,e),n()};var _=history.replaceState;history.replaceState=function(...e){_.apply(this,e),n()};window.addEventListener("hashchange",n);var f=new URL(window.location.href).searchParams.get("ai")==="1",i=document.createElement("style");f?i.innerHTML=`
3
+ [data-item-id="overview--docs"],
4
+ [data-item-id="ui-react"],
5
+ [data-parent-id="ui-react"],
6
+ [data-item-id="router"],
7
+ [data-parent-id="router"],
8
+ [data-item-id="use-cases"],
9
+ [data-parent-id="use-cases"]
10
+ {
11
+ display: none !important;
12
+ }
13
+ `:i.innerHTML=`
14
+ [data-item-id="overview-ai--docs"],
15
+ [data-item-id="ui-react-ai"],
16
+ [data-parent-id="ui-react-ai"]
17
+ {
18
+ display: none !important;
19
+ }
20
+ `;document.head.append(i);p.setConfig({theme:d,toolbar:{title:{hidden:!0},zoom:{hidden:!0},remount:{hidden:!0},"storybook/background":{hidden:!0},"storybook/viewport":{hidden:!0},"storybook/outline":{hidden:!0}}});})();
3
21
  }catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); }