star-horse-lowcode 2.8.67 → 2.8.68
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 +5 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +5 -8
- package/dist/types/index.d.ts +41 -25
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { ComponentOptionsMixin } from 'vue';
|
|
|
11
11
|
import { ComponentProvideOptions } from 'vue';
|
|
12
12
|
import { ComponentPublicInstance } from 'vue';
|
|
13
13
|
import { ComputedRef } from 'vue';
|
|
14
|
+
import { Content } from 'vue3-ts-jsoneditor';
|
|
14
15
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
15
16
|
import { CSSProperties } from 'vue';
|
|
16
17
|
import { DebuggerEvent } from 'vue';
|
|
@@ -22,7 +23,9 @@ import { GlobalDirectives } from 'vue';
|
|
|
22
23
|
import { JSONEditorSelection } from 'vanilla-jsoneditor';
|
|
23
24
|
import { JSONParser } from 'vanilla-jsoneditor';
|
|
24
25
|
import { JSONPathParser } from 'vanilla-jsoneditor';
|
|
26
|
+
import { Mode } from 'vanilla-jsoneditor';
|
|
25
27
|
import { nextTick } from 'vue';
|
|
28
|
+
import { OnChangeStatus } from 'vanilla-jsoneditor';
|
|
26
29
|
import { OnClassName } from 'vanilla-jsoneditor';
|
|
27
30
|
import { OnCleanup } from '@vue/reactivity';
|
|
28
31
|
import { OnRenderMenu } from 'vanilla-jsoneditor';
|
|
@@ -6024,18 +6027,18 @@ type: PropType<boolean>;
|
|
|
6024
6027
|
default: any;
|
|
6025
6028
|
};
|
|
6026
6029
|
}>> & Readonly<{
|
|
6027
|
-
"onUpdate:modelValue"?: (
|
|
6028
|
-
"onUpdate:json"?: (
|
|
6029
|
-
"onUpdate:text"?: (
|
|
6030
|
-
"onUpdate:jsonString"?: (
|
|
6031
|
-
"onUpdate:selection"?: (
|
|
6032
|
-
onChange?: (
|
|
6033
|
-
onError?: (
|
|
6034
|
-
"onChange-mode"?: (
|
|
6035
|
-
"onUpdate:mode"?: (
|
|
6036
|
-
"onChange-query-language"?: (
|
|
6037
|
-
onFocus?: (
|
|
6038
|
-
onBlur?: (
|
|
6030
|
+
"onUpdate:modelValue"?: (args_0: unknown) => any;
|
|
6031
|
+
"onUpdate:json"?: (args_0: unknown) => any;
|
|
6032
|
+
"onUpdate:text"?: (args_0: string) => any;
|
|
6033
|
+
"onUpdate:jsonString"?: (args_0: string) => any;
|
|
6034
|
+
"onUpdate:selection"?: (args_0: JSONEditorSelection) => any;
|
|
6035
|
+
onChange?: (args_0: Content, args_1: Content, args_2: OnChangeStatus) => any;
|
|
6036
|
+
onError?: (args_0: Error) => any;
|
|
6037
|
+
"onChange-mode"?: (args_0: Mode) => any;
|
|
6038
|
+
"onUpdate:mode"?: (args_0: Mode) => any;
|
|
6039
|
+
"onChange-query-language"?: (args_0: QueryLanguageId) => any;
|
|
6040
|
+
onFocus?: () => any;
|
|
6041
|
+
onBlur?: () => any;
|
|
6039
6042
|
}>, {
|
|
6040
6043
|
max: Ref<boolean, boolean>;
|
|
6041
6044
|
getHeight: ComputedRef< {
|
|
@@ -6046,7 +6049,20 @@ height?: undefined;
|
|
|
6046
6049
|
container: Ref<HTMLDivElement, HTMLDivElement>;
|
|
6047
6050
|
darkThemeStyle: ComputedRef<boolean>;
|
|
6048
6051
|
fallbackSlot: Ref<boolean, boolean>;
|
|
6049
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin,
|
|
6052
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6053
|
+
'update:modelValue': (args_0: unknown) => boolean;
|
|
6054
|
+
'update:json': (args_0: unknown) => boolean;
|
|
6055
|
+
'update:text': (args_0: string) => boolean;
|
|
6056
|
+
'update:jsonString': (args_0: string) => boolean;
|
|
6057
|
+
'update:selection': (args_0: JSONEditorSelection) => boolean;
|
|
6058
|
+
change: (args_0: Content, args_1: Content, args_2: OnChangeStatus) => boolean;
|
|
6059
|
+
error: (args_0: Error) => boolean;
|
|
6060
|
+
'change-mode': (args_0: Mode) => boolean;
|
|
6061
|
+
'update:mode': (args_0: Mode) => boolean;
|
|
6062
|
+
'change-query-language': (args_0: QueryLanguageId) => boolean;
|
|
6063
|
+
focus: () => true;
|
|
6064
|
+
blur: () => true;
|
|
6065
|
+
}, PublicProps, {
|
|
6050
6066
|
selection: JSONEditorSelection;
|
|
6051
6067
|
mainMenuBar: boolean;
|
|
6052
6068
|
navigationBar: boolean;
|
|
@@ -6141,18 +6157,18 @@ type: PropType<boolean>;
|
|
|
6141
6157
|
default: any;
|
|
6142
6158
|
};
|
|
6143
6159
|
}>> & Readonly<{
|
|
6144
|
-
"onUpdate:modelValue"?: (
|
|
6145
|
-
"onUpdate:json"?: (
|
|
6146
|
-
"onUpdate:text"?: (
|
|
6147
|
-
"onUpdate:jsonString"?: (
|
|
6148
|
-
"onUpdate:selection"?: (
|
|
6149
|
-
onChange?: (
|
|
6150
|
-
onError?: (
|
|
6151
|
-
"onChange-mode"?: (
|
|
6152
|
-
"onUpdate:mode"?: (
|
|
6153
|
-
"onChange-query-language"?: (
|
|
6154
|
-
onFocus?: (
|
|
6155
|
-
onBlur?: (
|
|
6160
|
+
"onUpdate:modelValue"?: (args_0: unknown) => any;
|
|
6161
|
+
"onUpdate:json"?: (args_0: unknown) => any;
|
|
6162
|
+
"onUpdate:text"?: (args_0: string) => any;
|
|
6163
|
+
"onUpdate:jsonString"?: (args_0: string) => any;
|
|
6164
|
+
"onUpdate:selection"?: (args_0: JSONEditorSelection) => any;
|
|
6165
|
+
onChange?: (args_0: Content, args_1: Content, args_2: OnChangeStatus) => any;
|
|
6166
|
+
onError?: (args_0: Error) => any;
|
|
6167
|
+
"onChange-mode"?: (args_0: Mode) => any;
|
|
6168
|
+
"onUpdate:mode"?: (args_0: Mode) => any;
|
|
6169
|
+
"onChange-query-language"?: (args_0: QueryLanguageId) => any;
|
|
6170
|
+
onFocus?: () => any;
|
|
6171
|
+
onBlur?: () => any;
|
|
6156
6172
|
}>, {
|
|
6157
6173
|
max: Ref<boolean, boolean>;
|
|
6158
6174
|
getHeight: ComputedRef< {
|
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.68",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"vue-router": "^5.0.3",
|
|
103
103
|
"vue3-barcode": "^1.0.1",
|
|
104
104
|
"vue3-signature": "^0.4.4",
|
|
105
|
-
"vue3-ts-jsoneditor": "^3.3.
|
|
105
|
+
"vue3-ts-jsoneditor": "^3.3.2",
|
|
106
106
|
"vuedraggable-es": "^4.1.1"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
@@ -114,16 +114,16 @@
|
|
|
114
114
|
"@types/sortablejs": "^1.15.9",
|
|
115
115
|
"@typescript-eslint/eslint-plugin": "^8.57.0",
|
|
116
116
|
"@typescript-eslint/parser": "^8.57.0",
|
|
117
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
117
|
+
"@vitejs/plugin-vue": "^6.0.5",
|
|
118
118
|
"eslint": "^10.0.3",
|
|
119
119
|
"eslint-plugin-vue": "^10.8.0",
|
|
120
120
|
"globals": "^17.4.0",
|
|
121
121
|
"prettier": "^3.8.1",
|
|
122
|
-
"sass-embedded": "^1.
|
|
122
|
+
"sass-embedded": "^1.98.0",
|
|
123
123
|
"terser": "^5.46.0",
|
|
124
124
|
"unplugin-auto-import": "^21.0.0",
|
|
125
125
|
"unplugin-vue-components": "^31.0.0",
|
|
126
|
-
"vite": "^
|
|
126
|
+
"vite": "^8.0.0",
|
|
127
127
|
"vite-plugin-dts": "^4.5.4",
|
|
128
128
|
"vue-eslint-parser": "^10.4.0"
|
|
129
129
|
},
|