@pisell/materials 1.0.1044 → 1.0.1046
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/meta.js +1 -1
- package/build/lowcode/render/default/view.js +4 -4
- package/build/lowcode/view.js +4 -4
- package/es/components/Pagination/index.js +6 -3
- package/es/components/checkbox/index.d.ts +2 -2
- package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +2 -2
- package/es/components/dataSourceComponents/fields/Input.Password/index.d.ts +2 -2
- package/es/components/dataSourceComponents/fields/Input.TextArea/index.d.ts +2 -2
- package/es/components/date-picker/index.d.ts +2 -2
- package/es/components/filter/components/FilterButton/index.js +5 -2
- package/es/components/input/index.d.ts +2 -2
- package/es/components/pisellBatchActionBar/PisellBatchActionBar.js +6 -3
- package/es/components/pisellDateTimeDisplay/utils/relativeDay.js +3 -2
- package/es/components/pisellFind/index.js +9 -1
- package/es/components/pisellRecordBoard/shellFrame/Pagination/index.js +10 -1
- package/es/components/pisellRecordBoard/shellFrame/ToolBar/index.js +4 -2
- package/es/components/pisellRecordBoard/shellFrame/ToolBarReset/index.js +4 -2
- package/es/locales/en-US.js +20 -0
- package/es/locales/index.js +2 -2
- package/es/locales/zh-CN.js +20 -0
- package/es/locales/zh-TW.js +20 -0
- package/lib/components/Pagination/index.js +6 -3
- package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +2 -2
- package/lib/components/date-picker/index.d.ts +2 -2
- package/lib/components/filter/components/FilterButton/index.js +5 -2
- package/lib/components/pisellBatchActionBar/PisellBatchActionBar.js +6 -3
- package/lib/components/pisellDataSourceContainer/components/Pagination/index.d.ts +2 -2
- package/lib/components/pisellDataSourceContainer/components/Table/index.d.ts +2 -2
- package/lib/components/pisellDateTimeDisplay/utils/relativeDay.js +2 -1
- package/lib/components/pisellFind/index.js +9 -1
- package/lib/components/pisellRecordBoard/shellFrame/Pagination/index.js +10 -1
- package/lib/components/pisellRecordBoard/shellFrame/ToolBar/index.js +4 -2
- package/lib/components/pisellRecordBoard/shellFrame/ToolBarReset/index.js +4 -2
- package/lib/components/radio/index.d.ts +2 -2
- package/lib/components/section-footers/index.d.ts +2 -2
- package/lib/components/skeleton/index.d.ts +2 -2
- package/lib/components/time-picker/index.d.ts +2 -2
- package/lib/components/upload/index.d.ts +2 -2
- package/lib/locales/en-US.js +20 -0
- package/lib/locales/index.js +2 -2
- package/lib/locales/zh-CN.js +20 -0
- package/lib/locales/zh-TW.js +20 -0
- package/package.json +2 -2
package/lib/locales/zh-CN.js
CHANGED
|
@@ -96,6 +96,26 @@ var zh_CN_default = {
|
|
|
96
96
|
"record-board-toolbar-default-filter-disabled": "禁用",
|
|
97
97
|
"record-board-toolbar-default-filter-keyword": "关键词",
|
|
98
98
|
"record-board-toolbar-default-placeholder": "请输入",
|
|
99
|
+
"pisell2.recordBoard.toolbar.find": "搜索",
|
|
100
|
+
"pisell2.recordBoard.toolbar.findPlaceholder": "请输入搜索内容",
|
|
101
|
+
"pisell2.recordBoard.toolbar.sort": "排序",
|
|
102
|
+
"pisell2.recordBoard.toolbar.filter": "筛选",
|
|
103
|
+
"pisell2.recordBoard.toolbar.reset": "重置",
|
|
104
|
+
"pisell2.salesManagement.pagination.previous": "上一页",
|
|
105
|
+
"pisell2.salesManagement.pagination.next": "下一页",
|
|
106
|
+
"pisell2.salesManagement.pagination.showTotal": (start, end) => `第 ${start}-${end} 条`,
|
|
107
|
+
"pisell2.salesManagement.pagination.total": (current, max) => `${current} / ${max}`,
|
|
108
|
+
"pisell2.salesManagement.batchActionBar.selectedCount": (count) => `已选择 ${count} 项`,
|
|
109
|
+
"pisell2.salesManagement.batchActionBar.more": "更多",
|
|
110
|
+
"pisell2.salesManagement.batchActionBar.selectAll": "全选",
|
|
111
|
+
"pisell2.salesManagement.batchActionBar.invert": "反选",
|
|
112
|
+
"pisell2.salesManagement.batchActionBar.clear": "取消选择",
|
|
113
|
+
"pisell2.salesManagement.batchActionBar.delete": "删除",
|
|
114
|
+
"pisell2.salesManagement.batchActionBar.confirmTitle": "确认操作",
|
|
115
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmTitle": "确认删除",
|
|
116
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmContent": (count) => `确定要删除选中的 ${count} 项吗?`,
|
|
117
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmOk": "确定",
|
|
118
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmCancel": "取消",
|
|
99
119
|
"shell-frame-statistic-expand": "展开统计",
|
|
100
120
|
"shell-frame-statistic-collapse": "收起统计",
|
|
101
121
|
"table-action-export-import-export-success": "导出成功!",
|
package/lib/locales/zh-TW.js
CHANGED
|
@@ -96,6 +96,26 @@ var zh_TW_default = {
|
|
|
96
96
|
"record-board-toolbar-default-filter-disabled": "禁用",
|
|
97
97
|
"record-board-toolbar-default-filter-keyword": "關鍵詞",
|
|
98
98
|
"record-board-toolbar-default-placeholder": "請輸入",
|
|
99
|
+
"pisell2.recordBoard.toolbar.find": "搜尋",
|
|
100
|
+
"pisell2.recordBoard.toolbar.findPlaceholder": "請輸入搜尋內容",
|
|
101
|
+
"pisell2.recordBoard.toolbar.sort": "排序",
|
|
102
|
+
"pisell2.recordBoard.toolbar.filter": "篩選",
|
|
103
|
+
"pisell2.recordBoard.toolbar.reset": "重置",
|
|
104
|
+
"pisell2.salesManagement.pagination.previous": "上一頁",
|
|
105
|
+
"pisell2.salesManagement.pagination.next": "下一頁",
|
|
106
|
+
"pisell2.salesManagement.pagination.showTotal": (start, end) => `第 ${start}-${end} 條`,
|
|
107
|
+
"pisell2.salesManagement.pagination.total": (current, max) => `${current} / ${max}`,
|
|
108
|
+
"pisell2.salesManagement.batchActionBar.selectedCount": (count) => `已選擇 ${count} 項`,
|
|
109
|
+
"pisell2.salesManagement.batchActionBar.more": "更多",
|
|
110
|
+
"pisell2.salesManagement.batchActionBar.selectAll": "全選",
|
|
111
|
+
"pisell2.salesManagement.batchActionBar.invert": "反選",
|
|
112
|
+
"pisell2.salesManagement.batchActionBar.clear": "取消選擇",
|
|
113
|
+
"pisell2.salesManagement.batchActionBar.delete": "刪除",
|
|
114
|
+
"pisell2.salesManagement.batchActionBar.confirmTitle": "確認操作",
|
|
115
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmTitle": "確認刪除",
|
|
116
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmContent": (count) => `確定要刪除選中的 ${count} 項嗎?`,
|
|
117
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmOk": "確定",
|
|
118
|
+
"pisell2.salesManagement.batchActionBar.deleteConfirmCancel": "取消",
|
|
99
119
|
"shell-frame-statistic-expand": "展開統計",
|
|
100
120
|
"shell-frame-statistic-collapse": "收起統計",
|
|
101
121
|
"table-action-export-import-export-success": "導出成功!",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/materials",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1046",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
"swiper": "^8.4.7",
|
|
90
90
|
"antd-mobile": "^5.38.1",
|
|
91
91
|
"vod-js-sdk-v6": "^1.4.11",
|
|
92
|
-
"@pisell/utils": "1.0.61",
|
|
93
92
|
"@pisell/date-picker": "1.0.134",
|
|
93
|
+
"@pisell/utils": "1.0.61",
|
|
94
94
|
"@pisell/icon": "0.0.10"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|