@v-miniapp/ui-react 1.0.59 → 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.
- package/dist/_virtual/_cloneBuffer.js +4 -0
- package/dist/_virtual/_commonjsHelpers.js +8 -0
- package/dist/_virtual/_nodeUtil.js +4 -0
- package/dist/_virtual/cloneDeepWith.js +7 -0
- package/dist/_virtual/isBuffer.js +4 -0
- package/dist/_virtual/isObject.js +7 -0
- package/dist/_virtual/isSameOrAfter.js +7 -0
- package/dist/_virtual/isSameOrAfter2.js +4 -0
- package/dist/_virtual/isSameOrBefore.js +7 -0
- package/dist/_virtual/isSameOrBefore2.js +4 -0
- package/dist/_virtual/merge.js +7 -0
- package/dist/_virtual/omit.js +7 -0
- package/dist/_virtual/pick.js +7 -0
- package/dist/_virtual/throttle.js +7 -0
- package/dist/assets/icons/loader.svg.js +5 -0
- package/dist/assets/icons/placeholder.svg.js +5 -0
- package/dist/assets/images/broken-image.svg.js +5 -0
- package/dist/assets/images/default-error.png.js +4 -0
- package/dist/assets/images/image.svg.js +5 -0
- package/dist/components/ai-app/ai-app.d.ts +7 -0
- package/dist/components/ai-app/ai-app.js +20 -0
- package/dist/components/ai-app/index.d.ts +1 -0
- package/dist/components/alert/alert.js +76 -0
- package/dist/components/app/app.d.ts +1 -6
- package/dist/components/app/app.js +78 -0
- package/dist/components/app/app.store.d.ts +6 -0
- package/dist/components/app/app.store.js +8 -0
- package/dist/components/app/bottom-tab-bar-layout/hook.js +36 -0
- package/dist/components/app/bottom-tab-bar-layout/index.js +38 -0
- package/dist/components/app/bottom-tab-bar-layout/store.js +54 -0
- package/dist/components/app/data-theme.js +29 -0
- package/dist/components/app/navigation-bar-layout/hook.js +39 -0
- package/dist/components/app/navigation-bar-layout/index.js +46 -0
- package/dist/components/app/navigation-bar-layout/store.js +60 -0
- package/dist/components/app/page-layout/hook.js +62 -0
- package/dist/components/app/page-layout/index.js +21 -0
- package/dist/components/app/page-layout/store.js +52 -0
- package/dist/components/avatar/avatar.js +79 -0
- package/dist/components/badge/badge.js +40 -0
- package/dist/components/bottom-tab-bar/bottom-tab-bar.js +90 -0
- package/dist/components/button/button.const.js +7 -0
- package/dist/components/button/button.js +62 -0
- package/dist/components/calendar/calendar-range-sheet.js +66 -0
- package/dist/components/calendar/calendar-single-sheet.js +64 -0
- package/dist/components/calendar/calendar.js +16 -0
- package/dist/components/calendar/default-render.js +16 -0
- package/dist/components/calendar/range-picker.js +301 -0
- package/dist/components/calendar/single-picker.js +186 -0
- package/dist/components/calendar/utils.js +25 -0
- package/dist/components/carousel/carousel.js +47 -0
- package/dist/components/carousel/use-carousel.js +54 -0
- package/dist/components/checkbox/check-icon.js +23 -0
- package/dist/components/checkbox/checkbox.js +131 -0
- package/dist/components/checkbox/indeterminate-icon.js +20 -0
- package/dist/components/chip/chip.js +80 -0
- package/dist/components/date-field/date-field-range.js +153 -0
- package/dist/components/date-field/date-field.js +100 -0
- package/dist/components/date-field/input.js +53 -0
- package/dist/components/date-picker/date-picker-base.js +214 -0
- package/dist/components/date-picker/date-picker-item.js +69 -0
- package/dist/components/date-picker/date-picker-sheet.js +54 -0
- package/dist/components/date-picker/date-picker.constant.js +11 -0
- package/dist/components/date-picker/date-picker.js +76 -0
- package/dist/components/date-picker/date-picker.utils.js +58 -0
- package/dist/components/dialog/dialog.js +115 -0
- package/dist/components/dropdown/dropdown-base.js +22 -0
- package/dist/components/dropdown/dropdown.js +148 -0
- package/dist/components/error/error-boundary.js +28 -0
- package/dist/components/error/error.js +25 -0
- package/dist/components/icon/icon-mapping.js +260 -0
- package/dist/components/icon/icon.js +54 -0
- package/dist/components/image/image.js +70 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/input-wrapper/input-wrapper.js +153 -0
- package/dist/components/label/label.js +58 -0
- package/dist/components/layout/page-loading.js +39 -0
- package/dist/components/layout/page.js +103 -0
- package/dist/components/list-item/list-item.js +36 -0
- package/dist/components/navigation-bar/navigation-bar.d.ts +1 -4
- package/dist/components/navigation-bar/navigation-bar.js +106 -0
- package/dist/components/number-field/number-field.js +162 -0
- package/dist/components/option-item/option-item.js +56 -0
- package/dist/components/pagination/pagination.js +20 -0
- package/dist/components/pull-to-refresh/pull-to-refresh.js +120 -0
- package/dist/components/radio/radio.js +72 -0
- package/dist/components/rating/rating.js +62 -0
- package/dist/components/rating/star.js +22 -0
- package/dist/components/search-field/search-field.js +40 -0
- package/dist/components/section/section-content.js +10 -0
- package/dist/components/section/section-title.js +32 -0
- package/dist/components/section/section.js +21 -0
- package/dist/components/seo/seo.js +18 -0
- package/dist/components/sheet/sheet-body.js +25 -0
- package/dist/components/sheet/sheet-footer.js +11 -0
- package/dist/components/sheet/sheet-header.js +52 -0
- package/dist/components/sheet/sheet.js +72 -0
- package/dist/components/skeleton/skeleton.js +50 -0
- package/dist/components/switch/switch.js +68 -0
- package/dist/components/tab-bar/tab-bar.js +130 -0
- package/dist/components/tab-bar/tab.js +55 -0
- package/dist/components/text-area/text-area.js +75 -0
- package/dist/components/text-field/text-field.js +63 -0
- package/dist/components/toast/toast-provider.js +45 -0
- package/dist/components/toast/toast.js +66 -0
- package/dist/components/toast/toast.store.js +35 -0
- package/dist/components/tooltip/tooltip.js +43 -0
- package/dist/components/typography/typography.js +28 -0
- package/dist/components/uploader/helper.js +21 -0
- package/dist/components/uploader/uploader.js +93 -0
- package/dist/components/visibility-sensor/visibility-sensor.js +17 -0
- package/dist/docs/ui-react/icon-list-grid.d.ts +1 -0
- package/dist/external/index.js +13357 -13497
- package/dist/external/styles.css +1 -1
- package/dist/hooks/use-custom-icon-event.js +16 -0
- package/dist/hooks/use-settings-changed.js +16 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +139 -7488
- package/dist/locales/en.json.js +30 -0
- package/dist/locales/index.d.ts +2 -0
- package/dist/locales/index.js +10 -0
- package/dist/locales/vi.json.js +30 -0
- package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrAfter.js +18 -0
- package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrBefore.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_DataView.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Hash.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_ListCache.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Map.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_MapCache.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Promise.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Set.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Stack.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Symbol.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Uint8Array.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_WeakMap.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_apply.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayEach.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayFilter.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayLikeKeys.js +26 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayMap.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayPush.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignMergeValue.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignValue.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assocIndexOf.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssign.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignIn.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignValue.js +19 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseClone.js +70 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseCreate.js +23 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFlatten.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFor.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGet.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetAllKeys.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetTag.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseHasIn.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsArguments.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsMap.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsNative.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsSet.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsTypedArray.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeys.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeysIn.js +21 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMerge.js +27 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMergeDeep.js +38 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePick.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePickBy.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseRest.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSet.js +31 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSetToString.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSlice.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTimes.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseToString.js +24 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTrim.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnary.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnset.js +34 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_castPath.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneArrayBuffer.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneBuffer.js +19 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneDataView.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneRegExp.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneSymbol.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneTypedArray.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyArray.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyObject.js +21 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbols.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbolsIn.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_coreJsData.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createAssigner.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createBaseFor.js +19 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_customOmitClone.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_defineProperty.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_flatRest.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_freeGlobal.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeys.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeysIn.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getMapData.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getNative.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getPrototype.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getRawTag.js +21 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbols.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbolsIn.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getTag.js +33 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getValue.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hasPath.js +26 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashClear.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashDelete.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashGet.js +19 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashHas.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashSet.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneArray.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneByTag.js +48 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneObject.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isFlattenable.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIndex.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIterateeCall.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKey.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKeyable.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isMasked.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isPrototype.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheClear.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheDelete.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheGet.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheHas.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheSet.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheClear.js +20 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheDelete.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheGet.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheHas.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheSet.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_memoizeCapped.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeCreate.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeys.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeysIn.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nodeUtil.js +19 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_objectToString.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overArg.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overRest.js +21 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_parent.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_root.js +11 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_safeGet.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_setToString.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_shortOut.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackClear.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackDelete.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackGet.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackHas.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackSet.js +23 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stringToPath.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toKey.js +17 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toSource.js +23 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_trimmedEndIndex.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/cloneDeepWith.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/constant.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/debounce.js +60 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/eq.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/flatten.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/hasIn.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/identity.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArguments.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArray.js +10 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLike.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLikeObject.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isBuffer.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isFunction.js +18 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isLength.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isMap.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObject.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObjectLike.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isPlainObject.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSet.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSymbol.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isTypedArray.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keys.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keysIn.js +16 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/last.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/memoize.js +23 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/merge.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/now.js +13 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/omit.js +29 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/pick.js +14 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubArray.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubFalse.js +12 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/throttle.js +22 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toNumber.js +28 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toPlainObject.js +15 -0
- package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toString.js +14 -0
- package/dist/styles.css +1 -1
- package/dist/utils/bound.js +7 -0
- package/dist/utils/can-use-dom.js +4 -0
- package/dist/utils/classname.js +6 -0
- package/dist/utils/colors.gen.js +371 -0
- package/dist/utils/colors.js +8 -0
- package/dist/utils/convert-px.js +14 -0
- package/dist/utils/date.d.ts +2 -1
- package/dist/utils/date.js +9 -0
- package/dist/utils/deep-clone.js +10 -0
- package/dist/utils/dev-log.js +7 -0
- package/dist/utils/get-scroll-parent.js +20 -0
- package/dist/utils/is-dev.js +4 -0
- package/dist/utils/rubberband.js +11 -0
- package/dist/utils/sleep.js +4 -0
- package/dist/utils/supports-passive.js +15 -0
- package/dist/utils/to-css-length.js +6 -0
- package/dist/vsf/choose-image.js +14 -0
- package/dist-storybook/assets/AIApp-C4keJkW8.js +37 -0
- package/dist-storybook/assets/{App-Dp1UG-xp.js → App-BkiRuUOF.js} +1 -1
- package/dist-storybook/assets/Color-6BZIO3FS-EdXZe4iv.js +1 -0
- package/dist-storybook/assets/{DEEPLINK-cjgFMuRJ.js → DEEPLINK-CvpIbZVm.js} +1 -1
- package/dist-storybook/assets/DocsRenderer-LL677BLK-Ch7ovClC.js +2 -0
- package/dist-storybook/assets/{EVENTS-BY66PjI7.js → EVENTS-Bnl2ehlm.js} +1 -1
- package/dist-storybook/assets/{GETTING_STARTED-BiQMvjvo.js → GETTING_STARTED-BYcN9hg3.js} +1 -1
- package/dist-storybook/assets/{GETTING_STARTED-580o-9Mx.js → GETTING_STARTED-BmHWFQQE.js} +1 -1
- package/dist-storybook/assets/GETTING_STARTED-C1AOB25Z.js +45 -0
- package/dist-storybook/assets/{GETTING_STARTED-CIVMqKZW.js → GETTING_STARTED-CBY9dL2_.js} +1 -1
- package/dist-storybook/assets/ICON-BaZgXbtw.js +6 -0
- package/dist-storybook/assets/ICON-CT1pTB1A.js +6 -0
- package/dist-storybook/assets/{INFINITE_SCROLL-BbeR5HeP.js → INFINITE_SCROLL-BJeWhgO7.js} +1 -1
- package/dist-storybook/assets/{LocalesProvider-CMlmwAyY.js → LocalesProvider-CQEwtoq3.js} +1 -1
- package/dist-storybook/assets/{MIGRATE_DARKMODE_TO_THEME-CBDyZyg2.js → MIGRATE_DARKMODE_TO_THEME-DCxXgvQC.js} +1 -1
- package/dist-storybook/assets/{MIGRATION_GUIDE-FZyRWI-B.js → MIGRATION_GUIDE-BN_V-xNj.js} +1 -1
- package/dist-storybook/assets/OVERVIEW-AI-CLWBzviY.js +35 -0
- package/dist-storybook/assets/{OVERVIEW-C9_6gX5Q.js → OVERVIEW-Byly3lQV.js} +1 -1
- package/dist-storybook/assets/{Router-B5U8bubH.js → Router-CO6rjSXr.js} +1 -1
- package/dist-storybook/assets/{TAILWIND_INTEGRATION-BJdy5DAv.js → TAILWIND_INTEGRATION-CpN4_fSu.js} +1 -1
- package/dist-storybook/assets/{THEME-CRbvH7KT.js → THEME-B9Y39f9D.js} +1 -1
- package/dist-storybook/assets/WithTooltip-65CFNBJE-D6J_7FjK.js +9 -0
- package/dist-storybook/assets/{alert.stories-D0X5wUHk.js → alert.stories-CUItfPLn.js} +12 -12
- package/dist-storybook/assets/app.store-BJVKVv1J.js +1 -0
- package/dist-storybook/assets/avatar.stories-8_vV7Bb0.js +136 -0
- package/dist-storybook/assets/{axe-BHGdSCoA.js → axe-4EaTvypG.js} +13 -13
- package/dist-storybook/assets/badge-Gh2kTOE3.js +1 -0
- package/dist-storybook/assets/{badge.stories-BEFNaUA1.js → badge.stories-BXGAtgaV.js} +3 -3
- package/dist-storybook/assets/blocks-CB7UwFa4.js +758 -0
- package/dist-storybook/assets/bottom-tab-bar.stories-OrY-k1sb.js +280 -0
- package/dist-storybook/assets/button-BLW8SOpg.js +1 -0
- package/dist-storybook/assets/{button.stories-DgYDJ6x7.js → button.stories--0kpp_af.js} +3 -3
- package/dist-storybook/assets/calendar-ySr-9cXG.js +1 -0
- package/dist-storybook/assets/{calendar.stories-IVvRAjWN.js → calendar.stories-4MQj1nsX.js} +1 -1
- package/dist-storybook/assets/carousel.stories-CMtljvBR.js +253 -0
- package/dist-storybook/assets/checkbox.stories-xYjsVg2X.js +201 -0
- package/dist-storybook/assets/{chip.stories-D7E6fdiV.js → chip.stories-DYEfUGq3.js} +12 -12
- package/dist-storybook/assets/classname-Bl5epEs-.js +1 -0
- package/dist-storybook/assets/client-CN8vOzuD.js +9 -0
- package/dist-storybook/assets/{date-B3PFMb6s.js → date-DWIyMGld.js} +1 -1
- package/dist-storybook/assets/date-field.stories-5Tlzdpvr.js +129 -0
- package/dist-storybook/assets/date-picker-DeB43YU4.js +1 -0
- package/dist-storybook/assets/{date-picker.stories-CIFgk4q_.js → date-picker.stories-Shn-MmVG.js} +1 -1
- package/dist-storybook/assets/dialog.stories-DeNKN0oJ.js +212 -0
- package/dist-storybook/assets/dropdown.stories-Bqmu2_KM.js +449 -0
- package/dist-storybook/assets/{embla-carousel-react.esm-5D5fs7OQ.js → embla-carousel-react.esm-DOEAp-w3.js} +1 -1
- package/dist-storybook/assets/{en-Cs9O0XWn.js → en-IjeCvZ5U.js} +1 -1
- package/dist-storybook/assets/formatter-EIJCOSYU-DZLV30KU.js +1 -0
- package/dist-storybook/assets/icon-Cc9W858e.js +1 -0
- package/dist-storybook/assets/icon-list-grid-CSnpdoAW.js +1 -0
- package/dist-storybook/assets/{icon.stories-DWwbUUY-.js → icon.stories-DE484rTd.js} +3 -3
- package/dist-storybook/assets/iframe-BBKyXin_.css +1 -0
- package/dist-storybook/assets/iframe-Crg_lbde.js +1119 -0
- package/dist-storybook/assets/image-CB4oeTy-.js +9 -0
- package/dist-storybook/assets/{image.stories-BhZU057W.js → image.stories-BlYIb_Qu.js} +1 -1
- package/dist-storybook/assets/index-B24pfkXD.js +1 -0
- package/dist-storybook/assets/{index-cMNObl2z.js → index-CdnALcTP.js} +1 -1
- package/dist-storybook/assets/{index-EGt7xBnA.js → index-hDlmuyu2.js} +1 -1
- package/dist-storybook/assets/input-wrapper-Gd3QJKqj.js +1 -0
- package/dist-storybook/assets/label-zfqCJTGJ.js +22 -0
- package/dist-storybook/assets/{label.stories-CXJjdYf_.js → label.stories-C-MVt-cu.js} +3 -3
- package/dist-storybook/assets/matchers-5TDFFDYO-HJu_DfWo.js +14 -0
- package/dist-storybook/assets/navigation-bar.stories-CZ-y3eDE.js +136 -0
- package/dist-storybook/assets/number-field.stories-BA0FySSU.js +167 -0
- package/dist-storybook/assets/omit-CRXr8Lio.js +1 -0
- package/dist-storybook/assets/option-item-DFWc14Up.js +1 -0
- package/dist-storybook/assets/{option-item.stories-BvXoc8WX.js → option-item.stories-DqA-ydWX.js} +3 -3
- package/dist-storybook/assets/pagination-CjgiVNvu.js +1 -0
- package/dist-storybook/assets/{pagination.stories-_5qj2nTS.js → pagination.stories-BsKHvdF4.js} +4 -4
- package/dist-storybook/assets/{radio.stories-BNR-wwuw.js → radio.stories-CBmxZRxo.js} +10 -10
- package/dist-storybook/assets/{rating.stories-CI0LG0Qq.js → rating.stories-CcdFtcNH.js} +9 -9
- package/dist-storybook/assets/react-18-D2tl8ksm.js +1 -0
- package/dist-storybook/assets/{react-I9jCW2VV.js → react-DO0-owxu.js} +1 -1
- package/dist-storybook/assets/search-field-zl4ROLfn.js +1 -0
- package/dist-storybook/assets/{search-field.stories-CKXC6-Za.js → search-field.stories-DoclnxtC.js} +1 -1
- package/dist-storybook/assets/{section.stories-9vd48AgB.js → section.stories-Bqz_QgYp.js} +8 -8
- package/dist-storybook/assets/sheet-body-2dWL2AE5.js +1 -0
- package/dist-storybook/assets/sheet-footer-DuPhbVOb.js +1 -0
- package/dist-storybook/assets/{sheet.stories-C3gLIQsn.js → sheet.stories-CoXnt4LG.js} +4 -4
- package/dist-storybook/assets/skeleton-BVLpHxKT.js +1 -0
- package/dist-storybook/assets/{skeleton.stories-C0y1o1Y_.js → skeleton.stories-B-OfMZId.js} +3 -3
- package/dist-storybook/assets/{store-Ce3Ikv5g.js → store-BwIebEt6.js} +5 -5
- package/dist-storybook/assets/{switch.stories-BdWFln-M.js → switch.stories-D4PQjgbo.js} +9 -9
- package/dist-storybook/assets/syntaxhighlighter-ED5Y7EFY-BxRQp_WE.js +6 -0
- package/dist-storybook/assets/tab-bar.stories-BrcQMypS.js +164 -0
- package/dist-storybook/assets/{text-area.stories-DCt3RB3A.js → text-area.stories-Bpaw2_4A.js} +10 -10
- package/dist-storybook/assets/text-field-CqJG0bIl.js +1 -0
- package/dist-storybook/assets/{text-field.stories-Bqv7f948.js → text-field.stories-PQoP3DbL.js} +1 -1
- package/dist-storybook/assets/toast.stories-DmPy9T3m.js +209 -0
- package/dist-storybook/assets/{tooltip.stories-DDdsuU3U.js → tooltip.stories-Be_kIaDc.js} +8 -8
- package/dist-storybook/assets/typography-CMIMyivt.js +1 -0
- package/dist-storybook/assets/{typography.stories-BzCxaZQU.js → typography.stories-DSt5W_AG.js} +3 -3
- package/dist-storybook/assets/uploader.stories-C5CmeXEk.js +65 -0
- package/dist-storybook/assets/{use-app-pause-ClsUnndr.js → use-app-pause-_ycnhKwZ.js} +3 -3
- package/dist-storybook/assets/{use-app-resume-D_EcIvMd.js → use-app-resume-CWb2s-wo.js} +1 -1
- package/dist-storybook/assets/{use-bottom-tab-bar-BC1cz2uE.js → use-bottom-tab-bar--DRl-8c4.js} +1 -1
- package/dist-storybook/assets/{use-custom-icon-event-cUk4Md0Y.js → use-custom-icon-event-BXcRPkLg.js} +1 -1
- package/dist-storybook/assets/{use-did-hide-BmABiaUE.js → use-did-hide-LBcrwoUo.js} +1 -1
- package/dist-storybook/assets/{use-did-show-CQuySkkT.js → use-did-show-BXLstTgt.js} +1 -1
- package/dist-storybook/assets/{use-histories-CBm09Lno.js → use-histories-Cz7ncXaj.js} +1 -1
- package/dist-storybook/assets/{use-history-7yguNz6O.js → use-history-B_w6SPwr.js} +1 -1
- package/dist-storybook/assets/{use-language-DPyWMce2.js → use-language-D84C9QNT.js} +1 -1
- package/dist-storybook/assets/{use-load-more-KlDJZhj2.js → use-load-more-Bb9YFkAE.js} +1 -1
- package/dist-storybook/assets/{use-location-C7kE1yla.js → use-location-DnxJ5FvJ.js} +1 -1
- package/dist-storybook/assets/{use-navigate-BpIyvtwc.js → use-navigate-OLqoL3vR.js} +3 -3
- package/dist-storybook/assets/{use-navigation-bar-guzwhM_u.js → use-navigation-bar-D5BX6S-r.js} +15 -15
- package/dist-storybook/assets/{use-navigation-type-DOndDqQH.js → use-navigation-type-Cq7T35ur.js} +1 -1
- package/dist-storybook/assets/{use-page-layout-dO6ylI1b.js → use-page-layout-BrFRWwC6.js} +1 -1
- package/dist-storybook/assets/{use-page-scroll-CCG2d2Gb.js → use-page-scroll-BZ8XiPza.js} +1 -1
- package/dist-storybook/assets/{use-pull-to-refresh-lhumDu1H.js → use-pull-to-refresh-BEjtxiFn.js} +1 -1
- package/dist-storybook/assets/{use-settings-changed-Bt58DJ-c.js → use-settings-changed-UaQRSWAg.js} +1 -1
- package/dist-storybook/assets/{use-translate-Jhz6jTXo.js → use-translate-BO8E9Sde.js} +1 -1
- package/dist-storybook/iframe.html +58 -40
- package/dist-storybook/index.html +8 -16
- package/dist-storybook/index.json +1 -1
- package/dist-storybook/project.json +1 -1
- package/dist-storybook/sb-addons/a11y-2/manager-bundle.js +55 -3
- package/dist-storybook/sb-addons/docs-1/manager-bundle.js +1 -149
- package/dist-storybook/sb-addons/storybook-build-3/manager-bundle.js +19 -1
- package/dist-storybook/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +93 -436
- package/dist-storybook/sb-manager/globals-runtime.js +73307 -65142
- package/dist-storybook/sb-manager/globals.js +6 -16
- package/dist-storybook/sb-manager/manager-stores.js +23 -0
- package/dist-storybook/sb-manager/runtime.js +17679 -10455
- package/dist-storybook/stories-data.json +91 -27
- package/dist-storybook/vite-inject-mocker-entry.js +2 -2
- package/package.json +5 -5
- package/dist-storybook/assets/Color-AVL7NMMY-XA8cFKdV.js +0 -1
- package/dist-storybook/assets/DocsRenderer-PQXLIZUC-D10-0Yfb.js +0 -2
- package/dist-storybook/assets/_baseClone-DQVxEhny.js +0 -1
- package/dist-storybook/assets/alert-CKwsuaPI.js +0 -1
- package/dist-storybook/assets/app-CTv8lFU3.js +0 -1
- package/dist-storybook/assets/avatar-rWcYGe6j.js +0 -1
- package/dist-storybook/assets/avatar.stories-8lrbhMma.js +0 -136
- package/dist-storybook/assets/badge-VcjGVEum.js +0 -1
- package/dist-storybook/assets/blocks-DKR3P4qW.js +0 -1243
- package/dist-storybook/assets/bottom-tab-bar-B6IAoRwz.js +0 -115
- package/dist-storybook/assets/bottom-tab-bar.stories-DXzLlO5o.js +0 -186
- package/dist-storybook/assets/button-DJH3RlJl.js +0 -1
- package/dist-storybook/assets/calendar-C4Xe_TW2.js +0 -1
- package/dist-storybook/assets/carousel-DJlgMyS5.js +0 -37
- package/dist-storybook/assets/carousel.stories-3rA3nxdL.js +0 -217
- package/dist-storybook/assets/checkbox-JOxcmyCZ.js +0 -1
- package/dist-storybook/assets/checkbox.stories-ge3pgfBb.js +0 -201
- package/dist-storybook/assets/chip-Crt60rph.js +0 -1
- package/dist-storybook/assets/date-field-range-B-sv9nbW.js +0 -1
- package/dist-storybook/assets/date-field.stories-B9G2heHt.js +0 -129
- package/dist-storybook/assets/date-picker-BPzKPdhO.js +0 -1
- package/dist-storybook/assets/dialog-BAfGQzk5.js +0 -1
- package/dist-storybook/assets/dialog.stories-vDMKz9Tw.js +0 -212
- package/dist-storybook/assets/dropdown-Dtomaqpw.js +0 -247
- package/dist-storybook/assets/dropdown.stories-Cj0HM0VI.js +0 -200
- package/dist-storybook/assets/icon-CdiFzFyf.js +0 -1
- package/dist-storybook/assets/iframe-BHaCv4dM.css +0 -1
- package/dist-storybook/assets/iframe-DfPay7Zl.js +0 -1071
- package/dist-storybook/assets/image-CMKb-R3x.js +0 -9
- package/dist-storybook/assets/index-BWpuenI4.js +0 -1
- package/dist-storybook/assets/index-DqZh6B0b.js +0 -1
- package/dist-storybook/assets/input-wrapper-CgaUwbbE.js +0 -1
- package/dist-storybook/assets/label-D44azUgi.js +0 -27
- package/dist-storybook/assets/matchers-7Z3WT2CE-Dw4MQV_s.js +0 -14
- package/dist-storybook/assets/navigation-bar-DK3TxcTu.js +0 -79
- package/dist-storybook/assets/navigation-bar.stories-CB3Kg-sH.js +0 -73
- package/dist-storybook/assets/number-field-Bz7su9S1.js +0 -1
- package/dist-storybook/assets/number-field.stories-DSxPSzLv.js +0 -167
- package/dist-storybook/assets/omit-BWHsnDSR.js +0 -1
- package/dist-storybook/assets/option-item-CpeNcb5w.js +0 -1
- package/dist-storybook/assets/pagination-Cp-DHO4Q.js +0 -1
- package/dist-storybook/assets/proxy-B4G9nIBd.js +0 -1
- package/dist-storybook/assets/radio-D0aV0RIg.js +0 -1
- package/dist-storybook/assets/rating-D2e8RTGl.js +0 -1
- package/dist-storybook/assets/react-18-C7pDmBBf.js +0 -9
- package/dist-storybook/assets/search-field-DINESW8Y.js +0 -1
- package/dist-storybook/assets/section-content-D49PabBW.js +0 -1
- package/dist-storybook/assets/sheet-footer-nEdxsYan.js +0 -1
- package/dist-storybook/assets/skeleton-B12XbNAJ.js +0 -1
- package/dist-storybook/assets/switch-D0Z9tWin.js +0 -1
- package/dist-storybook/assets/tab-bar-kExoGg5P.js +0 -31
- package/dist-storybook/assets/tab-bar.stories-BgDXX0of.js +0 -136
- package/dist-storybook/assets/text-area-GKy5HL12.js +0 -1
- package/dist-storybook/assets/text-field-CGWNqitB.js +0 -1
- package/dist-storybook/assets/toast-provider-DKSrfhJD.js +0 -9
- package/dist-storybook/assets/toast.stories-CcFzS6QI.js +0 -201
- package/dist-storybook/assets/tooltip-B9rDI6z9.js +0 -1
- package/dist-storybook/assets/typography-CB8hPDyK.js +0 -1
- package/dist-storybook/assets/uploader.stories-izVumFqZ.js +0 -65
- package/dist-storybook/assets/visibility-sensor-Jf-Nmil6.js +0 -1
- package/dist-storybook/sb-manager/globals-module-info.js +0 -799
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as T,R as Da,j as Et}from"./iframe-Crg_lbde.js";import{c as Fa}from"./react-DO0-owxu.js";const qa="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";let _n=(t=21)=>{let r="",e=crypto.getRandomValues(new Uint8Array(t|=0));for(;t--;)r+=qa[e[t]&63];return r};const G="__pagePath",Na=t=>{const{pages:r}=t,e=t.navigation?.alwaysRootPage,n=window.history.state||{};if(n.locations?.length)return n.locations.map(s=>({action:"PUSH",location:s}));const o=new URL(window.location.href).searchParams,i=o.has(G)?o.get(G):r[0].pathname;o.delete(G);const u=[];let a=!1;if(e&&r[0].pathname!==i){const s={key:_n(),pathname:r[0].pathname,params:{}};u.push({action:"PUSH",location:s}),window.history.replaceState(st(u),"",vt(s)),a=!0}const c=i&&wn(r,i)||r[0],f={key:_n(),pathname:c.pathname,params:Object.fromEntries(o.entries())};return u.push({action:"PUSH",location:f}),a?window.history.pushState(st(u),"",vt(f)):window.history.replaceState(st(u),"",vt(f)),u},wn=(t,r)=>t.find(e=>e.pathname===r)||t.find(e=>e.pathname==="*"),st=t=>({locations:t.map(r=>r.location),idx:t.length-1,type:"vsf-router"}),vt=t=>{const r=new URL(window.location.protocol+"//"+window.location.host+window.location.pathname),e=t.params||{};return Object.keys(e).forEach(n=>{n!==G&&r.searchParams.set(n,e[n])}),r.searchParams.set(G,t.pathname),r};var it=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Q(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var St,Nn;function Nu(){if(Nn)return St;Nn=1;function t(r,e){for(var n=-1,o=r==null?0:r.length,i=Array(o);++n<o;)i[n]=e(r[n],n,r);return i}return St=t,St}var At,Gn;function Ga(){if(Gn)return At;Gn=1;function t(){this.__data__=[],this.size=0}return At=t,At}var xt,Wn;function dt(){if(Wn)return xt;Wn=1;function t(r,e){return r===e||r!==r&&e!==e}return xt=t,xt}var kt,Jn;function gt(){if(Jn)return kt;Jn=1;var t=dt();function r(e,n){for(var o=e.length;o--;)if(t(e[o][0],n))return o;return-1}return kt=r,kt}var Ct,Yn;function Wa(){if(Yn)return Ct;Yn=1;var t=gt(),r=Array.prototype,e=r.splice;function n(o){var i=this.__data__,u=t(i,o);if(u<0)return!1;var a=i.length-1;return u==a?i.pop():e.call(i,u,1),--this.size,!0}return Ct=n,Ct}var Ht,Zn;function Ja(){if(Zn)return Ht;Zn=1;var t=gt();function r(e){var n=this.__data__,o=t(n,e);return o<0?void 0:n[o][1]}return Ht=r,Ht}var Tt,Qn;function Ya(){if(Qn)return Tt;Qn=1;var t=gt();function r(e){return t(this.__data__,e)>-1}return Tt=r,Tt}var Ut,Kn;function Za(){if(Kn)return Ut;Kn=1;var t=gt();function r(e,n){var o=this.__data__,i=t(o,e);return i<0?(++this.size,o.push([e,n])):o[i][1]=n,this}return Ut=r,Ut}var It,Xn;function bt(){if(Xn)return It;Xn=1;var t=Ga(),r=Wa(),e=Ja(),n=Ya(),o=Za();function i(u){var a=-1,c=u==null?0:u.length;for(this.clear();++a<c;){var f=u[a];this.set(f[0],f[1])}}return i.prototype.clear=t,i.prototype.delete=r,i.prototype.get=e,i.prototype.has=n,i.prototype.set=o,It=i,It}var zt,to;function Qa(){if(to)return zt;to=1;var t=bt();function r(){this.__data__=new t,this.size=0}return zt=r,zt}var Lt,ro;function Ka(){if(ro)return Lt;ro=1;function t(r){var e=this.__data__,n=e.delete(r);return this.size=e.size,n}return Lt=t,Lt}var Rt,eo;function Xa(){if(eo)return Rt;eo=1;function t(r){return this.__data__.get(r)}return Rt=t,Rt}var Bt,no;function tc(){if(no)return Bt;no=1;function t(r){return this.__data__.has(r)}return Bt=t,Bt}var $t,oo;function Gu(){if(oo)return $t;oo=1;var t=typeof it=="object"&&it&&it.Object===Object&⁢return $t=t,$t}var Mt,io;function U(){if(io)return Mt;io=1;var t=Gu(),r=typeof self=="object"&&self&&self.Object===Object&&self,e=t||r||Function("return this")();return Mt=e,Mt}var Vt,uo;function K(){if(uo)return Vt;uo=1;var t=U(),r=t.Symbol;return Vt=r,Vt}var Dt,ao;function rc(){if(ao)return Dt;ao=1;var t=K(),r=Object.prototype,e=r.hasOwnProperty,n=r.toString,o=t?t.toStringTag:void 0;function i(u){var a=e.call(u,o),c=u[o];try{u[o]=void 0;var f=!0}catch{}var s=n.call(u);return f&&(a?u[o]=c:delete u[o]),s}return Dt=i,Dt}var Ft,co;function ec(){if(co)return Ft;co=1;var t=Object.prototype,r=t.toString;function e(n){return r.call(n)}return Ft=e,Ft}var qt,fo;function W(){if(fo)return qt;fo=1;var t=K(),r=rc(),e=ec(),n="[object Null]",o="[object Undefined]",i=t?t.toStringTag:void 0;function u(a){return a==null?a===void 0?o:n:i&&i in Object(a)?r(a):e(a)}return qt=u,qt}var Nt,so;function I(){if(so)return Nt;so=1;function t(r){var e=typeof r;return r!=null&&(e=="object"||e=="function")}return Nt=t,Nt}var Gt,vo;function Pn(){if(vo)return Gt;vo=1;var t=W(),r=I(),e="[object AsyncFunction]",n="[object Function]",o="[object GeneratorFunction]",i="[object Proxy]";function u(a){if(!r(a))return!1;var c=t(a);return c==n||c==o||c==e||c==i}return Gt=u,Gt}var Wt,lo;function nc(){if(lo)return Wt;lo=1;var t=U(),r=t["__core-js_shared__"];return Wt=r,Wt}var Jt,po;function oc(){if(po)return Jt;po=1;var t=nc(),r=(function(){var n=/[^.]+$/.exec(t&&t.keys&&t.keys.IE_PROTO||"");return n?"Symbol(src)_1."+n:""})();function e(n){return!!r&&r in n}return Jt=e,Jt}var Yt,ho;function Wu(){if(ho)return Yt;ho=1;var t=Function.prototype,r=t.toString;function e(n){if(n!=null){try{return r.call(n)}catch{}try{return n+""}catch{}}return""}return Yt=e,Yt}var Zt,yo;function ic(){if(yo)return Zt;yo=1;var t=Pn(),r=oc(),e=I(),n=Wu(),o=/[\\^$.*+?()[\]{}|]/g,i=/^\[object .+?Constructor\]$/,u=Function.prototype,a=Object.prototype,c=u.toString,f=a.hasOwnProperty,s=RegExp("^"+c.call(f).replace(o,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function l(v){if(!e(v)||r(v))return!1;var p=t(v)?s:i;return p.test(n(v))}return Zt=l,Zt}var Qt,go;function uc(){if(go)return Qt;go=1;function t(r,e){return r?.[e]}return Qt=t,Qt}var Kt,bo;function D(){if(bo)return Kt;bo=1;var t=ic(),r=uc();function e(n,o){var i=r(n,o);return t(i)?i:void 0}return Kt=e,Kt}var Xt,mo;function En(){if(mo)return Xt;mo=1;var t=D(),r=U(),e=t(r,"Map");return Xt=e,Xt}var tr,jo;function mt(){if(jo)return tr;jo=1;var t=D(),r=t(Object,"create");return tr=r,tr}var rr,_o;function ac(){if(_o)return rr;_o=1;var t=mt();function r(){this.__data__=t?t(null):{},this.size=0}return rr=r,rr}var er,wo;function cc(){if(wo)return er;wo=1;function t(r){var e=this.has(r)&&delete this.__data__[r];return this.size-=e?1:0,e}return er=t,er}var nr,Oo;function fc(){if(Oo)return nr;Oo=1;var t=mt(),r="__lodash_hash_undefined__",e=Object.prototype,n=e.hasOwnProperty;function o(i){var u=this.__data__;if(t){var a=u[i];return a===r?void 0:a}return n.call(u,i)?u[i]:void 0}return nr=o,nr}var or,Po;function sc(){if(Po)return or;Po=1;var t=mt(),r=Object.prototype,e=r.hasOwnProperty;function n(o){var i=this.__data__;return t?i[o]!==void 0:e.call(i,o)}return or=n,or}var ir,Eo;function vc(){if(Eo)return ir;Eo=1;var t=mt(),r="__lodash_hash_undefined__";function e(n,o){var i=this.__data__;return this.size+=this.has(n)?0:1,i[n]=t&&o===void 0?r:o,this}return ir=e,ir}var ur,So;function lc(){if(So)return ur;So=1;var t=ac(),r=cc(),e=fc(),n=sc(),o=vc();function i(u){var a=-1,c=u==null?0:u.length;for(this.clear();++a<c;){var f=u[a];this.set(f[0],f[1])}}return i.prototype.clear=t,i.prototype.delete=r,i.prototype.get=e,i.prototype.has=n,i.prototype.set=o,ur=i,ur}var ar,Ao;function pc(){if(Ao)return ar;Ao=1;var t=lc(),r=bt(),e=En();function n(){this.size=0,this.__data__={hash:new t,map:new(e||r),string:new t}}return ar=n,ar}var cr,xo;function hc(){if(xo)return cr;xo=1;function t(r){var e=typeof r;return e=="string"||e=="number"||e=="symbol"||e=="boolean"?r!=="__proto__":r===null}return cr=t,cr}var fr,ko;function jt(){if(ko)return fr;ko=1;var t=hc();function r(e,n){var o=e.__data__;return t(n)?o[typeof n=="string"?"string":"hash"]:o.map}return fr=r,fr}var sr,Co;function yc(){if(Co)return sr;Co=1;var t=jt();function r(e){var n=t(this,e).delete(e);return this.size-=n?1:0,n}return sr=r,sr}var vr,Ho;function dc(){if(Ho)return vr;Ho=1;var t=jt();function r(e){return t(this,e).get(e)}return vr=r,vr}var lr,To;function gc(){if(To)return lr;To=1;var t=jt();function r(e){return t(this,e).has(e)}return lr=r,lr}var pr,Uo;function bc(){if(Uo)return pr;Uo=1;var t=jt();function r(e,n){var o=t(this,e),i=o.size;return o.set(e,n),this.size+=o.size==i?0:1,this}return pr=r,pr}var hr,Io;function Ju(){if(Io)return hr;Io=1;var t=pc(),r=yc(),e=dc(),n=gc(),o=bc();function i(u){var a=-1,c=u==null?0:u.length;for(this.clear();++a<c;){var f=u[a];this.set(f[0],f[1])}}return i.prototype.clear=t,i.prototype.delete=r,i.prototype.get=e,i.prototype.has=n,i.prototype.set=o,hr=i,hr}var yr,zo;function mc(){if(zo)return yr;zo=1;var t=bt(),r=En(),e=Ju(),n=200;function o(i,u){var a=this.__data__;if(a instanceof t){var c=a.__data__;if(!r||c.length<n-1)return c.push([i,u]),this.size=++a.size,this;a=this.__data__=new e(c)}return a.set(i,u),this.size=a.size,this}return yr=o,yr}var dr,Lo;function Yu(){if(Lo)return dr;Lo=1;var t=bt(),r=Qa(),e=Ka(),n=Xa(),o=tc(),i=mc();function u(a){var c=this.__data__=new t(a);this.size=c.size}return u.prototype.clear=r,u.prototype.delete=e,u.prototype.get=n,u.prototype.has=o,u.prototype.set=i,dr=u,dr}var gr,Ro;function jc(){if(Ro)return gr;Ro=1;function t(r,e){for(var n=-1,o=r==null?0:r.length;++n<o&&e(r[n],n,r)!==!1;);return r}return gr=t,gr}var br,Bo;function Zu(){if(Bo)return br;Bo=1;var t=D(),r=(function(){try{var e=t(Object,"defineProperty");return e({},"",{}),e}catch{}})();return br=r,br}var mr,$o;function Sn(){if($o)return mr;$o=1;var t=Zu();function r(e,n,o){n=="__proto__"&&t?t(e,n,{configurable:!0,enumerable:!0,value:o,writable:!0}):e[n]=o}return mr=r,mr}var jr,Mo;function An(){if(Mo)return jr;Mo=1;var t=Sn(),r=dt(),e=Object.prototype,n=e.hasOwnProperty;function o(i,u,a){var c=i[u];(!(n.call(i,u)&&r(c,a))||a===void 0&&!(u in i))&&t(i,u,a)}return jr=o,jr}var _r,Vo;function J(){if(Vo)return _r;Vo=1;var t=An(),r=Sn();function e(n,o,i,u){var a=!i;i||(i={});for(var c=-1,f=o.length;++c<f;){var s=o[c],l=u?u(i[s],n[s],s,i,n):void 0;l===void 0&&(l=n[s]),a?r(i,s,l):t(i,s,l)}return i}return _r=e,_r}var wr,Do;function _c(){if(Do)return wr;Do=1;function t(r,e){for(var n=-1,o=Array(r);++n<r;)o[n]=e(n);return o}return wr=t,wr}var Or,Fo;function M(){if(Fo)return Or;Fo=1;function t(r){return r!=null&&typeof r=="object"}return Or=t,Or}var Pr,qo;function wc(){if(qo)return Pr;qo=1;var t=W(),r=M(),e="[object Arguments]";function n(o){return r(o)&&t(o)==e}return Pr=n,Pr}var Er,No;function _t(){if(No)return Er;No=1;var t=wc(),r=M(),e=Object.prototype,n=e.hasOwnProperty,o=e.propertyIsEnumerable,i=t((function(){return arguments})())?t:function(u){return r(u)&&n.call(u,"callee")&&!o.call(u,"callee")};return Er=i,Er}var Sr,Go;function R(){if(Go)return Sr;Go=1;var t=Array.isArray;return Sr=t,Sr}var lt={exports:{}},Ar,Wo;function Oc(){if(Wo)return Ar;Wo=1;function t(){return!1}return Ar=t,Ar}lt.exports;var Jo;function xn(){return Jo||(Jo=1,(function(t,r){var e=U(),n=Oc(),o=r&&!r.nodeType&&r,i=o&&!0&&t&&!t.nodeType&&t,u=i&&i.exports===o,a=u?e.Buffer:void 0,c=a?a.isBuffer:void 0,f=c||n;t.exports=f})(lt,lt.exports)),lt.exports}var xr,Yo;function wt(){if(Yo)return xr;Yo=1;var t=9007199254740991,r=/^(?:0|[1-9]\d*)$/;function e(n,o){var i=typeof n;return o=o??t,!!o&&(i=="number"||i!="symbol"&&r.test(n))&&n>-1&&n%1==0&&n<o}return xr=e,xr}var kr,Zo;function kn(){if(Zo)return kr;Zo=1;var t=9007199254740991;function r(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=t}return kr=r,kr}var Cr,Qo;function Pc(){if(Qo)return Cr;Qo=1;var t=W(),r=kn(),e=M(),n="[object Arguments]",o="[object Array]",i="[object Boolean]",u="[object Date]",a="[object Error]",c="[object Function]",f="[object Map]",s="[object Number]",l="[object Object]",v="[object RegExp]",p="[object Set]",h="[object String]",g="[object WeakMap]",b="[object ArrayBuffer]",_="[object DataView]",d="[object Float32Array]",P="[object Float64Array]",x="[object Int8Array]",w="[object Int16Array]",k="[object Int32Array]",S="[object Uint8Array]",O="[object Uint8ClampedArray]",A="[object Uint16Array]",E="[object Uint32Array]",y={};y[d]=y[P]=y[x]=y[w]=y[k]=y[S]=y[O]=y[A]=y[E]=!0,y[n]=y[o]=y[b]=y[i]=y[_]=y[u]=y[a]=y[c]=y[f]=y[s]=y[l]=y[v]=y[p]=y[h]=y[g]=!1;function H(z){return e(z)&&r(z.length)&&!!y[t(z)]}return Cr=H,Cr}var Hr,Ko;function Cn(){if(Ko)return Hr;Ko=1;function t(r){return function(e){return r(e)}}return Hr=t,Hr}var pt={exports:{}};pt.exports;var Xo;function Hn(){return Xo||(Xo=1,(function(t,r){var e=Gu(),n=r&&!r.nodeType&&r,o=n&&!0&&t&&!t.nodeType&&t,i=o&&o.exports===n,u=i&&e.process,a=(function(){try{var c=o&&o.require&&o.require("util").types;return c||u&&u.binding&&u.binding("util")}catch{}})();t.exports=a})(pt,pt.exports)),pt.exports}var Tr,ti;function Qu(){if(ti)return Tr;ti=1;var t=Pc(),r=Cn(),e=Hn(),n=e&&e.isTypedArray,o=n?r(n):t;return Tr=o,Tr}var Ur,ri;function Ku(){if(ri)return Ur;ri=1;var t=_c(),r=_t(),e=R(),n=xn(),o=wt(),i=Qu(),u=Object.prototype,a=u.hasOwnProperty;function c(f,s){var l=e(f),v=!l&&r(f),p=!l&&!v&&n(f),h=!l&&!v&&!p&&i(f),g=l||v||p||h,b=g?t(f.length,String):[],_=b.length;for(var d in f)(s||a.call(f,d))&&!(g&&(d=="length"||p&&(d=="offset"||d=="parent")||h&&(d=="buffer"||d=="byteLength"||d=="byteOffset")||o(d,_)))&&b.push(d);return b}return Ur=c,Ur}var Ir,ei;function Tn(){if(ei)return Ir;ei=1;var t=Object.prototype;function r(e){var n=e&&e.constructor,o=typeof n=="function"&&n.prototype||t;return e===o}return Ir=r,Ir}var zr,ni;function Xu(){if(ni)return zr;ni=1;function t(r,e){return function(n){return r(e(n))}}return zr=t,zr}var Lr,oi;function Ec(){if(oi)return Lr;oi=1;var t=Xu(),r=t(Object.keys,Object);return Lr=r,Lr}var Rr,ii;function Sc(){if(ii)return Rr;ii=1;var t=Tn(),r=Ec(),e=Object.prototype,n=e.hasOwnProperty;function o(i){if(!t(i))return r(i);var u=[];for(var a in Object(i))n.call(i,a)&&a!="constructor"&&u.push(a);return u}return Rr=o,Rr}var Br,ui;function Ot(){if(ui)return Br;ui=1;var t=Pn(),r=kn();function e(n){return n!=null&&r(n.length)&&!t(n)}return Br=e,Br}var $r,ai;function Un(){if(ai)return $r;ai=1;var t=Ku(),r=Sc(),e=Ot();function n(o){return e(o)?t(o):r(o)}return $r=n,$r}var Mr,ci;function Ac(){if(ci)return Mr;ci=1;var t=J(),r=Un();function e(n,o){return n&&t(o,r(o),n)}return Mr=e,Mr}var Vr,fi;function xc(){if(fi)return Vr;fi=1;function t(r){var e=[];if(r!=null)for(var n in Object(r))e.push(n);return e}return Vr=t,Vr}var Dr,si;function kc(){if(si)return Dr;si=1;var t=I(),r=Tn(),e=xc(),n=Object.prototype,o=n.hasOwnProperty;function i(u){if(!t(u))return e(u);var a=r(u),c=[];for(var f in u)f=="constructor"&&(a||!o.call(u,f))||c.push(f);return c}return Dr=i,Dr}var Fr,vi;function X(){if(vi)return Fr;vi=1;var t=Ku(),r=kc(),e=Ot();function n(o){return e(o)?t(o,!0):r(o)}return Fr=n,Fr}var qr,li;function Cc(){if(li)return qr;li=1;var t=J(),r=X();function e(n,o){return n&&t(o,r(o),n)}return qr=e,qr}var ht={exports:{}};ht.exports;var pi;function ta(){return pi||(pi=1,(function(t,r){var e=U(),n=r&&!r.nodeType&&r,o=n&&!0&&t&&!t.nodeType&&t,i=o&&o.exports===n,u=i?e.Buffer:void 0,a=u?u.allocUnsafe:void 0;function c(f,s){if(s)return f.slice();var l=f.length,v=a?a(l):new f.constructor(l);return f.copy(v),v}t.exports=c})(ht,ht.exports)),ht.exports}var Nr,hi;function ra(){if(hi)return Nr;hi=1;function t(r,e){var n=-1,o=r.length;for(e||(e=Array(o));++n<o;)e[n]=r[n];return e}return Nr=t,Nr}var Gr,yi;function Hc(){if(yi)return Gr;yi=1;function t(r,e){for(var n=-1,o=r==null?0:r.length,i=0,u=[];++n<o;){var a=r[n];e(a,n,r)&&(u[i++]=a)}return u}return Gr=t,Gr}var Wr,di;function ea(){if(di)return Wr;di=1;function t(){return[]}return Wr=t,Wr}var Jr,gi;function In(){if(gi)return Jr;gi=1;var t=Hc(),r=ea(),e=Object.prototype,n=e.propertyIsEnumerable,o=Object.getOwnPropertySymbols,i=o?function(u){return u==null?[]:(u=Object(u),t(o(u),function(a){return n.call(u,a)}))}:r;return Jr=i,Jr}var Yr,bi;function Tc(){if(bi)return Yr;bi=1;var t=J(),r=In();function e(n,o){return t(n,r(n),o)}return Yr=e,Yr}var Zr,mi;function zn(){if(mi)return Zr;mi=1;function t(r,e){for(var n=-1,o=e.length,i=r.length;++n<o;)r[i+n]=e[n];return r}return Zr=t,Zr}var Qr,ji;function Ln(){if(ji)return Qr;ji=1;var t=Xu(),r=t(Object.getPrototypeOf,Object);return Qr=r,Qr}var Kr,_i;function na(){if(_i)return Kr;_i=1;var t=zn(),r=Ln(),e=In(),n=ea(),o=Object.getOwnPropertySymbols,i=o?function(u){for(var a=[];u;)t(a,e(u)),u=r(u);return a}:n;return Kr=i,Kr}var Xr,wi;function Uc(){if(wi)return Xr;wi=1;var t=J(),r=na();function e(n,o){return t(n,r(n),o)}return Xr=e,Xr}var te,Oi;function oa(){if(Oi)return te;Oi=1;var t=zn(),r=R();function e(n,o,i){var u=o(n);return r(n)?u:t(u,i(n))}return te=e,te}var re,Pi;function Ic(){if(Pi)return re;Pi=1;var t=oa(),r=In(),e=Un();function n(o){return t(o,e,r)}return re=n,re}var ee,Ei;function ia(){if(Ei)return ee;Ei=1;var t=oa(),r=na(),e=X();function n(o){return t(o,e,r)}return ee=n,ee}var ne,Si;function zc(){if(Si)return ne;Si=1;var t=D(),r=U(),e=t(r,"DataView");return ne=e,ne}var oe,Ai;function Lc(){if(Ai)return oe;Ai=1;var t=D(),r=U(),e=t(r,"Promise");return oe=e,oe}var ie,xi;function Rc(){if(xi)return ie;xi=1;var t=D(),r=U(),e=t(r,"Set");return ie=e,ie}var ue,ki;function Bc(){if(ki)return ue;ki=1;var t=D(),r=U(),e=t(r,"WeakMap");return ue=e,ue}var ae,Ci;function Rn(){if(Ci)return ae;Ci=1;var t=zc(),r=En(),e=Lc(),n=Rc(),o=Bc(),i=W(),u=Wu(),a="[object Map]",c="[object Object]",f="[object Promise]",s="[object Set]",l="[object WeakMap]",v="[object DataView]",p=u(t),h=u(r),g=u(e),b=u(n),_=u(o),d=i;return(t&&d(new t(new ArrayBuffer(1)))!=v||r&&d(new r)!=a||e&&d(e.resolve())!=f||n&&d(new n)!=s||o&&d(new o)!=l)&&(d=function(P){var x=i(P),w=x==c?P.constructor:void 0,k=w?u(w):"";if(k)switch(k){case p:return v;case h:return a;case g:return f;case b:return s;case _:return l}return x}),ae=d,ae}var ce,Hi;function $c(){if(Hi)return ce;Hi=1;var t=Object.prototype,r=t.hasOwnProperty;function e(n){var o=n.length,i=new n.constructor(o);return o&&typeof n[0]=="string"&&r.call(n,"index")&&(i.index=n.index,i.input=n.input),i}return ce=e,ce}var fe,Ti;function Mc(){if(Ti)return fe;Ti=1;var t=U(),r=t.Uint8Array;return fe=r,fe}var se,Ui;function Bn(){if(Ui)return se;Ui=1;var t=Mc();function r(e){var n=new e.constructor(e.byteLength);return new t(n).set(new t(e)),n}return se=r,se}var ve,Ii;function Vc(){if(Ii)return ve;Ii=1;var t=Bn();function r(e,n){var o=n?t(e.buffer):e.buffer;return new e.constructor(o,e.byteOffset,e.byteLength)}return ve=r,ve}var le,zi;function Dc(){if(zi)return le;zi=1;var t=/\w*$/;function r(e){var n=new e.constructor(e.source,t.exec(e));return n.lastIndex=e.lastIndex,n}return le=r,le}var pe,Li;function Fc(){if(Li)return pe;Li=1;var t=K(),r=t?t.prototype:void 0,e=r?r.valueOf:void 0;function n(o){return e?Object(e.call(o)):{}}return pe=n,pe}var he,Ri;function ua(){if(Ri)return he;Ri=1;var t=Bn();function r(e,n){var o=n?t(e.buffer):e.buffer;return new e.constructor(o,e.byteOffset,e.length)}return he=r,he}var ye,Bi;function qc(){if(Bi)return ye;Bi=1;var t=Bn(),r=Vc(),e=Dc(),n=Fc(),o=ua(),i="[object Boolean]",u="[object Date]",a="[object Map]",c="[object Number]",f="[object RegExp]",s="[object Set]",l="[object String]",v="[object Symbol]",p="[object ArrayBuffer]",h="[object DataView]",g="[object Float32Array]",b="[object Float64Array]",_="[object Int8Array]",d="[object Int16Array]",P="[object Int32Array]",x="[object Uint8Array]",w="[object Uint8ClampedArray]",k="[object Uint16Array]",S="[object Uint32Array]";function O(A,E,y){var H=A.constructor;switch(E){case p:return t(A);case i:case u:return new H(+A);case h:return r(A,y);case g:case b:case _:case d:case P:case x:case w:case k:case S:return o(A,y);case a:return new H;case c:case l:return new H(A);case f:return e(A);case s:return new H;case v:return n(A)}}return ye=O,ye}var de,$i;function Nc(){if($i)return de;$i=1;var t=I(),r=Object.create,e=(function(){function n(){}return function(o){if(!t(o))return{};if(r)return r(o);n.prototype=o;var i=new n;return n.prototype=void 0,i}})();return de=e,de}var ge,Mi;function aa(){if(Mi)return ge;Mi=1;var t=Nc(),r=Ln(),e=Tn();function n(o){return typeof o.constructor=="function"&&!e(o)?t(r(o)):{}}return ge=n,ge}var be,Vi;function Gc(){if(Vi)return be;Vi=1;var t=Rn(),r=M(),e="[object Map]";function n(o){return r(o)&&t(o)==e}return be=n,be}var me,Di;function Wc(){if(Di)return me;Di=1;var t=Gc(),r=Cn(),e=Hn(),n=e&&e.isMap,o=n?r(n):t;return me=o,me}var je,Fi;function Jc(){if(Fi)return je;Fi=1;var t=Rn(),r=M(),e="[object Set]";function n(o){return r(o)&&t(o)==e}return je=n,je}var _e,qi;function Yc(){if(qi)return _e;qi=1;var t=Jc(),r=Cn(),e=Hn(),n=e&&e.isSet,o=n?r(n):t;return _e=o,_e}var we,Ni;function ca(){if(Ni)return we;Ni=1;var t=Yu(),r=jc(),e=An(),n=Ac(),o=Cc(),i=ta(),u=ra(),a=Tc(),c=Uc(),f=Ic(),s=ia(),l=Rn(),v=$c(),p=qc(),h=aa(),g=R(),b=xn(),_=Wc(),d=I(),P=Yc(),x=Un(),w=X(),k=1,S=2,O=4,A="[object Arguments]",E="[object Array]",y="[object Boolean]",H="[object Date]",z="[object Error]",Z="[object Function]",ja="[object GeneratorFunction]",_a="[object Map]",wa="[object Number]",Mn="[object Object]",Oa="[object RegExp]",Pa="[object Set]",Ea="[object String]",Sa="[object Symbol]",Aa="[object WeakMap]",xa="[object ArrayBuffer]",ka="[object DataView]",Ca="[object Float32Array]",Ha="[object Float64Array]",Ta="[object Int8Array]",Ua="[object Int16Array]",Ia="[object Int32Array]",za="[object Uint8Array]",La="[object Uint8ClampedArray]",Ra="[object Uint16Array]",Ba="[object Uint32Array]",j={};j[A]=j[E]=j[xa]=j[ka]=j[y]=j[H]=j[Ca]=j[Ha]=j[Ta]=j[Ua]=j[Ia]=j[_a]=j[wa]=j[Mn]=j[Oa]=j[Pa]=j[Ea]=j[Sa]=j[za]=j[La]=j[Ra]=j[Ba]=!0,j[z]=j[Z]=j[Aa]=!1;function rt(m,F,q,$a,et,B){var C,nt=F&k,ot=F&S,Ma=F&O;if(q&&(C=et?q(m,$a,et,B):q(m)),C!==void 0)return C;if(!d(m))return m;var Vn=g(m);if(Vn){if(C=v(m),!nt)return u(m,C)}else{var N=l(m),Dn=N==Z||N==ja;if(b(m))return i(m,nt);if(N==Mn||N==A||Dn&&!et){if(C=ot||Dn?{}:h(m),!nt)return ot?c(m,o(C,m)):a(m,n(C,m))}else{if(!j[N])return et?m:{};C=p(m,N,nt)}}B||(B=new t);var Fn=B.get(m);if(Fn)return Fn;B.set(m,C),P(m)?m.forEach(function($){C.add(rt($,F,q,$,m,B))}):_(m)&&m.forEach(function($,V){C.set(V,rt($,F,q,V,m,B))});var Va=Ma?ot?s:f:ot?w:x,qn=Vn?void 0:Va(m);return r(qn||m,function($,V){qn&&(V=$,$=m[V]),e(C,V,rt($,F,q,V,m,B))}),C}return we=rt,we}var Oe,Gi;function $n(){if(Gi)return Oe;Gi=1;var t=W(),r=M(),e="[object Symbol]";function n(o){return typeof o=="symbol"||r(o)&&t(o)==e}return Oe=n,Oe}var Pe,Wi;function Zc(){if(Wi)return Pe;Wi=1;var t=R(),r=$n(),e=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,n=/^\w*$/;function o(i,u){if(t(i))return!1;var a=typeof i;return a=="number"||a=="symbol"||a=="boolean"||i==null||r(i)?!0:n.test(i)||!e.test(i)||u!=null&&i in Object(u)}return Pe=o,Pe}var Ee,Ji;function Qc(){if(Ji)return Ee;Ji=1;var t=Ju(),r="Expected a function";function e(n,o){if(typeof n!="function"||o!=null&&typeof o!="function")throw new TypeError(r);var i=function(){var u=arguments,a=o?o.apply(this,u):u[0],c=i.cache;if(c.has(a))return c.get(a);var f=n.apply(this,u);return i.cache=c.set(a,f)||c,f};return i.cache=new(e.Cache||t),i}return e.Cache=t,Ee=e,Ee}var Se,Yi;function Kc(){if(Yi)return Se;Yi=1;var t=Qc(),r=500;function e(n){var o=t(n,function(u){return i.size===r&&i.clear(),u}),i=o.cache;return o}return Se=e,Se}var Ae,Zi;function Xc(){if(Zi)return Ae;Zi=1;var t=Kc(),r=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,e=/\\(\\)?/g,n=t(function(o){var i=[];return o.charCodeAt(0)===46&&i.push(""),o.replace(r,function(u,a,c,f){i.push(c?f.replace(e,"$1"):a||u)}),i});return Ae=n,Ae}var xe,Qi;function tf(){if(Qi)return xe;Qi=1;var t=K(),r=Nu(),e=R(),n=$n(),o=t?t.prototype:void 0,i=o?o.toString:void 0;function u(a){if(typeof a=="string")return a;if(e(a))return r(a,u)+"";if(n(a))return i?i.call(a):"";var c=a+"";return c=="0"&&1/a==-1/0?"-0":c}return xe=u,xe}var ke,Ki;function rf(){if(Ki)return ke;Ki=1;var t=tf();function r(e){return e==null?"":t(e)}return ke=r,ke}var Ce,Xi;function Y(){if(Xi)return Ce;Xi=1;var t=R(),r=Zc(),e=Xc(),n=rf();function o(i,u){return t(i)?i:r(i,u)?[i]:e(n(i))}return Ce=o,Ce}var He,tu;function ef(){if(tu)return He;tu=1;function t(r){var e=r==null?0:r.length;return e?r[e-1]:void 0}return He=t,He}var Te,ru;function Pt(){if(ru)return Te;ru=1;var t=$n();function r(e){if(typeof e=="string"||t(e))return e;var n=e+"";return n=="0"&&1/e==-1/0?"-0":n}return Te=r,Te}var Ue,eu;function fa(){if(eu)return Ue;eu=1;var t=Y(),r=Pt();function e(n,o){o=t(o,n);for(var i=0,u=o.length;n!=null&&i<u;)n=n[r(o[i++])];return i&&i==u?n:void 0}return Ue=e,Ue}var Ie,nu;function nf(){if(nu)return Ie;nu=1;function t(r,e,n){var o=-1,i=r.length;e<0&&(e=-e>i?0:i+e),n=n>i?i:n,n<0&&(n+=i),i=e>n?0:n-e>>>0,e>>>=0;for(var u=Array(i);++o<i;)u[o]=r[o+e];return u}return Ie=t,Ie}var ze,ou;function of(){if(ou)return ze;ou=1;var t=fa(),r=nf();function e(n,o){return o.length<2?n:t(n,r(o,0,-1))}return ze=e,ze}var Le,iu;function uf(){if(iu)return Le;iu=1;var t=Y(),r=ef(),e=of(),n=Pt(),o=Object.prototype,i=o.hasOwnProperty;function u(a,c){c=t(c,a);var f=-1,s=c.length;if(!s)return!0;for(var l=a==null||typeof a!="object"&&typeof a!="function";++f<s;){var v=c[f];if(typeof v=="string"){if(v==="__proto__"&&!i.call(a,"__proto__"))return!1;if(v==="constructor"&&f+1<s&&typeof c[f+1]=="string"&&c[f+1]==="prototype"){if(l&&f===0)continue;return!1}}}var p=e(a,c);return p==null||delete p[n(r(c))]}return Le=u,Le}var Re,uu;function sa(){if(uu)return Re;uu=1;var t=W(),r=Ln(),e=M(),n="[object Object]",o=Function.prototype,i=Object.prototype,u=o.toString,a=i.hasOwnProperty,c=u.call(Object);function f(s){if(!e(s)||t(s)!=n)return!1;var l=r(s);if(l===null)return!0;var v=a.call(l,"constructor")&&l.constructor;return typeof v=="function"&&v instanceof v&&u.call(v)==c}return Re=f,Re}var Be,au;function af(){if(au)return Be;au=1;var t=sa();function r(e){return t(e)?void 0:e}return Be=r,Be}var $e,cu;function cf(){if(cu)return $e;cu=1;var t=K(),r=_t(),e=R(),n=t?t.isConcatSpreadable:void 0;function o(i){return e(i)||r(i)||!!(n&&i&&i[n])}return $e=o,$e}var Me,fu;function ff(){if(fu)return Me;fu=1;var t=zn(),r=cf();function e(n,o,i,u,a){var c=-1,f=n.length;for(i||(i=r),a||(a=[]);++c<f;){var s=n[c];o>0&&i(s)?o>1?e(s,o-1,i,u,a):t(a,s):u||(a[a.length]=s)}return a}return Me=e,Me}var Ve,su;function sf(){if(su)return Ve;su=1;var t=ff();function r(e){var n=e==null?0:e.length;return n?t(e,1):[]}return Ve=r,Ve}var De,vu;function vf(){if(vu)return De;vu=1;function t(r,e,n){switch(n.length){case 0:return r.call(e);case 1:return r.call(e,n[0]);case 2:return r.call(e,n[0],n[1]);case 3:return r.call(e,n[0],n[1],n[2])}return r.apply(e,n)}return De=t,De}var Fe,lu;function va(){if(lu)return Fe;lu=1;var t=vf(),r=Math.max;function e(n,o,i){return o=r(o===void 0?n.length-1:o,0),function(){for(var u=arguments,a=-1,c=r(u.length-o,0),f=Array(c);++a<c;)f[a]=u[o+a];a=-1;for(var s=Array(o+1);++a<o;)s[a]=u[a];return s[o]=i(f),t(n,this,s)}}return Fe=e,Fe}var qe,pu;function lf(){if(pu)return qe;pu=1;function t(r){return function(){return r}}return qe=t,qe}var Ne,hu;function la(){if(hu)return Ne;hu=1;function t(r){return r}return Ne=t,Ne}var Ge,yu;function pf(){if(yu)return Ge;yu=1;var t=lf(),r=Zu(),e=la(),n=r?function(o,i){return r(o,"toString",{configurable:!0,enumerable:!1,value:t(i),writable:!0})}:e;return Ge=n,Ge}var We,du;function hf(){if(du)return We;du=1;var t=800,r=16,e=Date.now;function n(o){var i=0,u=0;return function(){var a=e(),c=r-(a-u);if(u=a,c>0){if(++i>=t)return arguments[0]}else i=0;return o.apply(void 0,arguments)}}return We=n,We}var Je,gu;function pa(){if(gu)return Je;gu=1;var t=pf(),r=hf(),e=r(t);return Je=e,Je}var Ye,bu;function ha(){if(bu)return Ye;bu=1;var t=sf(),r=va(),e=pa();function n(o){return e(r(o,void 0,t),o+"")}return Ye=n,Ye}var Ze,mu;function yf(){if(mu)return Ze;mu=1;var t=Nu(),r=ca(),e=uf(),n=Y(),o=J(),i=af(),u=ha(),a=ia(),c=1,f=2,s=4,l=u(function(v,p){var h={};if(v==null)return h;var g=!1;p=t(p,function(_){return _=n(_,v),g||(g=_.length>1),_}),o(v,a(v),h),g&&(h=r(h,c|f|s,i));for(var b=p.length;b--;)e(h,p[b]);return h});return Ze=l,Ze}var df=yf();const gf=Q(df);var Qe,ju;function ya(){if(ju)return Qe;ju=1;var t=Sn(),r=dt();function e(n,o,i){(i!==void 0&&!r(n[o],i)||i===void 0&&!(o in n))&&t(n,o,i)}return Qe=e,Qe}var Ke,_u;function bf(){if(_u)return Ke;_u=1;function t(r){return function(e,n,o){for(var i=-1,u=Object(e),a=o(e),c=a.length;c--;){var f=a[r?c:++i];if(n(u[f],f,u)===!1)break}return e}}return Ke=t,Ke}var Xe,wu;function mf(){if(wu)return Xe;wu=1;var t=bf(),r=t();return Xe=r,Xe}var tn,Ou;function jf(){if(Ou)return tn;Ou=1;var t=Ot(),r=M();function e(n){return r(n)&&t(n)}return tn=e,tn}var rn,Pu;function da(){if(Pu)return rn;Pu=1;function t(r,e){if(!(e==="constructor"&&typeof r[e]=="function")&&e!="__proto__")return r[e]}return rn=t,rn}var en,Eu;function _f(){if(Eu)return en;Eu=1;var t=J(),r=X();function e(n){return t(n,r(n))}return en=e,en}var nn,Su;function wf(){if(Su)return nn;Su=1;var t=ya(),r=ta(),e=ua(),n=ra(),o=aa(),i=_t(),u=R(),a=jf(),c=xn(),f=Pn(),s=I(),l=sa(),v=Qu(),p=da(),h=_f();function g(b,_,d,P,x,w,k){var S=p(b,d),O=p(_,d),A=k.get(O);if(A){t(b,d,A);return}var E=w?w(S,O,d+"",b,_,k):void 0,y=E===void 0;if(y){var H=u(O),z=!H&&c(O),Z=!H&&!z&&v(O);E=O,H||z||Z?u(S)?E=S:a(S)?E=n(S):z?(y=!1,E=r(O,!0)):Z?(y=!1,E=e(O,!0)):E=[]:l(O)||i(O)?(E=S,i(S)?E=h(S):(!s(S)||f(S))&&(E=o(O))):y=!1}y&&(k.set(O,E),x(E,O,P,w,k),k.delete(O)),t(b,d,E)}return nn=g,nn}var on,Au;function Of(){if(Au)return on;Au=1;var t=Yu(),r=ya(),e=mf(),n=wf(),o=I(),i=X(),u=da();function a(c,f,s,l,v){c!==f&&e(f,function(p,h){if(v||(v=new t),o(p))n(c,f,h,s,a,l,v);else{var g=l?l(u(c,h),p,h+"",c,f,v):void 0;g===void 0&&(g=p),r(c,h,g)}},i)}return on=a,on}var un,xu;function Pf(){if(xu)return un;xu=1;var t=la(),r=va(),e=pa();function n(o,i){return e(r(o,i,t),o+"")}return un=n,un}var an,ku;function Ef(){if(ku)return an;ku=1;var t=dt(),r=Ot(),e=wt(),n=I();function o(i,u,a){if(!n(a))return!1;var c=typeof u;return(c=="number"?r(a)&&e(u,a.length):c=="string"&&u in a)?t(a[u],i):!1}return an=o,an}var cn,Cu;function Sf(){if(Cu)return cn;Cu=1;var t=Pf(),r=Ef();function e(n){return t(function(o,i){var u=-1,a=i.length,c=a>1?i[a-1]:void 0,f=a>2?i[2]:void 0;for(c=n.length>3&&typeof c=="function"?(a--,c):void 0,f&&r(i[0],i[1],f)&&(c=a<3?void 0:c,a=1),o=Object(o);++u<a;){var s=i[u];s&&n(o,s,u,c)}return o})}return cn=e,cn}var fn,Hu;function Af(){if(Hu)return fn;Hu=1;var t=Of(),r=Sf(),e=r(function(n,o,i){t(n,o,i)});return fn=e,fn}var xf=Af();const ut=Q(xf),at=40,sn=32,kf=t=>{let r=null;function e(o){const i=o.touches[0].clientX;i>window.outerWidth-sn||(r=i<sn||i>window.outerWidth-sn?i:null)}function n(o){if(r===null)return;const i=o.changedTouches[0].clientX-r;(i>at||i<-at)&&((i>at||i<-at)&&(t(!0),setTimeout(()=>{t(!1)},500)),r=null)}return document.addEventListener("touchstart",e,{passive:!0}),document.addEventListener("touchend",n,{passive:!0}),()=>{document.removeEventListener("touchstart",e),document.removeEventListener("touchend",n)}},ga=250,ct=(t,r)=>{if(t==="none"){document.documentElement.style.setProperty("--vt-duration","0"),document.documentElement.style.setProperty("--vt-new-index","2"),document.documentElement.style.setProperty("--vt-old-index","1"),document.documentElement.style.setProperty("--vt-new-name",`vt-${t}-in-forward`),document.documentElement.style.setProperty("--vt-old-name",`vt-${t}-in-forward`);return}const e=r==="POP";document.documentElement.style.setProperty("--vt-duration",ga+"ms"),e?(document.documentElement.style.setProperty("--vt-new-index","1"),document.documentElement.style.setProperty("--vt-old-index","2")):(document.documentElement.style.setProperty("--vt-new-index","2"),document.documentElement.style.setProperty("--vt-old-index","1")),document.documentElement.style.setProperty("--vt-new-name",`vt-${t}-in-${e?"back":"forward"}`),document.documentElement.style.setProperty("--vt-old-name",`vt-${t}-out-${e?"back":"forward"}`)};var vn,Tu;function Cf(){if(Tu)return vn;Tu=1;var t=An(),r=Y(),e=wt(),n=I(),o=Pt();function i(u,a,c,f){if(!n(u))return u;a=r(a,u);for(var s=-1,l=a.length,v=l-1,p=u;p!=null&&++s<l;){var h=o(a[s]),g=c;if(h==="__proto__"||h==="constructor"||h==="prototype")return u;if(s!=v){var b=p[h];g=f?f(b,h,p):void 0,g===void 0&&(g=n(b)?b:e(a[s+1])?[]:{})}t(p,h,g),p=p[h]}return u}return vn=i,vn}var ln,Uu;function Hf(){if(Uu)return ln;Uu=1;var t=fa(),r=Cf(),e=Y();function n(o,i,u){for(var a=-1,c=i.length,f={};++a<c;){var s=i[a],l=t(o,s);u(l,s)&&r(f,e(s,o),l)}return f}return ln=n,ln}var pn,Iu;function Tf(){if(Iu)return pn;Iu=1;function t(r,e){return r!=null&&e in Object(r)}return pn=t,pn}var hn,zu;function Uf(){if(zu)return hn;zu=1;var t=Y(),r=_t(),e=R(),n=wt(),o=kn(),i=Pt();function u(a,c,f){c=t(c,a);for(var s=-1,l=c.length,v=!1;++s<l;){var p=i(c[s]);if(!(v=a!=null&&f(a,p)))break;a=a[p]}return v||++s!=l?v:(l=a==null?0:a.length,!!l&&o(l)&&n(p,l)&&(e(a)||r(a)))}return hn=u,hn}var yn,Lu;function If(){if(Lu)return yn;Lu=1;var t=Tf(),r=Uf();function e(n,o){return n!=null&&r(n,o,t)}return yn=e,yn}var dn,Ru;function zf(){if(Ru)return dn;Ru=1;var t=Hf(),r=If();function e(n,o){return t(n,o,function(i,u){return r(n,u)})}return dn=e,dn}var gn,Bu;function Lf(){if(Bu)return gn;Bu=1;var t=zf(),r=ha(),e=r(function(n,o){return n==null?{}:t(n,o)});return gn=e,gn}var Rf=Lf();const Bf=Q(Rf);var bn,$u;function $f(){if($u)return bn;$u=1;var t=ca(),r=1,e=4;function n(o,i){return i=typeof i=="function"?i:void 0,t(o,r|e,i)}return bn=n,bn}var Mf=$f();const Vf=Q(Mf);var Df=I();const Ff=Q(Df),ft=t=>Vf(t,r=>{if(Ff(r)&&r.nodeType!==void 0||T.isValidElement(r))return r});class qf{emitCustomEvent;constructor(r){this.emitCustomEvent=r?.emitCustomEvent}listeners={};on(r,e){return this.listeners[r]=this.listeners[r]||[],this.listeners[r].push(e),()=>this.off(r,e)}off(r,e){const n=this.listeners[r];if(n){const o=n.indexOf(e);o>-1&&n.splice(o,1)}}emit(r,e){const n=this.listeners[r];n&&n.forEach(o=>o(e)),this.emitCustomEvent&&window.dispatchEvent(new CustomEvent(r,{detail:e}))}}const Nf={PAGE_VIEW:"page_view"};class Gf{sendEvent(r){const e={...r,params:{page_title:document.title,...r.params}};if(!window.JSBridge){console.log("Logging event",e);return}return window.JSBridge.call("logAppEvent",e)}}const Wf=new Gf;function Mu(t){if(!t||typeof t!="object")return"";const r=encodeURIComponent;return"?"+Object.entries(t).filter(([e,n])=>n!=null).map(([e,n])=>Array.isArray(n)?n.map(o=>`${r(e)}=${r(String(o))}`).join("&"):`${r(e)}=${r(String(n))}`).join("&")}const L=new qf({emitCustomEvent:!0}),Jf=t=>{L.emit("afterInit",t)},Vu=t=>{L.emit("beforeHistoryChange",t),L.emit("beforeHistoryChangeP2",t)},Du=t=>{L.emit("afterHistoryChange",t),L.emit("afterHistoryChangeP2",t)},Fu=t=>{L.emit("beforeNavigate",t)},qu=t=>{L.emit("afterNavigate",t);const r=t.history.location.pathname,e=t.history.location.params;window.JSBridge?.call?.("navigateTo",{pagePath:r,params:e})},tt=Fa((t,r)=>{const e=(o,i)=>{const{config:u,appState:a,pageStates:c,histories:f}=r();if(typeof o=="string"){const s=i,l=u.pages.find(P=>P.pathname===o),v=[...f];s?.replace&&v.pop();const p={action:s?.replace?"REPLACE":"PUSH",location:{key:_n(),pathname:o,params:s?.params,state:s?.state}};v.push(p);const h=ut({},ft(mn(l)),ft(mn(s))),g={...c,[p.location.key]:h},b=()=>{const P=st(v),x=vt(p.location);s?.replace?window.history.replaceState(P,"",x):window.history.pushState(P,"",x),Fu({history:f[f.length-1],histories:f,nextHistory:v[v.length-1],nextHistories:v,to:o,options:{params:i?.params,state:i?.state,replace:i?.replace}}),Vu({history:f[f.length-1],histories:f,nextHistory:v[v.length-1],nextHistories:v}),t({histories:v,pageStates:g}),qu({history:v[v.length-1],histories:v,prevHistory:f[f.length-1],prevHistories:f,to:o,options:{params:i?.params,state:i?.state,replace:i?.replace}}),Du({history:v[v.length-1],histories:v,prevHistory:f[f.length-1],prevHistories:f})},_=ut({},a.animation,h.animation),d=u.animation?.mode||"view-transition";_.type&&_.type!=="none"&&!On?(ct(_.type,s?.replace?"REPLACE":"PUSH"),d==="view-transition"&&document.startViewTransition?document.startViewTransition(()=>b()):b()):(ct("none",s?.replace?"REPLACE":"PUSH"),b())}else if(typeof o=="number"){const s=i,l=f[f.length-1],v=ut({},c,{[l.location.key]:s?.animation?{animation:o>0?"none":s.animation}:{}});t({pageStates:v}),window.history.go(o)}},n=o=>{const{histories:i,config:u,pageStates:a,appState:c}=r(),f=o.state||{},s=f.locations.length<i.length,l={},v=f.locations.map(w=>(l[w.key]=a[w.key]||ft(mn(wn(u.pages,w.pathname))),i.find(S=>S.location.key===w.key)||{action:"PUSH",location:w}));s&&(v[v.length-1]={...v[v.length-1],action:"POP"});const p=i[i.length-1].location,h=p.key,g=p.pathname,b=s?u.pages.find(w=>w.pathname===g):{},_=s?a[h]?.animation||b:{},d=s?c.animation:{},P=ut({},d,_);Fu({history:i[i.length-1],histories:i,nextHistory:v[v.length-1],nextHistories:v,to:v.length-i.length}),Vu({history:i[i.length-1],histories:i,nextHistory:v[v.length-1],nextHistories:v});const x=u.animation?.mode||"view-transition";P.type&&P.type!=="none"&&!On?(ct(P.type,s?"POP":"PUSH"),x==="view-transition"&&document.startViewTransition?document.startViewTransition(()=>t({histories:v,pageStates:l})):t({histories:v,pageStates:l})):(ct("none",s?"POP":"PUSH"),t({histories:v,pageStates:l})),qu({history:v[v.length-1],histories:v,prevHistory:i[i.length-1],prevHistories:i,to:v.length-i.length}),Du({history:v[v.length-1],histories:v,prevHistory:i[i.length-1],prevHistories:i})};return{config:{pages:[]},initialized:!1,appState:{},pageStates:{},histories:[],init:o=>{const i=Na(o),u={};i.forEach(f=>{const s=wn(o.pages,f.location.pathname);s&&(u[f.location.key]=ft(s))});const a=gf(o,["pages"]);t({config:o,pageStates:u,appState:a,histories:i,initialized:!0}),window.addEventListener("popstate",n);const c=r();return Jf({history:c.histories[c.histories.length-1],histories:c.histories}),()=>{window.removeEventListener("popstate",n)}},navigate:e}});let On=!1;kf(t=>{On=t});const mn=t=>t&&Bf(t,["animation","navigationBar","bottomTabBar","keepAlive","pageLayout"]);let jn=null;tt.subscribe(async(t,r)=>{if(!t.histories.length)return;const e=t.histories[t.histories.length-1].location,n=e.pathname;t.histories!==r.histories&&(document.title=t.config.pages.find(o=>o.pathname===n)?.title||await new Promise(o=>setTimeout(()=>o(document.querySelector(".vsf-navigation-bar__title")?.textContent||""),100))||document.title),n!==r.histories[r.histories.length-1]?.location.pathname&&setTimeout(()=>{Wf.sendEvent({event:Nf.PAGE_VIEW,params:{page_path:e.pathname,app_query:Mu(e.params),is_first_page_in_session:!jn,referrer_page:jn}}),jn=Mu({...e.params,[G]:e.pathname})},100)});const ba=t=>{const r=t.detail,e=r?.pagePath,n=r?.params,o=r?.replace,i=r?.animation;typeof e>"u"||e===null||tt.getState().navigate(e,{params:n,replace:o,...i?{animation:{type:i}}:{}})};window.addEventListener("onPageChange",ba);window.addEventListener("onPageChanged",ba);class rs extends Da.Component{constructor(r){super(r),this.state={hasError:!1,error:null}}static getDerivedStateFromError(r){return{hasError:!0,error:r}}render(){if(this.state.hasError){const r=this.props.Component;return r?Et.jsx(r,{}):Et.jsx("div",{style:{padding:16,paddingTop:"calc(16px + var(--safe-area-inset-top, 0px))"},children:Et.jsx("h2",{children:"Oops - Page Error"})})}return this.props.children}}const Yf=t=>t.histories[t.histories.length-1],Zf=t=>r=>{if(t)return r.histories.find(e=>e.location.key===t)},Qf=T.createContext({locationKey:null}),yt=Object.fromEntries(tt.getState().histories.map(t=>[t.location.key,t]));tt.subscribe((t,r)=>{if(t.histories!==r.histories){const e=new Set;t.histories.forEach(n=>{yt[n.location.key]=n,e.add(n.location.key)}),setTimeout(()=>{e.forEach(n=>{yt[n]||delete yt[n]})},ga+500)}});const ma=()=>{const{locationKey:t}=T.useContext(Qf);return tt(r=>t&&(Zf(t)(r)||yt[t])||Yf(r))},es=t=>{const r=ma().location.key,[e,n]=T.useState(!1),o=T.useRef(t);return o.current=t,T.useEffect(()=>L.on("beforeHistoryChange",({history:i,nextHistory:u})=>{i.location.key===r&&u.location.key!==r?(n(!0),o.current?.()):n(!1)}),[r]),e},ns=t=>{const r=ma().location.key,[e,n]=T.useState(!0),o=T.useRef(t);return o.current=t,T.useEffect(()=>L.on("beforeHistoryChangeP2",({history:i,nextHistory:u})=>{i.location.key!==r&&u.location.key===r?(n(!0),o.current?.()):n(!1)}),[r]),T.useEffect(()=>{o.current?.()},[]),e};class Kf{isUsingApp=!1;isUsingRouter=!1}const os=new Kf;export{es as I,os as a,ns as j};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import{r as D,j as e}from"./iframe-Crg_lbde.js";import{T as B,S as E,a as A,P as w,b as L}from"./blocks-CB7UwFa4.js";import{c as _,g as F}from"./classname-Bl5epEs-.js";import{I as W}from"./image-CB4oeTy-.js";import{T as k}from"./typography-CMIMyivt.js";import{t as a}from"./store-BwIebEt6.js";import"./preload-helper-PPVm8Dsz.js";import"./index-CdnALcTP.js";import"./index-B-Ksafg0.js";import"./icon-Cc9W858e.js";import"./colors-_6nFGM3e.js";const t=F("avatar"),r=({size:s=40,shape:l="rounded",border:x,label:z,labelColor:I,labelSize:N,color:q,style:C,className:$,src:h,srcSet:f,...T})=>{const[J,j]=D.useState(!1),S=V(s),g=!J&&(!!h||!!f);return D.useEffect(()=>{j(!1)},[h,f]),e.jsxs("div",{className:_(t,`${t}--${l}`,{[`${t}--show-image`]:g},$),style:{...C,width:s,height:s},children:[!!x&&e.jsx("div",{className:`${t}__border ${t}__border--${S.borderSize} ${t}--${l}`}),g&&e.jsx(W,{...T,onError:()=>j(!0),width:s,height:s,src:h}),!!z&&!g&&e.jsx(k,{size:N||S.labelSize,color:I||"global-dynamic-red-dynamic-red-60",weight:600,children:z})]})},y=[[112,{labelSize:"4x-large",borderSize:2}],[80,{labelSize:"2x-large",borderSize:2}],[56,{labelSize:"large",borderSize:2}],[48,{labelSize:"base",borderSize:1}],[40,{labelSize:"small",borderSize:1}],[32,{labelSize:"x-small",borderSize:1}],[24,{labelSize:"2x-small",borderSize:1}],[0,{labelSize:"3x-small",borderSize:1}]],V=s=>{for(const[l,x]of y)if(s>=l)return x;return y[y.length-1][1]};r.__docgenInfo={description:"",methods:[],displayName:"Avatar",props:{size:{defaultValue:{value:"40",computed:!1},required:!1},shape:{defaultValue:{value:"'rounded'",computed:!1},required:!1}}};const P=()=>{const s=`
|
|
2
|
+
## ${a("common.table.title")}
|
|
3
|
+
|
|
4
|
+
| ${a("common.table.name")} | ${a("common.table.type")} | ${a("common.table.required")} | ${a("common.table.description")} |
|
|
5
|
+
| :--- | :--- | :--- | :--- |
|
|
6
|
+
| \`size\` | \`number\` | No | ${a("components.avatar.sizeDescription")} |
|
|
7
|
+
| \`shape\` | \`'circle' \\| 'rounded'\` | No | ${a("components.avatar.shapeDescription")} |
|
|
8
|
+
| \`border\` | \`boolean\` | No | ${a("components.avatar.borderDescription")} |
|
|
9
|
+
| \`label\` | \`string\` | No | ${a("components.avatar.labelDescription")} |
|
|
10
|
+
| \`labelColor\` | \`IColor\` | No | ${a("components.avatar.labelColorDescription")} |
|
|
11
|
+
| \`labelSize\` | \`ITypographySize\` | No | ${a("components.avatar.labelSizeDescription")} |
|
|
12
|
+
| \`color\` | \`IColor\` | No | ${a("components.avatar.colorDescription")} |
|
|
13
|
+
| \`src\` | \`string\` | No | ${a("components.avatar.srcDescription")} |
|
|
14
|
+
| \`srcSet\` | \`string\` | No | ${a("components.avatar.srcSetDescription",{defaultValue:"A set of image sources for responsive images."})} |
|
|
15
|
+
| \`className\` | \`string\` | No | ${a("components.avatar.classNameDescription")} |
|
|
16
|
+
| \`...props\` | \`ComponentProps<'img'>\` | No | ${a("components.avatar.propsDescription")} |
|
|
17
|
+
`;return e.jsxs(e.Fragment,{children:[e.jsx(B,{}),e.jsx(E,{}),e.jsx(A,{children:a("components.avatar.description")}),e.jsx(w,{}),e.jsx(A,{children:s}),e.jsx(L,{})]})},ee={title:"Components/Avatar",component:r,parameters:{layout:"padded",docs:{page:P}},tags:["autodocs"],argTypes:{size:{control:{type:"number",min:20,max:200,step:4},description:a("components.avatar.argTypes.sizeDescription"),table:{type:{summary:"number"},defaultValue:{summary:"40"}}},shape:{control:"select",options:["circle","rounded"],description:a("components.avatar.argTypes.shapeDescription"),table:{type:{summary:"IAvatarShape"},defaultValue:{summary:"rounded"}}},border:{control:"boolean",description:a("components.avatar.argTypes.borderDescription"),table:{type:{summary:"boolean"}}},label:{control:"text",description:a("components.avatar.argTypes.labelDescription"),table:{type:{summary:"string"}}},labelColor:{control:"text",description:a("components.avatar.argTypes.labelColorDescription"),table:{type:{summary:"IColor"}}},labelSize:{control:"select",options:["inherit","5x-large","4x-large","3x-large","2x-large","x-large","large","base","small","x-small","2x-small","3x-small"],description:"The size of the label text. Automatically determined based on avatar size if not specified.",table:{type:{summary:"ITypographySize"}}},color:{control:"text",description:a("components.avatar.argTypes.colorDescription"),table:{type:{summary:"IColor"}}},src:{control:"text",description:a("components.avatar.argTypes.srcDescription"),table:{type:{summary:"string"}}}}},o={storyName:a("components.avatar.stories.default.title"),args:{label:"JD",size:40}},i={render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{label:"JD",size:40}),e.jsx(r,{label:"AB",size:48}),e.jsx(r,{label:"CD",size:56}),e.jsx(r,{label:"EF",size:80})]})},c={storyName:a("components.avatar.stories.shapes.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{label:"JD",size:80,shape:"rounded"}),e.jsx(r,{label:"JD",size:80,shape:"circle"})]})},p={storyName:a("components.avatar.stories.sizes.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{label:"24",size:24}),e.jsx(r,{label:"32",size:32}),e.jsx(r,{label:"40",size:40}),e.jsx(r,{label:"48",size:48}),e.jsx(r,{label:"56",size:56}),e.jsx(r,{label:"80",size:80}),e.jsx(r,{label:"112",size:112})]})},n={storyName:a("components.avatar.stories.withBorder.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{label:"JD",size:80,shape:"circle",border:!0}),e.jsx(r,{label:"AB",size:80,shape:"rounded",border:!0}),e.jsx(r,{label:"CD",size:56,shape:"circle",border:!0}),e.jsx(r,{label:"EF",size:48,shape:"rounded",border:!0})]})},d={storyName:a("components.avatar.stories.withImage.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{src:"https://via.placeholder.com/40",size:40,shape:"rounded"}),e.jsx(r,{src:"https://via.placeholder.com/48",size:48,shape:"circle"}),e.jsx(r,{src:"https://via.placeholder.com/80",size:80,shape:"rounded",border:!0}),e.jsx(r,{src:"https://via.placeholder.com/112",size:112,shape:"circle",border:!0})]})},m={storyName:a("components.avatar.stories.customLabelStyling.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{label:"JD",size:80,shape:"circle",labelColor:"alias-object-primary",labelSize:"large"}),e.jsx(r,{label:"AB",size:80,shape:"rounded",labelColor:"alias-support-positive",labelSize:"x-large"}),e.jsx(r,{label:"CD",size:56,shape:"circle",labelColor:"alias-support-negative",labelSize:"base"})]})},b={storyName:a("components.avatar.stories.fallbackToLabel.title"),render:()=>e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{src:"https://invalid-url-that-will-fail.com/image.png",label:"JD",size:80,shape:"circle"}),e.jsx(r,{src:"",label:"AB",size:80,shape:"rounded"})]})},v={storyName:a("components.avatar.stories.completeExample.title"),render:()=>e.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"24px"},children:[e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{src:"https://via.placeholder.com/112",size:112,shape:"circle",border:!0}),e.jsx(r,{label:"JD",size:112,shape:"circle",border:!0,labelColor:"alias-object-primary"})]}),e.jsxs("div",{style:{display:"flex",gap:"16px",alignItems:"center"},children:[e.jsx(r,{src:"https://via.placeholder.com/80",size:80,shape:"rounded",border:!0}),e.jsx(r,{label:"AB",size:80,shape:"rounded",border:!0})]})]})},u={storyName:a("components.avatar.stories.interactive.title"),args:{label:"JD",size:40,shape:"rounded",border:!1}};o.parameters={...o.parameters,docs:{...o.parameters?.docs,source:{originalSource:`{
|
|
18
|
+
storyName: t('components.avatar.stories.default.title'),
|
|
19
|
+
args: {
|
|
20
|
+
label: 'JD',
|
|
21
|
+
size: 40
|
|
22
|
+
}
|
|
23
|
+
}`,...o.parameters?.docs?.source}}};i.parameters={...i.parameters,docs:{...i.parameters?.docs,source:{originalSource:`{
|
|
24
|
+
render: () => <div style={{
|
|
25
|
+
display: 'flex',
|
|
26
|
+
gap: '16px',
|
|
27
|
+
alignItems: 'center'
|
|
28
|
+
}}>
|
|
29
|
+
<Avatar label="JD" size={40} />
|
|
30
|
+
<Avatar label="AB" size={48} />
|
|
31
|
+
<Avatar label="CD" size={56} />
|
|
32
|
+
<Avatar label="EF" size={80} />
|
|
33
|
+
</div>
|
|
34
|
+
}`,...i.parameters?.docs?.source}}};c.parameters={...c.parameters,docs:{...c.parameters?.docs,source:{originalSource:`{
|
|
35
|
+
storyName: t('components.avatar.stories.shapes.title'),
|
|
36
|
+
render: () => <div style={{
|
|
37
|
+
display: 'flex',
|
|
38
|
+
gap: '16px',
|
|
39
|
+
alignItems: 'center'
|
|
40
|
+
}}>
|
|
41
|
+
<Avatar label="JD" size={80} shape="rounded" />
|
|
42
|
+
<Avatar label="JD" size={80} shape="circle" />
|
|
43
|
+
</div>
|
|
44
|
+
}`,...c.parameters?.docs?.source}}};p.parameters={...p.parameters,docs:{...p.parameters?.docs,source:{originalSource:`{
|
|
45
|
+
storyName: t('components.avatar.stories.sizes.title'),
|
|
46
|
+
render: () => <div style={{
|
|
47
|
+
display: 'flex',
|
|
48
|
+
gap: '16px',
|
|
49
|
+
alignItems: 'center'
|
|
50
|
+
}}>
|
|
51
|
+
<Avatar label="24" size={24} />
|
|
52
|
+
<Avatar label="32" size={32} />
|
|
53
|
+
<Avatar label="40" size={40} />
|
|
54
|
+
<Avatar label="48" size={48} />
|
|
55
|
+
<Avatar label="56" size={56} />
|
|
56
|
+
<Avatar label="80" size={80} />
|
|
57
|
+
<Avatar label="112" size={112} />
|
|
58
|
+
</div>
|
|
59
|
+
}`,...p.parameters?.docs?.source}}};n.parameters={...n.parameters,docs:{...n.parameters?.docs,source:{originalSource:`{
|
|
60
|
+
storyName: t('components.avatar.stories.withBorder.title'),
|
|
61
|
+
render: () => <div style={{
|
|
62
|
+
display: 'flex',
|
|
63
|
+
gap: '16px',
|
|
64
|
+
alignItems: 'center'
|
|
65
|
+
}}>
|
|
66
|
+
<Avatar label="JD" size={80} shape="circle" border />
|
|
67
|
+
<Avatar label="AB" size={80} shape="rounded" border />
|
|
68
|
+
<Avatar label="CD" size={56} shape="circle" border />
|
|
69
|
+
<Avatar label="EF" size={48} shape="rounded" border />
|
|
70
|
+
</div>
|
|
71
|
+
}`,...n.parameters?.docs?.source}}};d.parameters={...d.parameters,docs:{...d.parameters?.docs,source:{originalSource:`{
|
|
72
|
+
storyName: t('components.avatar.stories.withImage.title'),
|
|
73
|
+
render: () => <div style={{
|
|
74
|
+
display: 'flex',
|
|
75
|
+
gap: '16px',
|
|
76
|
+
alignItems: 'center'
|
|
77
|
+
}}>
|
|
78
|
+
<Avatar src="https://via.placeholder.com/40" size={40} shape="rounded" />
|
|
79
|
+
<Avatar src="https://via.placeholder.com/48" size={48} shape="circle" />
|
|
80
|
+
<Avatar src="https://via.placeholder.com/80" size={80} shape="rounded" border />
|
|
81
|
+
<Avatar src="https://via.placeholder.com/112" size={112} shape="circle" border />
|
|
82
|
+
</div>
|
|
83
|
+
}`,...d.parameters?.docs?.source}}};m.parameters={...m.parameters,docs:{...m.parameters?.docs,source:{originalSource:`{
|
|
84
|
+
storyName: t('components.avatar.stories.customLabelStyling.title'),
|
|
85
|
+
render: () => <div style={{
|
|
86
|
+
display: 'flex',
|
|
87
|
+
gap: '16px',
|
|
88
|
+
alignItems: 'center'
|
|
89
|
+
}}>
|
|
90
|
+
<Avatar label="JD" size={80} shape="circle" labelColor="alias-object-primary" labelSize="large" />
|
|
91
|
+
<Avatar label="AB" size={80} shape="rounded" labelColor="alias-support-positive" labelSize="x-large" />
|
|
92
|
+
<Avatar label="CD" size={56} shape="circle" labelColor="alias-support-negative" labelSize="base" />
|
|
93
|
+
</div>
|
|
94
|
+
}`,...m.parameters?.docs?.source}}};b.parameters={...b.parameters,docs:{...b.parameters?.docs,source:{originalSource:`{
|
|
95
|
+
storyName: t('components.avatar.stories.fallbackToLabel.title'),
|
|
96
|
+
render: () => <div style={{
|
|
97
|
+
display: 'flex',
|
|
98
|
+
gap: '16px',
|
|
99
|
+
alignItems: 'center'
|
|
100
|
+
}}>
|
|
101
|
+
<Avatar src="https://invalid-url-that-will-fail.com/image.png" label="JD" size={80} shape="circle" />
|
|
102
|
+
<Avatar src="" label="AB" size={80} shape="rounded" />
|
|
103
|
+
</div>
|
|
104
|
+
}`,...b.parameters?.docs?.source}}};v.parameters={...v.parameters,docs:{...v.parameters?.docs,source:{originalSource:`{
|
|
105
|
+
storyName: t('components.avatar.stories.completeExample.title'),
|
|
106
|
+
render: () => <div style={{
|
|
107
|
+
display: 'flex',
|
|
108
|
+
flexDirection: 'column',
|
|
109
|
+
gap: '24px'
|
|
110
|
+
}}>
|
|
111
|
+
<div style={{
|
|
112
|
+
display: 'flex',
|
|
113
|
+
gap: '16px',
|
|
114
|
+
alignItems: 'center'
|
|
115
|
+
}}>
|
|
116
|
+
<Avatar src="https://via.placeholder.com/112" size={112} shape="circle" border />
|
|
117
|
+
<Avatar label="JD" size={112} shape="circle" border labelColor="alias-object-primary" />
|
|
118
|
+
</div>
|
|
119
|
+
<div style={{
|
|
120
|
+
display: 'flex',
|
|
121
|
+
gap: '16px',
|
|
122
|
+
alignItems: 'center'
|
|
123
|
+
}}>
|
|
124
|
+
<Avatar src="https://via.placeholder.com/80" size={80} shape="rounded" border />
|
|
125
|
+
<Avatar label="AB" size={80} shape="rounded" border />
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
}`,...v.parameters?.docs?.source}}};u.parameters={...u.parameters,docs:{...u.parameters?.docs,source:{originalSource:`{
|
|
129
|
+
storyName: t('components.avatar.stories.interactive.title'),
|
|
130
|
+
args: {
|
|
131
|
+
label: 'JD',
|
|
132
|
+
size: 40,
|
|
133
|
+
shape: 'rounded',
|
|
134
|
+
border: false
|
|
135
|
+
}
|
|
136
|
+
}`,...u.parameters?.docs?.source}}};const ae=["Default","WithLabel","Shapes","Sizes","WithBorder","WithImage","CustomLabelStyling","FallbackToLabel","CompleteExample","Interactive"];export{v as CompleteExample,m as CustomLabelStyling,o as Default,b as FallbackToLabel,u as Interactive,c as Shapes,p as Sizes,n as WithBorder,d as WithImage,i as WithLabel,ae as __namedExportsOrder,ee as default};
|