@jiaozhiye/qm-design-react 1.11.24 → 1.11.26
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/lib/collapse/style/index.less +24 -24
- package/lib/collapse/style/motion.less +11 -11
- package/lib/color-picker/style/index.less +119 -119
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/lang/en.d.ts +7 -6
- package/lib/locale/lang/en.js +14 -13
- package/lib/locale/lang/zh-cn.d.ts +7 -6
- package/lib/locale/lang/zh-cn.js +14 -13
- package/lib/pivot-grid/style/context-menu.less +28 -28
- package/lib/pivot-grid/style/grid-layout.less +409 -409
- package/lib/pivot-grid/style/index.less +11 -11
- package/lib/pivot-grid/style/main.less +33 -33
- package/lib/pivot-grid/style/top-bar.less +189 -189
- package/lib/scrollbar/style/index.less +1 -2
- package/lib/search-tree/style/index.less +34 -34
- package/lib/style/index.css +102 -13
- package/lib/style/index.less +44 -44
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/context/index.d.ts +6 -1
- package/lib/table/src/filter/CheckboxPanel.d.ts +7 -0
- package/lib/table/src/filter/DatePanel.d.ts +7 -0
- package/lib/table/src/filter/FooterPanel.d.ts +12 -0
- package/lib/table/src/filter/ListPanel.d.ts +11 -0
- package/lib/table/src/filter/NilPanel.d.ts +9 -0
- package/lib/table/src/filter/NumberPanel.d.ts +7 -0
- package/lib/table/src/filter/TextAreaPanel.d.ts +7 -0
- package/lib/table/src/filter/TextPanel.d.ts +7 -0
- package/lib/table/src/filter/TreePanel.d.ts +7 -0
- package/lib/table/src/filter/context.d.ts +3 -0
- package/lib/table/src/filter-sql/index.d.ts +1 -1
- package/lib/table/src/filter-sql/lib/filter_string.d.ts +1 -3
- package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -0
- package/lib/table/src/hooks/useTableCore.d.ts +9 -5
- package/lib/table/src/hooks/useTableRef.d.ts +4 -9
- package/lib/table/src/hooks/useTableState.d.ts +4 -1
- package/lib/table/src/table/props.d.ts +1 -0
- package/lib/table/src/table/types.d.ts +6 -1
- package/lib/table/src/utils/index.d.ts +4 -1
- package/lib/table/style/body.less +1 -0
- package/lib/table/style/fast-search.less +151 -150
- package/lib/table/style/header.less +108 -10
- package/lib/table/style/variable.less +51 -51
- package/lib/virtual-list/src/core.d.ts +4 -5
- package/lib/virtual-list/src/useVirtual.d.ts +2 -2
- package/lib/virtual-list/src/utils.d.ts +1 -2
- package/lib/virtual-list/style/index.less +22 -22
- package/package.json +140 -140
package/lib/locale/lang/en.d.ts
CHANGED
|
@@ -186,12 +186,11 @@ declare const _default: {
|
|
|
186
186
|
reset: string;
|
|
187
187
|
searchText: string;
|
|
188
188
|
searchAreaText: string;
|
|
189
|
-
gtPlaceholder: string;
|
|
190
|
-
ltPlaceholder: string;
|
|
191
|
-
eqPlaceholder: string;
|
|
192
|
-
neqPlaceholder: string;
|
|
193
189
|
text: string;
|
|
194
|
-
|
|
190
|
+
selectAll: string;
|
|
191
|
+
invert: string;
|
|
192
|
+
onlyItem: string;
|
|
193
|
+
keywordSearch: string;
|
|
195
194
|
};
|
|
196
195
|
screen: {
|
|
197
196
|
full: string;
|
|
@@ -290,8 +289,10 @@ declare const _default: {
|
|
|
290
289
|
neqText: string;
|
|
291
290
|
inText: string;
|
|
292
291
|
ninText: string;
|
|
293
|
-
likeText: string;
|
|
294
292
|
nullText: string;
|
|
293
|
+
notNullText: string;
|
|
294
|
+
startsWithText: string;
|
|
295
|
+
endsWithText: string;
|
|
295
296
|
configText: string;
|
|
296
297
|
saveButton: string;
|
|
297
298
|
savedSetting: string;
|
package/lib/locale/lang/en.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2021-06-19 08:46:00
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time:
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2021-06-19 08:46:00
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2025-06-13 15:26:45
|
|
6
6
|
*/
|
|
7
7
|
export default {
|
|
8
8
|
name: 'en',
|
|
@@ -190,14 +190,13 @@ export default {
|
|
|
190
190
|
filter: {
|
|
191
191
|
search: 'Search',
|
|
192
192
|
reset: 'Reset',
|
|
193
|
-
searchText: '
|
|
194
|
-
searchAreaText: '
|
|
195
|
-
gtPlaceholder: 'is greater than',
|
|
196
|
-
ltPlaceholder: 'is lesser than',
|
|
197
|
-
eqPlaceholder: 'is equal to',
|
|
198
|
-
neqPlaceholder: 'is not equal to',
|
|
193
|
+
searchText: 'Filter {text}',
|
|
194
|
+
searchAreaText: 'Filter {text}, separated by commas',
|
|
199
195
|
text: 'Filter',
|
|
200
|
-
|
|
196
|
+
selectAll: 'Select all',
|
|
197
|
+
invert: 'Invert',
|
|
198
|
+
onlyItem: 'Only item',
|
|
199
|
+
keywordSearch: 'Keyword Search'
|
|
201
200
|
},
|
|
202
201
|
screen: {
|
|
203
202
|
full: 'Full Screen',
|
|
@@ -296,8 +295,10 @@ export default {
|
|
|
296
295
|
neqText: 'is not equal to',
|
|
297
296
|
inText: 'include',
|
|
298
297
|
ninText: 'not include',
|
|
299
|
-
likeText: 'fuzzy matching',
|
|
300
298
|
nullText: 'null value',
|
|
299
|
+
notNullText: 'not null value',
|
|
300
|
+
startsWithText: 'beginning is',
|
|
301
|
+
endsWithText: 'ending is',
|
|
301
302
|
configText: 'Configuration name',
|
|
302
303
|
saveButton: 'Save',
|
|
303
304
|
savedSetting: 'Saved configuration',
|
|
@@ -186,12 +186,11 @@ declare const _default: {
|
|
|
186
186
|
reset: string;
|
|
187
187
|
searchText: string;
|
|
188
188
|
searchAreaText: string;
|
|
189
|
-
gtPlaceholder: string;
|
|
190
|
-
ltPlaceholder: string;
|
|
191
|
-
eqPlaceholder: string;
|
|
192
|
-
neqPlaceholder: string;
|
|
193
189
|
text: string;
|
|
194
|
-
|
|
190
|
+
selectAll: string;
|
|
191
|
+
invert: string;
|
|
192
|
+
onlyItem: string;
|
|
193
|
+
keywordSearch: string;
|
|
195
194
|
};
|
|
196
195
|
screen: {
|
|
197
196
|
full: string;
|
|
@@ -290,8 +289,10 @@ declare const _default: {
|
|
|
290
289
|
neqText: string;
|
|
291
290
|
inText: string;
|
|
292
291
|
ninText: string;
|
|
293
|
-
likeText: string;
|
|
294
292
|
nullText: string;
|
|
293
|
+
notNullText: string;
|
|
294
|
+
startsWithText: string;
|
|
295
|
+
endsWithText: string;
|
|
295
296
|
configText: string;
|
|
296
297
|
saveButton: string;
|
|
297
298
|
savedSetting: string;
|
package/lib/locale/lang/zh-cn.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2021-06-19 08:45:54
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time:
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2021-06-19 08:45:54
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2025-06-13 15:26:18
|
|
6
6
|
*/
|
|
7
7
|
export default {
|
|
8
8
|
name: 'zh-cn',
|
|
@@ -190,14 +190,13 @@ export default {
|
|
|
190
190
|
filter: {
|
|
191
191
|
search: '搜 索',
|
|
192
192
|
reset: '重 置',
|
|
193
|
-
searchText: '
|
|
194
|
-
searchAreaText: '
|
|
195
|
-
gtPlaceholder: '大于',
|
|
196
|
-
ltPlaceholder: '小于',
|
|
197
|
-
eqPlaceholder: '等于',
|
|
198
|
-
neqPlaceholder: '不等于',
|
|
193
|
+
searchText: '过滤{text}',
|
|
194
|
+
searchAreaText: '过滤{text},用逗号隔开',
|
|
199
195
|
text: '筛选',
|
|
200
|
-
|
|
196
|
+
selectAll: '全选',
|
|
197
|
+
invert: '反选',
|
|
198
|
+
onlyItem: '仅此项',
|
|
199
|
+
keywordSearch: '关键词搜索'
|
|
201
200
|
},
|
|
202
201
|
screen: {
|
|
203
202
|
full: '全屏',
|
|
@@ -296,8 +295,10 @@ export default {
|
|
|
296
295
|
neqText: '不等于',
|
|
297
296
|
inText: '包含',
|
|
298
297
|
ninText: '不包含',
|
|
299
|
-
likeText: '模糊匹配',
|
|
300
298
|
nullText: '空值',
|
|
299
|
+
notNullText: '非空值',
|
|
300
|
+
startsWithText: '开头是',
|
|
301
|
+
endsWithText: '结尾是',
|
|
301
302
|
configText: '配置名称',
|
|
302
303
|
saveButton: '保 存',
|
|
303
304
|
savedSetting: '保存的高级检索设置',
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2025-01-11 18:31:17
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2025-01-12 13:18:56
|
|
6
|
-
*/
|
|
7
|
-
@import '../../style/common';
|
|
8
|
-
|
|
9
|
-
.@{prefix-pivot-grid}__context-menu {
|
|
10
|
-
min-width: 150px;
|
|
11
|
-
.ant-dropdown-menu-item {
|
|
12
|
-
display: flex;
|
|
13
|
-
align-items: center;
|
|
14
|
-
padding-left: @--padding-md;
|
|
15
|
-
padding-right: @--padding-md;
|
|
16
|
-
border-radius: @--border-radius-lg;
|
|
17
|
-
.label {
|
|
18
|
-
flex: auto;
|
|
19
|
-
}
|
|
20
|
-
.prefix {
|
|
21
|
-
margin-right: 5px;
|
|
22
|
-
}
|
|
23
|
-
.suffix {
|
|
24
|
-
margin-left: 4px;
|
|
25
|
-
color: @--text-color-placeholder;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2025-01-11 18:31:17
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2025-01-12 13:18:56
|
|
6
|
+
*/
|
|
7
|
+
@import '../../style/common';
|
|
8
|
+
|
|
9
|
+
.@{prefix-pivot-grid}__context-menu {
|
|
10
|
+
min-width: 150px;
|
|
11
|
+
.ant-dropdown-menu-item {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
padding-left: @--padding-md;
|
|
15
|
+
padding-right: @--padding-md;
|
|
16
|
+
border-radius: @--border-radius-lg;
|
|
17
|
+
.label {
|
|
18
|
+
flex: auto;
|
|
19
|
+
}
|
|
20
|
+
.prefix {
|
|
21
|
+
margin-right: 5px;
|
|
22
|
+
}
|
|
23
|
+
.suffix {
|
|
24
|
+
margin-left: 4px;
|
|
25
|
+
color: @--text-color-placeholder;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|