@pisell/materials 1.0.252 → 1.0.254
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 +1 -1
- package/build/lowcode/preview.js +1 -1
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +2 -2
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +4 -4
- package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.js +4 -2
- package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.less +4 -0
- package/es/components/table/Table/fields/rangePicker/Edit/index.js +8 -7
- package/es/components/table/Table/utils.d.ts +1 -1
- package/es/locales/en-US.d.ts +7 -0
- package/es/locales/en-US.js +8 -1
- package/es/locales/zh-CN.d.ts +7 -0
- package/es/locales/zh-CN.js +8 -1
- package/es/locales/zh-TW.d.ts +7 -0
- package/es/locales/zh-TW.js +8 -1
- package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.js +2 -2
- package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.less +4 -0
- package/lib/components/table/Table/fields/rangePicker/Edit/index.js +8 -7
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/lib/locales/en-US.d.ts +7 -0
- package/lib/locales/en-US.js +8 -1
- package/lib/locales/zh-CN.d.ts +7 -0
- package/lib/locales/zh-CN.js +8 -1
- package/lib/locales/zh-TW.d.ts +7 -0
- package/lib/locales/zh-TW.js +8 -1
- package/package.json +1 -1
|
@@ -66,7 +66,9 @@ var PopoverContent = function PopoverContent(props) {
|
|
|
66
66
|
className: "".concat(prefix, "table-action-column-header")
|
|
67
67
|
}, isShowTitle && /*#__PURE__*/React.createElement("span", {
|
|
68
68
|
className: "".concat(prefix, "table-action-column-header-title")
|
|
69
|
-
}, getText("table-action-column-title")), headerContent && headerContent), /*#__PURE__*/React.createElement(
|
|
69
|
+
}, getText("table-action-column-title")), headerContent && headerContent), /*#__PURE__*/React.createElement("div", {
|
|
70
|
+
className: "".concat(prefix, "table-action-column-content")
|
|
71
|
+
}, /*#__PURE__*/React.createElement(Sortable, {
|
|
70
72
|
list: value,
|
|
71
73
|
rowKey: function rowKey(item) {
|
|
72
74
|
var _item$dataIndex;
|
|
@@ -105,6 +107,6 @@ var PopoverContent = function PopoverContent(props) {
|
|
|
105
107
|
handleChange(index, !item.isShow);
|
|
106
108
|
}
|
|
107
109
|
}, item.isShow ? /*#__PURE__*/React.createElement(EyeOutlined, null) : /*#__PURE__*/React.createElement(EyeInvisibleOutlined, null)))));
|
|
108
|
-
}));
|
|
110
|
+
})));
|
|
109
111
|
};
|
|
110
112
|
export default PopoverContent;
|
|
@@ -12,6 +12,7 @@ import { isArr, isBoolean, isString } from "@pisell/utils";
|
|
|
12
12
|
import dayjs from "dayjs";
|
|
13
13
|
import React, { forwardRef, useMemo } from "react";
|
|
14
14
|
import DatePicker from "../../../../../date-picker";
|
|
15
|
+
import { getText } from "../../../../../../locales";
|
|
15
16
|
var RangePicker = DatePicker.RangePicker;
|
|
16
17
|
var defaultFormat = "YYYY-MM-DD HH:mm:ss";
|
|
17
18
|
var Edit = function Edit(props, ref) {
|
|
@@ -42,25 +43,25 @@ var Edit = function Edit(props, ref) {
|
|
|
42
43
|
return value;
|
|
43
44
|
}, [value]);
|
|
44
45
|
var rangePresets = [{
|
|
45
|
-
label: "
|
|
46
|
+
label: getText("table-action-range-picker-presets-today"),
|
|
46
47
|
value: [dayjs().startOf("day"), dayjs().endOf("day")]
|
|
47
48
|
}, {
|
|
48
|
-
label: "
|
|
49
|
+
label: getText("table-action-range-picker-presets-yesterday"),
|
|
49
50
|
value: [dayjs().add(-1, "d").startOf("day"), dayjs().add(-1, "d").endOf("day")]
|
|
50
51
|
}, {
|
|
51
|
-
label: "
|
|
52
|
+
label: getText("table-action-range-picker-presets-last-3-day"),
|
|
52
53
|
value: [dayjs().add(-3, "d").startOf("day"), dayjs().endOf("day")]
|
|
53
54
|
}, {
|
|
54
|
-
label: "
|
|
55
|
+
label: getText("table-action-range-picker-presets-last-7-day"),
|
|
55
56
|
value: [dayjs().add(-7, "d").startOf("day"), dayjs().endOf("day")]
|
|
56
57
|
}, {
|
|
57
|
-
label: "
|
|
58
|
+
label: getText("table-action-range-picker-presets-last-14-day"),
|
|
58
59
|
value: [dayjs().add(-14, "d").startOf("day"), dayjs().endOf("day")]
|
|
59
60
|
}, {
|
|
60
|
-
label: "
|
|
61
|
+
label: getText("table-action-range-picker-presets-last-30-day"),
|
|
61
62
|
value: [dayjs().add(-30, "d").startOf("day"), dayjs().endOf("day")]
|
|
62
63
|
}, {
|
|
63
|
-
label: "
|
|
64
|
+
label: getText("table-action-range-picker-presets-last-90-day"),
|
|
64
65
|
value: [dayjs().add(-90, "d").startOf("day"), dayjs().endOf("day")]
|
|
65
66
|
}];
|
|
66
67
|
var _showTime = useMemo(function () {
|
|
@@ -146,7 +146,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
146
146
|
sort?: SortType | undefined;
|
|
147
147
|
mode: "" | "localStorage" | "remote";
|
|
148
148
|
currentViewMode: ModeType;
|
|
149
|
-
}) => ("filter_setting" | "
|
|
149
|
+
}) => ("filter_setting" | "view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting")[];
|
|
150
150
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
151
151
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
152
152
|
export {};
|
package/es/locales/en-US.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/es/locales/en-US.js
CHANGED
|
@@ -33,5 +33,12 @@ export default {
|
|
|
33
33
|
"table-action-column-title": "Header settings",
|
|
34
34
|
"table-column-group-records": "records",
|
|
35
35
|
"table-column-drag-sort-disabled-tip": "Automatic sorting is enabled, manual dragging is disabled.",
|
|
36
|
-
"table-action-filter-no-filter": "No filter options available."
|
|
36
|
+
"table-action-filter-no-filter": "No filter options available.",
|
|
37
|
+
"table-action-range-picker-presets-today": "Today",
|
|
38
|
+
"table-action-range-picker-presets-yesterday": "Yesterday",
|
|
39
|
+
"table-action-range-picker-presets-last-3-day": "Last 3 Days",
|
|
40
|
+
"table-action-range-picker-presets-last-7-day": "Last 7 Days",
|
|
41
|
+
"table-action-range-picker-presets-last-14-day": "Last 14 Days",
|
|
42
|
+
"table-action-range-picker-presets-last-30-day": "Last 30 Days",
|
|
43
|
+
"table-action-range-picker-presets-last-90-day": "Last 90 Days"
|
|
37
44
|
};
|
package/es/locales/zh-CN.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/es/locales/zh-CN.js
CHANGED
|
@@ -33,5 +33,12 @@ export default {
|
|
|
33
33
|
"table-action-column-title": "表头设置",
|
|
34
34
|
"table-column-group-records": "条记录",
|
|
35
35
|
"table-column-drag-sort-disabled-tip": "已开启自动排序,无法手动拖拽",
|
|
36
|
-
"table-action-filter-no-filter": "没有可用的筛选器。"
|
|
36
|
+
"table-action-filter-no-filter": "没有可用的筛选器。",
|
|
37
|
+
"table-action-range-picker-presets-today": "今天",
|
|
38
|
+
"table-action-range-picker-presets-yesterday": "昨天",
|
|
39
|
+
"table-action-range-picker-presets-last-3-day": "过去3天",
|
|
40
|
+
"table-action-range-picker-presets-last-7-day": "过去7天",
|
|
41
|
+
"table-action-range-picker-presets-last-14-day": "过去14天",
|
|
42
|
+
"table-action-range-picker-presets-last-30-day": "过去30天",
|
|
43
|
+
"table-action-range-picker-presets-last-90-day": "过去90天"
|
|
37
44
|
};
|
package/es/locales/zh-TW.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/es/locales/zh-TW.js
CHANGED
|
@@ -33,5 +33,12 @@ export default {
|
|
|
33
33
|
"table-action-column-title": "表頭設置",
|
|
34
34
|
"table-column-group-records": "條記錄",
|
|
35
35
|
"table-column-drag-sort-disabled-tip": "已開啟自動排序,無法手動拖曳",
|
|
36
|
-
"table-action-filter-no-filter": "沒有可用的篩選器。"
|
|
36
|
+
"table-action-filter-no-filter": "沒有可用的篩選器。",
|
|
37
|
+
"table-action-range-picker-presets-today": "今天",
|
|
38
|
+
"table-action-range-picker-presets-yesterday": "昨天",
|
|
39
|
+
"table-action-range-picker-presets-last-3-day": "過去3天",
|
|
40
|
+
"table-action-range-picker-presets-last-7-day": "過去7天",
|
|
41
|
+
"table-action-range-picker-presets-last-14-day": "過去14天",
|
|
42
|
+
"table-action-range-picker-presets-last-30-day": "過去30天",
|
|
43
|
+
"table-action-range-picker-presets-last-90-day": "過去90天"
|
|
37
44
|
};
|
|
@@ -83,7 +83,7 @@ var PopoverContent = (props) => {
|
|
|
83
83
|
};
|
|
84
84
|
onChange == null ? void 0 : onChange([...value]);
|
|
85
85
|
};
|
|
86
|
-
return /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}table-action-column-popover-content-wrap` }, /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}table-action-column-header` }, isShowTitle && /* @__PURE__ */ import_react.default.createElement("span", { className: `${prefix}table-action-column-header-title` }, (0, import_locales.getText)("table-action-column-title")), headerContent && headerContent), /* @__PURE__ */ import_react.default.createElement(
|
|
86
|
+
return /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}table-action-column-popover-content-wrap` }, /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}table-action-column-header` }, isShowTitle && /* @__PURE__ */ import_react.default.createElement("span", { className: `${prefix}table-action-column-header-title` }, (0, import_locales.getText)("table-action-column-title")), headerContent && headerContent), /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}table-action-column-content` }, /* @__PURE__ */ import_react.default.createElement(
|
|
87
87
|
import_DragSortList.default,
|
|
88
88
|
{
|
|
89
89
|
list: value,
|
|
@@ -145,6 +145,6 @@ var PopoverContent = (props) => {
|
|
|
145
145
|
)))
|
|
146
146
|
);
|
|
147
147
|
}
|
|
148
|
-
));
|
|
148
|
+
)));
|
|
149
149
|
};
|
|
150
150
|
var PopoverContent_default = PopoverContent;
|
|
@@ -36,6 +36,7 @@ var import_utils = require("@pisell/utils");
|
|
|
36
36
|
var import_dayjs = __toESM(require("dayjs"));
|
|
37
37
|
var import_react = __toESM(require("react"));
|
|
38
38
|
var import_date_picker = __toESM(require("../../../../../date-picker"));
|
|
39
|
+
var import_locales = require("../../../../../../locales");
|
|
39
40
|
var { RangePicker } = import_date_picker.default;
|
|
40
41
|
var defaultFormat = "YYYY-MM-DD HH:mm:ss";
|
|
41
42
|
var Edit = (props, ref) => {
|
|
@@ -64,32 +65,32 @@ var Edit = (props, ref) => {
|
|
|
64
65
|
return value;
|
|
65
66
|
}, [value]);
|
|
66
67
|
const rangePresets = [
|
|
67
|
-
{ label: "
|
|
68
|
+
{ label: (0, import_locales.getText)("table-action-range-picker-presets-today"), value: [(0, import_dayjs.default)().startOf("day"), (0, import_dayjs.default)().endOf("day")] },
|
|
68
69
|
{
|
|
69
|
-
label: "
|
|
70
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-yesterday"),
|
|
70
71
|
value: [
|
|
71
72
|
(0, import_dayjs.default)().add(-1, "d").startOf("day"),
|
|
72
73
|
(0, import_dayjs.default)().add(-1, "d").endOf("day")
|
|
73
74
|
]
|
|
74
75
|
},
|
|
75
76
|
{
|
|
76
|
-
label: "
|
|
77
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-last-3-day"),
|
|
77
78
|
value: [(0, import_dayjs.default)().add(-3, "d").startOf("day"), (0, import_dayjs.default)().endOf("day")]
|
|
78
79
|
},
|
|
79
80
|
{
|
|
80
|
-
label: "
|
|
81
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-last-7-day"),
|
|
81
82
|
value: [(0, import_dayjs.default)().add(-7, "d").startOf("day"), (0, import_dayjs.default)().endOf("day")]
|
|
82
83
|
},
|
|
83
84
|
{
|
|
84
|
-
label: "
|
|
85
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-last-14-day"),
|
|
85
86
|
value: [(0, import_dayjs.default)().add(-14, "d").startOf("day"), (0, import_dayjs.default)().endOf("day")]
|
|
86
87
|
},
|
|
87
88
|
{
|
|
88
|
-
label: "
|
|
89
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-last-30-day"),
|
|
89
90
|
value: [(0, import_dayjs.default)().add(-30, "d").startOf("day"), (0, import_dayjs.default)().endOf("day")]
|
|
90
91
|
},
|
|
91
92
|
{
|
|
92
|
-
label: "
|
|
93
|
+
label: (0, import_locales.getText)("table-action-range-picker-presets-last-90-day"),
|
|
93
94
|
value: [(0, import_dayjs.default)().add(-90, "d").startOf("day"), (0, import_dayjs.default)().endOf("day")]
|
|
94
95
|
}
|
|
95
96
|
];
|
|
@@ -146,7 +146,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
146
146
|
sort?: SortType | undefined;
|
|
147
147
|
mode: "" | "localStorage" | "remote";
|
|
148
148
|
currentViewMode: ModeType;
|
|
149
|
-
}) => ("filter_setting" | "
|
|
149
|
+
}) => ("filter_setting" | "view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting")[];
|
|
150
150
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
151
151
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
152
152
|
export {};
|
package/lib/locales/en-US.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/lib/locales/en-US.js
CHANGED
|
@@ -51,5 +51,12 @@ var en_US_default = {
|
|
|
51
51
|
"table-action-column-title": "Header settings",
|
|
52
52
|
"table-column-group-records": "records",
|
|
53
53
|
"table-column-drag-sort-disabled-tip": "Automatic sorting is enabled, manual dragging is disabled.",
|
|
54
|
-
"table-action-filter-no-filter": "No filter options available."
|
|
54
|
+
"table-action-filter-no-filter": "No filter options available.",
|
|
55
|
+
"table-action-range-picker-presets-today": "Today",
|
|
56
|
+
"table-action-range-picker-presets-yesterday": "Yesterday",
|
|
57
|
+
"table-action-range-picker-presets-last-3-day": "Last 3 Days",
|
|
58
|
+
"table-action-range-picker-presets-last-7-day": "Last 7 Days",
|
|
59
|
+
"table-action-range-picker-presets-last-14-day": "Last 14 Days",
|
|
60
|
+
"table-action-range-picker-presets-last-30-day": "Last 30 Days",
|
|
61
|
+
"table-action-range-picker-presets-last-90-day": "Last 90 Days"
|
|
55
62
|
};
|
package/lib/locales/zh-CN.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/lib/locales/zh-CN.js
CHANGED
|
@@ -51,5 +51,12 @@ var zh_CN_default = {
|
|
|
51
51
|
"table-action-column-title": "表头设置",
|
|
52
52
|
"table-column-group-records": "条记录",
|
|
53
53
|
"table-column-drag-sort-disabled-tip": "已开启自动排序,无法手动拖拽",
|
|
54
|
-
"table-action-filter-no-filter": "没有可用的筛选器。"
|
|
54
|
+
"table-action-filter-no-filter": "没有可用的筛选器。",
|
|
55
|
+
"table-action-range-picker-presets-today": "今天",
|
|
56
|
+
"table-action-range-picker-presets-yesterday": "昨天",
|
|
57
|
+
"table-action-range-picker-presets-last-3-day": "过去3天",
|
|
58
|
+
"table-action-range-picker-presets-last-7-day": "过去7天",
|
|
59
|
+
"table-action-range-picker-presets-last-14-day": "过去14天",
|
|
60
|
+
"table-action-range-picker-presets-last-30-day": "过去30天",
|
|
61
|
+
"table-action-range-picker-presets-last-90-day": "过去90天"
|
|
55
62
|
};
|
package/lib/locales/zh-TW.d.ts
CHANGED
|
@@ -28,5 +28,12 @@ declare const _default: {
|
|
|
28
28
|
"table-column-group-records": string;
|
|
29
29
|
"table-column-drag-sort-disabled-tip": string;
|
|
30
30
|
"table-action-filter-no-filter": string;
|
|
31
|
+
"table-action-range-picker-presets-today": string;
|
|
32
|
+
"table-action-range-picker-presets-yesterday": string;
|
|
33
|
+
"table-action-range-picker-presets-last-3-day": string;
|
|
34
|
+
"table-action-range-picker-presets-last-7-day": string;
|
|
35
|
+
"table-action-range-picker-presets-last-14-day": string;
|
|
36
|
+
"table-action-range-picker-presets-last-30-day": string;
|
|
37
|
+
"table-action-range-picker-presets-last-90-day": string;
|
|
31
38
|
};
|
|
32
39
|
export default _default;
|
package/lib/locales/zh-TW.js
CHANGED
|
@@ -51,5 +51,12 @@ var zh_TW_default = {
|
|
|
51
51
|
"table-action-column-title": "表頭設置",
|
|
52
52
|
"table-column-group-records": "條記錄",
|
|
53
53
|
"table-column-drag-sort-disabled-tip": "已開啟自動排序,無法手動拖曳",
|
|
54
|
-
"table-action-filter-no-filter": "沒有可用的篩選器。"
|
|
54
|
+
"table-action-filter-no-filter": "沒有可用的篩選器。",
|
|
55
|
+
"table-action-range-picker-presets-today": "今天",
|
|
56
|
+
"table-action-range-picker-presets-yesterday": "昨天",
|
|
57
|
+
"table-action-range-picker-presets-last-3-day": "過去3天",
|
|
58
|
+
"table-action-range-picker-presets-last-7-day": "過去7天",
|
|
59
|
+
"table-action-range-picker-presets-last-14-day": "過去14天",
|
|
60
|
+
"table-action-range-picker-presets-last-30-day": "過去30天",
|
|
61
|
+
"table-action-range-picker-presets-last-90-day": "過去90天"
|
|
55
62
|
};
|