@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.
Files changed (878) hide show
  1. package/config/jest-stubs/style-stub.js +13 -0
  2. package/config/jest.config.ts +57 -0
  3. package/config/tsconfig.script.json +12 -0
  4. package/config/tsconfig.src.json +15 -0
  5. package/config/tsconfig.test.json +20 -0
  6. package/package.json +1 -1
  7. package/script/build.ts +103 -0
  8. package/script/format.ts +7 -0
  9. package/script/start-mobile.ts +13 -0
  10. package/script/start.ts +31 -0
  11. package/{admin → src/admin}/AdminApp/Default/NavigatorSide/index.less +0 -0
  12. package/src/admin/AdminApp/Default/NavigatorSide/index.tsx +68 -0
  13. package/src/admin/AdminApp/Default/SoundSwitch.tsx +32 -0
  14. package/{admin → src/admin}/AdminApp/Default/SquareLogo/index.less +0 -0
  15. package/src/admin/AdminApp/Default/SquareLogo/index.tsx +32 -0
  16. package/src/admin/AdminApp/Menu.tsx +154 -0
  17. package/src/admin/AdminApp/Navigator.tsx +186 -0
  18. package/src/admin/AdminApp/NotFound.tsx +24 -0
  19. package/src/admin/AdminApp/RouteSwitch.tsx +61 -0
  20. package/src/admin/AdminApp/WithErrorBoundary.tsx +36 -0
  21. package/{admin → src/admin}/AdminApp/asset/alert.mp3 +0 -0
  22. package/src/admin/AdminApp/context.ts +13 -0
  23. package/{admin → src/admin}/AdminApp/index.less +0 -0
  24. package/src/admin/AdminApp/index.tsx +96 -0
  25. package/src/admin/AdminPage/Filter.tsx +76 -0
  26. package/src/admin/AdminPage/Result.tsx +41 -0
  27. package/src/admin/AdminPage/SaveBar.tsx +33 -0
  28. package/src/admin/AdminPage/Summary.tsx +15 -0
  29. package/src/admin/AdminPage/TopBar.tsx +15 -0
  30. package/{admin → src/admin}/AdminPage/index.less +0 -0
  31. package/src/admin/AdminPage/index.tsx +29 -0
  32. package/src/admin/AdminPermissionSelector.tsx +299 -0
  33. package/{admin → src/admin}/RichEditor/index.less +0 -0
  34. package/src/admin/RichEditor/index.tsx +123 -0
  35. package/src/core/Amount/AmountPercentage.tsx +27 -0
  36. package/{core → src/core}/Amount/index.less +0 -0
  37. package/src/core/Amount/index.tsx +71 -0
  38. package/src/core/AmountConditionInput.tsx +63 -0
  39. package/src/core/AmountRangeInput.tsx +66 -0
  40. package/src/core/AuthenticationCodeInput.tsx +85 -0
  41. package/src/core/AutoCompleteInput.tsx +16 -0
  42. package/{core → src/core}/Badge/index.less +0 -0
  43. package/src/core/Badge/index.tsx +15 -0
  44. package/src/core/BoolRadio.tsx +62 -0
  45. package/src/core/BoolSelect.tsx +50 -0
  46. package/src/core/BoolSwitch.tsx +37 -0
  47. package/{core → src/core}/Breadcrumb/index.less +0 -0
  48. package/src/core/Breadcrumb/index.tsx +46 -0
  49. package/{core → src/core}/Button/index.less +0 -0
  50. package/src/core/Button/index.tsx +59 -0
  51. package/src/core/Card.tsx +16 -0
  52. package/src/core/Carousel.tsx +19 -0
  53. package/{core → src/core}/Carousel3D/index.less +0 -0
  54. package/src/core/Carousel3D/index.tsx +150 -0
  55. package/src/core/Cascader/InitialNullable.tsx +20 -0
  56. package/src/core/Cascader/Nullable.tsx +28 -0
  57. package/{core → src/core}/Cascader/index.less +0 -0
  58. package/src/core/Cascader/index.tsx +93 -0
  59. package/{core → src/core}/Checkbox/index.less +0 -0
  60. package/src/core/Checkbox/index.tsx +24 -0
  61. package/src/core/Collapse.tsx +19 -0
  62. package/src/core/Countdown/SlidingDigit.tsx +39 -0
  63. package/{core → src/core}/Countdown/index.less +0 -0
  64. package/src/core/Countdown/index.tsx +125 -0
  65. package/{core → src/core}/DarkOverlay/index.less +0 -0
  66. package/src/core/DarkOverlay/index.tsx +24 -0
  67. package/src/core/DateCalendar.tsx +106 -0
  68. package/{core → src/core}/DatePicker/index.less +0 -0
  69. package/src/core/DatePicker/index.tsx +54 -0
  70. package/{core → src/core}/DateRangePicker/index.less +0 -0
  71. package/src/core/DateRangePicker/index.tsx +58 -0
  72. package/{core → src/core}/DateTimePicker/index.less +0 -0
  73. package/src/core/DateTimePicker/index.tsx +61 -0
  74. package/{core → src/core}/DateTimeRangePicker/index.less +0 -0
  75. package/src/core/DateTimeRangePicker/index.tsx +60 -0
  76. package/{core → src/core}/Descriptions/index.less +0 -0
  77. package/src/core/Descriptions/index.tsx +45 -0
  78. package/src/core/DocumentTitle.tsx +58 -0
  79. package/src/core/Drawer.tsx +14 -0
  80. package/src/core/Dropdown.tsx +10 -0
  81. package/src/core/EnumCheckboxGroup/Map.tsx +21 -0
  82. package/src/core/EnumCheckboxGroup/index.tsx +23 -0
  83. package/src/core/EnumRadio/InitialNullable.tsx +24 -0
  84. package/src/core/EnumRadio/Map.tsx +21 -0
  85. package/src/core/EnumRadio/Nullable.tsx +31 -0
  86. package/src/core/EnumRadio/index.tsx +45 -0
  87. package/src/core/EnumSelect/InitialNullable.tsx +20 -0
  88. package/src/core/EnumSelect/Map.tsx +21 -0
  89. package/src/core/EnumSelect/Nullable.tsx +31 -0
  90. package/{core → src/core}/EnumSelect/index.less +0 -0
  91. package/src/core/EnumSelect/index.tsx +74 -0
  92. package/src/core/FlatList/VirtualFlatList/Item.tsx +28 -0
  93. package/{core → src/core}/FlatList/VirtualFlatList/index.less +0 -0
  94. package/src/core/FlatList/VirtualFlatList/index.tsx +142 -0
  95. package/src/core/FlatList/VirtualFlatList/type.ts +26 -0
  96. package/src/core/FlatList/index.tsx +95 -0
  97. package/{core → src/core}/FlatList/shared/Footer/index.less +0 -0
  98. package/src/core/FlatList/shared/Footer/index.tsx +23 -0
  99. package/src/core/FlatList/shared/GetRowKey.ts +11 -0
  100. package/{core → src/core}/FlatList/shared/Spinner/index.less +0 -0
  101. package/src/core/FlatList/shared/Spinner/index.tsx +18 -0
  102. package/src/core/FlatList/shared/Wrapper/Loading.tsx +17 -0
  103. package/{core → src/core}/FlatList/shared/Wrapper/index.less +0 -0
  104. package/src/core/FlatList/shared/Wrapper/index.tsx +123 -0
  105. package/src/core/FlatList/shared/hooks/useBounceSwipe.ts +120 -0
  106. package/src/core/FlatList/shared/hooks/useElementScrollState.ts +43 -0
  107. package/src/core/FlatList/shared/hooks/useLoadingWithDelay.ts +40 -0
  108. package/src/core/FlatList/type.tsx +56 -0
  109. package/{core → src/core}/Foldable/index.less +0 -0
  110. package/src/core/Foldable/index.tsx +38 -0
  111. package/src/core/Form/Item.tsx +87 -0
  112. package/src/core/Form/context.ts +16 -0
  113. package/{core → src/core}/Form/index.less +0 -0
  114. package/src/core/Form/index.tsx +109 -0
  115. package/src/core/Grid.tsx +7 -0
  116. package/{core → src/core}/HTMLContent/index.less +0 -0
  117. package/src/core/HTMLContent/index.tsx +17 -0
  118. package/{core → src/core}/ImageUploader/index.less +0 -0
  119. package/src/core/ImageUploader/index.tsx +104 -0
  120. package/{core → src/core}/Input/index.less +0 -0
  121. package/src/core/Input/index.tsx +63 -0
  122. package/src/core/LabelledSelect.tsx +15 -0
  123. package/src/core/Link.tsx +57 -0
  124. package/src/core/LocalImporter.tsx +62 -0
  125. package/src/core/LocaleProvider.tsx +31 -0
  126. package/src/core/LocaleSelect.tsx +36 -0
  127. package/{core → src/core}/Markdown/index.less +0 -0
  128. package/src/core/Markdown/index.tsx +42 -0
  129. package/{core → src/core}/Modal/index.less +0 -0
  130. package/src/core/Modal/index.tsx +37 -0
  131. package/{core → src/core}/MultipleCascader/index.less +0 -0
  132. package/src/core/MultipleCascader/index.tsx +114 -0
  133. package/src/core/MultipleEnumSelect.tsx +28 -0
  134. package/src/core/MultipleSelector/TablePopover.tsx +62 -0
  135. package/src/core/MultipleSelector/index.tsx +106 -0
  136. package/{core → src/core}/MutableTable/index.less +0 -0
  137. package/src/core/MutableTable/index.tsx +151 -0
  138. package/src/core/NumberInput/NumberInputPercentage.tsx +103 -0
  139. package/{core → src/core}/NumberInput/index.less +0 -0
  140. package/src/core/NumberInput/index.tsx +192 -0
  141. package/src/core/NumberInput/util.ts +55 -0
  142. package/{core → src/core}/OverflowableText/index.less +0 -0
  143. package/src/core/OverflowableText/index.tsx +66 -0
  144. package/{core → src/core}/PagedList/index.less +0 -0
  145. package/src/core/PagedList/index.tsx +93 -0
  146. package/{core → src/core}/Pagination/index.less +0 -0
  147. package/src/core/Pagination/index.tsx +59 -0
  148. package/{core → src/core}/Popover/index.less +0 -0
  149. package/src/core/Popover/index.tsx +15 -0
  150. package/src/core/Progress.tsx +14 -0
  151. package/{core → src/core}/Radio/index.less +0 -0
  152. package/src/core/Radio/index.tsx +21 -0
  153. package/src/core/RelativeTime.tsx +59 -0
  154. package/src/core/ResizeObserver.tsx +2 -0
  155. package/src/core/SearchableSelect.tsx +17 -0
  156. package/{core → src/core}/Select/index.less +0 -0
  157. package/src/core/Select/index.tsx +25 -0
  158. package/src/core/SignedAmountInput.tsx +59 -0
  159. package/src/core/Skeleton.tsx +14 -0
  160. package/src/core/Slider/RangeSlider.tsx +17 -0
  161. package/{core → src/core}/Slider/index.less +0 -0
  162. package/src/core/Slider/index.tsx +50 -0
  163. package/src/core/Space.tsx +14 -0
  164. package/src/core/Spin.tsx +25 -0
  165. package/{core → src/core}/StepFormContainer/index.less +0 -0
  166. package/src/core/StepFormContainer/index.tsx +66 -0
  167. package/{core → src/core}/Steps/index.less +0 -0
  168. package/src/core/Steps/index.tsx +17 -0
  169. package/{core → src/core}/Table/index.less +0 -0
  170. package/src/core/Table/index.tsx +221 -0
  171. package/src/core/Tabs/Single.tsx +25 -0
  172. package/{core → src/core}/Tabs/index.less +0 -0
  173. package/src/core/Tabs/index.tsx +82 -0
  174. package/src/core/Tag.tsx +17 -0
  175. package/{core → src/core}/TagInput/index.less +0 -0
  176. package/src/core/TagInput/index.tsx +94 -0
  177. package/src/core/Tags.tsx +34 -0
  178. package/{core → src/core}/TimePicker/index.less +0 -0
  179. package/src/core/TimePicker/index.tsx +44 -0
  180. package/{core → src/core}/TimeRangePicker/index.less +0 -0
  181. package/src/core/TimeRangePicker/index.tsx +42 -0
  182. package/src/core/Tooltip.tsx +17 -0
  183. package/{core → src/core}/TypedTabs/index.less +0 -0
  184. package/src/core/TypedTabs/index.tsx +43 -0
  185. package/src/core/Uploader.tsx +118 -0
  186. package/{core → src/core}/VerticalMarquee/index.less +0 -0
  187. package/src/core/VerticalMarquee/index.tsx +51 -0
  188. package/src/core/VirtualTable/TableHeader.tsx +41 -0
  189. package/src/core/VirtualTable/TableRow.tsx +90 -0
  190. package/src/core/VirtualTable/hooks/useColumnWidths.ts +24 -0
  191. package/src/core/VirtualTable/hooks/useDebounce.ts +18 -0
  192. package/src/core/VirtualTable/hooks/useLayout.tsx +58 -0
  193. package/src/core/VirtualTable/hooks/useRowExpand.tsx +27 -0
  194. package/src/core/VirtualTable/hooks/useRowSelection.tsx +72 -0
  195. package/src/core/VirtualTable/hooks/useScrollBarSize.ts +23 -0
  196. package/src/core/VirtualTable/hooks/useScrollToEdge.ts +36 -0
  197. package/src/core/VirtualTable/hooks/useStickyPosition.ts +28 -0
  198. package/src/core/VirtualTable/hooks/useTransformColumn.ts +19 -0
  199. package/{core → src/core}/VirtualTable/index.less +0 -0
  200. package/src/core/VirtualTable/index.tsx +143 -0
  201. package/src/core/VirtualTable/type.ts +59 -0
  202. package/{core → src/core}/WithExplanation/index.less +0 -0
  203. package/src/core/WithExplanation/index.tsx +47 -0
  204. package/src/core/WithTooltipList.tsx +89 -0
  205. package/src/core/YearMonthSelector.tsx +53 -0
  206. package/{css → src/css}/global.less +0 -0
  207. package/{css → src/css}/variable.less +0 -0
  208. package/src/hooks/useOrientationMode.ts +18 -0
  209. package/src/hooks/useSwipe/controller.ts +133 -0
  210. package/src/hooks/useSwipe/index.ts +11 -0
  211. package/src/hooks/useSwipe/type.ts +45 -0
  212. package/src/hooks/useTransform.ts +78 -0
  213. package/src/internal/ArrayUtil.ts +53 -0
  214. package/src/internal/ExpirableLocalStorage.ts +262 -0
  215. package/src/internal/Memo.ts +28 -0
  216. package/src/internal/NumberUtil.ts +38 -0
  217. package/src/internal/StorageHelper.ts +152 -0
  218. package/src/internal/TextUtil.ts +11 -0
  219. package/src/internal/i18n/admin/en.ts +18 -0
  220. package/src/internal/i18n/admin/index.ts +13 -0
  221. package/src/internal/i18n/admin/zh.ts +18 -0
  222. package/src/internal/i18n/core/en.ts +37 -0
  223. package/src/internal/i18n/core/index.ts +13 -0
  224. package/src/internal/i18n/core/zh.ts +37 -0
  225. package/src/internal/i18n/util/en.ts +9 -0
  226. package/src/internal/i18n/util/index.ts +13 -0
  227. package/src/internal/i18n/util/zh.ts +9 -0
  228. package/src/internal/type.ts +12 -0
  229. package/src/util/AdminNavigatorBase.ts +99 -0
  230. package/src/util/BrowserBookmarkUtil.ts +24 -0
  231. package/src/util/BrowserUtil.ts +122 -0
  232. package/src/util/CanvasUtil.ts +61 -0
  233. package/src/util/ClassNames.ts +2 -0
  234. package/src/util/Clipboard.ts +61 -0
  235. package/src/util/ExpirableLocalStorageUtil.ts +3 -0
  236. package/src/util/ExportUtil.ts +34 -0
  237. package/src/util/ImportUtil.ts +41 -0
  238. package/src/util/LocalStorageUtil.ts +3 -0
  239. package/src/util/LocaleUtil.ts +47 -0
  240. package/{util → src/util}/MediaUtil/index.less +0 -0
  241. package/src/util/MediaUtil/index.tsx +69 -0
  242. package/{util → src/util}/MessageUtil/index.less +0 -0
  243. package/src/util/MessageUtil/index.tsx +23 -0
  244. package/{util → src/util}/ModalUtil/index.less +0 -0
  245. package/src/util/ModalUtil/index.tsx +179 -0
  246. package/src/util/NotificationUtil.tsx +42 -0
  247. package/src/util/OrientationUtil.ts +51 -0
  248. package/src/util/PromptUtil/PromptBody.tsx +62 -0
  249. package/{util → src/util}/PromptUtil/index.less +0 -0
  250. package/src/util/PromptUtil/index.tsx +50 -0
  251. package/src/util/RecentUsedStorageUtil.ts +46 -0
  252. package/src/util/SessionStorageUtil.ts +3 -0
  253. package/src/util/SwipeUtil.ts +25 -0
  254. package/src/util/UploadUtil/index.ts +73 -0
  255. package/src/util/UploadUtil/type.ts +46 -0
  256. package/test/mobile-ui-test/package.json +5 -0
  257. package/test/mobile-ui-test/src/component/FlatListDemo/fetch.ts +18 -0
  258. package/test/mobile-ui-test/src/component/FlatListDemo/index.less +22 -0
  259. package/test/mobile-ui-test/src/component/FlatListDemo/index.tsx +149 -0
  260. package/test/mobile-ui-test/src/component/Main.tsx +6 -0
  261. package/test/mobile-ui-test/src/index.html +12 -0
  262. package/test/mobile-ui-test/src/index.less +18 -0
  263. package/test/mobile-ui-test/src/index.tsx +6 -0
  264. package/test/mobile-ui-test/static/robots.txt +2 -0
  265. package/test/mobile-ui-test/tsconfig.json +4 -0
  266. package/test/ui-test/package.json +5 -0
  267. package/test/ui-test/src/asset/logo.png +0 -0
  268. package/test/ui-test/src/component/DemoHelper/index.less +33 -0
  269. package/test/ui-test/src/component/DemoHelper/index.tsx +55 -0
  270. package/test/ui-test/src/component/Main.tsx +33 -0
  271. package/test/ui-test/src/component/WebUILogo.tsx +7 -0
  272. package/test/ui-test/src/component/WebUINavigatorSide.tsx +20 -0
  273. package/test/ui-test/src/component/admin/ConfigPageDemo.tsx +39 -0
  274. package/test/ui-test/src/component/admin/NavigationHistoryDemo.tsx +30 -0
  275. package/test/ui-test/src/component/admin/PermissionSelectorDemo.tsx +65 -0
  276. package/test/ui-test/src/component/admin/RenderErrorDemo.tsx +5 -0
  277. package/test/ui-test/src/component/admin/ResultPageDemo.tsx +13 -0
  278. package/test/ui-test/src/component/admin/RichEditorDemo.tsx +20 -0
  279. package/test/ui-test/src/component/admin/SeparateTabDetailDemo.tsx +44 -0
  280. package/test/ui-test/src/component/admin/TablePageDemo.tsx +85 -0
  281. package/test/ui-test/src/component/core/AmountDemo.tsx +117 -0
  282. package/test/ui-test/src/component/core/ButtonDemo/__tests__/__snapshots__/dom-snapshot.test.tsx.snap +12 -0
  283. package/test/ui-test/src/component/core/ButtonDemo/__tests__/dom-snapshot.test.tsx +10 -0
  284. package/test/ui-test/src/component/core/ButtonDemo/__tests__/smoke.test.tsx +71 -0
  285. package/test/ui-test/src/component/core/ButtonDemo/index.tsx +39 -0
  286. package/test/ui-test/src/component/core/CalendarDemo.tsx +98 -0
  287. package/test/ui-test/src/component/core/CarouselDemo/index.tsx +51 -0
  288. package/test/ui-test/src/component/core/CascaderDemo/index.tsx +120 -0
  289. package/test/ui-test/src/component/core/FoldableDemo.tsx +31 -0
  290. package/test/ui-test/src/component/core/FormDemo.tsx +204 -0
  291. package/test/ui-test/src/component/core/InputDemo/index.tsx +123 -0
  292. package/test/ui-test/src/component/core/MiscellaneousDemo/TagInputDemo.tsx +8 -0
  293. package/test/ui-test/src/component/core/MiscellaneousDemo/index.tsx +157 -0
  294. package/test/ui-test/src/component/core/ModalDemo/index.tsx +75 -0
  295. package/test/ui-test/src/component/core/OverflowableTextDemo.tsx +78 -0
  296. package/test/ui-test/src/component/core/RelativeTimeDemo.tsx +35 -0
  297. package/test/ui-test/src/component/core/SelectDemo/index.tsx +141 -0
  298. package/test/ui-test/src/component/core/SliderDemo.tsx +44 -0
  299. package/test/ui-test/src/component/core/StepContainerDemo.tsx +53 -0
  300. package/test/ui-test/src/component/core/TableDemo.tsx +81 -0
  301. package/test/ui-test/src/component/core/TabsDemo.tsx +136 -0
  302. package/test/ui-test/src/component/core/UploaderImporterDemo.tsx +52 -0
  303. package/test/ui-test/src/component/core/VirtualTableDemo.tsx +232 -0
  304. package/test/ui-test/src/dummy/dummyCallback.ts +13 -0
  305. package/test/ui-test/src/dummy/dummyList.ts +63 -0
  306. package/test/ui-test/src/dummy/dummyTableData.tsx +60 -0
  307. package/test/ui-test/src/dummy/dummyUpload.tsx +43 -0
  308. package/test/ui-test/src/index.html +11 -0
  309. package/test/ui-test/src/index.tsx +5 -0
  310. package/test/ui-test/src/type.ts +8 -0
  311. package/test/ui-test/src/util/NavigationService.tsx +217 -0
  312. package/test/ui-test/src/util/withUncontrolledInitialValue.tsx +14 -0
  313. package/test/ui-test/static/robots.txt +2 -0
  314. package/test/ui-test/tsconfig.json +3 -0
  315. package/test/unit-test/ClassNames.test.ts +17 -0
  316. package/test/unit-test/ExpirableLocalStorageUtil.test.ts +42 -0
  317. package/test/unit-test/NumberInput.util.test.ts +344 -0
  318. package/test/unit-test/NumberUtil.test.ts +57 -0
  319. package/test/unit-test/TextUtil.test.ts +10 -0
  320. package/tsconfig.json +15 -0
  321. package/admin/AdminApp/Default/NavigatorSide/index.d.ts +0 -20
  322. package/admin/AdminApp/Default/NavigatorSide/index.js +0 -74
  323. package/admin/AdminApp/Default/NavigatorSide/index.js.map +0 -1
  324. package/admin/AdminApp/Default/SoundSwitch.d.ts +0 -14
  325. package/admin/AdminApp/Default/SoundSwitch.js +0 -41
  326. package/admin/AdminApp/Default/SoundSwitch.js.map +0 -1
  327. package/admin/AdminApp/Default/SquareLogo/index.d.ts +0 -15
  328. package/admin/AdminApp/Default/SquareLogo/index.js +0 -39
  329. package/admin/AdminApp/Default/SquareLogo/index.js.map +0 -1
  330. package/admin/AdminApp/Menu.d.ts +0 -52
  331. package/admin/AdminApp/Menu.js +0 -174
  332. package/admin/AdminApp/Menu.js.map +0 -1
  333. package/admin/AdminApp/Navigator.d.ts +0 -30
  334. package/admin/AdminApp/Navigator.js +0 -200
  335. package/admin/AdminApp/Navigator.js.map +0 -1
  336. package/admin/AdminApp/NotFound.d.ts +0 -10
  337. package/admin/AdminApp/NotFound.js +0 -37
  338. package/admin/AdminApp/NotFound.js.map +0 -1
  339. package/admin/AdminApp/RouteSwitch.d.ts +0 -19
  340. package/admin/AdminApp/RouteSwitch.js +0 -64
  341. package/admin/AdminApp/RouteSwitch.js.map +0 -1
  342. package/admin/AdminApp/WithErrorBoundary.d.ts +0 -15
  343. package/admin/AdminApp/WithErrorBoundary.js +0 -39
  344. package/admin/AdminApp/WithErrorBoundary.js.map +0 -1
  345. package/admin/AdminApp/context.d.ts +0 -7
  346. package/admin/AdminApp/context.js +0 -7
  347. package/admin/AdminApp/context.js.map +0 -1
  348. package/admin/AdminApp/index.d.ts +0 -39
  349. package/admin/AdminApp/index.js +0 -76
  350. package/admin/AdminApp/index.js.map +0 -1
  351. package/admin/AdminPage/Filter.d.ts +0 -23
  352. package/admin/AdminPage/Filter.js +0 -60
  353. package/admin/AdminPage/Filter.js.map +0 -1
  354. package/admin/AdminPage/Result.d.ts +0 -19
  355. package/admin/AdminPage/Result.js +0 -43
  356. package/admin/AdminPage/Result.js.map +0 -1
  357. package/admin/AdminPage/SaveBar.d.ts +0 -10
  358. package/admin/AdminPage/SaveBar.js +0 -37
  359. package/admin/AdminPage/SaveBar.js.map +0 -1
  360. package/admin/AdminPage/Summary.d.ts +0 -9
  361. package/admin/AdminPage/Summary.js +0 -30
  362. package/admin/AdminPage/Summary.js.map +0 -1
  363. package/admin/AdminPage/TopBar.d.ts +0 -9
  364. package/admin/AdminPage/TopBar.js +0 -30
  365. package/admin/AdminPage/TopBar.js.map +0 -1
  366. package/admin/AdminPage/index.d.ts +0 -21
  367. package/admin/AdminPage/index.js +0 -42
  368. package/admin/AdminPage/index.js.map +0 -1
  369. package/admin/AdminPermissionSelector.d.ts +0 -45
  370. package/admin/AdminPermissionSelector.js +0 -213
  371. package/admin/AdminPermissionSelector.js.map +0 -1
  372. package/admin/RichEditor/index.d.ts +0 -34
  373. package/admin/RichEditor/index.js +0 -104
  374. package/admin/RichEditor/index.js.map +0 -1
  375. package/core/Amount/AmountPercentage.d.ts +0 -19
  376. package/core/Amount/AmountPercentage.js +0 -54
  377. package/core/Amount/AmountPercentage.js.map +0 -1
  378. package/core/Amount/index.d.ts +0 -26
  379. package/core/Amount/index.js +0 -65
  380. package/core/Amount/index.js.map +0 -1
  381. package/core/AmountConditionInput.d.ts +0 -28
  382. package/core/AmountConditionInput.js +0 -66
  383. package/core/AmountConditionInput.js.map +0 -1
  384. package/core/AmountRangeInput.d.ts +0 -23
  385. package/core/AmountRangeInput.js +0 -59
  386. package/core/AmountRangeInput.js.map +0 -1
  387. package/core/AuthenticationCodeInput.d.ts +0 -25
  388. package/core/AuthenticationCodeInput.js +0 -149
  389. package/core/AuthenticationCodeInput.js.map +0 -1
  390. package/core/AutoCompleteInput.d.ts +0 -10
  391. package/core/AutoCompleteInput.js +0 -43
  392. package/core/AutoCompleteInput.js.map +0 -1
  393. package/core/Badge/index.d.ts +0 -10
  394. package/core/Badge/index.js +0 -43
  395. package/core/Badge/index.js.map +0 -1
  396. package/core/BoolRadio.d.ts +0 -20
  397. package/core/BoolRadio.js +0 -49
  398. package/core/BoolRadio.js.map +0 -1
  399. package/core/BoolSelect.d.ts +0 -19
  400. package/core/BoolSelect.js +0 -48
  401. package/core/BoolSelect.js.map +0 -1
  402. package/core/BoolSwitch.d.ts +0 -17
  403. package/core/BoolSwitch.js +0 -56
  404. package/core/BoolSwitch.js.map +0 -1
  405. package/core/Breadcrumb/index.d.ts +0 -17
  406. package/core/Breadcrumb/index.js +0 -45
  407. package/core/Breadcrumb/index.js.map +0 -1
  408. package/core/Button/index.d.ts +0 -37
  409. package/core/Button/index.js +0 -60
  410. package/core/Button/index.js.map +0 -1
  411. package/core/Card.d.ts +0 -10
  412. package/core/Card.js +0 -43
  413. package/core/Card.js.map +0 -1
  414. package/core/Carousel.d.ts +0 -11
  415. package/core/Carousel.js +0 -54
  416. package/core/Carousel.js.map +0 -1
  417. package/core/Carousel3D/index.d.ts +0 -27
  418. package/core/Carousel3D/index.js +0 -116
  419. package/core/Carousel3D/index.js.map +0 -1
  420. package/core/Cascader/InitialNullable.d.ts +0 -10
  421. package/core/Cascader/InitialNullable.js +0 -54
  422. package/core/Cascader/InitialNullable.js.map +0 -1
  423. package/core/Cascader/Nullable.d.ts +0 -12
  424. package/core/Cascader/Nullable.js +0 -86
  425. package/core/Cascader/Nullable.js.map +0 -1
  426. package/core/Cascader/index.d.ts +0 -37
  427. package/core/Cascader/index.js +0 -117
  428. package/core/Cascader/index.js.map +0 -1
  429. package/core/Checkbox/index.d.ts +0 -15
  430. package/core/Checkbox/index.js +0 -47
  431. package/core/Checkbox/index.js.map +0 -1
  432. package/core/Collapse.d.ts +0 -12
  433. package/core/Collapse.js +0 -43
  434. package/core/Collapse.js.map +0 -1
  435. package/core/Countdown/SlidingDigit.d.ts +0 -15
  436. package/core/Countdown/SlidingDigit.js +0 -43
  437. package/core/Countdown/SlidingDigit.js.map +0 -1
  438. package/core/Countdown/index.d.ts +0 -39
  439. package/core/Countdown/index.js +0 -106
  440. package/core/Countdown/index.js.map +0 -1
  441. package/core/DarkOverlay/index.d.ts +0 -12
  442. package/core/DarkOverlay/index.js +0 -32
  443. package/core/DarkOverlay/index.js.map +0 -1
  444. package/core/DateCalendar.d.ts +0 -18
  445. package/core/DateCalendar.js +0 -85
  446. package/core/DateCalendar.js.map +0 -1
  447. package/core/DatePicker/index.d.ts +0 -18
  448. package/core/DatePicker/index.js +0 -53
  449. package/core/DatePicker/index.js.map +0 -1
  450. package/core/DateRangePicker/index.d.ts +0 -18
  451. package/core/DateRangePicker/index.js +0 -59
  452. package/core/DateRangePicker/index.js.map +0 -1
  453. package/core/DateTimePicker/index.d.ts +0 -19
  454. package/core/DateTimePicker/index.js +0 -59
  455. package/core/DateTimePicker/index.js.map +0 -1
  456. package/core/DateTimeRangePicker/index.d.ts +0 -20
  457. package/core/DateTimeRangePicker/index.js +0 -59
  458. package/core/DateTimeRangePicker/index.js.map +0 -1
  459. package/core/Descriptions/index.d.ts +0 -27
  460. package/core/Descriptions/index.js +0 -51
  461. package/core/Descriptions/index.js.map +0 -1
  462. package/core/DocumentTitle.d.ts +0 -28
  463. package/core/DocumentTitle.js +0 -53
  464. package/core/DocumentTitle.js.map +0 -1
  465. package/core/Drawer.d.ts +0 -9
  466. package/core/Drawer.js +0 -41
  467. package/core/Drawer.js.map +0 -1
  468. package/core/Dropdown.d.ts +0 -9
  469. package/core/Dropdown.js +0 -10
  470. package/core/Dropdown.js.map +0 -1
  471. package/core/EnumCheckboxGroup/Map.d.ts +0 -10
  472. package/core/EnumCheckboxGroup/Map.js +0 -55
  473. package/core/EnumCheckboxGroup/Map.js.map +0 -1
  474. package/core/EnumCheckboxGroup/index.d.ts +0 -12
  475. package/core/EnumCheckboxGroup/index.js +0 -36
  476. package/core/EnumCheckboxGroup/index.js.map +0 -1
  477. package/core/EnumRadio/InitialNullable.d.ts +0 -11
  478. package/core/EnumRadio/InitialNullable.js +0 -56
  479. package/core/EnumRadio/InitialNullable.js.map +0 -1
  480. package/core/EnumRadio/Map.d.ts +0 -10
  481. package/core/EnumRadio/Map.js +0 -55
  482. package/core/EnumRadio/Map.js.map +0 -1
  483. package/core/EnumRadio/Nullable.d.ts +0 -12
  484. package/core/EnumRadio/Nullable.js +0 -88
  485. package/core/EnumRadio/Nullable.js.map +0 -1
  486. package/core/EnumRadio/index.d.ts +0 -24
  487. package/core/EnumRadio/index.js +0 -45
  488. package/core/EnumRadio/index.js.map +0 -1
  489. package/core/EnumSelect/InitialNullable.d.ts +0 -10
  490. package/core/EnumSelect/InitialNullable.js +0 -54
  491. package/core/EnumSelect/InitialNullable.js.map +0 -1
  492. package/core/EnumSelect/Map.d.ts +0 -10
  493. package/core/EnumSelect/Map.js +0 -55
  494. package/core/EnumSelect/Map.js.map +0 -1
  495. package/core/EnumSelect/Nullable.d.ts +0 -12
  496. package/core/EnumSelect/Nullable.js +0 -88
  497. package/core/EnumSelect/Nullable.js.map +0 -1
  498. package/core/EnumSelect/index.d.ts +0 -29
  499. package/core/EnumSelect/index.js +0 -61
  500. package/core/EnumSelect/index.js.map +0 -1
  501. package/core/FlatList/VirtualFlatList/Item.d.ts +0 -11
  502. package/core/FlatList/VirtualFlatList/Item.js +0 -20
  503. package/core/FlatList/VirtualFlatList/Item.js.map +0 -1
  504. package/core/FlatList/VirtualFlatList/index.d.ts +0 -7
  505. package/core/FlatList/VirtualFlatList/index.js +0 -110
  506. package/core/FlatList/VirtualFlatList/index.js.map +0 -1
  507. package/core/FlatList/VirtualFlatList/type.d.ts +0 -20
  508. package/core/FlatList/VirtualFlatList/type.js +0 -2
  509. package/core/FlatList/VirtualFlatList/type.js.map +0 -1
  510. package/core/FlatList/index.d.ts +0 -3
  511. package/core/FlatList/index.js +0 -60
  512. package/core/FlatList/index.js.map +0 -1
  513. package/core/FlatList/shared/Footer/index.d.ts +0 -8
  514. package/core/FlatList/shared/Footer/index.js +0 -13
  515. package/core/FlatList/shared/Footer/index.js.map +0 -1
  516. package/core/FlatList/shared/GetRowKey.d.ts +0 -2
  517. package/core/FlatList/shared/GetRowKey.js +0 -12
  518. package/core/FlatList/shared/GetRowKey.js.map +0 -1
  519. package/core/FlatList/shared/Spinner/index.d.ts +0 -8
  520. package/core/FlatList/shared/Spinner/index.js +0 -10
  521. package/core/FlatList/shared/Spinner/index.js.map +0 -1
  522. package/core/FlatList/shared/Wrapper/Loading.d.ts +0 -8
  523. package/core/FlatList/shared/Wrapper/Loading.js +0 -7
  524. package/core/FlatList/shared/Wrapper/Loading.js.map +0 -1
  525. package/core/FlatList/shared/Wrapper/index.d.ts +0 -14
  526. package/core/FlatList/shared/Wrapper/index.js +0 -109
  527. package/core/FlatList/shared/Wrapper/index.js.map +0 -1
  528. package/core/FlatList/shared/hooks/useBounceSwipe.d.ts +0 -22
  529. package/core/FlatList/shared/hooks/useBounceSwipe.js +0 -111
  530. package/core/FlatList/shared/hooks/useBounceSwipe.js.map +0 -1
  531. package/core/FlatList/shared/hooks/useElementScrollState.d.ts +0 -8
  532. package/core/FlatList/shared/hooks/useElementScrollState.js +0 -38
  533. package/core/FlatList/shared/hooks/useElementScrollState.js.map +0 -1
  534. package/core/FlatList/shared/hooks/useLoadingWithDelay.d.ts +0 -9
  535. package/core/FlatList/shared/hooks/useLoadingWithDelay.js +0 -52
  536. package/core/FlatList/shared/hooks/useLoadingWithDelay.js.map +0 -1
  537. package/core/FlatList/type.d.ts +0 -48
  538. package/core/FlatList/type.js +0 -2
  539. package/core/FlatList/type.js.map +0 -1
  540. package/core/Foldable/index.d.ts +0 -18
  541. package/core/Foldable/index.js +0 -41
  542. package/core/Foldable/index.js.map +0 -1
  543. package/core/Form/Item.d.ts +0 -29
  544. package/core/Form/Item.js +0 -106
  545. package/core/Form/Item.js.map +0 -1
  546. package/core/Form/context.d.ts +0 -14
  547. package/core/Form/context.js +0 -7
  548. package/core/Form/context.js.map +0 -1
  549. package/core/Form/index.d.ts +0 -36
  550. package/core/Form/index.js +0 -143
  551. package/core/Form/index.js.map +0 -1
  552. package/core/Grid.d.ts +0 -6
  553. package/core/Grid.js +0 -7
  554. package/core/Grid.js.map +0 -1
  555. package/core/HTMLContent/index.d.ts +0 -11
  556. package/core/HTMLContent/index.js +0 -32
  557. package/core/HTMLContent/index.js.map +0 -1
  558. package/core/ImageUploader/index.d.ts +0 -24
  559. package/core/ImageUploader/index.js +0 -148
  560. package/core/ImageUploader/index.js.map +0 -1
  561. package/core/Input/index.d.ts +0 -39
  562. package/core/Input/index.js +0 -88
  563. package/core/Input/index.js.map +0 -1
  564. package/core/LabelledSelect.d.ts +0 -11
  565. package/core/LabelledSelect.js +0 -42
  566. package/core/LabelledSelect.js.map +0 -1
  567. package/core/Link.d.ts +0 -15
  568. package/core/Link.js +0 -48
  569. package/core/Link.js.map +0 -1
  570. package/core/LocalImporter.d.ts +0 -21
  571. package/core/LocalImporter.js +0 -93
  572. package/core/LocalImporter.js.map +0 -1
  573. package/core/LocaleProvider.d.ts +0 -12
  574. package/core/LocaleProvider.js +0 -38
  575. package/core/LocaleProvider.js.map +0 -1
  576. package/core/LocaleSelect.d.ts +0 -11
  577. package/core/LocaleSelect.js +0 -45
  578. package/core/LocaleSelect.js.map +0 -1
  579. package/core/Markdown/index.d.ts +0 -20
  580. package/core/Markdown/index.js +0 -40
  581. package/core/Markdown/index.js.map +0 -1
  582. package/core/Modal/index.d.ts +0 -16
  583. package/core/Modal/index.js +0 -67
  584. package/core/Modal/index.js.map +0 -1
  585. package/core/MultipleCascader/index.d.ts +0 -31
  586. package/core/MultipleCascader/index.js +0 -151
  587. package/core/MultipleCascader/index.js.map +0 -1
  588. package/core/MultipleEnumSelect.d.ts +0 -17
  589. package/core/MultipleEnumSelect.js +0 -40
  590. package/core/MultipleEnumSelect.js.map +0 -1
  591. package/core/MultipleSelector/TablePopover.d.ts +0 -20
  592. package/core/MultipleSelector/TablePopover.js +0 -95
  593. package/core/MultipleSelector/TablePopover.js.map +0 -1
  594. package/core/MultipleSelector/index.d.ts +0 -33
  595. package/core/MultipleSelector/index.js +0 -103
  596. package/core/MultipleSelector/index.js.map +0 -1
  597. package/core/MutableTable/index.d.ts +0 -44
  598. package/core/MutableTable/index.js +0 -139
  599. package/core/MutableTable/index.js.map +0 -1
  600. package/core/NumberInput/NumberInputPercentage.d.ts +0 -58
  601. package/core/NumberInput/NumberInputPercentage.js +0 -75
  602. package/core/NumberInput/NumberInputPercentage.js.map +0 -1
  603. package/core/NumberInput/index.d.ts +0 -70
  604. package/core/NumberInput/index.js +0 -130
  605. package/core/NumberInput/index.js.map +0 -1
  606. package/core/NumberInput/util.d.ts +0 -34
  607. package/core/NumberInput/util.js +0 -57
  608. package/core/NumberInput/util.js.map +0 -1
  609. package/core/OverflowableText/index.d.ts +0 -22
  610. package/core/OverflowableText/index.js +0 -64
  611. package/core/OverflowableText/index.js.map +0 -1
  612. package/core/PagedList/index.d.ts +0 -27
  613. package/core/PagedList/index.js +0 -81
  614. package/core/PagedList/index.js.map +0 -1
  615. package/core/Pagination/index.d.ts +0 -21
  616. package/core/Pagination/index.js +0 -51
  617. package/core/Pagination/index.js.map +0 -1
  618. package/core/Popover/index.d.ts +0 -11
  619. package/core/Popover/index.js +0 -43
  620. package/core/Popover/index.js.map +0 -1
  621. package/core/Progress.d.ts +0 -10
  622. package/core/Progress.js +0 -42
  623. package/core/Progress.js.map +0 -1
  624. package/core/Radio/index.d.ts +0 -13
  625. package/core/Radio/index.js +0 -45
  626. package/core/Radio/index.js.map +0 -1
  627. package/core/RelativeTime.d.ts +0 -18
  628. package/core/RelativeTime.js +0 -60
  629. package/core/RelativeTime.js.map +0 -1
  630. package/core/ResizeObserver.d.ts +0 -2
  631. package/core/ResizeObserver.js +0 -2
  632. package/core/ResizeObserver.js.map +0 -1
  633. package/core/SearchableSelect.d.ts +0 -15
  634. package/core/SearchableSelect.js +0 -42
  635. package/core/SearchableSelect.js.map +0 -1
  636. package/core/Select/index.d.ts +0 -16
  637. package/core/Select/index.js +0 -45
  638. package/core/Select/index.js.map +0 -1
  639. package/core/SignedAmountInput.d.ts +0 -20
  640. package/core/SignedAmountInput.js +0 -56
  641. package/core/SignedAmountInput.js.map +0 -1
  642. package/core/Skeleton.d.ts +0 -9
  643. package/core/Skeleton.js +0 -42
  644. package/core/Skeleton.js.map +0 -1
  645. package/core/Slider/RangeSlider.d.ts +0 -11
  646. package/core/Slider/RangeSlider.js +0 -53
  647. package/core/Slider/RangeSlider.js.map +0 -1
  648. package/core/Slider/index.d.ts +0 -16
  649. package/core/Slider/index.js +0 -79
  650. package/core/Slider/index.js.map +0 -1
  651. package/core/Space.d.ts +0 -10
  652. package/core/Space.js +0 -42
  653. package/core/Space.js.map +0 -1
  654. package/core/Spin.d.ts +0 -12
  655. package/core/Spin.js +0 -55
  656. package/core/Spin.js.map +0 -1
  657. package/core/StepFormContainer/index.d.ts +0 -27
  658. package/core/StepFormContainer/index.js +0 -50
  659. package/core/StepFormContainer/index.js.map +0 -1
  660. package/core/Steps/index.d.ts +0 -11
  661. package/core/Steps/index.js +0 -44
  662. package/core/Steps/index.js.map +0 -1
  663. package/core/Table/index.d.ts +0 -89
  664. package/core/Table/index.js +0 -152
  665. package/core/Table/index.js.map +0 -1
  666. package/core/Tabs/Single.d.ts +0 -11
  667. package/core/Tabs/Single.js +0 -54
  668. package/core/Tabs/Single.js.map +0 -1
  669. package/core/Tabs/index.d.ts +0 -30
  670. package/core/Tabs/index.js +0 -96
  671. package/core/Tabs/index.js.map +0 -1
  672. package/core/Tag.d.ts +0 -11
  673. package/core/Tag.js +0 -42
  674. package/core/Tag.js.map +0 -1
  675. package/core/TagInput/index.d.ts +0 -27
  676. package/core/TagInput/index.js +0 -107
  677. package/core/TagInput/index.js.map +0 -1
  678. package/core/Tags.d.ts +0 -17
  679. package/core/Tags.js +0 -38
  680. package/core/Tags.js.map +0 -1
  681. package/core/TimePicker/index.d.ts +0 -17
  682. package/core/TimePicker/index.js +0 -46
  683. package/core/TimePicker/index.js.map +0 -1
  684. package/core/TimeRangePicker/index.d.ts +0 -17
  685. package/core/TimeRangePicker/index.js +0 -45
  686. package/core/TimeRangePicker/index.js.map +0 -1
  687. package/core/Tooltip.d.ts +0 -9
  688. package/core/Tooltip.js +0 -42
  689. package/core/Tooltip.js.map +0 -1
  690. package/core/TypedTabs/index.d.ts +0 -23
  691. package/core/TypedTabs/index.js +0 -76
  692. package/core/TypedTabs/index.js.map +0 -1
  693. package/core/Uploader.d.ts +0 -34
  694. package/core/Uploader.js +0 -97
  695. package/core/Uploader.js.map +0 -1
  696. package/core/VerticalMarquee/index.d.ts +0 -19
  697. package/core/VerticalMarquee/index.js +0 -51
  698. package/core/VerticalMarquee/index.js.map +0 -1
  699. package/core/VirtualTable/TableHeader.d.ts +0 -13
  700. package/core/VirtualTable/TableHeader.js +0 -45
  701. package/core/VirtualTable/TableHeader.js.map +0 -1
  702. package/core/VirtualTable/TableRow.d.ts +0 -21
  703. package/core/VirtualTable/TableRow.js +0 -59
  704. package/core/VirtualTable/TableRow.js.map +0 -1
  705. package/core/VirtualTable/hooks/useColumnWidths.d.ts +0 -11
  706. package/core/VirtualTable/hooks/useColumnWidths.js +0 -38
  707. package/core/VirtualTable/hooks/useColumnWidths.js.map +0 -1
  708. package/core/VirtualTable/hooks/useDebounce.d.ts +0 -1
  709. package/core/VirtualTable/hooks/useDebounce.js +0 -45
  710. package/core/VirtualTable/hooks/useDebounce.js.map +0 -1
  711. package/core/VirtualTable/hooks/useLayout.d.ts +0 -17
  712. package/core/VirtualTable/hooks/useLayout.js +0 -44
  713. package/core/VirtualTable/hooks/useLayout.js.map +0 -1
  714. package/core/VirtualTable/hooks/useRowExpand.d.ts +0 -7
  715. package/core/VirtualTable/hooks/useRowExpand.js +0 -20
  716. package/core/VirtualTable/hooks/useRowExpand.js.map +0 -1
  717. package/core/VirtualTable/hooks/useRowSelection.d.ts +0 -10
  718. package/core/VirtualTable/hooks/useRowSelection.js +0 -83
  719. package/core/VirtualTable/hooks/useRowSelection.js.map +0 -1
  720. package/core/VirtualTable/hooks/useScrollBarSize.d.ts +0 -5
  721. package/core/VirtualTable/hooks/useScrollBarSize.js +0 -36
  722. package/core/VirtualTable/hooks/useScrollBarSize.js.map +0 -1
  723. package/core/VirtualTable/hooks/useScrollToEdge.d.ts +0 -8
  724. package/core/VirtualTable/hooks/useScrollToEdge.js +0 -48
  725. package/core/VirtualTable/hooks/useScrollToEdge.js.map +0 -1
  726. package/core/VirtualTable/hooks/useStickyPosition.d.ts +0 -2
  727. package/core/VirtualTable/hooks/useStickyPosition.js +0 -24
  728. package/core/VirtualTable/hooks/useStickyPosition.js.map +0 -1
  729. package/core/VirtualTable/hooks/useTransformColumn.d.ts +0 -11
  730. package/core/VirtualTable/hooks/useTransformColumn.js +0 -9
  731. package/core/VirtualTable/hooks/useTransformColumn.js.map +0 -1
  732. package/core/VirtualTable/index.d.ts +0 -30
  733. package/core/VirtualTable/index.js +0 -85
  734. package/core/VirtualTable/index.js.map +0 -1
  735. package/core/VirtualTable/type.d.ts +0 -57
  736. package/core/VirtualTable/type.js +0 -2
  737. package/core/VirtualTable/type.js.map +0 -1
  738. package/core/WithExplanation/index.d.ts +0 -21
  739. package/core/WithExplanation/index.js +0 -46
  740. package/core/WithExplanation/index.js.map +0 -1
  741. package/core/WithTooltipList.d.ts +0 -23
  742. package/core/WithTooltipList.js +0 -64
  743. package/core/WithTooltipList.js.map +0 -1
  744. package/core/YearMonthSelector.d.ts +0 -16
  745. package/core/YearMonthSelector.js +0 -53
  746. package/core/YearMonthSelector.js.map +0 -1
  747. package/hooks/useOrientationMode.d.ts +0 -2
  748. package/hooks/useOrientationMode.js +0 -30
  749. package/hooks/useOrientationMode.js.map +0 -1
  750. package/hooks/useSwipe/controller.d.ts +0 -20
  751. package/hooks/useSwipe/controller.js +0 -126
  752. package/hooks/useSwipe/controller.js.map +0 -1
  753. package/hooks/useSwipe/index.d.ts +0 -3
  754. package/hooks/useSwipe/index.js +0 -9
  755. package/hooks/useSwipe/index.js.map +0 -1
  756. package/hooks/useSwipe/type.d.ts +0 -38
  757. package/hooks/useSwipe/type.js +0 -8
  758. package/hooks/useSwipe/type.js.map +0 -1
  759. package/hooks/useTransform.d.ts +0 -18
  760. package/hooks/useTransform.js +0 -50
  761. package/hooks/useTransform.js.map +0 -1
  762. package/internal/ArrayUtil.d.ts +0 -29
  763. package/internal/ArrayUtil.js +0 -76
  764. package/internal/ArrayUtil.js.map +0 -1
  765. package/internal/ExpirableLocalStorage.d.ts +0 -123
  766. package/internal/ExpirableLocalStorage.js +0 -245
  767. package/internal/ExpirableLocalStorage.js.map +0 -1
  768. package/internal/Memo.d.ts +0 -9
  769. package/internal/Memo.js +0 -31
  770. package/internal/Memo.js.map +0 -1
  771. package/internal/NumberUtil.d.ts +0 -7
  772. package/internal/NumberUtil.js +0 -38
  773. package/internal/NumberUtil.js.map +0 -1
  774. package/internal/StorageHelper.d.ts +0 -31
  775. package/internal/StorageHelper.js +0 -152
  776. package/internal/StorageHelper.js.map +0 -1
  777. package/internal/TextUtil.d.ts +0 -5
  778. package/internal/TextUtil.js +0 -15
  779. package/internal/TextUtil.js.map +0 -1
  780. package/internal/i18n/admin/en.d.ts +0 -18
  781. package/internal/i18n/admin/en.js +0 -19
  782. package/internal/i18n/admin/en.js.map +0 -1
  783. package/internal/i18n/admin/index.d.ts +0 -18
  784. package/internal/i18n/admin/index.js +0 -11
  785. package/internal/i18n/admin/index.js.map +0 -1
  786. package/internal/i18n/admin/zh.d.ts +0 -18
  787. package/internal/i18n/admin/zh.js +0 -19
  788. package/internal/i18n/admin/zh.js.map +0 -1
  789. package/internal/i18n/core/en.d.ts +0 -37
  790. package/internal/i18n/core/en.js +0 -38
  791. package/internal/i18n/core/en.js.map +0 -1
  792. package/internal/i18n/core/index.d.ts +0 -37
  793. package/internal/i18n/core/index.js +0 -11
  794. package/internal/i18n/core/index.js.map +0 -1
  795. package/internal/i18n/core/zh.d.ts +0 -37
  796. package/internal/i18n/core/zh.js +0 -38
  797. package/internal/i18n/core/zh.js.map +0 -1
  798. package/internal/i18n/util/en.d.ts +0 -9
  799. package/internal/i18n/util/en.js +0 -10
  800. package/internal/i18n/util/en.js.map +0 -1
  801. package/internal/i18n/util/index.d.ts +0 -9
  802. package/internal/i18n/util/index.js +0 -11
  803. package/internal/i18n/util/index.js.map +0 -1
  804. package/internal/i18n/util/zh.d.ts +0 -9
  805. package/internal/i18n/util/zh.js +0 -10
  806. package/internal/i18n/util/zh.js.map +0 -1
  807. package/internal/type.d.ts +0 -15
  808. package/internal/type.js +0 -2
  809. package/internal/type.js.map +0 -1
  810. package/util/AdminNavigatorBase.d.ts +0 -64
  811. package/util/AdminNavigatorBase.js +0 -101
  812. package/util/AdminNavigatorBase.js.map +0 -1
  813. package/util/BrowserBookmarkUtil.d.ts +0 -5
  814. package/util/BrowserBookmarkUtil.js +0 -25
  815. package/util/BrowserBookmarkUtil.js.map +0 -1
  816. package/util/BrowserUtil.d.ts +0 -31
  817. package/util/BrowserUtil.js +0 -154
  818. package/util/BrowserUtil.js.map +0 -1
  819. package/util/CanvasUtil.d.ts +0 -17
  820. package/util/CanvasUtil.js +0 -94
  821. package/util/CanvasUtil.js.map +0 -1
  822. package/util/ClassNames.d.ts +0 -2
  823. package/util/ClassNames.js +0 -3
  824. package/util/ClassNames.js.map +0 -1
  825. package/util/Clipboard.d.ts +0 -22
  826. package/util/Clipboard.js +0 -118
  827. package/util/Clipboard.js.map +0 -1
  828. package/util/ExpirableLocalStorageUtil.d.ts +0 -2
  829. package/util/ExpirableLocalStorageUtil.js +0 -3
  830. package/util/ExpirableLocalStorageUtil.js.map +0 -1
  831. package/util/ExportUtil.d.ts +0 -11
  832. package/util/ExportUtil.js +0 -28
  833. package/util/ExportUtil.js.map +0 -1
  834. package/util/ImportUtil.d.ts +0 -10
  835. package/util/ImportUtil.js +0 -94
  836. package/util/ImportUtil.js.map +0 -1
  837. package/util/LocalStorageUtil.d.ts +0 -2
  838. package/util/LocalStorageUtil.js +0 -3
  839. package/util/LocalStorageUtil.js.map +0 -1
  840. package/util/LocaleUtil.d.ts +0 -22
  841. package/util/LocaleUtil.js +0 -34
  842. package/util/LocaleUtil.js.map +0 -1
  843. package/util/MediaUtil/index.d.ts +0 -10
  844. package/util/MediaUtil/index.js +0 -60
  845. package/util/MediaUtil/index.js.map +0 -1
  846. package/util/MessageUtil/index.d.ts +0 -15
  847. package/util/MessageUtil/index.js +0 -29
  848. package/util/MessageUtil/index.js.map +0 -1
  849. package/util/ModalUtil/index.d.ts +0 -41
  850. package/util/ModalUtil/index.js +0 -145
  851. package/util/ModalUtil/index.js.map +0 -1
  852. package/util/NotificationUtil.d.ts +0 -12
  853. package/util/NotificationUtil.js +0 -52
  854. package/util/NotificationUtil.js.map +0 -1
  855. package/util/OrientationUtil.d.ts +0 -20
  856. package/util/OrientationUtil.js +0 -50
  857. package/util/OrientationUtil.js.map +0 -1
  858. package/util/PromptUtil/PromptBody.d.ts +0 -18
  859. package/util/PromptUtil/PromptBody.js +0 -100
  860. package/util/PromptUtil/PromptBody.js.map +0 -1
  861. package/util/PromptUtil/index.d.ts +0 -19
  862. package/util/PromptUtil/index.js +0 -48
  863. package/util/PromptUtil/index.js.map +0 -1
  864. package/util/RecentUsedStorageUtil.d.ts +0 -12
  865. package/util/RecentUsedStorageUtil.js +0 -45
  866. package/util/RecentUsedStorageUtil.js.map +0 -1
  867. package/util/SessionStorageUtil.d.ts +0 -2
  868. package/util/SessionStorageUtil.js +0 -3
  869. package/util/SessionStorageUtil.js.map +0 -1
  870. package/util/SwipeUtil.d.ts +0 -8
  871. package/util/SwipeUtil.js +0 -26
  872. package/util/SwipeUtil.js.map +0 -1
  873. package/util/UploadUtil/index.d.ts +0 -6
  874. package/util/UploadUtil/index.js +0 -61
  875. package/util/UploadUtil/index.js.map +0 -1
  876. package/util/UploadUtil/type.d.ts +0 -41
  877. package/util/UploadUtil/type.js +0 -2
  878. package/util/UploadUtil/type.js.map +0 -1
@@ -0,0 +1,262 @@
1
+ interface Data {
2
+ value: string;
3
+ expiryTimestamp: number;
4
+ }
5
+
6
+ /**
7
+ * an expirable local storage (Singleton)
8
+ */
9
+ export class ExpirableLocalStorage {
10
+ private static readonly PREFIX = "@@EXPIRABLE/";
11
+ private static readonly TRUE = "TRUE";
12
+ private static readonly FALSE = "FALSE";
13
+ private static readonly DEFAULT_DATA_VALUE = {expiryTimestamp: 0, value: null};
14
+
15
+ private static instance: ExpirableLocalStorage;
16
+
17
+ private storage: Storage = window.localStorage;
18
+
19
+ /**
20
+ * get the ExpirableStorage instance
21
+ */
22
+ static getInstance() {
23
+ if (!ExpirableLocalStorage.instance) {
24
+ ExpirableLocalStorage.instance = new ExpirableLocalStorage();
25
+ }
26
+
27
+ return ExpirableLocalStorage.instance;
28
+ }
29
+
30
+ /**
31
+ * set boolean value
32
+ * @param key storage key
33
+ * @param value boolean value
34
+ * @param expiryTimestamp expiry timestamp
35
+ */
36
+ setBool(key: string, value: boolean, expiryTimestamp: number): void {
37
+ this.set(key, value ? ExpirableLocalStorage.TRUE : ExpirableLocalStorage.FALSE, expiryTimestamp);
38
+ }
39
+
40
+ /**
41
+ * set string
42
+ * @param key storage key
43
+ * @param value string value
44
+ * @param expiryTimestamp expiry timestamp
45
+ */
46
+ setString(key: string, value: string, expiryTimestamp: number): void {
47
+ this.set(key, value, expiryTimestamp);
48
+ }
49
+
50
+ /**
51
+ * set number
52
+ * @param key storage key
53
+ * @param value number value
54
+ * @param expiryTimestamp expiry timestamp
55
+ */
56
+ setNumber(key: string, value: number, expiryTimestamp: number): void {
57
+ this.set(key, value.toString(), expiryTimestamp);
58
+ }
59
+
60
+ /**
61
+ * set object
62
+ * @param key storage key
63
+ * @param item object
64
+ * @param expiryTimestamp expiry timestamp
65
+ */
66
+ setObject<T extends object>(key: string, item: T, expiryTimestamp: number): void {
67
+ this.set(key, JSON.stringify(item), expiryTimestamp);
68
+ }
69
+
70
+ /**
71
+ * get boolean value
72
+ * @param key storage key
73
+ * @param defaultValue default value
74
+ * @returns boolean value
75
+ */
76
+ getBool(key: string, defaultValue: boolean): boolean {
77
+ const transformer = (_: string) => (_ === ExpirableLocalStorage.TRUE ? true : _ === ExpirableLocalStorage.FALSE ? false : null);
78
+ return this.get(key, defaultValue, transformer);
79
+ }
80
+
81
+ /**
82
+ * get string value
83
+ * @param key storage key
84
+ * @param defaultValue default value
85
+ * @param validValues valid values
86
+ * @returns string value
87
+ */
88
+ getString<T extends string = string>(key: string, defaultValue: T, validValues?: readonly T[]): T {
89
+ const transformer = (_: string): T | null => {
90
+ const typedValue = _ as T;
91
+ return validValues ? (validValues.includes(typedValue) ? typedValue : null) : typedValue;
92
+ };
93
+ return this.get(key, defaultValue, transformer);
94
+ }
95
+
96
+ /**
97
+ * get number value
98
+ * @param key storage key
99
+ * @param defaultValue default value
100
+ * @param validator validator
101
+ * @returns number value
102
+ */
103
+ getNumber(key: string, defaultValue: number, validator?: number[] | ((value: number) => boolean)): number {
104
+ const transformer = (_: string): number | null => {
105
+ const numberedData = Number(_);
106
+ if (Number.isFinite(numberedData)) {
107
+ if (validator === undefined) {
108
+ return numberedData;
109
+ } else if (typeof validator === "function") {
110
+ if (validator(numberedData)) {
111
+ return numberedData;
112
+ }
113
+ } else {
114
+ if (validator.includes(numberedData)) {
115
+ return numberedData;
116
+ }
117
+ }
118
+ }
119
+ return null;
120
+ };
121
+ return this.get(key, defaultValue, transformer);
122
+ }
123
+
124
+ /**
125
+ * get object value
126
+ * @param key storage key
127
+ * @param defaultValue default value
128
+ * @param validator validator
129
+ * @returns object value
130
+ */
131
+ getObject<T extends object>(key: string, defaultValue: T, validator: (item: object) => boolean): T {
132
+ const transformer = (_: string): T | null => {
133
+ try {
134
+ const obj: object = JSON.parse(_);
135
+ if (validator(obj)) {
136
+ return obj as T;
137
+ } else {
138
+ return null;
139
+ }
140
+ } catch (e) {
141
+ return null;
142
+ }
143
+ };
144
+ return this.get(key, defaultValue, transformer);
145
+ }
146
+
147
+ /**
148
+ * get the raw localstorage data
149
+ * @param key storage key
150
+ * @returns raw data
151
+ */
152
+ getRaw(key: string): string | null {
153
+ try {
154
+ return this.storage.getItem(this.canonicalKey(key));
155
+ } catch (e) {
156
+ return null;
157
+ }
158
+ }
159
+
160
+ /**
161
+ * The ExpirableStorage's constructor should always be private to prevent direct
162
+ * construction calls with the `new` operator.
163
+ */
164
+ private constructor() {}
165
+
166
+ /**
167
+ * get current timestamp
168
+ * @returns current timestamp
169
+ */
170
+ private now(): number {
171
+ return new Date().getTime();
172
+ }
173
+
174
+ /**
175
+ * get value
176
+ * @param key storage key
177
+ * @param defaultValue
178
+ * @param transformer
179
+ * @returns
180
+ */
181
+ private get<T extends string | number | boolean | object>(key: string, defaultValue: T, transformer: (value: string) => T | null) {
182
+ try {
183
+ this.prune();
184
+ const {value} = this.getData(this.canonicalKey(key));
185
+
186
+ if (value !== null) {
187
+ return transformer(value) || defaultValue;
188
+ }
189
+
190
+ return defaultValue;
191
+ } catch (e) {
192
+ return defaultValue;
193
+ }
194
+ }
195
+
196
+ /**
197
+ * set value
198
+ * @param key storage key
199
+ * @param value storage value
200
+ * @param expiryTimestamp The "expiryTimestamp" (expiration time) claim identifies the expiration time on or after which the value MUST NOT be accepted for processing. The processing of the "expiryTimestamp" claim requires that the current date/time MUST be before the expiration date/time listed in the "expiryTimestamp" claim.
201
+ */
202
+ private set(key: string, value: string, expiryTimestamp: number): void {
203
+ try {
204
+ this.setData(this.canonicalKey(key), {
205
+ value,
206
+ expiryTimestamp,
207
+ });
208
+ } catch (e) {
209
+ // Do nothing
210
+ }
211
+ }
212
+
213
+ /**
214
+ *
215
+ * @param key storage key
216
+ * @returns the original localstorage canonical key with prefix like "@@EXPIRABLE/key"
217
+ */
218
+ private canonicalKey(key: string): string {
219
+ return `${ExpirableLocalStorage.PREFIX}${key}`;
220
+ }
221
+
222
+ private getData(key: string): Data {
223
+ return JSON.parse(this.storage.getItem(key) || JSON.stringify(ExpirableLocalStorage.DEFAULT_DATA_VALUE)) as Data;
224
+ }
225
+
226
+ /**
227
+ * set Data
228
+ * @param key storage key
229
+ * @param data storage value
230
+ */
231
+ private setData(key: string, data: Data): void {
232
+ this.storage.setItem(key, JSON.stringify(data));
233
+ }
234
+
235
+ private clear(keys: string[]): void {
236
+ try {
237
+ keys.forEach(key => this.storage.removeItem(key));
238
+ } catch (e) {
239
+ // Do nothing
240
+ }
241
+ }
242
+
243
+ /**
244
+ * delete the expired keys
245
+ */
246
+ private prune() {
247
+ try {
248
+ const expiredKeys = Object.keys(this.storage).filter(key => {
249
+ if (!key.startsWith(ExpirableLocalStorage.PREFIX)) {
250
+ return false;
251
+ }
252
+
253
+ const {expiryTimestamp} = this.getData(key);
254
+ return this.now() > expiryTimestamp;
255
+ });
256
+
257
+ this.clear(expiredKeys);
258
+ } catch (e) {
259
+ // Do nothing
260
+ }
261
+ }
262
+ }
@@ -0,0 +1,28 @@
1
+ type AnyFunctionDecorator = (target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => any>) => TypedPropertyDescriptor<(...args: any[]) => any>;
2
+
3
+ /**
4
+ * For pure functions:
5
+ *
6
+ * Memoize the last computed result, and return the same value if given the same input.
7
+ * Input equality is based on JSON.stringify.
8
+ */
9
+ export function Memo(): AnyFunctionDecorator {
10
+ return (target, propertyKey, descriptor) => {
11
+ /**
12
+ * For latest decorator spec, there is only one "target" parameter, which has "descriptor" property.
13
+ * https://tc39.github.io/proposal-decorators/#sec-decorator-functions-element-descriptor
14
+ * https://github.com/tc39/proposal-decorators/blob/master/METAPROGRAMMING.md
15
+ */
16
+ const realDescriptor = descriptor || (target as any).descriptor;
17
+ const fn = realDescriptor.value!;
18
+ const cache: Record<string, any> = {};
19
+ realDescriptor.value = function (...args: any[]) {
20
+ const paramKey = args.length ? JSON.stringify(args) : "";
21
+ if (!cache[paramKey]) {
22
+ cache[paramKey] = fn.apply(this, args);
23
+ }
24
+ return cache[paramKey];
25
+ };
26
+ return descriptor || target;
27
+ };
28
+ }
@@ -0,0 +1,38 @@
1
+ function rounding(value: number, algorithm: "round" | "ceil" | "floor", maxScale: number): number {
2
+ if (!Number.isInteger(maxScale) || maxScale < 0 || maxScale > 10) {
3
+ throw new Error("[web-ui] NumberUtil.rounding maxScale must be an integer in range [0, 10]");
4
+ }
5
+ /**
6
+ * Take "4.975" as an example.
7
+ * First, we split the number by the decimal point to get ["4", "975"].
8
+ * Then, we find the adjustmentScale ("975".length) to be 3. This means 4.975 * 10^3 is an integer.
9
+ * Now, we compare the maxScale with adjustmentScale.
10
+ * If maxScale is larger, then value * 10^maxScale is always integer which is perfect.
11
+ * If maxScale is smaller, then we first need to multiply the value by 10^adjustmentScale to make it an integer.
12
+ * Note: we need to check if adjustment is safe by checking against Number.MAX_SAFE_INTEGER.
13
+ * Then, we divide the number by the difference between adjustmentScale and maxScale to get the correct rounding position.
14
+ * For example, we have maxScale = 2. We have adjustmentScale (3) > maxScale (2).
15
+ * Therefore, we first get 4.975 * 10^3 = 4975. Then, we get 4975 / 10^(3 - 2) = 497.5 and we round this number.
16
+ * In the end, we divide this number by 10^maxScale to obtained the final answer, i.e. 498 / 10^2 = 4.98 (assume algorithm is "round").
17
+ */
18
+ const parts = Number(value).toString().split(".");
19
+ const adjustmentScale = parts.length < 2 ? 0 : parts[1].length;
20
+ const adjustmentPowerOf10 = 10 ** adjustmentScale;
21
+ const isAdjustmentSafe = Number(value) * adjustmentPowerOf10 <= Number.MAX_SAFE_INTEGER;
22
+ const powerOf10 = 10 ** maxScale;
23
+ if (adjustmentScale > maxScale && isAdjustmentSafe) {
24
+ const diffPowerOf10 = 10 ** (adjustmentScale - maxScale);
25
+ return Math[algorithm]((value * adjustmentPowerOf10) / diffPowerOf10) / powerOf10;
26
+ } else {
27
+ return Math[algorithm](value * powerOf10) / powerOf10;
28
+ }
29
+ }
30
+
31
+ function roundingToString(value: number, algorithm: "round" | "ceil" | "floor", scale: number): string {
32
+ return rounding(value, algorithm, scale).toFixed(scale);
33
+ }
34
+
35
+ export const NumberUtil = Object.freeze({
36
+ rounding,
37
+ roundingToString,
38
+ });
@@ -0,0 +1,152 @@
1
+ /**
2
+ * In mobile Safari, the user may turn on "Block All Cookies".
3
+ * In such situation, accessing to localStorage/sessionStorage will throw error.
4
+ */
5
+
6
+ type ClearOptions = {keys: string[] | ((key: string) => boolean)} | {exceptKeys: string[] | ((key: string) => boolean)};
7
+
8
+ export class StorageHelper {
9
+ private static readonly trueBoolValue = "TRUE";
10
+ private static readonly falseBoolValue = "FALSE";
11
+ private globalPrefix: string | null = null;
12
+
13
+ constructor(private readonly storage: Storage) {}
14
+
15
+ setGlobalPrefix(prefix: string) {
16
+ this.globalPrefix = prefix;
17
+ }
18
+
19
+ clear(options?: ClearOptions): void {
20
+ try {
21
+ if (options) {
22
+ if ("keys" in options) {
23
+ const {keys} = options;
24
+ if (Array.isArray(keys)) {
25
+ keys.forEach(key => this.storage.removeItem(key));
26
+ } else {
27
+ this.forEach(key => {
28
+ if (keys(key)) {
29
+ this.storage.removeItem(key);
30
+ }
31
+ });
32
+ }
33
+ } else {
34
+ const {exceptKeys} = options;
35
+ this.forEach(key => {
36
+ const shouldNotRemove = Array.isArray(exceptKeys) ? exceptKeys.includes(key) : exceptKeys(key);
37
+ if (!shouldNotRemove) {
38
+ this.storage.removeItem(key);
39
+ }
40
+ });
41
+ }
42
+ } else {
43
+ this.storage.clear();
44
+ }
45
+ } catch (e) {
46
+ // Do nothing
47
+ }
48
+ }
49
+
50
+ setBool(key: string, value: boolean): void {
51
+ this.set(key, value ? StorageHelper.trueBoolValue : StorageHelper.falseBoolValue);
52
+ }
53
+
54
+ setString(key: string, value: string): void {
55
+ this.set(key, value);
56
+ }
57
+
58
+ setNumber(key: string, value: number): void {
59
+ this.set(key, value.toString());
60
+ }
61
+
62
+ setObject<T extends object>(key: string, item: T): void {
63
+ this.set(key, JSON.stringify(item));
64
+ }
65
+
66
+ getBool(key: string, defaultValue: boolean): boolean {
67
+ const transformer = (_: string) => (_ === StorageHelper.trueBoolValue ? true : _ === StorageHelper.falseBoolValue ? false : null);
68
+ return this.get(key, defaultValue, transformer);
69
+ }
70
+
71
+ getString<T extends string = string>(key: string, defaultValue: T, validValues?: readonly T[]): T {
72
+ const transformer = (_: string): T | null => {
73
+ const typedValue = _ as T;
74
+ return validValues ? (validValues.includes(typedValue) ? typedValue : null) : typedValue;
75
+ };
76
+ return this.get(key, defaultValue, transformer);
77
+ }
78
+
79
+ getNumber(key: string, defaultValue: number, validator?: number[] | ((value: number) => boolean)): number {
80
+ const transformer = (_: string): number | null => {
81
+ const numberedData = Number(_);
82
+ if (Number.isFinite(numberedData)) {
83
+ if (validator === undefined) {
84
+ return numberedData;
85
+ } else if (typeof validator === "function") {
86
+ if (validator(numberedData)) {
87
+ return numberedData;
88
+ }
89
+ } else {
90
+ if (validator.includes(numberedData)) {
91
+ return numberedData;
92
+ }
93
+ }
94
+ }
95
+ return null;
96
+ };
97
+ return this.get(key, defaultValue, transformer);
98
+ }
99
+
100
+ getObject<T extends object>(key: string, defaultValue: T, validator: (item: object) => boolean): T {
101
+ const transformer = (_: string): T | null => {
102
+ try {
103
+ const obj: object = JSON.parse(_);
104
+ if (validator(obj)) {
105
+ return obj as T;
106
+ } else {
107
+ return null;
108
+ }
109
+ } catch (e) {
110
+ return null;
111
+ }
112
+ };
113
+ return this.get(key, defaultValue, transformer);
114
+ }
115
+
116
+ getRaw(key: string): string | null {
117
+ try {
118
+ return this.storage.getItem(key);
119
+ } catch (e) {
120
+ return null;
121
+ }
122
+ }
123
+
124
+ private set(key: string, value: string): void {
125
+ try {
126
+ const prefix = this.globalPrefix ? `${this.globalPrefix}-` : "";
127
+ this.storage.setItem(prefix + key, value);
128
+ } catch (e) {
129
+ // Do nothing
130
+ }
131
+ }
132
+
133
+ private get<T extends string | number | boolean | object>(key: string, defaultValue: T, transformer: (value: string) => T | null) {
134
+ try {
135
+ const prefix = this.globalPrefix ? `${this.globalPrefix}-` : "";
136
+ const data = this.storage.getItem(prefix + key);
137
+ if (data !== null) {
138
+ const typedData = transformer(data);
139
+ if (typedData !== null) {
140
+ return typedData;
141
+ }
142
+ }
143
+ return defaultValue;
144
+ } catch (e) {
145
+ return defaultValue;
146
+ }
147
+ }
148
+
149
+ private forEach(callback: (key: string, value: string) => void): void {
150
+ Object.keys(this.storage).forEach(key => callback(key, this.storage.getItem(key)!));
151
+ }
152
+ }
@@ -0,0 +1,11 @@
1
+ function interpolate(text: string, ...parameters: string[]): string {
2
+ let result = text;
3
+ for (let i = 0; i < parameters.length; i++) {
4
+ result = result.replace(`{${i + 1}}`, parameters[i]);
5
+ }
6
+ return result;
7
+ }
8
+
9
+ export const TextUtil = Object.freeze({
10
+ interpolate,
11
+ });
@@ -0,0 +1,18 @@
1
+ export const en = {
2
+ homePageTitle: "Home Page",
3
+ homePageSubtitle: "Please open a page by left side menu.",
4
+ welcome: "Welcome to {1}",
5
+ logout: "Logout",
6
+ search: "Search",
7
+ reset: "Reset",
8
+ save: "Save",
9
+ expand: "Expand",
10
+ collapse: "Collapse",
11
+ goHome: "Go To Home",
12
+ notificationSound: "Sound Alert",
13
+ notFound: "The accessed page does not exist",
14
+ featurePermission: "Feature Permission",
15
+ fieldPermission: "Field Permission",
16
+ extraPermission: "Extra Permission",
17
+ language: "Language",
18
+ };
@@ -0,0 +1,13 @@
1
+ import {en} from "./en";
2
+ import {zh} from "./zh";
3
+ import type {Locale} from "../../../util/LocaleUtil";
4
+ import {LocaleUtil} from "../../../util/LocaleUtil";
5
+
6
+ const i18nMap: Record<Locale, typeof en> = {
7
+ en,
8
+ zh,
9
+ };
10
+
11
+ export function i18n() {
12
+ return i18nMap[LocaleUtil.current()];
13
+ }
@@ -0,0 +1,18 @@
1
+ export const zh = {
2
+ homePageTitle: "管理平台首页",
3
+ homePageSubtitle: "请在左侧菜单选择一项打开",
4
+ welcome: "欢迎登录{1}",
5
+ logout: "登出账户",
6
+ search: "查询",
7
+ reset: "重置",
8
+ save: "保存修改",
9
+ expand: "展开",
10
+ collapse: "收起",
11
+ goHome: "返回首页",
12
+ notificationSound: "新通知声音",
13
+ notFound: "您访问的页面不存在",
14
+ featurePermission: "功能权限",
15
+ fieldPermission: "数据权限",
16
+ extraPermission: "其他权限",
17
+ language: "语言",
18
+ };
@@ -0,0 +1,37 @@
1
+ export const en = {
2
+ submit: "Submit",
3
+ all: "All",
4
+ yes: "Yes",
5
+ no: "No",
6
+ on: "On",
7
+ off: "Off",
8
+ delete: "Delete",
9
+ active: "Active",
10
+ inactive: "Inactive",
11
+ nextStep: "Next",
12
+ prevStep: "Previous",
13
+ finish: "Finish",
14
+ emptyData: "No Data",
15
+ select: "Select",
16
+ edit: "Edit ({1})",
17
+ paginationSummary: "Total {1} Records, Page {2} Out Of {3}",
18
+ sendAuthCode: "Send",
19
+ waitResendAuthCode: "Resend in {1}s",
20
+ confirmImageRemoval: "Are you sure to remove the image?",
21
+ depositPositive: "Add",
22
+ depositNegative: "Minus",
23
+ nextPage: "Next Page",
24
+ prevPage: "Previous Page",
25
+ currentPage: "Current Page",
26
+ noData: "No Date",
27
+ fold: "Fold",
28
+ expand: "Expand",
29
+ minimum: "Minimum",
30
+ maximum: "Maximum",
31
+ action: "Action",
32
+ sequence: "Sequence",
33
+ preview: "Preview",
34
+ upload: "Upload",
35
+ localImporterHint: "Click or drag {1} file to this area",
36
+ uploadHint: "Click Or Drag To Upload",
37
+ };
@@ -0,0 +1,13 @@
1
+ import {en} from "./en";
2
+ import {zh} from "./zh";
3
+ import type {Locale} from "../../../util/LocaleUtil";
4
+ import {LocaleUtil} from "../../../util/LocaleUtil";
5
+
6
+ const i18nMap: Record<Locale, typeof en> = {
7
+ en,
8
+ zh,
9
+ };
10
+
11
+ export function i18n() {
12
+ return i18nMap[LocaleUtil.current()];
13
+ }
@@ -0,0 +1,37 @@
1
+ export const zh = {
2
+ submit: "提交",
3
+ all: "全部",
4
+ yes: "是",
5
+ no: "否",
6
+ on: "开",
7
+ off: "关",
8
+ delete: "移除",
9
+ active: "使用中",
10
+ inactive: "已停用",
11
+ nextStep: "下一步",
12
+ prevStep: "上一步",
13
+ finish: "完 成",
14
+ emptyData: "暂无数据",
15
+ select: "请选择",
16
+ edit: "修改 ({1} 个)",
17
+ paginationSummary: "共 {1} 条记录, 第 {2}/{3} 页",
18
+ sendAuthCode: "发送验证码",
19
+ waitResendAuthCode: "{1}秒后重发",
20
+ confirmImageRemoval: "确定要移除图片吗?",
21
+ depositPositive: "充正",
22
+ depositNegative: "冲负",
23
+ nextPage: "下一页",
24
+ prevPage: "上一页",
25
+ currentPage: "当前页",
26
+ noData: "暂无数据",
27
+ fold: "收起",
28
+ expand: "展开",
29
+ minimum: "最小值",
30
+ maximum: "最大值",
31
+ action: "操作",
32
+ sequence: "序列",
33
+ preview: "预览",
34
+ upload: "上传",
35
+ localImporterHint: "按下或拖曳 {1} 档至此",
36
+ uploadHint: "按下或拖曳上传",
37
+ };
@@ -0,0 +1,9 @@
1
+ export const en = {
2
+ defaultTitle: "System Message",
3
+ defaultOk: "Okay",
4
+ defaultConfirm: "Confirm",
5
+ defaultCancel: "Cancel",
6
+ autoClose: "Closing in {1} sec",
7
+ addBookmarkWithShortcut: "Please press {1} to add to bookmark",
8
+ addBookmarkManually: "Please add to bookmark manually",
9
+ };
@@ -0,0 +1,13 @@
1
+ import {en} from "./en";
2
+ import {zh} from "./zh";
3
+ import type {Locale} from "../../../util/LocaleUtil";
4
+ import {LocaleUtil} from "../../../util/LocaleUtil";
5
+
6
+ const i18nMap: Record<Locale, typeof en> = {
7
+ en,
8
+ zh,
9
+ };
10
+
11
+ export function i18n() {
12
+ return i18nMap[LocaleUtil.current()];
13
+ }
@@ -0,0 +1,9 @@
1
+ export const zh = {
2
+ defaultTitle: "系统提示",
3
+ defaultOk: "知道了",
4
+ defaultConfirm: "确定",
5
+ defaultCancel: "取消",
6
+ autoClose: "{1} 秒后自动关闭",
7
+ addBookmarkWithShortcut: "请使用快捷键 {1} 添加到收藏夹",
8
+ addBookmarkManually: "请手动添加到收藏夹",
9
+ };
@@ -0,0 +1,12 @@
1
+ import type React from "react";
2
+
3
+ export type SafeReactChild = React.ReactChild | boolean | null;
4
+ export type SafeReactChildren = SafeReactChild | SafeReactChild[];
5
+
6
+ export type PickOptional<T> = Pick<T, {[K in keyof T]-?: {} extends {[P in K]: T[K]} ? K : never}[keyof T]>;
7
+ export type StringKey<T extends object> = {[P in keyof T]: T[P] extends string ? P : never}[keyof T] & string;
8
+
9
+ export interface ControlledFormValue<T> {
10
+ value: T;
11
+ onChange: (value: T) => void;
12
+ }