@pisell/materials 1.0.987 → 1.0.989
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 +13 -13
- package/build/lowcode/assets-dev.json +4 -4
- package/build/lowcode/assets-prod.json +13 -13
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +7 -7
- package/build/lowcode/preview.js +151 -146
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +32 -32
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +31 -31
- package/es/components/Pagination/index.d.ts +14 -0
- package/es/components/PisellProcedure/PisellProcedure.js +76 -19
- package/es/components/PisellProcedure/PisellProcedure.less +150 -97
- package/es/components/PisellProcedure/components/FooterActions.js +1 -4
- package/es/components/PisellProcedure/components/ProcedureBody.js +40 -16
- package/es/components/PisellProcedure/components/ProcedureFooter.js +42 -15
- package/es/components/PisellProcedure/components/ProcedureHeader.js +53 -23
- package/es/components/PisellProcedure/components/ProcedureSidebar.js +81 -33
- package/es/components/PisellProcedure/hooks/index.js +8 -7
- package/es/components/PisellProcedure/hooks/useElementSize.js +238 -0
- package/es/components/PisellProcedure/hooks/useOverflowActions.js +69 -37
- package/es/components/PisellProcedure/hooks/useResponsiveClass.js +118 -0
- package/es/components/PisellProcedure/hooks/useSidebarHeight.js +158 -0
- package/es/components/PisellProcedure/hooks/useStepManager.js +33 -15
- package/es/components/PisellProcedure/utils/layoutRatio.js +14 -5
- package/es/components/PisellScrollView/hooks/useScrollState.js +213 -58
- package/es/components/PisellSteps/PisellSteps.js +90 -51
- package/es/components/PisellSteps/PisellSteps.less +80 -98
- package/es/components/PisellSteps/hooks/useAnchor.js +5 -0
- package/es/components/PisellSteps/hooks/useStepsState.js +13 -7
- package/es/components/PisellTabbar/PisellTabbar.js +2 -2
- package/es/components/PisellTabbar2/PisellTabbar.js +54 -11
- package/es/components/PisellTabbar2/PisellTabbar.less +1 -0
- package/es/components/PisellTabbar2/components/TabbarLevel.js +9 -4
- package/es/components/PisellTabbar2/mock.js +9 -110
- package/es/components/PisellTabbar2/utils/index.js +8 -4
- package/es/components/batch-editor/index.d.ts +11 -0
- package/es/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -0
- package/es/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -0
- package/es/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -0
- package/es/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -0
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -0
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -0
- package/es/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -0
- package/es/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +1 -0
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -0
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +33 -0
- package/es/components/dataSourceComponents/dataSourceTable/{BaseTable.d.ts → index.d.ts} +2 -4
- package/es/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -0
- package/es/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -0
- package/es/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -0
- package/es/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -0
- package/es/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/Input/index.d.ts +22 -0
- package/es/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -0
- package/es/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -0
- package/es/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -0
- package/es/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -0
- package/es/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -0
- package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -0
- package/es/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -0
- package/es/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -0
- package/es/components/dataSourceComponents/fields/Radio/index.d.ts +6 -0
- package/es/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/Select/index.d.ts +11 -0
- package/es/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -0
- package/es/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -0
- package/es/components/dataSourceComponents/fields/Upload/index.d.ts +3 -0
- package/es/components/dataSourceComponents/fields/index.d.ts +7 -6
- package/es/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -0
- package/es/components/dataSourceComponents/hooks/useVariables.d.ts +2 -0
- package/es/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -0
- package/es/components/filter/components/Dropdown/index.d.ts +9 -0
- package/es/components/filter/components/Dropdown/types.d.ts +11 -0
- package/es/components/filter/components/FilterButton/index.d.ts +4 -0
- package/es/components/filter/components/FilterButton/types.d.ts +13 -0
- package/es/components/filter/components/FilterItem/index.d.ts +5 -0
- package/es/components/filter/components/QuickFilter/index.d.ts +12 -0
- package/es/components/filter/index.d.ts +4 -0
- package/es/components/filter/types.d.ts +46 -0
- package/es/components/list/index.d.ts +7 -0
- package/es/components/pisellList01/index.d.ts +17 -0
- package/es/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -0
- package/es/components/record-view/index.d.ts +37 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +6 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +7 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +6 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +9 -0
- package/es/components/table/Actions/component/GallerySetting/index.d.ts +8 -0
- package/es/components/table/Actions/component/Group/index.d.ts +12 -0
- package/es/components/table/Actions/component/ViewMode/index.d.ts +8 -0
- package/es/components/table/Actions/index.d.ts +17 -0
- package/es/components/table/BasicTable/index.d.ts +3 -0
- package/es/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +9 -0
- package/es/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +8 -0
- package/es/components/table/Gallery/types.d.ts +10 -0
- package/es/components/table/Table/SelectField/index.d.ts +3 -0
- package/es/components/table/Table/fields/index.d.ts +386 -0
- package/es/components/table/Table/fields/text/Show/index.d.ts +5 -0
- package/es/components/table/Table/fields/text/index.d.ts +16 -0
- package/es/components/table/Table/tableConfig/SortRow/index.d.ts +3 -0
- package/es/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -0
- package/es/components/table/Table/tableConfig/body/index.d.ts +35 -0
- package/es/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -0
- package/es/components/table/Table/tableConfig/header/index.d.ts +19 -0
- package/es/components/table/View/index.d.ts +5 -0
- package/es/components/table/hooks/useGenTableComponents.d.ts +16 -0
- package/es/components/table/hooks/useIsMobileTable.d.ts +2 -0
- package/es/components/table/hooks/useMergeColumnSetting.d.ts +18 -0
- package/es/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -0
- package/es/components/table/hooks/useTransFilterSetting.d.ts +7 -0
- package/es/components/table/hooks/useTransSortSetting.d.ts +7 -0
- package/es/components/table/hooks/useTriggerValuesChange.d.ts +16 -0
- package/es/components/table/model.d.ts +30 -0
- package/lib/components/Pagination/index.d.ts +14 -0
- package/lib/components/PisellProcedure/PisellProcedure.js +44 -8
- package/lib/components/PisellProcedure/PisellProcedure.less +150 -97
- package/lib/components/PisellProcedure/components/FooterActions.js +5 -10
- package/lib/components/PisellProcedure/components/ProcedureBody.js +28 -11
- package/lib/components/PisellProcedure/components/ProcedureFooter.js +34 -15
- package/lib/components/PisellProcedure/components/ProcedureHeader.js +53 -15
- package/lib/components/PisellProcedure/components/ProcedureSidebar.js +72 -22
- package/lib/components/PisellProcedure/hooks/index.js +9 -3
- package/lib/components/PisellProcedure/hooks/useElementSize.js +175 -0
- package/lib/components/PisellProcedure/hooks/useOverflowActions.js +51 -29
- package/lib/components/PisellProcedure/hooks/useResponsiveClass.js +101 -0
- package/lib/components/PisellProcedure/hooks/useSidebarHeight.js +120 -0
- package/lib/components/PisellProcedure/hooks/useStepManager.js +27 -12
- package/lib/components/PisellProcedure/utils/layoutRatio.js +13 -2
- package/lib/components/PisellScrollView/hooks/useScrollState.js +163 -64
- package/lib/components/PisellSteps/PisellSteps.js +68 -48
- package/lib/components/PisellSteps/PisellSteps.less +80 -98
- package/lib/components/PisellSteps/hooks/useAnchor.js +3 -0
- package/lib/components/PisellSteps/hooks/useStepsState.js +9 -7
- package/lib/components/PisellTabbar/PisellTabbar.js +2 -2
- package/lib/components/PisellTabbar2/PisellTabbar.js +22 -13
- package/lib/components/PisellTabbar2/PisellTabbar.less +1 -0
- package/lib/components/PisellTabbar2/components/TabbarLevel.js +10 -5
- package/lib/components/PisellTabbar2/mock.js +9 -120
- package/lib/components/PisellTabbar2/utils/index.js +7 -3
- package/lib/components/batch-editor/index.d.ts +11 -0
- package/lib/components/dataSourceComponents/dataSourceForm/formItem.d.ts +3 -0
- package/lib/components/dataSourceComponents/dataSourceForm/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider.d.ts +7 -0
- package/lib/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -0
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceTypography/index.d.ts +10 -0
- package/lib/components/dataSourceComponents/dataSourceShow/utils.d.ts +6 -0
- package/lib/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceTable/filter/utils.d.ts +1 -0
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDesignMode.d.ts +2 -0
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +33 -0
- package/lib/components/dataSourceComponents/dataSourceTable/{BaseTable.d.ts → index.d.ts} +2 -4
- package/lib/components/dataSourceComponents/dataSourceWrapper/BaseWrapper.d.ts +7 -0
- package/lib/components/dataSourceComponents/dataSourceWrapper/index.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/Checkbox/ReadPretty.d.ts +8 -0
- package/lib/components/dataSourceComponents/fields/Checkbox/WithMode.d.ts +7 -0
- package/lib/components/dataSourceComponents/fields/Checkbox/index.d.ts +6 -0
- package/lib/components/dataSourceComponents/fields/ColorPicker/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/ColorPicker/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/DateRangePicker/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/DateRangePicker/index.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/IconSelect/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/IconSelect/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/Input/index.d.ts +22 -0
- package/lib/components/dataSourceComponents/fields/Input.Email/WithMode.d.ts +6 -0
- package/lib/components/dataSourceComponents/fields/Input.Email/index.d.ts +5 -0
- package/lib/components/dataSourceComponents/fields/Input.Json/WithMode.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Json/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Mobile/ReadPretty.d.ts +5 -0
- package/lib/components/dataSourceComponents/fields/Input.Mobile/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Password/WithMode.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Password/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Phone/ReadPretty.d.ts +5 -0
- package/lib/components/dataSourceComponents/fields/Input.Phone/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/WithMode.d.ts +13 -0
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +12 -0
- package/lib/components/dataSourceComponents/fields/Input.TextArea/WithMode.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Url/WithMode.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Input.Url/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/InputNumber/WithMode.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/InputNumber/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Radio/ReadPretty.d.ts +7 -0
- package/lib/components/dataSourceComponents/fields/Radio/WithMode.d.ts +7 -0
- package/lib/components/dataSourceComponents/fields/Radio/index.d.ts +6 -0
- package/lib/components/dataSourceComponents/fields/Select/ReadPretty.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/Select/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/Select/index.d.ts +11 -0
- package/lib/components/dataSourceComponents/fields/TimePicker/WithMode.d.ts +5 -0
- package/lib/components/dataSourceComponents/fields/TimePicker/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/Upload/WithMode.d.ts +4 -0
- package/lib/components/dataSourceComponents/fields/Upload/index.d.ts +3 -0
- package/lib/components/dataSourceComponents/fields/index.d.ts +7 -6
- package/lib/components/dataSourceComponents/hooks/useParseActionsVariable.d.ts +6 -0
- package/lib/components/dataSourceComponents/hooks/useVariables.d.ts +2 -0
- package/lib/components/dataSourceComponents/provider/dataSource/DataSourceProvider.d.ts +8 -0
- package/lib/components/filter/components/Dropdown/index.d.ts +9 -0
- package/lib/components/filter/components/Dropdown/types.d.ts +11 -0
- package/lib/components/filter/components/FilterButton/index.d.ts +4 -0
- package/lib/components/filter/components/FilterButton/types.d.ts +13 -0
- package/lib/components/filter/components/FilterItem/index.d.ts +5 -0
- package/lib/components/filter/components/QuickFilter/index.d.ts +12 -0
- package/lib/components/filter/index.d.ts +4 -0
- package/lib/components/filter/types.d.ts +46 -0
- package/lib/components/list/index.d.ts +7 -0
- package/lib/components/pisellList01/index.d.ts +17 -0
- package/lib/components/pisellNavigationMenu/PisellNavigationMenu.d.ts +5 -0
- package/lib/components/record-view/index.d.ts +37 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +6 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +7 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +6 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +9 -0
- package/lib/components/table/Actions/component/GallerySetting/index.d.ts +8 -0
- package/lib/components/table/Actions/component/Group/index.d.ts +12 -0
- package/lib/components/table/Actions/component/ViewMode/index.d.ts +8 -0
- package/lib/components/table/Actions/index.d.ts +17 -0
- package/lib/components/table/BasicTable/index.d.ts +3 -0
- package/lib/components/table/Gallery/components/GalleryItem/components/Cover/index.d.ts +9 -0
- package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.d.ts +8 -0
- package/lib/components/table/Gallery/types.d.ts +10 -0
- package/lib/components/table/Table/SelectField/index.d.ts +3 -0
- package/lib/components/table/Table/fields/index.d.ts +386 -0
- package/lib/components/table/Table/fields/text/Show/index.d.ts +5 -0
- package/lib/components/table/Table/fields/text/index.d.ts +16 -0
- package/lib/components/table/Table/tableConfig/SortRow/index.d.ts +3 -0
- package/lib/components/table/Table/tableConfig/body/CellProvider/index.d.ts +4 -0
- package/lib/components/table/Table/tableConfig/body/index.d.ts +35 -0
- package/lib/components/table/Table/tableConfig/header/CellProvider/index.d.ts +14 -0
- package/lib/components/table/Table/tableConfig/header/index.d.ts +19 -0
- package/lib/components/table/View/index.d.ts +5 -0
- package/lib/components/table/hooks/useGenTableComponents.d.ts +16 -0
- package/lib/components/table/hooks/useIsMobileTable.d.ts +2 -0
- package/lib/components/table/hooks/useMergeColumnSetting.d.ts +18 -0
- package/lib/components/table/hooks/useTransDataSourceGroupSetting.d.ts +7 -0
- package/lib/components/table/hooks/useTransFilterSetting.d.ts +7 -0
- package/lib/components/table/hooks/useTransSortSetting.d.ts +7 -0
- package/lib/components/table/hooks/useTriggerValuesChange.d.ts +16 -0
- package/lib/components/table/model.d.ts +30 -0
- package/lowcode/pisell-procedure/meta.ts +86 -0
- package/lowcode/pisell-steps/meta.ts +114 -141
- package/package.json +2 -1
- package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
- package/es/components/PisellBasicGrid/hooks/index.d.ts +0 -1
- package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
- package/es/components/PisellBasicGrid/index.d.ts +0 -6
- package/es/components/PisellBasicGrid/types.d.ts +0 -221
- package/es/components/PisellBasicGrid/utils/index.d.ts +0 -63
- package/es/components/PisellCards/PisellCards.d.ts +0 -8
- package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
- package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
- package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
- package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
- package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
- package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
- package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
- package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
- package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
- package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
- package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
- package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
- package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +0 -7
- package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
- package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
- package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
- package/es/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
- package/es/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
- package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
- package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
- package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
- package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
- package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
- package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
- package/es/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
- package/es/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
- package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
- package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
- package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
- package/es/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
- package/es/components/PisellCards/components/TabCard/index.d.ts +0 -5
- package/es/components/PisellCards/components/TabCard/types.d.ts +0 -70
- package/es/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
- package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
- package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
- package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
- package/es/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
- package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
- package/es/components/PisellCards/components/TextCard/index.d.ts +0 -5
- package/es/components/PisellCards/components/TextCard/types.d.ts +0 -270
- package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
- package/es/components/PisellCards/components/index.d.ts +0 -10
- package/es/components/PisellCards/hooks/index.d.ts +0 -0
- package/es/components/PisellCards/index.d.ts +0 -14
- package/es/components/PisellCards/types.d.ts +0 -48
- package/es/components/PisellCards/utils/index.d.ts +0 -0
- package/es/components/PisellProcedure/PisellProcedure.d.ts +0 -12
- package/es/components/PisellProcedure/components/FooterActions.d.ts +0 -25
- package/es/components/PisellProcedure/components/ProcedureBody.d.ts +0 -37
- package/es/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
- package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -36
- package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
- package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -25
- package/es/components/PisellProcedure/components/index.d.ts +0 -12
- package/es/components/PisellProcedure/hooks/index.d.ts +0 -9
- package/es/components/PisellProcedure/hooks/useElementHeight.d.ts +0 -23
- package/es/components/PisellProcedure/hooks/useElementHeight.js +0 -87
- package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
- package/es/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
- package/es/components/PisellProcedure/index.d.ts +0 -5
- package/es/components/PisellProcedure/types.d.ts +0 -285
- package/es/components/PisellProcedure/utils/classNames.d.ts +0 -33
- package/es/components/PisellProcedure/utils/extractText.d.ts +0 -20
- package/es/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
- package/es/components/PisellProcedure/utils/index.d.ts +0 -8
- package/es/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
- package/es/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
- package/es/components/PisellScrollView/PisellScrollView.d.ts +0 -5
- package/es/components/PisellScrollView/components/Actions/index.d.ts +0 -12
- package/es/components/PisellScrollView/hooks/index.d.ts +0 -3
- package/es/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
- package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
- package/es/components/PisellScrollView/hooks/useScrollState.d.ts +0 -9
- package/es/components/PisellScrollView/index.d.ts +0 -2
- package/es/components/PisellScrollView/types.d.ts +0 -203
- package/es/components/PisellScrollView/utils/index.d.ts +0 -0
- package/es/components/PisellSteps/PisellSteps.d.ts +0 -14
- package/es/components/PisellSteps/hooks/index.d.ts +0 -4
- package/es/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
- package/es/components/PisellSteps/index.d.ts +0 -3
- package/es/components/PisellSteps/types.d.ts +0 -284
- package/es/components/PisellSteps/utils/index.d.ts +0 -54
- package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +0 -12
- package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
- package/es/components/PisellSuperTabs/hooks/index.d.ts +0 -1
- package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +0 -7
- package/es/components/PisellSuperTabs/index.d.ts +0 -3
- package/es/components/PisellSuperTabs/types.d.ts +0 -209
- package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
- package/es/components/PisellSuperTabs/utils/index.d.ts +0 -1
- package/es/components/PisellTabbar/PisellTabbar.d.ts +0 -3
- package/es/components/PisellTabbar/components/TabbarLevel.d.ts +0 -8
- package/es/components/PisellTabbar/components/index.d.ts +0 -1
- package/es/components/PisellTabbar/constants.d.ts +0 -46
- package/es/components/PisellTabbar/hooks/index.d.ts +0 -2
- package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +0 -49
- package/es/components/PisellTabbar/hooks/useExpand.d.ts +0 -41
- package/es/components/PisellTabbar/index.d.ts +0 -7
- package/es/components/PisellTabbar/locales.d.ts +0 -15
- package/es/components/PisellTabbar/mock.d.ts +0 -47
- package/es/components/PisellTabbar/template/index.d.ts +0 -0
- package/es/components/PisellTabbar/types.d.ts +0 -111
- package/es/components/PisellTabbar/utils/index.d.ts +0 -35
- package/es/components/PisellTabbar2/PisellTabbar.d.ts +0 -20
- package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
- package/es/components/PisellTabbar2/components/index.d.ts +0 -1
- package/es/components/PisellTabbar2/constants.d.ts +0 -46
- package/es/components/PisellTabbar2/hooks/index.d.ts +0 -2
- package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
- package/es/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
- package/es/components/PisellTabbar2/index.d.ts +0 -6
- package/es/components/PisellTabbar2/locales.d.ts +0 -15
- package/es/components/PisellTabbar2/mock.d.ts +0 -62
- package/es/components/PisellTabbar2/types.d.ts +0 -115
- package/es/components/PisellTabbar2/utils/index.d.ts +0 -35
- package/es/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
- package/es/components/PisellTabbar3/index.d.ts +0 -6
- package/es/components/PisellTabbar3/locales.d.ts +0 -15
- package/es/components/PisellTabbar3/mock.d.ts +0 -47
- package/es/components/PisellTabbar3/types.d.ts +0 -111
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -101
- package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
- package/es/components/dataSourceComponents/fields/Translation/type.d.ts +0 -17
- package/es/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
- package/es/components/pisellCardList/index.d.ts +0 -107
- package/es/components/pisellGoodPassCard/index.d.ts +0 -50
- package/es/components/pisellWalletPassCard/index.d.ts +0 -146
- package/es/components/productCard/index.d.ts +0 -7
- package/es/components/walletCard/index.d.ts +0 -77
- package/es/hooks/useMobile.d.ts +0 -8
- package/es/index.d.ts +0 -170
- package/es/locales/en-US.d.ts +0 -355
- package/es/locales/zh-CN.d.ts +0 -350
- package/es/locales/zh-TW.d.ts +0 -350
- package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +0 -9
- package/lib/components/PisellBasicGrid/hooks/index.d.ts +0 -1
- package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +0 -37
- package/lib/components/PisellBasicGrid/index.d.ts +0 -6
- package/lib/components/PisellBasicGrid/types.d.ts +0 -221
- package/lib/components/PisellBasicGrid/utils/index.d.ts +0 -63
- package/lib/components/PisellCards/PisellCards.d.ts +0 -8
- package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +0 -8
- package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +0 -5
- package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +0 -24
- package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +0 -27
- package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +0 -6
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +0 -5
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +0 -15
- package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +0 -18
- package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +0 -5
- package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +0 -290
- package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +0 -19
- package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +0 -19
- package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +0 -7
- package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +0 -7
- package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +0 -2
- package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +0 -2
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +0 -31
- package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +0 -28
- package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +0 -2
- package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +0 -202
- package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +0 -6
- package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +0 -8
- package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
- package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +0 -5
- package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +0 -11
- package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +0 -10
- package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +0 -5
- package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +0 -74
- package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +0 -7
- package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +0 -7
- package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +0 -5
- package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +0 -3
- package/lib/components/PisellCards/components/TabCard/index.d.ts +0 -5
- package/lib/components/PisellCards/components/TabCard/types.d.ts +0 -70
- package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +0 -7
- package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +0 -26
- package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +0 -17
- package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +0 -21
- package/lib/components/PisellCards/components/TextCard/components/index.d.ts +0 -6
- package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
- package/lib/components/PisellCards/components/TextCard/index.d.ts +0 -5
- package/lib/components/PisellCards/components/TextCard/types.d.ts +0 -270
- package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
- package/lib/components/PisellCards/components/index.d.ts +0 -10
- package/lib/components/PisellCards/hooks/index.d.ts +0 -0
- package/lib/components/PisellCards/index.d.ts +0 -14
- package/lib/components/PisellCards/types.d.ts +0 -48
- package/lib/components/PisellCards/utils/index.d.ts +0 -0
- package/lib/components/PisellProcedure/PisellProcedure.d.ts +0 -12
- package/lib/components/PisellProcedure/components/FooterActions.d.ts +0 -25
- package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +0 -37
- package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +0 -23
- package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +0 -36
- package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +0 -34
- package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +0 -25
- package/lib/components/PisellProcedure/components/index.d.ts +0 -12
- package/lib/components/PisellProcedure/hooks/index.d.ts +0 -9
- package/lib/components/PisellProcedure/hooks/useElementHeight.d.ts +0 -23
- package/lib/components/PisellProcedure/hooks/useElementHeight.js +0 -73
- package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +0 -43
- package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +0 -50
- package/lib/components/PisellProcedure/index.d.ts +0 -5
- package/lib/components/PisellProcedure/types.d.ts +0 -285
- package/lib/components/PisellProcedure/utils/classNames.d.ts +0 -33
- package/lib/components/PisellProcedure/utils/extractText.d.ts +0 -20
- package/lib/components/PisellProcedure/utils/footerPosition.d.ts +0 -41
- package/lib/components/PisellProcedure/utils/index.d.ts +0 -8
- package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +0 -42
- package/lib/components/PisellProcedure/utils/slotHelper.d.ts +0 -27
- package/lib/components/PisellScrollView/PisellScrollView.d.ts +0 -5
- package/lib/components/PisellScrollView/components/Actions/index.d.ts +0 -12
- package/lib/components/PisellScrollView/hooks/index.d.ts +0 -3
- package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +0 -8
- package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +0 -20
- package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +0 -9
- package/lib/components/PisellScrollView/index.d.ts +0 -2
- package/lib/components/PisellScrollView/types.d.ts +0 -203
- package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
- package/lib/components/PisellSteps/PisellSteps.d.ts +0 -14
- package/lib/components/PisellSteps/hooks/index.d.ts +0 -4
- package/lib/components/PisellSteps/hooks/useStepClick.d.ts +0 -11
- package/lib/components/PisellSteps/index.d.ts +0 -3
- package/lib/components/PisellSteps/types.d.ts +0 -284
- package/lib/components/PisellSteps/utils/index.d.ts +0 -54
- package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +0 -12
- package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
- package/lib/components/PisellSuperTabs/hooks/index.d.ts +0 -1
- package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +0 -7
- package/lib/components/PisellSuperTabs/index.d.ts +0 -3
- package/lib/components/PisellSuperTabs/types.d.ts +0 -209
- package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +0 -8
- package/lib/components/PisellSuperTabs/utils/index.d.ts +0 -1
- package/lib/components/PisellTabbar/PisellTabbar.d.ts +0 -3
- package/lib/components/PisellTabbar/components/TabbarLevel.d.ts +0 -8
- package/lib/components/PisellTabbar/components/index.d.ts +0 -1
- package/lib/components/PisellTabbar/constants.d.ts +0 -46
- package/lib/components/PisellTabbar/hooks/index.d.ts +0 -2
- package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +0 -49
- package/lib/components/PisellTabbar/hooks/useExpand.d.ts +0 -41
- package/lib/components/PisellTabbar/index.d.ts +0 -7
- package/lib/components/PisellTabbar/locales.d.ts +0 -15
- package/lib/components/PisellTabbar/mock.d.ts +0 -47
- package/lib/components/PisellTabbar/template/index.d.ts +0 -0
- package/lib/components/PisellTabbar/types.d.ts +0 -111
- package/lib/components/PisellTabbar/utils/index.d.ts +0 -35
- package/lib/components/PisellTabbar2/PisellTabbar.d.ts +0 -20
- package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +0 -8
- package/lib/components/PisellTabbar2/components/index.d.ts +0 -1
- package/lib/components/PisellTabbar2/constants.d.ts +0 -46
- package/lib/components/PisellTabbar2/hooks/index.d.ts +0 -2
- package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +0 -50
- package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +0 -41
- package/lib/components/PisellTabbar2/index.d.ts +0 -6
- package/lib/components/PisellTabbar2/locales.d.ts +0 -15
- package/lib/components/PisellTabbar2/mock.d.ts +0 -62
- package/lib/components/PisellTabbar2/types.d.ts +0 -115
- package/lib/components/PisellTabbar2/utils/index.d.ts +0 -35
- package/lib/components/PisellTabbar3/PisellTabbar.d.ts +0 -20
- package/lib/components/PisellTabbar3/index.d.ts +0 -6
- package/lib/components/PisellTabbar3/locales.d.ts +0 -15
- package/lib/components/PisellTabbar3/mock.d.ts +0 -47
- package/lib/components/PisellTabbar3/types.d.ts +0 -111
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -101
- package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.d.ts +0 -5
- package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +0 -17
- package/lib/components/dataSourceComponents/hooks/useActions.d.ts +0 -18
- package/lib/components/pisellCardList/index.d.ts +0 -107
- package/lib/components/pisellGoodPassCard/index.d.ts +0 -50
- package/lib/components/pisellWalletPassCard/index.d.ts +0 -146
- package/lib/components/productCard/index.d.ts +0 -7
- package/lib/components/walletCard/index.d.ts +0 -77
- package/lib/hooks/useMobile.d.ts +0 -8
- package/lib/index.d.ts +0 -170
- package/lib/locales/en-US.d.ts +0 -355
- package/lib/locales/zh-CN.d.ts +0 -350
- package/lib/locales/zh-TW.d.ts +0 -350
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
export interface WalletCardItem {
|
|
4
|
-
type: string;
|
|
5
|
-
custom_title?: string | {
|
|
6
|
-
original: string;
|
|
7
|
-
en: string;
|
|
8
|
-
'zh-CN': string;
|
|
9
|
-
'zh-HK': string;
|
|
10
|
-
};
|
|
11
|
-
display?: 0 | 1;
|
|
12
|
-
value?: number;
|
|
13
|
-
}
|
|
14
|
-
export interface WalletCardProps {
|
|
15
|
-
/** 钱包ID */
|
|
16
|
-
id?: string;
|
|
17
|
-
/** 二维码弹窗适配平台 */
|
|
18
|
-
platform?: 'pc' | 'h5' | 'ipad';
|
|
19
|
-
/** 卡片主题 */
|
|
20
|
-
mode?: 'dark' | 'light';
|
|
21
|
-
/** 默认还是完整显示code */
|
|
22
|
-
cardStyle?: 'normal' | 'full';
|
|
23
|
-
/** 条形码还是二维码 */
|
|
24
|
-
codeType?: 'barCode' | 'qrCode';
|
|
25
|
-
/** 二维码方向 */
|
|
26
|
-
codeDirection?: 'bottom' | 'top';
|
|
27
|
-
/** 自定义背景图 */
|
|
28
|
-
customBackgroundImage?: string;
|
|
29
|
-
/** 图标:可以是React组件或图片URL */
|
|
30
|
-
showIcon?: boolean;
|
|
31
|
-
showWalletName?: boolean;
|
|
32
|
-
iconImg?: string;
|
|
33
|
-
/** 钱包名称 */
|
|
34
|
-
walletName?: string;
|
|
35
|
-
/** 店铺名称 */
|
|
36
|
-
shopName?: string;
|
|
37
|
-
/** 是否显示店铺名称 */
|
|
38
|
-
showShopName?: boolean;
|
|
39
|
-
/** 卡号 */
|
|
40
|
-
cardNo?: string;
|
|
41
|
-
/** 是否显示卡号 */
|
|
42
|
-
showCardNo?: boolean;
|
|
43
|
-
/** 是否显示二维码 */
|
|
44
|
-
showCode?: boolean;
|
|
45
|
-
/** 点击二维码/条形码的回调 */
|
|
46
|
-
onCodeClick?: () => void;
|
|
47
|
-
/** 货币符号 */
|
|
48
|
-
symbol: string;
|
|
49
|
-
/** 点击卡片的回调 */
|
|
50
|
-
onClick?: () => void;
|
|
51
|
-
/** 自定义类名 */
|
|
52
|
-
className?: string;
|
|
53
|
-
items: WalletCardItem[];
|
|
54
|
-
/** 自定义样式 */
|
|
55
|
-
style?: React.CSSProperties;
|
|
56
|
-
title?: string;
|
|
57
|
-
subTitle?: string;
|
|
58
|
-
align?: 'left' | 'center';
|
|
59
|
-
buttonText?: string;
|
|
60
|
-
[key: string]: any;
|
|
61
|
-
/** 是否已登录 */
|
|
62
|
-
isLogin?: boolean;
|
|
63
|
-
/** 是否是引导页 */
|
|
64
|
-
isGuide?: boolean;
|
|
65
|
-
/** 是否显示查看PIN */
|
|
66
|
-
showViewPin?: boolean;
|
|
67
|
-
/** 查看PIN的回调 */
|
|
68
|
-
onViewPinClick?: () => void;
|
|
69
|
-
/** 是否显示持有人 */
|
|
70
|
-
showHolderName?: boolean;
|
|
71
|
-
/** 持有人, 表单记录,展示时一般取main_field */
|
|
72
|
-
holder?: any;
|
|
73
|
-
/** 持有人点击回调 */
|
|
74
|
-
onSetHolder?: (currentValue?: any) => void;
|
|
75
|
-
}
|
|
76
|
-
declare const WalletCard: React.FC<WalletCardProps>;
|
|
77
|
-
export default WalletCard;
|
package/es/hooks/useMobile.d.ts
DELETED
package/es/index.d.ts
DELETED
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
export { Affix, Alert, Anchor, Avatar, Breadcrumb, Card, Carousel, Col, ColorPicker, Descriptions, Divider, Empty, Grid, InputNumber, Mentions, Menu, Pagination, Popconfirm, Popover, Progress, Rate, Result, Row, Space, Spin, Statistic, Steps, Switch, Tag, Timeline, Tooltip, Transfer, Tree, message, notification, version, } from 'antd';
|
|
2
|
-
export { default as AppVersionControl } from './components/appVersionControl';
|
|
3
|
-
export { default as AutoComplete } from './components/auto-complete';
|
|
4
|
-
export { default as AutoCompleteNumber } from './components/auto-complete-number';
|
|
5
|
-
export { default as Badge } from './components/badge';
|
|
6
|
-
export { default as BatchEditor } from './components/batch-editor';
|
|
7
|
-
export { default as Button } from './components/button';
|
|
8
|
-
export { default as ButtonGroupEdit } from './components/buttonGroupEdit';
|
|
9
|
-
export { default as ButtonGroupPreview } from './components/buttonGroupPreview';
|
|
10
|
-
export { default as Calendar } from './components/calendar';
|
|
11
|
-
export { default as CardMetricItem } from './components/cardMetricItem';
|
|
12
|
-
export { default as CardPro } from './components/cardPro';
|
|
13
|
-
export { default as Cascader } from './components/cascader';
|
|
14
|
-
export { default as Checkbox } from './components/checkbox';
|
|
15
|
-
export { default as ClassicLayout } from './components/classicLayout';
|
|
16
|
-
export { default as Collapse } from './components/collapse';
|
|
17
|
-
export { default as Component } from './components/component';
|
|
18
|
-
export { default as ConfigProvider } from './components/config-provider';
|
|
19
|
-
export { default as CropPhoto } from './components/cropPhoto';
|
|
20
|
-
export { default as CustomSelect } from './components/customSelect';
|
|
21
|
-
export { default as DataSourceForm } from './components/dataSourceComponents/dataSourceForm';
|
|
22
|
-
export { default as FormGroup } from './components/dataSourceComponents/dataSourceForm/group';
|
|
23
|
-
export { default as JsonWrapper } from './components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider';
|
|
24
|
-
export { default as SubmitButton } from './components/dataSourceComponents/dataSourceForm/submitButton';
|
|
25
|
-
export { default as DataSourceMenu } from './components/dataSourceComponents/dataSourceMenu';
|
|
26
|
-
export { default as DataSourceImage } from './components/dataSourceComponents/dataSourceShow/dataSourceImage';
|
|
27
|
-
export { default as DataSourceQRCode } from './components/dataSourceComponents/dataSourceShow/dataSourceQRCode';
|
|
28
|
-
export { default as DataSourceTypography } from './components/dataSourceComponents/dataSourceShow/dataSourceTypography';
|
|
29
|
-
export { default as DataSourceTable } from './components/dataSourceComponents/dataSourceTable';
|
|
30
|
-
export { default as DataSourceWrapper } from './components/dataSourceComponents/dataSourceWrapper';
|
|
31
|
-
export { default as FormItemCheckbox } from './components/dataSourceComponents/fields/Checkbox';
|
|
32
|
-
export { default as FormItemSwitch } from './components/dataSourceComponents/fields/Switch';
|
|
33
|
-
export { default as FormItemColorPicker } from './components/dataSourceComponents/fields/ColorPicker';
|
|
34
|
-
export { default as FormItemDatePicker } from './components/dataSourceComponents/fields/DatePicker';
|
|
35
|
-
export { default as FormItemIconSelect } from './components/dataSourceComponents/fields/IconSelect';
|
|
36
|
-
export { default as FormItemInput } from './components/dataSourceComponents/fields/Input';
|
|
37
|
-
export { default as FormItemInputNumber } from './components/dataSourceComponents/fields/InputNumber';
|
|
38
|
-
export { default as FormItemRadio } from './components/dataSourceComponents/fields/Radio';
|
|
39
|
-
export { default as FormItemSelect } from './components/dataSourceComponents/fields/Select';
|
|
40
|
-
export { default as FormItemTimePicker } from './components/dataSourceComponents/fields/TimePicker';
|
|
41
|
-
export { default as FormItemTranslation } from './components/dataSourceComponents/fields/Translation';
|
|
42
|
-
export { default as FormItemUpload } from './components/dataSourceComponents/fields/Upload';
|
|
43
|
-
export { default as DatePicker } from './components/date-picker';
|
|
44
|
-
export { default as Div } from './components/div';
|
|
45
|
-
export { default as DragSortTree } from './components/drag-sort-tree';
|
|
46
|
-
export { default as Drawer } from './components/drawer';
|
|
47
|
-
export { default as Dropdown } from './components/dropdown';
|
|
48
|
-
export { default as Filter } from './components/filter';
|
|
49
|
-
export { default as Form } from './components/form';
|
|
50
|
-
export { default as Icon } from './components/icon';
|
|
51
|
-
export { default as IconSelect } from './components/iconSelect';
|
|
52
|
-
export { default as Iconfont } from './components/iconfont';
|
|
53
|
-
export { default as Image } from './components/image';
|
|
54
|
-
export { default as Input } from './components/input';
|
|
55
|
-
export { default as InputNumberRange } from './components/input-number-range';
|
|
56
|
-
export { default as List } from './components/list';
|
|
57
|
-
export { default as loginAndRegister } from './components/login-and-register';
|
|
58
|
-
export { default as LowCodePage } from './components/lowCodePage';
|
|
59
|
-
export { default as Modal } from './components/modal';
|
|
60
|
-
export { default as OrganizationTenantSwitcher } from './components/organizationTenantSwitcher';
|
|
61
|
-
export { default as Page } from './components/page';
|
|
62
|
-
export { default as PageHeader } from './components/page-header';
|
|
63
|
-
export { default as PisellConfigProvider } from './components/pisell-config-provider';
|
|
64
|
-
export { default as PisellContext, globalConfig, } from './components/pisell-config-provider/context';
|
|
65
|
-
export { default as usePisellConfig } from './components/pisell-config-provider/hooks/usePisellConfig';
|
|
66
|
-
export { default as PisellAdjustPrice } from './components/pisellAdjustPrice';
|
|
67
|
-
export { default as PisellAdjustPriceInputNumber } from './components/pisellAdjustPrice/PisellAdjustPriceInputNumber';
|
|
68
|
-
export { default as PisellAlert } from './components/pisellAlert';
|
|
69
|
-
export { default as PisellAnchor } from './components/pisellAnchor';
|
|
70
|
-
export { default as PisellAvatar } from './components/pisellAvatar';
|
|
71
|
-
export { default as PisellCard } from './components/pisellCard';
|
|
72
|
-
export { default as PisellCardList } from './components/pisellCardList';
|
|
73
|
-
export { default as PisellCards } from './components/PisellCards';
|
|
74
|
-
export type { PisellBasicCardProps, TabCardProps, BadgeConfig, } from './components/PisellCards';
|
|
75
|
-
export { default as TabCard } from './components/PisellCards/components/TabCard';
|
|
76
|
-
export { default as PisellCheckboxGroup } from './components/pisellCheckboxGroup';
|
|
77
|
-
export { default as PisellContainer } from './components/pisellContainer';
|
|
78
|
-
export { default as PisellCountdown } from './components/pisellCountdown';
|
|
79
|
-
export { default as PisellCustomCheckboxGroup } from './components/pisellCustomCheckboxGroup';
|
|
80
|
-
export { default as PisellDatePicker } from './components/pisellDatePicker';
|
|
81
|
-
export { default as PisellDraggable } from './components/pisellDraggable';
|
|
82
|
-
export { default as PisellDropdown } from './components/pisellDropdown';
|
|
83
|
-
export { default as PisellEmpty } from './components/pisellEmpty';
|
|
84
|
-
export { default as PisellFloatingPanel } from './components/pisellFloatingPanel';
|
|
85
|
-
export { default as PisellHeaderProgressBar } from './components/pisellHeaderProgressBar';
|
|
86
|
-
export { default as PisellImageCarousels } from './components/pisellImageCarousels';
|
|
87
|
-
export { default as PisellInformationEntry } from './components/pisellInformationEntry';
|
|
88
|
-
export { default as PisellInput } from './components/pisellInput';
|
|
89
|
-
export { getBankCardTypeImg } from './components/pisellInput/components/BankCard/utils';
|
|
90
|
-
export { default as PisellLayout } from './components/pisellLayout';
|
|
91
|
-
export { default as PisellContent } from './components/pisellLayout/content';
|
|
92
|
-
export { default as PisellFooter } from './components/pisellLayout/footer';
|
|
93
|
-
export { default as PisellHeader } from './components/pisellLayout/header';
|
|
94
|
-
export { default as PisellSider } from './components/pisellLayout/sider';
|
|
95
|
-
export { default as PisellList01 } from './components/pisellList01';
|
|
96
|
-
export { default as PisellLoading } from './components/pisellLoading';
|
|
97
|
-
export { default as PisellMenu } from './components/pisellMenu';
|
|
98
|
-
export type { PisellMenuProps } from './components/pisellMenu/types';
|
|
99
|
-
export { default as PisellModal } from './components/pisellModal';
|
|
100
|
-
export { default as PisellQRScanner } from './components/pisellQRScanner';
|
|
101
|
-
export type { PisellQRScannerProps } from './components/pisellQRScanner';
|
|
102
|
-
export { default as PisellQrcode } from './components/pisellQrcode';
|
|
103
|
-
export { default as PisellRow } from './components/pisellRow';
|
|
104
|
-
export { default as PisellScan } from './components/pisellScan';
|
|
105
|
-
export { default as PisellSectionHeaders } from './components/pisellSectionHeaders';
|
|
106
|
-
export { default as PisellStatisticList } from './components/pisellStatisticList';
|
|
107
|
-
export { default as PisellSteps } from './components/PisellSteps';
|
|
108
|
-
export type { PisellStepsProps, PisellStepItem, } from './components/PisellSteps/types';
|
|
109
|
-
export { default as PisellProcedure } from './components/PisellProcedure';
|
|
110
|
-
export type { PisellProcedureProps, ProcedureHeaderProps, ProcedureBodyProps, ProcedureFooterProps, } from './components/PisellProcedure/types';
|
|
111
|
-
export { default as PisellTags } from './components/pisellTags';
|
|
112
|
-
export { default as PisellText } from './components/pisellText';
|
|
113
|
-
export { default as PisellToast, useToast } from './components/pisellToast';
|
|
114
|
-
export { default as PisellTooltip } from './components/pisellTooltip';
|
|
115
|
-
export { default as PisellUpload } from './components/pisellUpload';
|
|
116
|
-
export { default as PisellViewGrid } from './components/pisellViewGrid';
|
|
117
|
-
export { default as PisellWalletPassCard } from './components/pisellWalletPassCard';
|
|
118
|
-
export { default as ProductCard } from './components/productCard';
|
|
119
|
-
export type { PisellWalletPassCardProps } from './components/pisellWalletPassCard';
|
|
120
|
-
export { default as ProfileMenu } from './components/profileMenu';
|
|
121
|
-
export { default as QRCode } from './components/qrcode';
|
|
122
|
-
export { default as Radio } from './components/radio';
|
|
123
|
-
export { default as RecordView } from './components/record-view';
|
|
124
|
-
export { default as SectionFooters } from './components/section-footers';
|
|
125
|
-
export { default as Segmented } from './components/segmented';
|
|
126
|
-
export { default as Select } from './components/select';
|
|
127
|
-
export { default as SelectTime } from './components/select-time';
|
|
128
|
-
export { default as Skeleton } from './components/skeleton';
|
|
129
|
-
export { default as Slider } from './components/slider';
|
|
130
|
-
export { default as Sort } from './components/sort';
|
|
131
|
-
export { default as SortableList } from './components/sortableList';
|
|
132
|
-
export { default as Table } from './components/table';
|
|
133
|
-
export { default as Tabs } from './components/tabs';
|
|
134
|
-
export { default as TimePicker } from './components/time-picker';
|
|
135
|
-
export { default as Translation } from './components/translation';
|
|
136
|
-
export { default as TreeSelect } from './components/tree-select';
|
|
137
|
-
export { default as Typography } from './components/typography';
|
|
138
|
-
export { default as Upload } from './components/upload';
|
|
139
|
-
export { default as VirtualKeyboard } from './components/virtual-keyboard';
|
|
140
|
-
export { default as PisellPriceKeyboard } from './components/virtual-keyboard/Amount';
|
|
141
|
-
export { default as PisellNumberKeyboard } from './components/virtual-keyboard/Number';
|
|
142
|
-
export { default as VirtualKeyboardTime } from './components/virtual-keyboard/Time';
|
|
143
|
-
export { default as WalletCard } from './components/walletCard';
|
|
144
|
-
export { default as PublishVersionModal } from './components/versionModal';
|
|
145
|
-
export { default as PisellDropSort } from './components/pisellDropSort';
|
|
146
|
-
export { default as PisellNavigationMenu } from './components/pisellNavigationMenu';
|
|
147
|
-
export { default as PisellAppCard } from './components/pisellAppCard';
|
|
148
|
-
export type { PisellAppCardProps } from './components/pisellAppCard/types';
|
|
149
|
-
export { default as BaseTranslation } from './components/dataSourceComponents/fields/Translation/BaseTranslation';
|
|
150
|
-
export { default as PisellGoodPassCard } from './components/pisellGoodPassCard';
|
|
151
|
-
export { default as HardwareErrorTip } from './components/hardwareErrorTip';
|
|
152
|
-
export { default as Keyboard } from './components/keyboard';
|
|
153
|
-
export { default as VirtualInput } from './components/virtualInput';
|
|
154
|
-
export { default as AutoResizeText } from './components/auto-resize-text';
|
|
155
|
-
export { default as PisellBasicGrid } from './components/PisellBasicGrid';
|
|
156
|
-
export type { PisellBasicGridProps } from './components/PisellBasicGrid';
|
|
157
|
-
export { PisellScrollView } from './components/PisellScrollView';
|
|
158
|
-
export type { PisellScrollViewProps } from './components/PisellScrollView';
|
|
159
|
-
export { default as PisellSuperTabs } from './components/PisellSuperTabs';
|
|
160
|
-
export type { PisellSuperTabsProps, TabDataItem, } from './components/PisellSuperTabs';
|
|
161
|
-
export { default as TextCard } from './components/PisellCards/components/TextCard';
|
|
162
|
-
export { default as GraphicTextCard } from './components/PisellCards/components/GraphicTextCard';
|
|
163
|
-
export type { GraphicTextCardProps, GraphicTextCardVariant, GraphicTextCardSize, } from './components/PisellCards/components/GraphicTextCard';
|
|
164
|
-
export { default as MultilevelCard } from './components/PisellCards/components/MultilevelCard';
|
|
165
|
-
export type { MultilevelCardProps } from './components/PisellCards/components/MultilevelCard';
|
|
166
|
-
export { default as PisellImageCard } from './components/PisellCards/components/PisellImageCard';
|
|
167
|
-
export type { PisellImageCardProps, ImageDataSource, ImageFillMode, } from './components/PisellCards/components/PisellImageCard';
|
|
168
|
-
export { default as PisellTabbar } from './components/PisellTabbar';
|
|
169
|
-
export type { PisellTabbarProps, TabbarDataSource, LevelType, } from './components/PisellTabbar';
|
|
170
|
-
export { default as PisellTabbar2 } from './components/PisellTabbar2';
|
package/es/locales/en-US.d.ts
DELETED
|
@@ -1,355 +0,0 @@
|
|
|
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-clear': string;
|
|
7
|
-
'table-filter-filter': string;
|
|
8
|
-
'table-filter-min': string;
|
|
9
|
-
'table-filter-max': string;
|
|
10
|
-
'table-pagination-previous': string;
|
|
11
|
-
'table-pagination-next': string;
|
|
12
|
-
'table-pagination-total': (current: string, total: string) => string;
|
|
13
|
-
'select-dropdown-render-select-all': string;
|
|
14
|
-
'select-dropdown-render-search': string;
|
|
15
|
-
'sort-button-text': string;
|
|
16
|
-
'sort-oldest-to-newest': string;
|
|
17
|
-
'sort-newest-to-oldest': string;
|
|
18
|
-
'sort-a-z': string;
|
|
19
|
-
'sort-z-a': string;
|
|
20
|
-
'sort-from-morning-to-night': string;
|
|
21
|
-
'sort-from-evening-to-morning': string;
|
|
22
|
-
'sort-0-9': string;
|
|
23
|
-
'sort-9-0': string;
|
|
24
|
-
'table-action-filter-button': string;
|
|
25
|
-
'table-action-filter-quick-filter': string;
|
|
26
|
-
'table-action-filter-quick-filter-tip': (count: number) => string;
|
|
27
|
-
'table-action-filter-other-filter': string;
|
|
28
|
-
'table-action-filter-other-filter-tip': () => string;
|
|
29
|
-
'table-action-group-by-title': string;
|
|
30
|
-
'table-action-group-by-title-tip': string;
|
|
31
|
-
'table-action-column-title': string;
|
|
32
|
-
'table-column-group-records': string;
|
|
33
|
-
'table-column-group-lock-tip': string;
|
|
34
|
-
'table-column-drag-sort-disabled-tip': string;
|
|
35
|
-
'table-action-filter-no-filter': string;
|
|
36
|
-
'table-action-range-picker-presets-today': string;
|
|
37
|
-
'table-action-range-picker-presets-yesterday': string;
|
|
38
|
-
'table-action-range-picker-presets-last-3-day': string;
|
|
39
|
-
'table-action-range-picker-presets-last-7-day': string;
|
|
40
|
-
'table-action-range-picker-presets-last-14-day': string;
|
|
41
|
-
'table-action-range-picker-presets-last-30-day': string;
|
|
42
|
-
'table-action-range-picker-presets-last-90-day': string;
|
|
43
|
-
'virtual-keyboard-time-now': string;
|
|
44
|
-
'virtual-keyboard-time-ok': string;
|
|
45
|
-
'batch-editor-batch-edit': string;
|
|
46
|
-
'batch-editor-actions': string;
|
|
47
|
-
'batch-editor-remove': string;
|
|
48
|
-
'batch-editor-price': string;
|
|
49
|
-
'batch-editor-cancel': string;
|
|
50
|
-
'batch-editor-search': string;
|
|
51
|
-
'batch-editor-confirm': string;
|
|
52
|
-
'batch-editor-batch-remove': string;
|
|
53
|
-
'batch-editor-quick-edit': string;
|
|
54
|
-
'batch-editor-what-price': string;
|
|
55
|
-
'batch-editor-quick-edit-title': (product: string, num: string) => string;
|
|
56
|
-
'batch-editor-quick-edit-title-2': (product: string) => string;
|
|
57
|
-
'table-action-export-import-export-success': string;
|
|
58
|
-
'table-action-export-import-button': string;
|
|
59
|
-
'table-action-export-import-export-range': string;
|
|
60
|
-
'table-action-export-import-current-page': string;
|
|
61
|
-
'table-action-export-import-all-records': string;
|
|
62
|
-
'table-action-export-import-selected-records': string;
|
|
63
|
-
'table-action-export-import-selected': string;
|
|
64
|
-
'table-action-export-import-item': (length: number) => string;
|
|
65
|
-
'table-action-export-import-product': string;
|
|
66
|
-
'table-action-export-import-table-text-input-title': string;
|
|
67
|
-
'table-action-export-import-table-text-input-describe': string;
|
|
68
|
-
'table-action-export-import-table-error-file': string;
|
|
69
|
-
'table-action-export-import-import-success': string;
|
|
70
|
-
'table-action-export-import-import-phone': string;
|
|
71
|
-
'table-action-export-import-table-success-download': string;
|
|
72
|
-
'table-action-export-import-table-textimport-product': string;
|
|
73
|
-
'table-action-export-import-table-text-product-template': string;
|
|
74
|
-
'table-action-export-import-table-text-click-download': string;
|
|
75
|
-
'table-action-export-import-table-text-edit-file': string;
|
|
76
|
-
'table-action-export-import-button-import': string;
|
|
77
|
-
'table-action-export-import-cancel': string;
|
|
78
|
-
'table-action-export-import-file-completed': string;
|
|
79
|
-
'table-action-export-import-file-processing': string;
|
|
80
|
-
'table-action-export-import-file-pending': string;
|
|
81
|
-
'table-action-export-import-file-refresh': string;
|
|
82
|
-
'table-action-export-import-export-title': string;
|
|
83
|
-
'table-action-export-import-file-hint': string;
|
|
84
|
-
'table-action-export-import-file-name': string;
|
|
85
|
-
'table-action-export-import-file-content': string;
|
|
86
|
-
'table-action-export-import-file-content-all': string;
|
|
87
|
-
'table-action-export-import-file-content-part': string;
|
|
88
|
-
'table-action-export-import-file-status': string;
|
|
89
|
-
'table-action-export-import-file-account': string;
|
|
90
|
-
'table-action-export-import-file-created': string;
|
|
91
|
-
'table-action-export-import-file-record': (length: number) => string;
|
|
92
|
-
'table-action-export-import-import-title': string;
|
|
93
|
-
'table-action-export-import-log-hint': string;
|
|
94
|
-
'table-action-export-import-log-name': string;
|
|
95
|
-
'table-action-export-import-log-result': string;
|
|
96
|
-
'table-action-export-import-log-ok': (num: number) => string;
|
|
97
|
-
'table-action-export-import-log-err': (num: number) => string;
|
|
98
|
-
'table-action-export-import-log-check': string;
|
|
99
|
-
'table-action-export-import-log-detail-title': string;
|
|
100
|
-
'table-action-export-import-log-err-log': string;
|
|
101
|
-
'table-action-export-import-log-copy': string;
|
|
102
|
-
'table-action-export-import-table-success-copy': string;
|
|
103
|
-
'drag-sort-tree-unavailable-today-tip': string;
|
|
104
|
-
'date-picker-today': string;
|
|
105
|
-
'date-picker-yesterday': string;
|
|
106
|
-
'date-picker-tomorrow': string;
|
|
107
|
-
'date-picker-next_monday': string;
|
|
108
|
-
'date-picker-last_friday': string;
|
|
109
|
-
'date-picker-first_day_of_this_month': string;
|
|
110
|
-
'date-picker-last_day_of_this_month': string;
|
|
111
|
-
'date-picker-first_day_of_next_month': string;
|
|
112
|
-
'date-picker-last_day_of_last_month': string;
|
|
113
|
-
'date-picker-invalid-date': string;
|
|
114
|
-
'date-picker-apply': string;
|
|
115
|
-
'date-picker-shortcut-custom': string;
|
|
116
|
-
'pisell-input-copy-success': string;
|
|
117
|
-
'pisell-input-copy': string;
|
|
118
|
-
'pisell-empty-description-no-data': string;
|
|
119
|
-
'pisell-information-entry-input-search': string;
|
|
120
|
-
'pisell-information-entry-input-confirm': string;
|
|
121
|
-
'pisell-information-entry-scan-exit': string;
|
|
122
|
-
'pisell-wallet-pass-card-detail': string;
|
|
123
|
-
'pisell-wallet-pass-card-edit': string;
|
|
124
|
-
'pisell-wallet-pass-card-name': string;
|
|
125
|
-
'pisell-wallet-pass-card-store-name': string;
|
|
126
|
-
'pisell-wallet-pass-card-balance': string;
|
|
127
|
-
'pisell-wallet-pass-card-redeem': string;
|
|
128
|
-
'pisell-wallet-pass-card-code': string;
|
|
129
|
-
'pisell-wallet-pass-card-valid-to': string;
|
|
130
|
-
'pisell-wallet-pass-card-valid': string;
|
|
131
|
-
'pisell-wallet-pass-card-confirm': string;
|
|
132
|
-
'pisell-wallet-pass-card-cancel': string;
|
|
133
|
-
'pisell-wallet-pass-card-required': string;
|
|
134
|
-
'pisell-wallet-pass-card-expireDate': string;
|
|
135
|
-
'pisell-adjust-price-price-override': string;
|
|
136
|
-
'pisell-adjust-price-discount': string;
|
|
137
|
-
'pisell-adjust-price-discount-amount': string;
|
|
138
|
-
'pisell-adjust-price-discount-percentage': string;
|
|
139
|
-
'pisell-adjust-price-total-after-discount': string;
|
|
140
|
-
'pisell-adjust-price-discount-can-be-maximum': string;
|
|
141
|
-
'pisell-discount-card-title': string;
|
|
142
|
-
'pisell-discount-card-unit': string;
|
|
143
|
-
'pisell-discount-card-fixed-amount-prefix': string;
|
|
144
|
-
'pisell-data-source-table-add': string;
|
|
145
|
-
'pisell-data-source-table-edit': string;
|
|
146
|
-
'pisell-data-source-table-detail': string;
|
|
147
|
-
'pisell-data-source-table-delete': string;
|
|
148
|
-
'pisell-record-view-available': string;
|
|
149
|
-
'pisell-record-view-unavailable': string;
|
|
150
|
-
'pisell-data-source-form-required-message': string;
|
|
151
|
-
'pisell-data-source-form-email-message': string;
|
|
152
|
-
'pisell-data-source-form-domain-message': string;
|
|
153
|
-
'pisell-data-source-form-url-message': string;
|
|
154
|
-
'pisell-data-source-form-phone-message': string;
|
|
155
|
-
'pisell-data-source-form-min-length-message': (minLength: number) => string;
|
|
156
|
-
'pisell-data-source-form-max-length-message': (maxLength: number) => string;
|
|
157
|
-
'pisell-data-source-form-min-value-message': (minValue: number) => string;
|
|
158
|
-
'pisell-data-source-form-max-value-message': (maxValue: number) => string;
|
|
159
|
-
'pisell-data-source-form-mobile-message': string;
|
|
160
|
-
'pisell-data-source-form-pattern-message': string;
|
|
161
|
-
'pisell-number-format-thousand': string;
|
|
162
|
-
'pisell-number-format-million': string;
|
|
163
|
-
'pisell-number-format-billion': string;
|
|
164
|
-
'walletCard-done': string;
|
|
165
|
-
'walletCard-qrcode': string;
|
|
166
|
-
'walletCard-barcode': string;
|
|
167
|
-
'walletCard-viewPin': string;
|
|
168
|
-
'pisell-upload-button': string;
|
|
169
|
-
'pisell-upload-setting-size-error': (maxSize: number) => string;
|
|
170
|
-
'pisell-upload-setting-type-error': (type: string) => string;
|
|
171
|
-
'pisell-upload-count-error': (count: number) => string;
|
|
172
|
-
'pisell-upload-error': (name: string) => string;
|
|
173
|
-
'pisell-upload-multilingual-title': string;
|
|
174
|
-
'pisell-upload-multilingual-item-title-original': string;
|
|
175
|
-
'pisell-upload-multilingual-item-title-en': string;
|
|
176
|
-
'pisell-upload-multilingual-item-title-zh-CN': string;
|
|
177
|
-
'pisell-upload-multilingual-item-title-zh-HK': string;
|
|
178
|
-
'pisell-color-picker-default': string;
|
|
179
|
-
'pisell-action-get-data': string;
|
|
180
|
-
'pisell-action-delete-success': string;
|
|
181
|
-
'pisell-action-delete-failed': string;
|
|
182
|
-
'walletCard-point': string;
|
|
183
|
-
'walletCard-rechargeable': string;
|
|
184
|
-
'walletCard-voucher': string;
|
|
185
|
-
'walletCard-discount': string;
|
|
186
|
-
'pisellQrcode-done': string;
|
|
187
|
-
'pisellQrcode-qrcode': string;
|
|
188
|
-
'pisell-delete-confirm-title': string;
|
|
189
|
-
'pisell-delete-confirm-content': string;
|
|
190
|
-
'pisell-delete-confirm-ok': string;
|
|
191
|
-
'pisell-delete-confirm-cancel': string;
|
|
192
|
-
'pisell-design-mode-action-disabled': string;
|
|
193
|
-
'pisell-translation-original': string;
|
|
194
|
-
'pisell-version-modal-title': string;
|
|
195
|
-
'pisell-version-modal-current-version': string;
|
|
196
|
-
'pisell-version-modal-version': string;
|
|
197
|
-
'pisell-version-modal-update-notes': string;
|
|
198
|
-
'pisell-version-modal-patch': string;
|
|
199
|
-
'pisell-version-modal-minor': string;
|
|
200
|
-
'pisell-version-modal-major': string;
|
|
201
|
-
'pisell-version-modal-custom': string;
|
|
202
|
-
'pisell-version-modal-cancel': string;
|
|
203
|
-
'pisell-version-modal-confirm': string;
|
|
204
|
-
'pisell-version-modal-describe-update-notes': string;
|
|
205
|
-
'pisell-version-modal-version-error': string;
|
|
206
|
-
'pisell-version-modal-version-required': string;
|
|
207
|
-
'pisell-version-modal-based-on-version': string;
|
|
208
|
-
'subdomain-error-too-short': string;
|
|
209
|
-
'subdomain-error-too-long': string;
|
|
210
|
-
'subdomain-error-pattern': string;
|
|
211
|
-
'subdomain-error-numbers-only': string;
|
|
212
|
-
'subdomain-error-hyphen-ends': string;
|
|
213
|
-
'subdomain-error-consecutive-hyphens': string;
|
|
214
|
-
'subdomain-error-required': string;
|
|
215
|
-
'pisell-icon-select-outlined': string;
|
|
216
|
-
'pisell-icon-select-filled': string;
|
|
217
|
-
'pisell-icon-select-two-tone': string;
|
|
218
|
-
'pisell-icon-select-iconfont': string;
|
|
219
|
-
'pisell-icon-select-search': string;
|
|
220
|
-
'pisell-icon-select-select': string;
|
|
221
|
-
'pisell-lowcode-app-version-control-live': string;
|
|
222
|
-
'pisell-lowcode-app-version-control-draft': string;
|
|
223
|
-
'pisell-lowcode-app-version-control-deprecated': string;
|
|
224
|
-
'pisell-lowcode-app-version-control-new-version': string;
|
|
225
|
-
'pisell-lowcode-app-version-control-promote-to-live': string;
|
|
226
|
-
'pisell-lowcode-app-version-control-promote-version': (version: string) => string;
|
|
227
|
-
'pisell-lowcode-app-version-control-promote-version-describe': string;
|
|
228
|
-
'pisell-lowcode-app-version-control-promote-version-ok': string;
|
|
229
|
-
'pisell-lowcode-app-version-control-promote-version-cancel': string;
|
|
230
|
-
'pisell-lowcode-app-version-control-version-exists': string;
|
|
231
|
-
'pisell-lowcode-app-version-control-version-create-title': string;
|
|
232
|
-
'pisell-lowcode-drop-sort-add': string;
|
|
233
|
-
'pisell-lowcode-navigation-menu-add-sub-menu': string;
|
|
234
|
-
'pisell-lowcode-navigation-menu-add-page': string;
|
|
235
|
-
'pisell-lowcode-navigation-menu-add-page-tip': string;
|
|
236
|
-
'pisell-lowcode-navigation-menu-tag-base': string;
|
|
237
|
-
'pisell-lowcode-navigation-menu-tag-proCode': string;
|
|
238
|
-
'pisell-lowcode-navigation-menu-tag-pisell1': string;
|
|
239
|
-
'pisell-lowcode-navigation-menu-tag-group': string;
|
|
240
|
-
'pisell-lowcode-navigation-menu-tag-sub-menu': string;
|
|
241
|
-
'pisell-lowcode-navigation-menu-tag-custom': string;
|
|
242
|
-
'pisell-data-source-form-app-identifier-pattern': string;
|
|
243
|
-
'pisell-data-source-form-app-identifier-start-with-letter': string;
|
|
244
|
-
'pisell-group-permissions-rule-required': string;
|
|
245
|
-
'pisell-group-permissions-rule-limit': string;
|
|
246
|
-
'pisell-data-source-form-app-identifier-letters-only': string;
|
|
247
|
-
'pisell-data-source-form-app-identifier-alphanumeric': string;
|
|
248
|
-
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
249
|
-
'pisell-data-source-form-app-identifier-consecutive-special': string;
|
|
250
|
-
'qrscanner-loading': string;
|
|
251
|
-
'qrscanner-success': string;
|
|
252
|
-
'qrscanner-success-qrcode': string;
|
|
253
|
-
'qrscanner-success-barcode': string;
|
|
254
|
-
'qrscanner-error-upload-image': string;
|
|
255
|
-
'qrscanner-error-load-failed': string;
|
|
256
|
-
'qrscanner-error-no-code': string;
|
|
257
|
-
'qrscanner-error-camera-init': string;
|
|
258
|
-
'qrscanner-error-process-image': string;
|
|
259
|
-
'pisell-login-and-register-title': string;
|
|
260
|
-
'pisell-login-and-register-subtitle': string;
|
|
261
|
-
'pisell-login-and-register-email-label': string;
|
|
262
|
-
'pisell-login-and-register-email-placeholder': string;
|
|
263
|
-
'pisell-login-and-register-password-label': string;
|
|
264
|
-
'pisell-login-and-register-password-placeholder': string;
|
|
265
|
-
'pisell-login-and-register-email-error': string;
|
|
266
|
-
'pisell-login-and-register-email-error-valid': string;
|
|
267
|
-
'pisell-login-and-register-password-error': string;
|
|
268
|
-
'pisell-login-and-register-login': string;
|
|
269
|
-
'pisell-login-and-register-google': string;
|
|
270
|
-
'pisell-login-and-register-facebook': string;
|
|
271
|
-
'pisell-login-and-register-apple': string;
|
|
272
|
-
'pisell-login-and-register-sign-up': string;
|
|
273
|
-
'pisell-login-and-register-login-tab': string;
|
|
274
|
-
'pisell-login-and-register-register-tab': string;
|
|
275
|
-
'pisell-login-and-register-register-email-placeholder': string;
|
|
276
|
-
'pisell-login-and-register-register-password-placeholder': string;
|
|
277
|
-
'pisell-login-and-register-register-button-text': string;
|
|
278
|
-
'pisell-login-and-register-remember-me': string;
|
|
279
|
-
'pisell-login-and-register-forgot-password': string;
|
|
280
|
-
'pisell-login-and-register-register-password-error': string;
|
|
281
|
-
'pisell-login-and-register-register-password-error-valid': string;
|
|
282
|
-
'pisell2.wallet-card.add-holder-tip': string;
|
|
283
|
-
'pisell2.wallet-card.add-holder-button-text': string;
|
|
284
|
-
'pisell2.text.hardware-error.fatal': string;
|
|
285
|
-
'pisell2.text.hardware-error.critical': string;
|
|
286
|
-
'pisell2.text.hardware-error.normal': string;
|
|
287
|
-
'pisell2.text.hardware-error.info': string;
|
|
288
|
-
'pisell2.text.hardware-error.error-center': string;
|
|
289
|
-
'pisell2.text.hardware-error.error-list': string;
|
|
290
|
-
'pisell2.text.hardware-error.error-code': string;
|
|
291
|
-
'pisell2.text.hardware-error.time': string;
|
|
292
|
-
'pisell2.text.hardware-error.error-description': string;
|
|
293
|
-
'pisell2.text.hardware-error.solution': string;
|
|
294
|
-
'pisell2.text.hardware-error.info-number': string;
|
|
295
|
-
'pisell2.text.hardware-error.tip-content': string;
|
|
296
|
-
'pisell2.text.hardware-error.device.all': string;
|
|
297
|
-
'pisell2.text.hardware-error.device.printer': string;
|
|
298
|
-
'pisell2.text.hardware-error.device.barcode-scanner': string;
|
|
299
|
-
'pisell2.text.hardware-error.device.cds': string;
|
|
300
|
-
'pisell2.text.hardware-error.device.kds': string;
|
|
301
|
-
'pisell2.text.hardware-error.device.display': string;
|
|
302
|
-
'pisell2.text.hardware-error.device.card-reader': string;
|
|
303
|
-
'pisell2.text.hardware-error.device.till': string;
|
|
304
|
-
'pisell2.text.hardware-error.device.scale': string;
|
|
305
|
-
'pisell2.text.hardware-error.error-logs': string;
|
|
306
|
-
'pisell2.text.hardware-error.all-devices': string;
|
|
307
|
-
'pisell2.text.hardware-error.all-levels': string;
|
|
308
|
-
'pisell2.text.hardware-error.debug-info': string;
|
|
309
|
-
'pisell2.text.hardware-error.important-info': string;
|
|
310
|
-
'pisell2.text.hardware-error.error-info': string;
|
|
311
|
-
'pisell2.text.hardware-error.search-logs': string;
|
|
312
|
-
'pisell2.text.hardware-error.export-logs': string;
|
|
313
|
-
'pisell2.text.hardware-error.no-errors': string;
|
|
314
|
-
'pisell2.text.hardware-error.no-logs': string;
|
|
315
|
-
'pisell2.text.goodpass.product-vouchers': string;
|
|
316
|
-
'pisell2.text.goodpass.last-settlement': string;
|
|
317
|
-
'pisell2.text.goodpass.view-more': string;
|
|
318
|
-
'pisell2.text.goodpass.save': string;
|
|
319
|
-
'pisell-wallet-pass-card-status-used': string;
|
|
320
|
-
'pisell-wallet-pass-card-status-expired': string;
|
|
321
|
-
'pisell-wallet-pass-card-status-disabled': string;
|
|
322
|
-
'pisell-wallet-pass-card-status-conflict': string;
|
|
323
|
-
'pisell-wallet-pass-card-status-lastPayment': string;
|
|
324
|
-
'pisell-wallet-pass-card-reset': string;
|
|
325
|
-
'pisell-wallet-pass-card-done': string;
|
|
326
|
-
'pisell-list-tab-group-default': string;
|
|
327
|
-
'pisell-list-empty-text-default': string;
|
|
328
|
-
'pisell-list-load-more': string;
|
|
329
|
-
'pisell-list-view-less': string;
|
|
330
|
-
'pisell-list-pagination-total': (start: number, end: number, total: number) => string;
|
|
331
|
-
'pisell-list-scroll-down': string;
|
|
332
|
-
'pisell-list-scroll-right': string;
|
|
333
|
-
'pisell-list-pagination-page-of': (current: number, total: number) => string;
|
|
334
|
-
'pisell-list-pagination-previous': string;
|
|
335
|
-
'pisell-list-pagination-next': string;
|
|
336
|
-
'pisell-camera-no-camera-accessible': string;
|
|
337
|
-
'pisell-camera-permission-denied': string;
|
|
338
|
-
'pisell-camera-switch-camera': string;
|
|
339
|
-
'pisell-camera-canvas': string;
|
|
340
|
-
'pisell-camera-checking': string;
|
|
341
|
-
'pisell-camera-no-camera-desc': string;
|
|
342
|
-
'pisell-upload-camera-local-files': string;
|
|
343
|
-
'pisell-upload-camera-capture': string;
|
|
344
|
-
'pisell-upload-camera-retake': string;
|
|
345
|
-
'pisell-upload-camera-use': string;
|
|
346
|
-
'pisell-procedure-header-back-confirm-title': string;
|
|
347
|
-
'pisell-procedure-header-back-confirm-desc': string;
|
|
348
|
-
'pisell-procedure-header-back-confirm-no': string;
|
|
349
|
-
'pisell-procedure-header-back-confirm-yes': string;
|
|
350
|
-
'pisell-procedure-header-close-confirm-title': string;
|
|
351
|
-
'pisell-procedure-header-close-confirm-desc': string;
|
|
352
|
-
'pisell-procedure-header-close-confirm-no': string;
|
|
353
|
-
'pisell-procedure-header-close-confirm-yes': string;
|
|
354
|
-
};
|
|
355
|
-
export default _default;
|