star-horse-lowcode 2.8.12 → 2.8.13
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/README.md +1 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +1799 -1551
- package/dist/types/index.d.ts +72 -82
- package/package.json +10 -10
package/dist/types/index.d.ts
CHANGED
|
@@ -2,21 +2,14 @@ import { App } from 'vue';
|
|
|
2
2
|
import { AxiosInstance } from 'axios';
|
|
3
3
|
import { AxiosResponse } from 'axios';
|
|
4
4
|
import { ComponentOptionsMixin } from 'vue';
|
|
5
|
-
import { ComponentOptionsMixin as ComponentOptionsMixin_2 } from '@vue/runtime-core';
|
|
6
5
|
import { ComponentProvideOptions } from 'vue';
|
|
7
|
-
import { ComponentProvideOptions as ComponentProvideOptions_2 } from '@vue/runtime-core';
|
|
8
6
|
import { ComputedRef } from 'vue';
|
|
9
|
-
import { ComputedRef as ComputedRef_2 } from '@vue/reactivity';
|
|
10
7
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
11
|
-
import { CreateComponentPublicInstanceWithMixins as CreateComponentPublicInstanceWithMixins_2 } from '@vue/runtime-core';
|
|
12
8
|
import { CSSProperties } from 'vue';
|
|
13
9
|
import { DefineComponent } from 'vue';
|
|
14
10
|
import { ExtractPropTypes } from 'vue';
|
|
15
|
-
import { ExtractPropTypes as ExtractPropTypes_2 } from '@vue/runtime-core';
|
|
16
11
|
import { GlobalComponents } from 'vue';
|
|
17
|
-
import { GlobalComponents as GlobalComponents_2 } from '@vue/runtime-core';
|
|
18
12
|
import { GlobalDirectives } from 'vue';
|
|
19
|
-
import { GlobalDirectives as GlobalDirectives_2 } from '@vue/runtime-core';
|
|
20
13
|
import { JSONEditorSelection } from 'vanilla-jsoneditor';
|
|
21
14
|
import { JSONParser } from 'vanilla-jsoneditor';
|
|
22
15
|
import { JSONPathParser } from 'vanilla-jsoneditor';
|
|
@@ -25,13 +18,10 @@ import { OnRenderMenu } from 'vanilla-jsoneditor';
|
|
|
25
18
|
import { OnRenderValue } from 'vanilla-jsoneditor';
|
|
26
19
|
import { Pinia } from 'pinia';
|
|
27
20
|
import { PropType } from 'vue';
|
|
28
|
-
import { PropType as PropType_2 } from '@vue/runtime-core';
|
|
29
21
|
import { PublicProps } from 'vue';
|
|
30
|
-
import { PublicProps as PublicProps_2 } from '@vue/runtime-core';
|
|
31
22
|
import { QueryLanguageId } from 'vue3-ts-jsoneditor';
|
|
32
23
|
import { Reactive } from 'vue';
|
|
33
24
|
import { Ref } from 'vue';
|
|
34
|
-
import { Ref as Ref_2 } from '@vue/reactivity';
|
|
35
25
|
import { RouteLocationNormalized } from 'vue-router';
|
|
36
26
|
import { Router } from 'vue-router';
|
|
37
27
|
import { ShallowRef } from 'vue';
|
|
@@ -4921,76 +4911,76 @@ type: PropType<{}>;
|
|
|
4921
4911
|
currentMode: any;
|
|
4922
4912
|
modeList: unknown[];
|
|
4923
4913
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
4924
|
-
editor:
|
|
4925
|
-
modelValue:
|
|
4914
|
+
editor: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
4915
|
+
modelValue: PropType<unknown>;
|
|
4926
4916
|
value: {
|
|
4927
|
-
type:
|
|
4917
|
+
type: PropType<unknown>;
|
|
4928
4918
|
default: any;
|
|
4929
4919
|
};
|
|
4930
4920
|
json: {
|
|
4931
|
-
type:
|
|
4921
|
+
type: PropType<unknown>;
|
|
4932
4922
|
default: any;
|
|
4933
4923
|
};
|
|
4934
|
-
text:
|
|
4935
|
-
jsonString:
|
|
4924
|
+
text: PropType<string>;
|
|
4925
|
+
jsonString: PropType<string>;
|
|
4936
4926
|
selection: {
|
|
4937
|
-
type:
|
|
4927
|
+
type: PropType<JSONEditorSelection>;
|
|
4938
4928
|
default: any;
|
|
4939
4929
|
};
|
|
4940
4930
|
mode: {
|
|
4941
|
-
type:
|
|
4931
|
+
type: PropType<"table" | "text" | "tree">;
|
|
4942
4932
|
default: string;
|
|
4943
4933
|
};
|
|
4944
4934
|
mainMenuBar: {
|
|
4945
|
-
type:
|
|
4935
|
+
type: PropType<boolean>;
|
|
4946
4936
|
default: any;
|
|
4947
4937
|
};
|
|
4948
4938
|
navigationBar: {
|
|
4949
|
-
type:
|
|
4939
|
+
type: PropType<boolean>;
|
|
4950
4940
|
default: any;
|
|
4951
4941
|
};
|
|
4952
4942
|
statusBar: {
|
|
4953
|
-
type:
|
|
4943
|
+
type: PropType<boolean>;
|
|
4954
4944
|
default: any;
|
|
4955
4945
|
};
|
|
4956
4946
|
askToFormat: {
|
|
4957
|
-
type:
|
|
4947
|
+
type: PropType<boolean>;
|
|
4958
4948
|
default: any;
|
|
4959
4949
|
};
|
|
4960
4950
|
readOnly: {
|
|
4961
|
-
type:
|
|
4951
|
+
type: PropType<boolean>;
|
|
4962
4952
|
default: any;
|
|
4963
4953
|
};
|
|
4964
|
-
indentation:
|
|
4965
|
-
tabSize:
|
|
4954
|
+
indentation: PropType<string | number>;
|
|
4955
|
+
tabSize: PropType<number>;
|
|
4966
4956
|
escapeControlCharacters: {
|
|
4967
|
-
type:
|
|
4957
|
+
type: PropType<boolean>;
|
|
4968
4958
|
default: any;
|
|
4969
4959
|
};
|
|
4970
4960
|
escapeUnicodeCharacters: {
|
|
4971
|
-
type:
|
|
4961
|
+
type: PropType<boolean>;
|
|
4972
4962
|
default: any;
|
|
4973
4963
|
};
|
|
4974
4964
|
flattenColumns: {
|
|
4975
|
-
type:
|
|
4965
|
+
type: PropType<boolean>;
|
|
4976
4966
|
default: any;
|
|
4977
4967
|
};
|
|
4978
|
-
validator:
|
|
4979
|
-
parser:
|
|
4980
|
-
validationParser:
|
|
4981
|
-
pathParser:
|
|
4982
|
-
queryLanguagesIds:
|
|
4983
|
-
queryLanguageId:
|
|
4984
|
-
onClassName:
|
|
4985
|
-
onRenderValue:
|
|
4986
|
-
onRenderMenu:
|
|
4987
|
-
height:
|
|
4968
|
+
validator: PropType<Validator>;
|
|
4969
|
+
parser: PropType<JSONParser>;
|
|
4970
|
+
validationParser: PropType<JSONParser>;
|
|
4971
|
+
pathParser: PropType<JSONPathParser>;
|
|
4972
|
+
queryLanguagesIds: PropType<QueryLanguageId[]>;
|
|
4973
|
+
queryLanguageId: PropType<QueryLanguageId>;
|
|
4974
|
+
onClassName: PropType<OnClassName>;
|
|
4975
|
+
onRenderValue: PropType<OnRenderValue>;
|
|
4976
|
+
onRenderMenu: PropType<OnRenderMenu>;
|
|
4977
|
+
height: PropType<string | number>;
|
|
4988
4978
|
fullWidthButton: {
|
|
4989
|
-
type:
|
|
4979
|
+
type: PropType<boolean>;
|
|
4990
4980
|
default: any;
|
|
4991
4981
|
};
|
|
4992
4982
|
darkTheme: {
|
|
4993
|
-
type:
|
|
4983
|
+
type: PropType<boolean>;
|
|
4994
4984
|
default: any;
|
|
4995
4985
|
};
|
|
4996
4986
|
}>> & Readonly<{
|
|
@@ -5007,16 +4997,16 @@ onError?: (...args: any[]) => any;
|
|
|
5007
4997
|
onFocus?: (...args: any[]) => any;
|
|
5008
4998
|
onBlur?: (...args: any[]) => any;
|
|
5009
4999
|
}>, {
|
|
5010
|
-
max:
|
|
5011
|
-
getHeight:
|
|
5000
|
+
max: Ref<boolean, boolean>;
|
|
5001
|
+
getHeight: ComputedRef< {
|
|
5012
5002
|
height: string;
|
|
5013
5003
|
} | {
|
|
5014
5004
|
height?: undefined;
|
|
5015
5005
|
}>;
|
|
5016
|
-
container:
|
|
5017
|
-
darkThemeStyle:
|
|
5018
|
-
fallbackSlot:
|
|
5019
|
-
}, {}, {}, {},
|
|
5006
|
+
container: Ref<HTMLDivElement, HTMLDivElement>;
|
|
5007
|
+
darkThemeStyle: ComputedRef<boolean>;
|
|
5008
|
+
fallbackSlot: Ref<boolean, boolean>;
|
|
5009
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("error" | "blur" | "change" | "focus" | "update:modelValue" | "update:json" | "update:text" | "update:jsonString" | "update:selection" | "change-mode" | "update:mode" | "change-query-language")[], PublicProps, {
|
|
5020
5010
|
selection: JSONEditorSelection;
|
|
5021
5011
|
mainMenuBar: boolean;
|
|
5022
5012
|
navigationBar: boolean;
|
|
@@ -5031,83 +5021,83 @@ fullWidthButton: boolean;
|
|
|
5031
5021
|
darkTheme: boolean;
|
|
5032
5022
|
value: any;
|
|
5033
5023
|
json: any;
|
|
5034
|
-
}, true, {}, {},
|
|
5024
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5035
5025
|
P: {};
|
|
5036
5026
|
B: {};
|
|
5037
5027
|
D: {};
|
|
5038
5028
|
C: {};
|
|
5039
5029
|
M: {};
|
|
5040
5030
|
Defaults: {};
|
|
5041
|
-
}, Readonly<
|
|
5042
|
-
modelValue:
|
|
5031
|
+
}, Readonly<ExtractPropTypes< {
|
|
5032
|
+
modelValue: PropType<unknown>;
|
|
5043
5033
|
value: {
|
|
5044
|
-
type:
|
|
5034
|
+
type: PropType<unknown>;
|
|
5045
5035
|
default: any;
|
|
5046
5036
|
};
|
|
5047
5037
|
json: {
|
|
5048
|
-
type:
|
|
5038
|
+
type: PropType<unknown>;
|
|
5049
5039
|
default: any;
|
|
5050
5040
|
};
|
|
5051
|
-
text:
|
|
5052
|
-
jsonString:
|
|
5041
|
+
text: PropType<string>;
|
|
5042
|
+
jsonString: PropType<string>;
|
|
5053
5043
|
selection: {
|
|
5054
|
-
type:
|
|
5044
|
+
type: PropType<JSONEditorSelection>;
|
|
5055
5045
|
default: any;
|
|
5056
5046
|
};
|
|
5057
5047
|
mode: {
|
|
5058
|
-
type:
|
|
5048
|
+
type: PropType<"table" | "text" | "tree">;
|
|
5059
5049
|
default: string;
|
|
5060
5050
|
};
|
|
5061
5051
|
mainMenuBar: {
|
|
5062
|
-
type:
|
|
5052
|
+
type: PropType<boolean>;
|
|
5063
5053
|
default: any;
|
|
5064
5054
|
};
|
|
5065
5055
|
navigationBar: {
|
|
5066
|
-
type:
|
|
5056
|
+
type: PropType<boolean>;
|
|
5067
5057
|
default: any;
|
|
5068
5058
|
};
|
|
5069
5059
|
statusBar: {
|
|
5070
|
-
type:
|
|
5060
|
+
type: PropType<boolean>;
|
|
5071
5061
|
default: any;
|
|
5072
5062
|
};
|
|
5073
5063
|
askToFormat: {
|
|
5074
|
-
type:
|
|
5064
|
+
type: PropType<boolean>;
|
|
5075
5065
|
default: any;
|
|
5076
5066
|
};
|
|
5077
5067
|
readOnly: {
|
|
5078
|
-
type:
|
|
5068
|
+
type: PropType<boolean>;
|
|
5079
5069
|
default: any;
|
|
5080
5070
|
};
|
|
5081
|
-
indentation:
|
|
5082
|
-
tabSize:
|
|
5071
|
+
indentation: PropType<string | number>;
|
|
5072
|
+
tabSize: PropType<number>;
|
|
5083
5073
|
escapeControlCharacters: {
|
|
5084
|
-
type:
|
|
5074
|
+
type: PropType<boolean>;
|
|
5085
5075
|
default: any;
|
|
5086
5076
|
};
|
|
5087
5077
|
escapeUnicodeCharacters: {
|
|
5088
|
-
type:
|
|
5078
|
+
type: PropType<boolean>;
|
|
5089
5079
|
default: any;
|
|
5090
5080
|
};
|
|
5091
5081
|
flattenColumns: {
|
|
5092
|
-
type:
|
|
5082
|
+
type: PropType<boolean>;
|
|
5093
5083
|
default: any;
|
|
5094
5084
|
};
|
|
5095
|
-
validator:
|
|
5096
|
-
parser:
|
|
5097
|
-
validationParser:
|
|
5098
|
-
pathParser:
|
|
5099
|
-
queryLanguagesIds:
|
|
5100
|
-
queryLanguageId:
|
|
5101
|
-
onClassName:
|
|
5102
|
-
onRenderValue:
|
|
5103
|
-
onRenderMenu:
|
|
5104
|
-
height:
|
|
5085
|
+
validator: PropType<Validator>;
|
|
5086
|
+
parser: PropType<JSONParser>;
|
|
5087
|
+
validationParser: PropType<JSONParser>;
|
|
5088
|
+
pathParser: PropType<JSONPathParser>;
|
|
5089
|
+
queryLanguagesIds: PropType<QueryLanguageId[]>;
|
|
5090
|
+
queryLanguageId: PropType<QueryLanguageId>;
|
|
5091
|
+
onClassName: PropType<OnClassName>;
|
|
5092
|
+
onRenderValue: PropType<OnRenderValue>;
|
|
5093
|
+
onRenderMenu: PropType<OnRenderMenu>;
|
|
5094
|
+
height: PropType<string | number>;
|
|
5105
5095
|
fullWidthButton: {
|
|
5106
|
-
type:
|
|
5096
|
+
type: PropType<boolean>;
|
|
5107
5097
|
default: any;
|
|
5108
5098
|
};
|
|
5109
5099
|
darkTheme: {
|
|
5110
|
-
type:
|
|
5100
|
+
type: PropType<boolean>;
|
|
5111
5101
|
default: any;
|
|
5112
5102
|
};
|
|
5113
5103
|
}>> & Readonly<{
|
|
@@ -5124,15 +5114,15 @@ onError?: (...args: any[]) => any;
|
|
|
5124
5114
|
onFocus?: (...args: any[]) => any;
|
|
5125
5115
|
onBlur?: (...args: any[]) => any;
|
|
5126
5116
|
}>, {
|
|
5127
|
-
max:
|
|
5128
|
-
getHeight:
|
|
5117
|
+
max: Ref<boolean, boolean>;
|
|
5118
|
+
getHeight: ComputedRef< {
|
|
5129
5119
|
height: string;
|
|
5130
5120
|
} | {
|
|
5131
5121
|
height?: undefined;
|
|
5132
5122
|
}>;
|
|
5133
|
-
container:
|
|
5134
|
-
darkThemeStyle:
|
|
5135
|
-
fallbackSlot:
|
|
5123
|
+
container: Ref<HTMLDivElement, HTMLDivElement>;
|
|
5124
|
+
darkThemeStyle: ComputedRef<boolean>;
|
|
5125
|
+
fallbackSlot: Ref<boolean, boolean>;
|
|
5136
5126
|
}, {}, {}, {}, {
|
|
5137
5127
|
selection: JSONEditorSelection;
|
|
5138
5128
|
mainMenuBar: boolean;
|
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": "2.8.
|
|
5
|
+
"version": "2.8.13",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@element-plus/icons-vue": "^2.3.2",
|
|
65
|
-
"@eslint/js": "^9.
|
|
65
|
+
"@eslint/js": "^9.35.0",
|
|
66
66
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
67
67
|
"@rollup/plugin-inject": "^5.0.5",
|
|
68
|
-
"@tailwindcss/vite": "^4.1.
|
|
68
|
+
"@tailwindcss/vite": "^4.1.13",
|
|
69
69
|
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
70
70
|
"@vueup/vue-quill": "^1.2.0",
|
|
71
71
|
"axios": "^1.11.0",
|
|
72
|
-
"element-plus": "^2.11.
|
|
72
|
+
"element-plus": "^2.11.2",
|
|
73
73
|
"eslint-config-prettier": "^10.1.8",
|
|
74
74
|
"eslint-plugin-prettier": "^5.5.4",
|
|
75
75
|
"globals": "^16.3.0",
|
|
@@ -83,15 +83,15 @@
|
|
|
83
83
|
"quill-image-uploader": "^1.3.0",
|
|
84
84
|
"smooth-signature": "^1.1.0",
|
|
85
85
|
"sortablejs": "^1.15.6",
|
|
86
|
-
"tailwindcss": "^4.1.
|
|
86
|
+
"tailwindcss": "^4.1.13",
|
|
87
87
|
"unplugin-auto-import": "^20.1.0",
|
|
88
88
|
"unplugin-element-plus": "^0.10.0",
|
|
89
89
|
"unplugin-vue-components": "^29.0.0",
|
|
90
|
-
"uuid": "^
|
|
90
|
+
"uuid": "^12.0.0",
|
|
91
91
|
"vite-plugin-dts": "^4.5.4",
|
|
92
92
|
"vue": "^3.5.21",
|
|
93
93
|
"vue-eslint-parser": "^10.2.0",
|
|
94
|
-
"vue-i18n": "^11.1.
|
|
94
|
+
"vue-i18n": "^11.1.12",
|
|
95
95
|
"vue-m-message": "^4.0.2",
|
|
96
96
|
"vue-router": "^4.5.1",
|
|
97
97
|
"vue3-barcode": "^1.0.1",
|
|
@@ -100,19 +100,19 @@
|
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@types/jquery": "^3.5.33",
|
|
103
|
-
"@types/node": "^24.3.
|
|
103
|
+
"@types/node": "^24.3.1",
|
|
104
104
|
"@types/prismjs": "^1.26.5",
|
|
105
105
|
"@types/sortablejs": "^1.15.8",
|
|
106
106
|
"@types/uuid": "^10.0.0",
|
|
107
107
|
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
|
108
108
|
"@typescript-eslint/parser": "^8.42.0",
|
|
109
109
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
110
|
-
"eslint": "^9.
|
|
110
|
+
"eslint": "^9.35.0",
|
|
111
111
|
"eslint-config-prettier": "^10.1.8",
|
|
112
112
|
"eslint-plugin-prettier": "^5.5.4",
|
|
113
113
|
"eslint-plugin-vue": "^10.4.0",
|
|
114
114
|
"prettier": "^3.6.2",
|
|
115
|
-
"sass-embedded": "^1.92.
|
|
115
|
+
"sass-embedded": "^1.92.1",
|
|
116
116
|
"terser": "^5.44.0",
|
|
117
117
|
"vite": "^7.1.4"
|
|
118
118
|
},
|