@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.
Files changed (49) hide show
  1. package/lib/collapse/style/index.less +24 -24
  2. package/lib/collapse/style/motion.less +11 -11
  3. package/lib/color-picker/style/index.less +119 -119
  4. package/lib/index.esm.js +1 -1
  5. package/lib/index.full.js +1 -1
  6. package/lib/index.js +1 -1
  7. package/lib/locale/lang/en.d.ts +7 -6
  8. package/lib/locale/lang/en.js +14 -13
  9. package/lib/locale/lang/zh-cn.d.ts +7 -6
  10. package/lib/locale/lang/zh-cn.js +14 -13
  11. package/lib/pivot-grid/style/context-menu.less +28 -28
  12. package/lib/pivot-grid/style/grid-layout.less +409 -409
  13. package/lib/pivot-grid/style/index.less +11 -11
  14. package/lib/pivot-grid/style/main.less +33 -33
  15. package/lib/pivot-grid/style/top-bar.less +189 -189
  16. package/lib/scrollbar/style/index.less +1 -2
  17. package/lib/search-tree/style/index.less +34 -34
  18. package/lib/style/index.css +102 -13
  19. package/lib/style/index.less +44 -44
  20. package/lib/style/index.min.css +1 -1
  21. package/lib/table/src/context/index.d.ts +6 -1
  22. package/lib/table/src/filter/CheckboxPanel.d.ts +7 -0
  23. package/lib/table/src/filter/DatePanel.d.ts +7 -0
  24. package/lib/table/src/filter/FooterPanel.d.ts +12 -0
  25. package/lib/table/src/filter/ListPanel.d.ts +11 -0
  26. package/lib/table/src/filter/NilPanel.d.ts +9 -0
  27. package/lib/table/src/filter/NumberPanel.d.ts +7 -0
  28. package/lib/table/src/filter/TextAreaPanel.d.ts +7 -0
  29. package/lib/table/src/filter/TextPanel.d.ts +7 -0
  30. package/lib/table/src/filter/TreePanel.d.ts +7 -0
  31. package/lib/table/src/filter/context.d.ts +3 -0
  32. package/lib/table/src/filter-sql/index.d.ts +1 -1
  33. package/lib/table/src/filter-sql/lib/filter_string.d.ts +1 -3
  34. package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -0
  35. package/lib/table/src/hooks/useTableCore.d.ts +9 -5
  36. package/lib/table/src/hooks/useTableRef.d.ts +4 -9
  37. package/lib/table/src/hooks/useTableState.d.ts +4 -1
  38. package/lib/table/src/table/props.d.ts +1 -0
  39. package/lib/table/src/table/types.d.ts +6 -1
  40. package/lib/table/src/utils/index.d.ts +4 -1
  41. package/lib/table/style/body.less +1 -0
  42. package/lib/table/style/fast-search.less +151 -150
  43. package/lib/table/style/header.less +108 -10
  44. package/lib/table/style/variable.less +51 -51
  45. package/lib/virtual-list/src/core.d.ts +4 -5
  46. package/lib/virtual-list/src/useVirtual.d.ts +2 -2
  47. package/lib/virtual-list/src/utils.d.ts +1 -2
  48. package/lib/virtual-list/style/index.less +22 -22
  49. package/package.json +140 -140
@@ -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
- nullValue: string;
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;
@@ -1,8 +1,8 @@
1
- /*
2
- * @Author: 焦质晔
3
- * @Date: 2021-06-19 08:46:00
4
- * @Last Modified by: 焦质晔
5
- * @Last Modified time: 2024-12-27 09:49:21
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: 'Search {text}',
194
- searchAreaText: 'Search {text}, separated by commas',
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
- nullValue: 'Null Value'
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
- nullValue: string;
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;
@@ -1,8 +1,8 @@
1
- /*
2
- * @Author: 焦质晔
3
- * @Date: 2021-06-19 08:45:54
4
- * @Last Modified by: 焦质晔
5
- * @Last Modified time: 2024-12-27 09:49:04
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: '搜索{text}',
194
- searchAreaText: '搜索{text},用逗号隔开',
195
- gtPlaceholder: '大于',
196
- ltPlaceholder: '小于',
197
- eqPlaceholder: '等于',
198
- neqPlaceholder: '不等于',
193
+ searchText: '过滤{text}',
194
+ searchAreaText: '过滤{text},用逗号隔开',
199
195
  text: '筛选',
200
- nullValue: '空值'
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
+ }