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