star-horse-lowcode 3.1.9 → 3.1.11

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 (48) hide show
  1. package/README.md +10 -0
  2. package/dist/api/star_horse_utils.d.ts +2 -2
  3. package/dist/assets/index.css +1 -1
  4. package/dist/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  5. package/dist/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  6. package/dist/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  7. package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  8. package/dist/components/comp/StarHorseTableComp.vue.d.ts +1 -0
  9. package/dist/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  10. package/dist/components/formcomp/utils/ItemRelationEventUtils.d.ts +17 -2
  11. package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  12. package/dist/components/system/code-editor/index.d.ts +1 -1
  13. package/dist/components/types/ItemPreps.d.ts +3 -3
  14. package/dist/components/types/PageFieldInfo.d.ts +7 -8
  15. package/dist/components/types/PreOrPendType.d.ts +31 -0
  16. package/dist/components/types/SearchProps.d.ts +2 -3
  17. package/dist/index.es.js +6 -6
  18. package/dist/lang/en_US.d.ts +51 -0
  19. package/dist/lang/zh_CN.d.ts +51 -0
  20. package/dist/store/DesignForm.d.ts +72 -72
  21. package/dist/store/FormDataCache.d.ts +24 -12
  22. package/dist/store/StoreManager.d.ts +192 -168
  23. package/dist/types/api/star_horse_utils.d.ts +2 -2
  24. package/dist/types/components/comp/StarHorseDataView.vue.d.ts +1 -1
  25. package/dist/types/components/comp/StarHorseJsonEditor.vue.d.ts +4 -4
  26. package/dist/types/components/comp/StarHorseSearchComp.vue.d.ts +20 -4
  27. package/dist/types/components/comp/StarHorseSearchForm.vue.d.ts +12 -2
  28. package/dist/types/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
  29. package/dist/types/components/comp/StarHorseTableComp.vue.d.ts +1 -0
  30. package/dist/types/components/formcomp/utils/FieldList.vue.d.ts +4 -4
  31. package/dist/types/components/formcomp/utils/ItemRelationEventUtils.d.ts +17 -2
  32. package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +271 -0
  33. package/dist/types/components/system/StarHorseSvg.vue.d.ts +2 -2
  34. package/dist/types/components/system/code-editor/TabBar.vue.d.ts +2 -2
  35. package/dist/types/components/system/code-editor/index.d.ts +1 -1
  36. package/dist/types/components/types/ItemPreps.d.ts +3 -3
  37. package/dist/types/components/types/PageFieldInfo.d.ts +7 -8
  38. package/dist/types/components/types/PreOrPendType.d.ts +31 -0
  39. package/dist/types/components/types/SearchProps.d.ts +2 -3
  40. package/dist/types/lang/en_US.d.ts +51 -0
  41. package/dist/types/lang/zh_CN.d.ts +51 -0
  42. package/dist/types/sample/commonpage/dynamic_form_utils.d.ts +8 -0
  43. package/dist/types/store/DesignForm.d.ts +72 -72
  44. package/dist/types/store/FormDataCache.d.ts +24 -12
  45. package/dist/types/store/StoreManager.d.ts +192 -168
  46. package/dist/types/utils/preview.d.ts +2 -1
  47. package/dist/utils/preview.d.ts +2 -1
  48. package/package.json +11 -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.9",
5
+ "version": "3.1.11",
6
6
  "type": "module",
7
7
  "description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
8
8
  "keywords": [
@@ -86,9 +86,8 @@
86
86
  "camelcase": "^9.0.0",
87
87
  "codemirror": "^6.0.2",
88
88
  "element-plus": "^2.14.2",
89
- "jquery": "^4.0.0",
90
89
  "json5": "^2.2.3",
91
- "markdown-it": "^14.2.0",
90
+ "markdown-it": "^14.3.0",
92
91
  "md-editor-v3": "^6.5.3",
93
92
  "monaco-editor": "^0.55.1",
94
93
  "path": "^0.12.7",
@@ -98,7 +97,7 @@
98
97
  "smooth-signature": "^1.1.0",
99
98
  "sortablejs": "^1.15.7",
100
99
  "sql-formatter": "^15.8.2",
101
- "tailwindcss": "^4.3.1",
100
+ "tailwindcss": "^4.3.2",
102
101
  "thememirror": "^2.0.1",
103
102
  "uuid": "^14.0.1",
104
103
  "vanilla-jsoneditor": "^3.12.0",
@@ -115,25 +114,24 @@
115
114
  "@eslint/js": "^10.0.1",
116
115
  "@microsoft/api-extractor": "^7.58.9",
117
116
  "@rollup/plugin-inject": "^5.0.5",
118
- "@tailwindcss/vite": "^4.3.1",
119
- "@types/jquery": "^4.0.1",
120
- "@types/node": "^26.0.1",
117
+ "@tailwindcss/vite": "^4.3.2",
118
+ "@types/node": "^26.1.0",
121
119
  "@types/prismjs": "^1.26.6",
122
120
  "@types/sortablejs": "^1.15.9",
123
- "@typescript-eslint/eslint-plugin": "^8.62.0",
124
- "@typescript-eslint/parser": "^8.62.0",
121
+ "@typescript-eslint/eslint-plugin": "^8.62.1",
122
+ "@typescript-eslint/parser": "^8.62.1",
125
123
  "@typescript/typescript6": "^6.0.1",
126
124
  "@vitejs/plugin-vue": "^6.0.7",
127
- "@vue/language-core": "^3.3.5",
128
- "eslint": "^10.5.0",
125
+ "@vue/language-core": "^3.3.6",
126
+ "eslint": "^10.6.0",
129
127
  "eslint-plugin-vue": "^10.9.2",
130
128
  "globals": "^17.7.0",
131
- "prettier": "^3.8.4",
129
+ "prettier": "^3.9.4",
132
130
  "sass-embedded": "^1.100.0",
133
131
  "terser": "^5.48.0",
134
132
  "unplugin-auto-import": "^21.0.0",
135
133
  "unplugin-vue-components": "^32.1.0",
136
- "vite": "^8.1.0",
134
+ "vite": "^8.1.2",
137
135
  "vite-plugin-dts": "^5.0.3",
138
136
  "vue-eslint-parser": "^10.4.1"
139
137
  },