star-horse-lowcode 2.7.61 → 2.7.63
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 +2 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +1093 -831
- package/dist/types/index.d.ts +73 -83
- package/package.json +5 -5
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 { StoreDefinition } from 'pinia';
|
|
@@ -6488,76 +6478,76 @@ currentMode: string;
|
|
|
6488
6478
|
modeList: unknown[];
|
|
6489
6479
|
language: string;
|
|
6490
6480
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
6491
|
-
editor:
|
|
6492
|
-
modelValue:
|
|
6481
|
+
editor: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6482
|
+
modelValue: PropType<unknown>;
|
|
6493
6483
|
value: {
|
|
6494
|
-
type:
|
|
6484
|
+
type: PropType<unknown>;
|
|
6495
6485
|
default: any;
|
|
6496
6486
|
};
|
|
6497
6487
|
json: {
|
|
6498
|
-
type:
|
|
6488
|
+
type: PropType<unknown>;
|
|
6499
6489
|
default: any;
|
|
6500
6490
|
};
|
|
6501
|
-
text:
|
|
6502
|
-
jsonString:
|
|
6491
|
+
text: PropType<string>;
|
|
6492
|
+
jsonString: PropType<string>;
|
|
6503
6493
|
selection: {
|
|
6504
|
-
type:
|
|
6494
|
+
type: PropType<JSONEditorSelection>;
|
|
6505
6495
|
default: any;
|
|
6506
6496
|
};
|
|
6507
6497
|
mode: {
|
|
6508
|
-
type:
|
|
6498
|
+
type: PropType<"table" | "text" | "tree">;
|
|
6509
6499
|
default: string;
|
|
6510
6500
|
};
|
|
6511
6501
|
mainMenuBar: {
|
|
6512
|
-
type:
|
|
6502
|
+
type: PropType<boolean>;
|
|
6513
6503
|
default: any;
|
|
6514
6504
|
};
|
|
6515
6505
|
navigationBar: {
|
|
6516
|
-
type:
|
|
6506
|
+
type: PropType<boolean>;
|
|
6517
6507
|
default: any;
|
|
6518
6508
|
};
|
|
6519
6509
|
statusBar: {
|
|
6520
|
-
type:
|
|
6510
|
+
type: PropType<boolean>;
|
|
6521
6511
|
default: any;
|
|
6522
6512
|
};
|
|
6523
6513
|
askToFormat: {
|
|
6524
|
-
type:
|
|
6514
|
+
type: PropType<boolean>;
|
|
6525
6515
|
default: any;
|
|
6526
6516
|
};
|
|
6527
6517
|
readOnly: {
|
|
6528
|
-
type:
|
|
6518
|
+
type: PropType<boolean>;
|
|
6529
6519
|
default: any;
|
|
6530
6520
|
};
|
|
6531
|
-
indentation:
|
|
6532
|
-
tabSize:
|
|
6521
|
+
indentation: PropType<string | number>;
|
|
6522
|
+
tabSize: PropType<number>;
|
|
6533
6523
|
escapeControlCharacters: {
|
|
6534
|
-
type:
|
|
6524
|
+
type: PropType<boolean>;
|
|
6535
6525
|
default: any;
|
|
6536
6526
|
};
|
|
6537
6527
|
escapeUnicodeCharacters: {
|
|
6538
|
-
type:
|
|
6528
|
+
type: PropType<boolean>;
|
|
6539
6529
|
default: any;
|
|
6540
6530
|
};
|
|
6541
6531
|
flattenColumns: {
|
|
6542
|
-
type:
|
|
6532
|
+
type: PropType<boolean>;
|
|
6543
6533
|
default: any;
|
|
6544
6534
|
};
|
|
6545
|
-
validator:
|
|
6546
|
-
parser:
|
|
6547
|
-
validationParser:
|
|
6548
|
-
pathParser:
|
|
6549
|
-
queryLanguagesIds:
|
|
6550
|
-
queryLanguageId:
|
|
6551
|
-
onClassName:
|
|
6552
|
-
onRenderValue:
|
|
6553
|
-
onRenderMenu:
|
|
6554
|
-
height:
|
|
6535
|
+
validator: PropType<Validator>;
|
|
6536
|
+
parser: PropType<JSONParser>;
|
|
6537
|
+
validationParser: PropType<JSONParser>;
|
|
6538
|
+
pathParser: PropType<JSONPathParser>;
|
|
6539
|
+
queryLanguagesIds: PropType<QueryLanguageId[]>;
|
|
6540
|
+
queryLanguageId: PropType<QueryLanguageId>;
|
|
6541
|
+
onClassName: PropType<OnClassName>;
|
|
6542
|
+
onRenderValue: PropType<OnRenderValue>;
|
|
6543
|
+
onRenderMenu: PropType<OnRenderMenu>;
|
|
6544
|
+
height: PropType<string | number>;
|
|
6555
6545
|
fullWidthButton: {
|
|
6556
|
-
type:
|
|
6546
|
+
type: PropType<boolean>;
|
|
6557
6547
|
default: any;
|
|
6558
6548
|
};
|
|
6559
6549
|
darkTheme: {
|
|
6560
|
-
type:
|
|
6550
|
+
type: PropType<boolean>;
|
|
6561
6551
|
default: any;
|
|
6562
6552
|
};
|
|
6563
6553
|
}>> & Readonly<{
|
|
@@ -6574,16 +6564,16 @@ onError?: (...args: any[]) => any;
|
|
|
6574
6564
|
onFocus?: (...args: any[]) => any;
|
|
6575
6565
|
onBlur?: (...args: any[]) => any;
|
|
6576
6566
|
}>, {
|
|
6577
|
-
max:
|
|
6578
|
-
getHeight:
|
|
6567
|
+
max: Ref<boolean, boolean>;
|
|
6568
|
+
getHeight: ComputedRef< {
|
|
6579
6569
|
height: string;
|
|
6580
6570
|
} | {
|
|
6581
6571
|
height?: undefined;
|
|
6582
6572
|
}>;
|
|
6583
|
-
container:
|
|
6584
|
-
darkThemeStyle:
|
|
6585
|
-
fallbackSlot:
|
|
6586
|
-
}, {}, {}, {},
|
|
6573
|
+
container: Ref<HTMLDivElement, HTMLDivElement>;
|
|
6574
|
+
darkThemeStyle: ComputedRef<boolean>;
|
|
6575
|
+
fallbackSlot: Ref<boolean, boolean>;
|
|
6576
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("error" | "blur" | "change" | "focus" | "update:modelValue" | "update:json" | "update:text" | "update:jsonString" | "update:selection" | "change-mode" | "update:mode" | "change-query-language")[], PublicProps, {
|
|
6587
6577
|
selection: JSONEditorSelection;
|
|
6588
6578
|
mainMenuBar: boolean;
|
|
6589
6579
|
navigationBar: boolean;
|
|
@@ -6598,83 +6588,83 @@ fullWidthButton: boolean;
|
|
|
6598
6588
|
darkTheme: boolean;
|
|
6599
6589
|
value: any;
|
|
6600
6590
|
json: any;
|
|
6601
|
-
}, true, {}, {},
|
|
6591
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6602
6592
|
P: {};
|
|
6603
6593
|
B: {};
|
|
6604
6594
|
D: {};
|
|
6605
6595
|
C: {};
|
|
6606
6596
|
M: {};
|
|
6607
6597
|
Defaults: {};
|
|
6608
|
-
}, Readonly<
|
|
6609
|
-
modelValue:
|
|
6598
|
+
}, Readonly<ExtractPropTypes< {
|
|
6599
|
+
modelValue: PropType<unknown>;
|
|
6610
6600
|
value: {
|
|
6611
|
-
type:
|
|
6601
|
+
type: PropType<unknown>;
|
|
6612
6602
|
default: any;
|
|
6613
6603
|
};
|
|
6614
6604
|
json: {
|
|
6615
|
-
type:
|
|
6605
|
+
type: PropType<unknown>;
|
|
6616
6606
|
default: any;
|
|
6617
6607
|
};
|
|
6618
|
-
text:
|
|
6619
|
-
jsonString:
|
|
6608
|
+
text: PropType<string>;
|
|
6609
|
+
jsonString: PropType<string>;
|
|
6620
6610
|
selection: {
|
|
6621
|
-
type:
|
|
6611
|
+
type: PropType<JSONEditorSelection>;
|
|
6622
6612
|
default: any;
|
|
6623
6613
|
};
|
|
6624
6614
|
mode: {
|
|
6625
|
-
type:
|
|
6615
|
+
type: PropType<"table" | "text" | "tree">;
|
|
6626
6616
|
default: string;
|
|
6627
6617
|
};
|
|
6628
6618
|
mainMenuBar: {
|
|
6629
|
-
type:
|
|
6619
|
+
type: PropType<boolean>;
|
|
6630
6620
|
default: any;
|
|
6631
6621
|
};
|
|
6632
6622
|
navigationBar: {
|
|
6633
|
-
type:
|
|
6623
|
+
type: PropType<boolean>;
|
|
6634
6624
|
default: any;
|
|
6635
6625
|
};
|
|
6636
6626
|
statusBar: {
|
|
6637
|
-
type:
|
|
6627
|
+
type: PropType<boolean>;
|
|
6638
6628
|
default: any;
|
|
6639
6629
|
};
|
|
6640
6630
|
askToFormat: {
|
|
6641
|
-
type:
|
|
6631
|
+
type: PropType<boolean>;
|
|
6642
6632
|
default: any;
|
|
6643
6633
|
};
|
|
6644
6634
|
readOnly: {
|
|
6645
|
-
type:
|
|
6635
|
+
type: PropType<boolean>;
|
|
6646
6636
|
default: any;
|
|
6647
6637
|
};
|
|
6648
|
-
indentation:
|
|
6649
|
-
tabSize:
|
|
6638
|
+
indentation: PropType<string | number>;
|
|
6639
|
+
tabSize: PropType<number>;
|
|
6650
6640
|
escapeControlCharacters: {
|
|
6651
|
-
type:
|
|
6641
|
+
type: PropType<boolean>;
|
|
6652
6642
|
default: any;
|
|
6653
6643
|
};
|
|
6654
6644
|
escapeUnicodeCharacters: {
|
|
6655
|
-
type:
|
|
6645
|
+
type: PropType<boolean>;
|
|
6656
6646
|
default: any;
|
|
6657
6647
|
};
|
|
6658
6648
|
flattenColumns: {
|
|
6659
|
-
type:
|
|
6649
|
+
type: PropType<boolean>;
|
|
6660
6650
|
default: any;
|
|
6661
6651
|
};
|
|
6662
|
-
validator:
|
|
6663
|
-
parser:
|
|
6664
|
-
validationParser:
|
|
6665
|
-
pathParser:
|
|
6666
|
-
queryLanguagesIds:
|
|
6667
|
-
queryLanguageId:
|
|
6668
|
-
onClassName:
|
|
6669
|
-
onRenderValue:
|
|
6670
|
-
onRenderMenu:
|
|
6671
|
-
height:
|
|
6652
|
+
validator: PropType<Validator>;
|
|
6653
|
+
parser: PropType<JSONParser>;
|
|
6654
|
+
validationParser: PropType<JSONParser>;
|
|
6655
|
+
pathParser: PropType<JSONPathParser>;
|
|
6656
|
+
queryLanguagesIds: PropType<QueryLanguageId[]>;
|
|
6657
|
+
queryLanguageId: PropType<QueryLanguageId>;
|
|
6658
|
+
onClassName: PropType<OnClassName>;
|
|
6659
|
+
onRenderValue: PropType<OnRenderValue>;
|
|
6660
|
+
onRenderMenu: PropType<OnRenderMenu>;
|
|
6661
|
+
height: PropType<string | number>;
|
|
6672
6662
|
fullWidthButton: {
|
|
6673
|
-
type:
|
|
6663
|
+
type: PropType<boolean>;
|
|
6674
6664
|
default: any;
|
|
6675
6665
|
};
|
|
6676
6666
|
darkTheme: {
|
|
6677
|
-
type:
|
|
6667
|
+
type: PropType<boolean>;
|
|
6678
6668
|
default: any;
|
|
6679
6669
|
};
|
|
6680
6670
|
}>> & Readonly<{
|
|
@@ -6691,15 +6681,15 @@ onError?: (...args: any[]) => any;
|
|
|
6691
6681
|
onFocus?: (...args: any[]) => any;
|
|
6692
6682
|
onBlur?: (...args: any[]) => any;
|
|
6693
6683
|
}>, {
|
|
6694
|
-
max:
|
|
6695
|
-
getHeight:
|
|
6684
|
+
max: Ref<boolean, boolean>;
|
|
6685
|
+
getHeight: ComputedRef< {
|
|
6696
6686
|
height: string;
|
|
6697
6687
|
} | {
|
|
6698
6688
|
height?: undefined;
|
|
6699
6689
|
}>;
|
|
6700
|
-
container:
|
|
6701
|
-
darkThemeStyle:
|
|
6702
|
-
fallbackSlot:
|
|
6690
|
+
container: Ref<HTMLDivElement, HTMLDivElement>;
|
|
6691
|
+
darkThemeStyle: ComputedRef<boolean>;
|
|
6692
|
+
fallbackSlot: Ref<boolean, boolean>;
|
|
6703
6693
|
}, {}, {}, {}, {
|
|
6704
6694
|
selection: JSONEditorSelection;
|
|
6705
6695
|
mainMenuBar: boolean;
|
|
@@ -7267,7 +7257,7 @@ required: false;
|
|
|
7267
7257
|
}>, {
|
|
7268
7258
|
init: () => Promise<void>;
|
|
7269
7259
|
createSearchParams: (formData: SearchParams[], orderBy?: OrderByInfo[]) => void;
|
|
7270
|
-
loadByPage: () => void;
|
|
7260
|
+
loadByPage: (initPageInfo?: boolean) => void;
|
|
7271
7261
|
getIds: () => any;
|
|
7272
7262
|
getSelectedDatas: () => any;
|
|
7273
7263
|
multipleSelection: Ref<any, any>;
|
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.7.
|
|
5
|
+
"version": "2.7.63",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
69
69
|
"@vueup/vue-quill": "^1.2.0",
|
|
70
70
|
"axios": "^1.11.0",
|
|
71
|
-
"element-plus": "^2.10.
|
|
71
|
+
"element-plus": "^2.10.5",
|
|
72
72
|
"jquery": "^3.7.1",
|
|
73
73
|
"json5": "^2.2.3",
|
|
74
|
-
"md-editor-v3": "^5.8.
|
|
74
|
+
"md-editor-v3": "^5.8.4",
|
|
75
75
|
"path": "^0.12.7",
|
|
76
76
|
"pinia": "^3.0.3",
|
|
77
77
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -104,10 +104,10 @@
|
|
|
104
104
|
"@typescript-eslint/parser": "^8.38.0",
|
|
105
105
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
106
106
|
"eslint": "^9.32.0",
|
|
107
|
-
|
|
107
|
+
"prettier": "^3.6.2",
|
|
108
108
|
"eslint-config-prettier": "^10.1.8",
|
|
109
109
|
"eslint-plugin-prettier": "^5.5.3",
|
|
110
|
-
"eslint-plugin-vue": "^10.
|
|
110
|
+
"eslint-plugin-vue": "^10.4.0",
|
|
111
111
|
"sass-embedded": "^1.89.2",
|
|
112
112
|
"terser": "^5.43.1",
|
|
113
113
|
"vite": "^7.0.6"
|