@tmagic/editor 1.7.14-beta.0 → 1.7.14-beta.2
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/dist/es/components/ToolButton.vue_vue_type_script_setup_true_lang.js +6 -2
- package/dist/es/fields/StyleSetter/Index.vue_vue_type_script_setup_true_lang.js +2 -1
- package/dist/es/layouts/CodeEditor.vue_vue_type_script_setup_true_lang.js +8 -8
- package/dist/es/layouts/NavMenu.vue_vue_type_script_setup_true_lang.js +11 -11
- package/dist/es/layouts/NavMenuColumn.js +5 -0
- package/dist/es/layouts/NavMenuColumn.vue_vue_type_script_setup_true_lang.js +201 -0
- package/dist/es/services/storage.js +5 -5
- package/dist/es/style.css +51 -0
- package/dist/es/utils/keybinding-config.js +19 -19
- package/dist/style.css +51 -0
- package/dist/tmagic-editor.umd.cjs +267 -63
- package/package.json +8 -8
- package/src/components/ToolButton.vue +7 -1
- package/src/fields/StyleSetter/Index.vue +5 -1
- package/src/layouts/CodeEditor.vue +18 -10
- package/src/layouts/NavMenu.vue +9 -4
- package/src/layouts/NavMenuColumn.vue +252 -0
- package/src/theme/nav-menu.scss +61 -0
- package/src/type.ts +42 -0
- package/src/utils/undo-redo.ts +2 -0
- package/types/index.d.ts +420 -425
package/types/index.d.ts
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import formPlugin, { CascaderOption, ChangeRecord, CodeSelectColConfig, CodeSelectConfig, CondOpSelectConfig, ContainerChangeEventData, DataSourceFieldSelectConfig, DataSourceFieldsConfig, DataSourceInputConfig, DataSourceMethodSelectConfig, DataSourceMethodsConfig, DataSourceMocksConfig, DataSourceSelect, DisplayCondsConfig, EventSelectConfig, FieldProps, FormConfig, FormInstallOptions, FormState, FormValue, KeyValueConfig, PageFragmentSelectConfig, TabPaneConfig, TableColumnConfig, TypeFunction } from "@tmagic/form";
|
|
2
2
|
import tablePlugin from "@tmagic/table";
|
|
3
|
-
import * as _$_tmagic_stage0 from "@tmagic/stage";
|
|
4
3
|
import StageCore, { CanDropIn, ContainerHighlightType, CustomizeMoveableOptions, GuidesOptions, RenderType, UpdateDragEl, default as StageCore$1 } from "@tmagic/stage";
|
|
5
4
|
import designPlugin, { ButtonProps, DesignPluginOptions } from "@tmagic/design";
|
|
6
|
-
import * as _$gesto from "gesto";
|
|
7
5
|
import Gesto, { OnDrag, OnDrag as OnDrag$1 } from "gesto";
|
|
8
|
-
import * as _$_tmagic_core0 from "@tmagic/core";
|
|
9
6
|
import { CodeBlockContent, CodeBlockDSL, DataSchema, DataSourceFieldType, DataSourceSchema, DepData, DepExtendedData, DepTargetType, DepTargetType as DepTargetType$1, DisplayCond, EventOption, Id, MApp, MContainer, MNode, MPage, MPageFragment, NodeType, Target, TargetOptions } from "@tmagic/core";
|
|
10
|
-
import * as _$monaco_editor0 from "monaco-editor";
|
|
11
7
|
import { App, Component, ComputedRef, Ref, ShallowRef } from "vue";
|
|
12
8
|
import EventEmitter, { EventEmitter as EventEmitter$1 } from "events";
|
|
9
|
+
import * as Monaco from "monaco-editor";
|
|
13
10
|
import Sortable, { Options, SortableEvent } from "sortablejs";
|
|
14
11
|
import { PascalCasedProperties, Writable } from "type-fest";
|
|
15
|
-
import * as _$_tmagic_schema0 from "@tmagic/schema";
|
|
16
12
|
import { StyleSchema } from "@tmagic/schema";
|
|
17
|
-
import * as _$_vue_reactivity0 from "@vue/reactivity";
|
|
18
|
-
import * as _$_tmagic_form_schema0 from "@tmagic/form-schema";
|
|
19
|
-
import * as _$_vue_runtime_core0 from "@vue/runtime-core";
|
|
20
13
|
export * from "@tmagic/form";
|
|
21
14
|
export * from "@tmagic/table";
|
|
22
15
|
export * from "@tmagic/stage";
|
|
@@ -263,11 +256,11 @@ declare class DataSource extends export_default {
|
|
|
263
256
|
type: string;
|
|
264
257
|
title?: string;
|
|
265
258
|
description?: string;
|
|
266
|
-
fields:
|
|
267
|
-
methods:
|
|
268
|
-
mocks?:
|
|
269
|
-
events:
|
|
270
|
-
disabledInitInJsEngine?: (
|
|
259
|
+
fields: import("@tmagic/schema").DataSchema[];
|
|
260
|
+
methods: import("@tmagic/schema").CodeBlockContent[];
|
|
261
|
+
mocks?: import("@tmagic/schema").MockSchema[];
|
|
262
|
+
events: import("@tmagic/schema").EventConfig[];
|
|
263
|
+
disabledInitInJsEngine?: (import("@tmagic/schema").JsEngine | string)[];
|
|
271
264
|
};
|
|
272
265
|
update(config: DataSourceSchema, {
|
|
273
266
|
changeRecords
|
|
@@ -560,8 +553,8 @@ declare class UndoRedo<T = any> {
|
|
|
560
553
|
//#region temp/packages/editor/src/services/history.d.ts
|
|
561
554
|
declare class History extends export_default {
|
|
562
555
|
state: {
|
|
563
|
-
pageId?:
|
|
564
|
-
pageSteps: Record<
|
|
556
|
+
pageId?: import("@tmagic/schema").Id | undefined;
|
|
557
|
+
pageSteps: Record<import("@tmagic/schema").Id, UndoRedo<StepValue>>;
|
|
565
558
|
canRedo: boolean;
|
|
566
559
|
canUndo: boolean;
|
|
567
560
|
};
|
|
@@ -817,7 +810,7 @@ type AsyncMethodName$1 = Writable<(typeof canUsePluginMethods$1)['async']>;
|
|
|
817
810
|
declare class Ui extends export_default {
|
|
818
811
|
constructor();
|
|
819
812
|
set<K extends keyof UiState, T extends UiState[K]>(name: K, value: T): void;
|
|
820
|
-
get<K extends keyof UiState>(name: K):
|
|
813
|
+
get<K extends keyof UiState>(name: K): import("@vue/reactivity").ShallowReactive<UiState>[K];
|
|
821
814
|
zoom(zoom: number): Promise<void>;
|
|
822
815
|
calcZoom(): Promise<number>;
|
|
823
816
|
resetState(): void;
|
|
@@ -919,12 +912,12 @@ type BeforeAdd = (config: MNode, parent: MContainer) => Promise<MNode> | MNode;
|
|
|
919
912
|
type GetConfig = (config: FormConfig) => Promise<FormConfig> | FormConfig;
|
|
920
913
|
interface EditorInstallOptions {
|
|
921
914
|
parseDSL: <T = any>(dsl: string) => T;
|
|
922
|
-
customCreateMonacoEditor: (monaco: typeof
|
|
915
|
+
customCreateMonacoEditor: (monaco: typeof import('monaco-editor'), codeEditorEl: HTMLElement, options: Monaco.editor.IStandaloneEditorConstructionOptions & {
|
|
923
916
|
editorCustomType?: string;
|
|
924
|
-
}) => Promise<
|
|
925
|
-
customCreateMonacoDiffEditor: (monaco: typeof
|
|
917
|
+
}) => Promise<Monaco.editor.IStandaloneCodeEditor> | Monaco.editor.IStandaloneCodeEditor;
|
|
918
|
+
customCreateMonacoDiffEditor: (monaco: typeof import('monaco-editor'), codeEditorEl: HTMLElement, options: Monaco.editor.IStandaloneEditorConstructionOptions & {
|
|
926
919
|
editorCustomType?: string;
|
|
927
|
-
}) => Promise<
|
|
920
|
+
}) => Promise<Monaco.editor.IStandaloneDiffEditor> | Monaco.editor.IStandaloneDiffEditor;
|
|
928
921
|
[key: string]: any;
|
|
929
922
|
}
|
|
930
923
|
interface Services {
|
|
@@ -1505,13 +1498,13 @@ interface ContainerChangeEventData$1 {
|
|
|
1505
1498
|
//#endregion
|
|
1506
1499
|
//#region temp/packages/editor/src/hooks/use-code-block-edit.d.ts
|
|
1507
1500
|
declare const useCodeBlockEdit: (codeBlockService: Services["codeBlockService"]) => {
|
|
1508
|
-
codeId:
|
|
1509
|
-
codeConfig:
|
|
1501
|
+
codeId: import("@vue/reactivity").Ref<string | undefined, string | undefined>;
|
|
1502
|
+
codeConfig: import("@vue/reactivity").Ref<(Omit<CodeBlockContent, "content"> & {
|
|
1510
1503
|
content: string;
|
|
1511
1504
|
}) | undefined, (Omit<CodeBlockContent, "content"> & {
|
|
1512
1505
|
content: string;
|
|
1513
1506
|
}) | undefined>;
|
|
1514
|
-
codeBlockEditor: Readonly<
|
|
1507
|
+
codeBlockEditor: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1515
1508
|
content: Omit<CodeBlockContent, "content"> & {
|
|
1516
1509
|
content: string;
|
|
1517
1510
|
};
|
|
@@ -1530,13 +1523,13 @@ declare const useCodeBlockEdit: (codeBlockService: Services["codeBlockService"])
|
|
|
1530
1523
|
}>, {
|
|
1531
1524
|
show(): Promise<void>;
|
|
1532
1525
|
hide(): Promise<void>;
|
|
1533
|
-
}, {}, {}, {},
|
|
1526
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
1534
1527
|
close: () => any;
|
|
1535
1528
|
submit: (values: CodeBlockContent, eventData: ContainerChangeEventData$1) => any;
|
|
1536
1529
|
open: () => any;
|
|
1537
1530
|
"update:width": (value: number) => any;
|
|
1538
1531
|
"update:visible": (value: boolean) => any;
|
|
1539
|
-
},
|
|
1532
|
+
}, import("@vue/runtime-core").PublicProps, {}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
1540
1533
|
P: {};
|
|
1541
1534
|
B: {};
|
|
1542
1535
|
D: {};
|
|
@@ -1581,7 +1574,7 @@ interface State {
|
|
|
1581
1574
|
declare const useFloatBox: (slideKeys: ComputedRef<string[]>) => {
|
|
1582
1575
|
dragstartHandler: (e: DragEvent) => void;
|
|
1583
1576
|
dragendHandler: (key: string, e: DragEvent) => void;
|
|
1584
|
-
floatBoxStates:
|
|
1577
|
+
floatBoxStates: import("@vue/reactivity").Ref<{
|
|
1585
1578
|
[x: string]: State;
|
|
1586
1579
|
}, {
|
|
1587
1580
|
[x: string]: State;
|
|
@@ -1599,7 +1592,7 @@ declare const useWindowRect: () => {
|
|
|
1599
1592
|
//#endregion
|
|
1600
1593
|
//#region temp/packages/editor/src/hooks/use-editor-content-height.d.ts
|
|
1601
1594
|
declare const useEditorContentHeight: () => {
|
|
1602
|
-
height:
|
|
1595
|
+
height: import("@vue/reactivity").Ref<number, number>;
|
|
1603
1596
|
};
|
|
1604
1597
|
//#endregion
|
|
1605
1598
|
//#region temp/packages/editor/src/hooks/use-filter.d.ts
|
|
@@ -1610,7 +1603,7 @@ declare const useFilter: (nodeData: Ref<TreeNodeData[]>, nodeStatusMap: Ref<Map<
|
|
|
1610
1603
|
//#endregion
|
|
1611
1604
|
//#region temp/packages/editor/src/hooks/use-getso.d.ts
|
|
1612
1605
|
declare const useGetSo: (target: ShallowRef<HTMLElement | null>, emit: (evt: "change", e: OnDrag$1<Gesto>) => void) => {
|
|
1613
|
-
isDragging:
|
|
1606
|
+
isDragging: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
1614
1607
|
};
|
|
1615
1608
|
//#endregion
|
|
1616
1609
|
//#region temp/packages/editor/src/hooks/use-next-float-box-position.d.ts
|
|
@@ -1630,7 +1623,7 @@ declare const useNextFloatBoxPosition: (uiService: Services["uiService"], parent
|
|
|
1630
1623
|
//#endregion
|
|
1631
1624
|
//#region temp/packages/editor/src/hooks/use-node-status.d.ts
|
|
1632
1625
|
declare const useNodeStatus: (nodeData: ComputedRef<TreeNodeData[]>) => {
|
|
1633
|
-
nodeStatusMap:
|
|
1626
|
+
nodeStatusMap: import("@vue/reactivity").Ref<Map<Id, {
|
|
1634
1627
|
visible: boolean;
|
|
1635
1628
|
expand: boolean;
|
|
1636
1629
|
selected: boolean;
|
|
@@ -1722,14 +1715,14 @@ declare const getNodeIndex: (id: Id, parent: MContainer | MApp) => number;
|
|
|
1722
1715
|
declare const getRelativeStyle: (style?: Record<string, any>) => Record<string, any>;
|
|
1723
1716
|
declare const getInitPositionStyle: (style: Record<string, any> | undefined, layout: Layout) => Record<string, any>;
|
|
1724
1717
|
declare const setChildrenLayout: (node: MContainer, layout: Layout) => MContainer;
|
|
1725
|
-
declare const setLayout: (node: MNode, layout: Layout) =>
|
|
1718
|
+
declare const setLayout: (node: MNode, layout: Layout) => import("@tmagic/schema").MComponent | undefined;
|
|
1726
1719
|
declare const change2Fixed: (node: MNode, root: MApp) => {
|
|
1727
1720
|
[key: string]: any;
|
|
1728
1721
|
};
|
|
1729
1722
|
declare const Fixed2Other: (node: MNode, root: MApp, getLayout: (parent: MNode, node?: MNode) => Promise<Layout>) => Promise<Record<string, any>>;
|
|
1730
1723
|
declare const getGuideLineFromCache: (key: string) => number[];
|
|
1731
1724
|
declare const fixNodeLeft: (config: MNode, parent: MContainer, doc?: Document) => any;
|
|
1732
|
-
declare const fixNodePosition: (config: MNode, parent: MContainer, stage: StageCore$1 | null) =>
|
|
1725
|
+
declare const fixNodePosition: (config: MNode, parent: MContainer, stage: StageCore$1 | null) => import("@tmagic/schema").StyleSchema | undefined;
|
|
1733
1726
|
declare const serializeConfig: (config: any) => string;
|
|
1734
1727
|
declare const moveItemsInContainer: (sourceIndices: number[], parent: MContainer, targetIndex: number) => void;
|
|
1735
1728
|
declare const isIncludeDataSource: (node: MNode, oldNode: MNode) => boolean;
|
|
@@ -1929,7 +1922,7 @@ declare const H_GUIDE_LINE_STORAGE_KEY = "$MagicStageHorizontalGuidelinesData";
|
|
|
1929
1922
|
declare const V_GUIDE_LINE_STORAGE_KEY = "$MagicStageVerticalGuidelinesData";
|
|
1930
1923
|
//#endregion
|
|
1931
1924
|
//#region temp/packages/editor/src/utils/monaco-editor.d.ts
|
|
1932
|
-
declare const _default$41: () => Promise<typeof
|
|
1925
|
+
declare const _default$41: () => Promise<typeof import("monaco-editor")>;
|
|
1933
1926
|
//#endregion
|
|
1934
1927
|
//#region temp/packages/editor/src/editorProps.d.ts
|
|
1935
1928
|
interface EditorProps {
|
|
@@ -2046,46 +2039,46 @@ interface EditorProps {
|
|
|
2046
2039
|
//#endregion
|
|
2047
2040
|
//#region temp/packages/editor/src/Editor.vue.d.ts
|
|
2048
2041
|
type __VLS_Slots$12 = EditorSlots;
|
|
2049
|
-
declare const __VLS_base$12:
|
|
2042
|
+
declare const __VLS_base$12: import("@vue/runtime-core").DefineComponent<EditorProps, Services, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2050
2043
|
"update:modelValue": (value: MApp | null) => any;
|
|
2051
2044
|
"layer-node-dblclick": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2052
2045
|
"props-panel-mounted": (instance: {
|
|
2053
|
-
$:
|
|
2046
|
+
$: import("@vue/runtime-core").ComponentInternalInstance;
|
|
2054
2047
|
$data: {};
|
|
2055
2048
|
$props: {
|
|
2056
|
-
readonly config:
|
|
2057
|
-
readonly values:
|
|
2049
|
+
readonly config: import("@tmagic/form-schema").FormConfig;
|
|
2050
|
+
readonly values: import("@tmagic/form-schema").FormValue;
|
|
2058
2051
|
readonly disabledShowSrc?: boolean | undefined;
|
|
2059
2052
|
readonly labelWidth?: string | undefined;
|
|
2060
2053
|
readonly codeValueKey?: string | undefined;
|
|
2061
2054
|
readonly labelPosition?: string | undefined;
|
|
2062
|
-
readonly extendState?: ((_state:
|
|
2055
|
+
readonly extendState?: ((_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
2063
2056
|
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2064
2057
|
readonly onUnmounted?: (() => any) | undefined;
|
|
2065
2058
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2066
2059
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2067
2060
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
2068
|
-
} &
|
|
2069
|
-
$attrs:
|
|
2061
|
+
} & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps;
|
|
2062
|
+
$attrs: import("@vue/runtime-core").Attrs;
|
|
2070
2063
|
$refs: {
|
|
2071
2064
|
[x: string]: unknown;
|
|
2072
2065
|
};
|
|
2073
2066
|
$slots: Readonly<{
|
|
2074
|
-
[name: string]:
|
|
2067
|
+
[name: string]: import("@vue/runtime-core").Slot<any> | undefined;
|
|
2075
2068
|
}>;
|
|
2076
|
-
$root:
|
|
2077
|
-
$parent:
|
|
2069
|
+
$root: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
2070
|
+
$parent: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
2078
2071
|
$host: Element | null;
|
|
2079
2072
|
$emit: ((event: "mounted", internalInstance: any) => void) & ((event: "unmounted") => void) & ((event: "submit", values: any, eventData?: ContainerChangeEventData$1 | undefined) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
2080
2073
|
$el: any;
|
|
2081
|
-
$options:
|
|
2082
|
-
config:
|
|
2083
|
-
values:
|
|
2074
|
+
$options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<{
|
|
2075
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2076
|
+
values: import("@tmagic/form-schema").FormValue;
|
|
2084
2077
|
disabledShowSrc?: boolean;
|
|
2085
2078
|
labelWidth?: string;
|
|
2086
2079
|
codeValueKey?: string;
|
|
2087
2080
|
labelPosition?: string;
|
|
2088
|
-
extendState?: (_state:
|
|
2081
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2089
2082
|
}> & Readonly<{
|
|
2090
2083
|
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2091
2084
|
onUnmounted?: (() => any) | undefined;
|
|
@@ -2093,8 +2086,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2093
2086
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2094
2087
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2095
2088
|
}>, {
|
|
2096
|
-
configForm: Readonly<
|
|
2097
|
-
config:
|
|
2089
|
+
configForm: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2090
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2098
2091
|
initValues: Record<string, any>;
|
|
2099
2092
|
lastValues?: Record<string, any>;
|
|
2100
2093
|
isCompare?: boolean;
|
|
@@ -2109,7 +2102,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2109
2102
|
keyProp?: string;
|
|
2110
2103
|
popperClass?: string;
|
|
2111
2104
|
preventSubmitDefault?: boolean;
|
|
2112
|
-
extendState?: (_state:
|
|
2105
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2113
2106
|
}> & Readonly<{
|
|
2114
2107
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2115
2108
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2117,27 +2110,27 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2117
2110
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2118
2111
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2119
2112
|
}>, {
|
|
2120
|
-
values:
|
|
2121
|
-
lastValuesProcessed:
|
|
2122
|
-
formState:
|
|
2123
|
-
initialized:
|
|
2124
|
-
changeRecords:
|
|
2125
|
-
changeHandler: (v:
|
|
2113
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2114
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2115
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2116
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2117
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2118
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2126
2119
|
resetForm: () => void;
|
|
2127
2120
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2128
|
-
getTextByName: (name: string, config?:
|
|
2129
|
-
}, {}, {}, {},
|
|
2121
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2122
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2130
2123
|
error: (...args: any[]) => void;
|
|
2131
2124
|
change: (...args: any[]) => void;
|
|
2132
2125
|
"field-input": (...args: any[]) => void;
|
|
2133
2126
|
"field-change": (...args: any[]) => void;
|
|
2134
2127
|
"update:stepActive": (...args: any[]) => void;
|
|
2135
|
-
},
|
|
2128
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
2136
2129
|
disabled: boolean;
|
|
2137
2130
|
labelWidth: string;
|
|
2138
2131
|
inline: boolean;
|
|
2139
2132
|
labelPosition: string;
|
|
2140
|
-
config:
|
|
2133
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2141
2134
|
height: string;
|
|
2142
2135
|
initValues: Record<string, any>;
|
|
2143
2136
|
lastValues: Record<string, any>;
|
|
@@ -2145,7 +2138,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2145
2138
|
keyProp: string;
|
|
2146
2139
|
parentValues: Record<string, any>;
|
|
2147
2140
|
stepActive: string | number;
|
|
2148
|
-
}, false, {}, {},
|
|
2141
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
2149
2142
|
P: {};
|
|
2150
2143
|
B: {};
|
|
2151
2144
|
D: {};
|
|
@@ -2153,7 +2146,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2153
2146
|
M: {};
|
|
2154
2147
|
Defaults: {};
|
|
2155
2148
|
}, Readonly<{
|
|
2156
|
-
config:
|
|
2149
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2157
2150
|
initValues: Record<string, any>;
|
|
2158
2151
|
lastValues?: Record<string, any>;
|
|
2159
2152
|
isCompare?: boolean;
|
|
@@ -2168,7 +2161,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2168
2161
|
keyProp?: string;
|
|
2169
2162
|
popperClass?: string;
|
|
2170
2163
|
preventSubmitDefault?: boolean;
|
|
2171
|
-
extendState?: (_state:
|
|
2164
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2172
2165
|
}> & Readonly<{
|
|
2173
2166
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2174
2167
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2176,21 +2169,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2176
2169
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2177
2170
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2178
2171
|
}>, {
|
|
2179
|
-
values:
|
|
2180
|
-
lastValuesProcessed:
|
|
2181
|
-
formState:
|
|
2182
|
-
initialized:
|
|
2183
|
-
changeRecords:
|
|
2184
|
-
changeHandler: (v:
|
|
2172
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2173
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2174
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2175
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2176
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2177
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2185
2178
|
resetForm: () => void;
|
|
2186
2179
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2187
|
-
getTextByName: (name: string, config?:
|
|
2180
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2188
2181
|
}, {}, {}, {}, {
|
|
2189
2182
|
disabled: boolean;
|
|
2190
2183
|
labelWidth: string;
|
|
2191
2184
|
inline: boolean;
|
|
2192
2185
|
labelPosition: string;
|
|
2193
|
-
config:
|
|
2186
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2194
2187
|
height: string;
|
|
2195
2188
|
initValues: Record<string, any>;
|
|
2196
2189
|
lastValues: Record<string, any>;
|
|
@@ -2199,14 +2192,14 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2199
2192
|
parentValues: Record<string, any>;
|
|
2200
2193
|
stepActive: string | number;
|
|
2201
2194
|
}> | null>>;
|
|
2202
|
-
submit: (v:
|
|
2203
|
-
}, {}, {}, {},
|
|
2195
|
+
submit: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2196
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2204
2197
|
mounted: (internalInstance: any) => any;
|
|
2205
2198
|
unmounted: () => any;
|
|
2206
2199
|
submit: (values: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2207
2200
|
"submit-error": (e: any) => any;
|
|
2208
2201
|
"form-error": (e: any) => any;
|
|
2209
|
-
}, string, {}, {}, string, {},
|
|
2202
|
+
}, string, {}, {}, string, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, import("@vue/runtime-core").ComponentProvideOptions> & {
|
|
2210
2203
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2211
2204
|
created?: (() => void) | (() => void)[];
|
|
2212
2205
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -2219,21 +2212,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2219
2212
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
2220
2213
|
destroyed?: (() => void) | (() => void)[];
|
|
2221
2214
|
unmounted?: (() => void) | (() => void)[];
|
|
2222
|
-
renderTracked?: ((e:
|
|
2223
|
-
renderTriggered?: ((e:
|
|
2224
|
-
errorCaptured?: ((err: unknown, instance:
|
|
2215
|
+
renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
2216
|
+
renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
2217
|
+
errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2225
2218
|
};
|
|
2226
2219
|
$forceUpdate: () => void;
|
|
2227
|
-
$nextTick: typeof
|
|
2228
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R,
|
|
2220
|
+
$nextTick: typeof import("@vue/runtime-core").nextTick;
|
|
2221
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("@vue/runtime-core").WatchOptions): import("@vue/reactivity").WatchStopHandle;
|
|
2229
2222
|
} & Readonly<{}> & Omit<Readonly<{
|
|
2230
|
-
config:
|
|
2231
|
-
values:
|
|
2223
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2224
|
+
values: import("@tmagic/form-schema").FormValue;
|
|
2232
2225
|
disabledShowSrc?: boolean;
|
|
2233
2226
|
labelWidth?: string;
|
|
2234
2227
|
codeValueKey?: string;
|
|
2235
2228
|
labelPosition?: string;
|
|
2236
|
-
extendState?: (_state:
|
|
2229
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2237
2230
|
}> & Readonly<{
|
|
2238
2231
|
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2239
2232
|
onUnmounted?: (() => any) | undefined;
|
|
@@ -2241,8 +2234,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2241
2234
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2242
2235
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2243
2236
|
}>, "submit" | "configForm"> & {
|
|
2244
|
-
configForm:
|
|
2245
|
-
config:
|
|
2237
|
+
configForm: import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2238
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2246
2239
|
initValues: Record<string, any>;
|
|
2247
2240
|
lastValues?: Record<string, any>;
|
|
2248
2241
|
isCompare?: boolean;
|
|
@@ -2257,7 +2250,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2257
2250
|
keyProp?: string;
|
|
2258
2251
|
popperClass?: string;
|
|
2259
2252
|
preventSubmitDefault?: boolean;
|
|
2260
|
-
extendState?: (_state:
|
|
2253
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2261
2254
|
}> & Readonly<{
|
|
2262
2255
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2263
2256
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2265,27 +2258,27 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2265
2258
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2266
2259
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2267
2260
|
}>, {
|
|
2268
|
-
values:
|
|
2269
|
-
lastValuesProcessed:
|
|
2270
|
-
formState:
|
|
2271
|
-
initialized:
|
|
2272
|
-
changeRecords:
|
|
2273
|
-
changeHandler: (v:
|
|
2261
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2262
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2263
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2264
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2265
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2266
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2274
2267
|
resetForm: () => void;
|
|
2275
2268
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2276
|
-
getTextByName: (name: string, config?:
|
|
2277
|
-
}, {}, {}, {},
|
|
2269
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2270
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2278
2271
|
error: (...args: any[]) => void;
|
|
2279
2272
|
change: (...args: any[]) => void;
|
|
2280
2273
|
"field-input": (...args: any[]) => void;
|
|
2281
2274
|
"field-change": (...args: any[]) => void;
|
|
2282
2275
|
"update:stepActive": (...args: any[]) => void;
|
|
2283
|
-
},
|
|
2276
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
2284
2277
|
disabled: boolean;
|
|
2285
2278
|
labelWidth: string;
|
|
2286
2279
|
inline: boolean;
|
|
2287
2280
|
labelPosition: string;
|
|
2288
|
-
config:
|
|
2281
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2289
2282
|
height: string;
|
|
2290
2283
|
initValues: Record<string, any>;
|
|
2291
2284
|
lastValues: Record<string, any>;
|
|
@@ -2293,7 +2286,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2293
2286
|
keyProp: string;
|
|
2294
2287
|
parentValues: Record<string, any>;
|
|
2295
2288
|
stepActive: string | number;
|
|
2296
|
-
}, false, {}, {},
|
|
2289
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
2297
2290
|
P: {};
|
|
2298
2291
|
B: {};
|
|
2299
2292
|
D: {};
|
|
@@ -2301,7 +2294,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2301
2294
|
M: {};
|
|
2302
2295
|
Defaults: {};
|
|
2303
2296
|
}, Readonly<{
|
|
2304
|
-
config:
|
|
2297
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2305
2298
|
initValues: Record<string, any>;
|
|
2306
2299
|
lastValues?: Record<string, any>;
|
|
2307
2300
|
isCompare?: boolean;
|
|
@@ -2316,7 +2309,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2316
2309
|
keyProp?: string;
|
|
2317
2310
|
popperClass?: string;
|
|
2318
2311
|
preventSubmitDefault?: boolean;
|
|
2319
|
-
extendState?: (_state:
|
|
2312
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2320
2313
|
}> & Readonly<{
|
|
2321
2314
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2322
2315
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2324,21 +2317,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2324
2317
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2325
2318
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2326
2319
|
}>, {
|
|
2327
|
-
values:
|
|
2328
|
-
lastValuesProcessed:
|
|
2329
|
-
formState:
|
|
2330
|
-
initialized:
|
|
2331
|
-
changeRecords:
|
|
2332
|
-
changeHandler: (v:
|
|
2320
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2321
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2322
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2323
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2324
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2325
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2333
2326
|
resetForm: () => void;
|
|
2334
2327
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2335
|
-
getTextByName: (name: string, config?:
|
|
2328
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2336
2329
|
}, {}, {}, {}, {
|
|
2337
2330
|
disabled: boolean;
|
|
2338
2331
|
labelWidth: string;
|
|
2339
2332
|
inline: boolean;
|
|
2340
2333
|
labelPosition: string;
|
|
2341
|
-
config:
|
|
2334
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2342
2335
|
height: string;
|
|
2343
2336
|
initValues: Record<string, any>;
|
|
2344
2337
|
lastValues: Record<string, any>;
|
|
@@ -2347,8 +2340,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2347
2340
|
parentValues: Record<string, any>;
|
|
2348
2341
|
stepActive: string | number;
|
|
2349
2342
|
}> | null;
|
|
2350
|
-
submit: (v:
|
|
2351
|
-
} & {} &
|
|
2343
|
+
submit: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2344
|
+
} & {} & import("@vue/runtime-core").ComponentCustomProperties & {} & {
|
|
2352
2345
|
$slots: {
|
|
2353
2346
|
'props-form-panel-header'(_props: {}): any;
|
|
2354
2347
|
};
|
|
@@ -2356,46 +2349,46 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2356
2349
|
"props-panel-unmounted": () => any;
|
|
2357
2350
|
"props-form-error": (e: any) => any;
|
|
2358
2351
|
"props-submit-error": (e: any) => any;
|
|
2359
|
-
}, string,
|
|
2352
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<EditorProps> & Readonly<{
|
|
2360
2353
|
"onUpdate:modelValue"?: ((value: MApp | null) => any) | undefined;
|
|
2361
2354
|
"onLayer-node-dblclick"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2362
2355
|
"onProps-panel-mounted"?: ((instance: {
|
|
2363
|
-
$:
|
|
2356
|
+
$: import("@vue/runtime-core").ComponentInternalInstance;
|
|
2364
2357
|
$data: {};
|
|
2365
2358
|
$props: {
|
|
2366
|
-
readonly config:
|
|
2367
|
-
readonly values:
|
|
2359
|
+
readonly config: import("@tmagic/form-schema").FormConfig;
|
|
2360
|
+
readonly values: import("@tmagic/form-schema").FormValue;
|
|
2368
2361
|
readonly disabledShowSrc?: boolean | undefined;
|
|
2369
2362
|
readonly labelWidth?: string | undefined;
|
|
2370
2363
|
readonly codeValueKey?: string | undefined;
|
|
2371
2364
|
readonly labelPosition?: string | undefined;
|
|
2372
|
-
readonly extendState?: ((_state:
|
|
2365
|
+
readonly extendState?: ((_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
2373
2366
|
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2374
2367
|
readonly onUnmounted?: (() => any) | undefined;
|
|
2375
2368
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2376
2369
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2377
2370
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
2378
|
-
} &
|
|
2379
|
-
$attrs:
|
|
2371
|
+
} & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps;
|
|
2372
|
+
$attrs: import("@vue/runtime-core").Attrs;
|
|
2380
2373
|
$refs: {
|
|
2381
2374
|
[x: string]: unknown;
|
|
2382
2375
|
};
|
|
2383
2376
|
$slots: Readonly<{
|
|
2384
|
-
[name: string]:
|
|
2377
|
+
[name: string]: import("@vue/runtime-core").Slot<any> | undefined;
|
|
2385
2378
|
}>;
|
|
2386
|
-
$root:
|
|
2387
|
-
$parent:
|
|
2379
|
+
$root: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
2380
|
+
$parent: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
2388
2381
|
$host: Element | null;
|
|
2389
2382
|
$emit: ((event: "mounted", internalInstance: any) => void) & ((event: "unmounted") => void) & ((event: "submit", values: any, eventData?: ContainerChangeEventData$1 | undefined) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
2390
2383
|
$el: any;
|
|
2391
|
-
$options:
|
|
2392
|
-
config:
|
|
2393
|
-
values:
|
|
2384
|
+
$options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<{
|
|
2385
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2386
|
+
values: import("@tmagic/form-schema").FormValue;
|
|
2394
2387
|
disabledShowSrc?: boolean;
|
|
2395
2388
|
labelWidth?: string;
|
|
2396
2389
|
codeValueKey?: string;
|
|
2397
2390
|
labelPosition?: string;
|
|
2398
|
-
extendState?: (_state:
|
|
2391
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2399
2392
|
}> & Readonly<{
|
|
2400
2393
|
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2401
2394
|
onUnmounted?: (() => any) | undefined;
|
|
@@ -2403,8 +2396,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2403
2396
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2404
2397
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2405
2398
|
}>, {
|
|
2406
|
-
configForm: Readonly<
|
|
2407
|
-
config:
|
|
2399
|
+
configForm: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2400
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2408
2401
|
initValues: Record<string, any>;
|
|
2409
2402
|
lastValues?: Record<string, any>;
|
|
2410
2403
|
isCompare?: boolean;
|
|
@@ -2419,7 +2412,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2419
2412
|
keyProp?: string;
|
|
2420
2413
|
popperClass?: string;
|
|
2421
2414
|
preventSubmitDefault?: boolean;
|
|
2422
|
-
extendState?: (_state:
|
|
2415
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2423
2416
|
}> & Readonly<{
|
|
2424
2417
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2425
2418
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2427,27 +2420,27 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2427
2420
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2428
2421
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2429
2422
|
}>, {
|
|
2430
|
-
values:
|
|
2431
|
-
lastValuesProcessed:
|
|
2432
|
-
formState:
|
|
2433
|
-
initialized:
|
|
2434
|
-
changeRecords:
|
|
2435
|
-
changeHandler: (v:
|
|
2423
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2424
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2425
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2426
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2427
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2428
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2436
2429
|
resetForm: () => void;
|
|
2437
2430
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2438
|
-
getTextByName: (name: string, config?:
|
|
2439
|
-
}, {}, {}, {},
|
|
2431
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2432
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2440
2433
|
error: (...args: any[]) => void;
|
|
2441
2434
|
change: (...args: any[]) => void;
|
|
2442
2435
|
"field-input": (...args: any[]) => void;
|
|
2443
2436
|
"field-change": (...args: any[]) => void;
|
|
2444
2437
|
"update:stepActive": (...args: any[]) => void;
|
|
2445
|
-
},
|
|
2438
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
2446
2439
|
disabled: boolean;
|
|
2447
2440
|
labelWidth: string;
|
|
2448
2441
|
inline: boolean;
|
|
2449
2442
|
labelPosition: string;
|
|
2450
|
-
config:
|
|
2443
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2451
2444
|
height: string;
|
|
2452
2445
|
initValues: Record<string, any>;
|
|
2453
2446
|
lastValues: Record<string, any>;
|
|
@@ -2455,7 +2448,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2455
2448
|
keyProp: string;
|
|
2456
2449
|
parentValues: Record<string, any>;
|
|
2457
2450
|
stepActive: string | number;
|
|
2458
|
-
}, false, {}, {},
|
|
2451
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
2459
2452
|
P: {};
|
|
2460
2453
|
B: {};
|
|
2461
2454
|
D: {};
|
|
@@ -2463,7 +2456,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2463
2456
|
M: {};
|
|
2464
2457
|
Defaults: {};
|
|
2465
2458
|
}, Readonly<{
|
|
2466
|
-
config:
|
|
2459
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2467
2460
|
initValues: Record<string, any>;
|
|
2468
2461
|
lastValues?: Record<string, any>;
|
|
2469
2462
|
isCompare?: boolean;
|
|
@@ -2478,7 +2471,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2478
2471
|
keyProp?: string;
|
|
2479
2472
|
popperClass?: string;
|
|
2480
2473
|
preventSubmitDefault?: boolean;
|
|
2481
|
-
extendState?: (_state:
|
|
2474
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2482
2475
|
}> & Readonly<{
|
|
2483
2476
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2484
2477
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2486,21 +2479,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2486
2479
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2487
2480
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2488
2481
|
}>, {
|
|
2489
|
-
values:
|
|
2490
|
-
lastValuesProcessed:
|
|
2491
|
-
formState:
|
|
2492
|
-
initialized:
|
|
2493
|
-
changeRecords:
|
|
2494
|
-
changeHandler: (v:
|
|
2482
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2483
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2484
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2485
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2486
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2487
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2495
2488
|
resetForm: () => void;
|
|
2496
2489
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2497
|
-
getTextByName: (name: string, config?:
|
|
2490
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2498
2491
|
}, {}, {}, {}, {
|
|
2499
2492
|
disabled: boolean;
|
|
2500
2493
|
labelWidth: string;
|
|
2501
2494
|
inline: boolean;
|
|
2502
2495
|
labelPosition: string;
|
|
2503
|
-
config:
|
|
2496
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2504
2497
|
height: string;
|
|
2505
2498
|
initValues: Record<string, any>;
|
|
2506
2499
|
lastValues: Record<string, any>;
|
|
@@ -2509,14 +2502,14 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2509
2502
|
parentValues: Record<string, any>;
|
|
2510
2503
|
stepActive: string | number;
|
|
2511
2504
|
}> | null>>;
|
|
2512
|
-
submit: (v:
|
|
2513
|
-
}, {}, {}, {},
|
|
2505
|
+
submit: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2506
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2514
2507
|
mounted: (internalInstance: any) => any;
|
|
2515
2508
|
unmounted: () => any;
|
|
2516
2509
|
submit: (values: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2517
2510
|
"submit-error": (e: any) => any;
|
|
2518
2511
|
"form-error": (e: any) => any;
|
|
2519
|
-
}, string, {}, {}, string, {},
|
|
2512
|
+
}, string, {}, {}, string, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, import("@vue/runtime-core").ComponentProvideOptions> & {
|
|
2520
2513
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2521
2514
|
created?: (() => void) | (() => void)[];
|
|
2522
2515
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -2529,21 +2522,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2529
2522
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
2530
2523
|
destroyed?: (() => void) | (() => void)[];
|
|
2531
2524
|
unmounted?: (() => void) | (() => void)[];
|
|
2532
|
-
renderTracked?: ((e:
|
|
2533
|
-
renderTriggered?: ((e:
|
|
2534
|
-
errorCaptured?: ((err: unknown, instance:
|
|
2525
|
+
renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
2526
|
+
renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
2527
|
+
errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2535
2528
|
};
|
|
2536
2529
|
$forceUpdate: () => void;
|
|
2537
|
-
$nextTick: typeof
|
|
2538
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R,
|
|
2530
|
+
$nextTick: typeof import("@vue/runtime-core").nextTick;
|
|
2531
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("@vue/runtime-core").WatchOptions): import("@vue/reactivity").WatchStopHandle;
|
|
2539
2532
|
} & Readonly<{}> & Omit<Readonly<{
|
|
2540
|
-
config:
|
|
2541
|
-
values:
|
|
2533
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2534
|
+
values: import("@tmagic/form-schema").FormValue;
|
|
2542
2535
|
disabledShowSrc?: boolean;
|
|
2543
2536
|
labelWidth?: string;
|
|
2544
2537
|
codeValueKey?: string;
|
|
2545
2538
|
labelPosition?: string;
|
|
2546
|
-
extendState?: (_state:
|
|
2539
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2547
2540
|
}> & Readonly<{
|
|
2548
2541
|
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2549
2542
|
onUnmounted?: (() => any) | undefined;
|
|
@@ -2551,8 +2544,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2551
2544
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2552
2545
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2553
2546
|
}>, "submit" | "configForm"> & {
|
|
2554
|
-
configForm:
|
|
2555
|
-
config:
|
|
2547
|
+
configForm: import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2548
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2556
2549
|
initValues: Record<string, any>;
|
|
2557
2550
|
lastValues?: Record<string, any>;
|
|
2558
2551
|
isCompare?: boolean;
|
|
@@ -2567,7 +2560,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2567
2560
|
keyProp?: string;
|
|
2568
2561
|
popperClass?: string;
|
|
2569
2562
|
preventSubmitDefault?: boolean;
|
|
2570
|
-
extendState?: (_state:
|
|
2563
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2571
2564
|
}> & Readonly<{
|
|
2572
2565
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2573
2566
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2575,27 +2568,27 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2575
2568
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2576
2569
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2577
2570
|
}>, {
|
|
2578
|
-
values:
|
|
2579
|
-
lastValuesProcessed:
|
|
2580
|
-
formState:
|
|
2581
|
-
initialized:
|
|
2582
|
-
changeRecords:
|
|
2583
|
-
changeHandler: (v:
|
|
2571
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2572
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2573
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2574
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2575
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2576
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2584
2577
|
resetForm: () => void;
|
|
2585
2578
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2586
|
-
getTextByName: (name: string, config?:
|
|
2587
|
-
}, {}, {}, {},
|
|
2579
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2580
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2588
2581
|
error: (...args: any[]) => void;
|
|
2589
2582
|
change: (...args: any[]) => void;
|
|
2590
2583
|
"field-input": (...args: any[]) => void;
|
|
2591
2584
|
"field-change": (...args: any[]) => void;
|
|
2592
2585
|
"update:stepActive": (...args: any[]) => void;
|
|
2593
|
-
},
|
|
2586
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
2594
2587
|
disabled: boolean;
|
|
2595
2588
|
labelWidth: string;
|
|
2596
2589
|
inline: boolean;
|
|
2597
2590
|
labelPosition: string;
|
|
2598
|
-
config:
|
|
2591
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2599
2592
|
height: string;
|
|
2600
2593
|
initValues: Record<string, any>;
|
|
2601
2594
|
lastValues: Record<string, any>;
|
|
@@ -2603,7 +2596,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2603
2596
|
keyProp: string;
|
|
2604
2597
|
parentValues: Record<string, any>;
|
|
2605
2598
|
stepActive: string | number;
|
|
2606
|
-
}, false, {}, {},
|
|
2599
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
2607
2600
|
P: {};
|
|
2608
2601
|
B: {};
|
|
2609
2602
|
D: {};
|
|
@@ -2611,7 +2604,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2611
2604
|
M: {};
|
|
2612
2605
|
Defaults: {};
|
|
2613
2606
|
}, Readonly<{
|
|
2614
|
-
config:
|
|
2607
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2615
2608
|
initValues: Record<string, any>;
|
|
2616
2609
|
lastValues?: Record<string, any>;
|
|
2617
2610
|
isCompare?: boolean;
|
|
@@ -2626,7 +2619,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2626
2619
|
keyProp?: string;
|
|
2627
2620
|
popperClass?: string;
|
|
2628
2621
|
preventSubmitDefault?: boolean;
|
|
2629
|
-
extendState?: (_state:
|
|
2622
|
+
extendState?: (_state: import("@tmagic/form-schema").FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2630
2623
|
}> & Readonly<{
|
|
2631
2624
|
onError?: ((...args: any[]) => any) | undefined;
|
|
2632
2625
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2634,21 +2627,21 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2634
2627
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2635
2628
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
2636
2629
|
}>, {
|
|
2637
|
-
values:
|
|
2638
|
-
lastValuesProcessed:
|
|
2639
|
-
formState:
|
|
2640
|
-
initialized:
|
|
2641
|
-
changeRecords:
|
|
2642
|
-
changeHandler: (v:
|
|
2630
|
+
values: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2631
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<import("@tmagic/form-schema").FormValue, import("@tmagic/form-schema").FormValue>;
|
|
2632
|
+
formState: import("@tmagic/form-schema").FormState;
|
|
2633
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
2634
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
2635
|
+
changeHandler: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2643
2636
|
resetForm: () => void;
|
|
2644
2637
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2645
|
-
getTextByName: (name: string, config?:
|
|
2638
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
2646
2639
|
}, {}, {}, {}, {
|
|
2647
2640
|
disabled: boolean;
|
|
2648
2641
|
labelWidth: string;
|
|
2649
2642
|
inline: boolean;
|
|
2650
2643
|
labelPosition: string;
|
|
2651
|
-
config:
|
|
2644
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
2652
2645
|
height: string;
|
|
2653
2646
|
initValues: Record<string, any>;
|
|
2654
2647
|
lastValues: Record<string, any>;
|
|
@@ -2657,8 +2650,8 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2657
2650
|
parentValues: Record<string, any>;
|
|
2658
2651
|
stepActive: string | number;
|
|
2659
2652
|
}> | null;
|
|
2660
|
-
submit: (v:
|
|
2661
|
-
} & {} &
|
|
2653
|
+
submit: (v: import("@tmagic/form-schema").FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2654
|
+
} & {} & import("@vue/runtime-core").ComponentCustomProperties & {} & {
|
|
2662
2655
|
$slots: {
|
|
2663
2656
|
'props-form-panel-header'(_props: {}): any;
|
|
2664
2657
|
};
|
|
@@ -2671,7 +2664,7 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2671
2664
|
codeOptions: {
|
|
2672
2665
|
[key: string]: any;
|
|
2673
2666
|
};
|
|
2674
|
-
renderType:
|
|
2667
|
+
renderType: import("@tmagic/stage").RenderType;
|
|
2675
2668
|
disabledDataSource: boolean;
|
|
2676
2669
|
disabledCodeBlock: boolean;
|
|
2677
2670
|
disabledMultiSelect: boolean;
|
|
@@ -2686,18 +2679,18 @@ declare const __VLS_base$12: _$_vue_runtime_core0.DefineComponent<EditorProps, S
|
|
|
2686
2679
|
stageContentMenu: (MenuButton | MenuComponent)[];
|
|
2687
2680
|
disabledStageOverlay: boolean;
|
|
2688
2681
|
datasourceList: DatasourceTypeOption[];
|
|
2689
|
-
propsConfigs: Record<string,
|
|
2690
|
-
propsValues: Record<string, Partial<
|
|
2682
|
+
propsConfigs: Record<string, import("@tmagic/form-schema").FormConfig>;
|
|
2683
|
+
propsValues: Record<string, Partial<import("@tmagic/schema").MNode>>;
|
|
2691
2684
|
eventMethodList: Record<string, {
|
|
2692
|
-
events:
|
|
2693
|
-
methods:
|
|
2685
|
+
events: import("@tmagic/core").EventOption[];
|
|
2686
|
+
methods: import("@tmagic/core").EventOption[];
|
|
2694
2687
|
}>;
|
|
2695
|
-
datasourceValues: Record<string, Partial<
|
|
2696
|
-
datasourceConfigs: Record<string,
|
|
2688
|
+
datasourceValues: Record<string, Partial<import("@tmagic/schema").DataSourceSchema>>;
|
|
2689
|
+
datasourceConfigs: Record<string, import("@tmagic/form-schema").FormConfig>;
|
|
2697
2690
|
containerHighlightDuration: number;
|
|
2698
|
-
containerHighlightType:
|
|
2691
|
+
containerHighlightType: import("@tmagic/stage").ContainerHighlightType;
|
|
2699
2692
|
canSelect: (el: HTMLElement) => boolean | Promise<boolean>;
|
|
2700
|
-
}, {}, {}, {}, string,
|
|
2693
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2701
2694
|
declare const __VLS_export$33: __VLS_WithSlots$12<typeof __VLS_base$12, __VLS_Slots$12>;
|
|
2702
2695
|
declare const _default$30: typeof __VLS_export$33;
|
|
2703
2696
|
type __VLS_WithSlots$12<T, S> = T & {
|
|
@@ -2712,7 +2705,7 @@ type __VLS_Props$30 = {
|
|
|
2712
2705
|
modifiedValues?: any;
|
|
2713
2706
|
type?: 'diff';
|
|
2714
2707
|
language?: string;
|
|
2715
|
-
options?:
|
|
2708
|
+
options?: Monaco.editor.IStandaloneEditorConstructionOptions;
|
|
2716
2709
|
height?: string;
|
|
2717
2710
|
autoSave?: boolean;
|
|
2718
2711
|
parse?: boolean;
|
|
@@ -2723,33 +2716,33 @@ type __VLS_Props$30 = {
|
|
|
2723
2716
|
};
|
|
2724
2717
|
editorCustomType?: string;
|
|
2725
2718
|
};
|
|
2726
|
-
declare const __VLS_export$32:
|
|
2727
|
-
values:
|
|
2728
|
-
getEditor():
|
|
2729
|
-
getVsEditor():
|
|
2730
|
-
getVsDiffEditor():
|
|
2719
|
+
declare const __VLS_export$32: import("@vue/runtime-core").DefineComponent<__VLS_Props$30, {
|
|
2720
|
+
values: import("@vue/reactivity").Ref<string, string>;
|
|
2721
|
+
getEditor(): Monaco.editor.IStandaloneCodeEditor | Monaco.editor.IStandaloneDiffEditor | null;
|
|
2722
|
+
getVsEditor(): Monaco.editor.IStandaloneCodeEditor | null;
|
|
2723
|
+
getVsDiffEditor(): Monaco.editor.IStandaloneDiffEditor | null;
|
|
2731
2724
|
setEditorValue: (v: string | any, m: string | any) => void;
|
|
2732
2725
|
getEditorValue: () => string;
|
|
2733
2726
|
focus(): void;
|
|
2734
|
-
}, {}, {}, {},
|
|
2727
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2735
2728
|
save: (...args: any[]) => void;
|
|
2736
2729
|
initd: (...args: any[]) => void;
|
|
2737
|
-
}, string,
|
|
2730
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$30> & Readonly<{
|
|
2738
2731
|
onSave?: ((...args: any[]) => any) | undefined;
|
|
2739
2732
|
onInitd?: ((...args: any[]) => any) | undefined;
|
|
2740
2733
|
}>, {
|
|
2741
|
-
options:
|
|
2734
|
+
options: Monaco.editor.IStandaloneEditorConstructionOptions;
|
|
2742
2735
|
language: string;
|
|
2743
2736
|
parse: boolean;
|
|
2744
2737
|
initValues: any;
|
|
2745
2738
|
autoSave: boolean;
|
|
2746
2739
|
disabledFullScreen: boolean;
|
|
2747
|
-
}, {}, {}, {}, string,
|
|
2740
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2748
2741
|
declare const _default$29: typeof __VLS_export$32;
|
|
2749
2742
|
//#endregion
|
|
2750
2743
|
//#region temp/packages/editor/src/layouts/sidebar/ComponentListPanel.vue.d.ts
|
|
2751
2744
|
type __VLS_Slots$11 = ComponentListPanelSlots;
|
|
2752
|
-
declare const __VLS_base$11:
|
|
2745
|
+
declare const __VLS_base$11: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
|
|
2753
2746
|
declare const __VLS_export$31: __VLS_WithSlots$11<typeof __VLS_base$11, __VLS_Slots$11>;
|
|
2754
2747
|
declare const _default$5: typeof __VLS_export$31;
|
|
2755
2748
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
@@ -2769,11 +2762,11 @@ type __VLS_Props$29 = {
|
|
|
2769
2762
|
canDropIn?: CanDropInFunction; /** 组件树节点双击前的钩子函数,返回 false 则阻止默认的双击行为 */
|
|
2770
2763
|
beforeNodeDblclick?: (_event: MouseEvent, _data: TreeNodeData) => Promise<boolean | void> | boolean | void;
|
|
2771
2764
|
};
|
|
2772
|
-
declare const __VLS_base$10:
|
|
2765
|
+
declare const __VLS_base$10: import("@vue/runtime-core").DefineComponent<__VLS_Props$29, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2773
2766
|
"node-dblclick": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2774
|
-
}, string,
|
|
2767
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$29> & Readonly<{
|
|
2775
2768
|
"onNode-dblclick"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2776
|
-
}>, {}, {}, {}, {}, string,
|
|
2769
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2777
2770
|
declare const __VLS_export$30: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
|
|
2778
2771
|
declare const _default$22: typeof __VLS_export$30;
|
|
2779
2772
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -2784,22 +2777,22 @@ type __VLS_WithSlots$10<T, S> = T & {
|
|
|
2784
2777
|
//#endregion
|
|
2785
2778
|
//#region temp/packages/editor/src/fields/CodeSelect.vue.d.ts
|
|
2786
2779
|
type __VLS_Props$28 = FieldProps<CodeSelectConfig>;
|
|
2787
|
-
declare const __VLS_export$29:
|
|
2780
|
+
declare const __VLS_export$29: import("@vue/runtime-core").DefineComponent<__VLS_Props$28, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2788
2781
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
2789
|
-
}, string,
|
|
2782
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$28> & Readonly<{
|
|
2790
2783
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
2791
|
-
}>, {}, {}, {}, {}, string,
|
|
2784
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2792
2785
|
declare const _default$3: typeof __VLS_export$29;
|
|
2793
2786
|
//#endregion
|
|
2794
2787
|
//#region temp/packages/editor/src/fields/CodeSelectCol.vue.d.ts
|
|
2795
2788
|
type __VLS_Props$27 = FieldProps<CodeSelectColConfig>;
|
|
2796
|
-
declare const __VLS_export$28:
|
|
2789
|
+
declare const __VLS_export$28: import("@vue/runtime-core").DefineComponent<__VLS_Props$27, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2797
2790
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
2798
|
-
}, string,
|
|
2791
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$27> & Readonly<{
|
|
2799
2792
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
2800
2793
|
}>, {
|
|
2801
2794
|
disabled: boolean;
|
|
2802
|
-
}, {}, {}, {}, string,
|
|
2795
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2803
2796
|
declare const _default$4: typeof __VLS_export$28;
|
|
2804
2797
|
//#endregion
|
|
2805
2798
|
//#region temp/packages/editor/src/fields/DataSourceFields.vue.d.ts
|
|
@@ -2810,19 +2803,19 @@ type __VLS_ModelProps$4 = {
|
|
|
2810
2803
|
'visible1'?: boolean;
|
|
2811
2804
|
};
|
|
2812
2805
|
type __VLS_PublicProps$4 = __VLS_Props$26 & __VLS_ModelProps$4;
|
|
2813
|
-
declare const __VLS_export$27:
|
|
2806
|
+
declare const __VLS_export$27: import("@vue/runtime-core").DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2814
2807
|
change: (v: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
2815
2808
|
"update:width": (value: number) => any;
|
|
2816
2809
|
"update:visible": (value: boolean) => any;
|
|
2817
2810
|
"update:visible1": (value: boolean) => any;
|
|
2818
|
-
}, string,
|
|
2811
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
|
|
2819
2812
|
onChange?: ((v: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2820
2813
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2821
2814
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2822
2815
|
"onUpdate:visible1"?: ((value: boolean) => any) | undefined;
|
|
2823
2816
|
}>, {
|
|
2824
2817
|
disabled: boolean;
|
|
2825
|
-
}, {}, {}, {}, string,
|
|
2818
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2826
2819
|
declare const _default$11: typeof __VLS_export$27;
|
|
2827
2820
|
//#endregion
|
|
2828
2821
|
//#region temp/packages/editor/src/fields/DataSourceMocks.vue.d.ts
|
|
@@ -2832,92 +2825,92 @@ type __VLS_ModelProps$3 = {
|
|
|
2832
2825
|
'visible'?: boolean;
|
|
2833
2826
|
};
|
|
2834
2827
|
type __VLS_PublicProps$3 = __VLS_Props$25 & __VLS_ModelProps$3;
|
|
2835
|
-
declare const __VLS_export$26:
|
|
2828
|
+
declare const __VLS_export$26: import("@vue/runtime-core").DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2836
2829
|
change: (...args: any[]) => void;
|
|
2837
2830
|
"update:width": (value: number) => void;
|
|
2838
2831
|
"update:visible": (value: boolean) => void;
|
|
2839
|
-
}, string,
|
|
2832
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
|
|
2840
2833
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2841
2834
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2842
2835
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2843
2836
|
}>, {
|
|
2844
2837
|
disabled: boolean;
|
|
2845
|
-
}, {}, {}, {}, string,
|
|
2838
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2846
2839
|
declare const _default$15: typeof __VLS_export$26;
|
|
2847
2840
|
//#endregion
|
|
2848
2841
|
//#region temp/packages/editor/src/fields/DataSourceMethods.vue.d.ts
|
|
2849
2842
|
type __VLS_Props$24 = FieldProps<DataSourceMethodsConfig>;
|
|
2850
|
-
declare const __VLS_export$25:
|
|
2843
|
+
declare const __VLS_export$25: import("@vue/runtime-core").DefineComponent<__VLS_Props$24, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2851
2844
|
change: (...args: any[]) => void;
|
|
2852
|
-
}, string,
|
|
2845
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$24> & Readonly<{
|
|
2853
2846
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2854
2847
|
}>, {
|
|
2855
2848
|
disabled: boolean;
|
|
2856
|
-
}, {}, {}, {}, string,
|
|
2849
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2857
2850
|
declare const _default$14: typeof __VLS_export$25;
|
|
2858
2851
|
//#endregion
|
|
2859
2852
|
//#region temp/packages/editor/src/fields/DataSourceInput.vue.d.ts
|
|
2860
2853
|
type __VLS_Props$23 = FieldProps<DataSourceInputConfig>;
|
|
2861
|
-
declare const __VLS_export$24:
|
|
2854
|
+
declare const __VLS_export$24: import("@vue/runtime-core").DefineComponent<__VLS_Props$23, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2862
2855
|
change: (value: string) => any;
|
|
2863
|
-
}, string,
|
|
2856
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$23> & Readonly<{
|
|
2864
2857
|
onChange?: ((value: string) => any) | undefined;
|
|
2865
2858
|
}>, {
|
|
2866
2859
|
disabled: boolean;
|
|
2867
|
-
}, {}, {}, {}, string,
|
|
2860
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2868
2861
|
declare const _default$12: typeof __VLS_export$24;
|
|
2869
2862
|
//#endregion
|
|
2870
2863
|
//#region temp/packages/editor/src/fields/DataSourceSelect.vue.d.ts
|
|
2871
2864
|
type __VLS_Props$22 = FieldProps<DataSourceSelect>;
|
|
2872
|
-
declare const __VLS_export$23:
|
|
2865
|
+
declare const __VLS_export$23: import("@vue/runtime-core").DefineComponent<__VLS_Props$22, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2873
2866
|
change: (...args: any[]) => void;
|
|
2874
|
-
}, string,
|
|
2867
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$22> & Readonly<{
|
|
2875
2868
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2876
2869
|
}>, {
|
|
2877
2870
|
disabled: boolean;
|
|
2878
|
-
}, {}, {}, {}, string,
|
|
2871
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2879
2872
|
declare const _default$16: typeof __VLS_export$23;
|
|
2880
2873
|
//#endregion
|
|
2881
2874
|
//#region temp/packages/editor/src/fields/DataSourceMethodSelect.vue.d.ts
|
|
2882
2875
|
type __VLS_Props$21 = FieldProps<DataSourceMethodSelectConfig>;
|
|
2883
|
-
declare const __VLS_export$22:
|
|
2876
|
+
declare const __VLS_export$22: import("@vue/runtime-core").DefineComponent<__VLS_Props$21, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2884
2877
|
change: (...args: any[]) => void;
|
|
2885
|
-
}, string,
|
|
2878
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$21> & Readonly<{
|
|
2886
2879
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2887
2880
|
}>, {
|
|
2888
2881
|
disabled: boolean;
|
|
2889
|
-
}, {}, {}, {}, string,
|
|
2882
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2890
2883
|
declare const _default$13: typeof __VLS_export$22;
|
|
2891
2884
|
//#endregion
|
|
2892
2885
|
//#region temp/packages/editor/src/fields/DataSourceFieldSelect/Index.vue.d.ts
|
|
2893
2886
|
type __VLS_Props$20 = FieldProps<DataSourceFieldSelectConfig>;
|
|
2894
|
-
declare const __VLS_export$21:
|
|
2887
|
+
declare const __VLS_export$21: import("@vue/runtime-core").DefineComponent<__VLS_Props$20, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2895
2888
|
change: (...args: any[]) => void;
|
|
2896
|
-
}, string,
|
|
2889
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$20> & Readonly<{
|
|
2897
2890
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2898
2891
|
}>, {
|
|
2899
2892
|
disabled: boolean;
|
|
2900
|
-
}, {}, {}, {}, string,
|
|
2893
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2901
2894
|
declare const _default$10: typeof __VLS_export$21;
|
|
2902
2895
|
//#endregion
|
|
2903
2896
|
//#region temp/packages/editor/src/fields/EventSelect.vue.d.ts
|
|
2904
2897
|
type __VLS_Props$19 = FieldProps<EventSelectConfig>;
|
|
2905
|
-
declare const __VLS_export$20:
|
|
2898
|
+
declare const __VLS_export$20: import("@vue/runtime-core").DefineComponent<__VLS_Props$19, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2906
2899
|
change: (v: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
2907
|
-
}, string,
|
|
2900
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$19> & Readonly<{
|
|
2908
2901
|
onChange?: ((v: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2909
|
-
}>, {}, {}, {}, {}, string,
|
|
2902
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2910
2903
|
declare const _default$18: typeof __VLS_export$20;
|
|
2911
2904
|
//#endregion
|
|
2912
2905
|
//#region temp/packages/editor/src/fields/KeyValue.vue.d.ts
|
|
2913
2906
|
type __VLS_Props$18 = FieldProps<KeyValueConfig>;
|
|
2914
|
-
declare const __VLS_export$19:
|
|
2907
|
+
declare const __VLS_export$19: import("@vue/runtime-core").DefineComponent<__VLS_Props$18, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2915
2908
|
change: (value: Record<string, any>) => any;
|
|
2916
|
-
}, string,
|
|
2909
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$18> & Readonly<{
|
|
2917
2910
|
onChange?: ((value: Record<string, any>) => any) | undefined;
|
|
2918
2911
|
}>, {
|
|
2919
2912
|
disabled: boolean;
|
|
2920
|
-
}, {}, {}, {}, string,
|
|
2913
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2921
2914
|
declare const _default$21: typeof __VLS_export$19;
|
|
2922
2915
|
//#endregion
|
|
2923
2916
|
//#region temp/packages/editor/src/layouts/sidebar/code-block/CodeBlockList.vue.d.ts
|
|
@@ -2927,8 +2920,8 @@ type __VLS_Props$17 = {
|
|
|
2927
2920
|
nextLevelIndentIncrement?: number;
|
|
2928
2921
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2929
2922
|
};
|
|
2930
|
-
declare const __VLS_base$9:
|
|
2931
|
-
nodeStatusMap:
|
|
2923
|
+
declare const __VLS_base$9: import("@vue/runtime-core").DefineComponent<__VLS_Props$17, {
|
|
2924
|
+
nodeStatusMap: import("@vue/reactivity").Ref<Map<Id, {
|
|
2932
2925
|
visible: boolean;
|
|
2933
2926
|
expand: boolean;
|
|
2934
2927
|
selected: boolean;
|
|
@@ -2941,15 +2934,15 @@ declare const __VLS_base$9: _$_vue_runtime_core0.DefineComponent<__VLS_Props$17,
|
|
|
2941
2934
|
}> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>)>;
|
|
2942
2935
|
filter: (text: string | string[]) => void;
|
|
2943
2936
|
deleteCode: (id: string) => Promise<void>;
|
|
2944
|
-
}, {}, {}, {},
|
|
2937
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2945
2938
|
remove: (id: string) => any;
|
|
2946
2939
|
edit: (id: string) => any;
|
|
2947
2940
|
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2948
|
-
}, string,
|
|
2941
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$17> & Readonly<{
|
|
2949
2942
|
onRemove?: ((id: string) => any) | undefined;
|
|
2950
2943
|
onEdit?: ((id: string) => any) | undefined;
|
|
2951
2944
|
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2952
|
-
}>, {}, {}, {}, {}, string,
|
|
2945
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2953
2946
|
declare const __VLS_export$18: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
2954
2947
|
declare const _default$1: typeof __VLS_export$18;
|
|
2955
2948
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -2966,7 +2959,7 @@ type __VLS_Props$16 = {
|
|
|
2966
2959
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2967
2960
|
customContentMenu: CustomContentMenuFunction;
|
|
2968
2961
|
};
|
|
2969
|
-
declare const __VLS_base$8:
|
|
2962
|
+
declare const __VLS_base$8: import("@vue/runtime-core").DefineComponent<__VLS_Props$16, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$16> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
2970
2963
|
declare const __VLS_export$17: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
2971
2964
|
declare const _default$2: typeof __VLS_export$17;
|
|
2972
2965
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -2986,22 +2979,22 @@ type __VLS_ModelProps$2 = {
|
|
|
2986
2979
|
'width'?: number;
|
|
2987
2980
|
};
|
|
2988
2981
|
type __VLS_PublicProps$2 = __VLS_Props$15 & __VLS_ModelProps$2;
|
|
2989
|
-
declare const __VLS_export$16:
|
|
2982
|
+
declare const __VLS_export$16: import("@vue/runtime-core").DefineComponent<__VLS_PublicProps$2, {
|
|
2990
2983
|
show(): void;
|
|
2991
2984
|
hide(): void;
|
|
2992
|
-
}, {}, {}, {},
|
|
2985
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
2993
2986
|
close: () => any;
|
|
2994
2987
|
submit: (v: any, eventData: ContainerChangeEventData) => any;
|
|
2995
2988
|
open: (id: string) => any;
|
|
2996
2989
|
"update:width": (value: number) => any;
|
|
2997
2990
|
"update:visible": (value: boolean) => any;
|
|
2998
|
-
}, string,
|
|
2991
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
|
|
2999
2992
|
onClose?: (() => any) | undefined;
|
|
3000
2993
|
onSubmit?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
3001
2994
|
onOpen?: ((id: string) => any) | undefined;
|
|
3002
2995
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3003
2996
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3004
|
-
}>, {}, {}, {}, {}, string,
|
|
2997
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3005
2998
|
declare const _default$9: typeof __VLS_export$16;
|
|
3006
2999
|
//#endregion
|
|
3007
3000
|
//#region temp/packages/editor/src/layouts/sidebar/data-source/DataSourceAddButton.vue.d.ts
|
|
@@ -3013,11 +3006,11 @@ type __VLS_Props$14 = {
|
|
|
3013
3006
|
addButtonConfig?: ButtonProps;
|
|
3014
3007
|
addButtonText?: string;
|
|
3015
3008
|
};
|
|
3016
|
-
declare const __VLS_export$15:
|
|
3009
|
+
declare const __VLS_export$15: import("@vue/runtime-core").DefineComponent<__VLS_Props$14, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3017
3010
|
add: (type: string) => any;
|
|
3018
|
-
}, string,
|
|
3011
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$14> & Readonly<{
|
|
3019
3012
|
onAdd?: ((type: string) => any) | undefined;
|
|
3020
|
-
}>, {}, {}, {}, {}, string,
|
|
3013
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3021
3014
|
declare const _default$8: typeof __VLS_export$15;
|
|
3022
3015
|
//#endregion
|
|
3023
3016
|
//#region temp/packages/editor/src/layouts/props-panel/PropsPanel.vue.d.ts
|
|
@@ -3026,15 +3019,15 @@ type __VLS_Props$13 = {
|
|
|
3026
3019
|
disabledShowSrc?: boolean;
|
|
3027
3020
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3028
3021
|
};
|
|
3029
|
-
declare const __VLS_base$7:
|
|
3022
|
+
declare const __VLS_base$7: import("@vue/runtime-core").DefineComponent<__VLS_Props$13, {
|
|
3030
3023
|
getFormState(): FormState | undefined;
|
|
3031
3024
|
submit: (v: MNode, eventData?: ContainerChangeEventData) => Promise<void>;
|
|
3032
|
-
}, {}, {}, {},
|
|
3025
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3033
3026
|
mounted: (internalInstance: {
|
|
3034
|
-
$:
|
|
3027
|
+
$: import("@vue/runtime-core").ComponentInternalInstance;
|
|
3035
3028
|
$data: {};
|
|
3036
3029
|
$props: {
|
|
3037
|
-
readonly config:
|
|
3030
|
+
readonly config: import("@tmagic/form-schema").FormConfig;
|
|
3038
3031
|
readonly values: FormValue;
|
|
3039
3032
|
readonly disabledShowSrc?: boolean | undefined;
|
|
3040
3033
|
readonly labelWidth?: string | undefined;
|
|
@@ -3046,21 +3039,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3046
3039
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
3047
3040
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3048
3041
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
3049
|
-
} &
|
|
3050
|
-
$attrs:
|
|
3042
|
+
} & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps;
|
|
3043
|
+
$attrs: import("@vue/runtime-core").Attrs;
|
|
3051
3044
|
$refs: {
|
|
3052
3045
|
[x: string]: unknown;
|
|
3053
3046
|
};
|
|
3054
3047
|
$slots: Readonly<{
|
|
3055
|
-
[name: string]:
|
|
3048
|
+
[name: string]: import("@vue/runtime-core").Slot<any> | undefined;
|
|
3056
3049
|
}>;
|
|
3057
|
-
$root:
|
|
3058
|
-
$parent:
|
|
3050
|
+
$root: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
3051
|
+
$parent: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
3059
3052
|
$host: Element | null;
|
|
3060
3053
|
$emit: ((event: "mounted", internalInstance: any) => void) & ((event: "unmounted") => void) & ((event: "submit", values: any, eventData?: ContainerChangeEventData | undefined) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
3061
3054
|
$el: any;
|
|
3062
|
-
$options:
|
|
3063
|
-
config:
|
|
3055
|
+
$options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<{
|
|
3056
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3064
3057
|
values: FormValue;
|
|
3065
3058
|
disabledShowSrc?: boolean;
|
|
3066
3059
|
labelWidth?: string;
|
|
@@ -3074,8 +3067,8 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3074
3067
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3075
3068
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3076
3069
|
}>, {
|
|
3077
|
-
configForm: Readonly<
|
|
3078
|
-
config:
|
|
3070
|
+
configForm: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3071
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3079
3072
|
initValues: Record<string, any>;
|
|
3080
3073
|
lastValues?: Record<string, any>;
|
|
3081
3074
|
isCompare?: boolean;
|
|
@@ -3098,27 +3091,27 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3098
3091
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3099
3092
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3100
3093
|
}>, {
|
|
3101
|
-
values:
|
|
3102
|
-
lastValuesProcessed:
|
|
3094
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3095
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3103
3096
|
formState: FormState;
|
|
3104
|
-
initialized:
|
|
3105
|
-
changeRecords:
|
|
3097
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3098
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3106
3099
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3107
3100
|
resetForm: () => void;
|
|
3108
3101
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3109
|
-
getTextByName: (name: string, config?:
|
|
3110
|
-
}, {}, {}, {},
|
|
3102
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3103
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3111
3104
|
error: (...args: any[]) => void;
|
|
3112
3105
|
change: (...args: any[]) => void;
|
|
3113
3106
|
"field-input": (...args: any[]) => void;
|
|
3114
3107
|
"field-change": (...args: any[]) => void;
|
|
3115
3108
|
"update:stepActive": (...args: any[]) => void;
|
|
3116
|
-
},
|
|
3109
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
3117
3110
|
disabled: boolean;
|
|
3118
3111
|
labelWidth: string;
|
|
3119
3112
|
inline: boolean;
|
|
3120
3113
|
labelPosition: string;
|
|
3121
|
-
config:
|
|
3114
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3122
3115
|
height: string;
|
|
3123
3116
|
initValues: Record<string, any>;
|
|
3124
3117
|
lastValues: Record<string, any>;
|
|
@@ -3126,7 +3119,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3126
3119
|
keyProp: string;
|
|
3127
3120
|
parentValues: Record<string, any>;
|
|
3128
3121
|
stepActive: string | number;
|
|
3129
|
-
}, false, {}, {},
|
|
3122
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
3130
3123
|
P: {};
|
|
3131
3124
|
B: {};
|
|
3132
3125
|
D: {};
|
|
@@ -3134,7 +3127,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3134
3127
|
M: {};
|
|
3135
3128
|
Defaults: {};
|
|
3136
3129
|
}, Readonly<{
|
|
3137
|
-
config:
|
|
3130
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3138
3131
|
initValues: Record<string, any>;
|
|
3139
3132
|
lastValues?: Record<string, any>;
|
|
3140
3133
|
isCompare?: boolean;
|
|
@@ -3157,21 +3150,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3157
3150
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3158
3151
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3159
3152
|
}>, {
|
|
3160
|
-
values:
|
|
3161
|
-
lastValuesProcessed:
|
|
3153
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3154
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3162
3155
|
formState: FormState;
|
|
3163
|
-
initialized:
|
|
3164
|
-
changeRecords:
|
|
3156
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3157
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3165
3158
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3166
3159
|
resetForm: () => void;
|
|
3167
3160
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3168
|
-
getTextByName: (name: string, config?:
|
|
3161
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3169
3162
|
}, {}, {}, {}, {
|
|
3170
3163
|
disabled: boolean;
|
|
3171
3164
|
labelWidth: string;
|
|
3172
3165
|
inline: boolean;
|
|
3173
3166
|
labelPosition: string;
|
|
3174
|
-
config:
|
|
3167
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3175
3168
|
height: string;
|
|
3176
3169
|
initValues: Record<string, any>;
|
|
3177
3170
|
lastValues: Record<string, any>;
|
|
@@ -3181,13 +3174,13 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3181
3174
|
stepActive: string | number;
|
|
3182
3175
|
}> | null>>;
|
|
3183
3176
|
submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
3184
|
-
}, {}, {}, {},
|
|
3177
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3185
3178
|
mounted: (internalInstance: any) => any;
|
|
3186
3179
|
unmounted: () => any;
|
|
3187
3180
|
submit: (values: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
3188
3181
|
"submit-error": (e: any) => any;
|
|
3189
3182
|
"form-error": (e: any) => any;
|
|
3190
|
-
}, string, {}, {}, string, {},
|
|
3183
|
+
}, string, {}, {}, string, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, import("@vue/runtime-core").ComponentProvideOptions> & {
|
|
3191
3184
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3192
3185
|
created?: (() => void) | (() => void)[];
|
|
3193
3186
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -3200,15 +3193,15 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3200
3193
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
3201
3194
|
destroyed?: (() => void) | (() => void)[];
|
|
3202
3195
|
unmounted?: (() => void) | (() => void)[];
|
|
3203
|
-
renderTracked?: ((e:
|
|
3204
|
-
renderTriggered?: ((e:
|
|
3205
|
-
errorCaptured?: ((err: unknown, instance:
|
|
3196
|
+
renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
3197
|
+
renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
3198
|
+
errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3206
3199
|
};
|
|
3207
3200
|
$forceUpdate: () => void;
|
|
3208
|
-
$nextTick: typeof
|
|
3209
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R,
|
|
3201
|
+
$nextTick: typeof import("@vue/runtime-core").nextTick;
|
|
3202
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("@vue/runtime-core").WatchOptions): import("@vue/reactivity").WatchStopHandle;
|
|
3210
3203
|
} & Readonly<{}> & Omit<Readonly<{
|
|
3211
|
-
config:
|
|
3204
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3212
3205
|
values: FormValue;
|
|
3213
3206
|
disabledShowSrc?: boolean;
|
|
3214
3207
|
labelWidth?: string;
|
|
@@ -3222,8 +3215,8 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3222
3215
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3223
3216
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3224
3217
|
}>, "submit" | "configForm"> & {
|
|
3225
|
-
configForm:
|
|
3226
|
-
config:
|
|
3218
|
+
configForm: import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3219
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3227
3220
|
initValues: Record<string, any>;
|
|
3228
3221
|
lastValues?: Record<string, any>;
|
|
3229
3222
|
isCompare?: boolean;
|
|
@@ -3246,27 +3239,27 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3246
3239
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3247
3240
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3248
3241
|
}>, {
|
|
3249
|
-
values:
|
|
3250
|
-
lastValuesProcessed:
|
|
3242
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3243
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3251
3244
|
formState: FormState;
|
|
3252
|
-
initialized:
|
|
3253
|
-
changeRecords:
|
|
3245
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3246
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3254
3247
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3255
3248
|
resetForm: () => void;
|
|
3256
3249
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3257
|
-
getTextByName: (name: string, config?:
|
|
3258
|
-
}, {}, {}, {},
|
|
3250
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3251
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3259
3252
|
error: (...args: any[]) => void;
|
|
3260
3253
|
change: (...args: any[]) => void;
|
|
3261
3254
|
"field-input": (...args: any[]) => void;
|
|
3262
3255
|
"field-change": (...args: any[]) => void;
|
|
3263
3256
|
"update:stepActive": (...args: any[]) => void;
|
|
3264
|
-
},
|
|
3257
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
3265
3258
|
disabled: boolean;
|
|
3266
3259
|
labelWidth: string;
|
|
3267
3260
|
inline: boolean;
|
|
3268
3261
|
labelPosition: string;
|
|
3269
|
-
config:
|
|
3262
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3270
3263
|
height: string;
|
|
3271
3264
|
initValues: Record<string, any>;
|
|
3272
3265
|
lastValues: Record<string, any>;
|
|
@@ -3274,7 +3267,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3274
3267
|
keyProp: string;
|
|
3275
3268
|
parentValues: Record<string, any>;
|
|
3276
3269
|
stepActive: string | number;
|
|
3277
|
-
}, false, {}, {},
|
|
3270
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
3278
3271
|
P: {};
|
|
3279
3272
|
B: {};
|
|
3280
3273
|
D: {};
|
|
@@ -3282,7 +3275,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3282
3275
|
M: {};
|
|
3283
3276
|
Defaults: {};
|
|
3284
3277
|
}, Readonly<{
|
|
3285
|
-
config:
|
|
3278
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3286
3279
|
initValues: Record<string, any>;
|
|
3287
3280
|
lastValues?: Record<string, any>;
|
|
3288
3281
|
isCompare?: boolean;
|
|
@@ -3305,21 +3298,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3305
3298
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3306
3299
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3307
3300
|
}>, {
|
|
3308
|
-
values:
|
|
3309
|
-
lastValuesProcessed:
|
|
3301
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3302
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3310
3303
|
formState: FormState;
|
|
3311
|
-
initialized:
|
|
3312
|
-
changeRecords:
|
|
3304
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3305
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3313
3306
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3314
3307
|
resetForm: () => void;
|
|
3315
3308
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3316
|
-
getTextByName: (name: string, config?:
|
|
3309
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3317
3310
|
}, {}, {}, {}, {
|
|
3318
3311
|
disabled: boolean;
|
|
3319
3312
|
labelWidth: string;
|
|
3320
3313
|
inline: boolean;
|
|
3321
3314
|
labelPosition: string;
|
|
3322
|
-
config:
|
|
3315
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3323
3316
|
height: string;
|
|
3324
3317
|
initValues: Record<string, any>;
|
|
3325
3318
|
lastValues: Record<string, any>;
|
|
@@ -3329,7 +3322,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3329
3322
|
stepActive: string | number;
|
|
3330
3323
|
}> | null;
|
|
3331
3324
|
submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
3332
|
-
} & {} &
|
|
3325
|
+
} & {} & import("@vue/runtime-core").ComponentCustomProperties & {} & {
|
|
3333
3326
|
$slots: {
|
|
3334
3327
|
'props-form-panel-header'(_props: {}): any;
|
|
3335
3328
|
};
|
|
@@ -3337,12 +3330,12 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3337
3330
|
unmounted: () => any;
|
|
3338
3331
|
"submit-error": (e: any) => any;
|
|
3339
3332
|
"form-error": (e: any) => any;
|
|
3340
|
-
}, string,
|
|
3333
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$13> & Readonly<{
|
|
3341
3334
|
onMounted?: ((internalInstance: {
|
|
3342
|
-
$:
|
|
3335
|
+
$: import("@vue/runtime-core").ComponentInternalInstance;
|
|
3343
3336
|
$data: {};
|
|
3344
3337
|
$props: {
|
|
3345
|
-
readonly config:
|
|
3338
|
+
readonly config: import("@tmagic/form-schema").FormConfig;
|
|
3346
3339
|
readonly values: FormValue;
|
|
3347
3340
|
readonly disabledShowSrc?: boolean | undefined;
|
|
3348
3341
|
readonly labelWidth?: string | undefined;
|
|
@@ -3354,21 +3347,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3354
3347
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
3355
3348
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3356
3349
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
3357
|
-
} &
|
|
3358
|
-
$attrs:
|
|
3350
|
+
} & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps;
|
|
3351
|
+
$attrs: import("@vue/runtime-core").Attrs;
|
|
3359
3352
|
$refs: {
|
|
3360
3353
|
[x: string]: unknown;
|
|
3361
3354
|
};
|
|
3362
3355
|
$slots: Readonly<{
|
|
3363
|
-
[name: string]:
|
|
3356
|
+
[name: string]: import("@vue/runtime-core").Slot<any> | undefined;
|
|
3364
3357
|
}>;
|
|
3365
|
-
$root:
|
|
3366
|
-
$parent:
|
|
3358
|
+
$root: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
3359
|
+
$parent: import("@vue/runtime-core").ComponentPublicInstance | null;
|
|
3367
3360
|
$host: Element | null;
|
|
3368
3361
|
$emit: ((event: "mounted", internalInstance: any) => void) & ((event: "unmounted") => void) & ((event: "submit", values: any, eventData?: ContainerChangeEventData | undefined) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
3369
3362
|
$el: any;
|
|
3370
|
-
$options:
|
|
3371
|
-
config:
|
|
3363
|
+
$options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<{
|
|
3364
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3372
3365
|
values: FormValue;
|
|
3373
3366
|
disabledShowSrc?: boolean;
|
|
3374
3367
|
labelWidth?: string;
|
|
@@ -3382,8 +3375,8 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3382
3375
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3383
3376
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3384
3377
|
}>, {
|
|
3385
|
-
configForm: Readonly<
|
|
3386
|
-
config:
|
|
3378
|
+
configForm: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3379
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3387
3380
|
initValues: Record<string, any>;
|
|
3388
3381
|
lastValues?: Record<string, any>;
|
|
3389
3382
|
isCompare?: boolean;
|
|
@@ -3406,27 +3399,27 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3406
3399
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3407
3400
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3408
3401
|
}>, {
|
|
3409
|
-
values:
|
|
3410
|
-
lastValuesProcessed:
|
|
3402
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3403
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3411
3404
|
formState: FormState;
|
|
3412
|
-
initialized:
|
|
3413
|
-
changeRecords:
|
|
3405
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3406
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3414
3407
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3415
3408
|
resetForm: () => void;
|
|
3416
3409
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3417
|
-
getTextByName: (name: string, config?:
|
|
3418
|
-
}, {}, {}, {},
|
|
3410
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3411
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3419
3412
|
error: (...args: any[]) => void;
|
|
3420
3413
|
change: (...args: any[]) => void;
|
|
3421
3414
|
"field-input": (...args: any[]) => void;
|
|
3422
3415
|
"field-change": (...args: any[]) => void;
|
|
3423
3416
|
"update:stepActive": (...args: any[]) => void;
|
|
3424
|
-
},
|
|
3417
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
3425
3418
|
disabled: boolean;
|
|
3426
3419
|
labelWidth: string;
|
|
3427
3420
|
inline: boolean;
|
|
3428
3421
|
labelPosition: string;
|
|
3429
|
-
config:
|
|
3422
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3430
3423
|
height: string;
|
|
3431
3424
|
initValues: Record<string, any>;
|
|
3432
3425
|
lastValues: Record<string, any>;
|
|
@@ -3434,7 +3427,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3434
3427
|
keyProp: string;
|
|
3435
3428
|
parentValues: Record<string, any>;
|
|
3436
3429
|
stepActive: string | number;
|
|
3437
|
-
}, false, {}, {},
|
|
3430
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
3438
3431
|
P: {};
|
|
3439
3432
|
B: {};
|
|
3440
3433
|
D: {};
|
|
@@ -3442,7 +3435,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3442
3435
|
M: {};
|
|
3443
3436
|
Defaults: {};
|
|
3444
3437
|
}, Readonly<{
|
|
3445
|
-
config:
|
|
3438
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3446
3439
|
initValues: Record<string, any>;
|
|
3447
3440
|
lastValues?: Record<string, any>;
|
|
3448
3441
|
isCompare?: boolean;
|
|
@@ -3465,21 +3458,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3465
3458
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3466
3459
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3467
3460
|
}>, {
|
|
3468
|
-
values:
|
|
3469
|
-
lastValuesProcessed:
|
|
3461
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3462
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3470
3463
|
formState: FormState;
|
|
3471
|
-
initialized:
|
|
3472
|
-
changeRecords:
|
|
3464
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3465
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3473
3466
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3474
3467
|
resetForm: () => void;
|
|
3475
3468
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3476
|
-
getTextByName: (name: string, config?:
|
|
3469
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3477
3470
|
}, {}, {}, {}, {
|
|
3478
3471
|
disabled: boolean;
|
|
3479
3472
|
labelWidth: string;
|
|
3480
3473
|
inline: boolean;
|
|
3481
3474
|
labelPosition: string;
|
|
3482
|
-
config:
|
|
3475
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3483
3476
|
height: string;
|
|
3484
3477
|
initValues: Record<string, any>;
|
|
3485
3478
|
lastValues: Record<string, any>;
|
|
@@ -3489,13 +3482,13 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3489
3482
|
stepActive: string | number;
|
|
3490
3483
|
}> | null>>;
|
|
3491
3484
|
submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
3492
|
-
}, {}, {}, {},
|
|
3485
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3493
3486
|
mounted: (internalInstance: any) => any;
|
|
3494
3487
|
unmounted: () => any;
|
|
3495
3488
|
submit: (values: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
3496
3489
|
"submit-error": (e: any) => any;
|
|
3497
3490
|
"form-error": (e: any) => any;
|
|
3498
|
-
}, string, {}, {}, string, {},
|
|
3491
|
+
}, string, {}, {}, string, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, import("@vue/runtime-core").ComponentProvideOptions> & {
|
|
3499
3492
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3500
3493
|
created?: (() => void) | (() => void)[];
|
|
3501
3494
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -3508,15 +3501,15 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3508
3501
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
3509
3502
|
destroyed?: (() => void) | (() => void)[];
|
|
3510
3503
|
unmounted?: (() => void) | (() => void)[];
|
|
3511
|
-
renderTracked?: ((e:
|
|
3512
|
-
renderTriggered?: ((e:
|
|
3513
|
-
errorCaptured?: ((err: unknown, instance:
|
|
3504
|
+
renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
3505
|
+
renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
|
|
3506
|
+
errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3514
3507
|
};
|
|
3515
3508
|
$forceUpdate: () => void;
|
|
3516
|
-
$nextTick: typeof
|
|
3517
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R,
|
|
3509
|
+
$nextTick: typeof import("@vue/runtime-core").nextTick;
|
|
3510
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("@vue/runtime-core").WatchOptions): import("@vue/reactivity").WatchStopHandle;
|
|
3518
3511
|
} & Readonly<{}> & Omit<Readonly<{
|
|
3519
|
-
config:
|
|
3512
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3520
3513
|
values: FormValue;
|
|
3521
3514
|
disabledShowSrc?: boolean;
|
|
3522
3515
|
labelWidth?: string;
|
|
@@ -3530,8 +3523,8 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3530
3523
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3531
3524
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3532
3525
|
}>, "submit" | "configForm"> & {
|
|
3533
|
-
configForm:
|
|
3534
|
-
config:
|
|
3526
|
+
configForm: import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3527
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3535
3528
|
initValues: Record<string, any>;
|
|
3536
3529
|
lastValues?: Record<string, any>;
|
|
3537
3530
|
isCompare?: boolean;
|
|
@@ -3554,27 +3547,27 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3554
3547
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3555
3548
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3556
3549
|
}>, {
|
|
3557
|
-
values:
|
|
3558
|
-
lastValuesProcessed:
|
|
3550
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3551
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3559
3552
|
formState: FormState;
|
|
3560
|
-
initialized:
|
|
3561
|
-
changeRecords:
|
|
3553
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3554
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3562
3555
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3563
3556
|
resetForm: () => void;
|
|
3564
3557
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3565
|
-
getTextByName: (name: string, config?:
|
|
3566
|
-
}, {}, {}, {},
|
|
3558
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3559
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3567
3560
|
error: (...args: any[]) => void;
|
|
3568
3561
|
change: (...args: any[]) => void;
|
|
3569
3562
|
"field-input": (...args: any[]) => void;
|
|
3570
3563
|
"field-change": (...args: any[]) => void;
|
|
3571
3564
|
"update:stepActive": (...args: any[]) => void;
|
|
3572
|
-
},
|
|
3565
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
3573
3566
|
disabled: boolean;
|
|
3574
3567
|
labelWidth: string;
|
|
3575
3568
|
inline: boolean;
|
|
3576
3569
|
labelPosition: string;
|
|
3577
|
-
config:
|
|
3570
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3578
3571
|
height: string;
|
|
3579
3572
|
initValues: Record<string, any>;
|
|
3580
3573
|
lastValues: Record<string, any>;
|
|
@@ -3582,7 +3575,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3582
3575
|
keyProp: string;
|
|
3583
3576
|
parentValues: Record<string, any>;
|
|
3584
3577
|
stepActive: string | number;
|
|
3585
|
-
}, false, {}, {},
|
|
3578
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
3586
3579
|
P: {};
|
|
3587
3580
|
B: {};
|
|
3588
3581
|
D: {};
|
|
@@ -3590,7 +3583,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3590
3583
|
M: {};
|
|
3591
3584
|
Defaults: {};
|
|
3592
3585
|
}, Readonly<{
|
|
3593
|
-
config:
|
|
3586
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3594
3587
|
initValues: Record<string, any>;
|
|
3595
3588
|
lastValues?: Record<string, any>;
|
|
3596
3589
|
isCompare?: boolean;
|
|
@@ -3613,21 +3606,21 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3613
3606
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3614
3607
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3615
3608
|
}>, {
|
|
3616
|
-
values:
|
|
3617
|
-
lastValuesProcessed:
|
|
3609
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3610
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3618
3611
|
formState: FormState;
|
|
3619
|
-
initialized:
|
|
3620
|
-
changeRecords:
|
|
3612
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3613
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3621
3614
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3622
3615
|
resetForm: () => void;
|
|
3623
3616
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3624
|
-
getTextByName: (name: string, config?:
|
|
3617
|
+
getTextByName: (name: string, config?: import("@tmagic/form-schema").FormConfig) => string | undefined;
|
|
3625
3618
|
}, {}, {}, {}, {
|
|
3626
3619
|
disabled: boolean;
|
|
3627
3620
|
labelWidth: string;
|
|
3628
3621
|
inline: boolean;
|
|
3629
3622
|
labelPosition: string;
|
|
3630
|
-
config:
|
|
3623
|
+
config: import("@tmagic/form-schema").FormConfig;
|
|
3631
3624
|
height: string;
|
|
3632
3625
|
initValues: Record<string, any>;
|
|
3633
3626
|
lastValues: Record<string, any>;
|
|
@@ -3637,7 +3630,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3637
3630
|
stepActive: string | number;
|
|
3638
3631
|
}> | null;
|
|
3639
3632
|
submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
3640
|
-
} & {} &
|
|
3633
|
+
} & {} & import("@vue/runtime-core").ComponentCustomProperties & {} & {
|
|
3641
3634
|
$slots: {
|
|
3642
3635
|
'props-form-panel-header'(_props: {}): any;
|
|
3643
3636
|
};
|
|
@@ -3645,7 +3638,7 @@ declare const __VLS_base$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13,
|
|
|
3645
3638
|
onUnmounted?: (() => any) | undefined;
|
|
3646
3639
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3647
3640
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3648
|
-
}>, {}, {}, {}, {}, string,
|
|
3641
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3649
3642
|
declare const __VLS_export$14: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
3650
3643
|
declare const _default$26: typeof __VLS_export$14;
|
|
3651
3644
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -3667,8 +3660,8 @@ type __VLS_Props$12 = {
|
|
|
3667
3660
|
labelPosition?: string;
|
|
3668
3661
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3669
3662
|
};
|
|
3670
|
-
declare const __VLS_base$6:
|
|
3671
|
-
configForm: Readonly<
|
|
3663
|
+
declare const __VLS_base$6: import("@vue/runtime-core").DefineComponent<__VLS_Props$12, {
|
|
3664
|
+
configForm: Readonly<import("@vue/reactivity").ShallowRef<import("@vue/runtime-core").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3672
3665
|
config: FormConfig;
|
|
3673
3666
|
initValues: Record<string, any>;
|
|
3674
3667
|
lastValues?: Record<string, any>;
|
|
@@ -3692,22 +3685,22 @@ declare const __VLS_base$6: _$_vue_runtime_core0.DefineComponent<__VLS_Props$12,
|
|
|
3692
3685
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3693
3686
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3694
3687
|
}>, {
|
|
3695
|
-
values:
|
|
3696
|
-
lastValuesProcessed:
|
|
3688
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3689
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3697
3690
|
formState: FormState;
|
|
3698
|
-
initialized:
|
|
3699
|
-
changeRecords:
|
|
3691
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3692
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3700
3693
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3701
3694
|
resetForm: () => void;
|
|
3702
3695
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3703
3696
|
getTextByName: (name: string, config?: FormConfig) => string | undefined;
|
|
3704
|
-
}, {}, {}, {},
|
|
3697
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3705
3698
|
error: (...args: any[]) => void;
|
|
3706
3699
|
change: (...args: any[]) => void;
|
|
3707
3700
|
"field-input": (...args: any[]) => void;
|
|
3708
3701
|
"field-change": (...args: any[]) => void;
|
|
3709
3702
|
"update:stepActive": (...args: any[]) => void;
|
|
3710
|
-
},
|
|
3703
|
+
}, import("@vue/runtime-core").PublicProps, {
|
|
3711
3704
|
disabled: boolean;
|
|
3712
3705
|
labelWidth: string;
|
|
3713
3706
|
inline: boolean;
|
|
@@ -3720,7 +3713,7 @@ declare const __VLS_base$6: _$_vue_runtime_core0.DefineComponent<__VLS_Props$12,
|
|
|
3720
3713
|
keyProp: string;
|
|
3721
3714
|
parentValues: Record<string, any>;
|
|
3722
3715
|
stepActive: string | number;
|
|
3723
|
-
}, false, {}, {},
|
|
3716
|
+
}, false, {}, {}, import("@vue/runtime-core").GlobalComponents, import("@vue/runtime-core").GlobalDirectives, string, {}, any, import("@vue/runtime-core").ComponentProvideOptions, {
|
|
3724
3717
|
P: {};
|
|
3725
3718
|
B: {};
|
|
3726
3719
|
D: {};
|
|
@@ -3751,11 +3744,11 @@ declare const __VLS_base$6: _$_vue_runtime_core0.DefineComponent<__VLS_Props$12,
|
|
|
3751
3744
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3752
3745
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
3753
3746
|
}>, {
|
|
3754
|
-
values:
|
|
3755
|
-
lastValuesProcessed:
|
|
3747
|
+
values: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3748
|
+
lastValuesProcessed: import("@vue/reactivity").Ref<FormValue, FormValue>;
|
|
3756
3749
|
formState: FormState;
|
|
3757
|
-
initialized:
|
|
3758
|
-
changeRecords:
|
|
3750
|
+
initialized: import("@vue/reactivity").Ref<boolean, boolean>;
|
|
3751
|
+
changeRecords: import("@vue/reactivity").ShallowRef<ChangeRecord$1[], ChangeRecord$1[]>;
|
|
3759
3752
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
|
|
3760
3753
|
resetForm: () => void;
|
|
3761
3754
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -3775,19 +3768,19 @@ declare const __VLS_base$6: _$_vue_runtime_core0.DefineComponent<__VLS_Props$12,
|
|
|
3775
3768
|
stepActive: string | number;
|
|
3776
3769
|
}> | null>>;
|
|
3777
3770
|
submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
3778
|
-
}, {}, {}, {},
|
|
3771
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3779
3772
|
mounted: (internalInstance: any) => any;
|
|
3780
3773
|
unmounted: () => any;
|
|
3781
3774
|
submit: (values: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
3782
3775
|
"submit-error": (e: any) => any;
|
|
3783
3776
|
"form-error": (e: any) => any;
|
|
3784
|
-
}, string,
|
|
3777
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$12> & Readonly<{
|
|
3785
3778
|
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3786
3779
|
onUnmounted?: (() => any) | undefined;
|
|
3787
3780
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
3788
3781
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3789
3782
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3790
|
-
}>, {}, {}, {}, {}, string,
|
|
3783
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3791
3784
|
declare const __VLS_export$13: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
3792
3785
|
declare const _default$25: typeof __VLS_export$13;
|
|
3793
3786
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -3801,10 +3794,12 @@ type __VLS_Props$11 = {
|
|
|
3801
3794
|
data?: MenuButton | MenuComponent;
|
|
3802
3795
|
eventType?: 'mousedown' | 'mouseup' | 'click';
|
|
3803
3796
|
};
|
|
3804
|
-
declare const __VLS_export$12:
|
|
3797
|
+
declare const __VLS_export$12: import("@vue/runtime-core").DefineComponent<__VLS_Props$11, {
|
|
3798
|
+
getElRef: () => Readonly<import("@vue/reactivity").ShallowRef<HTMLDivElement | null>>;
|
|
3799
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$11> & Readonly<{}>, {
|
|
3805
3800
|
data: MenuButton | MenuComponent;
|
|
3806
3801
|
eventType: "mousedown" | "mouseup" | "click";
|
|
3807
|
-
}, {}, {}, {}, string,
|
|
3802
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3808
3803
|
declare const _default$31: typeof __VLS_export$12;
|
|
3809
3804
|
//#endregion
|
|
3810
3805
|
//#region temp/packages/editor/src/components/ContentMenu.vue.d.ts
|
|
@@ -3818,8 +3813,8 @@ declare var __VLS_7$1: {};
|
|
|
3818
3813
|
type __VLS_Slots$5 = {} & {
|
|
3819
3814
|
title?: (props: typeof __VLS_7$1) => any;
|
|
3820
3815
|
};
|
|
3821
|
-
declare const __VLS_base$5:
|
|
3822
|
-
menu: Readonly<
|
|
3816
|
+
declare const __VLS_base$5: import("@vue/runtime-core").DefineComponent<__VLS_Props$10, {
|
|
3817
|
+
menu: Readonly<import("@vue/reactivity").ShallowRef<HTMLDivElement | null>>;
|
|
3823
3818
|
menuPosition: Ref<{
|
|
3824
3819
|
left: number;
|
|
3825
3820
|
top: number;
|
|
@@ -3840,11 +3835,11 @@ declare const __VLS_base$5: _$_vue_runtime_core0.DefineComponent<__VLS_Props$10,
|
|
|
3840
3835
|
clientY: number;
|
|
3841
3836
|
clientX: number;
|
|
3842
3837
|
}) => void;
|
|
3843
|
-
}, {}, {}, {},
|
|
3838
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3844
3839
|
mouseenter: () => any;
|
|
3845
3840
|
show: () => any;
|
|
3846
3841
|
hide: () => any;
|
|
3847
|
-
}, string,
|
|
3842
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$10> & Readonly<{
|
|
3848
3843
|
onMouseenter?: (() => any) | undefined;
|
|
3849
3844
|
onShow?: (() => any) | undefined;
|
|
3850
3845
|
onHide?: (() => any) | undefined;
|
|
@@ -3852,7 +3847,7 @@ declare const __VLS_base$5: _$_vue_runtime_core0.DefineComponent<__VLS_Props$10,
|
|
|
3852
3847
|
menuData: (MenuButton | MenuComponent)[];
|
|
3853
3848
|
isSubMenu: boolean;
|
|
3854
3849
|
autoHide: boolean;
|
|
3855
|
-
}, {}, {}, {}, string,
|
|
3850
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3856
3851
|
declare const __VLS_export$11: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
3857
3852
|
declare const _default$7: typeof __VLS_export$11;
|
|
3858
3853
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -3865,7 +3860,7 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
3865
3860
|
type __VLS_Props$9 = {
|
|
3866
3861
|
icon?: any;
|
|
3867
3862
|
};
|
|
3868
|
-
declare const __VLS_export$10:
|
|
3863
|
+
declare const __VLS_export$10: import("@vue/runtime-core").DefineComponent<__VLS_Props$9, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$9> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3869
3864
|
declare const _default$20: typeof __VLS_export$10;
|
|
3870
3865
|
//#endregion
|
|
3871
3866
|
//#region temp/packages/editor/src/components/SplitView.vue.d.ts
|
|
@@ -3888,13 +3883,13 @@ type __VLS_Slots$4 = {} & {
|
|
|
3888
3883
|
} & {
|
|
3889
3884
|
right?: (props: typeof __VLS_19) => any;
|
|
3890
3885
|
};
|
|
3891
|
-
declare const __VLS_base$4:
|
|
3886
|
+
declare const __VLS_base$4: import("@vue/runtime-core").DefineComponent<__VLS_Props$8, {
|
|
3892
3887
|
updateWidth(): void;
|
|
3893
|
-
}, {}, {}, {},
|
|
3888
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3894
3889
|
change: (...args: any[]) => void;
|
|
3895
3890
|
"update:left": (...args: any[]) => void;
|
|
3896
3891
|
"update:right": (...args: any[]) => void;
|
|
3897
|
-
}, string,
|
|
3892
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
3898
3893
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3899
3894
|
"onUpdate:left"?: ((...args: any[]) => any) | undefined;
|
|
3900
3895
|
"onUpdate:right"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3902,7 +3897,7 @@ declare const __VLS_base$4: _$_vue_runtime_core0.DefineComponent<__VLS_Props$8,
|
|
|
3902
3897
|
minLeft: number;
|
|
3903
3898
|
minRight: number;
|
|
3904
3899
|
minCenter: number;
|
|
3905
|
-
}, {}, {}, {}, string,
|
|
3900
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3906
3901
|
declare const __VLS_export$9: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
3907
3902
|
declare const _default$23: typeof __VLS_export$9;
|
|
3908
3903
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -3916,11 +3911,11 @@ declare var __VLS_1: {};
|
|
|
3916
3911
|
type __VLS_Slots$3 = {} & {
|
|
3917
3912
|
default?: (props: typeof __VLS_1) => any;
|
|
3918
3913
|
};
|
|
3919
|
-
declare const __VLS_base$3:
|
|
3920
|
-
change: (e: OnDrag$1<
|
|
3921
|
-
}, string,
|
|
3922
|
-
onChange?: ((e: OnDrag$1<
|
|
3923
|
-
}>, {}, {}, {}, {}, string,
|
|
3914
|
+
declare const __VLS_base$3: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3915
|
+
change: (e: OnDrag$1<import("gesto").default>) => any;
|
|
3916
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{
|
|
3917
|
+
onChange?: ((e: OnDrag$1<import("gesto").default>) => any) | undefined;
|
|
3918
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
|
|
3924
3919
|
declare const __VLS_export$8: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
3925
3920
|
declare const _default$27: typeof __VLS_export$8;
|
|
3926
3921
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -3943,22 +3938,22 @@ type __VLS_ModelProps$1 = {
|
|
|
3943
3938
|
'visible'?: boolean;
|
|
3944
3939
|
};
|
|
3945
3940
|
type __VLS_PublicProps$1 = __VLS_Props$7 & __VLS_ModelProps$1;
|
|
3946
|
-
declare const __VLS_export$7:
|
|
3941
|
+
declare const __VLS_export$7: import("@vue/runtime-core").DefineComponent<__VLS_PublicProps$1, {
|
|
3947
3942
|
show(): Promise<void>;
|
|
3948
3943
|
hide(): Promise<void>;
|
|
3949
|
-
}, {}, {}, {},
|
|
3944
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3950
3945
|
close: () => any;
|
|
3951
3946
|
submit: (values: CodeBlockContent, eventData: ContainerChangeEventData) => any;
|
|
3952
3947
|
open: () => any;
|
|
3953
3948
|
"update:width": (value: number) => any;
|
|
3954
3949
|
"update:visible": (value: boolean) => any;
|
|
3955
|
-
}, string,
|
|
3950
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
|
|
3956
3951
|
onClose?: (() => any) | undefined;
|
|
3957
3952
|
onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
|
|
3958
3953
|
onOpen?: (() => any) | undefined;
|
|
3959
3954
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3960
3955
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3961
|
-
}>, {}, {}, {}, {}, string,
|
|
3956
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
3962
3957
|
declare const _default: typeof __VLS_export$7;
|
|
3963
3958
|
//#endregion
|
|
3964
3959
|
//#region temp/packages/editor/src/components/FloatingBox.vue.d.ts
|
|
@@ -3983,22 +3978,22 @@ type __VLS_Slots$2 = {} & {
|
|
|
3983
3978
|
} & {
|
|
3984
3979
|
body?: (props: typeof __VLS_22) => any;
|
|
3985
3980
|
};
|
|
3986
|
-
declare const __VLS_base$2:
|
|
3987
|
-
bodyHeight:
|
|
3988
|
-
target: Readonly<
|
|
3989
|
-
titleEl: Readonly<
|
|
3990
|
-
}, {}, {}, {},
|
|
3981
|
+
declare const __VLS_base$2: import("@vue/runtime-core").DefineComponent<__VLS_PublicProps, {
|
|
3982
|
+
bodyHeight: import("@vue/reactivity").ComputedRef<number | "auto">;
|
|
3983
|
+
target: Readonly<import("@vue/reactivity").ShallowRef<HTMLDivElement | null>>;
|
|
3984
|
+
titleEl: Readonly<import("@vue/reactivity").ShallowRef<HTMLDivElement | null>>;
|
|
3985
|
+
}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
3991
3986
|
"update:width": (value: number) => any;
|
|
3992
3987
|
"update:height": (value: number) => any;
|
|
3993
3988
|
"update:visible": (value: boolean) => any;
|
|
3994
|
-
}, string,
|
|
3989
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
3995
3990
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3996
3991
|
"onUpdate:height"?: ((value: number) => any) | undefined;
|
|
3997
3992
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3998
3993
|
}>, {
|
|
3999
3994
|
title: string;
|
|
4000
3995
|
position: Position;
|
|
4001
|
-
}, {}, {}, {}, string,
|
|
3996
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4002
3997
|
declare const __VLS_export$6: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
4003
3998
|
declare const _default$19: typeof __VLS_export$6;
|
|
4004
3999
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -4027,7 +4022,7 @@ type __VLS_Props$5 = {
|
|
|
4027
4022
|
emptyText?: string; /** 自定义判断节点是否可展开(即是否要展示为拥有子节点的形态)的函数 */
|
|
4028
4023
|
isExpandable?: IsExpandableFunction;
|
|
4029
4024
|
};
|
|
4030
|
-
declare const __VLS_base$1:
|
|
4025
|
+
declare const __VLS_base$1: import("@vue/runtime-core").DefineComponent<__VLS_Props$5, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4031
4026
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
4032
4027
|
"node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
|
|
4033
4028
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
@@ -4036,7 +4031,7 @@ declare const __VLS_base$1: _$_vue_runtime_core0.DefineComponent<__VLS_Props$5,
|
|
|
4036
4031
|
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
4037
4032
|
"node-dblclick": (event: MouseEvent, data: TreeNodeData) => any;
|
|
4038
4033
|
"node-dragover": (event: DragEvent) => any;
|
|
4039
|
-
}, string,
|
|
4034
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
4040
4035
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
4041
4036
|
"onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
4042
4037
|
"onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
@@ -4048,7 +4043,7 @@ declare const __VLS_base$1: _$_vue_runtime_core0.DefineComponent<__VLS_Props$5,
|
|
|
4048
4043
|
}>, {
|
|
4049
4044
|
emptyText: string;
|
|
4050
4045
|
indent: number;
|
|
4051
|
-
}, {}, {}, {}, string,
|
|
4046
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4052
4047
|
declare const __VLS_export$5: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
4053
4048
|
declare const _default$32: typeof __VLS_export$5;
|
|
4054
4049
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -4078,7 +4073,7 @@ type __VLS_Props$4 = {
|
|
|
4078
4073
|
nextLevelIndentIncrement?: number; /** 自定义判断节点是否可展开(即是否要展示为拥有子节点的形态)的函数 */
|
|
4079
4074
|
isExpandable?: IsExpandableFunction;
|
|
4080
4075
|
};
|
|
4081
|
-
declare const __VLS_base:
|
|
4076
|
+
declare const __VLS_base: import("@vue/runtime-core").DefineComponent<__VLS_Props$4, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4082
4077
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
4083
4078
|
"node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
|
|
4084
4079
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
@@ -4086,7 +4081,7 @@ declare const __VLS_base: _$_vue_runtime_core0.DefineComponent<__VLS_Props$4, {}
|
|
|
4086
4081
|
"node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
|
|
4087
4082
|
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
4088
4083
|
"node-dblclick": (event: MouseEvent, data: TreeNodeData) => any;
|
|
4089
|
-
}, string,
|
|
4084
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$4> & Readonly<{
|
|
4090
4085
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
4091
4086
|
"onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
4092
4087
|
"onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
@@ -4099,7 +4094,7 @@ declare const __VLS_base: _$_vue_runtime_core0.DefineComponent<__VLS_Props$4, {}
|
|
|
4099
4094
|
parentsId: Id[];
|
|
4100
4095
|
nextLevelIndentIncrement: number;
|
|
4101
4096
|
isExpandable: IsExpandableFunction;
|
|
4102
|
-
}, {}, {}, {}, string,
|
|
4097
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4103
4098
|
declare const __VLS_export$4: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4104
4099
|
declare const _default$33: typeof __VLS_export$4;
|
|
4105
4100
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -4110,42 +4105,42 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
4110
4105
|
//#endregion
|
|
4111
4106
|
//#region temp/packages/editor/src/fields/PageFragmentSelect.vue.d.ts
|
|
4112
4107
|
type __VLS_Props$3 = FieldProps<PageFragmentSelectConfig>;
|
|
4113
|
-
declare const __VLS_export$3:
|
|
4108
|
+
declare const __VLS_export$3: import("@vue/runtime-core").DefineComponent<__VLS_Props$3, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4114
4109
|
change: (...args: any[]) => void;
|
|
4115
|
-
}, string,
|
|
4110
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
4116
4111
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4117
4112
|
}>, {
|
|
4118
4113
|
disabled: boolean;
|
|
4119
|
-
}, {}, {}, {}, string,
|
|
4114
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4120
4115
|
declare const _default$24: typeof __VLS_export$3;
|
|
4121
4116
|
//#endregion
|
|
4122
4117
|
//#region temp/packages/editor/src/fields/DisplayConds.vue.d.ts
|
|
4123
4118
|
type __VLS_Props$2 = FieldProps<DisplayCondsConfig>;
|
|
4124
|
-
declare const __VLS_export$2:
|
|
4119
|
+
declare const __VLS_export$2: import("@vue/runtime-core").DefineComponent<__VLS_Props$2, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4125
4120
|
change: (value: DisplayCond[], eventData?: ContainerChangeEventData | undefined) => any;
|
|
4126
|
-
}, string,
|
|
4121
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
4127
4122
|
onChange?: ((value: DisplayCond[], eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
4128
4123
|
}>, {
|
|
4129
4124
|
disabled: boolean;
|
|
4130
|
-
}, {}, {}, {}, string,
|
|
4125
|
+
}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4131
4126
|
declare const _default$17: typeof __VLS_export$2;
|
|
4132
4127
|
//#endregion
|
|
4133
4128
|
//#region temp/packages/editor/src/fields/CondOpSelect.vue.d.ts
|
|
4134
4129
|
type __VLS_Props$1 = FieldProps<CondOpSelectConfig>;
|
|
4135
|
-
declare const __VLS_export$1:
|
|
4130
|
+
declare const __VLS_export$1: import("@vue/runtime-core").DefineComponent<__VLS_Props$1, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4136
4131
|
change: (value: string) => any;
|
|
4137
|
-
}, string,
|
|
4132
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
4138
4133
|
onChange?: ((value: string) => any) | undefined;
|
|
4139
|
-
}>, {}, {}, {}, {}, string,
|
|
4134
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4140
4135
|
declare const _default$6: typeof __VLS_export$1;
|
|
4141
4136
|
//#endregion
|
|
4142
4137
|
//#region temp/packages/editor/src/fields/StyleSetter/Index.vue.d.ts
|
|
4143
4138
|
type __VLS_Props = FieldProps<StyleSchema>;
|
|
4144
|
-
declare const __VLS_export:
|
|
4139
|
+
declare const __VLS_export: import("@vue/runtime-core").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4145
4140
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
4146
|
-
}, string,
|
|
4141
|
+
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
4147
4142
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
4148
|
-
}>, {}, {}, {}, {}, string,
|
|
4143
|
+
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4149
4144
|
declare const _default$28: typeof __VLS_export;
|
|
4150
4145
|
//#endregion
|
|
4151
4146
|
//#region temp/packages/editor/src/plugin.d.ts
|