@pisell/materials 1.8.12 → 1.8.13
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +7 -7
- package/build/lowcode/preview.js +150 -164
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +27 -40
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +27 -40
- package/es/components/Pagination/index.d.ts +3 -5
- package/es/components/Pagination/index.js +77 -59
- package/es/components/Pagination/index.less +13 -7
- package/es/components/PisellFields/index.d.ts +2 -2
- package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
- package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
- package/es/components/PisellSuperTabs/types.d.ts +212 -0
- package/es/components/PisellTabbar/PisellTabbar.d.ts +20 -0
- package/es/components/PisellTabbar/constants.d.ts +47 -0
- package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +55 -0
- package/es/components/PisellTabbar/hooks/useExpand.d.ts +42 -0
- package/es/components/PisellTabbar/locales.d.ts +23 -0
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +5 -0
- package/es/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
- package/es/components/PisellTabbar/types.d.ts +90 -0
- package/es/components/PisellTabbar/utils/index.d.ts +69 -0
- package/es/components/PisellTabbar2/locales.d.ts +23 -0
- package/es/components/PisellTabbar3/locales.d.ts +23 -0
- package/es/components/config-provider/index.d.ts +9 -0
- package/es/components/dataSourceComponents/dataSourceForm/BaseForm.js +6 -8
- package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +5 -6
- package/es/components/dataSourceComponents/dataSourceForm/serve.js +39 -33
- package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.js +27 -30
- package/es/components/dataSourceComponents/dataSourceForm/urlUtils.js +1 -1
- package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceForm/utils.js +5 -1
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +2 -2
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useFormat.js +33 -15
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/es/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +26 -0
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +27 -0
- package/es/components/dataSourceComponents/fields/Select/index.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -0
- package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.js +6 -3
- package/es/components/dataSourceComponents/fields/Translation/type.d.ts +21 -0
- package/es/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -0
- package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -0
- package/es/components/dataSourceComponents/fields/index.d.ts +8 -6
- package/es/components/dataSourceComponents/hooks/useActions.js +3 -2
- package/es/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +7 -0
- package/es/components/dataSourceComponents/hooks/useFormSettingParams.js +32 -0
- package/es/components/filter/components/Dropdown/index.js +6 -2
- package/es/components/filter/components/FilterButton/index.js +19 -4
- package/es/components/filter/components/FilterButton/types.d.ts +8 -0
- package/es/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +21 -0
- package/es/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.js +90 -0
- package/es/components/filter/components/FilterItem/index.d.ts +3 -3
- package/es/components/filter/components/FilterItem/index.js +138 -7
- package/es/components/filter/components/FilterItem/index.less +90 -0
- package/es/components/filter/types.d.ts +4 -2
- package/es/components/media/index.d.ts +18 -0
- package/es/components/media/index.js +340 -0
- package/es/components/media/index.less +100 -0
- package/es/components/page/index.d.ts +8 -0
- package/es/components/pisellBatchActionBar/PisellBatchActionBar.js +38 -29
- package/es/components/pisellCurrency/PisellCurrency.less +163 -25
- package/es/components/pisellCurrency/PisellCurrency.stories.js +1 -1
- package/es/components/pisellCurrency/index.d.ts +2 -1
- package/es/components/pisellCurrency/index.js +16 -1
- package/es/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +18 -12
- package/es/components/pisellDataSourceContainer/components/ColumnsSetting/utils.js +15 -64
- package/es/components/pisellDataSourceContainer/components/Pagination/index.d.ts +6 -0
- package/es/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +2 -2
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +35 -0
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.js +21 -15
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.less +2 -1
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +195 -0
- package/es/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +48 -0
- package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
- package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.js +5 -5
- package/es/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
- package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +46 -0
- package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.js +6 -4
- package/es/components/pisellDateTimeDisplay/index.d.ts +3 -0
- package/es/components/pisellDateTimeDisplay/types.d.ts +352 -0
- package/es/components/pisellDateTimeDisplay/utils/formatDate.d.ts +21 -0
- package/es/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +17 -0
- package/es/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +30 -0
- package/es/components/pisellDateTimeDisplay/utils/index.d.ts +7 -0
- package/es/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +22 -0
- package/es/components/pisellDateTimeDisplay/utils/localeUtils.js +15 -4
- package/es/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +24 -0
- package/es/components/pisellDateTimeDisplay/utils/relativeDay.js +4 -2
- package/es/components/pisellEmail/PisellEmail.less +119 -10
- package/es/components/pisellEmail/PisellEmail.stories.js +1 -1
- package/es/components/pisellEmail/index.d.ts +3 -1
- package/es/components/pisellEmail/index.js +17 -1
- package/es/components/pisellFilter/index.js +76 -10
- package/es/components/pisellFind/PisellFind.stories.d.ts +45 -0
- package/es/components/pisellFind/index.d.ts +40 -0
- package/es/components/pisellFind/index.js +11 -2
- package/es/components/pisellGridPro/ToolBar/index.less +23 -0
- package/es/components/pisellLongText/PisellLongText.less +72 -4
- package/es/components/pisellLongText/PisellLongText.stories.js +1 -1
- package/es/components/pisellLongText/index.d.ts +2 -1
- package/es/components/pisellLongText/index.js +16 -1
- package/es/components/pisellLookup/PisellLookup.d.ts +4 -0
- package/es/components/pisellLookup/PisellLookup.js +18 -9
- package/es/components/pisellLookup/PisellLookup.less +39 -16
- package/es/components/pisellLookup/PisellLookup.stories.d.ts +129 -0
- package/es/components/pisellLookup/components/HotWords.d.ts +7 -0
- package/es/components/pisellLookup/components/LookupAuxiliary.d.ts +7 -0
- package/es/components/pisellLookup/components/LookupResultHost.d.ts +7 -0
- package/es/components/pisellLookup/components/LookupTrigger.d.ts +3 -0
- package/es/components/pisellLookup/components/LookupTrigger.js +30 -17
- package/es/components/pisellLookup/components/SearchHistory.d.ts +7 -0
- package/es/components/pisellLookup/components/SuggestWords.d.ts +7 -0
- package/es/components/pisellLookup/components/index.d.ts +9 -0
- package/es/components/pisellLookup/hooks/index.d.ts +6 -0
- package/es/components/pisellLookup/hooks/useDebounceSearch.d.ts +40 -0
- package/es/components/pisellLookup/hooks/useSearchHistory.d.ts +48 -0
- package/es/components/pisellLookup/hooks/useSearchState.d.ts +80 -0
- package/es/components/pisellLookup/index.d.ts +6 -0
- package/es/components/pisellLookup/types.d.ts +667 -0
- package/es/components/pisellLookup/utils/index.d.ts +5 -0
- package/es/components/pisellLookup/utils/storage.d.ts +42 -0
- package/es/components/pisellLookup/utils/trigger.d.ts +42 -0
- package/es/components/pisellMultipleSelect/PisellMultipleSelect.less +159 -124
- package/es/components/pisellMultipleSelect/PisellMultipleSelect.stories.js +1 -1
- package/es/components/pisellMultipleSelect/components/EditView.js +8 -2
- package/es/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +1 -1
- package/es/components/pisellMultipleSelect/components/ReadOnlyView.js +15 -11
- package/es/components/pisellMultipleSelect/index.d.ts +2 -1
- package/es/components/pisellMultipleSelect/index.js +16 -1
- package/es/components/pisellNumber/PisellNumber.less +135 -17
- package/es/components/pisellNumber/PisellNumber.stories.js +1 -1
- package/es/components/pisellNumber/index.d.ts +2 -1
- package/es/components/pisellNumber/index.js +16 -1
- package/es/components/pisellPercent/PisellPercent.less +142 -24
- package/es/components/pisellPercent/PisellPercent.stories.js +1 -1
- package/es/components/pisellPercent/index.d.ts +2 -1
- package/es/components/pisellPercent/index.js +16 -1
- package/es/components/pisellPhone/PisellPhone.less +122 -27
- package/es/components/pisellPhone/PisellPhone.stories.js +1 -1
- package/es/components/pisellPhone/components/EditView.js +1 -1
- package/es/components/pisellPhone/components/ReadOnlyView.js +15 -6
- package/es/components/pisellPhone/index.d.ts +2 -1
- package/es/components/pisellPhone/index.js +16 -1
- package/es/components/pisellRating/PisellRating.less +20 -12
- package/es/components/pisellRating/PisellRating.stories.js +1 -1
- package/es/components/pisellRating/index.d.ts +2 -1
- package/es/components/pisellRating/index.js +16 -1
- package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts.map +1 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.js +243 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +81 -0
- package/es/components/pisellRecordBoard/PisellRecordBoard.stories.js +2358 -0
- package/es/components/pisellRecordBoard/context/RecordBoardContext.d.ts +3 -0
- package/es/components/pisellRecordBoard/context/RecordBoardContext.js +2 -0
- package/es/components/pisellRecordBoard/context/RecordBoardProvider.d.ts +11 -0
- package/es/components/pisellRecordBoard/context/RecordBoardProvider.js +13 -0
- package/es/components/pisellRecordBoard/hooks/useRecordBoardContext.d.ts +16 -0
- package/es/components/pisellRecordBoard/hooks/useRecordBoardContext.js +29 -0
- package/es/components/pisellRecordBoard/index.d.ts +35 -0
- package/es/components/pisellRecordBoard/index.js +23 -0
- package/es/components/pisellRecordBoard/layouts/CardLayout/CardList.d.ts +12 -0
- package/es/components/pisellRecordBoard/layouts/CardLayout/CardList.js +36 -0
- package/es/components/pisellRecordBoard/layouts/CardLayout/index.d.ts +13 -0
- package/es/components/pisellRecordBoard/layouts/CardLayout/index.js +20 -0
- package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +14 -0
- package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.js +242 -0
- package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.less +100 -0
- package/es/components/pisellRecordBoard/layouts/GridLayout/index.d.ts +13 -0
- package/es/components/pisellRecordBoard/layouts/GridLayout/index.js +20 -0
- package/es/components/pisellRecordBoard/shellFrame/BatchActionBar/index.d.ts +8 -0
- package/es/components/pisellRecordBoard/shellFrame/BatchActionBar/index.js +90 -0
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/ColumnSettingPopover.d.ts +15 -0
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/ColumnSettingPopover.js +138 -0
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +66 -0
- package/es/components/pisellRecordBoard/shellFrame/ColumnSetting/index.less +2 -0
- package/es/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
- package/es/components/pisellRecordBoard/shellFrame/Pagination/index.js +66 -0
- package/es/components/pisellRecordBoard/shellFrame/Pagination/index.less +78 -0
- package/es/components/pisellRecordBoard/shellFrame/Search/index.d.ts +10 -0
- package/es/components/pisellRecordBoard/shellFrame/Search/index.js +41 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +112 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts.map +1 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +215 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.js +77 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarReset/index.d.ts +17 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarReset/index.d.ts.map +1 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarReset/index.js +65 -0
- package/es/components/pisellRecordBoard/shellFrame/ToolBarReset/index.less +41 -0
- package/es/components/pisellRecordBoard/shellFrame/index.d.ts +26 -0
- package/es/components/pisellRecordBoard/shellFrame/index.js +104 -0
- package/es/components/pisellRecordBoard/types.d.ts +316 -0
- package/es/components/pisellRecordBoard/types.d.ts.map +1 -0
- package/es/components/pisellRecordBoard/types.js +1 -0
- package/es/components/pisellRecordBoard/utils/recordBoardColumns.d.ts +41 -0
- package/es/components/pisellRecordBoard/utils/recordBoardColumns.js +508 -0
- package/es/components/pisellRecordBoard/utils/withRecordBoard.d.ts +9 -0
- package/es/components/pisellRecordBoard/utils/withRecordBoard.js +27 -0
- package/es/components/pisellShellFrame/PisellShellFrame.d.ts +13 -0
- package/es/components/pisellShellFrame/PisellShellFrame.js +107 -0
- package/es/components/pisellShellFrame/PisellShellFrame.less +78 -0
- package/es/components/pisellShellFrame/PisellShellFrame.stories.d.ts +15 -0
- package/es/components/pisellShellFrame/PisellShellFrame.stories.js +195 -0
- package/es/components/pisellShellFrame/index.d.ts +2 -0
- package/es/components/pisellShellFrame/index.js +1 -0
- package/es/components/pisellShellFrame/types.d.ts +56 -0
- package/es/components/pisellShellFrame/types.js +1 -0
- package/es/components/pisellSingleLineText/PisellSingleLineText.stories.js +1 -1
- package/es/components/pisellSingleLineText/index.d.ts +2 -1
- package/es/components/pisellSingleLineText/index.js +16 -1
- package/es/components/pisellSingleSelect/PisellSingleSelect.less +103 -46
- package/es/components/pisellSingleSelect/PisellSingleSelect.stories.js +1 -1
- package/es/components/pisellSingleSelect/components/EditView.js +8 -2
- package/es/components/pisellSingleSelect/components/ReadOnlyView.d.ts +1 -1
- package/es/components/pisellSingleSelect/components/ReadOnlyView.js +10 -6
- package/es/components/pisellSingleSelect/index.d.ts +2 -1
- package/es/components/pisellSingleSelect/index.js +16 -1
- package/es/components/pisellStatisticList/index.d.ts +1 -0
- package/es/components/pisellStatisticList/index.js +5 -2
- package/es/components/pisellText/components/Editable/index.d.ts +32 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +32 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.js +8 -5
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +61 -0
- package/es/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +20 -0
- package/es/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +19 -0
- package/es/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +30 -0
- package/es/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +18 -0
- package/es/components/pisellTimeRangeDisplay/components/index.d.ts +8 -0
- package/es/components/pisellTimeRangeDisplay/index.d.ts +3 -0
- package/es/components/pisellTimeRangeDisplay/types.d.ts +137 -0
- package/es/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
- package/es/components/pisellTimeRangeDisplay/utils/index.d.ts +4 -0
- package/es/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +23 -0
- package/es/components/pisellUrl/PisellUrl.less +120 -11
- package/es/components/pisellUrl/PisellUrl.stories.js +1 -1
- package/es/components/pisellUrl/index.d.ts +3 -1
- package/es/components/pisellUrl/index.js +17 -1
- package/es/components/pisellVHFix/index.d.ts +13 -0
- package/es/components/pisellVHFix/index.js +36 -0
- package/es/components/pisellVHFix/index.less +10 -0
- package/es/components/productCard/cartSkuCard/components/Gift/index.d.ts +4 -0
- package/es/components/productCard/cartSkuCard/components/Gift/index.js +1 -1
- package/es/components/productCard/cartSkuCard/components/Gift/types.d.ts +29 -0
- package/es/components/productCard/cartSkuCard/components/Promotion/index.d.ts +6 -0
- package/es/components/productCard/cartSkuCard/components/basicInfo/index.d.ts +36 -0
- package/es/components/productCard/cartSkuCard/components/basicInfo/index.js +5 -3
- package/es/components/productCard/cartSkuCard/components/basicInfo/index.less +1 -1
- package/es/components/productCard/cartSkuCard/components/packages/index.d.ts +11 -0
- package/es/components/productCard/cartSkuCard/components/timeRange/index.d.ts +8 -0
- package/es/components/productCard/cartSkuCard/components/timeRange/index.js +1 -0
- package/es/components/productCard/cartSkuCard/index.d.ts +10 -0
- package/es/components/productCard/cartSkuCard/index.js +5 -1
- package/es/components/productCard/cartSkuCard/locales.d.ts +178 -0
- package/es/components/productCard/cartSkuCard/locales.js +12 -2
- package/es/components/productCard/components/Header/EditButton/index.d.ts +3 -0
- package/es/components/productCard/locales.d.ts +138 -0
- package/es/components/productCard/status.d.ts +32 -0
- package/es/components/productCard/types.d.ts +95 -0
- package/es/components/productCard/utils.d.ts +33 -0
- package/es/components/select/index.less +18 -2
- package/es/components/sort/index.js +25 -3
- package/es/components/sort/types.d.ts +20 -1
- package/es/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +2 -2
- package/es/components/table/Table/fields/select/filterUtil/index.d.ts +1 -1
- package/es/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +1 -1
- package/es/components/table/Table/utils.d.ts +1 -1
- package/es/components/translation/index.d.ts +17 -0
- package/es/components/translation/utils.d.ts +9 -0
- package/es/components/virtualInput/BaseVirtualInput/index.less +2 -2
- package/es/components/virtualInput/index.d.ts +5 -0
- package/es/components/virtualInput/index.js +6 -2
- package/es/components/walletCard/index.d.ts +79 -0
- package/es/hooks/useThemeTokens.d.ts +7 -0
- package/es/hooks/useThemeTokens.js +20 -0
- package/es/index.d.ts +235 -0
- package/es/index.js +23 -21
- package/es/locales/en-US.d.ts +384 -0
- package/es/locales/en-US.js +51 -2
- package/es/locales/index.d.ts +1 -0
- package/es/locales/index.js +2 -2
- package/es/locales/ja.d.ts +348 -0
- package/es/locales/ja.js +13 -1
- package/es/locales/pt.d.ts +348 -0
- package/es/locales/pt.js +12 -1
- package/es/locales/zh-CN.d.ts +379 -0
- package/es/locales/zh-CN.js +55 -6
- package/es/locales/zh-TW.d.ts +379 -0
- package/es/locales/zh-TW.js +55 -6
- package/es/theme/tokens.d.ts +22 -0
- package/es/utils/index.d.ts +1 -1
- package/es/utils/platform.d.ts +1 -1
- package/es/utils/tagColor.d.ts +7 -0
- package/es/utils/tagColor.js +39 -0
- package/lib/components/Pagination/index.d.ts +3 -5
- package/lib/components/Pagination/index.js +44 -21
- package/lib/components/Pagination/index.less +13 -7
- package/lib/components/PisellFields/index.d.ts +2 -2
- package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +8 -0
- package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
- package/lib/components/PisellSuperTabs/types.d.ts +212 -0
- package/lib/components/PisellTabbar/PisellTabbar.d.ts +20 -0
- package/lib/components/PisellTabbar/constants.d.ts +47 -0
- package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +55 -0
- package/lib/components/PisellTabbar/hooks/useExpand.d.ts +42 -0
- package/lib/components/PisellTabbar/locales.d.ts +23 -0
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +5 -0
- package/lib/components/PisellTabbar/template/Template1/constants.d.ts +10 -0
- package/lib/components/PisellTabbar/types.d.ts +90 -0
- package/lib/components/PisellTabbar/utils/index.d.ts +69 -0
- package/lib/components/PisellTabbar2/locales.d.ts +23 -0
- package/lib/components/PisellTabbar3/locales.d.ts +23 -0
- package/lib/components/config-provider/index.d.ts +9 -0
- package/lib/components/dataSourceComponents/dataSourceForm/BaseForm.js +3 -3
- package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +5 -6
- package/lib/components/dataSourceComponents/dataSourceForm/serve.js +38 -22
- package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.js +4 -8
- package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.js +1 -1
- package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceForm/utils.js +2 -1
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +2 -2
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useFormat.js +33 -15
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +2 -2
- package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +26 -0
- package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +27 -0
- package/lib/components/dataSourceComponents/fields/Select/index.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +5 -0
- package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.js +6 -3
- package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +21 -0
- package/lib/components/dataSourceComponents/fields/Upload/constants.d.ts +9 -0
- package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +18 -0
- package/lib/components/dataSourceComponents/fields/index.d.ts +8 -6
- package/lib/components/dataSourceComponents/hooks/useActions.js +6 -2
- package/lib/components/dataSourceComponents/hooks/useFormSettingParams.d.ts +7 -0
- package/lib/components/dataSourceComponents/hooks/useFormSettingParams.js +63 -0
- package/lib/components/filter/components/Dropdown/index.js +9 -2
- package/lib/components/filter/components/FilterButton/index.js +14 -3
- package/lib/components/filter/components/FilterButton/types.d.ts +8 -0
- package/lib/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.d.ts +21 -0
- package/lib/components/filter/components/FilterItem/AsyncOptionsSelectWrapper.js +69 -0
- package/lib/components/filter/components/FilterItem/index.d.ts +3 -3
- package/lib/components/filter/components/FilterItem/index.js +133 -4
- package/lib/components/filter/components/FilterItem/index.less +90 -0
- package/lib/components/filter/types.d.ts +4 -2
- package/lib/components/media/index.d.ts +18 -0
- package/lib/components/media/index.js +265 -0
- package/lib/components/media/index.less +100 -0
- package/lib/components/page/index.d.ts +8 -0
- package/lib/components/pisellBatchActionBar/PisellBatchActionBar.js +26 -23
- package/lib/components/pisellCurrency/PisellCurrency.less +163 -25
- package/lib/components/pisellCurrency/PisellCurrency.stories.js +1 -1
- package/lib/components/pisellCurrency/index.d.ts +2 -1
- package/lib/components/pisellCurrency/index.js +7 -0
- package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/utils.d.ts +18 -12
- package/lib/components/pisellDataSourceContainer/components/ColumnsSetting/utils.js +8 -48
- package/lib/components/pisellDataSourceContainer/components/Pagination/index.d.ts +6 -0
- package/lib/components/pisellDataSourceContainer/hooks/useDataSourceKey.d.ts +2 -2
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.d.ts +35 -0
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.js +17 -11
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.less +2 -1
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +195 -0
- package/lib/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +48 -0
- package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
- package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.js +3 -3
- package/lib/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
- package/lib/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +46 -0
- package/lib/components/pisellDateTimeDisplay/hooks/useCurrentTime.js +7 -1
- package/lib/components/pisellDateTimeDisplay/index.d.ts +3 -0
- package/lib/components/pisellDateTimeDisplay/types.d.ts +352 -0
- package/lib/components/pisellDateTimeDisplay/utils/formatDate.d.ts +21 -0
- package/lib/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +17 -0
- package/lib/components/pisellDateTimeDisplay/utils/formatWeekday.d.ts +30 -0
- package/lib/components/pisellDateTimeDisplay/utils/index.d.ts +7 -0
- package/lib/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +22 -0
- package/lib/components/pisellDateTimeDisplay/utils/localeUtils.js +10 -2
- package/lib/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +24 -0
- package/lib/components/pisellDateTimeDisplay/utils/relativeDay.js +2 -1
- package/lib/components/pisellEmail/PisellEmail.less +119 -10
- package/lib/components/pisellEmail/PisellEmail.stories.js +1 -1
- package/lib/components/pisellEmail/index.d.ts +3 -1
- package/lib/components/pisellEmail/index.js +10 -2
- package/lib/components/pisellFilter/index.js +79 -8
- package/lib/components/pisellFind/PisellFind.stories.d.ts +45 -0
- package/lib/components/pisellFind/index.d.ts +40 -0
- package/lib/components/pisellFind/index.js +11 -2
- package/lib/components/pisellGridPro/ToolBar/index.less +23 -0
- package/lib/components/pisellLongText/PisellLongText.less +72 -4
- package/lib/components/pisellLongText/PisellLongText.stories.js +1 -1
- package/lib/components/pisellLongText/index.d.ts +2 -1
- package/lib/components/pisellLongText/index.js +7 -0
- package/lib/components/pisellLookup/PisellLookup.d.ts +4 -0
- package/lib/components/pisellLookup/PisellLookup.js +12 -6
- package/lib/components/pisellLookup/PisellLookup.less +39 -16
- package/lib/components/pisellLookup/PisellLookup.stories.d.ts +129 -0
- package/lib/components/pisellLookup/components/HotWords.d.ts +7 -0
- package/lib/components/pisellLookup/components/LookupAuxiliary.d.ts +7 -0
- package/lib/components/pisellLookup/components/LookupResultHost.d.ts +7 -0
- package/lib/components/pisellLookup/components/LookupTrigger.d.ts +3 -0
- package/lib/components/pisellLookup/components/LookupTrigger.js +17 -11
- package/lib/components/pisellLookup/components/SearchHistory.d.ts +7 -0
- package/lib/components/pisellLookup/components/SuggestWords.d.ts +7 -0
- package/lib/components/pisellLookup/components/index.d.ts +9 -0
- package/lib/components/pisellLookup/hooks/index.d.ts +6 -0
- package/lib/components/pisellLookup/hooks/useDebounceSearch.d.ts +40 -0
- package/lib/components/pisellLookup/hooks/useSearchHistory.d.ts +48 -0
- package/lib/components/pisellLookup/hooks/useSearchState.d.ts +80 -0
- package/lib/components/pisellLookup/index.d.ts +6 -0
- package/lib/components/pisellLookup/types.d.ts +667 -0
- package/lib/components/pisellLookup/utils/index.d.ts +5 -0
- package/lib/components/pisellLookup/utils/storage.d.ts +42 -0
- package/lib/components/pisellLookup/utils/trigger.d.ts +42 -0
- package/lib/components/pisellMultipleSelect/PisellMultipleSelect.less +159 -124
- package/lib/components/pisellMultipleSelect/PisellMultipleSelect.stories.js +1 -1
- package/lib/components/pisellMultipleSelect/components/EditView.js +4 -1
- package/lib/components/pisellMultipleSelect/components/ReadOnlyView.d.ts +1 -1
- package/lib/components/pisellMultipleSelect/components/ReadOnlyView.js +29 -1
- package/lib/components/pisellMultipleSelect/index.d.ts +2 -1
- package/lib/components/pisellMultipleSelect/index.js +7 -0
- package/lib/components/pisellNumber/PisellNumber.less +135 -17
- package/lib/components/pisellNumber/PisellNumber.stories.js +1 -1
- package/lib/components/pisellNumber/index.d.ts +2 -1
- package/lib/components/pisellNumber/index.js +7 -0
- package/lib/components/pisellPercent/PisellPercent.less +142 -24
- package/lib/components/pisellPercent/PisellPercent.stories.js +1 -1
- package/lib/components/pisellPercent/index.d.ts +2 -1
- package/lib/components/pisellPercent/index.js +7 -0
- package/lib/components/pisellPhone/PisellPhone.less +122 -27
- package/lib/components/pisellPhone/PisellPhone.stories.js +1 -1
- package/lib/components/pisellPhone/components/EditView.js +1 -1
- package/lib/components/pisellPhone/components/ReadOnlyView.js +18 -4
- package/lib/components/pisellPhone/index.d.ts +2 -1
- package/lib/components/pisellPhone/index.js +7 -0
- package/lib/components/pisellRating/PisellRating.less +20 -12
- package/lib/components/pisellRating/PisellRating.stories.js +1 -1
- package/lib/components/pisellRating/index.d.ts +2 -1
- package/lib/components/pisellRating/index.js +7 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +9 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts.map +1 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.js +263 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.d.ts +81 -0
- package/lib/components/pisellRecordBoard/PisellRecordBoard.stories.js +1673 -0
- package/lib/components/pisellRecordBoard/context/RecordBoardContext.d.ts +3 -0
- package/lib/components/pisellRecordBoard/context/RecordBoardContext.js +30 -0
- package/lib/components/pisellRecordBoard/context/RecordBoardProvider.d.ts +11 -0
- package/lib/components/pisellRecordBoard/context/RecordBoardProvider.js +46 -0
- package/lib/components/pisellRecordBoard/hooks/useRecordBoardContext.d.ts +16 -0
- package/lib/components/pisellRecordBoard/hooks/useRecordBoardContext.js +47 -0
- package/lib/components/pisellRecordBoard/index.d.ts +35 -0
- package/lib/components/pisellRecordBoard/index.js +59 -0
- package/lib/components/pisellRecordBoard/layouts/CardLayout/CardList.d.ts +12 -0
- package/lib/components/pisellRecordBoard/layouts/CardLayout/CardList.js +46 -0
- package/lib/components/pisellRecordBoard/layouts/CardLayout/index.d.ts +13 -0
- package/lib/components/pisellRecordBoard/layouts/CardLayout/index.js +46 -0
- package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +14 -0
- package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.js +264 -0
- package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.less +100 -0
- package/lib/components/pisellRecordBoard/layouts/GridLayout/index.d.ts +13 -0
- package/lib/components/pisellRecordBoard/layouts/GridLayout/index.js +46 -0
- package/lib/components/pisellRecordBoard/shellFrame/BatchActionBar/index.d.ts +8 -0
- package/lib/components/pisellRecordBoard/shellFrame/BatchActionBar/index.js +108 -0
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/ColumnSettingPopover.d.ts +15 -0
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/ColumnSettingPopover.js +173 -0
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.d.ts +8 -0
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.js +100 -0
- package/lib/components/pisellRecordBoard/shellFrame/ColumnSetting/index.less +2 -0
- package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.d.ts +14 -0
- package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.js +90 -0
- package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.less +78 -0
- package/lib/components/pisellRecordBoard/shellFrame/Search/index.d.ts +10 -0
- package/lib/components/pisellRecordBoard/shellFrame/Search/index.js +53 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/ToolBarFilter.less +112 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts +12 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.d.ts.map +1 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +247 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.d.ts +17 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarQuickFilter/index.js +93 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarReset/index.d.ts +17 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarReset/index.d.ts.map +1 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarReset/index.js +85 -0
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarReset/index.less +41 -0
- package/lib/components/pisellRecordBoard/shellFrame/index.d.ts +26 -0
- package/lib/components/pisellRecordBoard/shellFrame/index.js +137 -0
- package/lib/components/pisellRecordBoard/types.d.ts +316 -0
- package/lib/components/pisellRecordBoard/types.d.ts.map +1 -0
- package/lib/components/pisellRecordBoard/types.js +17 -0
- package/lib/components/pisellRecordBoard/utils/recordBoardColumns.d.ts +41 -0
- package/lib/components/pisellRecordBoard/utils/recordBoardColumns.js +365 -0
- package/lib/components/pisellRecordBoard/utils/withRecordBoard.d.ts +9 -0
- package/lib/components/pisellRecordBoard/utils/withRecordBoard.js +49 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.d.ts +13 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.js +113 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.less +78 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.stories.d.ts +15 -0
- package/lib/components/pisellShellFrame/PisellShellFrame.stories.js +129 -0
- package/lib/components/pisellShellFrame/index.d.ts +2 -0
- package/lib/components/pisellShellFrame/index.js +40 -0
- package/lib/components/pisellShellFrame/types.d.ts +56 -0
- package/lib/components/pisellShellFrame/types.js +17 -0
- package/lib/components/pisellSingleLineText/PisellSingleLineText.stories.js +1 -1
- package/lib/components/pisellSingleLineText/index.d.ts +2 -1
- package/lib/components/pisellSingleLineText/index.js +7 -0
- package/lib/components/pisellSingleSelect/PisellSingleSelect.less +103 -46
- package/lib/components/pisellSingleSelect/PisellSingleSelect.stories.js +1 -1
- package/lib/components/pisellSingleSelect/components/EditView.js +4 -1
- package/lib/components/pisellSingleSelect/components/ReadOnlyView.d.ts +1 -1
- package/lib/components/pisellSingleSelect/components/ReadOnlyView.js +12 -9
- package/lib/components/pisellSingleSelect/index.d.ts +2 -1
- package/lib/components/pisellSingleSelect/index.js +7 -0
- package/lib/components/pisellStatisticList/index.d.ts +1 -0
- package/lib/components/pisellStatisticList/index.js +4 -2
- package/lib/components/pisellText/components/Editable/index.d.ts +32 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +32 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.js +7 -3
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +61 -0
- package/lib/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +20 -0
- package/lib/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +19 -0
- package/lib/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +30 -0
- package/lib/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +18 -0
- package/lib/components/pisellTimeRangeDisplay/components/index.d.ts +8 -0
- package/lib/components/pisellTimeRangeDisplay/index.d.ts +3 -0
- package/lib/components/pisellTimeRangeDisplay/types.d.ts +137 -0
- package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
- package/lib/components/pisellTimeRangeDisplay/utils/index.d.ts +4 -0
- package/lib/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +23 -0
- package/lib/components/pisellUrl/PisellUrl.less +120 -11
- package/lib/components/pisellUrl/PisellUrl.stories.js +1 -1
- package/lib/components/pisellUrl/index.d.ts +3 -1
- package/lib/components/pisellUrl/index.js +10 -2
- package/lib/components/pisellVHFix/index.d.ts +13 -0
- package/lib/components/pisellVHFix/index.js +56 -0
- package/lib/components/pisellVHFix/index.less +10 -0
- package/lib/components/productCard/cartSkuCard/components/Gift/index.d.ts +4 -0
- package/lib/components/productCard/cartSkuCard/components/Gift/index.js +1 -1
- package/lib/components/productCard/cartSkuCard/components/Gift/types.d.ts +29 -0
- package/lib/components/productCard/cartSkuCard/components/Promotion/index.d.ts +6 -0
- package/lib/components/productCard/cartSkuCard/components/basicInfo/index.d.ts +36 -0
- package/lib/components/productCard/cartSkuCard/components/basicInfo/index.js +7 -1
- package/lib/components/productCard/cartSkuCard/components/basicInfo/index.less +1 -1
- package/lib/components/productCard/cartSkuCard/components/packages/index.d.ts +11 -0
- package/lib/components/productCard/cartSkuCard/components/timeRange/index.d.ts +8 -0
- package/lib/components/productCard/cartSkuCard/components/timeRange/index.js +1 -0
- package/lib/components/productCard/cartSkuCard/index.d.ts +10 -0
- package/lib/components/productCard/cartSkuCard/index.js +5 -1
- package/lib/components/productCard/cartSkuCard/locales.d.ts +178 -0
- package/lib/components/productCard/cartSkuCard/locales.js +8 -2
- package/lib/components/productCard/components/Header/EditButton/index.d.ts +3 -0
- package/lib/components/productCard/locales.d.ts +138 -0
- package/lib/components/productCard/status.d.ts +32 -0
- package/lib/components/productCard/types.d.ts +95 -0
- package/lib/components/productCard/utils.d.ts +33 -0
- package/lib/components/select/index.less +18 -2
- package/lib/components/sort/index.js +13 -3
- package/lib/components/sort/types.d.ts +20 -1
- package/lib/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +2 -2
- package/lib/components/table/Table/fields/select/filterUtil/index.d.ts +1 -1
- package/lib/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +1 -1
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/lib/components/translation/index.d.ts +17 -0
- package/lib/components/translation/utils.d.ts +9 -0
- package/lib/components/virtualInput/BaseVirtualInput/index.less +2 -2
- package/lib/components/virtualInput/index.d.ts +5 -0
- package/lib/components/virtualInput/index.js +7 -1
- package/lib/components/walletCard/index.d.ts +79 -0
- package/lib/hooks/useThemeTokens.d.ts +7 -0
- package/lib/hooks/useThemeTokens.js +40 -0
- package/lib/index.d.ts +235 -0
- package/lib/index.js +14 -8
- package/lib/locales/en-US.d.ts +384 -0
- package/lib/locales/en-US.js +43 -2
- package/lib/locales/index.d.ts +1 -0
- package/lib/locales/index.js +2 -2
- package/lib/locales/ja.d.ts +348 -0
- package/lib/locales/ja.js +13 -1
- package/lib/locales/pt.d.ts +348 -0
- package/lib/locales/pt.js +12 -1
- package/lib/locales/zh-CN.d.ts +379 -0
- package/lib/locales/zh-CN.js +47 -6
- package/lib/locales/zh-TW.d.ts +379 -0
- package/lib/locales/zh-TW.js +47 -6
- package/lib/theme/tokens.d.ts +22 -0
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/platform.d.ts +1 -1
- package/lib/utils/tagColor.d.ts +7 -0
- package/lib/utils/tagColor.js +60 -0
- package/lowcode/_utils/defaultSchema.ts +95 -30
- package/lowcode/data-source-form/utils.ts +68 -4
- package/package.json +3 -3
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'pisell-tabbar-expand': string;
|
|
3
|
+
'pisell-tabbar-minimize': string;
|
|
4
|
+
'pisell-tabbar-all': string;
|
|
5
|
+
'table-filter-search': string;
|
|
6
|
+
'table-filter-find': string;
|
|
7
|
+
'table-filter-clear': string;
|
|
8
|
+
'table-filter-filter': string;
|
|
9
|
+
'table-filter-min': string;
|
|
10
|
+
'table-filter-max': string;
|
|
11
|
+
'table-pagination-previous': string;
|
|
12
|
+
'table-pagination-next': string;
|
|
13
|
+
'table-pagination-total': (current: string, total: string) => string;
|
|
14
|
+
'select-dropdown-render-select-all': string;
|
|
15
|
+
'select-dropdown-render-search': string;
|
|
16
|
+
'sort-button-text': string;
|
|
17
|
+
'sort-oldest-to-newest': string;
|
|
18
|
+
'sort-newest-to-oldest': string;
|
|
19
|
+
'sort-a-z': string;
|
|
20
|
+
'sort-z-a': string;
|
|
21
|
+
'sort-from-morning-to-night': string;
|
|
22
|
+
'sort-from-evening-to-morning': string;
|
|
23
|
+
'sort-0-9': string;
|
|
24
|
+
'sort-9-0': string;
|
|
25
|
+
'sort-first-last': string;
|
|
26
|
+
'sort-last-first': string;
|
|
27
|
+
'table-action-filter-button': string;
|
|
28
|
+
'table-action-filter-quick-filter': string;
|
|
29
|
+
'table-action-filter-quick-filter-tip': (count: number) => string;
|
|
30
|
+
'table-action-filter-other-filter': string;
|
|
31
|
+
'table-action-filter-other-filter-tip': () => string;
|
|
32
|
+
'table-action-group-by-title': string;
|
|
33
|
+
'table-action-group-by-title-tip': string;
|
|
34
|
+
'table-action-column-title': string;
|
|
35
|
+
'table-column-group-records': string;
|
|
36
|
+
'table-column-group-lock-tip': string;
|
|
37
|
+
'record-board-uniform-summary-empty': string;
|
|
38
|
+
'record-board-uniform-summary-same': string;
|
|
39
|
+
'table-column-drag-sort-disabled-tip': string;
|
|
40
|
+
'table-action-filter-no-filter': string;
|
|
41
|
+
'table-action-range-picker-placeholder-start': string;
|
|
42
|
+
'table-action-range-picker-placeholder-end': string;
|
|
43
|
+
'table-action-range-picker-presets-today': string;
|
|
44
|
+
'table-action-range-picker-presets-yesterday': string;
|
|
45
|
+
'table-action-range-picker-presets-last-3-day': string;
|
|
46
|
+
'table-action-range-picker-presets-last-7-day': string;
|
|
47
|
+
'table-action-range-picker-presets-last-14-day': string;
|
|
48
|
+
'table-action-range-picker-presets-last-30-day': string;
|
|
49
|
+
'table-action-range-picker-presets-last-90-day': string;
|
|
50
|
+
'virtual-keyboard-time-now': string;
|
|
51
|
+
'virtual-keyboard-time-ok': string;
|
|
52
|
+
'batch-editor-batch-edit': string;
|
|
53
|
+
'pisell-lookup-placeholder': string;
|
|
54
|
+
'pisell-lookup-button-text': string;
|
|
55
|
+
'pisell-lookup-confirm-button-text': string;
|
|
56
|
+
'pisell-lookup-clear': string;
|
|
57
|
+
'pisell-lookup-close': string;
|
|
58
|
+
'pisell-lookup-search-history': string;
|
|
59
|
+
'pisell-lookup-clear-history': string;
|
|
60
|
+
'pisell-lookup-suggestions': string;
|
|
61
|
+
'pisell-lookup-popular-search': string;
|
|
62
|
+
'pisell-lookup-loading': string;
|
|
63
|
+
'pisell-lookup-no-data': string;
|
|
64
|
+
'pisell-find-button-text': string;
|
|
65
|
+
'pisell-find-placeholder': string;
|
|
66
|
+
'pisell-export-button-text': string;
|
|
67
|
+
'batch-editor-actions': string;
|
|
68
|
+
'batch-editor-remove': string;
|
|
69
|
+
'batch-editor-price': string;
|
|
70
|
+
'batch-editor-cancel': string;
|
|
71
|
+
'batch-editor-search': string;
|
|
72
|
+
'batch-editor-confirm': string;
|
|
73
|
+
'batch-editor-batch-remove': string;
|
|
74
|
+
'batch-editor-quick-edit': string;
|
|
75
|
+
'batch-editor-what-price': string;
|
|
76
|
+
'batch-editor-quick-edit-title': (product: string, num: string) => string;
|
|
77
|
+
'batch-editor-quick-edit-title-2': (product: string) => string;
|
|
78
|
+
'batch-action-bar-select-all': string;
|
|
79
|
+
'batch-action-bar-invert': string;
|
|
80
|
+
'batch-action-bar-clear': string;
|
|
81
|
+
'batch-action-bar-delete': string;
|
|
82
|
+
'batch-action-bar-more': string;
|
|
83
|
+
'batch-action-bar-selected-count': (count: number) => string;
|
|
84
|
+
'batch-action-bar-confirm-title': string;
|
|
85
|
+
'batch-action-bar-delete-confirm-title': string;
|
|
86
|
+
'batch-action-bar-delete-confirm-content': (count: number) => string;
|
|
87
|
+
'batch-action-bar-delete-confirm-ok': string;
|
|
88
|
+
'batch-action-bar-delete-confirm-cancel': string;
|
|
89
|
+
'record-board-toolbar-reset': string;
|
|
90
|
+
'record-board-toolbar-default-filter-status': string;
|
|
91
|
+
'record-board-toolbar-default-filter-all': string;
|
|
92
|
+
'record-board-toolbar-default-filter-enabled': string;
|
|
93
|
+
'record-board-toolbar-default-filter-disabled': string;
|
|
94
|
+
'record-board-toolbar-default-filter-keyword': string;
|
|
95
|
+
'record-board-toolbar-default-placeholder': string;
|
|
96
|
+
'pisell2.recordBoard.toolbar.find': string;
|
|
97
|
+
'pisell2.recordBoard.toolbar.findPlaceholder': string;
|
|
98
|
+
'pisell2.recordBoard.toolbar.sort': string;
|
|
99
|
+
'pisell2.recordBoard.toolbar.filter': string;
|
|
100
|
+
'pisell2.recordBoard.toolbar.reset': string;
|
|
101
|
+
'pisell2.salesManagement.pagination.previous': string;
|
|
102
|
+
'pisell2.salesManagement.pagination.next': string;
|
|
103
|
+
'pisell2.salesManagement.pagination.showTotal': (start: number, end: number) => string;
|
|
104
|
+
'pisell2.salesManagement.pagination.total': (current: number, max: number) => string;
|
|
105
|
+
'pisell2.salesManagement.batchActionBar.selectedCount': (count: number) => string;
|
|
106
|
+
'pisell2.salesManagement.batchActionBar.more': string;
|
|
107
|
+
'pisell2.salesManagement.batchActionBar.selectAll': string;
|
|
108
|
+
'pisell2.salesManagement.batchActionBar.invert': string;
|
|
109
|
+
'pisell2.salesManagement.batchActionBar.clear': string;
|
|
110
|
+
'pisell2.salesManagement.batchActionBar.delete': string;
|
|
111
|
+
'pisell2.salesManagement.batchActionBar.confirmTitle': string;
|
|
112
|
+
'pisell2.salesManagement.batchActionBar.deleteConfirmTitle': string;
|
|
113
|
+
'pisell2.salesManagement.batchActionBar.deleteConfirmContent': (count: number) => string;
|
|
114
|
+
'pisell2.salesManagement.batchActionBar.deleteConfirmOk': string;
|
|
115
|
+
'pisell2.salesManagement.batchActionBar.deleteConfirmCancel': string;
|
|
116
|
+
'shell-frame-statistic-expand': string;
|
|
117
|
+
'shell-frame-statistic-collapse': string;
|
|
118
|
+
'table-action-export-import-export-success': string;
|
|
119
|
+
'table-action-export-import-button': string;
|
|
120
|
+
'table-action-export-import-export-range': string;
|
|
121
|
+
'table-action-export-import-current-page': string;
|
|
122
|
+
'table-action-export-import-all-records': string;
|
|
123
|
+
'table-action-export-import-selected-records': string;
|
|
124
|
+
'table-action-export-import-selected': string;
|
|
125
|
+
'table-action-export-import-item': (length: number) => string;
|
|
126
|
+
'table-action-export-import-product': string;
|
|
127
|
+
'table-action-export-import-table-text-input-title': string;
|
|
128
|
+
'table-action-export-import-table-text-input-describe': string;
|
|
129
|
+
'table-action-export-import-table-error-file': string;
|
|
130
|
+
'table-action-export-import-import-success': string;
|
|
131
|
+
'table-action-export-import-import-phone': string;
|
|
132
|
+
'table-action-export-import-table-success-download': string;
|
|
133
|
+
'table-action-export-import-table-textimport-product': string;
|
|
134
|
+
'table-action-export-import-table-text-product-template': string;
|
|
135
|
+
'table-action-export-import-table-text-click-download': string;
|
|
136
|
+
'table-action-export-import-table-text-edit-file': string;
|
|
137
|
+
'table-action-export-import-button-import': string;
|
|
138
|
+
'table-action-export-import-cancel': string;
|
|
139
|
+
'table-action-export-import-file-completed': string;
|
|
140
|
+
'table-action-export-import-file-processing': string;
|
|
141
|
+
'table-action-export-import-file-pending': string;
|
|
142
|
+
'table-action-export-import-file-refresh': string;
|
|
143
|
+
'table-action-export-import-export-title': string;
|
|
144
|
+
'table-action-export-import-file-hint': string;
|
|
145
|
+
'table-action-export-import-file-name': string;
|
|
146
|
+
'table-action-export-import-file-content': string;
|
|
147
|
+
'table-action-export-import-file-content-all': string;
|
|
148
|
+
'table-action-export-import-file-content-part': string;
|
|
149
|
+
'table-action-export-import-file-status': string;
|
|
150
|
+
'table-action-export-import-file-account': string;
|
|
151
|
+
'table-action-export-import-file-created': string;
|
|
152
|
+
'table-action-export-import-file-record': (length: number) => string;
|
|
153
|
+
'table-action-export-import-import-title': string;
|
|
154
|
+
'table-action-export-import-log-hint': string;
|
|
155
|
+
'table-action-export-import-log-name': string;
|
|
156
|
+
'table-action-export-import-log-result': string;
|
|
157
|
+
'table-action-export-import-log-ok': (num: number) => string;
|
|
158
|
+
'table-action-export-import-log-err': (num: number) => string;
|
|
159
|
+
'table-action-export-import-log-check': string;
|
|
160
|
+
'table-action-export-import-log-detail-title': string;
|
|
161
|
+
'table-action-export-import-log-err-log': string;
|
|
162
|
+
'table-action-export-import-log-copy': string;
|
|
163
|
+
'table-action-export-import-table-success-copy': string;
|
|
164
|
+
'drag-sort-tree-unavailable-today-tip': string;
|
|
165
|
+
'date-picker-today': string;
|
|
166
|
+
'date-picker-yesterday': string;
|
|
167
|
+
'date-picker-tomorrow': string;
|
|
168
|
+
'date-picker-next_monday': string;
|
|
169
|
+
'date-picker-last_friday': string;
|
|
170
|
+
'date-picker-first_day_of_this_month': string;
|
|
171
|
+
'date-picker-last_day_of_this_month': string;
|
|
172
|
+
'date-picker-first_day_of_next_month': string;
|
|
173
|
+
'date-picker-last_day_of_last_month': string;
|
|
174
|
+
'date-picker-invalid-date': string;
|
|
175
|
+
'date-picker-apply': string;
|
|
176
|
+
'date-picker-shortcut-custom': string;
|
|
177
|
+
'pisell-input-copy-success': string;
|
|
178
|
+
'pisell-input-copy': string;
|
|
179
|
+
'pisell-empty-description-no-data': string;
|
|
180
|
+
'pisell-information-entry-input-search': string;
|
|
181
|
+
'pisell-information-entry-input-confirm': string;
|
|
182
|
+
'pisell-information-entry-scan-exit': string;
|
|
183
|
+
'pisell-wallet-pass-card-detail': string;
|
|
184
|
+
'pisell-wallet-pass-card-edit': string;
|
|
185
|
+
'pisell-wallet-pass-card-name': string;
|
|
186
|
+
'pisell-wallet-pass-card-store-name': string;
|
|
187
|
+
'pisell-wallet-pass-card-balance': string;
|
|
188
|
+
'pisell-wallet-pass-card-redeem': string;
|
|
189
|
+
'pisell-wallet-pass-card-code': string;
|
|
190
|
+
'pisell-wallet-pass-card-valid-to': string;
|
|
191
|
+
'pisell-wallet-pass-card-valid': string;
|
|
192
|
+
'pisell-wallet-pass-card-confirm': string;
|
|
193
|
+
'pisell-wallet-pass-card-cancel': string;
|
|
194
|
+
'pisell-wallet-pass-card-required': string;
|
|
195
|
+
'pisell-wallet-pass-card-expireDate': string;
|
|
196
|
+
'pisell-adjust-price-price-override': string;
|
|
197
|
+
'pisell-adjust-price-discount': string;
|
|
198
|
+
'pisell-adjust-price-discount-amount': string;
|
|
199
|
+
'pisell-adjust-price-discount-percentage': string;
|
|
200
|
+
'pisell-adjust-price-total-after-discount': string;
|
|
201
|
+
'pisell-adjust-price-discount-can-be-maximum': string;
|
|
202
|
+
'pisell-discount-card-title': string;
|
|
203
|
+
'pisell-discount-card-unit': string;
|
|
204
|
+
'pisell-discount-card-fixed-amount-prefix': string;
|
|
205
|
+
'pisell-data-source-table-add': string;
|
|
206
|
+
'pisell-data-source-table-edit': string;
|
|
207
|
+
'pisell-data-source-table-detail': string;
|
|
208
|
+
'pisell-data-source-table-delete': string;
|
|
209
|
+
'pisell-record-view-available': string;
|
|
210
|
+
'pisell-record-view-unavailable': string;
|
|
211
|
+
'pisell-data-source-form-required-message': string;
|
|
212
|
+
'pisell-data-source-form-scope-message': string;
|
|
213
|
+
'pisell-data-source-form-email-message': string;
|
|
214
|
+
'pisell-data-source-form-domain-message': string;
|
|
215
|
+
'pisell-data-source-form-url-message': string;
|
|
216
|
+
'pisell-data-source-form-phone-message': string;
|
|
217
|
+
'pisell-data-source-form-min-length-message': (minLength: number) => string;
|
|
218
|
+
'pisell-data-source-form-max-length-message': (maxLength: number) => string;
|
|
219
|
+
'pisell-data-source-form-min-value-message': (minValue: number) => string;
|
|
220
|
+
'pisell-data-source-form-max-value-message': (maxValue: number) => string;
|
|
221
|
+
'pisell-data-source-form-mobile-message': string;
|
|
222
|
+
'pisell-data-source-form-pattern-message': string;
|
|
223
|
+
'pisell-number-format-thousand': string;
|
|
224
|
+
'pisell-number-format-million': string;
|
|
225
|
+
'pisell-number-format-billion': string;
|
|
226
|
+
'walletCard-done': string;
|
|
227
|
+
'walletCard-qrcode': string;
|
|
228
|
+
'walletCard-barcode': string;
|
|
229
|
+
'walletCard-viewPin': string;
|
|
230
|
+
'pisell-upload-button': string;
|
|
231
|
+
'pisell-upload-setting-size-error': (maxSize: number) => string;
|
|
232
|
+
'pisell-upload-setting-type-error': (type: string) => string;
|
|
233
|
+
'pisell-upload-count-error': (count: number) => string;
|
|
234
|
+
'pisell-upload-error': (name: string) => string;
|
|
235
|
+
'pisell-upload-multilingual-title': string;
|
|
236
|
+
'pisell-upload-multilingual-item-title-original': string;
|
|
237
|
+
'pisell-upload-multilingual-item-title-en': string;
|
|
238
|
+
'pisell-upload-multilingual-item-title-zh-CN': string;
|
|
239
|
+
'pisell-upload-multilingual-item-title-zh-HK': string;
|
|
240
|
+
'pisell-color-picker-default': string;
|
|
241
|
+
'pisell-action-get-data': string;
|
|
242
|
+
'pisell-action-delete-success': string;
|
|
243
|
+
'pisell-action-delete-failed': string;
|
|
244
|
+
'walletCard-point': string;
|
|
245
|
+
'walletCard-rechargeable': string;
|
|
246
|
+
'walletCard-voucher': string;
|
|
247
|
+
'walletCard-discount': string;
|
|
248
|
+
'pisellQrcode-done': string;
|
|
249
|
+
'pisellQrcode-qrcode': string;
|
|
250
|
+
'pisell-delete-confirm-title': string;
|
|
251
|
+
'pisell-delete-confirm-content': string;
|
|
252
|
+
'pisell-delete-confirm-ok': string;
|
|
253
|
+
'pisell-delete-confirm-cancel': string;
|
|
254
|
+
'pisell-design-mode-action-disabled': string;
|
|
255
|
+
'pisell-translation-original': string;
|
|
256
|
+
'pisell-version-modal-title': string;
|
|
257
|
+
'pisell-version-modal-current-version': string;
|
|
258
|
+
'pisell-version-modal-version': string;
|
|
259
|
+
'pisell-version-modal-update-notes': string;
|
|
260
|
+
'pisell-version-modal-patch': string;
|
|
261
|
+
'pisell-version-modal-minor': string;
|
|
262
|
+
'pisell-version-modal-major': string;
|
|
263
|
+
'pisell-version-modal-custom': string;
|
|
264
|
+
'pisell-version-modal-cancel': string;
|
|
265
|
+
'pisell-version-modal-confirm': string;
|
|
266
|
+
'pisell-version-modal-describe-update-notes': string;
|
|
267
|
+
'pisell-version-modal-version-error': string;
|
|
268
|
+
'pisell-version-modal-version-required': string;
|
|
269
|
+
'pisell-version-modal-based-on-version': string;
|
|
270
|
+
'subdomain-error-too-short': string;
|
|
271
|
+
'subdomain-error-too-long': string;
|
|
272
|
+
'subdomain-error-pattern': string;
|
|
273
|
+
'subdomain-error-numbers-only': string;
|
|
274
|
+
'subdomain-error-hyphen-ends': string;
|
|
275
|
+
'subdomain-error-consecutive-hyphens': string;
|
|
276
|
+
'subdomain-error-required': string;
|
|
277
|
+
'pisell-icon-select-outlined': string;
|
|
278
|
+
'pisell-icon-select-filled': string;
|
|
279
|
+
'pisell-icon-select-two-tone': string;
|
|
280
|
+
'pisell-icon-select-iconfont': string;
|
|
281
|
+
'pisell-icon-select-search': string;
|
|
282
|
+
'pisell-icon-select-select': string;
|
|
283
|
+
'pisell-lowcode-app-version-control-live': string;
|
|
284
|
+
'pisell-lowcode-app-version-control-draft': string;
|
|
285
|
+
'pisell-lowcode-app-version-control-deprecated': string;
|
|
286
|
+
'pisell-lowcode-app-version-control-new-version': string;
|
|
287
|
+
'pisell-lowcode-app-version-control-promote-to-live': string;
|
|
288
|
+
'pisell-lowcode-app-version-control-promote-version': (version: string) => string;
|
|
289
|
+
'pisell-lowcode-app-version-control-promote-version-describe': string;
|
|
290
|
+
'pisell-lowcode-app-version-control-promote-version-ok': string;
|
|
291
|
+
'pisell-lowcode-app-version-control-promote-version-cancel': string;
|
|
292
|
+
'pisell-lowcode-app-version-control-version-exists': string;
|
|
293
|
+
'pisell-lowcode-drop-sort-add': string;
|
|
294
|
+
'pisell-lowcode-navigation-menu-add-sub-menu': string;
|
|
295
|
+
'pisell-lowcode-navigation-menu-add-page': string;
|
|
296
|
+
'pisell-lowcode-navigation-menu-add-page-tip': string;
|
|
297
|
+
'pisell-lowcode-navigation-menu-tag-base': string;
|
|
298
|
+
'pisell-lowcode-navigation-menu-tag-proCode': string;
|
|
299
|
+
'pisell-lowcode-navigation-menu-tag-pisell1': string;
|
|
300
|
+
'pisell-lowcode-navigation-menu-tag-group': string;
|
|
301
|
+
'pisell-lowcode-navigation-menu-tag-sub-menu': string;
|
|
302
|
+
'pisell-lowcode-navigation-menu-tag-custom': string;
|
|
303
|
+
'pisell-data-source-form-app-identifier-pattern': string;
|
|
304
|
+
'pisell-data-source-form-app-identifier-start-with-letter': string;
|
|
305
|
+
'pisell-group-permissions-rule-required': string;
|
|
306
|
+
'pisell-group-permissions-rule-limit': string;
|
|
307
|
+
'pisell-data-source-form-app-identifier-letters-only': string;
|
|
308
|
+
'pisell-data-source-form-app-identifier-alphanumeric': string;
|
|
309
|
+
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
310
|
+
'pisell-data-source-form-app-identifier-consecutive-special': string;
|
|
311
|
+
'qrscanner-loading': string;
|
|
312
|
+
'qrscanner-success': string;
|
|
313
|
+
'qrscanner-success-qrcode': string;
|
|
314
|
+
'qrscanner-success-barcode': string;
|
|
315
|
+
'qrscanner-error-upload-image': string;
|
|
316
|
+
'qrscanner-error-load-failed': string;
|
|
317
|
+
'qrscanner-error-no-code': string;
|
|
318
|
+
'qrscanner-error-camera-init': string;
|
|
319
|
+
'qrscanner-error-process-image': string;
|
|
320
|
+
'pisell-login-and-register-title': string;
|
|
321
|
+
'pisell-login-and-register-subtitle': string;
|
|
322
|
+
'pisell-login-and-register-email-label': string;
|
|
323
|
+
'pisell-login-and-register-email-placeholder': string;
|
|
324
|
+
'pisell-login-and-register-password-label': string;
|
|
325
|
+
'pisell-login-and-register-password-placeholder': string;
|
|
326
|
+
'pisell-login-and-register-email-error': string;
|
|
327
|
+
'pisell-login-and-register-email-error-valid': string;
|
|
328
|
+
'pisell-login-and-register-password-error': string;
|
|
329
|
+
'pisell-login-and-register-login': string;
|
|
330
|
+
'pisell-login-and-register-google': string;
|
|
331
|
+
'pisell-login-and-register-facebook': string;
|
|
332
|
+
'pisell-login-and-register-apple': string;
|
|
333
|
+
'pisell-login-and-register-sign-up': string;
|
|
334
|
+
'pisell-login-and-register-login-tab': string;
|
|
335
|
+
'pisell-login-and-register-register-tab': string;
|
|
336
|
+
'pisell-login-and-register-register-email-placeholder': string;
|
|
337
|
+
'pisell-login-and-register-register-password-placeholder': string;
|
|
338
|
+
'pisell-login-and-register-register-button-text': string;
|
|
339
|
+
'pisell-login-and-register-remember-me': string;
|
|
340
|
+
'pisell-login-and-register-forgot-password': string;
|
|
341
|
+
'pisell2.text.goodpass.product-vouchers': string;
|
|
342
|
+
'pisell2.text.goodpass.last-settlement': string;
|
|
343
|
+
'pisell2.text.goodpass.view-more': string;
|
|
344
|
+
'pisell2.text.goodpass.save': string;
|
|
345
|
+
'pisell-wallet-pass-card-status-used': string;
|
|
346
|
+
'pisell-wallet-pass-card-status-expired': string;
|
|
347
|
+
'pisell-wallet-pass-card-status-disabled': string;
|
|
348
|
+
'pisell-wallet-pass-card-status-conflict': string;
|
|
349
|
+
'pisell-wallet-pass-card-status-lastPayment': string;
|
|
350
|
+
'pisell-wallet-pass-card-reset': string;
|
|
351
|
+
'pisell-wallet-pass-card-done': string;
|
|
352
|
+
'pisell2.wallet-card.add-holder-tip': string;
|
|
353
|
+
'pisell2.wallet-card.add-holder-button-text': string;
|
|
354
|
+
'pisell-camera-no-camera-accessible': string;
|
|
355
|
+
'pisell-camera-permission-denied': string;
|
|
356
|
+
'pisell-camera-switch-camera': string;
|
|
357
|
+
'pisell-camera-canvas': string;
|
|
358
|
+
'pisell-camera-checking': string;
|
|
359
|
+
'pisell-camera-no-camera-desc': string;
|
|
360
|
+
'pisell-upload-camera-local-files': string;
|
|
361
|
+
'pisell-upload-camera-capture': string;
|
|
362
|
+
'pisell-upload-camera-retake': string;
|
|
363
|
+
'pisell-upload-camera-use': string;
|
|
364
|
+
'pisell-list-tab-group-default': string;
|
|
365
|
+
'pisell-list-empty-text-default': string;
|
|
366
|
+
'pisell-list-load-more': string;
|
|
367
|
+
'pisell-list-view-less': string;
|
|
368
|
+
'pisell-list-pagination-total': (start: number, end: number, total: number) => string;
|
|
369
|
+
'pisell-list-scroll-down': string;
|
|
370
|
+
'pisell-list-scroll-right': string;
|
|
371
|
+
'pisell-list-pagination-page-of': (current: number, total: number) => string;
|
|
372
|
+
'pisell-list-pagination-previous': string;
|
|
373
|
+
'pisell-list-pagination-next': string;
|
|
374
|
+
'pisell-procedure-header-back-confirm-title': string;
|
|
375
|
+
'pisell-procedure-header-back-confirm-desc': string;
|
|
376
|
+
'pisell-procedure-header-back-confirm-no': string;
|
|
377
|
+
'pisell-procedure-header-back-confirm-yes': string;
|
|
378
|
+
'pisell-procedure-header-close-confirm-title': string;
|
|
379
|
+
'pisell-procedure-header-close-confirm-desc': string;
|
|
380
|
+
'pisell-procedure-header-close-confirm-no': string;
|
|
381
|
+
'pisell-procedure-header-close-confirm-yes': string;
|
|
382
|
+
'pisell-procedure-footer-more': string;
|
|
383
|
+
};
|
|
384
|
+
export default _default;
|
package/lib/locales/en-US.js
CHANGED
|
@@ -44,8 +44,10 @@ var en_US_default = {
|
|
|
44
44
|
"sort-z-a": "Z to A",
|
|
45
45
|
"sort-from-morning-to-night": "From morning to night",
|
|
46
46
|
"sort-from-evening-to-morning": "From evening to morning",
|
|
47
|
-
"sort-0-9": "0
|
|
48
|
-
"sort-9-0": "9
|
|
47
|
+
"sort-0-9": "0 → 9",
|
|
48
|
+
"sort-9-0": "9 → 0",
|
|
49
|
+
"sort-first-last": "First → Last",
|
|
50
|
+
"sort-last-first": "Last → First",
|
|
49
51
|
"table-action-filter-button": "Filter",
|
|
50
52
|
"table-action-filter-quick-filter": "Quick Filter",
|
|
51
53
|
"table-action-filter-quick-filter-tip": (count) => `Enable quick filtering directly on the page for convenient filtering operations, with a maximum of ${count} filters allowed.`,
|
|
@@ -56,8 +58,12 @@ var en_US_default = {
|
|
|
56
58
|
"table-action-column-title": "Header settings",
|
|
57
59
|
"table-column-group-records": "records",
|
|
58
60
|
"table-column-group-lock-tip": "Fixed column immutable order",
|
|
61
|
+
"record-board-uniform-summary-empty": "-",
|
|
62
|
+
"record-board-uniform-summary-same": "Same",
|
|
59
63
|
"table-column-drag-sort-disabled-tip": "Automatic sorting is enabled, manual dragging is disabled.",
|
|
60
64
|
"table-action-filter-no-filter": "No filter options available.",
|
|
65
|
+
"table-action-range-picker-placeholder-start": "Start date",
|
|
66
|
+
"table-action-range-picker-placeholder-end": "End date",
|
|
61
67
|
"table-action-range-picker-presets-today": "Today",
|
|
62
68
|
"table-action-range-picker-presets-yesterday": "Yesterday",
|
|
63
69
|
"table-action-range-picker-presets-last-3-day": "Last 3 Days",
|
|
@@ -83,6 +89,8 @@ var en_US_default = {
|
|
|
83
89
|
// PisellFind
|
|
84
90
|
"pisell-find-button-text": "Find",
|
|
85
91
|
"pisell-find-placeholder": "Please enter search content",
|
|
92
|
+
// PisellExport
|
|
93
|
+
"pisell-export-button-text": "Export",
|
|
86
94
|
"batch-editor-actions": "Actions",
|
|
87
95
|
"batch-editor-remove": "Remove",
|
|
88
96
|
"batch-editor-price": "Price",
|
|
@@ -106,6 +114,38 @@ var en_US_default = {
|
|
|
106
114
|
"batch-action-bar-delete-confirm-content": (count) => `Are you sure you want to delete ${count} selected ${count > 1 ? "items" : "item"}?`,
|
|
107
115
|
"batch-action-bar-delete-confirm-ok": "OK",
|
|
108
116
|
"batch-action-bar-delete-confirm-cancel": "Cancel",
|
|
117
|
+
// RecordBoard Toolbar
|
|
118
|
+
"record-board-toolbar-reset": "Reset",
|
|
119
|
+
"record-board-toolbar-default-filter-status": "Status",
|
|
120
|
+
"record-board-toolbar-default-filter-all": "All",
|
|
121
|
+
"record-board-toolbar-default-filter-enabled": "Enabled",
|
|
122
|
+
"record-board-toolbar-default-filter-disabled": "Disabled",
|
|
123
|
+
"record-board-toolbar-default-filter-keyword": "Keyword",
|
|
124
|
+
"record-board-toolbar-default-placeholder": "Please enter",
|
|
125
|
+
// RecordBoard 通用文案(ToolBar / 翻页 / 批量操作栏,与 utils 同 key 供 fallback)
|
|
126
|
+
"pisell2.recordBoard.toolbar.find": "Find",
|
|
127
|
+
"pisell2.recordBoard.toolbar.findPlaceholder": "Please enter search content",
|
|
128
|
+
"pisell2.recordBoard.toolbar.sort": "Sort",
|
|
129
|
+
"pisell2.recordBoard.toolbar.filter": "Filter",
|
|
130
|
+
"pisell2.recordBoard.toolbar.reset": "Reset",
|
|
131
|
+
"pisell2.salesManagement.pagination.previous": "Previous",
|
|
132
|
+
"pisell2.salesManagement.pagination.next": "Next",
|
|
133
|
+
"pisell2.salesManagement.pagination.showTotal": (start, end) => `Page ${start} of ${end}`,
|
|
134
|
+
"pisell2.salesManagement.pagination.total": (current, max) => `Page ${current} of ${max}`,
|
|
135
|
+
"pisell2.salesManagement.batchActionBar.selectedCount": (count) => `${count} item(s) selected`,
|
|
136
|
+
"pisell2.salesManagement.batchActionBar.more": "More",
|
|
137
|
+
"pisell2.salesManagement.batchActionBar.selectAll": "Select All",
|
|
138
|
+
"pisell2.salesManagement.batchActionBar.invert": "Invert Selection",
|
|
139
|
+
"pisell2.salesManagement.batchActionBar.clear": "Clear Selection",
|
|
140
|
+
"pisell2.salesManagement.batchActionBar.delete": "Delete",
|
|
141
|
+
"pisell2.salesManagement.batchActionBar.confirmTitle": "Confirm",
|
|
142
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmTitle": "Confirm Delete",
|
|
143
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmContent": (count) => `Are you sure you want to delete ${count} selected item(s)?`,
|
|
144
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmOk": "OK",
|
|
145
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmCancel": "Cancel",
|
|
146
|
+
// ShellFrame statistic collapse
|
|
147
|
+
"shell-frame-statistic-expand": "Expand statistics",
|
|
148
|
+
"shell-frame-statistic-collapse": "Collapse statistics",
|
|
109
149
|
// 导出
|
|
110
150
|
"table-action-export-import-export-success": "Export successful! ",
|
|
111
151
|
"table-action-export-import-button": "Export",
|
|
@@ -211,6 +251,7 @@ var en_US_default = {
|
|
|
211
251
|
"pisell-record-view-available": "Available",
|
|
212
252
|
"pisell-record-view-unavailable": "No available",
|
|
213
253
|
"pisell-data-source-form-required-message": "This field is required",
|
|
254
|
+
"pisell-data-source-form-scope-message": "Scope not specified for settings in URL params",
|
|
214
255
|
"pisell-data-source-form-email-message": "Please enter a valid email address",
|
|
215
256
|
"pisell-data-source-form-domain-message": "Please enter a valid domain",
|
|
216
257
|
"pisell-data-source-form-url-message": "Please enter a valid URL",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getText: (id: string) => any;
|
package/lib/locales/index.js
CHANGED
|
@@ -45,8 +45,8 @@ var langMap = {
|
|
|
45
45
|
"zh-HK": import_zh_TW.default,
|
|
46
46
|
en: import_en_US.default,
|
|
47
47
|
original: import_en_US.default,
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
ja: import_ja.default,
|
|
49
|
+
pt: import_pt.default
|
|
50
50
|
};
|
|
51
51
|
var getText = (id) => {
|
|
52
52
|
var _a;
|