@pinnacle0/web-ui 0.3.35 → 0.3.36
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/config/jest-stubs/style-stub.js +13 -0
- package/config/jest.config.ts +57 -0
- package/config/tsconfig.script.json +12 -0
- package/config/tsconfig.src.json +15 -0
- package/config/tsconfig.test.json +20 -0
- package/package.json +1 -1
- package/script/build.ts +103 -0
- package/script/format.ts +7 -0
- package/script/start-mobile.ts +13 -0
- package/script/start.ts +31 -0
- package/{admin → src/admin}/AdminApp/Default/NavigatorSide/index.less +0 -0
- package/src/admin/AdminApp/Default/NavigatorSide/index.tsx +68 -0
- package/src/admin/AdminApp/Default/SoundSwitch.tsx +32 -0
- package/{admin → src/admin}/AdminApp/Default/SquareLogo/index.less +0 -0
- package/src/admin/AdminApp/Default/SquareLogo/index.tsx +32 -0
- package/src/admin/AdminApp/Menu.tsx +154 -0
- package/src/admin/AdminApp/Navigator.tsx +186 -0
- package/src/admin/AdminApp/NotFound.tsx +24 -0
- package/src/admin/AdminApp/RouteSwitch.tsx +61 -0
- package/src/admin/AdminApp/WithErrorBoundary.tsx +36 -0
- package/{admin → src/admin}/AdminApp/asset/alert.mp3 +0 -0
- package/src/admin/AdminApp/context.ts +13 -0
- package/{admin → src/admin}/AdminApp/index.less +0 -0
- package/src/admin/AdminApp/index.tsx +96 -0
- package/src/admin/AdminPage/Filter.tsx +76 -0
- package/src/admin/AdminPage/Result.tsx +41 -0
- package/src/admin/AdminPage/SaveBar.tsx +33 -0
- package/src/admin/AdminPage/Summary.tsx +15 -0
- package/src/admin/AdminPage/TopBar.tsx +15 -0
- package/{admin → src/admin}/AdminPage/index.less +0 -0
- package/src/admin/AdminPage/index.tsx +29 -0
- package/src/admin/AdminPermissionSelector.tsx +299 -0
- package/{admin → src/admin}/RichEditor/index.less +0 -0
- package/src/admin/RichEditor/index.tsx +123 -0
- package/src/core/Amount/AmountPercentage.tsx +27 -0
- package/{core → src/core}/Amount/index.less +0 -0
- package/src/core/Amount/index.tsx +71 -0
- package/src/core/AmountConditionInput.tsx +63 -0
- package/src/core/AmountRangeInput.tsx +66 -0
- package/src/core/AuthenticationCodeInput.tsx +85 -0
- package/src/core/AutoCompleteInput.tsx +16 -0
- package/{core → src/core}/Badge/index.less +0 -0
- package/src/core/Badge/index.tsx +15 -0
- package/src/core/BoolRadio.tsx +62 -0
- package/src/core/BoolSelect.tsx +50 -0
- package/src/core/BoolSwitch.tsx +37 -0
- package/{core → src/core}/Breadcrumb/index.less +0 -0
- package/src/core/Breadcrumb/index.tsx +46 -0
- package/{core → src/core}/Button/index.less +0 -0
- package/src/core/Button/index.tsx +59 -0
- package/src/core/Card.tsx +16 -0
- package/src/core/Carousel.tsx +19 -0
- package/{core → src/core}/Carousel3D/index.less +0 -0
- package/src/core/Carousel3D/index.tsx +150 -0
- package/src/core/Cascader/InitialNullable.tsx +20 -0
- package/src/core/Cascader/Nullable.tsx +28 -0
- package/{core → src/core}/Cascader/index.less +0 -0
- package/src/core/Cascader/index.tsx +93 -0
- package/{core → src/core}/Checkbox/index.less +0 -0
- package/src/core/Checkbox/index.tsx +24 -0
- package/src/core/Collapse.tsx +19 -0
- package/src/core/Countdown/SlidingDigit.tsx +39 -0
- package/{core → src/core}/Countdown/index.less +0 -0
- package/src/core/Countdown/index.tsx +125 -0
- package/{core → src/core}/DarkOverlay/index.less +0 -0
- package/src/core/DarkOverlay/index.tsx +24 -0
- package/src/core/DateCalendar.tsx +106 -0
- package/{core → src/core}/DatePicker/index.less +0 -0
- package/src/core/DatePicker/index.tsx +54 -0
- package/{core → src/core}/DateRangePicker/index.less +0 -0
- package/src/core/DateRangePicker/index.tsx +58 -0
- package/{core → src/core}/DateTimePicker/index.less +0 -0
- package/src/core/DateTimePicker/index.tsx +61 -0
- package/{core → src/core}/DateTimeRangePicker/index.less +0 -0
- package/src/core/DateTimeRangePicker/index.tsx +60 -0
- package/{core → src/core}/Descriptions/index.less +0 -0
- package/src/core/Descriptions/index.tsx +45 -0
- package/src/core/DocumentTitle.tsx +58 -0
- package/src/core/Drawer.tsx +14 -0
- package/src/core/Dropdown.tsx +10 -0
- package/src/core/EnumCheckboxGroup/Map.tsx +21 -0
- package/src/core/EnumCheckboxGroup/index.tsx +23 -0
- package/src/core/EnumRadio/InitialNullable.tsx +24 -0
- package/src/core/EnumRadio/Map.tsx +21 -0
- package/src/core/EnumRadio/Nullable.tsx +31 -0
- package/src/core/EnumRadio/index.tsx +45 -0
- package/src/core/EnumSelect/InitialNullable.tsx +20 -0
- package/src/core/EnumSelect/Map.tsx +21 -0
- package/src/core/EnumSelect/Nullable.tsx +31 -0
- package/{core → src/core}/EnumSelect/index.less +0 -0
- package/src/core/EnumSelect/index.tsx +74 -0
- package/src/core/FlatList/VirtualFlatList/Item.tsx +28 -0
- package/{core → src/core}/FlatList/VirtualFlatList/index.less +0 -0
- package/src/core/FlatList/VirtualFlatList/index.tsx +142 -0
- package/src/core/FlatList/VirtualFlatList/type.ts +26 -0
- package/src/core/FlatList/index.tsx +95 -0
- package/{core → src/core}/FlatList/shared/Footer/index.less +0 -0
- package/src/core/FlatList/shared/Footer/index.tsx +23 -0
- package/src/core/FlatList/shared/GetRowKey.ts +11 -0
- package/{core → src/core}/FlatList/shared/Spinner/index.less +0 -0
- package/src/core/FlatList/shared/Spinner/index.tsx +18 -0
- package/src/core/FlatList/shared/Wrapper/Loading.tsx +17 -0
- package/{core → src/core}/FlatList/shared/Wrapper/index.less +0 -0
- package/src/core/FlatList/shared/Wrapper/index.tsx +123 -0
- package/src/core/FlatList/shared/hooks/useBounceSwipe.ts +120 -0
- package/src/core/FlatList/shared/hooks/useElementScrollState.ts +43 -0
- package/src/core/FlatList/shared/hooks/useLoadingWithDelay.ts +40 -0
- package/src/core/FlatList/type.tsx +56 -0
- package/{core → src/core}/Foldable/index.less +0 -0
- package/src/core/Foldable/index.tsx +38 -0
- package/src/core/Form/Item.tsx +87 -0
- package/src/core/Form/context.ts +16 -0
- package/{core → src/core}/Form/index.less +0 -0
- package/src/core/Form/index.tsx +109 -0
- package/src/core/Grid.tsx +7 -0
- package/{core → src/core}/HTMLContent/index.less +0 -0
- package/src/core/HTMLContent/index.tsx +17 -0
- package/{core → src/core}/ImageUploader/index.less +0 -0
- package/src/core/ImageUploader/index.tsx +104 -0
- package/{core → src/core}/Input/index.less +0 -0
- package/src/core/Input/index.tsx +63 -0
- package/src/core/LabelledSelect.tsx +15 -0
- package/src/core/Link.tsx +57 -0
- package/src/core/LocalImporter.tsx +62 -0
- package/src/core/LocaleProvider.tsx +31 -0
- package/src/core/LocaleSelect.tsx +36 -0
- package/{core → src/core}/Markdown/index.less +0 -0
- package/src/core/Markdown/index.tsx +42 -0
- package/{core → src/core}/Modal/index.less +0 -0
- package/src/core/Modal/index.tsx +37 -0
- package/{core → src/core}/MultipleCascader/index.less +0 -0
- package/src/core/MultipleCascader/index.tsx +114 -0
- package/src/core/MultipleEnumSelect.tsx +28 -0
- package/src/core/MultipleSelector/TablePopover.tsx +62 -0
- package/src/core/MultipleSelector/index.tsx +106 -0
- package/{core → src/core}/MutableTable/index.less +0 -0
- package/src/core/MutableTable/index.tsx +151 -0
- package/src/core/NumberInput/NumberInputPercentage.tsx +103 -0
- package/{core → src/core}/NumberInput/index.less +0 -0
- package/src/core/NumberInput/index.tsx +192 -0
- package/src/core/NumberInput/util.ts +55 -0
- package/{core → src/core}/OverflowableText/index.less +0 -0
- package/src/core/OverflowableText/index.tsx +66 -0
- package/{core → src/core}/PagedList/index.less +0 -0
- package/src/core/PagedList/index.tsx +93 -0
- package/{core → src/core}/Pagination/index.less +0 -0
- package/src/core/Pagination/index.tsx +59 -0
- package/{core → src/core}/Popover/index.less +0 -0
- package/src/core/Popover/index.tsx +15 -0
- package/src/core/Progress.tsx +14 -0
- package/{core → src/core}/Radio/index.less +0 -0
- package/src/core/Radio/index.tsx +21 -0
- package/src/core/RelativeTime.tsx +59 -0
- package/src/core/ResizeObserver.tsx +2 -0
- package/src/core/SearchableSelect.tsx +17 -0
- package/{core → src/core}/Select/index.less +0 -0
- package/src/core/Select/index.tsx +25 -0
- package/src/core/SignedAmountInput.tsx +59 -0
- package/src/core/Skeleton.tsx +14 -0
- package/src/core/Slider/RangeSlider.tsx +17 -0
- package/{core → src/core}/Slider/index.less +0 -0
- package/src/core/Slider/index.tsx +50 -0
- package/src/core/Space.tsx +14 -0
- package/src/core/Spin.tsx +25 -0
- package/{core → src/core}/StepFormContainer/index.less +0 -0
- package/src/core/StepFormContainer/index.tsx +66 -0
- package/{core → src/core}/Steps/index.less +0 -0
- package/src/core/Steps/index.tsx +17 -0
- package/{core → src/core}/Table/index.less +0 -0
- package/src/core/Table/index.tsx +221 -0
- package/src/core/Tabs/Single.tsx +25 -0
- package/{core → src/core}/Tabs/index.less +0 -0
- package/src/core/Tabs/index.tsx +82 -0
- package/src/core/Tag.tsx +17 -0
- package/{core → src/core}/TagInput/index.less +0 -0
- package/src/core/TagInput/index.tsx +94 -0
- package/src/core/Tags.tsx +34 -0
- package/{core → src/core}/TimePicker/index.less +0 -0
- package/src/core/TimePicker/index.tsx +44 -0
- package/{core → src/core}/TimeRangePicker/index.less +0 -0
- package/src/core/TimeRangePicker/index.tsx +42 -0
- package/src/core/Tooltip.tsx +17 -0
- package/{core → src/core}/TypedTabs/index.less +0 -0
- package/src/core/TypedTabs/index.tsx +43 -0
- package/src/core/Uploader.tsx +118 -0
- package/{core → src/core}/VerticalMarquee/index.less +0 -0
- package/src/core/VerticalMarquee/index.tsx +51 -0
- package/src/core/VirtualTable/TableHeader.tsx +41 -0
- package/src/core/VirtualTable/TableRow.tsx +90 -0
- package/src/core/VirtualTable/hooks/useColumnWidths.ts +24 -0
- package/src/core/VirtualTable/hooks/useDebounce.ts +18 -0
- package/src/core/VirtualTable/hooks/useLayout.tsx +58 -0
- package/src/core/VirtualTable/hooks/useRowExpand.tsx +27 -0
- package/src/core/VirtualTable/hooks/useRowSelection.tsx +72 -0
- package/src/core/VirtualTable/hooks/useScrollBarSize.ts +23 -0
- package/src/core/VirtualTable/hooks/useScrollToEdge.ts +36 -0
- package/src/core/VirtualTable/hooks/useStickyPosition.ts +28 -0
- package/src/core/VirtualTable/hooks/useTransformColumn.ts +19 -0
- package/{core → src/core}/VirtualTable/index.less +0 -0
- package/src/core/VirtualTable/index.tsx +143 -0
- package/src/core/VirtualTable/type.ts +59 -0
- package/{core → src/core}/WithExplanation/index.less +0 -0
- package/src/core/WithExplanation/index.tsx +47 -0
- package/src/core/WithTooltipList.tsx +89 -0
- package/src/core/YearMonthSelector.tsx +53 -0
- package/{css → src/css}/global.less +0 -0
- package/{css → src/css}/variable.less +0 -0
- package/src/hooks/useOrientationMode.ts +18 -0
- package/src/hooks/useSwipe/controller.ts +133 -0
- package/src/hooks/useSwipe/index.ts +11 -0
- package/src/hooks/useSwipe/type.ts +45 -0
- package/src/hooks/useTransform.ts +78 -0
- package/src/internal/ArrayUtil.ts +53 -0
- package/src/internal/ExpirableLocalStorage.ts +262 -0
- package/src/internal/Memo.ts +28 -0
- package/src/internal/NumberUtil.ts +38 -0
- package/src/internal/StorageHelper.ts +152 -0
- package/src/internal/TextUtil.ts +11 -0
- package/src/internal/i18n/admin/en.ts +18 -0
- package/src/internal/i18n/admin/index.ts +13 -0
- package/src/internal/i18n/admin/zh.ts +18 -0
- package/src/internal/i18n/core/en.ts +37 -0
- package/src/internal/i18n/core/index.ts +13 -0
- package/src/internal/i18n/core/zh.ts +37 -0
- package/src/internal/i18n/util/en.ts +9 -0
- package/src/internal/i18n/util/index.ts +13 -0
- package/src/internal/i18n/util/zh.ts +9 -0
- package/src/internal/type.ts +12 -0
- package/src/util/AdminNavigatorBase.ts +99 -0
- package/src/util/BrowserBookmarkUtil.ts +24 -0
- package/src/util/BrowserUtil.ts +122 -0
- package/src/util/CanvasUtil.ts +61 -0
- package/src/util/ClassNames.ts +2 -0
- package/src/util/Clipboard.ts +61 -0
- package/src/util/ExpirableLocalStorageUtil.ts +3 -0
- package/src/util/ExportUtil.ts +34 -0
- package/src/util/ImportUtil.ts +41 -0
- package/src/util/LocalStorageUtil.ts +3 -0
- package/src/util/LocaleUtil.ts +47 -0
- package/{util → src/util}/MediaUtil/index.less +0 -0
- package/src/util/MediaUtil/index.tsx +69 -0
- package/{util → src/util}/MessageUtil/index.less +0 -0
- package/src/util/MessageUtil/index.tsx +23 -0
- package/{util → src/util}/ModalUtil/index.less +0 -0
- package/src/util/ModalUtil/index.tsx +179 -0
- package/src/util/NotificationUtil.tsx +42 -0
- package/src/util/OrientationUtil.ts +51 -0
- package/src/util/PromptUtil/PromptBody.tsx +62 -0
- package/{util → src/util}/PromptUtil/index.less +0 -0
- package/src/util/PromptUtil/index.tsx +50 -0
- package/src/util/RecentUsedStorageUtil.ts +46 -0
- package/src/util/SessionStorageUtil.ts +3 -0
- package/src/util/SwipeUtil.ts +25 -0
- package/src/util/UploadUtil/index.ts +73 -0
- package/src/util/UploadUtil/type.ts +46 -0
- package/test/mobile-ui-test/package.json +5 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/fetch.ts +18 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/index.less +22 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/index.tsx +149 -0
- package/test/mobile-ui-test/src/component/Main.tsx +6 -0
- package/test/mobile-ui-test/src/index.html +12 -0
- package/test/mobile-ui-test/src/index.less +18 -0
- package/test/mobile-ui-test/src/index.tsx +6 -0
- package/test/mobile-ui-test/static/robots.txt +2 -0
- package/test/mobile-ui-test/tsconfig.json +4 -0
- package/test/ui-test/package.json +5 -0
- package/test/ui-test/src/asset/logo.png +0 -0
- package/test/ui-test/src/component/DemoHelper/index.less +33 -0
- package/test/ui-test/src/component/DemoHelper/index.tsx +55 -0
- package/test/ui-test/src/component/Main.tsx +33 -0
- package/test/ui-test/src/component/WebUILogo.tsx +7 -0
- package/test/ui-test/src/component/WebUINavigatorSide.tsx +20 -0
- package/test/ui-test/src/component/admin/ConfigPageDemo.tsx +39 -0
- package/test/ui-test/src/component/admin/NavigationHistoryDemo.tsx +30 -0
- package/test/ui-test/src/component/admin/PermissionSelectorDemo.tsx +65 -0
- package/test/ui-test/src/component/admin/RenderErrorDemo.tsx +5 -0
- package/test/ui-test/src/component/admin/ResultPageDemo.tsx +13 -0
- package/test/ui-test/src/component/admin/RichEditorDemo.tsx +20 -0
- package/test/ui-test/src/component/admin/SeparateTabDetailDemo.tsx +44 -0
- package/test/ui-test/src/component/admin/TablePageDemo.tsx +85 -0
- package/test/ui-test/src/component/core/AmountDemo.tsx +117 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/__snapshots__/dom-snapshot.test.tsx.snap +12 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/dom-snapshot.test.tsx +10 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/smoke.test.tsx +71 -0
- package/test/ui-test/src/component/core/ButtonDemo/index.tsx +39 -0
- package/test/ui-test/src/component/core/CalendarDemo.tsx +98 -0
- package/test/ui-test/src/component/core/CarouselDemo/index.tsx +51 -0
- package/test/ui-test/src/component/core/CascaderDemo/index.tsx +120 -0
- package/test/ui-test/src/component/core/FoldableDemo.tsx +31 -0
- package/test/ui-test/src/component/core/FormDemo.tsx +204 -0
- package/test/ui-test/src/component/core/InputDemo/index.tsx +123 -0
- package/test/ui-test/src/component/core/MiscellaneousDemo/TagInputDemo.tsx +8 -0
- package/test/ui-test/src/component/core/MiscellaneousDemo/index.tsx +157 -0
- package/test/ui-test/src/component/core/ModalDemo/index.tsx +75 -0
- package/test/ui-test/src/component/core/OverflowableTextDemo.tsx +78 -0
- package/test/ui-test/src/component/core/RelativeTimeDemo.tsx +35 -0
- package/test/ui-test/src/component/core/SelectDemo/index.tsx +141 -0
- package/test/ui-test/src/component/core/SliderDemo.tsx +44 -0
- package/test/ui-test/src/component/core/StepContainerDemo.tsx +53 -0
- package/test/ui-test/src/component/core/TableDemo.tsx +81 -0
- package/test/ui-test/src/component/core/TabsDemo.tsx +136 -0
- package/test/ui-test/src/component/core/UploaderImporterDemo.tsx +52 -0
- package/test/ui-test/src/component/core/VirtualTableDemo.tsx +232 -0
- package/test/ui-test/src/dummy/dummyCallback.ts +13 -0
- package/test/ui-test/src/dummy/dummyList.ts +63 -0
- package/test/ui-test/src/dummy/dummyTableData.tsx +60 -0
- package/test/ui-test/src/dummy/dummyUpload.tsx +43 -0
- package/test/ui-test/src/index.html +11 -0
- package/test/ui-test/src/index.tsx +5 -0
- package/test/ui-test/src/type.ts +8 -0
- package/test/ui-test/src/util/NavigationService.tsx +217 -0
- package/test/ui-test/src/util/withUncontrolledInitialValue.tsx +14 -0
- package/test/ui-test/static/robots.txt +2 -0
- package/test/ui-test/tsconfig.json +3 -0
- package/test/unit-test/ClassNames.test.ts +17 -0
- package/test/unit-test/ExpirableLocalStorageUtil.test.ts +42 -0
- package/test/unit-test/NumberInput.util.test.ts +344 -0
- package/test/unit-test/NumberUtil.test.ts +57 -0
- package/test/unit-test/TextUtil.test.ts +10 -0
- package/tsconfig.json +15 -0
- package/admin/AdminApp/Default/NavigatorSide/index.d.ts +0 -20
- package/admin/AdminApp/Default/NavigatorSide/index.js +0 -74
- package/admin/AdminApp/Default/NavigatorSide/index.js.map +0 -1
- package/admin/AdminApp/Default/SoundSwitch.d.ts +0 -14
- package/admin/AdminApp/Default/SoundSwitch.js +0 -41
- package/admin/AdminApp/Default/SoundSwitch.js.map +0 -1
- package/admin/AdminApp/Default/SquareLogo/index.d.ts +0 -15
- package/admin/AdminApp/Default/SquareLogo/index.js +0 -39
- package/admin/AdminApp/Default/SquareLogo/index.js.map +0 -1
- package/admin/AdminApp/Menu.d.ts +0 -52
- package/admin/AdminApp/Menu.js +0 -174
- package/admin/AdminApp/Menu.js.map +0 -1
- package/admin/AdminApp/Navigator.d.ts +0 -30
- package/admin/AdminApp/Navigator.js +0 -200
- package/admin/AdminApp/Navigator.js.map +0 -1
- package/admin/AdminApp/NotFound.d.ts +0 -10
- package/admin/AdminApp/NotFound.js +0 -37
- package/admin/AdminApp/NotFound.js.map +0 -1
- package/admin/AdminApp/RouteSwitch.d.ts +0 -19
- package/admin/AdminApp/RouteSwitch.js +0 -64
- package/admin/AdminApp/RouteSwitch.js.map +0 -1
- package/admin/AdminApp/WithErrorBoundary.d.ts +0 -15
- package/admin/AdminApp/WithErrorBoundary.js +0 -39
- package/admin/AdminApp/WithErrorBoundary.js.map +0 -1
- package/admin/AdminApp/context.d.ts +0 -7
- package/admin/AdminApp/context.js +0 -7
- package/admin/AdminApp/context.js.map +0 -1
- package/admin/AdminApp/index.d.ts +0 -39
- package/admin/AdminApp/index.js +0 -76
- package/admin/AdminApp/index.js.map +0 -1
- package/admin/AdminPage/Filter.d.ts +0 -23
- package/admin/AdminPage/Filter.js +0 -60
- package/admin/AdminPage/Filter.js.map +0 -1
- package/admin/AdminPage/Result.d.ts +0 -19
- package/admin/AdminPage/Result.js +0 -43
- package/admin/AdminPage/Result.js.map +0 -1
- package/admin/AdminPage/SaveBar.d.ts +0 -10
- package/admin/AdminPage/SaveBar.js +0 -37
- package/admin/AdminPage/SaveBar.js.map +0 -1
- package/admin/AdminPage/Summary.d.ts +0 -9
- package/admin/AdminPage/Summary.js +0 -30
- package/admin/AdminPage/Summary.js.map +0 -1
- package/admin/AdminPage/TopBar.d.ts +0 -9
- package/admin/AdminPage/TopBar.js +0 -30
- package/admin/AdminPage/TopBar.js.map +0 -1
- package/admin/AdminPage/index.d.ts +0 -21
- package/admin/AdminPage/index.js +0 -42
- package/admin/AdminPage/index.js.map +0 -1
- package/admin/AdminPermissionSelector.d.ts +0 -45
- package/admin/AdminPermissionSelector.js +0 -213
- package/admin/AdminPermissionSelector.js.map +0 -1
- package/admin/RichEditor/index.d.ts +0 -34
- package/admin/RichEditor/index.js +0 -104
- package/admin/RichEditor/index.js.map +0 -1
- package/core/Amount/AmountPercentage.d.ts +0 -19
- package/core/Amount/AmountPercentage.js +0 -54
- package/core/Amount/AmountPercentage.js.map +0 -1
- package/core/Amount/index.d.ts +0 -26
- package/core/Amount/index.js +0 -65
- package/core/Amount/index.js.map +0 -1
- package/core/AmountConditionInput.d.ts +0 -28
- package/core/AmountConditionInput.js +0 -66
- package/core/AmountConditionInput.js.map +0 -1
- package/core/AmountRangeInput.d.ts +0 -23
- package/core/AmountRangeInput.js +0 -59
- package/core/AmountRangeInput.js.map +0 -1
- package/core/AuthenticationCodeInput.d.ts +0 -25
- package/core/AuthenticationCodeInput.js +0 -149
- package/core/AuthenticationCodeInput.js.map +0 -1
- package/core/AutoCompleteInput.d.ts +0 -10
- package/core/AutoCompleteInput.js +0 -43
- package/core/AutoCompleteInput.js.map +0 -1
- package/core/Badge/index.d.ts +0 -10
- package/core/Badge/index.js +0 -43
- package/core/Badge/index.js.map +0 -1
- package/core/BoolRadio.d.ts +0 -20
- package/core/BoolRadio.js +0 -49
- package/core/BoolRadio.js.map +0 -1
- package/core/BoolSelect.d.ts +0 -19
- package/core/BoolSelect.js +0 -48
- package/core/BoolSelect.js.map +0 -1
- package/core/BoolSwitch.d.ts +0 -17
- package/core/BoolSwitch.js +0 -56
- package/core/BoolSwitch.js.map +0 -1
- package/core/Breadcrumb/index.d.ts +0 -17
- package/core/Breadcrumb/index.js +0 -45
- package/core/Breadcrumb/index.js.map +0 -1
- package/core/Button/index.d.ts +0 -37
- package/core/Button/index.js +0 -60
- package/core/Button/index.js.map +0 -1
- package/core/Card.d.ts +0 -10
- package/core/Card.js +0 -43
- package/core/Card.js.map +0 -1
- package/core/Carousel.d.ts +0 -11
- package/core/Carousel.js +0 -54
- package/core/Carousel.js.map +0 -1
- package/core/Carousel3D/index.d.ts +0 -27
- package/core/Carousel3D/index.js +0 -116
- package/core/Carousel3D/index.js.map +0 -1
- package/core/Cascader/InitialNullable.d.ts +0 -10
- package/core/Cascader/InitialNullable.js +0 -54
- package/core/Cascader/InitialNullable.js.map +0 -1
- package/core/Cascader/Nullable.d.ts +0 -12
- package/core/Cascader/Nullable.js +0 -86
- package/core/Cascader/Nullable.js.map +0 -1
- package/core/Cascader/index.d.ts +0 -37
- package/core/Cascader/index.js +0 -117
- package/core/Cascader/index.js.map +0 -1
- package/core/Checkbox/index.d.ts +0 -15
- package/core/Checkbox/index.js +0 -47
- package/core/Checkbox/index.js.map +0 -1
- package/core/Collapse.d.ts +0 -12
- package/core/Collapse.js +0 -43
- package/core/Collapse.js.map +0 -1
- package/core/Countdown/SlidingDigit.d.ts +0 -15
- package/core/Countdown/SlidingDigit.js +0 -43
- package/core/Countdown/SlidingDigit.js.map +0 -1
- package/core/Countdown/index.d.ts +0 -39
- package/core/Countdown/index.js +0 -106
- package/core/Countdown/index.js.map +0 -1
- package/core/DarkOverlay/index.d.ts +0 -12
- package/core/DarkOverlay/index.js +0 -32
- package/core/DarkOverlay/index.js.map +0 -1
- package/core/DateCalendar.d.ts +0 -18
- package/core/DateCalendar.js +0 -85
- package/core/DateCalendar.js.map +0 -1
- package/core/DatePicker/index.d.ts +0 -18
- package/core/DatePicker/index.js +0 -53
- package/core/DatePicker/index.js.map +0 -1
- package/core/DateRangePicker/index.d.ts +0 -18
- package/core/DateRangePicker/index.js +0 -59
- package/core/DateRangePicker/index.js.map +0 -1
- package/core/DateTimePicker/index.d.ts +0 -19
- package/core/DateTimePicker/index.js +0 -59
- package/core/DateTimePicker/index.js.map +0 -1
- package/core/DateTimeRangePicker/index.d.ts +0 -20
- package/core/DateTimeRangePicker/index.js +0 -59
- package/core/DateTimeRangePicker/index.js.map +0 -1
- package/core/Descriptions/index.d.ts +0 -27
- package/core/Descriptions/index.js +0 -51
- package/core/Descriptions/index.js.map +0 -1
- package/core/DocumentTitle.d.ts +0 -28
- package/core/DocumentTitle.js +0 -53
- package/core/DocumentTitle.js.map +0 -1
- package/core/Drawer.d.ts +0 -9
- package/core/Drawer.js +0 -41
- package/core/Drawer.js.map +0 -1
- package/core/Dropdown.d.ts +0 -9
- package/core/Dropdown.js +0 -10
- package/core/Dropdown.js.map +0 -1
- package/core/EnumCheckboxGroup/Map.d.ts +0 -10
- package/core/EnumCheckboxGroup/Map.js +0 -55
- package/core/EnumCheckboxGroup/Map.js.map +0 -1
- package/core/EnumCheckboxGroup/index.d.ts +0 -12
- package/core/EnumCheckboxGroup/index.js +0 -36
- package/core/EnumCheckboxGroup/index.js.map +0 -1
- package/core/EnumRadio/InitialNullable.d.ts +0 -11
- package/core/EnumRadio/InitialNullable.js +0 -56
- package/core/EnumRadio/InitialNullable.js.map +0 -1
- package/core/EnumRadio/Map.d.ts +0 -10
- package/core/EnumRadio/Map.js +0 -55
- package/core/EnumRadio/Map.js.map +0 -1
- package/core/EnumRadio/Nullable.d.ts +0 -12
- package/core/EnumRadio/Nullable.js +0 -88
- package/core/EnumRadio/Nullable.js.map +0 -1
- package/core/EnumRadio/index.d.ts +0 -24
- package/core/EnumRadio/index.js +0 -45
- package/core/EnumRadio/index.js.map +0 -1
- package/core/EnumSelect/InitialNullable.d.ts +0 -10
- package/core/EnumSelect/InitialNullable.js +0 -54
- package/core/EnumSelect/InitialNullable.js.map +0 -1
- package/core/EnumSelect/Map.d.ts +0 -10
- package/core/EnumSelect/Map.js +0 -55
- package/core/EnumSelect/Map.js.map +0 -1
- package/core/EnumSelect/Nullable.d.ts +0 -12
- package/core/EnumSelect/Nullable.js +0 -88
- package/core/EnumSelect/Nullable.js.map +0 -1
- package/core/EnumSelect/index.d.ts +0 -29
- package/core/EnumSelect/index.js +0 -61
- package/core/EnumSelect/index.js.map +0 -1
- package/core/FlatList/VirtualFlatList/Item.d.ts +0 -11
- package/core/FlatList/VirtualFlatList/Item.js +0 -20
- package/core/FlatList/VirtualFlatList/Item.js.map +0 -1
- package/core/FlatList/VirtualFlatList/index.d.ts +0 -7
- package/core/FlatList/VirtualFlatList/index.js +0 -110
- package/core/FlatList/VirtualFlatList/index.js.map +0 -1
- package/core/FlatList/VirtualFlatList/type.d.ts +0 -20
- package/core/FlatList/VirtualFlatList/type.js +0 -2
- package/core/FlatList/VirtualFlatList/type.js.map +0 -1
- package/core/FlatList/index.d.ts +0 -3
- package/core/FlatList/index.js +0 -60
- package/core/FlatList/index.js.map +0 -1
- package/core/FlatList/shared/Footer/index.d.ts +0 -8
- package/core/FlatList/shared/Footer/index.js +0 -13
- package/core/FlatList/shared/Footer/index.js.map +0 -1
- package/core/FlatList/shared/GetRowKey.d.ts +0 -2
- package/core/FlatList/shared/GetRowKey.js +0 -12
- package/core/FlatList/shared/GetRowKey.js.map +0 -1
- package/core/FlatList/shared/Spinner/index.d.ts +0 -8
- package/core/FlatList/shared/Spinner/index.js +0 -10
- package/core/FlatList/shared/Spinner/index.js.map +0 -1
- package/core/FlatList/shared/Wrapper/Loading.d.ts +0 -8
- package/core/FlatList/shared/Wrapper/Loading.js +0 -7
- package/core/FlatList/shared/Wrapper/Loading.js.map +0 -1
- package/core/FlatList/shared/Wrapper/index.d.ts +0 -14
- package/core/FlatList/shared/Wrapper/index.js +0 -109
- package/core/FlatList/shared/Wrapper/index.js.map +0 -1
- package/core/FlatList/shared/hooks/useBounceSwipe.d.ts +0 -22
- package/core/FlatList/shared/hooks/useBounceSwipe.js +0 -111
- package/core/FlatList/shared/hooks/useBounceSwipe.js.map +0 -1
- package/core/FlatList/shared/hooks/useElementScrollState.d.ts +0 -8
- package/core/FlatList/shared/hooks/useElementScrollState.js +0 -38
- package/core/FlatList/shared/hooks/useElementScrollState.js.map +0 -1
- package/core/FlatList/shared/hooks/useLoadingWithDelay.d.ts +0 -9
- package/core/FlatList/shared/hooks/useLoadingWithDelay.js +0 -52
- package/core/FlatList/shared/hooks/useLoadingWithDelay.js.map +0 -1
- package/core/FlatList/type.d.ts +0 -48
- package/core/FlatList/type.js +0 -2
- package/core/FlatList/type.js.map +0 -1
- package/core/Foldable/index.d.ts +0 -18
- package/core/Foldable/index.js +0 -41
- package/core/Foldable/index.js.map +0 -1
- package/core/Form/Item.d.ts +0 -29
- package/core/Form/Item.js +0 -106
- package/core/Form/Item.js.map +0 -1
- package/core/Form/context.d.ts +0 -14
- package/core/Form/context.js +0 -7
- package/core/Form/context.js.map +0 -1
- package/core/Form/index.d.ts +0 -36
- package/core/Form/index.js +0 -143
- package/core/Form/index.js.map +0 -1
- package/core/Grid.d.ts +0 -6
- package/core/Grid.js +0 -7
- package/core/Grid.js.map +0 -1
- package/core/HTMLContent/index.d.ts +0 -11
- package/core/HTMLContent/index.js +0 -32
- package/core/HTMLContent/index.js.map +0 -1
- package/core/ImageUploader/index.d.ts +0 -24
- package/core/ImageUploader/index.js +0 -148
- package/core/ImageUploader/index.js.map +0 -1
- package/core/Input/index.d.ts +0 -39
- package/core/Input/index.js +0 -88
- package/core/Input/index.js.map +0 -1
- package/core/LabelledSelect.d.ts +0 -11
- package/core/LabelledSelect.js +0 -42
- package/core/LabelledSelect.js.map +0 -1
- package/core/Link.d.ts +0 -15
- package/core/Link.js +0 -48
- package/core/Link.js.map +0 -1
- package/core/LocalImporter.d.ts +0 -21
- package/core/LocalImporter.js +0 -93
- package/core/LocalImporter.js.map +0 -1
- package/core/LocaleProvider.d.ts +0 -12
- package/core/LocaleProvider.js +0 -38
- package/core/LocaleProvider.js.map +0 -1
- package/core/LocaleSelect.d.ts +0 -11
- package/core/LocaleSelect.js +0 -45
- package/core/LocaleSelect.js.map +0 -1
- package/core/Markdown/index.d.ts +0 -20
- package/core/Markdown/index.js +0 -40
- package/core/Markdown/index.js.map +0 -1
- package/core/Modal/index.d.ts +0 -16
- package/core/Modal/index.js +0 -67
- package/core/Modal/index.js.map +0 -1
- package/core/MultipleCascader/index.d.ts +0 -31
- package/core/MultipleCascader/index.js +0 -151
- package/core/MultipleCascader/index.js.map +0 -1
- package/core/MultipleEnumSelect.d.ts +0 -17
- package/core/MultipleEnumSelect.js +0 -40
- package/core/MultipleEnumSelect.js.map +0 -1
- package/core/MultipleSelector/TablePopover.d.ts +0 -20
- package/core/MultipleSelector/TablePopover.js +0 -95
- package/core/MultipleSelector/TablePopover.js.map +0 -1
- package/core/MultipleSelector/index.d.ts +0 -33
- package/core/MultipleSelector/index.js +0 -103
- package/core/MultipleSelector/index.js.map +0 -1
- package/core/MutableTable/index.d.ts +0 -44
- package/core/MutableTable/index.js +0 -139
- package/core/MutableTable/index.js.map +0 -1
- package/core/NumberInput/NumberInputPercentage.d.ts +0 -58
- package/core/NumberInput/NumberInputPercentage.js +0 -75
- package/core/NumberInput/NumberInputPercentage.js.map +0 -1
- package/core/NumberInput/index.d.ts +0 -70
- package/core/NumberInput/index.js +0 -130
- package/core/NumberInput/index.js.map +0 -1
- package/core/NumberInput/util.d.ts +0 -34
- package/core/NumberInput/util.js +0 -57
- package/core/NumberInput/util.js.map +0 -1
- package/core/OverflowableText/index.d.ts +0 -22
- package/core/OverflowableText/index.js +0 -64
- package/core/OverflowableText/index.js.map +0 -1
- package/core/PagedList/index.d.ts +0 -27
- package/core/PagedList/index.js +0 -81
- package/core/PagedList/index.js.map +0 -1
- package/core/Pagination/index.d.ts +0 -21
- package/core/Pagination/index.js +0 -51
- package/core/Pagination/index.js.map +0 -1
- package/core/Popover/index.d.ts +0 -11
- package/core/Popover/index.js +0 -43
- package/core/Popover/index.js.map +0 -1
- package/core/Progress.d.ts +0 -10
- package/core/Progress.js +0 -42
- package/core/Progress.js.map +0 -1
- package/core/Radio/index.d.ts +0 -13
- package/core/Radio/index.js +0 -45
- package/core/Radio/index.js.map +0 -1
- package/core/RelativeTime.d.ts +0 -18
- package/core/RelativeTime.js +0 -60
- package/core/RelativeTime.js.map +0 -1
- package/core/ResizeObserver.d.ts +0 -2
- package/core/ResizeObserver.js +0 -2
- package/core/ResizeObserver.js.map +0 -1
- package/core/SearchableSelect.d.ts +0 -15
- package/core/SearchableSelect.js +0 -42
- package/core/SearchableSelect.js.map +0 -1
- package/core/Select/index.d.ts +0 -16
- package/core/Select/index.js +0 -45
- package/core/Select/index.js.map +0 -1
- package/core/SignedAmountInput.d.ts +0 -20
- package/core/SignedAmountInput.js +0 -56
- package/core/SignedAmountInput.js.map +0 -1
- package/core/Skeleton.d.ts +0 -9
- package/core/Skeleton.js +0 -42
- package/core/Skeleton.js.map +0 -1
- package/core/Slider/RangeSlider.d.ts +0 -11
- package/core/Slider/RangeSlider.js +0 -53
- package/core/Slider/RangeSlider.js.map +0 -1
- package/core/Slider/index.d.ts +0 -16
- package/core/Slider/index.js +0 -79
- package/core/Slider/index.js.map +0 -1
- package/core/Space.d.ts +0 -10
- package/core/Space.js +0 -42
- package/core/Space.js.map +0 -1
- package/core/Spin.d.ts +0 -12
- package/core/Spin.js +0 -55
- package/core/Spin.js.map +0 -1
- package/core/StepFormContainer/index.d.ts +0 -27
- package/core/StepFormContainer/index.js +0 -50
- package/core/StepFormContainer/index.js.map +0 -1
- package/core/Steps/index.d.ts +0 -11
- package/core/Steps/index.js +0 -44
- package/core/Steps/index.js.map +0 -1
- package/core/Table/index.d.ts +0 -89
- package/core/Table/index.js +0 -152
- package/core/Table/index.js.map +0 -1
- package/core/Tabs/Single.d.ts +0 -11
- package/core/Tabs/Single.js +0 -54
- package/core/Tabs/Single.js.map +0 -1
- package/core/Tabs/index.d.ts +0 -30
- package/core/Tabs/index.js +0 -96
- package/core/Tabs/index.js.map +0 -1
- package/core/Tag.d.ts +0 -11
- package/core/Tag.js +0 -42
- package/core/Tag.js.map +0 -1
- package/core/TagInput/index.d.ts +0 -27
- package/core/TagInput/index.js +0 -107
- package/core/TagInput/index.js.map +0 -1
- package/core/Tags.d.ts +0 -17
- package/core/Tags.js +0 -38
- package/core/Tags.js.map +0 -1
- package/core/TimePicker/index.d.ts +0 -17
- package/core/TimePicker/index.js +0 -46
- package/core/TimePicker/index.js.map +0 -1
- package/core/TimeRangePicker/index.d.ts +0 -17
- package/core/TimeRangePicker/index.js +0 -45
- package/core/TimeRangePicker/index.js.map +0 -1
- package/core/Tooltip.d.ts +0 -9
- package/core/Tooltip.js +0 -42
- package/core/Tooltip.js.map +0 -1
- package/core/TypedTabs/index.d.ts +0 -23
- package/core/TypedTabs/index.js +0 -76
- package/core/TypedTabs/index.js.map +0 -1
- package/core/Uploader.d.ts +0 -34
- package/core/Uploader.js +0 -97
- package/core/Uploader.js.map +0 -1
- package/core/VerticalMarquee/index.d.ts +0 -19
- package/core/VerticalMarquee/index.js +0 -51
- package/core/VerticalMarquee/index.js.map +0 -1
- package/core/VirtualTable/TableHeader.d.ts +0 -13
- package/core/VirtualTable/TableHeader.js +0 -45
- package/core/VirtualTable/TableHeader.js.map +0 -1
- package/core/VirtualTable/TableRow.d.ts +0 -21
- package/core/VirtualTable/TableRow.js +0 -59
- package/core/VirtualTable/TableRow.js.map +0 -1
- package/core/VirtualTable/hooks/useColumnWidths.d.ts +0 -11
- package/core/VirtualTable/hooks/useColumnWidths.js +0 -38
- package/core/VirtualTable/hooks/useColumnWidths.js.map +0 -1
- package/core/VirtualTable/hooks/useDebounce.d.ts +0 -1
- package/core/VirtualTable/hooks/useDebounce.js +0 -45
- package/core/VirtualTable/hooks/useDebounce.js.map +0 -1
- package/core/VirtualTable/hooks/useLayout.d.ts +0 -17
- package/core/VirtualTable/hooks/useLayout.js +0 -44
- package/core/VirtualTable/hooks/useLayout.js.map +0 -1
- package/core/VirtualTable/hooks/useRowExpand.d.ts +0 -7
- package/core/VirtualTable/hooks/useRowExpand.js +0 -20
- package/core/VirtualTable/hooks/useRowExpand.js.map +0 -1
- package/core/VirtualTable/hooks/useRowSelection.d.ts +0 -10
- package/core/VirtualTable/hooks/useRowSelection.js +0 -83
- package/core/VirtualTable/hooks/useRowSelection.js.map +0 -1
- package/core/VirtualTable/hooks/useScrollBarSize.d.ts +0 -5
- package/core/VirtualTable/hooks/useScrollBarSize.js +0 -36
- package/core/VirtualTable/hooks/useScrollBarSize.js.map +0 -1
- package/core/VirtualTable/hooks/useScrollToEdge.d.ts +0 -8
- package/core/VirtualTable/hooks/useScrollToEdge.js +0 -48
- package/core/VirtualTable/hooks/useScrollToEdge.js.map +0 -1
- package/core/VirtualTable/hooks/useStickyPosition.d.ts +0 -2
- package/core/VirtualTable/hooks/useStickyPosition.js +0 -24
- package/core/VirtualTable/hooks/useStickyPosition.js.map +0 -1
- package/core/VirtualTable/hooks/useTransformColumn.d.ts +0 -11
- package/core/VirtualTable/hooks/useTransformColumn.js +0 -9
- package/core/VirtualTable/hooks/useTransformColumn.js.map +0 -1
- package/core/VirtualTable/index.d.ts +0 -30
- package/core/VirtualTable/index.js +0 -85
- package/core/VirtualTable/index.js.map +0 -1
- package/core/VirtualTable/type.d.ts +0 -57
- package/core/VirtualTable/type.js +0 -2
- package/core/VirtualTable/type.js.map +0 -1
- package/core/WithExplanation/index.d.ts +0 -21
- package/core/WithExplanation/index.js +0 -46
- package/core/WithExplanation/index.js.map +0 -1
- package/core/WithTooltipList.d.ts +0 -23
- package/core/WithTooltipList.js +0 -64
- package/core/WithTooltipList.js.map +0 -1
- package/core/YearMonthSelector.d.ts +0 -16
- package/core/YearMonthSelector.js +0 -53
- package/core/YearMonthSelector.js.map +0 -1
- package/hooks/useOrientationMode.d.ts +0 -2
- package/hooks/useOrientationMode.js +0 -30
- package/hooks/useOrientationMode.js.map +0 -1
- package/hooks/useSwipe/controller.d.ts +0 -20
- package/hooks/useSwipe/controller.js +0 -126
- package/hooks/useSwipe/controller.js.map +0 -1
- package/hooks/useSwipe/index.d.ts +0 -3
- package/hooks/useSwipe/index.js +0 -9
- package/hooks/useSwipe/index.js.map +0 -1
- package/hooks/useSwipe/type.d.ts +0 -38
- package/hooks/useSwipe/type.js +0 -8
- package/hooks/useSwipe/type.js.map +0 -1
- package/hooks/useTransform.d.ts +0 -18
- package/hooks/useTransform.js +0 -50
- package/hooks/useTransform.js.map +0 -1
- package/internal/ArrayUtil.d.ts +0 -29
- package/internal/ArrayUtil.js +0 -76
- package/internal/ArrayUtil.js.map +0 -1
- package/internal/ExpirableLocalStorage.d.ts +0 -123
- package/internal/ExpirableLocalStorage.js +0 -245
- package/internal/ExpirableLocalStorage.js.map +0 -1
- package/internal/Memo.d.ts +0 -9
- package/internal/Memo.js +0 -31
- package/internal/Memo.js.map +0 -1
- package/internal/NumberUtil.d.ts +0 -7
- package/internal/NumberUtil.js +0 -38
- package/internal/NumberUtil.js.map +0 -1
- package/internal/StorageHelper.d.ts +0 -31
- package/internal/StorageHelper.js +0 -152
- package/internal/StorageHelper.js.map +0 -1
- package/internal/TextUtil.d.ts +0 -5
- package/internal/TextUtil.js +0 -15
- package/internal/TextUtil.js.map +0 -1
- package/internal/i18n/admin/en.d.ts +0 -18
- package/internal/i18n/admin/en.js +0 -19
- package/internal/i18n/admin/en.js.map +0 -1
- package/internal/i18n/admin/index.d.ts +0 -18
- package/internal/i18n/admin/index.js +0 -11
- package/internal/i18n/admin/index.js.map +0 -1
- package/internal/i18n/admin/zh.d.ts +0 -18
- package/internal/i18n/admin/zh.js +0 -19
- package/internal/i18n/admin/zh.js.map +0 -1
- package/internal/i18n/core/en.d.ts +0 -37
- package/internal/i18n/core/en.js +0 -38
- package/internal/i18n/core/en.js.map +0 -1
- package/internal/i18n/core/index.d.ts +0 -37
- package/internal/i18n/core/index.js +0 -11
- package/internal/i18n/core/index.js.map +0 -1
- package/internal/i18n/core/zh.d.ts +0 -37
- package/internal/i18n/core/zh.js +0 -38
- package/internal/i18n/core/zh.js.map +0 -1
- package/internal/i18n/util/en.d.ts +0 -9
- package/internal/i18n/util/en.js +0 -10
- package/internal/i18n/util/en.js.map +0 -1
- package/internal/i18n/util/index.d.ts +0 -9
- package/internal/i18n/util/index.js +0 -11
- package/internal/i18n/util/index.js.map +0 -1
- package/internal/i18n/util/zh.d.ts +0 -9
- package/internal/i18n/util/zh.js +0 -10
- package/internal/i18n/util/zh.js.map +0 -1
- package/internal/type.d.ts +0 -15
- package/internal/type.js +0 -2
- package/internal/type.js.map +0 -1
- package/util/AdminNavigatorBase.d.ts +0 -64
- package/util/AdminNavigatorBase.js +0 -101
- package/util/AdminNavigatorBase.js.map +0 -1
- package/util/BrowserBookmarkUtil.d.ts +0 -5
- package/util/BrowserBookmarkUtil.js +0 -25
- package/util/BrowserBookmarkUtil.js.map +0 -1
- package/util/BrowserUtil.d.ts +0 -31
- package/util/BrowserUtil.js +0 -154
- package/util/BrowserUtil.js.map +0 -1
- package/util/CanvasUtil.d.ts +0 -17
- package/util/CanvasUtil.js +0 -94
- package/util/CanvasUtil.js.map +0 -1
- package/util/ClassNames.d.ts +0 -2
- package/util/ClassNames.js +0 -3
- package/util/ClassNames.js.map +0 -1
- package/util/Clipboard.d.ts +0 -22
- package/util/Clipboard.js +0 -118
- package/util/Clipboard.js.map +0 -1
- package/util/ExpirableLocalStorageUtil.d.ts +0 -2
- package/util/ExpirableLocalStorageUtil.js +0 -3
- package/util/ExpirableLocalStorageUtil.js.map +0 -1
- package/util/ExportUtil.d.ts +0 -11
- package/util/ExportUtil.js +0 -28
- package/util/ExportUtil.js.map +0 -1
- package/util/ImportUtil.d.ts +0 -10
- package/util/ImportUtil.js +0 -94
- package/util/ImportUtil.js.map +0 -1
- package/util/LocalStorageUtil.d.ts +0 -2
- package/util/LocalStorageUtil.js +0 -3
- package/util/LocalStorageUtil.js.map +0 -1
- package/util/LocaleUtil.d.ts +0 -22
- package/util/LocaleUtil.js +0 -34
- package/util/LocaleUtil.js.map +0 -1
- package/util/MediaUtil/index.d.ts +0 -10
- package/util/MediaUtil/index.js +0 -60
- package/util/MediaUtil/index.js.map +0 -1
- package/util/MessageUtil/index.d.ts +0 -15
- package/util/MessageUtil/index.js +0 -29
- package/util/MessageUtil/index.js.map +0 -1
- package/util/ModalUtil/index.d.ts +0 -41
- package/util/ModalUtil/index.js +0 -145
- package/util/ModalUtil/index.js.map +0 -1
- package/util/NotificationUtil.d.ts +0 -12
- package/util/NotificationUtil.js +0 -52
- package/util/NotificationUtil.js.map +0 -1
- package/util/OrientationUtil.d.ts +0 -20
- package/util/OrientationUtil.js +0 -50
- package/util/OrientationUtil.js.map +0 -1
- package/util/PromptUtil/PromptBody.d.ts +0 -18
- package/util/PromptUtil/PromptBody.js +0 -100
- package/util/PromptUtil/PromptBody.js.map +0 -1
- package/util/PromptUtil/index.d.ts +0 -19
- package/util/PromptUtil/index.js +0 -48
- package/util/PromptUtil/index.js.map +0 -1
- package/util/RecentUsedStorageUtil.d.ts +0 -12
- package/util/RecentUsedStorageUtil.js +0 -45
- package/util/RecentUsedStorageUtil.js.map +0 -1
- package/util/SessionStorageUtil.d.ts +0 -2
- package/util/SessionStorageUtil.js +0 -3
- package/util/SessionStorageUtil.js.map +0 -1
- package/util/SwipeUtil.d.ts +0 -8
- package/util/SwipeUtil.js +0 -26
- package/util/SwipeUtil.js.map +0 -1
- package/util/UploadUtil/index.d.ts +0 -6
- package/util/UploadUtil/index.js +0 -61
- package/util/UploadUtil/index.js.map +0 -1
- package/util/UploadUtil/type.d.ts +0 -41
- package/util/UploadUtil/type.js +0 -2
- package/util/UploadUtil/type.js.map +0 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {classNames} from "../../src/util/ClassNames";
|
|
2
|
+
|
|
3
|
+
describe("classNames testing", () => {
|
|
4
|
+
test("basic usage", () => {
|
|
5
|
+
let extraClass: string | boolean | undefined = undefined;
|
|
6
|
+
expect(classNames("game-class", {extraClass})).toBe("game-class");
|
|
7
|
+
|
|
8
|
+
extraClass = "extra-class-with-longer-name";
|
|
9
|
+
expect(classNames("game-class", {extraClass})).toBe("game-class extraClass");
|
|
10
|
+
expect(classNames("game-class", extraClass)).toBe("game-class extra-class-with-longer-name");
|
|
11
|
+
expect(classNames("game-class", {[extraClass]: extraClass})).toBe("game-class extra-class-with-longer-name");
|
|
12
|
+
expect(classNames("game-class", extraClass ? "short-class-name" : extraClass)).toBe("game-class short-class-name");
|
|
13
|
+
|
|
14
|
+
extraClass = true;
|
|
15
|
+
expect(classNames("game-class", {extraClass})).toBe("game-class extraClass");
|
|
16
|
+
});
|
|
17
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import {ExpirableLocalStorageUtil} from "@pinnacle0/web-ui/util/ExpirableLocalStorageUtil";
|
|
2
|
+
|
|
3
|
+
describe("ExpirableLocalStorageUtil", () => {
|
|
4
|
+
[
|
|
5
|
+
["Bool", true, false],
|
|
6
|
+
["String", "abc", ""],
|
|
7
|
+
["Number", 123, 0],
|
|
8
|
+
].forEach(([type, value, defaultValue]) => {
|
|
9
|
+
test(type as string, () => {
|
|
10
|
+
const currentTimestamp = new Date().getTime();
|
|
11
|
+
const nonExpiredTimestamp = currentTimestamp + 1000;
|
|
12
|
+
const expiredTimestamp = currentTimestamp - 10;
|
|
13
|
+
|
|
14
|
+
ExpirableLocalStorageUtil[`set${type}`](type, value, nonExpiredTimestamp);
|
|
15
|
+
expect(Object.keys(localStorage).includes(`@@EXPIRABLE/${type}`)).toEqual(true);
|
|
16
|
+
expect(ExpirableLocalStorageUtil[`get${type}`](type, defaultValue)).toEqual(value);
|
|
17
|
+
|
|
18
|
+
ExpirableLocalStorageUtil[`set${type}`](type, value, expiredTimestamp);
|
|
19
|
+
expect(ExpirableLocalStorageUtil[`get${type}`](type, defaultValue)).toEqual(defaultValue);
|
|
20
|
+
|
|
21
|
+
// pruned key because the new expiredTimestamp is expired
|
|
22
|
+
expect(Object.keys(localStorage).includes(`@@EXPIRABLE/${type}`)).toEqual(false);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
test("Object", () => {
|
|
27
|
+
const currentTimestamp = new Date().getTime();
|
|
28
|
+
const nonExpiredTimestamp = currentTimestamp + 1000;
|
|
29
|
+
const expiredTimestamp = currentTimestamp - 10;
|
|
30
|
+
|
|
31
|
+
ExpirableLocalStorageUtil.setObject("Object", {a: 1}, nonExpiredTimestamp);
|
|
32
|
+
|
|
33
|
+
expect(Object.keys(localStorage).includes("@@EXPIRABLE/Object")).toEqual(true);
|
|
34
|
+
expect(ExpirableLocalStorageUtil.getObject("Object", {b: 2}, () => true)).toEqual({a: 1});
|
|
35
|
+
|
|
36
|
+
ExpirableLocalStorageUtil.setObject("Object", {a: 1}, expiredTimestamp);
|
|
37
|
+
expect(ExpirableLocalStorageUtil.getObject("Object", {b: 2}, () => true)).toEqual({b: 2});
|
|
38
|
+
|
|
39
|
+
// pruned key because the new expiredTimestamp is expired
|
|
40
|
+
expect(Object.keys(localStorage).includes("@@EXPIRABLE/Object")).toEqual(false);
|
|
41
|
+
});
|
|
42
|
+
});
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
import {canAdd, canMinus, clamp, getDisplayValue, rectifyInputIfValid, truncate} from "@pinnacle0/web-ui/core/NumberInput/util";
|
|
2
|
+
|
|
3
|
+
describe("truncate", () => {
|
|
4
|
+
const sum = 0.1 + 0.2;
|
|
5
|
+
const difference = 0.3 - 0.2;
|
|
6
|
+
|
|
7
|
+
test("sum and difference fixture has unwanted decimal points", () => {
|
|
8
|
+
expect(sum.toString()).not.toBe("0.3"); // This should be something like "0.30000000000000004"
|
|
9
|
+
expect(/\.[0-9]{1}$/.test(sum.toString())).toBe(false);
|
|
10
|
+
|
|
11
|
+
expect(difference.toString()).not.toBe("0.1"); // This should be something like "0.09999999999999998"
|
|
12
|
+
expect(/\.[0-9]{1}$/.test(difference.toString())).toBe(false);
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
test("returns correct number of decimal points after calling truncate()", () => {
|
|
16
|
+
expect(truncate(sum, 1).toString()).toBe("0.3");
|
|
17
|
+
expect(truncate(sum, 4).toString()).toBe("0.3");
|
|
18
|
+
|
|
19
|
+
expect(truncate(difference, 1).toString()).toBe("0.1");
|
|
20
|
+
expect(truncate(difference, 4).toString()).toBe("0.1");
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
describe("clamp", () => {
|
|
25
|
+
type Params = Parameters<typeof clamp>[0];
|
|
26
|
+
|
|
27
|
+
test("returns min if outside range(min)", () => {
|
|
28
|
+
const test1: Params = {value: 10, min: 100, max: 200};
|
|
29
|
+
expect(clamp(test1)).toBe(test1.min);
|
|
30
|
+
const test2: Params = {value: 0.3 - 0.2, min: 0.1, max: 200};
|
|
31
|
+
expect(clamp(test2)).toBe(test2.min);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
test("returns max if outside range(max)", () => {
|
|
35
|
+
const test1: Params = {value: 1000, min: 100, max: 200};
|
|
36
|
+
expect(clamp(test1)).toBe(test1.max);
|
|
37
|
+
const test2: Params = {value: 0.1 + 0.2, min: 0, max: 0.3};
|
|
38
|
+
expect(clamp(test2)).toBe(test2.max);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
test("returns original value if within range", () => {
|
|
42
|
+
const test1: Params = {value: 150, min: 100, max: 200};
|
|
43
|
+
expect(clamp(test1)).toBe(test1.value);
|
|
44
|
+
const test2: Params = {value: 0.1 + 0.2, min: 0, max: 1};
|
|
45
|
+
expect(clamp(test2)).toBe(test2.value);
|
|
46
|
+
expect(/[0-9]\.[0-9]/.test(clamp(test2).toString())).toBe(true);
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
describe("canAdd", () => {
|
|
51
|
+
type Params = Parameters<typeof canAdd>[0];
|
|
52
|
+
|
|
53
|
+
test("allows add if value is null (no value provided)", () => {
|
|
54
|
+
const props: Params = {
|
|
55
|
+
value: null,
|
|
56
|
+
step: null as unknown as number, // don't care
|
|
57
|
+
max: null as unknown as number, // don't care
|
|
58
|
+
scale: null as unknown as number, // don't care
|
|
59
|
+
};
|
|
60
|
+
expect(canAdd(props)).toBe(true);
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
test("allows add if next value inside range(max)", () => {
|
|
64
|
+
const integerProps: Params = {
|
|
65
|
+
value: 9,
|
|
66
|
+
step: 1,
|
|
67
|
+
max: 10,
|
|
68
|
+
scale: 0,
|
|
69
|
+
};
|
|
70
|
+
expect(canAdd(integerProps)).toBe(true);
|
|
71
|
+
|
|
72
|
+
const floatProps: Params = {
|
|
73
|
+
value: 0.2,
|
|
74
|
+
step: 0.1,
|
|
75
|
+
max: 0.3,
|
|
76
|
+
scale: 1,
|
|
77
|
+
};
|
|
78
|
+
expect(canAdd(floatProps)).toBe(true);
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
test("disallows add if next value outside range(max)", () => {
|
|
82
|
+
const integerProps: Params = {
|
|
83
|
+
value: 9,
|
|
84
|
+
step: 3,
|
|
85
|
+
max: 10,
|
|
86
|
+
scale: 0,
|
|
87
|
+
};
|
|
88
|
+
expect(canAdd(integerProps)).toBe(false);
|
|
89
|
+
|
|
90
|
+
const floatProps: Params = {
|
|
91
|
+
value: 0.2,
|
|
92
|
+
step: 0.2,
|
|
93
|
+
max: 0.3,
|
|
94
|
+
scale: 1,
|
|
95
|
+
};
|
|
96
|
+
expect(canAdd(floatProps)).toBe(false);
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
describe("canMinus", () => {
|
|
101
|
+
type Params = Parameters<typeof canMinus>[0];
|
|
102
|
+
|
|
103
|
+
test("allows minus if value is null (no value provided)", () => {
|
|
104
|
+
const props: Params = {
|
|
105
|
+
value: null,
|
|
106
|
+
step: null as unknown as number, // don't care
|
|
107
|
+
min: null as unknown as number, // don't care
|
|
108
|
+
scale: null as unknown as number, // don't care
|
|
109
|
+
};
|
|
110
|
+
expect(canMinus(props)).toBe(true);
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
test("allows minus if prev value inside range(min)", () => {
|
|
114
|
+
const integerProps: Params = {
|
|
115
|
+
value: 1,
|
|
116
|
+
step: 1,
|
|
117
|
+
min: 0,
|
|
118
|
+
scale: 0,
|
|
119
|
+
};
|
|
120
|
+
expect(canMinus(integerProps)).toBe(true);
|
|
121
|
+
|
|
122
|
+
const floatProps: Params = {
|
|
123
|
+
value: 0.3,
|
|
124
|
+
step: 0.2,
|
|
125
|
+
min: 0.1,
|
|
126
|
+
scale: 1,
|
|
127
|
+
};
|
|
128
|
+
expect(canMinus(floatProps)).toBe(true);
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
test("disallows minus if prev value outside range(min)", () => {
|
|
132
|
+
const integerProps: Params = {
|
|
133
|
+
value: 15,
|
|
134
|
+
step: 10,
|
|
135
|
+
min: 10,
|
|
136
|
+
scale: 0,
|
|
137
|
+
};
|
|
138
|
+
expect(canMinus(integerProps)).toBe(false);
|
|
139
|
+
|
|
140
|
+
const floatProps: Params = {
|
|
141
|
+
value: 0.2,
|
|
142
|
+
step: 0.4,
|
|
143
|
+
min: 0,
|
|
144
|
+
scale: 1,
|
|
145
|
+
};
|
|
146
|
+
expect(canMinus(floatProps)).toBe(false);
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
describe("getDisplayValue", () => {
|
|
151
|
+
test("**always** shows empty string if value is null (no value provided)", () => {
|
|
152
|
+
const displayValue1 = getDisplayValue({
|
|
153
|
+
value: null,
|
|
154
|
+
scale: null as unknown as number, // don't care
|
|
155
|
+
});
|
|
156
|
+
expect(displayValue1).toBe("");
|
|
157
|
+
|
|
158
|
+
const displayRenderer = jest.fn();
|
|
159
|
+
const displayValue2 = getDisplayValue({
|
|
160
|
+
value: null,
|
|
161
|
+
scale: null as unknown as number, // don't care
|
|
162
|
+
displayRenderer,
|
|
163
|
+
});
|
|
164
|
+
expect(displayValue2).toBe("");
|
|
165
|
+
expect(displayRenderer).not.toHaveBeenCalled();
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
test("uses custom display renderer if provided", () => {
|
|
169
|
+
const displayRenderer = jest.fn().mockReturnValue("CUSTOM DISPLAY VALUE");
|
|
170
|
+
const displayValue = getDisplayValue({
|
|
171
|
+
value: 1,
|
|
172
|
+
scale: 1,
|
|
173
|
+
displayRenderer,
|
|
174
|
+
});
|
|
175
|
+
expect(displayValue).toBe("CUSTOM DISPLAY VALUE");
|
|
176
|
+
expect(displayRenderer).toHaveBeenCalledTimes(1);
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
test("display the truncated value with `scale` number of decimal points when no custom display renderer", () => {
|
|
180
|
+
const displayValue1 = getDisplayValue({
|
|
181
|
+
value: 0.3,
|
|
182
|
+
scale: 4,
|
|
183
|
+
});
|
|
184
|
+
expect(displayValue1).toBe("0.3000");
|
|
185
|
+
|
|
186
|
+
const displayValue2 = getDisplayValue({
|
|
187
|
+
value: 0.1 + 0.2, // This should be something like 0.30000000000000004
|
|
188
|
+
scale: 4,
|
|
189
|
+
});
|
|
190
|
+
expect(displayValue2).toBe("0.3000");
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
|
|
194
|
+
describe("makeBestEffortToConvertEditingValueToValidNumber", () => {
|
|
195
|
+
type Config = Parameters<typeof rectifyInputIfValid>[1];
|
|
196
|
+
|
|
197
|
+
test("returns the userInput as a number (integer config)", () => {
|
|
198
|
+
expect.assertions(6);
|
|
199
|
+
const allowNullGetterSpy = jest.fn();
|
|
200
|
+
// prettier-ignore
|
|
201
|
+
const config: Config = {
|
|
202
|
+
min: 1, max: 10, scale: 0, get allowNull() { return allowNullGetterSpy() },
|
|
203
|
+
};
|
|
204
|
+
const createTest = (_: {inputText: string; expectedIntegerValue: number}) => ({
|
|
205
|
+
run: () => expect(rectifyInputIfValid(_.inputText, config)).toBe(_.expectedIntegerValue),
|
|
206
|
+
});
|
|
207
|
+
createTest({inputText: "1", expectedIntegerValue: 1}).run();
|
|
208
|
+
createTest({inputText: "1.0", expectedIntegerValue: 1}).run();
|
|
209
|
+
createTest({inputText: "2", expectedIntegerValue: 2}).run();
|
|
210
|
+
createTest({inputText: "10", expectedIntegerValue: 10}).run();
|
|
211
|
+
createTest({inputText: "10.0", expectedIntegerValue: 10}).run();
|
|
212
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
213
|
+
});
|
|
214
|
+
|
|
215
|
+
test("returns the userInput as a number (float 2 decimal point config)", () => {
|
|
216
|
+
expect.assertions(6);
|
|
217
|
+
const allowNullGetterSpy = jest.fn();
|
|
218
|
+
// prettier-ignore
|
|
219
|
+
const config: Config = {
|
|
220
|
+
min: 0, max: 1, scale: 2, get allowNull() { return allowNullGetterSpy() },
|
|
221
|
+
};
|
|
222
|
+
const createTest = (_: {inputText: string; expectedFloatValue: number}) => ({
|
|
223
|
+
run: () => expect(rectifyInputIfValid(_.inputText, config)).toBe(_.expectedFloatValue),
|
|
224
|
+
});
|
|
225
|
+
createTest({inputText: "0", expectedFloatValue: 0}).run();
|
|
226
|
+
createTest({inputText: "0.0", expectedFloatValue: 0}).run();
|
|
227
|
+
createTest({inputText: "0.25", expectedFloatValue: 0.25}).run();
|
|
228
|
+
createTest({inputText: "1", expectedFloatValue: 1}).run();
|
|
229
|
+
createTest({inputText: "1.000", expectedFloatValue: 1}).run();
|
|
230
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
231
|
+
});
|
|
232
|
+
|
|
233
|
+
test("converts the userInput to a valid number (integer config)", () => {
|
|
234
|
+
expect.assertions(8);
|
|
235
|
+
const allowNullGetterSpy = jest.fn();
|
|
236
|
+
// prettier-ignore
|
|
237
|
+
const config: Config = {
|
|
238
|
+
min: 1, max: 10, scale: 0, get allowNull() { return allowNullGetterSpy() },
|
|
239
|
+
};
|
|
240
|
+
const createTest = (_: {convertibleText: string; expectedIntegerValue: number}) => ({
|
|
241
|
+
run: () => expect(rectifyInputIfValid(_.convertibleText, config)).toBe(_.expectedIntegerValue),
|
|
242
|
+
});
|
|
243
|
+
createTest({convertibleText: "0", expectedIntegerValue: 1}).run();
|
|
244
|
+
createTest({convertibleText: "0.1", expectedIntegerValue: 1}).run();
|
|
245
|
+
createTest({convertibleText: "1.000000001", expectedIntegerValue: 1}).run();
|
|
246
|
+
createTest({convertibleText: "4.4", expectedIntegerValue: 4}).run();
|
|
247
|
+
createTest({convertibleText: "4.9", expectedIntegerValue: 5}).run();
|
|
248
|
+
createTest({convertibleText: "9.999999999", expectedIntegerValue: 10}).run();
|
|
249
|
+
createTest({convertibleText: "10.4", expectedIntegerValue: 10}).run();
|
|
250
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
test("converts the userInput to a valid number (float 4 decimal point config)", () => {
|
|
254
|
+
expect.assertions(8);
|
|
255
|
+
const allowNullGetterSpy = jest.fn();
|
|
256
|
+
// prettier-ignore
|
|
257
|
+
const config: Config = {
|
|
258
|
+
min: 0, max: 1, scale: 4, get allowNull() { return allowNullGetterSpy() },
|
|
259
|
+
};
|
|
260
|
+
const createTest = (_: {convertibleText: string; expectedFloatValue: number}) => ({
|
|
261
|
+
run: () => expect(rectifyInputIfValid(_.convertibleText, config)).toBe(_.expectedFloatValue),
|
|
262
|
+
});
|
|
263
|
+
createTest({convertibleText: "0.000000000001", expectedFloatValue: 0}).run();
|
|
264
|
+
createTest({convertibleText: "0.0101", expectedFloatValue: 0.0101}).run();
|
|
265
|
+
createTest({convertibleText: "0.30000000000000004", expectedFloatValue: 0.3}).run();
|
|
266
|
+
createTest({convertibleText: "0.40999999999999999", expectedFloatValue: 0.41}).run();
|
|
267
|
+
createTest({convertibleText: "0.50069696969696969", expectedFloatValue: 0.5007}).run();
|
|
268
|
+
createTest({convertibleText: "0.50001", expectedFloatValue: 0.5}).run();
|
|
269
|
+
createTest({convertibleText: "1.00000000000000001", expectedFloatValue: 1}).run();
|
|
270
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
test("returns magic string (invalid) if userInput cannot be converted (integer config)", () => {
|
|
274
|
+
expect.assertions(7);
|
|
275
|
+
const allowNullGetterSpy = jest.fn();
|
|
276
|
+
// prettier-ignore
|
|
277
|
+
const config: Config = {
|
|
278
|
+
min: 1, max: 10, scale: 0, get allowNull() { return allowNullGetterSpy() },
|
|
279
|
+
};
|
|
280
|
+
const createTest = (_: {unconvertibleText: string}) => ({
|
|
281
|
+
run: () => expect(rectifyInputIfValid(_.unconvertibleText, config)).toBe("@@INVALID"),
|
|
282
|
+
});
|
|
283
|
+
createTest({unconvertibleText: ","}).run();
|
|
284
|
+
createTest({unconvertibleText: "."}).run();
|
|
285
|
+
createTest({unconvertibleText: "1.0f"}).run();
|
|
286
|
+
createTest({unconvertibleText: "1.0.0"}).run();
|
|
287
|
+
createTest({unconvertibleText: "REEEEEEEEEEE"}).run();
|
|
288
|
+
createTest({unconvertibleText: "😄"}).run();
|
|
289
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
290
|
+
});
|
|
291
|
+
|
|
292
|
+
test("returns magic string (invalid) if userInput cannot be converted (float 4 decimal point config)", () => {
|
|
293
|
+
expect.assertions(7);
|
|
294
|
+
const allowNullGetterSpy = jest.fn();
|
|
295
|
+
// prettier-ignore
|
|
296
|
+
const config: Config = {
|
|
297
|
+
min: 0, max: 1, scale: 4, get allowNull() { return allowNullGetterSpy() },
|
|
298
|
+
};
|
|
299
|
+
const createTest = (_: {unconvertibleText: string}) => ({
|
|
300
|
+
run: () => expect(rectifyInputIfValid(_.unconvertibleText, config)).toBe("@@INVALID"),
|
|
301
|
+
});
|
|
302
|
+
createTest({unconvertibleText: ","}).run();
|
|
303
|
+
createTest({unconvertibleText: "."}).run();
|
|
304
|
+
createTest({unconvertibleText: "1.0f"}).run();
|
|
305
|
+
createTest({unconvertibleText: "1.0.0"}).run();
|
|
306
|
+
createTest({unconvertibleText: "REEEEEEEEEEE"}).run();
|
|
307
|
+
createTest({unconvertibleText: "😄"}).run();
|
|
308
|
+
expect(allowNullGetterSpy).not.toHaveBeenCalled();
|
|
309
|
+
});
|
|
310
|
+
|
|
311
|
+
test("returns null if userInput is empty string when `allowNull` is true", () => {
|
|
312
|
+
const allowNull = true;
|
|
313
|
+
const configPropertyGetterSpy = jest.fn();
|
|
314
|
+
const mockAllowNullGetter = jest.fn<boolean, []>().mockReturnValue(allowNull);
|
|
315
|
+
// prettier-ignore
|
|
316
|
+
const config = {
|
|
317
|
+
get min() { return configPropertyGetterSpy() },
|
|
318
|
+
get max() { return configPropertyGetterSpy() },
|
|
319
|
+
get scale() { return configPropertyGetterSpy() },
|
|
320
|
+
get allowNull() { return mockAllowNullGetter() },
|
|
321
|
+
};
|
|
322
|
+
const result = rectifyInputIfValid("", config);
|
|
323
|
+
expect(result).toBeNull();
|
|
324
|
+
expect(mockAllowNullGetter).toHaveBeenCalledWith();
|
|
325
|
+
expect(configPropertyGetterSpy).not.toHaveBeenCalled();
|
|
326
|
+
});
|
|
327
|
+
|
|
328
|
+
test("returns magic string (invalid) if userInput is empty string when `allowNull` is false", () => {
|
|
329
|
+
const allowNull = false;
|
|
330
|
+
const configPropertyGetterSpy = jest.fn();
|
|
331
|
+
const mockAllowNullGetter = jest.fn<boolean, []>().mockReturnValue(allowNull);
|
|
332
|
+
// prettier-ignore
|
|
333
|
+
const config = {
|
|
334
|
+
get min() { return configPropertyGetterSpy() },
|
|
335
|
+
get max() { return configPropertyGetterSpy() },
|
|
336
|
+
get scale() { return configPropertyGetterSpy() },
|
|
337
|
+
get allowNull() { return mockAllowNullGetter() },
|
|
338
|
+
};
|
|
339
|
+
const result = rectifyInputIfValid("", config);
|
|
340
|
+
expect(result).toBe("@@INVALID");
|
|
341
|
+
expect(mockAllowNullGetter).toHaveBeenCalledWith();
|
|
342
|
+
expect(configPropertyGetterSpy).not.toHaveBeenCalled();
|
|
343
|
+
});
|
|
344
|
+
});
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import {NumberUtil} from "../../src/internal/NumberUtil";
|
|
2
|
+
|
|
3
|
+
describe("NumberUtil.rounding", () => {
|
|
4
|
+
test("throws if `maxScale` is invalid", () => {
|
|
5
|
+
expect(() => NumberUtil.rounding(10, "round", -1)).toThrow();
|
|
6
|
+
expect(() => NumberUtil.rounding(10, "round", 1.1)).toThrow();
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
type TestEachRowSchema = {value: number; algorithm: "round" | "ceil" | "floor"; maxScale: any; expected: number};
|
|
10
|
+
test.each`
|
|
11
|
+
value | algorithm | maxScale | expected
|
|
12
|
+
${3.65} | ${"floor"} | ${0} | ${3}
|
|
13
|
+
${3.65} | ${"floor"} | ${1} | ${3.6}
|
|
14
|
+
${3.65} | ${"floor"} | ${2} | ${3.65}
|
|
15
|
+
${3.65} | ${"floor"} | ${3} | ${3.65}
|
|
16
|
+
${7.45} | ${"ceil"} | ${0} | ${8}
|
|
17
|
+
${7.45} | ${"ceil"} | ${1} | ${7.5}
|
|
18
|
+
${7.45} | ${"ceil"} | ${2} | ${7.45}
|
|
19
|
+
${7.45} | ${"ceil"} | ${3} | ${7.45}
|
|
20
|
+
${1.664} | ${"round"} | ${0} | ${2}
|
|
21
|
+
${1.664} | ${"round"} | ${1} | ${1.7}
|
|
22
|
+
${1.664} | ${"round"} | ${2} | ${1.66}
|
|
23
|
+
${1.664} | ${"round"} | ${3} | ${1.664}
|
|
24
|
+
${1.664} | ${"round"} | ${4} | ${1.664}
|
|
25
|
+
${4.975} | ${"round"} | ${2} | ${4.98}
|
|
26
|
+
`("rounding($value, '$algorithm', $maxScale) returns $expected", ({value, algorithm, maxScale, expected}: TestEachRowSchema) => {
|
|
27
|
+
expect(NumberUtil.rounding(value, algorithm, maxScale)).toBe(expected);
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
describe("NumberUtil.roundingToString", () => {
|
|
32
|
+
test("throws if `scale` is invalid", () => {
|
|
33
|
+
expect(() => NumberUtil.roundingToString(10, "round", -1)).toThrow();
|
|
34
|
+
expect(() => NumberUtil.roundingToString(10, "round", 1.1)).toThrow();
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
type TestEachRowSchema = {value: number; algorithm: "round" | "ceil" | "floor"; scale: any; expected: number};
|
|
38
|
+
test.each`
|
|
39
|
+
value | algorithm | scale | expected
|
|
40
|
+
${3.65} | ${"floor"} | ${0} | ${"3"}
|
|
41
|
+
${3.65} | ${"floor"} | ${1} | ${"3.6"}
|
|
42
|
+
${3.65} | ${"floor"} | ${2} | ${"3.65"}
|
|
43
|
+
${3.65} | ${"floor"} | ${3} | ${"3.650"}
|
|
44
|
+
${7.45} | ${"ceil"} | ${0} | ${"8"}
|
|
45
|
+
${7.45} | ${"ceil"} | ${1} | ${"7.5"}
|
|
46
|
+
${7.45} | ${"ceil"} | ${2} | ${"7.45"}
|
|
47
|
+
${7.45} | ${"ceil"} | ${3} | ${"7.450"}
|
|
48
|
+
${1.664} | ${"round"} | ${0} | ${"2"}
|
|
49
|
+
${1.664} | ${"round"} | ${1} | ${"1.7"}
|
|
50
|
+
${1.664} | ${"round"} | ${2} | ${"1.66"}
|
|
51
|
+
${1.664} | ${"round"} | ${3} | ${"1.664"}
|
|
52
|
+
${1.664} | ${"round"} | ${4} | ${"1.6640"}
|
|
53
|
+
${4.975} | ${"round"} | ${2} | ${"4.98"}
|
|
54
|
+
`("rounding($value, '$algorithm', $scale) returns '$expected'", ({value, algorithm, scale, expected}: TestEachRowSchema) => {
|
|
55
|
+
expect(NumberUtil.roundingToString(value, algorithm, scale)).toBe(expected);
|
|
56
|
+
});
|
|
57
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import {TextUtil} from "@pinnacle0/web-ui/internal/TextUtil";
|
|
2
|
+
|
|
3
|
+
describe("TextUtil.interpolate", () => {
|
|
4
|
+
test("interpolates values", () => {
|
|
5
|
+
expect(TextUtil.interpolate("{1} {2}", "hello", "world")).toBe("hello world");
|
|
6
|
+
expect(TextUtil.interpolate("{2} {3} {1}", "jest", "This", "is")).toBe("This is jest");
|
|
7
|
+
expect(TextUtil.interpolate("{3} {2} {1}", "a", "b", "c")).toBe("c b a");
|
|
8
|
+
expect(TextUtil.interpolate("{3} {2} {1}", "a", "b", "c", "d")).toBe("c b a");
|
|
9
|
+
});
|
|
10
|
+
});
|
package/tsconfig.json
ADDED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import "./index.less";
|
|
3
|
-
declare type DrawerUserInfo = {
|
|
4
|
-
[title: string]: React.ReactElement | string | null;
|
|
5
|
-
};
|
|
6
|
-
interface Props {
|
|
7
|
-
onLogout: () => void;
|
|
8
|
-
drawerInfo: DrawerUserInfo;
|
|
9
|
-
}
|
|
10
|
-
interface State {
|
|
11
|
-
showDrawer: boolean;
|
|
12
|
-
}
|
|
13
|
-
export declare class NavigatorSide extends React.PureComponent<Props, State> {
|
|
14
|
-
static displayName: string;
|
|
15
|
-
constructor(props: Props);
|
|
16
|
-
showDrawer: () => void;
|
|
17
|
-
closeDrawer: () => void;
|
|
18
|
-
render(): JSX.Element;
|
|
19
|
-
}
|
|
20
|
-
export {};
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
var __read = (this && this.__read) || function (o, n) {
|
|
17
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
18
|
-
if (!m) return o;
|
|
19
|
-
var i = m.call(o), r, ar = [], e;
|
|
20
|
-
try {
|
|
21
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
22
|
-
}
|
|
23
|
-
catch (error) { e = { error: error }; }
|
|
24
|
-
finally {
|
|
25
|
-
try {
|
|
26
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
27
|
-
}
|
|
28
|
-
finally { if (e) throw e.error; }
|
|
29
|
-
}
|
|
30
|
-
return ar;
|
|
31
|
-
};
|
|
32
|
-
import React from "react";
|
|
33
|
-
import UserOutlined from "@ant-design/icons/UserOutlined";
|
|
34
|
-
import { Button } from "../../../../core/Button";
|
|
35
|
-
import { Drawer } from "../../../../core/Drawer";
|
|
36
|
-
import { i18n } from "../../../../internal/i18n/admin";
|
|
37
|
-
import "./index.less";
|
|
38
|
-
var NavigatorSide = /** @class */ (function (_super) {
|
|
39
|
-
__extends(NavigatorSide, _super);
|
|
40
|
-
function NavigatorSide(props) {
|
|
41
|
-
var _this = _super.call(this, props) || this;
|
|
42
|
-
_this.showDrawer = function () { return _this.setState({ showDrawer: true }); };
|
|
43
|
-
_this.closeDrawer = function () { return _this.setState({ showDrawer: false }); };
|
|
44
|
-
_this.state = {
|
|
45
|
-
showDrawer: false,
|
|
46
|
-
};
|
|
47
|
-
return _this;
|
|
48
|
-
}
|
|
49
|
-
NavigatorSide.prototype.render = function () {
|
|
50
|
-
var t = i18n();
|
|
51
|
-
var _a = this.props, onLogout = _a.onLogout, drawerInfo = _a.drawerInfo;
|
|
52
|
-
var showDrawer = this.state.showDrawer;
|
|
53
|
-
return (React.createElement(React.Fragment, null,
|
|
54
|
-
React.createElement(Button, { id: "admin-app-default-navigator-side-button", size: "small", onClick: this.showDrawer },
|
|
55
|
-
React.createElement(UserOutlined, null)),
|
|
56
|
-
React.createElement(Drawer, { width: 350, visible: showDrawer, closable: false, onClose: this.closeDrawer },
|
|
57
|
-
React.createElement("div", { id: "admin-app-default-drawer" },
|
|
58
|
-
React.createElement(UserOutlined, { className: "avatar" }),
|
|
59
|
-
React.createElement("div", { className: "grid" }, Object.entries(drawerInfo).map(function (_a, index) {
|
|
60
|
-
var _b = __read(_a, 2), title = _b[0], node = _b[1];
|
|
61
|
-
if (node) {
|
|
62
|
-
return (React.createElement("div", { className: "row", key: index },
|
|
63
|
-
React.createElement("b", { className: "label" }, title),
|
|
64
|
-
node));
|
|
65
|
-
}
|
|
66
|
-
})),
|
|
67
|
-
React.createElement("div", { className: "bottom" },
|
|
68
|
-
React.createElement(Button, { size: "large", onClick: onLogout }, t.logout))))));
|
|
69
|
-
};
|
|
70
|
-
NavigatorSide.displayName = "NavigatorSide";
|
|
71
|
-
return NavigatorSide;
|
|
72
|
-
}(React.PureComponent));
|
|
73
|
-
export { NavigatorSide };
|
|
74
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/admin/AdminApp/Default/NavigatorSide/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,YAAY,MAAM,gCAAgC,CAAC;AAC1D,OAAO,EAAC,MAAM,EAAC,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EAAC,MAAM,EAAC,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EAAC,IAAI,EAAC,MAAM,iCAAiC,CAAC;AACrD,OAAO,cAAc,CAAC;AAatB;IAAmC,iCAAiC;IAGhE,uBAAY,KAAY;QAAxB,YACI,kBAAM,KAAK,CAAC,SAIf;QAED,gBAAU,GAAG,cAAM,OAAA,KAAI,CAAC,QAAQ,CAAC,EAAC,UAAU,EAAE,IAAI,EAAC,CAAC,EAAjC,CAAiC,CAAC;QAErD,iBAAW,GAAG,cAAM,OAAA,KAAI,CAAC,QAAQ,CAAC,EAAC,UAAU,EAAE,KAAK,EAAC,CAAC,EAAlC,CAAkC,CAAC;QAPnD,KAAI,CAAC,KAAK,GAAG;YACT,UAAU,EAAE,KAAK;SACpB,CAAC;;IACN,CAAC;IAMD,8BAAM,GAAN;QACI,IAAM,CAAC,GAAG,IAAI,EAAE,CAAC;QACX,IAAA,KAAyB,IAAI,CAAC,KAAK,EAAlC,QAAQ,cAAA,EAAE,UAAU,gBAAc,CAAC;QACnC,IAAA,UAAU,GAAI,IAAI,CAAC,KAAK,WAAd,CAAe;QAEhC,OAAO,CACH,oBAAC,KAAK,CAAC,QAAQ;YACX,oBAAC,MAAM,IAAC,EAAE,EAAC,yCAAyC,EAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAE,IAAI,CAAC,UAAU;gBACtF,oBAAC,YAAY,OAAG,CACX;YACT,oBAAC,MAAM,IAAC,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,IAAI,CAAC,WAAW;gBAC/E,6BAAK,EAAE,EAAC,0BAA0B;oBAC9B,oBAAC,YAAY,IAAC,SAAS,EAAC,QAAQ,GAAG;oBACnC,6BAAK,SAAS,EAAC,MAAM,IAChB,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,UAAC,EAAa,EAAE,KAAK;4BAApB,KAAA,aAAa,EAAZ,KAAK,QAAA,EAAE,IAAI,QAAA;wBACzC,IAAI,IAAI,EAAE;4BACN,OAAO,CACH,6BAAK,SAAS,EAAC,KAAK,EAAC,GAAG,EAAE,KAAK;gCAC3B,2BAAG,SAAS,EAAC,OAAO,IAAE,KAAK,CAAK;gCAC/B,IAAI,CACH,CACT,CAAC;yBACL;oBACL,CAAC,CAAC,CACA;oBACN,6BAAK,SAAS,EAAC,QAAQ;wBACnB,oBAAC,MAAM,IAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAE,QAAQ,IACjC,CAAC,CAAC,MAAM,CACJ,CACP,CACJ,CACD,CACI,CACpB,CAAC;IACN,CAAC;IA/CM,yBAAW,GAAG,eAAe,CAAC;IAgDzC,oBAAC;CAAA,AAjDD,CAAmC,KAAK,CAAC,aAAa,GAiDrD;SAjDY,aAAa"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface Props {
|
|
3
|
-
}
|
|
4
|
-
interface State {
|
|
5
|
-
soundEnabled: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare class SoundSwitch extends React.PureComponent<Props, State> {
|
|
8
|
-
static displayName: string;
|
|
9
|
-
private readonly soundEnabledKey;
|
|
10
|
-
constructor(props: Props);
|
|
11
|
-
toggleSoundSwitch: () => void;
|
|
12
|
-
render(): JSX.Element;
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import React from "react";
|
|
17
|
-
import { LocalStorageUtil } from "../../../util/LocalStorageUtil";
|
|
18
|
-
import { BoolSwitch } from "../../../core/BoolSwitch";
|
|
19
|
-
var SoundSwitch = /** @class */ (function (_super) {
|
|
20
|
-
__extends(SoundSwitch, _super);
|
|
21
|
-
function SoundSwitch(props) {
|
|
22
|
-
var _this = _super.call(this, props) || this;
|
|
23
|
-
_this.soundEnabledKey = "admin-sound-enabled";
|
|
24
|
-
_this.toggleSoundSwitch = function () {
|
|
25
|
-
var newValue = !_this.state.soundEnabled;
|
|
26
|
-
_this.setState({ soundEnabled: newValue });
|
|
27
|
-
LocalStorageUtil.setBool(_this.soundEnabledKey, newValue);
|
|
28
|
-
};
|
|
29
|
-
_this.state = {
|
|
30
|
-
soundEnabled: LocalStorageUtil.getBool(_this.soundEnabledKey, true),
|
|
31
|
-
};
|
|
32
|
-
return _this;
|
|
33
|
-
}
|
|
34
|
-
SoundSwitch.prototype.render = function () {
|
|
35
|
-
return React.createElement(BoolSwitch.OnOff, { value: this.state.soundEnabled, onChange: this.toggleSoundSwitch });
|
|
36
|
-
};
|
|
37
|
-
SoundSwitch.displayName = "SoundSwitch";
|
|
38
|
-
return SoundSwitch;
|
|
39
|
-
}(React.PureComponent));
|
|
40
|
-
export { SoundSwitch };
|
|
41
|
-
//# sourceMappingURL=SoundSwitch.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SoundSwitch.js","sourceRoot":"","sources":["../../../../src/admin/AdminApp/Default/SoundSwitch.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,gBAAgB,EAAC,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AAQpD;IAAiC,+BAAiC;IAK9D,qBAAY,KAAY;QAAxB,YACI,kBAAM,KAAK,CAAC,SAIf;QAPgB,qBAAe,GAAG,qBAAqB,CAAC;QASzD,uBAAiB,GAAG;YAChB,IAAM,QAAQ,GAAG,CAAC,KAAI,CAAC,KAAK,CAAC,YAAY,CAAC;YAC1C,KAAI,CAAC,QAAQ,CAAC,EAAC,YAAY,EAAE,QAAQ,EAAC,CAAC,CAAC;YACxC,gBAAgB,CAAC,OAAO,CAAC,KAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;QAC7D,CAAC,CAAC;QATE,KAAI,CAAC,KAAK,GAAG;YACT,YAAY,EAAE,gBAAgB,CAAC,OAAO,CAAC,KAAI,CAAC,eAAe,EAAE,IAAI,CAAC;SACrE,CAAC;;IACN,CAAC;IAQD,4BAAM,GAAN;QACI,OAAO,oBAAC,UAAU,CAAC,KAAK,IAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,YAAY,EAAE,QAAQ,EAAE,IAAI,CAAC,iBAAiB,GAAI,CAAC;IAClG,CAAC;IAnBM,uBAAW,GAAG,aAAa,CAAC;IAoBvC,kBAAC;CAAA,AArBD,CAAiC,KAAK,CAAC,aAAa,GAqBnD;SArBY,WAAW"}
|