@pisell/materials 2.2.1 → 2.2.3
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 +2 -2
- package/build/lowcode/preview.js +142 -142
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +20 -20
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +20 -20
- package/es/components/Pagination/index.d.ts +1 -1
- package/es/components/page/index.js +12 -8
- package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.js +1 -1
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.js +143 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.js +87 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.js +41 -0
- package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.js +97 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.js +137 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.js +149 -0
- package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -0
- package/es/components/table/Actions/component/ExportImport/index.d.ts +8 -0
- package/es/components/table/Actions/component/ExportImport/index.js +232 -0
- package/es/components/table/Actions/component/ExportImport/index.less +194 -0
- package/es/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -0
- package/es/components/table/Actions/component/ExportImport/utils/date.js +19 -0
- package/es/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -0
- package/es/components/table/Actions/component/ExportImport/utils/download.js +39 -0
- package/es/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -0
- package/es/components/table/Actions/component/ExportImport/utils/file.js +21 -0
- package/es/components/table/Actions/index.d.ts +3 -2
- package/es/components/table/Actions/index.js +12 -8
- package/es/components/table/BasicTable/index.js +11 -1
- package/es/components/table/Table/index.js +17 -2
- package/es/components/table/Table/utils.d.ts +11 -2
- package/es/components/table/Table/utils.js +5 -1
- package/es/components/table/hooks/useGenScroll.d.ts +1 -0
- package/es/components/table/hooks/useGenScroll.js +4 -3
- package/es/components/table/hooks/useTableSetting.d.ts +2 -1
- package/es/components/table/hooks/useTableSetting.js +2 -1
- package/es/components/table/index.js +15 -13
- package/es/components/table/model.d.ts +2 -0
- package/es/components/table/model.js +15 -1
- package/es/components/table/serve.d.ts +11 -0
- package/es/components/table/serve.js +38 -0
- package/es/components/table/status.d.ts +19 -0
- package/es/components/table/status.js +26 -0
- package/es/components/table/types.d.ts +20 -0
- package/es/components/table/utils.d.ts +15 -0
- package/es/components/table/utils.js +26 -0
- package/es/components/virtual-keyboard/VirtualKeyInput/index.js +1 -1
- package/es/locales/en-US.d.ts +47 -0
- package/es/locales/en-US.js +60 -1
- package/es/locales/zh-CN.d.ts +47 -0
- package/es/locales/zh-CN.js +60 -1
- package/es/locales/zh-TW.d.ts +47 -0
- package/es/locales/zh-TW.js +60 -1
- package/lib/components/Pagination/index.d.ts +1 -1
- package/lib/components/page/index.js +6 -6
- package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.js +1 -1
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.js +150 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.js +78 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.js +60 -0
- package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.js +117 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.js +141 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.js +124 -0
- package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -0
- package/lib/components/table/Actions/component/ExportImport/index.d.ts +8 -0
- package/lib/components/table/Actions/component/ExportImport/index.js +210 -0
- package/lib/components/table/Actions/component/ExportImport/index.less +194 -0
- package/lib/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -0
- package/lib/components/table/Actions/component/ExportImport/utils/date.js +49 -0
- package/lib/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -0
- package/lib/components/table/Actions/component/ExportImport/utils/download.js +62 -0
- package/lib/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -0
- package/lib/components/table/Actions/component/ExportImport/utils/file.js +55 -0
- package/lib/components/table/Actions/index.d.ts +3 -2
- package/lib/components/table/Actions/index.js +11 -7
- package/lib/components/table/BasicTable/index.js +9 -0
- package/lib/components/table/Table/index.js +28 -3
- package/lib/components/table/Table/utils.d.ts +11 -2
- package/lib/components/table/Table/utils.js +4 -1
- package/lib/components/table/hooks/useGenScroll.d.ts +1 -0
- package/lib/components/table/hooks/useGenScroll.js +3 -3
- package/lib/components/table/hooks/useTableSetting.d.ts +2 -1
- package/lib/components/table/hooks/useTableSetting.js +2 -1
- package/lib/components/table/index.js +14 -12
- package/lib/components/table/model.d.ts +2 -0
- package/lib/components/table/model.js +11 -1
- package/lib/components/table/serve.d.ts +11 -0
- package/lib/components/table/serve.js +41 -0
- package/lib/components/table/status.d.ts +19 -0
- package/lib/components/table/status.js +55 -0
- package/lib/components/table/types.d.ts +20 -0
- package/lib/components/table/utils.d.ts +15 -0
- package/lib/components/table/utils.js +40 -0
- package/lib/components/virtual-keyboard/VirtualKeyInput/index.js +2 -2
- package/lib/locales/en-US.d.ts +47 -0
- package/lib/locales/en-US.js +52 -1
- package/lib/locales/zh-CN.d.ts +47 -0
- package/lib/locales/zh-CN.js +52 -1
- package/lib/locales/zh-TW.d.ts +47 -0
- package/lib/locales/zh-TW.js +52 -1
- package/lowcode/button/meta.ts +10 -5
- package/lowcode/list/meta.ts +6 -6
- package/lowcode/select-time/meta.ts +8 -8
- package/lowcode/table/meta.ts +84 -1
- package/lowcode/table/snippets.ts +8 -0
- package/package.json +4 -4
- package/dist/umd/materials.min.css +0 -1
- package/dist/umd/materials.min.js +0 -1
- package/dist/umd/static/DotsSix.57d66266.svg +0 -1
- package/dist/umd/static/arrow-left.e542294f.svg +0 -1
- package/dist/umd/static/arrow-right.763f03e0.svg +0 -1
- package/dist/umd/static/filter-lines.04a54ae9.svg +0 -1
- package/dist/umd/static/help-circle.31c9be40.svg +0 -1
- package/dist/umd/static/switch-vertical-01.7ebe3ba8.svg +0 -1
package/lib/locales/zh-CN.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const _default: {
|
|
|
26
26
|
"table-action-group-by-title-tip": string;
|
|
27
27
|
"table-action-column-title": string;
|
|
28
28
|
"table-column-group-records": string;
|
|
29
|
+
"table-column-group-lock-tip": string;
|
|
29
30
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
31
|
"table-action-filter-no-filter": string;
|
|
31
32
|
"table-action-range-picker-presets-today": string;
|
|
@@ -49,5 +50,51 @@ declare const _default: {
|
|
|
49
50
|
'batch-editor-what-price': string;
|
|
50
51
|
'batch-editor-quick-edit-title': (product: string, num: string) => string;
|
|
51
52
|
'batch-editor-quick-edit-title-2': (product: string) => string;
|
|
53
|
+
'table-action-export-import-export-success': string;
|
|
54
|
+
'table-action-export-import-button': string;
|
|
55
|
+
'table-action-export-import-export-range': string;
|
|
56
|
+
'table-action-export-import-current-page': string;
|
|
57
|
+
'table-action-export-import-all-records': string;
|
|
58
|
+
'table-action-export-import-selected-records': string;
|
|
59
|
+
'table-action-export-import-selected': string;
|
|
60
|
+
'table-action-export-import-item': (length: number) => string;
|
|
61
|
+
'table-action-export-import-product': string;
|
|
62
|
+
'table-action-export-import-table-text-input-title': string;
|
|
63
|
+
'table-action-export-import-table-text-input-describe': string;
|
|
64
|
+
'table-action-export-import-table-error-file': string;
|
|
65
|
+
'table-action-export-import-import-success': string;
|
|
66
|
+
'table-action-export-import-import-phone': string;
|
|
67
|
+
'table-action-export-import-table-success-download': string;
|
|
68
|
+
'table-action-export-import-table-textimport-product': string;
|
|
69
|
+
'table-action-export-import-table-text-product-template': string;
|
|
70
|
+
'table-action-export-import-table-text-click-download': string;
|
|
71
|
+
'table-action-export-import-table-text-edit-file': string;
|
|
72
|
+
'table-action-export-import-button-import': string;
|
|
73
|
+
'table-action-export-import-cancel': string;
|
|
74
|
+
'table-action-export-import-file-completed': string;
|
|
75
|
+
'table-action-export-import-file-processing': string;
|
|
76
|
+
'table-action-export-import-file-pending': string;
|
|
77
|
+
'table-action-export-import-file-refresh': string;
|
|
78
|
+
'table-action-export-import-export-title': string;
|
|
79
|
+
'table-action-export-import-file-hint': string;
|
|
80
|
+
'table-action-export-import-file-name': string;
|
|
81
|
+
'table-action-export-import-file-content': string;
|
|
82
|
+
'table-action-export-import-file-content-all': string;
|
|
83
|
+
'table-action-export-import-file-content-part': string;
|
|
84
|
+
'table-action-export-import-file-status': string;
|
|
85
|
+
'table-action-export-import-file-account': string;
|
|
86
|
+
'table-action-export-import-file-created': string;
|
|
87
|
+
'table-action-export-import-file-record': (length: number) => string;
|
|
88
|
+
'table-action-export-import-import-title': string;
|
|
89
|
+
'table-action-export-import-log-hint': string;
|
|
90
|
+
'table-action-export-import-log-name': string;
|
|
91
|
+
'table-action-export-import-log-result': string;
|
|
92
|
+
'table-action-export-import-log-ok': (num: number) => string;
|
|
93
|
+
'table-action-export-import-log-err': (num: number) => string;
|
|
94
|
+
'table-action-export-import-log-check': string;
|
|
95
|
+
'table-action-export-import-log-detail-title': string;
|
|
96
|
+
'table-action-export-import-log-err-log': string;
|
|
97
|
+
'table-action-export-import-log-copy': string;
|
|
98
|
+
'table-action-export-import-table-success-copy': string;
|
|
52
99
|
};
|
|
53
100
|
export default _default;
|
package/lib/locales/zh-CN.js
CHANGED
|
@@ -50,6 +50,7 @@ var zh_CN_default = {
|
|
|
50
50
|
"table-action-group-by-title-tip": "请从下拉菜单中选择要分组的字段,以便更好地组织和浏览数据。",
|
|
51
51
|
"table-action-column-title": "表头设置",
|
|
52
52
|
"table-column-group-records": "条记录",
|
|
53
|
+
"table-column-group-lock-tip": "固定列不可移动顺序",
|
|
53
54
|
"table-column-drag-sort-disabled-tip": "已开启自动排序,无法手动拖拽",
|
|
54
55
|
"table-action-filter-no-filter": "没有可用的筛选器。",
|
|
55
56
|
"table-action-range-picker-presets-today": "今天",
|
|
@@ -72,5 +73,55 @@ var zh_CN_default = {
|
|
|
72
73
|
"batch-editor-quick-edit": "快速编辑",
|
|
73
74
|
"batch-editor-what-price": "什么价格",
|
|
74
75
|
"batch-editor-quick-edit-title": (product, num) => `您已选择 ${product} 等${num}件商品`,
|
|
75
|
-
"batch-editor-quick-edit-title-2": (product) => `您已选择 ${product}
|
|
76
|
+
"batch-editor-quick-edit-title-2": (product) => `您已选择 ${product}`,
|
|
77
|
+
// 导出
|
|
78
|
+
"table-action-export-import-export-success": "导出成功!",
|
|
79
|
+
"table-action-export-import-button": "导出",
|
|
80
|
+
"table-action-export-import-export-range": "导出范围",
|
|
81
|
+
"table-action-export-import-current-page": "当前页面",
|
|
82
|
+
"table-action-export-import-all-records": "所有记录",
|
|
83
|
+
"table-action-export-import-selected-records": "所选记录",
|
|
84
|
+
"table-action-export-import-selected": "已选",
|
|
85
|
+
"table-action-export-import-item": (length) => `${length} 条`,
|
|
86
|
+
"table-action-export-import-product": "导出商品",
|
|
87
|
+
// 导入
|
|
88
|
+
"table-action-export-import-table-text-input-title": "单击或拖动文件到该区域进行上传",
|
|
89
|
+
"table-action-export-import-table-text-input-describe": "支持单个上传。严禁上传公司数据或其他band文件。",
|
|
90
|
+
"table-action-export-import-table-error-file": "仅支持上传.csv,.xls,.xlsx格式的文件!",
|
|
91
|
+
"table-action-export-import-import-success": "导入成功!",
|
|
92
|
+
"table-action-export-import-import-phone": "手机相同的是否覆盖",
|
|
93
|
+
"table-action-export-import-table-success-download": "下载成功",
|
|
94
|
+
"table-action-export-import-table-textimport-product": "导入商品",
|
|
95
|
+
"table-action-export-import-table-text-product-template": "导入模板",
|
|
96
|
+
"table-action-export-import-table-text-click-download": "点击下载",
|
|
97
|
+
"table-action-export-import-table-text-edit-file": "替换文件",
|
|
98
|
+
"table-action-export-import-button-import": "导入",
|
|
99
|
+
"table-action-export-import-cancel": "取消",
|
|
100
|
+
"table-action-export-import-file-completed": "已完成",
|
|
101
|
+
"table-action-export-import-file-processing": "处理中",
|
|
102
|
+
"table-action-export-import-file-pending": "待处理",
|
|
103
|
+
"table-action-export-import-file-refresh": "刷新",
|
|
104
|
+
"table-action-export-import-export-title": "导出文件",
|
|
105
|
+
"table-action-export-import-file-hint": "仅显示最近的10次导出记录",
|
|
106
|
+
"table-action-export-import-file-name": "导出文件",
|
|
107
|
+
"table-action-export-import-file-content": "导出内容",
|
|
108
|
+
"table-action-export-import-file-content-all": "所有",
|
|
109
|
+
"table-action-export-import-file-content-part": "所选",
|
|
110
|
+
"table-action-export-import-file-status": "状态",
|
|
111
|
+
"table-action-export-import-file-account": "操作人",
|
|
112
|
+
"table-action-export-import-file-created": "操作时间",
|
|
113
|
+
"table-action-export-import-file-record": (length) => `${length} 条记录`,
|
|
114
|
+
// 导入日志
|
|
115
|
+
"table-action-export-import-import-title": "导入日志",
|
|
116
|
+
"table-action-export-import-log-hint": "仅显示最近的10次导入记录",
|
|
117
|
+
"table-action-export-import-log-name": "导入文件",
|
|
118
|
+
"table-action-export-import-log-result": "导入结果",
|
|
119
|
+
"table-action-export-import-log-ok": (num) => `成功 ${num} 条`,
|
|
120
|
+
"table-action-export-import-log-err": (num) => `, 失败 ${num} 条`,
|
|
121
|
+
"table-action-export-import-log-check": `查看原因`,
|
|
122
|
+
// 导入详情
|
|
123
|
+
"table-action-export-import-log-detail-title": "导入详情",
|
|
124
|
+
"table-action-export-import-log-err-log": "失败日志",
|
|
125
|
+
"table-action-export-import-log-copy": "复制",
|
|
126
|
+
"table-action-export-import-table-success-copy": "复制成功"
|
|
76
127
|
};
|
package/lib/locales/zh-TW.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const _default: {
|
|
|
26
26
|
"table-action-group-by-title-tip": string;
|
|
27
27
|
"table-action-column-title": string;
|
|
28
28
|
"table-column-group-records": string;
|
|
29
|
+
"table-column-group-lock-tip": string;
|
|
29
30
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
31
|
"table-action-filter-no-filter": string;
|
|
31
32
|
"table-action-range-picker-presets-today": string;
|
|
@@ -49,5 +50,51 @@ declare const _default: {
|
|
|
49
50
|
'batch-editor-quick-edit': string;
|
|
50
51
|
'batch-editor-quick-edit-title': (product: string, num: string) => string;
|
|
51
52
|
'batch-editor-quick-edit-title-2': (product: string) => string;
|
|
53
|
+
'table-action-export-import-export-success': string;
|
|
54
|
+
'table-action-export-import-button': string;
|
|
55
|
+
'table-action-export-import-export-range': string;
|
|
56
|
+
'table-action-export-import-current-page': string;
|
|
57
|
+
'table-action-export-import-all-records': string;
|
|
58
|
+
'table-action-export-import-selected-records': string;
|
|
59
|
+
'table-action-export-import-selected': string;
|
|
60
|
+
'table-action-export-import-item': (length: number) => string;
|
|
61
|
+
'table-action-export-import-product': string;
|
|
62
|
+
'table-action-export-import-table-text-input-title': string;
|
|
63
|
+
'table-action-export-import-table-text-input-describe': string;
|
|
64
|
+
'table-action-export-import-table-error-file': string;
|
|
65
|
+
'table-action-export-import-import-success': string;
|
|
66
|
+
'table-action-export-import-import-phone': string;
|
|
67
|
+
'table-action-export-import-table-success-download': string;
|
|
68
|
+
'table-action-export-import-table-textimport-product': string;
|
|
69
|
+
'table-action-export-import-table-text-product-template': string;
|
|
70
|
+
'table-action-export-import-table-text-click-download': string;
|
|
71
|
+
'table-action-export-import-table-text-edit-file': string;
|
|
72
|
+
'table-action-export-import-button-import': string;
|
|
73
|
+
'table-action-export-import-cancel': string;
|
|
74
|
+
'table-action-export-import-file-completed': string;
|
|
75
|
+
'table-action-export-import-file-processing': string;
|
|
76
|
+
'table-action-export-import-file-pending': string;
|
|
77
|
+
'table-action-export-import-file-refresh': string;
|
|
78
|
+
'table-action-export-import-export-title': string;
|
|
79
|
+
'table-action-export-import-file-hint': string;
|
|
80
|
+
'table-action-export-import-file-name': string;
|
|
81
|
+
'table-action-export-import-file-content': string;
|
|
82
|
+
'table-action-export-import-file-content-all': string;
|
|
83
|
+
'table-action-export-import-file-content-part': string;
|
|
84
|
+
'table-action-export-import-file-status': string;
|
|
85
|
+
'table-action-export-import-file-account': string;
|
|
86
|
+
'table-action-export-import-file-created': string;
|
|
87
|
+
'table-action-export-import-file-record': (length: number) => string;
|
|
88
|
+
'table-action-export-import-import-title': string;
|
|
89
|
+
'table-action-export-import-log-hint': string;
|
|
90
|
+
'table-action-export-import-log-name': string;
|
|
91
|
+
'table-action-export-import-log-result': string;
|
|
92
|
+
'table-action-export-import-log-ok': (num: number) => string;
|
|
93
|
+
'table-action-export-import-log-err': (num: number) => string;
|
|
94
|
+
'table-action-export-import-log-check': string;
|
|
95
|
+
'table-action-export-import-log-detail-title': string;
|
|
96
|
+
'table-action-export-import-log-err-log': string;
|
|
97
|
+
'table-action-export-import-log-copy': string;
|
|
98
|
+
'table-action-export-import-table-success-copy': string;
|
|
52
99
|
};
|
|
53
100
|
export default _default;
|
package/lib/locales/zh-TW.js
CHANGED
|
@@ -50,6 +50,7 @@ var zh_TW_default = {
|
|
|
50
50
|
"table-action-group-by-title-tip": "請從下拉式選單中選擇要分組的字段,以便更好地組織和瀏覽數據。",
|
|
51
51
|
"table-action-column-title": "表頭設置",
|
|
52
52
|
"table-column-group-records": "條記錄",
|
|
53
|
+
"table-column-group-lock-tip": "固定列不可移動順序",
|
|
53
54
|
"table-column-drag-sort-disabled-tip": "已開啟自動排序,無法手動拖曳",
|
|
54
55
|
"table-action-filter-no-filter": "沒有可用的篩選器。",
|
|
55
56
|
"table-action-range-picker-presets-today": "今天",
|
|
@@ -72,5 +73,55 @@ var zh_TW_default = {
|
|
|
72
73
|
"batch-editor-what-price": "什麼價格",
|
|
73
74
|
"batch-editor-quick-edit": "快速編輯",
|
|
74
75
|
"batch-editor-quick-edit-title": (product, num) => `您已選擇 ${product} 等${num}件產品`,
|
|
75
|
-
"batch-editor-quick-edit-title-2": (product) => `您已選擇 ${product}
|
|
76
|
+
"batch-editor-quick-edit-title-2": (product) => `您已選擇 ${product}`,
|
|
77
|
+
// 导出
|
|
78
|
+
"table-action-export-import-export-success": "導出成功!",
|
|
79
|
+
"table-action-export-import-button": "匯出",
|
|
80
|
+
"table-action-export-import-export-range": "導出範圍",
|
|
81
|
+
"table-action-export-import-current-page": "當前頁面",
|
|
82
|
+
"table-action-export-import-all-records": "所有記錄",
|
|
83
|
+
"table-action-export-import-selected-records": "所選記錄",
|
|
84
|
+
"table-action-export-import-selected": "已選",
|
|
85
|
+
"table-action-export-import-item": (length) => `${length} 條`,
|
|
86
|
+
"table-action-export-import-product": "導出商品",
|
|
87
|
+
// 导入
|
|
88
|
+
"table-action-export-import-table-text-input-title": "單擊或拖動文件到該區域進行上傳",
|
|
89
|
+
"table-action-export-import-table-text-input-describe": "支持單個上傳。嚴禁上傳公司數據或其他band文件。",
|
|
90
|
+
"table-action-export-import-table-error-file": "僅支持上傳.csv,.xls,.xlsx格式的文件!",
|
|
91
|
+
"table-action-export-import-import-success": "導入成功!",
|
|
92
|
+
"table-action-export-import-import-phone": "手機相同的是否覆蓋",
|
|
93
|
+
"table-action-export-import-table-success-download": "下載成功",
|
|
94
|
+
"table-action-export-import-table-textimport-product": "導入商品",
|
|
95
|
+
"table-action-export-import-table-text-product-template": "導入模板",
|
|
96
|
+
"table-action-export-import-table-text-click-download": "點擊下載",
|
|
97
|
+
"table-action-export-import-table-text-edit-file": "替換文件",
|
|
98
|
+
"table-action-export-import-button-import": "導入",
|
|
99
|
+
"table-action-export-import-cancel": "取消",
|
|
100
|
+
"table-action-export-import-file-completed": "已完成",
|
|
101
|
+
"table-action-export-import-file-processing": "處理中",
|
|
102
|
+
"table-action-export-import-file-pending": "待處理",
|
|
103
|
+
"table-action-export-import-file-refresh": "刷新",
|
|
104
|
+
"table-action-export-import-export-title": "導出文件",
|
|
105
|
+
"table-action-export-import-file-hint": "僅顯示最近的10次導出記錄",
|
|
106
|
+
"table-action-export-import-file-name": "導出文件",
|
|
107
|
+
"table-action-export-import-file-content": "導出內容",
|
|
108
|
+
"table-action-export-import-file-content-all": "所有",
|
|
109
|
+
"table-action-export-import-file-content-part": "所選",
|
|
110
|
+
"table-action-export-import-file-status": "狀態",
|
|
111
|
+
"table-action-export-import-file-account": "操作人",
|
|
112
|
+
"table-action-export-import-file-created": "操作時間",
|
|
113
|
+
"table-action-export-import-file-record": (length) => `${length} 條記錄`,
|
|
114
|
+
// 导入日志
|
|
115
|
+
"table-action-export-import-import-title": "導入日誌",
|
|
116
|
+
"table-action-export-import-log-hint": "僅顯示最近的10次導入記錄",
|
|
117
|
+
"table-action-export-import-log-name": "導入文件",
|
|
118
|
+
"table-action-export-import-log-result": "導入結果",
|
|
119
|
+
"table-action-export-import-log-ok": (num) => `成功 ${num} 條`,
|
|
120
|
+
"table-action-export-import-log-err": (num) => `, 失败 ${num} 條`,
|
|
121
|
+
"table-action-export-import-log-check": `查看原因`,
|
|
122
|
+
// 导入详情
|
|
123
|
+
"table-action-export-import-log-detail-title": "導入詳情",
|
|
124
|
+
"table-action-export-import-log-err-log": "失敗日誌",
|
|
125
|
+
"table-action-export-import-log-copy": "復製",
|
|
126
|
+
"table-action-export-import-table-success-copy": "復製成功"
|
|
76
127
|
};
|
package/lowcode/button/meta.ts
CHANGED
|
@@ -200,7 +200,7 @@ const ButtonMeta: ComponentMetadata = {
|
|
|
200
200
|
},
|
|
201
201
|
propType: {
|
|
202
202
|
type: "oneOf",
|
|
203
|
-
value: ["primary", "ghost", "dashed", "danger", "link", "text"],
|
|
203
|
+
value: ["primary", "default", "ghost", "dashed", "danger", "link", "text"],
|
|
204
204
|
},
|
|
205
205
|
setter: [
|
|
206
206
|
{
|
|
@@ -211,6 +211,10 @@ const ButtonMeta: ComponentMetadata = {
|
|
|
211
211
|
title: "primary button",
|
|
212
212
|
value: "primary",
|
|
213
213
|
},
|
|
214
|
+
{
|
|
215
|
+
title: "default button",
|
|
216
|
+
value: "default",
|
|
217
|
+
},
|
|
214
218
|
{
|
|
215
219
|
title: "dashed button",
|
|
216
220
|
value: "dashed",
|
|
@@ -220,7 +224,7 @@ const ButtonMeta: ComponentMetadata = {
|
|
|
220
224
|
value: "danger",
|
|
221
225
|
},
|
|
222
226
|
{
|
|
223
|
-
title: "link
|
|
227
|
+
title: "link button",
|
|
224
228
|
value: "link",
|
|
225
229
|
},
|
|
226
230
|
{
|
|
@@ -305,8 +309,8 @@ const ButtonMeta: ComponentMetadata = {
|
|
|
305
309
|
},
|
|
306
310
|
tip: "icon | Set the icon component of the button",
|
|
307
311
|
},
|
|
308
|
-
propType: "node",
|
|
309
|
-
setter: {
|
|
312
|
+
propType: { type: "oneOfType", value: ["node"] },
|
|
313
|
+
setter: [{
|
|
310
314
|
componentName: "SlotSetter",
|
|
311
315
|
initialValue: {
|
|
312
316
|
type: "JSSlot",
|
|
@@ -322,7 +326,8 @@ const ButtonMeta: ComponentMetadata = {
|
|
|
322
326
|
},
|
|
323
327
|
],
|
|
324
328
|
},
|
|
325
|
-
|
|
329
|
+
defaultValue: null
|
|
330
|
+
}],
|
|
326
331
|
},
|
|
327
332
|
{
|
|
328
333
|
name: "block",
|
package/lowcode/list/meta.ts
CHANGED
|
@@ -575,7 +575,7 @@ export default {
|
|
|
575
575
|
tip: 'header | 列表头部',
|
|
576
576
|
},
|
|
577
577
|
propType: 'node',
|
|
578
|
-
setter: {
|
|
578
|
+
setter: [{
|
|
579
579
|
componentName: 'SlotSetter',
|
|
580
580
|
initialValue: {
|
|
581
581
|
type: 'JSSlot',
|
|
@@ -588,7 +588,7 @@ export default {
|
|
|
588
588
|
},
|
|
589
589
|
],
|
|
590
590
|
},
|
|
591
|
-
},
|
|
591
|
+
}],
|
|
592
592
|
},
|
|
593
593
|
{
|
|
594
594
|
name: 'footer',
|
|
@@ -597,7 +597,7 @@ export default {
|
|
|
597
597
|
tip: 'footer | 列表底部',
|
|
598
598
|
},
|
|
599
599
|
propType: 'node',
|
|
600
|
-
setter: {
|
|
600
|
+
setter: [{
|
|
601
601
|
componentName: 'SlotSetter',
|
|
602
602
|
initialValue: {
|
|
603
603
|
type: 'JSSlot',
|
|
@@ -610,7 +610,7 @@ export default {
|
|
|
610
610
|
},
|
|
611
611
|
],
|
|
612
612
|
},
|
|
613
|
-
},
|
|
613
|
+
}],
|
|
614
614
|
},
|
|
615
615
|
{
|
|
616
616
|
name: 'loadMore',
|
|
@@ -619,7 +619,7 @@ export default {
|
|
|
619
619
|
tip: 'loadMore | 加载更多',
|
|
620
620
|
},
|
|
621
621
|
propType: 'node',
|
|
622
|
-
setter: {
|
|
622
|
+
setter: [{
|
|
623
623
|
componentName: 'SlotSetter',
|
|
624
624
|
initialValue: {
|
|
625
625
|
type: 'JSSlot',
|
|
@@ -632,7 +632,7 @@ export default {
|
|
|
632
632
|
},
|
|
633
633
|
],
|
|
634
634
|
},
|
|
635
|
-
},
|
|
635
|
+
}],
|
|
636
636
|
},
|
|
637
637
|
],
|
|
638
638
|
},
|
|
@@ -22,23 +22,23 @@ const SelectTimeMeta: ComponentMetadata = {
|
|
|
22
22
|
setter: ["JsonSetter", "VariableSetter"],
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
|
-
title: "
|
|
26
|
-
name: "
|
|
25
|
+
title: "弹层的配置项",
|
|
26
|
+
name: "popoverProps",
|
|
27
27
|
setter: ["JsonSetter", "VariableSetter"],
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
title: "
|
|
31
|
-
name: "
|
|
30
|
+
title: "虚拟键盘的配置项",
|
|
31
|
+
name: "timePickerProps",
|
|
32
32
|
setter: ["JsonSetter", "VariableSetter"],
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
title: "
|
|
36
|
-
name: "
|
|
35
|
+
title: "时间input框的配置项",
|
|
36
|
+
name: "timeProps",
|
|
37
37
|
setter: ["JsonSetter", "VariableSetter"],
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
title: "
|
|
41
|
-
name: "
|
|
40
|
+
title: "时间切片",
|
|
41
|
+
name: "slice",
|
|
42
42
|
setter: ["JsonSetter", "VariableSetter"],
|
|
43
43
|
},
|
|
44
44
|
],
|
package/lowcode/table/meta.ts
CHANGED
|
@@ -1690,7 +1690,7 @@ export default {
|
|
|
1690
1690
|
componentName: "SelectSetter",
|
|
1691
1691
|
mode: "single",
|
|
1692
1692
|
props: (target) => {
|
|
1693
|
-
console.log(target.parent.parent.parent,this,'target.parent.parent.parent\n' +
|
|
1693
|
+
console.log(target.parent.parent.parent, this, 'target.parent.parent.parent\n' +
|
|
1694
1694
|
' .getPropValue("columns")')
|
|
1695
1695
|
const fieldsKey = target.parent.parent.parent
|
|
1696
1696
|
.getPropValue("filter.list")
|
|
@@ -2028,6 +2028,69 @@ export default {
|
|
|
2028
2028
|
},
|
|
2029
2029
|
],
|
|
2030
2030
|
},
|
|
2031
|
+
{
|
|
2032
|
+
title: { label: "导入导出", tip: "表单的导入导出" },
|
|
2033
|
+
display: "block",
|
|
2034
|
+
type: "group",
|
|
2035
|
+
items: [
|
|
2036
|
+
{
|
|
2037
|
+
name: "exportImport.show",
|
|
2038
|
+
title: { label: "开启导入导出", tip: "开启表单的导入导出" },
|
|
2039
|
+
propType: "bool",
|
|
2040
|
+
setter: "BoolSetter",
|
|
2041
|
+
defaultValue: false,
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
name: "exportImport.formId",
|
|
2045
|
+
title: { label: "表单ID", tip: "表单ID" },
|
|
2046
|
+
propType: "string",
|
|
2047
|
+
setter: "StringSetter",
|
|
2048
|
+
condition: {
|
|
2049
|
+
type: "JSFunction",
|
|
2050
|
+
value: 'target => !!target.getProps().getPropValue("exportImport.show")',
|
|
2051
|
+
},
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
name: "exportImport.formCode",
|
|
2055
|
+
title: { label: "表单Code", tip: "表单Code|表单的唯一标识" },
|
|
2056
|
+
propType: "string",
|
|
2057
|
+
setter: "StringSetter",
|
|
2058
|
+
condition: {
|
|
2059
|
+
type: "JSFunction",
|
|
2060
|
+
value: 'target => !!target.getProps().getPropValue("exportImport.show")',
|
|
2061
|
+
},
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
name: "exportImport.title",
|
|
2065
|
+
title: { label: "标题", tip: "打开弹窗的标题" },
|
|
2066
|
+
propType: "string",
|
|
2067
|
+
setter: "PisellI18nSetter",
|
|
2068
|
+
condition: {
|
|
2069
|
+
type: "JSFunction",
|
|
2070
|
+
value: 'target => !!target.getProps().getPropValue("exportImport.show")',
|
|
2071
|
+
},
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
name: "exportImport.templateFileUrl",
|
|
2075
|
+
title: { label: "导入模版链接", tip: "导入模版链接" },
|
|
2076
|
+
propType: "string",
|
|
2077
|
+
setter: "StringSetter",
|
|
2078
|
+
condition: {
|
|
2079
|
+
type: "JSFunction",
|
|
2080
|
+
value: 'target => !!target.getProps().getPropValue("exportImport.show")',
|
|
2081
|
+
},
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
name: "exportImport.selectLists",
|
|
2085
|
+
title: { label: "当前所选项", tip: "当前所选择的需要导出的哪些数据" },
|
|
2086
|
+
setter: "ObjectSetter",
|
|
2087
|
+
condition: {
|
|
2088
|
+
type: "JSFunction",
|
|
2089
|
+
value: 'target => !!target.getProps().getPropValue("exportImport.show")',
|
|
2090
|
+
},
|
|
2091
|
+
},
|
|
2092
|
+
],
|
|
2093
|
+
},
|
|
2031
2094
|
{
|
|
2032
2095
|
name: "buttons",
|
|
2033
2096
|
title: { label: "标题按钮组", tip: "标题右侧按钮项" },
|
|
@@ -2193,6 +2256,26 @@ export default {
|
|
|
2193
2256
|
template:
|
|
2194
2257
|
"onExpandableExpand(expanded,record){\n// 点击展开图标时触发\nconsole.log('onRowSelectionChange', expanded, record);}",
|
|
2195
2258
|
},
|
|
2259
|
+
{
|
|
2260
|
+
name: "onExportChange",
|
|
2261
|
+
template:
|
|
2262
|
+
"onExportChange(expanded,record){\n// 点击展开图标时触发\nconsole.log('onExport', expanded, record);}",
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
name: "onImportChange",
|
|
2266
|
+
template:
|
|
2267
|
+
"onImportChange(expanded,record){\n// 点击展开图标时触发\nconsole.log('onExport', expanded, record);}",
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
name: "onExportFileChange",
|
|
2271
|
+
template:
|
|
2272
|
+
"onExportFileChange(expanded,record){\n// 点击展开图标时触发\nconsole.log('onExport', expanded, record);}",
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
name: "onImportLogChange",
|
|
2276
|
+
template:
|
|
2277
|
+
"onImportLogChange(expanded,record){\n// 点击展开图标时触发\nconsole.log('onExport', expanded, record);}",
|
|
2278
|
+
},
|
|
2196
2279
|
],
|
|
2197
2280
|
},
|
|
2198
2281
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/materials",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"react-window": "^1.8.10",
|
|
62
62
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
63
63
|
"crypto-js": "^4.2.0",
|
|
64
|
-
"@pisell/utils": "1.0.
|
|
65
|
-
"@pisell/
|
|
66
|
-
"@pisell/
|
|
64
|
+
"@pisell/utils": "1.0.25",
|
|
65
|
+
"@pisell/icon": "0.0.8",
|
|
66
|
+
"@pisell/date-picker": "1.0.74"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react": "^18.0.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.materials-grid{display:flex;flex-direction:column;height:100%;width:100%}.materials-grid-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:16px}.materials-grid-header .right-wrap{align-items:center;display:flex;gap:8px}.materials-grid-actions{align-items:center;display:flex;justify-content:space-between;margin-bottom:16px}.materials-grid-actions .left-wrap{align-items:center;display:flex;flex:1 1}.materials-grid-actions .left-wrap .pisell-lowcode-form-item{margin-bottom:0}.materials-grid-actions .right-wrap{align-items:center;display:flex;gap:8px}.materials-grid-actions .right-wrap .icon{cursor:pointer;transition:.2s}.materials-grid-actions .right-wrap .icon:hover{color:var(--theme-color)}.materials-grid-actions .right-wrap .button{align-items:center;display:flex;font-size:12px;height:28px;justify-content:center}.filter-dropdown-wrap{display:flex;flex-direction:column;max-height:400px;max-width:calc(100vw - 24px);min-width:250px;padding:4px;width:400px}.filter-dropdown-wrap .filter-dropdown-wrap-content{flex:1 1;overflow:auto}.filter-dropdown-wrap .filter-dropdown-drag-item{align-items:center;background:#f9fafb;background:var(--gray-50,#f9fafb);border-radius:8px;display:flex;margin-bottom:12px;padding:8px 12px 12px}.filter-dropdown-wrap .filter-dropdown-drag-item .dots-six-icon{color:#98a2b3;cursor:pointer;font-size:24px}.filter-dropdown-wrap .filter-dropdown-drag-item .pisell-lowcode-form-item{margin-bottom:0}.filter-dropdown-wrap .filter-dropdown-drag-item .filter-dropdown-drag-item-right{flex:1 1;margin-left:16px}.filter-dropdown-wrap .filter-dropdown-drag-item .filter-dropdown-drag-item-right .filter-dropdown-drag-item-title{color:#777;color:var(--text-text-2,#777);font-size:14px;font-style:normal;font-weight:600;line-height:20px}.filter-dropdown-container-wrap{border-bottom:1px solid #e2e2e2;border-bottom:1px solid var(--surface-surface-4,#e2e2e2);margin-bottom:20px;min-height:70px}.filter-dropdown-container-wrap:last-child{border:none}.filter-dropdown-container-wrap .filter-dropdown-container-title-wrap{align-items:center;color:#919191;color:var(--text-text-3,#919191);display:flex;font-size:16px;font-style:normal;font-weight:600;line-height:22px;margin-bottom:12px}.filter-dropdown-container-wrap .filter-dropdown-container-title-wrap .filter-dropdown-container-title{color:#101828;color:var(--gray-900,#101828);font-size:16px;font-style:normal;font-weight:600;line-height:24px;margin-right:6px}.filter-dropdown-container-wrap .filter-dropdown-container-title-wrap .filter-dropdown-container-icon-help{color:#98a2b3;color:var(--gray-400,#98a2b3);font-size:20px}.filter-dropdown-container-wrap .filter-dropdown-container-filter-wrap{min-height:80px}.materials-sort-list-empty{color:#5a5a5a;display:block;padding-top:22px;text-align:center}.materials-grid-summary{margin-bottom:16px}.grid-view-table-wrap{position:relative}.materials-grid-paginator{align-items:center;background-color:#fff;border:1px solid #f0f0f0;border-radius:0 0 8px 8px;border-top:none;display:flex;height:50px;justify-content:center;margin:0!important;padding:0 20px;width:100%}.materials-grid-paginator .pisell-lowcode-pagination-total-text{color:#667085;color:var(--gray-500,#667085);font-size:14px;font-style:normal;font-weight:500;margin-right:auto}.materials-grid-paginator .pisell-lowcode-pagination-item{border:1px solid #d0d5dd;border-radius:0;border-right:0;margin:0;position:relative}.materials-grid-paginator .pisell-lowcode-pagination-jump-next,.materials-grid-paginator .pisell-lowcode-pagination-jump-prev{border:1px solid #d0d5dd;border-radius:0;border-right:none;margin:0}.materials-grid-paginator .pisell-lowcode-pagination-item-link:hover{color:rgba(0,0,0,.88)!important;font-weight:450!important}.materials-grid-paginator .pisell-lowcode-pagination-item-link:hover .pisell-lowcode-pagination-item-link-icon{color:rgba(0,0,0,.88)!important;font-weight:450!important}.materials-grid-paginator .pisell-lowcode-pagination-item-active:hover{border-color:#d0d5dd!important}.materials-grid-paginator .pisell-lowcode-pagination-item-active{background-color:rgba(0,0,0,.06)}.materials-grid-paginator .pisell-lowcode-pagination-item-active a{color:rgba(0,0,0,.88)!important;font-weight:450!important}.materials-grid-paginator .pisell-lowcode-pagination-prev{align-items:center;border:1px solid #d0d5dd;border-radius:8px 0 0 8px;border-right:none;display:flex;justify-content:center;margin:0;min-width:auto}.materials-grid-paginator .pisell-lowcode-pagination-next{align-items:center;border:1px solid #d0d5dd;border-radius:0 8px 8px 0;display:flex;justify-content:center;margin:0;min-width:auto}.paginator-page-btn{align-items:center;border-radius:4px 4px 4px 4px;color:#344054;color:var(--gray-700,#344054);cursor:pointer;display:flex;font-size:12px;font-weight:400;justify-content:center;padding:10px 16px;transition:.2s;-ms-user-select:none;user-select:none}.paginator-page-btn .paginator-page-btn-text{font-weight:600}.paginator-page-btn .paginator-page-btn-left-icon,.paginator-page-btn .paginator-page-btn-right-icon{font-size:20px}.paginator-page-btn .paginator-page-btn-left-icon{margin-right:8px}.paginator-page-btn .paginator-page-btn-right-icon{margin-left:8px}.paginator-page-btn.left{margin-right:auto}.paginator-page-btn.left .icon{font-size:18px;margin-right:8px}.paginator-page-btn.right{margin-left:auto}.paginator-page-btn.right .icon{font-size:18px;margin-left:8px;transform:rotate(180deg)}.materials-grid-paginator-mini{align-items:center;background-color:#fff;border:1px solid #f0f0f0;border-radius:0 0 8px 8px;border-top:none;display:flex;height:50px;justify-content:space-between;margin:0!important;overflow:hidden;padding:0 20px;width:100%}.materials-grid-paginator-mini .paginator-page-btn{padding:8px}.materials-grid-paginator-mini .materials-grid-paginator-center{align-items:center;display:flex;gap:4px;justify-content:center}.materials-grid-paginator-mini .materials-grid-paginator-center .materials-grid-paginator-center-text{color:#344054;color:var(--gray-700,#344054);font-size:14px;font-style:normal;font-weight:400}.materials-grid-paginator-mini .materials-grid-paginator-center .materials-grid-paginator-center-value{color:#344054;color:var(--gray-700,#344054);font-size:14px;font-style:normal;font-weight:500}.materials-grid-paginator-mini .pisell-lowcode-pagination-next,.materials-grid-paginator-mini .pisell-lowcode-pagination-prev{border:1px solid #d0d5dd;border-radius:8px;margin:0}.materials-grid-paginator-mini .pisell-lowcode-pagination-next .paginator-page-btn-left-icon,.materials-grid-paginator-mini .pisell-lowcode-pagination-prev .paginator-page-btn-left-icon{margin-right:0}.materials-grid-paginator-mini .pisell-lowcode-pagination-next .paginator-page-btn-right-icon,.materials-grid-paginator-mini .pisell-lowcode-pagination-prev .paginator-page-btn-right-icon{margin-left:0}.react-resizable{position:relative}.react-resizable-handle{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgd2lkdGg9IjYiIGhlaWdodD0iNiI+PHBhdGggZD0iTTYgNkgwVjQuMmg0LjJWMEg2djZaIiBvcGFjaXR5PSIuMzAyIi8+PC9zdmc+);background-origin:content-box;background-position:100% 100%;background-repeat:no-repeat;box-sizing:border-box;height:20px;padding:0 3px 3px 0;position:absolute;width:20px}.react-resizable-handle-sw{bottom:0;cursor:sw-resize;left:0;transform:rotate(90deg)}.react-resizable-handle-se{bottom:0;cursor:se-resize;right:0}.react-resizable-handle-nw{cursor:nw-resize;left:0;top:0;transform:rotate(180deg)}.react-resizable-handle-ne{cursor:ne-resize;right:0;top:0;transform:rotate(270deg)}.react-resizable-handle-e,.react-resizable-handle-w{cursor:ew-resize;margin-top:-10px;top:50%}.react-resizable-handle-w{left:0;transform:rotate(135deg)}.react-resizable-handle-e{right:0;transform:rotate(315deg)}.react-resizable-handle-n,.react-resizable-handle-s{cursor:ns-resize;left:50%;margin-left:-10px}.react-resizable-handle-n{top:0;transform:rotate(225deg)}.react-resizable-handle-s{bottom:0;transform:rotate(45deg)}.materials-grid-table-header-cell{align-items:center;display:flex;height:44px;padding:0 14px}.materials-grid-table-header-cell .field-icon{color:#777;font-size:18px}.materials-grid-table-header-cell .materials-grid-table-header-cell-content{color:#1b1b1b;flex:auto;font-size:14px;font-weight:600;overflow:hidden;padding-right:10px;text-overflow:ellipsis;white-space:nowrap;word-break:break-all}.materials-grid-table-header-cell .actions{align-items:center;display:flex;gap:8px}.materials-grid-table-header-cell .actions .action{color:#ababab;cursor:pointer;font-size:14px}.editable-cell-value-wrap{height:100%;width:100%}.materials-grid-table-cell{height:1px;padding:0!important}.cell-provider{align-items:center;border-radius:4px;cursor:pointer;display:flex;height:100%;justify-content:center;padding:12px;position:relative;width:100%}.cell-provider.focus{box-shadow:var(--theme-color) 0 0 0 1px!important}
|