@sunny-base-web/effects 0.8.88 → 0.8.90

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/dist/index.mjs CHANGED
@@ -7666,10 +7666,26 @@ const Vr = { class: "flex items-center w-full h-[30px] bg-[var(--color-bg-2)] bo
7666
7666
  }
7667
7667
  ], g = [
7668
7668
  { type: "seq", width: 60, title: A("operationLog.sequence") },
7669
- { field: "cModname", title: A("operationLog.moduleName"), minWidth: 120, filters: [{ data: "" }], filterRender: { name: "MyFilterComplex" } },
7670
- { field: "cSystem", title: A("operationLog.system"), minWidth: 120, filters: [{ data: "" }], filterRender: { name: "MyFilterComplex" } },
7669
+ // ⚠️ 'MyFilterComplex' 渲染器随 vxe-table 扩展插件停用(见 use-query-grid.vue 顶部注释),下列各列 filters/filterRender 暂时注释;恢复 import './renderer' 后取消注释
7670
+ {
7671
+ field: "cModname",
7672
+ title: A("operationLog.moduleName"),
7673
+ minWidth: 120
7674
+ // filters: [{ data: '' }], filterRender: { name: 'MyFilterComplex' }
7675
+ },
7676
+ {
7677
+ field: "cSystem",
7678
+ title: A("operationLog.system"),
7679
+ minWidth: 120
7680
+ // filters: [{ data: '' }], filterRender: { name: 'MyFilterComplex' }
7681
+ },
7671
7682
  { field: "cDanju", title: A("operationLog.billNo"), minWidth: 140 },
7672
- { field: "cUser", title: A("operationLog.userWork"), width: 100, filters: [{ data: "" }], filterRender: { name: "MyFilterComplex" } },
7683
+ {
7684
+ field: "cUser",
7685
+ title: A("operationLog.userWork"),
7686
+ width: 100
7687
+ // filters: [{ data: '' }], filterRender: { name: 'MyFilterComplex' }
7688
+ },
7673
7689
  { field: "cUsername", title: A("operationLog.userName"), minWidth: 120 },
7674
7690
  { field: "cDongzuo", title: A("operationLog.description"), minWidth: 200, align: "left" },
7675
7691
  { field: "cUrl", title: A("operationLog.interfaceUrl"), minWidth: 200, slots: { default: "cUrlSlot" } },
@@ -11763,9 +11779,10 @@ const pa = { class: "h-full w-full overflow-auto bg-[var(--color-fill-2)]" }, Pa
11763
11779
  value: "cXuhao"
11764
11780
  }
11765
11781
  },
11766
- formatter: ({ cellValue: A, column: e }) => (e.params?.options || []).find((o) => o.value === A)?.label || A,
11767
- filters: [{ data: { checks: [], sVal: "", sMenu: "", fType1: "", fVal1: "", fMode: "and", fType2: "", fVal2: "" } }],
11768
- filterRender: { name: "FilterCombination" }
11782
+ formatter: ({ cellValue: A, column: e }) => (e.params?.options || []).find((o) => o.value === A)?.label || A
11783
+ // ⚠️ 'FilterCombination' 渲染器随 vxe-table 扩展插件停用(见 use-vxe-grid.vue 顶部注释),暂时注释;恢复 import './renderer/filters-combination' 后取消注释
11784
+ // filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
11785
+ // filterRender: { name: 'FilterCombination' }
11769
11786
  },
11770
11787
  {
11771
11788
  field: "value",
@@ -11775,9 +11792,10 @@ const pa = { class: "h-full w-full overflow-auto bg-[var(--color-fill-2)]" }, Pa
11775
11792
  params: {
11776
11793
  placeholder: "请输入属性值",
11777
11794
  allowClear: !0
11778
- },
11779
- filters: [{ data: { checks: [], sVal: "", sMenu: "", fType1: "", fVal1: "", fMode: "and", fType2: "", fVal2: "" } }],
11780
- filterRender: { name: "FilterCombination" }
11795
+ }
11796
+ // ⚠️ 'FilterCombination' 渲染器随 vxe-table 扩展插件停用(见 use-vxe-grid.vue 顶部注释),暂时注释;恢复 import './renderer/filters-combination' 后取消注释
11797
+ // filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
11798
+ // filterRender: { name: 'FilterCombination' }
11781
11799
  }
11782
11800
  ], AQ = [
11783
11801
  {
@@ -14990,11 +15008,12 @@ function kA(A) {
14990
15008
  showSortPutButton: !0
14991
15009
  },
14992
15010
  // 表格说明,鼠标悬停 ! 按钮时显示
15011
+ // ⚠️ 原 gridTip 第 3/4 条「鼠标区域选取 / Ctrl+A 全选 / Ctrl+C 复制选中区域」依赖已停用的
15012
+ // extend-cell-area 插件,暂时移除;恢复插件后取消下方注释、删掉精简版即可。
15013
+ // gridTip: '1. 表格支持本地(换电脑清空)列配置,退出登录不清空\n2. 支持服务端排序\n3. 支持鼠标区域选取,Ctrl+A 全选\n4. 支持 Ctrl+C 复制选中区域\n5. 支持 Tab/方向键/Shift+方向键导航\n',
14993
15014
  gridTip: `1. 表格支持本地(换电脑清空)列配置,退出登录不清空
14994
15015
  2. 支持服务端排序
14995
- 3. 支持鼠标区域选取,Ctrl+A 全选
14996
- 4. 支持 Ctrl+C 复制选中区域
14997
- 5. 支持 Tab/方向键/Shift+方向键导航
15016
+ 3. 支持 Tab/方向键/Shift+方向键导航
14998
15017
  `,
14999
15018
  // 树形配置
15000
15019
  ...B && {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunny-base-web/effects",
3
- "version": "0.8.88",
3
+ "version": "0.8.90",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist"
@@ -34,11 +34,11 @@
34
34
  "vxe-table": "^4.17.49",
35
35
  "xe-utils": "3.9.1",
36
36
  "zod": "^4.3.6",
37
- "@sunny-base-web/stores": "^0.8.88",
38
- "@sunny-base-web/icons": "^0.8.88",
39
- "@sunny-base-web/ui": "^0.8.88",
40
- "@sunny-base-web/utils": "^0.8.88",
41
- "@sunny-base-web/locales": "^0.8.88"
37
+ "@sunny-base-web/icons": "^0.8.90",
38
+ "@sunny-base-web/stores": "^0.8.90",
39
+ "@sunny-base-web/utils": "^0.8.90",
40
+ "@sunny-base-web/locales": "^0.8.90",
41
+ "@sunny-base-web/ui": "^0.8.90"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/lodash-es": "^4.17.12",
@@ -49,10 +49,10 @@
49
49
  "typescript": "^5.7.2",
50
50
  "vite": "^7.3.1",
51
51
  "vite-plugin-dts": "^4.5.4",
52
- "@sunny-base-web/constants": "0.8.88",
53
- "@sunny-base-web/tailwind-config": "0.8.88",
52
+ "@sunny-base-web/constants": "0.8.90",
54
53
  "@sunny-base-web/designer-studio": "^0.1.1",
55
- "@sunny-base-web/tsconfig": "0.8.88"
54
+ "@sunny-base-web/tsconfig": "0.8.90",
55
+ "@sunny-base-web/tailwind-config": "0.8.90"
56
56
  },
57
57
  "publishConfig": {
58
58
  "style": "./dist/effects.css",