star-horse-lowcode 3.1.10 → 3.1.12

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 (36) hide show
  1. package/README.md +10 -0
  2. package/dist/assets/index.css +1 -1
  3. package/dist/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  4. package/dist/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  5. package/dist/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  6. package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  7. package/dist/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  8. package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  9. package/dist/components/types/PageFieldInfo.d.ts +7 -8
  10. package/dist/components/types/SearchProps.d.ts +2 -3
  11. package/dist/index.es.js +6 -6
  12. package/dist/lang/en_US.d.ts +47 -0
  13. package/dist/lang/zh_CN.d.ts +47 -0
  14. package/dist/plugins/AblesPlugin.d.ts +1 -1
  15. package/dist/store/DesignForm.d.ts +75 -75
  16. package/dist/store/FormDataCache.d.ts +24 -12
  17. package/dist/store/StoreManager.d.ts +198 -174
  18. package/dist/types/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  19. package/dist/types/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  20. package/dist/types/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  21. package/dist/types/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  22. package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  23. package/dist/types/components/system/StarHorseSvg.vue.d.ts +2 -2
  24. package/dist/types/components/system/code-editor/TabBar.vue.d.ts +2 -2
  25. package/dist/types/components/types/PageFieldInfo.d.ts +7 -8
  26. package/dist/types/components/types/SearchProps.d.ts +2 -3
  27. package/dist/types/lang/en_US.d.ts +47 -0
  28. package/dist/types/lang/zh_CN.d.ts +47 -0
  29. package/dist/types/plugins/AblesPlugin.d.ts +1 -1
  30. package/dist/types/sample/commonpage/dynamic_form_utils.d.ts +8 -0
  31. package/dist/types/store/DesignForm.d.ts +75 -75
  32. package/dist/types/store/FormDataCache.d.ts +24 -12
  33. package/dist/types/store/StoreManager.d.ts +198 -174
  34. package/dist/types/utils/preview.d.ts +2 -1
  35. package/dist/utils/preview.d.ts +2 -1
  36. package/package.json +13 -13
@@ -1,9 +1,10 @@
1
+ import { SearchProps } from "../components/types";
1
2
  /**
2
3
  * 解析查询字段类型
3
4
  * @param searchForm
4
5
  * @param searchFormData
5
6
  */
6
- export declare function analysisSearchData(searchForm: any, searchFormData: any): any[];
7
+ export declare function analysisSearchData(searchForm: any, searchFormData: SearchProps[]): any[];
7
8
  /**
8
9
  * 解析组件
9
10
  * @param compList
@@ -1,9 +1,10 @@
1
+ import { SearchProps } from '../components/types';
1
2
  /**
2
3
  * 解析查询字段类型
3
4
  * @param searchForm
4
5
  * @param searchFormData
5
6
  */
6
- export declare function analysisSearchData(searchForm: any, searchFormData: any): any[];
7
+ export declare function analysisSearchData(searchForm: any, searchFormData: SearchProps[]): any[];
7
8
  /**
8
9
  * 解析组件
9
10
  * @param compList
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "star-horse-lowcode",
3
3
  "private": false,
4
4
  "author": "l_1019@163.com",
5
- "version": "3.1.10",
5
+ "version": "3.1.12",
6
6
  "type": "module",
7
7
  "description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
8
8
  "keywords": [
@@ -78,7 +78,7 @@
78
78
  "@element-plus/icons-vue": "^2.3.2",
79
79
  "@monaco-editor/react": "^4.7.0",
80
80
  "@replit/codemirror-minimap": "^0.5.2",
81
- "@selemondev/vue3-signature-pad": "^1.9.0",
81
+ "@selemondev/vue3-signature-pad": "^1.10.0",
82
82
  "@vueuse/core": "^14.3.0",
83
83
  "@wangeditor/editor": "^5.1.23",
84
84
  "@wangeditor/editor-for-vue": "^5.1.12",
@@ -87,7 +87,7 @@
87
87
  "codemirror": "^6.0.2",
88
88
  "element-plus": "^2.14.2",
89
89
  "json5": "^2.2.3",
90
- "markdown-it": "^14.2.0",
90
+ "markdown-it": "^14.3.0",
91
91
  "md-editor-v3": "^6.5.3",
92
92
  "monaco-editor": "^0.55.1",
93
93
  "path": "^0.12.7",
@@ -97,7 +97,7 @@
97
97
  "smooth-signature": "^1.1.0",
98
98
  "sortablejs": "^1.15.7",
99
99
  "sql-formatter": "^15.8.2",
100
- "tailwindcss": "^4.3.1",
100
+ "tailwindcss": "^4.3.2",
101
101
  "thememirror": "^2.0.1",
102
102
  "uuid": "^14.0.1",
103
103
  "vanilla-jsoneditor": "^3.12.0",
@@ -114,24 +114,24 @@
114
114
  "@eslint/js": "^10.0.1",
115
115
  "@microsoft/api-extractor": "^7.58.9",
116
116
  "@rollup/plugin-inject": "^5.0.5",
117
- "@tailwindcss/vite": "^4.3.1",
118
- "@types/node": "^26.0.1",
117
+ "@tailwindcss/vite": "^4.3.2",
118
+ "@types/node": "^26.1.0",
119
119
  "@types/prismjs": "^1.26.6",
120
120
  "@types/sortablejs": "^1.15.9",
121
- "@typescript-eslint/eslint-plugin": "^8.62.0",
122
- "@typescript-eslint/parser": "^8.62.0",
123
- "@typescript/typescript6": "^6.0.1",
121
+ "@typescript-eslint/eslint-plugin": "^8.63.0",
122
+ "@typescript-eslint/parser": "^8.63.0",
123
+ "@typescript/typescript6": "^6.0.2",
124
124
  "@vitejs/plugin-vue": "^6.0.7",
125
- "@vue/language-core": "^3.3.5",
126
- "eslint": "^10.5.0",
125
+ "@vue/language-core": "^3.3.6",
126
+ "eslint": "^10.6.0",
127
127
  "eslint-plugin-vue": "^10.9.2",
128
128
  "globals": "^17.7.0",
129
- "prettier": "^3.8.4",
129
+ "prettier": "^3.9.4",
130
130
  "sass-embedded": "^1.100.0",
131
131
  "terser": "^5.48.0",
132
132
  "unplugin-auto-import": "^21.0.0",
133
133
  "unplugin-vue-components": "^32.1.0",
134
- "vite": "^8.1.0",
134
+ "vite": "^8.1.3",
135
135
  "vite-plugin-dts": "^5.0.3",
136
136
  "vue-eslint-parser": "^10.4.1"
137
137
  },