@tmagic/editor 1.5.20 → 1.5.22
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/style.css +14 -2
- package/dist/tmagic-editor.js +1746 -2415
- package/dist/tmagic-editor.umd.cjs +1744 -2413
- package/package.json +12 -12
- package/src/Editor.vue +17 -1
- package/src/components/CodeBlockEditor.vue +3 -3
- package/src/editorProps.ts +6 -0
- package/src/fields/DataSourceFieldSelect/Index.vue +8 -3
- package/src/fields/DataSourceInput.vue +12 -3
- package/src/fields/EventSelect.vue +37 -22
- package/src/fields/StyleSetter/pro/Position.vue +10 -2
- package/src/index.ts +3 -0
- package/src/initService.ts +16 -0
- package/src/layouts/CodeEditor.vue +36 -10
- package/src/layouts/sidebar/Sidebar.vue +14 -2
- package/src/layouts/workspace/viewer/Stage.vue +17 -3
- package/src/services/events.ts +2 -2
- package/src/services/props.ts +25 -1
- package/src/theme/code-editor.scss +7 -2
- package/src/theme/props-panel.scss +10 -0
- package/src/type.ts +16 -0
- package/src/utils/props.ts +39 -18
- package/types/index.d.ts +367 -349
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as vue from 'vue';
|
|
2
1
|
import { Component, ComputedRef, Ref, ShallowRef, App } from 'vue';
|
|
3
2
|
import { TMagicButton, DesignPluginOptions } from '@tmagic/design';
|
|
4
3
|
export * from '@tmagic/design';
|
|
@@ -16,17 +15,18 @@ import * as StageCore from '@tmagic/stage';
|
|
|
16
15
|
import StageCore__default, { ContainerHighlightType, MoveableOptions, CustomizeMoveableOptionsCallbackConfig, UpdateDragEl, RenderType, GuidesOptions } from '@tmagic/stage';
|
|
17
16
|
export * from '@tmagic/stage';
|
|
18
17
|
export { default as StageCore } from '@tmagic/stage';
|
|
18
|
+
import * as monaco from 'monaco-editor';
|
|
19
19
|
import * as _tmagic_schema from '@tmagic/schema';
|
|
20
20
|
import { StyleSchema } from '@tmagic/schema';
|
|
21
|
+
import * as _vue_reactivity from '@vue/reactivity';
|
|
21
22
|
export * from '@tmagic/table';
|
|
22
23
|
export { default as tablePlugin } from '@tmagic/table';
|
|
23
24
|
export * from '@tmagic/utils';
|
|
24
25
|
import * as gesto from 'gesto';
|
|
25
26
|
import gesto__default, { OnDrag } from 'gesto';
|
|
26
27
|
export { OnDrag } from 'gesto';
|
|
27
|
-
import * as
|
|
28
|
+
import * as _vue_runtime_core from '@vue/runtime-core';
|
|
28
29
|
import * as _tmagic_form_schema from '@tmagic/form-schema';
|
|
29
|
-
import * as monaco from 'monaco-editor';
|
|
30
30
|
import { Close } from '@element-plus/icons-vue';
|
|
31
31
|
|
|
32
32
|
/**
|
|
@@ -540,7 +540,7 @@ declare class Events extends export_default {
|
|
|
540
540
|
getEvent(type: string): EventOption[];
|
|
541
541
|
setMethods(methods: Record<string, EventOption[]>): void;
|
|
542
542
|
setMethod(type: string, method: EventOption[]): void;
|
|
543
|
-
getMethod(type: string): EventOption[];
|
|
543
|
+
getMethod(type: string, _targetId: Id): EventOption[];
|
|
544
544
|
resetState(): void;
|
|
545
545
|
destroy(): void;
|
|
546
546
|
usePlugin(options: AsyncHookPlugin<AsyncMethodName$2, Events> & SyncHookPlugin<SyncMethodName$3, Events>): void;
|
|
@@ -629,6 +629,10 @@ type SyncMethodName$2 = Writable<(typeof canUsePluginMethods$3)['sync']>;
|
|
|
629
629
|
declare class Props extends export_default {
|
|
630
630
|
private state;
|
|
631
631
|
constructor();
|
|
632
|
+
setDisabledDataSource(disabled: boolean): void;
|
|
633
|
+
setDisabledCodeBlock(disabled: boolean): void;
|
|
634
|
+
getDisabledDataSource(): boolean;
|
|
635
|
+
getDisabledCodeBlock(): boolean;
|
|
632
636
|
setPropsConfigs(configs: Record<string, FormConfig | PropsFormConfigFunction>): void;
|
|
633
637
|
fillConfig(config: FormConfig, labelWidth?: string): Promise<FormConfig>;
|
|
634
638
|
setPropsConfig(type: string, config: FormConfig | PropsFormConfigFunction): Promise<void>;
|
|
@@ -802,7 +806,7 @@ type AsyncMethodName = Writable<(typeof canUsePluginMethods)['async']>;
|
|
|
802
806
|
declare class Ui extends export_default {
|
|
803
807
|
constructor();
|
|
804
808
|
set<K extends keyof UiState, T extends UiState[K]>(name: K, value: T): void;
|
|
805
|
-
get<K extends keyof UiState>(name: K):
|
|
809
|
+
get<K extends keyof UiState>(name: K): _vue_reactivity.ShallowReactive<UiState>[K];
|
|
806
810
|
zoom(zoom: number): Promise<void>;
|
|
807
811
|
calcZoom(): Promise<number>;
|
|
808
812
|
resetState(): void;
|
|
@@ -895,6 +899,8 @@ type BeforeAdd = (config: MNode, parent: MContainer) => Promise<MNode> | MNode;
|
|
|
895
899
|
type GetConfig = (config: FormConfig) => Promise<FormConfig> | FormConfig;
|
|
896
900
|
interface EditorInstallOptions {
|
|
897
901
|
parseDSL: <T = any>(dsl: string) => T;
|
|
902
|
+
customCreateMonacoEditor: (monaco: typeof monaco, codeEditorEl: HTMLElement, options: monaco.editor.IStandaloneEditorConstructionOptions) => monaco.editor.IStandaloneCodeEditor;
|
|
903
|
+
customCreateMonacoDiffEditor: (monaco: typeof monaco, codeEditorEl: HTMLElement, options: monaco.editor.IStandaloneEditorConstructionOptions) => monaco.editor.IStandaloneDiffEditor;
|
|
898
904
|
[key: string]: any;
|
|
899
905
|
}
|
|
900
906
|
interface Services {
|
|
@@ -947,6 +953,10 @@ interface PropsState {
|
|
|
947
953
|
propsConfigMap: Record<string, FormConfig>;
|
|
948
954
|
propsValueMap: Record<string, Partial<MNode>>;
|
|
949
955
|
relateIdMap: Record<Id, Id>;
|
|
956
|
+
/** 禁用数据源 */
|
|
957
|
+
disabledDataSource: boolean;
|
|
958
|
+
/** 禁用代码块 */
|
|
959
|
+
disabledCodeBlock: boolean;
|
|
950
960
|
}
|
|
951
961
|
interface StageOverlayState {
|
|
952
962
|
wrapDiv: HTMLDivElement;
|
|
@@ -1395,9 +1405,9 @@ interface ContainerChangeEventData {
|
|
|
1395
1405
|
}
|
|
1396
1406
|
|
|
1397
1407
|
declare const useCodeBlockEdit: (codeBlockService: Services["codeBlockService"]) => {
|
|
1398
|
-
codeId:
|
|
1399
|
-
codeConfig:
|
|
1400
|
-
codeBlockEditor: Readonly<
|
|
1408
|
+
codeId: _vue_reactivity.Ref<string | undefined, string | undefined>;
|
|
1409
|
+
codeConfig: _vue_reactivity.Ref<CodeBlockContent | undefined, CodeBlockContent | undefined>;
|
|
1410
|
+
codeBlockEditor: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1401
1411
|
content: CodeBlockContent;
|
|
1402
1412
|
disabled?: boolean;
|
|
1403
1413
|
isDataSource?: boolean;
|
|
@@ -1407,20 +1417,20 @@ declare const useCodeBlockEdit: (codeBlockService: Services["codeBlockService"])
|
|
|
1407
1417
|
visible?: boolean;
|
|
1408
1418
|
}> & Readonly<{
|
|
1409
1419
|
onClose?: (() => any) | undefined;
|
|
1410
|
-
onOpen?: (() => any) | undefined;
|
|
1411
1420
|
onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
|
|
1421
|
+
onOpen?: (() => any) | undefined;
|
|
1412
1422
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
1413
1423
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
1414
1424
|
}>, {
|
|
1415
1425
|
show(): Promise<void>;
|
|
1416
1426
|
hide(): Promise<void>;
|
|
1417
|
-
}, {}, {}, {},
|
|
1427
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
1418
1428
|
close: () => any;
|
|
1419
|
-
open: () => any;
|
|
1420
1429
|
submit: (values: CodeBlockContent, eventData: ContainerChangeEventData) => any;
|
|
1430
|
+
open: () => any;
|
|
1421
1431
|
"update:width": (value: number) => any;
|
|
1422
1432
|
"update:visible": (value: boolean) => any;
|
|
1423
|
-
},
|
|
1433
|
+
}, _vue_runtime_core.PublicProps, {}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
1424
1434
|
P: {};
|
|
1425
1435
|
B: {};
|
|
1426
1436
|
D: {};
|
|
@@ -1437,8 +1447,8 @@ declare const useCodeBlockEdit: (codeBlockService: Services["codeBlockService"])
|
|
|
1437
1447
|
visible?: boolean;
|
|
1438
1448
|
}> & Readonly<{
|
|
1439
1449
|
onClose?: (() => any) | undefined;
|
|
1440
|
-
onOpen?: (() => any) | undefined;
|
|
1441
1450
|
onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
|
|
1451
|
+
onOpen?: (() => any) | undefined;
|
|
1442
1452
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
1443
1453
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
1444
1454
|
}>, {
|
|
@@ -1461,7 +1471,7 @@ interface State {
|
|
|
1461
1471
|
declare const useFloatBox: (slideKeys: ComputedRef<string[]>) => {
|
|
1462
1472
|
dragstartHandler: (e: DragEvent) => void;
|
|
1463
1473
|
dragendHandler: (key: string, e: DragEvent) => void;
|
|
1464
|
-
floatBoxStates:
|
|
1474
|
+
floatBoxStates: _vue_reactivity.Ref<{
|
|
1465
1475
|
[x: string]: State;
|
|
1466
1476
|
}, {
|
|
1467
1477
|
[x: string]: State;
|
|
@@ -1477,7 +1487,7 @@ declare const useWindowRect: () => {
|
|
|
1477
1487
|
};
|
|
1478
1488
|
|
|
1479
1489
|
declare const useEditorContentHeight: () => {
|
|
1480
|
-
height:
|
|
1490
|
+
height: _vue_reactivity.Ref<number, number>;
|
|
1481
1491
|
};
|
|
1482
1492
|
|
|
1483
1493
|
declare const useFilter: (nodeData: Ref<TreeNodeData[]>, nodeStatusMap: Ref<Map<Id, LayerNodeStatus> | undefined>, filterNodeMethod: (value: string, data: MNode) => boolean) => {
|
|
@@ -1486,7 +1496,7 @@ declare const useFilter: (nodeData: Ref<TreeNodeData[]>, nodeStatusMap: Ref<Map<
|
|
|
1486
1496
|
};
|
|
1487
1497
|
|
|
1488
1498
|
declare const useGetSo: (target: ShallowRef<HTMLElement | null>, emit: (evt: "change", e: OnDrag<gesto__default>) => void) => {
|
|
1489
|
-
isDragging:
|
|
1499
|
+
isDragging: _vue_reactivity.Ref<boolean, boolean>;
|
|
1490
1500
|
};
|
|
1491
1501
|
|
|
1492
1502
|
declare const useNextFloatBoxPosition: (uiService: Services["uiService"], parent?: Ref<HTMLDivElement | null>) => {
|
|
@@ -1504,7 +1514,7 @@ declare const useNextFloatBoxPosition: (uiService: Services["uiService"], parent
|
|
|
1504
1514
|
};
|
|
1505
1515
|
|
|
1506
1516
|
declare const useNodeStatus: (nodeData: ComputedRef<TreeNodeData[]>) => {
|
|
1507
|
-
nodeStatusMap:
|
|
1517
|
+
nodeStatusMap: _vue_reactivity.Ref<Map<Id, {
|
|
1508
1518
|
visible: boolean;
|
|
1509
1519
|
expand: boolean;
|
|
1510
1520
|
selected: boolean;
|
|
@@ -1543,7 +1553,11 @@ declare const displayTabConfig: TabPaneConfig;
|
|
|
1543
1553
|
* @param config 组件属性配置
|
|
1544
1554
|
* @returns Object
|
|
1545
1555
|
*/
|
|
1546
|
-
declare const fillConfig: (config?: FormConfig, labelWidth
|
|
1556
|
+
declare const fillConfig: (config?: FormConfig, { labelWidth, disabledDataSource, disabledCodeBlock, }?: {
|
|
1557
|
+
labelWidth?: string;
|
|
1558
|
+
disabledDataSource?: boolean;
|
|
1559
|
+
disabledCodeBlock?: boolean;
|
|
1560
|
+
}) => FormConfig;
|
|
1547
1561
|
|
|
1548
1562
|
declare const log: (...args: any[]) => void;
|
|
1549
1563
|
declare const info: (...args: any[]) => void;
|
|
@@ -1763,6 +1777,10 @@ interface EditorProps {
|
|
|
1763
1777
|
disabledStageOverlay?: boolean;
|
|
1764
1778
|
/** 禁用属性配置面板右下角显示源码的按钮 */
|
|
1765
1779
|
disabledShowSrc?: boolean;
|
|
1780
|
+
/** 禁用数据源 */
|
|
1781
|
+
disabledDataSource?: boolean;
|
|
1782
|
+
/** 禁用代码块 */
|
|
1783
|
+
disabledCodeBlock?: boolean;
|
|
1766
1784
|
/** 已选组件、代码编辑、数据源缩进配置 */
|
|
1767
1785
|
treeIndent?: number;
|
|
1768
1786
|
/** 已选组件、代码编辑、数据源子节点缩进增量配置 */
|
|
@@ -1785,7 +1803,7 @@ interface EditorProps {
|
|
|
1785
1803
|
}
|
|
1786
1804
|
|
|
1787
1805
|
type __VLS_Slots$c = EditorSlots;
|
|
1788
|
-
declare const __VLS_component$c:
|
|
1806
|
+
declare const __VLS_component$c: _vue_runtime_core.DefineComponent<EditorProps, {
|
|
1789
1807
|
editorService: EditorService;
|
|
1790
1808
|
historyService: HistoryService;
|
|
1791
1809
|
storageService: StorageService;
|
|
@@ -1798,10 +1816,10 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1798
1816
|
dataSourceService: DataSourceService;
|
|
1799
1817
|
keybindingService: KeybindingService;
|
|
1800
1818
|
stageOverlayService: StageOverlayService;
|
|
1801
|
-
}, {}, {}, {},
|
|
1819
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
1802
1820
|
"update:modelValue": (value: MApp | null) => any;
|
|
1803
1821
|
"props-panel-mounted": (instance: {
|
|
1804
|
-
$:
|
|
1822
|
+
$: _vue_runtime_core.ComponentInternalInstance;
|
|
1805
1823
|
$data: {};
|
|
1806
1824
|
$props: {
|
|
1807
1825
|
readonly config: _tmagic_form_schema.FormConfig;
|
|
@@ -1811,11 +1829,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1811
1829
|
readonly codeValueKey?: string | undefined;
|
|
1812
1830
|
readonly labelPosition?: string | undefined;
|
|
1813
1831
|
readonly extendState?: ((_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
1814
|
-
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1815
1832
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
1833
|
+
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1816
1834
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
1817
1835
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
1818
|
-
} &
|
|
1836
|
+
} & _vue_runtime_core.VNodeProps & _vue_runtime_core.AllowedComponentProps & _vue_runtime_core.ComponentCustomProps;
|
|
1819
1837
|
$attrs: {
|
|
1820
1838
|
[x: string]: unknown;
|
|
1821
1839
|
};
|
|
@@ -1823,14 +1841,14 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1823
1841
|
[x: string]: unknown;
|
|
1824
1842
|
};
|
|
1825
1843
|
$slots: Readonly<{
|
|
1826
|
-
[name: string]:
|
|
1844
|
+
[name: string]: _vue_runtime_core.Slot<any> | undefined;
|
|
1827
1845
|
}>;
|
|
1828
|
-
$root:
|
|
1829
|
-
$parent:
|
|
1846
|
+
$root: _vue_runtime_core.ComponentPublicInstance | null;
|
|
1847
|
+
$parent: _vue_runtime_core.ComponentPublicInstance | null;
|
|
1830
1848
|
$host: Element | null;
|
|
1831
|
-
$emit: ((event: "
|
|
1849
|
+
$emit: ((event: "submit", values: any, eventData?: ContainerChangeEventData | undefined) => void) & ((event: "mounted", internalInstance: any) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
1832
1850
|
$el: any;
|
|
1833
|
-
$options:
|
|
1851
|
+
$options: _vue_runtime_core.ComponentOptionsBase<Readonly<{
|
|
1834
1852
|
config: _tmagic_form_schema.FormConfig;
|
|
1835
1853
|
values: _tmagic_form_schema.FormValue;
|
|
1836
1854
|
disabledShowSrc?: boolean;
|
|
@@ -1839,12 +1857,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1839
1857
|
labelPosition?: string;
|
|
1840
1858
|
extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1841
1859
|
}> & Readonly<{
|
|
1842
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1843
1860
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
1861
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1844
1862
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
1845
1863
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
1846
1864
|
}>, {
|
|
1847
|
-
configForm: Readonly<
|
|
1865
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1848
1866
|
config: _tmagic_form_schema.FormConfig;
|
|
1849
1867
|
initValues: Record<string, any>;
|
|
1850
1868
|
lastValues?: Record<string, any>;
|
|
@@ -1868,21 +1886,21 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1868
1886
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1869
1887
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1870
1888
|
}>, {
|
|
1871
|
-
values:
|
|
1872
|
-
lastValuesProcessed:
|
|
1889
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
1890
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
1873
1891
|
formState: _tmagic_form_schema.FormState;
|
|
1874
|
-
initialized:
|
|
1875
|
-
changeRecords:
|
|
1892
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
1893
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
1876
1894
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
1877
1895
|
resetForm: () => void;
|
|
1878
1896
|
submitForm: (native?: boolean) => Promise<any>;
|
|
1879
|
-
}, {}, {}, {},
|
|
1897
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
1880
1898
|
change: (...args: any[]) => void;
|
|
1881
1899
|
error: (...args: any[]) => void;
|
|
1882
1900
|
"update:stepActive": (...args: any[]) => void;
|
|
1883
1901
|
"field-change": (...args: any[]) => void;
|
|
1884
1902
|
"field-input": (...args: any[]) => void;
|
|
1885
|
-
},
|
|
1903
|
+
}, _vue_runtime_core.PublicProps, {
|
|
1886
1904
|
disabled: boolean;
|
|
1887
1905
|
labelWidth: string;
|
|
1888
1906
|
inline: boolean;
|
|
@@ -1895,7 +1913,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1895
1913
|
keyProp: string;
|
|
1896
1914
|
parentValues: Record<string, any>;
|
|
1897
1915
|
stepActive: string | number;
|
|
1898
|
-
}, false, {}, {},
|
|
1916
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
1899
1917
|
P: {};
|
|
1900
1918
|
B: {};
|
|
1901
1919
|
D: {};
|
|
@@ -1926,11 +1944,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1926
1944
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
1927
1945
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
1928
1946
|
}>, {
|
|
1929
|
-
values:
|
|
1930
|
-
lastValuesProcessed:
|
|
1947
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
1948
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
1931
1949
|
formState: _tmagic_form_schema.FormState;
|
|
1932
|
-
initialized:
|
|
1933
|
-
changeRecords:
|
|
1950
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
1951
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
1934
1952
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
1935
1953
|
resetForm: () => void;
|
|
1936
1954
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -1949,12 +1967,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1949
1967
|
stepActive: string | number;
|
|
1950
1968
|
}> | null>>;
|
|
1951
1969
|
submit: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
1952
|
-
}, {}, {}, {},
|
|
1953
|
-
mounted: (internalInstance: any) => any;
|
|
1970
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
1954
1971
|
submit: (values: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
1972
|
+
mounted: (internalInstance: any) => any;
|
|
1955
1973
|
"submit-error": (e: any) => any;
|
|
1956
1974
|
"form-error": (e: any) => any;
|
|
1957
|
-
}, string, {}, {}, string, {},
|
|
1975
|
+
}, string, {}, {}, string, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, _vue_runtime_core.ComponentProvideOptions> & {
|
|
1958
1976
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1959
1977
|
created?: (() => void) | (() => void)[];
|
|
1960
1978
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -1967,13 +1985,13 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1967
1985
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
1968
1986
|
destroyed?: (() => void) | (() => void)[];
|
|
1969
1987
|
unmounted?: (() => void) | (() => void)[];
|
|
1970
|
-
renderTracked?: ((e:
|
|
1971
|
-
renderTriggered?: ((e:
|
|
1972
|
-
errorCaptured?: ((err: unknown, instance:
|
|
1988
|
+
renderTracked?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
1989
|
+
renderTriggered?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
1990
|
+
errorCaptured?: ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1973
1991
|
};
|
|
1974
1992
|
$forceUpdate: () => void;
|
|
1975
|
-
$nextTick: typeof
|
|
1976
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?:
|
|
1993
|
+
$nextTick: typeof _vue_runtime_core.nextTick;
|
|
1994
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: _vue_runtime_core.WatchOptions): _vue_reactivity.WatchStopHandle;
|
|
1977
1995
|
} & Readonly<{}> & Omit<Readonly<{
|
|
1978
1996
|
config: _tmagic_form_schema.FormConfig;
|
|
1979
1997
|
values: _tmagic_form_schema.FormValue;
|
|
@@ -1983,12 +2001,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
1983
2001
|
labelPosition?: string;
|
|
1984
2002
|
extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
1985
2003
|
}> & Readonly<{
|
|
1986
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1987
2004
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2005
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
1988
2006
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
1989
2007
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
1990
|
-
}>, "submit" | "configForm"> &
|
|
1991
|
-
configForm: Readonly<
|
|
2008
|
+
}>, "submit" | "configForm"> & _vue_reactivity.ShallowUnwrapRef<{
|
|
2009
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1992
2010
|
config: _tmagic_form_schema.FormConfig;
|
|
1993
2011
|
initValues: Record<string, any>;
|
|
1994
2012
|
lastValues?: Record<string, any>;
|
|
@@ -2012,21 +2030,21 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2012
2030
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2013
2031
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2014
2032
|
}>, {
|
|
2015
|
-
values:
|
|
2016
|
-
lastValuesProcessed:
|
|
2033
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2034
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2017
2035
|
formState: _tmagic_form_schema.FormState;
|
|
2018
|
-
initialized:
|
|
2019
|
-
changeRecords:
|
|
2036
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2037
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2020
2038
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2021
2039
|
resetForm: () => void;
|
|
2022
2040
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2023
|
-
}, {}, {}, {},
|
|
2041
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2024
2042
|
change: (...args: any[]) => void;
|
|
2025
2043
|
error: (...args: any[]) => void;
|
|
2026
2044
|
"update:stepActive": (...args: any[]) => void;
|
|
2027
2045
|
"field-change": (...args: any[]) => void;
|
|
2028
2046
|
"field-input": (...args: any[]) => void;
|
|
2029
|
-
},
|
|
2047
|
+
}, _vue_runtime_core.PublicProps, {
|
|
2030
2048
|
disabled: boolean;
|
|
2031
2049
|
labelWidth: string;
|
|
2032
2050
|
inline: boolean;
|
|
@@ -2039,7 +2057,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2039
2057
|
keyProp: string;
|
|
2040
2058
|
parentValues: Record<string, any>;
|
|
2041
2059
|
stepActive: string | number;
|
|
2042
|
-
}, false, {}, {},
|
|
2060
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
2043
2061
|
P: {};
|
|
2044
2062
|
B: {};
|
|
2045
2063
|
D: {};
|
|
@@ -2070,11 +2088,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2070
2088
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2071
2089
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2072
2090
|
}>, {
|
|
2073
|
-
values:
|
|
2074
|
-
lastValuesProcessed:
|
|
2091
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2092
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2075
2093
|
formState: _tmagic_form_schema.FormState;
|
|
2076
|
-
initialized:
|
|
2077
|
-
changeRecords:
|
|
2094
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2095
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2078
2096
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2079
2097
|
resetForm: () => void;
|
|
2080
2098
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -2093,17 +2111,17 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2093
2111
|
stepActive: string | number;
|
|
2094
2112
|
}> | null>>;
|
|
2095
2113
|
submit: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
2096
|
-
}> & {} &
|
|
2114
|
+
}> & {} & _vue_runtime_core.ComponentCustomProperties & {} & {
|
|
2097
2115
|
$slots: {
|
|
2098
2116
|
'props-form-panel-header'(_props: {}): any;
|
|
2099
2117
|
};
|
|
2100
2118
|
}) => any;
|
|
2101
2119
|
"props-form-error": (e: any) => any;
|
|
2102
2120
|
"props-submit-error": (e: any) => any;
|
|
2103
|
-
}, string,
|
|
2121
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<EditorProps> & Readonly<{
|
|
2104
2122
|
"onUpdate:modelValue"?: ((value: MApp | null) => any) | undefined;
|
|
2105
2123
|
"onProps-panel-mounted"?: ((instance: {
|
|
2106
|
-
$:
|
|
2124
|
+
$: _vue_runtime_core.ComponentInternalInstance;
|
|
2107
2125
|
$data: {};
|
|
2108
2126
|
$props: {
|
|
2109
2127
|
readonly config: _tmagic_form_schema.FormConfig;
|
|
@@ -2113,11 +2131,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2113
2131
|
readonly codeValueKey?: string | undefined;
|
|
2114
2132
|
readonly labelPosition?: string | undefined;
|
|
2115
2133
|
readonly extendState?: ((_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
2116
|
-
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2117
2134
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2135
|
+
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2118
2136
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2119
2137
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
2120
|
-
} &
|
|
2138
|
+
} & _vue_runtime_core.VNodeProps & _vue_runtime_core.AllowedComponentProps & _vue_runtime_core.ComponentCustomProps;
|
|
2121
2139
|
$attrs: {
|
|
2122
2140
|
[x: string]: unknown;
|
|
2123
2141
|
};
|
|
@@ -2125,14 +2143,14 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2125
2143
|
[x: string]: unknown;
|
|
2126
2144
|
};
|
|
2127
2145
|
$slots: Readonly<{
|
|
2128
|
-
[name: string]:
|
|
2146
|
+
[name: string]: _vue_runtime_core.Slot<any> | undefined;
|
|
2129
2147
|
}>;
|
|
2130
|
-
$root:
|
|
2131
|
-
$parent:
|
|
2148
|
+
$root: _vue_runtime_core.ComponentPublicInstance | null;
|
|
2149
|
+
$parent: _vue_runtime_core.ComponentPublicInstance | null;
|
|
2132
2150
|
$host: Element | null;
|
|
2133
|
-
$emit: ((event: "
|
|
2151
|
+
$emit: ((event: "submit", values: any, eventData?: ContainerChangeEventData | undefined) => void) & ((event: "mounted", internalInstance: any) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
2134
2152
|
$el: any;
|
|
2135
|
-
$options:
|
|
2153
|
+
$options: _vue_runtime_core.ComponentOptionsBase<Readonly<{
|
|
2136
2154
|
config: _tmagic_form_schema.FormConfig;
|
|
2137
2155
|
values: _tmagic_form_schema.FormValue;
|
|
2138
2156
|
disabledShowSrc?: boolean;
|
|
@@ -2141,12 +2159,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2141
2159
|
labelPosition?: string;
|
|
2142
2160
|
extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2143
2161
|
}> & Readonly<{
|
|
2144
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2145
2162
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2163
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2146
2164
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2147
2165
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2148
2166
|
}>, {
|
|
2149
|
-
configForm: Readonly<
|
|
2167
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2150
2168
|
config: _tmagic_form_schema.FormConfig;
|
|
2151
2169
|
initValues: Record<string, any>;
|
|
2152
2170
|
lastValues?: Record<string, any>;
|
|
@@ -2170,21 +2188,21 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2170
2188
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2171
2189
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2172
2190
|
}>, {
|
|
2173
|
-
values:
|
|
2174
|
-
lastValuesProcessed:
|
|
2191
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2192
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2175
2193
|
formState: _tmagic_form_schema.FormState;
|
|
2176
|
-
initialized:
|
|
2177
|
-
changeRecords:
|
|
2194
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2195
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2178
2196
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2179
2197
|
resetForm: () => void;
|
|
2180
2198
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2181
|
-
}, {}, {}, {},
|
|
2199
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2182
2200
|
change: (...args: any[]) => void;
|
|
2183
2201
|
error: (...args: any[]) => void;
|
|
2184
2202
|
"update:stepActive": (...args: any[]) => void;
|
|
2185
2203
|
"field-change": (...args: any[]) => void;
|
|
2186
2204
|
"field-input": (...args: any[]) => void;
|
|
2187
|
-
},
|
|
2205
|
+
}, _vue_runtime_core.PublicProps, {
|
|
2188
2206
|
disabled: boolean;
|
|
2189
2207
|
labelWidth: string;
|
|
2190
2208
|
inline: boolean;
|
|
@@ -2197,7 +2215,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2197
2215
|
keyProp: string;
|
|
2198
2216
|
parentValues: Record<string, any>;
|
|
2199
2217
|
stepActive: string | number;
|
|
2200
|
-
}, false, {}, {},
|
|
2218
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
2201
2219
|
P: {};
|
|
2202
2220
|
B: {};
|
|
2203
2221
|
D: {};
|
|
@@ -2228,11 +2246,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2228
2246
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2229
2247
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2230
2248
|
}>, {
|
|
2231
|
-
values:
|
|
2232
|
-
lastValuesProcessed:
|
|
2249
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2250
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2233
2251
|
formState: _tmagic_form_schema.FormState;
|
|
2234
|
-
initialized:
|
|
2235
|
-
changeRecords:
|
|
2252
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2253
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2236
2254
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2237
2255
|
resetForm: () => void;
|
|
2238
2256
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -2251,12 +2269,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2251
2269
|
stepActive: string | number;
|
|
2252
2270
|
}> | null>>;
|
|
2253
2271
|
submit: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
2254
|
-
}, {}, {}, {},
|
|
2255
|
-
mounted: (internalInstance: any) => any;
|
|
2272
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2256
2273
|
submit: (values: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
2274
|
+
mounted: (internalInstance: any) => any;
|
|
2257
2275
|
"submit-error": (e: any) => any;
|
|
2258
2276
|
"form-error": (e: any) => any;
|
|
2259
|
-
}, string, {}, {}, string, {},
|
|
2277
|
+
}, string, {}, {}, string, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, _vue_runtime_core.ComponentProvideOptions> & {
|
|
2260
2278
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2261
2279
|
created?: (() => void) | (() => void)[];
|
|
2262
2280
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -2269,13 +2287,13 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2269
2287
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
2270
2288
|
destroyed?: (() => void) | (() => void)[];
|
|
2271
2289
|
unmounted?: (() => void) | (() => void)[];
|
|
2272
|
-
renderTracked?: ((e:
|
|
2273
|
-
renderTriggered?: ((e:
|
|
2274
|
-
errorCaptured?: ((err: unknown, instance:
|
|
2290
|
+
renderTracked?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
2291
|
+
renderTriggered?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
2292
|
+
errorCaptured?: ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2275
2293
|
};
|
|
2276
2294
|
$forceUpdate: () => void;
|
|
2277
|
-
$nextTick: typeof
|
|
2278
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?:
|
|
2295
|
+
$nextTick: typeof _vue_runtime_core.nextTick;
|
|
2296
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: _vue_runtime_core.WatchOptions): _vue_reactivity.WatchStopHandle;
|
|
2279
2297
|
} & Readonly<{}> & Omit<Readonly<{
|
|
2280
2298
|
config: _tmagic_form_schema.FormConfig;
|
|
2281
2299
|
values: _tmagic_form_schema.FormValue;
|
|
@@ -2285,12 +2303,12 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2285
2303
|
labelPosition?: string;
|
|
2286
2304
|
extendState?: (_state: _tmagic_form_schema.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2287
2305
|
}> & Readonly<{
|
|
2288
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2289
2306
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
2307
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2290
2308
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2291
2309
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2292
|
-
}>, "submit" | "configForm"> &
|
|
2293
|
-
configForm: Readonly<
|
|
2310
|
+
}>, "submit" | "configForm"> & _vue_reactivity.ShallowUnwrapRef<{
|
|
2311
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2294
2312
|
config: _tmagic_form_schema.FormConfig;
|
|
2295
2313
|
initValues: Record<string, any>;
|
|
2296
2314
|
lastValues?: Record<string, any>;
|
|
@@ -2314,21 +2332,21 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2314
2332
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2315
2333
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2316
2334
|
}>, {
|
|
2317
|
-
values:
|
|
2318
|
-
lastValuesProcessed:
|
|
2335
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2336
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2319
2337
|
formState: _tmagic_form_schema.FormState;
|
|
2320
|
-
initialized:
|
|
2321
|
-
changeRecords:
|
|
2338
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2339
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2322
2340
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2323
2341
|
resetForm: () => void;
|
|
2324
2342
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2325
|
-
}, {}, {}, {},
|
|
2343
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2326
2344
|
change: (...args: any[]) => void;
|
|
2327
2345
|
error: (...args: any[]) => void;
|
|
2328
2346
|
"update:stepActive": (...args: any[]) => void;
|
|
2329
2347
|
"field-change": (...args: any[]) => void;
|
|
2330
2348
|
"field-input": (...args: any[]) => void;
|
|
2331
|
-
},
|
|
2349
|
+
}, _vue_runtime_core.PublicProps, {
|
|
2332
2350
|
disabled: boolean;
|
|
2333
2351
|
labelWidth: string;
|
|
2334
2352
|
inline: boolean;
|
|
@@ -2341,7 +2359,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2341
2359
|
keyProp: string;
|
|
2342
2360
|
parentValues: Record<string, any>;
|
|
2343
2361
|
stepActive: string | number;
|
|
2344
|
-
}, false, {}, {},
|
|
2362
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
2345
2363
|
P: {};
|
|
2346
2364
|
B: {};
|
|
2347
2365
|
D: {};
|
|
@@ -2372,11 +2390,11 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2372
2390
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2373
2391
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2374
2392
|
}>, {
|
|
2375
|
-
values:
|
|
2376
|
-
lastValuesProcessed:
|
|
2393
|
+
values: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2394
|
+
lastValuesProcessed: _vue_reactivity.Ref<_tmagic_form_schema.FormValue, _tmagic_form_schema.FormValue>;
|
|
2377
2395
|
formState: _tmagic_form_schema.FormState;
|
|
2378
|
-
initialized:
|
|
2379
|
-
changeRecords:
|
|
2396
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2397
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2380
2398
|
changeHandler: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => void;
|
|
2381
2399
|
resetForm: () => void;
|
|
2382
2400
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -2395,7 +2413,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2395
2413
|
stepActive: string | number;
|
|
2396
2414
|
}> | null>>;
|
|
2397
2415
|
submit: (v: _tmagic_form_schema.FormValue, eventData: ContainerChangeEventData) => Promise<void>;
|
|
2398
|
-
}> & {} &
|
|
2416
|
+
}> & {} & _vue_runtime_core.ComponentCustomProperties & {} & {
|
|
2399
2417
|
$slots: {
|
|
2400
2418
|
'props-form-panel-header'(_props: {}): any;
|
|
2401
2419
|
};
|
|
@@ -2408,6 +2426,8 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2408
2426
|
[key: string]: any;
|
|
2409
2427
|
};
|
|
2410
2428
|
renderType: StageCore.RenderType;
|
|
2429
|
+
disabledDataSource: boolean;
|
|
2430
|
+
disabledCodeBlock: boolean;
|
|
2411
2431
|
disabledMultiSelect: boolean;
|
|
2412
2432
|
disabledPageFragment: boolean;
|
|
2413
2433
|
disabledShowSrc: boolean;
|
|
@@ -2430,7 +2450,7 @@ declare const __VLS_component$c: vue.DefineComponent<EditorProps, {
|
|
|
2430
2450
|
containerHighlightDuration: number;
|
|
2431
2451
|
containerHighlightType: StageCore.ContainerHighlightType;
|
|
2432
2452
|
canSelect: (el: HTMLElement) => boolean | Promise<boolean>;
|
|
2433
|
-
}, {}, {}, {}, string,
|
|
2453
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2434
2454
|
declare const _default$x: __VLS_WithSlots$c<typeof __VLS_component$c, __VLS_Slots$c>;
|
|
2435
2455
|
|
|
2436
2456
|
type __VLS_WithSlots$c<T, S> = T & {
|
|
@@ -2444,39 +2464,37 @@ type __VLS_Props$t = {
|
|
|
2444
2464
|
modifiedValues?: any;
|
|
2445
2465
|
type?: 'diff';
|
|
2446
2466
|
language?: string;
|
|
2447
|
-
options?:
|
|
2448
|
-
[key: string]: any;
|
|
2449
|
-
};
|
|
2467
|
+
options?: monaco.editor.IStandaloneEditorConstructionOptions;
|
|
2450
2468
|
height?: string;
|
|
2451
2469
|
autoSave?: boolean;
|
|
2452
2470
|
parse?: boolean;
|
|
2471
|
+
disabledFullScreen?: boolean;
|
|
2453
2472
|
};
|
|
2454
|
-
declare const _default$w:
|
|
2455
|
-
values:
|
|
2473
|
+
declare const _default$w: _vue_runtime_core.DefineComponent<__VLS_Props$t, {
|
|
2474
|
+
values: _vue_reactivity.Ref<string, string>;
|
|
2456
2475
|
getEditor(): monaco.editor.IStandaloneCodeEditor | monaco.editor.IStandaloneDiffEditor | null;
|
|
2457
2476
|
getVsEditor(): monaco.editor.IStandaloneCodeEditor | null;
|
|
2458
2477
|
getVsDiffEditor(): monaco.editor.IStandaloneDiffEditor | null;
|
|
2459
2478
|
setEditorValue: (v: string | any, m: string | any) => void | undefined;
|
|
2460
2479
|
getEditorValue: () => string;
|
|
2461
2480
|
focus(): void;
|
|
2462
|
-
}, {}, {}, {},
|
|
2481
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2463
2482
|
save: (...args: any[]) => void;
|
|
2464
2483
|
initd: (...args: any[]) => void;
|
|
2465
|
-
}, string,
|
|
2484
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$t> & Readonly<{
|
|
2466
2485
|
onSave?: ((...args: any[]) => any) | undefined;
|
|
2467
2486
|
onInitd?: ((...args: any[]) => any) | undefined;
|
|
2468
2487
|
}>, {
|
|
2469
|
-
options:
|
|
2470
|
-
[key: string]: any;
|
|
2471
|
-
};
|
|
2488
|
+
options: monaco.editor.IStandaloneEditorConstructionOptions;
|
|
2472
2489
|
language: string;
|
|
2473
2490
|
parse: boolean;
|
|
2474
2491
|
initValues: any;
|
|
2475
2492
|
autoSave: boolean;
|
|
2476
|
-
|
|
2493
|
+
disabledFullScreen: boolean;
|
|
2494
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2477
2495
|
|
|
2478
2496
|
type __VLS_Slots$b = ComponentListPanelSlots;
|
|
2479
|
-
declare const __VLS_component$b:
|
|
2497
|
+
declare const __VLS_component$b: _vue_runtime_core.DefineComponent<{}, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, true, {}, any>;
|
|
2480
2498
|
declare const _default$v: __VLS_WithSlots$b<typeof __VLS_component$b, __VLS_Slots$b>;
|
|
2481
2499
|
|
|
2482
2500
|
type __VLS_WithSlots$b<T, S> = T & {
|
|
@@ -2492,7 +2510,7 @@ type __VLS_Props$s = {
|
|
|
2492
2510
|
nextLevelIndentIncrement?: number;
|
|
2493
2511
|
customContentMenu: CustomContentMenuFunction;
|
|
2494
2512
|
};
|
|
2495
|
-
declare const __VLS_component$a:
|
|
2513
|
+
declare const __VLS_component$a: _vue_runtime_core.DefineComponent<__VLS_Props$s, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$s> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2496
2514
|
declare const _default$u: __VLS_WithSlots$a<typeof __VLS_component$a, __VLS_Slots$a>;
|
|
2497
2515
|
|
|
2498
2516
|
type __VLS_WithSlots$a<T, S> = T & {
|
|
@@ -2502,20 +2520,20 @@ type __VLS_WithSlots$a<T, S> = T & {
|
|
|
2502
2520
|
};
|
|
2503
2521
|
|
|
2504
2522
|
type __VLS_Props$r = FieldProps<CodeSelectConfig>;
|
|
2505
|
-
declare const _default$t:
|
|
2523
|
+
declare const _default$t: _vue_runtime_core.DefineComponent<__VLS_Props$r, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2506
2524
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
2507
|
-
}, string,
|
|
2525
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$r> & Readonly<{
|
|
2508
2526
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
2509
|
-
}>, {}, {}, {}, {}, string,
|
|
2527
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2510
2528
|
|
|
2511
2529
|
type __VLS_Props$q = FieldProps<CodeSelectColConfig>;
|
|
2512
|
-
declare const _default$s:
|
|
2530
|
+
declare const _default$s: _vue_runtime_core.DefineComponent<__VLS_Props$q, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2513
2531
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
2514
|
-
}, string,
|
|
2532
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$q> & Readonly<{
|
|
2515
2533
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
2516
2534
|
}>, {
|
|
2517
2535
|
disabled: boolean;
|
|
2518
|
-
}, {}, {}, {}, string,
|
|
2536
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2519
2537
|
|
|
2520
2538
|
type __VLS_Props$p = FieldProps<DataSourceFieldsConfig>;
|
|
2521
2539
|
type __VLS_PublicProps$4 = __VLS_Props$p & {
|
|
@@ -2523,97 +2541,97 @@ type __VLS_PublicProps$4 = __VLS_Props$p & {
|
|
|
2523
2541
|
'visible'?: boolean;
|
|
2524
2542
|
'visible1'?: boolean;
|
|
2525
2543
|
};
|
|
2526
|
-
declare const _default$r:
|
|
2544
|
+
declare const _default$r: _vue_runtime_core.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2527
2545
|
change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2528
2546
|
"update:width": (value: number) => any;
|
|
2529
2547
|
"update:visible": (value: boolean) => any;
|
|
2530
2548
|
"update:visible1": (value: boolean) => any;
|
|
2531
|
-
}, string,
|
|
2549
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
|
|
2532
2550
|
onChange?: ((v: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2533
2551
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2534
2552
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2535
2553
|
"onUpdate:visible1"?: ((value: boolean) => any) | undefined;
|
|
2536
2554
|
}>, {
|
|
2537
2555
|
disabled: boolean;
|
|
2538
|
-
}, {}, {}, {}, string,
|
|
2556
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2539
2557
|
|
|
2540
2558
|
type __VLS_Props$o = FieldProps<DataSourceMocksConfig>;
|
|
2541
2559
|
type __VLS_PublicProps$3 = __VLS_Props$o & {
|
|
2542
2560
|
'width'?: number;
|
|
2543
2561
|
'visible'?: boolean;
|
|
2544
2562
|
};
|
|
2545
|
-
declare const _default$q:
|
|
2563
|
+
declare const _default$q: _vue_runtime_core.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2546
2564
|
change: (...args: any[]) => void;
|
|
2547
2565
|
"update:width": (value: number) => void;
|
|
2548
2566
|
"update:visible": (value: boolean) => void;
|
|
2549
|
-
}, string,
|
|
2567
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
|
|
2550
2568
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2551
2569
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2552
2570
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2553
2571
|
}>, {
|
|
2554
2572
|
disabled: boolean;
|
|
2555
|
-
}, {}, {}, {}, string,
|
|
2573
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2556
2574
|
|
|
2557
2575
|
type __VLS_Props$n = FieldProps<DataSourceMethodsConfig>;
|
|
2558
|
-
declare const _default$p:
|
|
2576
|
+
declare const _default$p: _vue_runtime_core.DefineComponent<__VLS_Props$n, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2559
2577
|
change: (...args: any[]) => void;
|
|
2560
|
-
}, string,
|
|
2578
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$n> & Readonly<{
|
|
2561
2579
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2562
2580
|
}>, {
|
|
2563
2581
|
disabled: boolean;
|
|
2564
|
-
}, {}, {}, {}, string,
|
|
2582
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2565
2583
|
|
|
2566
2584
|
type __VLS_Props$m = FieldProps<DataSourceInputConfig>;
|
|
2567
|
-
declare const _default$o:
|
|
2585
|
+
declare const _default$o: _vue_runtime_core.DefineComponent<__VLS_Props$m, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2568
2586
|
change: (value: string) => any;
|
|
2569
|
-
}, string,
|
|
2587
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$m> & Readonly<{
|
|
2570
2588
|
onChange?: ((value: string) => any) | undefined;
|
|
2571
2589
|
}>, {
|
|
2572
2590
|
disabled: boolean;
|
|
2573
|
-
}, {}, {}, {}, string,
|
|
2591
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2574
2592
|
|
|
2575
2593
|
type __VLS_Props$l = FieldProps<DataSourceSelect>;
|
|
2576
|
-
declare const _default$n:
|
|
2594
|
+
declare const _default$n: _vue_runtime_core.DefineComponent<__VLS_Props$l, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2577
2595
|
change: (...args: any[]) => void;
|
|
2578
|
-
}, string,
|
|
2596
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$l> & Readonly<{
|
|
2579
2597
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2580
2598
|
}>, {
|
|
2581
2599
|
disabled: boolean;
|
|
2582
|
-
}, {}, {}, {}, string,
|
|
2600
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2583
2601
|
|
|
2584
2602
|
type __VLS_Props$k = FieldProps<DataSourceMethodSelectConfig>;
|
|
2585
|
-
declare const _default$m:
|
|
2603
|
+
declare const _default$m: _vue_runtime_core.DefineComponent<__VLS_Props$k, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2586
2604
|
change: (...args: any[]) => void;
|
|
2587
|
-
}, string,
|
|
2605
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$k> & Readonly<{
|
|
2588
2606
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2589
2607
|
}>, {
|
|
2590
2608
|
disabled: boolean;
|
|
2591
|
-
}, {}, {}, {}, string,
|
|
2609
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2592
2610
|
|
|
2593
2611
|
type __VLS_Props$j = FieldProps<DataSourceFieldSelectConfig>;
|
|
2594
|
-
declare const _default$l:
|
|
2612
|
+
declare const _default$l: _vue_runtime_core.DefineComponent<__VLS_Props$j, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2595
2613
|
change: (...args: any[]) => void;
|
|
2596
|
-
}, string,
|
|
2614
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$j> & Readonly<{
|
|
2597
2615
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2598
2616
|
}>, {
|
|
2599
2617
|
disabled: boolean;
|
|
2600
|
-
}, {}, {}, {}, string,
|
|
2618
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2601
2619
|
|
|
2602
2620
|
type __VLS_Props$i = FieldProps<EventSelectConfig>;
|
|
2603
|
-
declare const _default$k:
|
|
2621
|
+
declare const _default$k: _vue_runtime_core.DefineComponent<__VLS_Props$i, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2604
2622
|
change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2605
|
-
}, string,
|
|
2623
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$i> & Readonly<{
|
|
2606
2624
|
onChange?: ((v: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2607
|
-
}>, {}, {}, {}, {}, string,
|
|
2625
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2608
2626
|
|
|
2609
2627
|
type __VLS_Props$h = FieldProps<KeyValueConfig>;
|
|
2610
|
-
declare const _default$j:
|
|
2628
|
+
declare const _default$j: _vue_runtime_core.DefineComponent<__VLS_Props$h, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2611
2629
|
change: (value: Record<string, any>) => any;
|
|
2612
|
-
}, string,
|
|
2630
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$h> & Readonly<{
|
|
2613
2631
|
onChange?: ((value: Record<string, any>) => any) | undefined;
|
|
2614
2632
|
}>, {
|
|
2615
2633
|
disabled: boolean;
|
|
2616
|
-
}, {}, {}, {}, string,
|
|
2634
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2617
2635
|
|
|
2618
2636
|
type __VLS_Slots$9 = CodeBlockListSlots;
|
|
2619
2637
|
type __VLS_Props$g = {
|
|
@@ -2621,8 +2639,8 @@ type __VLS_Props$g = {
|
|
|
2621
2639
|
nextLevelIndentIncrement?: number;
|
|
2622
2640
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2623
2641
|
};
|
|
2624
|
-
declare const __VLS_component$9:
|
|
2625
|
-
nodeStatusMap:
|
|
2642
|
+
declare const __VLS_component$9: _vue_runtime_core.DefineComponent<__VLS_Props$g, {
|
|
2643
|
+
nodeStatusMap: _vue_reactivity.Ref<Map<Id, {
|
|
2626
2644
|
visible: boolean;
|
|
2627
2645
|
expand: boolean;
|
|
2628
2646
|
selected: boolean;
|
|
@@ -2635,15 +2653,15 @@ declare const __VLS_component$9: vue.DefineComponent<__VLS_Props$g, {
|
|
|
2635
2653
|
}> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>)>;
|
|
2636
2654
|
filter: (text: string | string[]) => void;
|
|
2637
2655
|
deleteCode: (id: string) => Promise<void>;
|
|
2638
|
-
}, {}, {}, {},
|
|
2656
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2639
2657
|
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2640
2658
|
remove: (id: string) => any;
|
|
2641
2659
|
edit: (id: string) => any;
|
|
2642
|
-
}, string,
|
|
2660
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$g> & Readonly<{
|
|
2643
2661
|
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2644
2662
|
onRemove?: ((id: string) => any) | undefined;
|
|
2645
2663
|
onEdit?: ((id: string) => any) | undefined;
|
|
2646
|
-
}>, {}, {}, {}, {}, string,
|
|
2664
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2647
2665
|
declare const _default$i: __VLS_WithSlots$9<typeof __VLS_component$9, __VLS_Slots$9>;
|
|
2648
2666
|
|
|
2649
2667
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -2659,7 +2677,7 @@ type __VLS_Props$f = {
|
|
|
2659
2677
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2660
2678
|
customContentMenu: CustomContentMenuFunction;
|
|
2661
2679
|
};
|
|
2662
|
-
declare const __VLS_component$8:
|
|
2680
|
+
declare const __VLS_component$8: _vue_runtime_core.DefineComponent<__VLS_Props$f, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$f> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2663
2681
|
declare const _default$h: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
|
|
2664
2682
|
|
|
2665
2683
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -2677,34 +2695,34 @@ type __VLS_PublicProps$2 = __VLS_Props$e & {
|
|
|
2677
2695
|
'visible'?: boolean;
|
|
2678
2696
|
'width'?: number;
|
|
2679
2697
|
};
|
|
2680
|
-
declare const _default$g:
|
|
2698
|
+
declare const _default$g: _vue_runtime_core.DefineComponent<__VLS_PublicProps$2, {
|
|
2681
2699
|
show(): void;
|
|
2682
2700
|
hide(): void;
|
|
2683
|
-
}, {}, {}, {},
|
|
2701
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2684
2702
|
close: () => any;
|
|
2685
|
-
open: (id: string) => any;
|
|
2686
2703
|
submit: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
2704
|
+
open: (id: string) => any;
|
|
2687
2705
|
"update:width": (value: number) => any;
|
|
2688
2706
|
"update:visible": (value: boolean) => any;
|
|
2689
|
-
}, string,
|
|
2707
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
|
|
2690
2708
|
onClose?: (() => any) | undefined;
|
|
2691
|
-
onOpen?: ((id: string) => any) | undefined;
|
|
2692
2709
|
onSubmit?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
2710
|
+
onOpen?: ((id: string) => any) | undefined;
|
|
2693
2711
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2694
2712
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2695
|
-
}>, {}, {}, {}, {}, string,
|
|
2713
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2696
2714
|
|
|
2697
2715
|
type __VLS_Slots$7 = PropsPanelSlots;
|
|
2698
2716
|
type __VLS_Props$d = {
|
|
2699
2717
|
disabledShowSrc?: boolean;
|
|
2700
2718
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2701
2719
|
};
|
|
2702
|
-
declare const __VLS_component$7:
|
|
2720
|
+
declare const __VLS_component$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
|
|
2703
2721
|
getFormState(): FormState | undefined;
|
|
2704
2722
|
submit: (v: MNode, eventData?: ContainerChangeEventData$1) => Promise<void>;
|
|
2705
|
-
}, {}, {}, {},
|
|
2723
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2706
2724
|
mounted: (internalInstance: {
|
|
2707
|
-
$:
|
|
2725
|
+
$: _vue_runtime_core.ComponentInternalInstance;
|
|
2708
2726
|
$data: {};
|
|
2709
2727
|
$props: {
|
|
2710
2728
|
readonly config: _tmagic_form_schema.FormConfig;
|
|
@@ -2714,11 +2732,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2714
2732
|
readonly codeValueKey?: string | undefined;
|
|
2715
2733
|
readonly labelPosition?: string | undefined;
|
|
2716
2734
|
readonly extendState?: ((_state: FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
2717
|
-
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2718
2735
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2736
|
+
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2719
2737
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2720
2738
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
2721
|
-
} &
|
|
2739
|
+
} & _vue_runtime_core.VNodeProps & _vue_runtime_core.AllowedComponentProps & _vue_runtime_core.ComponentCustomProps;
|
|
2722
2740
|
$attrs: {
|
|
2723
2741
|
[x: string]: unknown;
|
|
2724
2742
|
};
|
|
@@ -2726,14 +2744,14 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2726
2744
|
[x: string]: unknown;
|
|
2727
2745
|
};
|
|
2728
2746
|
$slots: Readonly<{
|
|
2729
|
-
[name: string]:
|
|
2747
|
+
[name: string]: _vue_runtime_core.Slot<any> | undefined;
|
|
2730
2748
|
}>;
|
|
2731
|
-
$root:
|
|
2732
|
-
$parent:
|
|
2749
|
+
$root: _vue_runtime_core.ComponentPublicInstance | null;
|
|
2750
|
+
$parent: _vue_runtime_core.ComponentPublicInstance | null;
|
|
2733
2751
|
$host: Element | null;
|
|
2734
|
-
$emit: ((event: "
|
|
2752
|
+
$emit: ((event: "submit", values: any, eventData?: ContainerChangeEventData$1 | undefined) => void) & ((event: "mounted", internalInstance: any) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
2735
2753
|
$el: any;
|
|
2736
|
-
$options:
|
|
2754
|
+
$options: _vue_runtime_core.ComponentOptionsBase<Readonly<{
|
|
2737
2755
|
config: _tmagic_form_schema.FormConfig;
|
|
2738
2756
|
values: FormValue;
|
|
2739
2757
|
disabledShowSrc?: boolean;
|
|
@@ -2742,12 +2760,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2742
2760
|
labelPosition?: string;
|
|
2743
2761
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2744
2762
|
}> & Readonly<{
|
|
2745
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2746
2763
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2764
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2747
2765
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2748
2766
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2749
2767
|
}>, {
|
|
2750
|
-
configForm: Readonly<
|
|
2768
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2751
2769
|
config: _tmagic_form_schema.FormConfig;
|
|
2752
2770
|
initValues: Record<string, any>;
|
|
2753
2771
|
lastValues?: Record<string, any>;
|
|
@@ -2771,21 +2789,21 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2771
2789
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2772
2790
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2773
2791
|
}>, {
|
|
2774
|
-
values:
|
|
2775
|
-
lastValuesProcessed:
|
|
2792
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2793
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2776
2794
|
formState: FormState;
|
|
2777
|
-
initialized:
|
|
2778
|
-
changeRecords:
|
|
2795
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2796
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2779
2797
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2780
2798
|
resetForm: () => void;
|
|
2781
2799
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2782
|
-
}, {}, {}, {},
|
|
2800
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2783
2801
|
change: (...args: any[]) => void;
|
|
2784
2802
|
error: (...args: any[]) => void;
|
|
2785
2803
|
"update:stepActive": (...args: any[]) => void;
|
|
2786
2804
|
"field-change": (...args: any[]) => void;
|
|
2787
2805
|
"field-input": (...args: any[]) => void;
|
|
2788
|
-
},
|
|
2806
|
+
}, _vue_runtime_core.PublicProps, {
|
|
2789
2807
|
disabled: boolean;
|
|
2790
2808
|
labelWidth: string;
|
|
2791
2809
|
inline: boolean;
|
|
@@ -2798,7 +2816,7 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2798
2816
|
keyProp: string;
|
|
2799
2817
|
parentValues: Record<string, any>;
|
|
2800
2818
|
stepActive: string | number;
|
|
2801
|
-
}, false, {}, {},
|
|
2819
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
2802
2820
|
P: {};
|
|
2803
2821
|
B: {};
|
|
2804
2822
|
D: {};
|
|
@@ -2829,11 +2847,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2829
2847
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2830
2848
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2831
2849
|
}>, {
|
|
2832
|
-
values:
|
|
2833
|
-
lastValuesProcessed:
|
|
2850
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2851
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2834
2852
|
formState: FormState;
|
|
2835
|
-
initialized:
|
|
2836
|
-
changeRecords:
|
|
2853
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2854
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2837
2855
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2838
2856
|
resetForm: () => void;
|
|
2839
2857
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -2852,12 +2870,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2852
2870
|
stepActive: string | number;
|
|
2853
2871
|
}> | null>>;
|
|
2854
2872
|
submit: (v: FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2855
|
-
}, {}, {}, {},
|
|
2856
|
-
mounted: (internalInstance: any) => any;
|
|
2873
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2857
2874
|
submit: (values: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2875
|
+
mounted: (internalInstance: any) => any;
|
|
2858
2876
|
"submit-error": (e: any) => any;
|
|
2859
2877
|
"form-error": (e: any) => any;
|
|
2860
|
-
}, string, {}, {}, string, {},
|
|
2878
|
+
}, string, {}, {}, string, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, _vue_runtime_core.ComponentProvideOptions> & {
|
|
2861
2879
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2862
2880
|
created?: (() => void) | (() => void)[];
|
|
2863
2881
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -2870,13 +2888,13 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2870
2888
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
2871
2889
|
destroyed?: (() => void) | (() => void)[];
|
|
2872
2890
|
unmounted?: (() => void) | (() => void)[];
|
|
2873
|
-
renderTracked?: ((e:
|
|
2874
|
-
renderTriggered?: ((e:
|
|
2875
|
-
errorCaptured?: ((err: unknown, instance:
|
|
2891
|
+
renderTracked?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
2892
|
+
renderTriggered?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
2893
|
+
errorCaptured?: ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2876
2894
|
};
|
|
2877
2895
|
$forceUpdate: () => void;
|
|
2878
|
-
$nextTick: typeof
|
|
2879
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?:
|
|
2896
|
+
$nextTick: typeof _vue_runtime_core.nextTick;
|
|
2897
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: _vue_runtime_core.WatchOptions): _vue_reactivity.WatchStopHandle;
|
|
2880
2898
|
} & Readonly<{}> & Omit<Readonly<{
|
|
2881
2899
|
config: _tmagic_form_schema.FormConfig;
|
|
2882
2900
|
values: FormValue;
|
|
@@ -2886,12 +2904,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2886
2904
|
labelPosition?: string;
|
|
2887
2905
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2888
2906
|
}> & Readonly<{
|
|
2889
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2890
2907
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2908
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
2891
2909
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
2892
2910
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
2893
|
-
}>, "submit" | "configForm"> &
|
|
2894
|
-
configForm: Readonly<
|
|
2911
|
+
}>, "submit" | "configForm"> & _vue_reactivity.ShallowUnwrapRef<{
|
|
2912
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2895
2913
|
config: _tmagic_form_schema.FormConfig;
|
|
2896
2914
|
initValues: Record<string, any>;
|
|
2897
2915
|
lastValues?: Record<string, any>;
|
|
@@ -2915,21 +2933,21 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2915
2933
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2916
2934
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2917
2935
|
}>, {
|
|
2918
|
-
values:
|
|
2919
|
-
lastValuesProcessed:
|
|
2936
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2937
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2920
2938
|
formState: FormState;
|
|
2921
|
-
initialized:
|
|
2922
|
-
changeRecords:
|
|
2939
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2940
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2923
2941
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2924
2942
|
resetForm: () => void;
|
|
2925
2943
|
submitForm: (native?: boolean) => Promise<any>;
|
|
2926
|
-
}, {}, {}, {},
|
|
2944
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2927
2945
|
change: (...args: any[]) => void;
|
|
2928
2946
|
error: (...args: any[]) => void;
|
|
2929
2947
|
"update:stepActive": (...args: any[]) => void;
|
|
2930
2948
|
"field-change": (...args: any[]) => void;
|
|
2931
2949
|
"field-input": (...args: any[]) => void;
|
|
2932
|
-
},
|
|
2950
|
+
}, _vue_runtime_core.PublicProps, {
|
|
2933
2951
|
disabled: boolean;
|
|
2934
2952
|
labelWidth: string;
|
|
2935
2953
|
inline: boolean;
|
|
@@ -2942,7 +2960,7 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2942
2960
|
keyProp: string;
|
|
2943
2961
|
parentValues: Record<string, any>;
|
|
2944
2962
|
stepActive: string | number;
|
|
2945
|
-
}, false, {}, {},
|
|
2963
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
2946
2964
|
P: {};
|
|
2947
2965
|
B: {};
|
|
2948
2966
|
D: {};
|
|
@@ -2973,11 +2991,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2973
2991
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
2974
2992
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
2975
2993
|
}>, {
|
|
2976
|
-
values:
|
|
2977
|
-
lastValuesProcessed:
|
|
2994
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2995
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
2978
2996
|
formState: FormState;
|
|
2979
|
-
initialized:
|
|
2980
|
-
changeRecords:
|
|
2997
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
2998
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
2981
2999
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
2982
3000
|
resetForm: () => void;
|
|
2983
3001
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -2996,16 +3014,16 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
2996
3014
|
stepActive: string | number;
|
|
2997
3015
|
}> | null>>;
|
|
2998
3016
|
submit: (v: FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
2999
|
-
}> & {} &
|
|
3017
|
+
}> & {} & _vue_runtime_core.ComponentCustomProperties & {} & {
|
|
3000
3018
|
$slots: {
|
|
3001
3019
|
'props-form-panel-header'(_props: {}): any;
|
|
3002
3020
|
};
|
|
3003
3021
|
}) => any;
|
|
3004
3022
|
"submit-error": (e: any) => any;
|
|
3005
3023
|
"form-error": (e: any) => any;
|
|
3006
|
-
}, string,
|
|
3024
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$d> & Readonly<{
|
|
3007
3025
|
onMounted?: ((internalInstance: {
|
|
3008
|
-
$:
|
|
3026
|
+
$: _vue_runtime_core.ComponentInternalInstance;
|
|
3009
3027
|
$data: {};
|
|
3010
3028
|
$props: {
|
|
3011
3029
|
readonly config: _tmagic_form_schema.FormConfig;
|
|
@@ -3015,11 +3033,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3015
3033
|
readonly codeValueKey?: string | undefined;
|
|
3016
3034
|
readonly labelPosition?: string | undefined;
|
|
3017
3035
|
readonly extendState?: ((_state: FormState) => Record<string, any> | Promise<Record<string, any>>) | undefined;
|
|
3018
|
-
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3019
3036
|
readonly onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3037
|
+
readonly onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3020
3038
|
readonly "onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3021
3039
|
readonly "onForm-error"?: ((e: any) => any) | undefined;
|
|
3022
|
-
} &
|
|
3040
|
+
} & _vue_runtime_core.VNodeProps & _vue_runtime_core.AllowedComponentProps & _vue_runtime_core.ComponentCustomProps;
|
|
3023
3041
|
$attrs: {
|
|
3024
3042
|
[x: string]: unknown;
|
|
3025
3043
|
};
|
|
@@ -3027,14 +3045,14 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3027
3045
|
[x: string]: unknown;
|
|
3028
3046
|
};
|
|
3029
3047
|
$slots: Readonly<{
|
|
3030
|
-
[name: string]:
|
|
3048
|
+
[name: string]: _vue_runtime_core.Slot<any> | undefined;
|
|
3031
3049
|
}>;
|
|
3032
|
-
$root:
|
|
3033
|
-
$parent:
|
|
3050
|
+
$root: _vue_runtime_core.ComponentPublicInstance | null;
|
|
3051
|
+
$parent: _vue_runtime_core.ComponentPublicInstance | null;
|
|
3034
3052
|
$host: Element | null;
|
|
3035
|
-
$emit: ((event: "
|
|
3053
|
+
$emit: ((event: "submit", values: any, eventData?: ContainerChangeEventData$1 | undefined) => void) & ((event: "mounted", internalInstance: any) => void) & ((event: "submit-error", e: any) => void) & ((event: "form-error", e: any) => void);
|
|
3036
3054
|
$el: any;
|
|
3037
|
-
$options:
|
|
3055
|
+
$options: _vue_runtime_core.ComponentOptionsBase<Readonly<{
|
|
3038
3056
|
config: _tmagic_form_schema.FormConfig;
|
|
3039
3057
|
values: FormValue;
|
|
3040
3058
|
disabledShowSrc?: boolean;
|
|
@@ -3043,12 +3061,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3043
3061
|
labelPosition?: string;
|
|
3044
3062
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3045
3063
|
}> & Readonly<{
|
|
3046
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3047
3064
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3065
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3048
3066
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3049
3067
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3050
3068
|
}>, {
|
|
3051
|
-
configForm: Readonly<
|
|
3069
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3052
3070
|
config: _tmagic_form_schema.FormConfig;
|
|
3053
3071
|
initValues: Record<string, any>;
|
|
3054
3072
|
lastValues?: Record<string, any>;
|
|
@@ -3072,21 +3090,21 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3072
3090
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3073
3091
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3074
3092
|
}>, {
|
|
3075
|
-
values:
|
|
3076
|
-
lastValuesProcessed:
|
|
3093
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3094
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3077
3095
|
formState: FormState;
|
|
3078
|
-
initialized:
|
|
3079
|
-
changeRecords:
|
|
3096
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3097
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3080
3098
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3081
3099
|
resetForm: () => void;
|
|
3082
3100
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3083
|
-
}, {}, {}, {},
|
|
3101
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3084
3102
|
change: (...args: any[]) => void;
|
|
3085
3103
|
error: (...args: any[]) => void;
|
|
3086
3104
|
"update:stepActive": (...args: any[]) => void;
|
|
3087
3105
|
"field-change": (...args: any[]) => void;
|
|
3088
3106
|
"field-input": (...args: any[]) => void;
|
|
3089
|
-
},
|
|
3107
|
+
}, _vue_runtime_core.PublicProps, {
|
|
3090
3108
|
disabled: boolean;
|
|
3091
3109
|
labelWidth: string;
|
|
3092
3110
|
inline: boolean;
|
|
@@ -3099,7 +3117,7 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3099
3117
|
keyProp: string;
|
|
3100
3118
|
parentValues: Record<string, any>;
|
|
3101
3119
|
stepActive: string | number;
|
|
3102
|
-
}, false, {}, {},
|
|
3120
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
3103
3121
|
P: {};
|
|
3104
3122
|
B: {};
|
|
3105
3123
|
D: {};
|
|
@@ -3130,11 +3148,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3130
3148
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3131
3149
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3132
3150
|
}>, {
|
|
3133
|
-
values:
|
|
3134
|
-
lastValuesProcessed:
|
|
3151
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3152
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3135
3153
|
formState: FormState;
|
|
3136
|
-
initialized:
|
|
3137
|
-
changeRecords:
|
|
3154
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3155
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3138
3156
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3139
3157
|
resetForm: () => void;
|
|
3140
3158
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -3153,12 +3171,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3153
3171
|
stepActive: string | number;
|
|
3154
3172
|
}> | null>>;
|
|
3155
3173
|
submit: (v: FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
3156
|
-
}, {}, {}, {},
|
|
3157
|
-
mounted: (internalInstance: any) => any;
|
|
3174
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3158
3175
|
submit: (values: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
3176
|
+
mounted: (internalInstance: any) => any;
|
|
3159
3177
|
"submit-error": (e: any) => any;
|
|
3160
3178
|
"form-error": (e: any) => any;
|
|
3161
|
-
}, string, {}, {}, string, {},
|
|
3179
|
+
}, string, {}, {}, string, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, _vue_runtime_core.ComponentProvideOptions> & {
|
|
3162
3180
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3163
3181
|
created?: (() => void) | (() => void)[];
|
|
3164
3182
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -3171,13 +3189,13 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3171
3189
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
3172
3190
|
destroyed?: (() => void) | (() => void)[];
|
|
3173
3191
|
unmounted?: (() => void) | (() => void)[];
|
|
3174
|
-
renderTracked?: ((e:
|
|
3175
|
-
renderTriggered?: ((e:
|
|
3176
|
-
errorCaptured?: ((err: unknown, instance:
|
|
3192
|
+
renderTracked?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
3193
|
+
renderTriggered?: ((e: _vue_reactivity.DebuggerEvent) => void) | ((e: _vue_reactivity.DebuggerEvent) => void)[];
|
|
3194
|
+
errorCaptured?: ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: _vue_runtime_core.ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3177
3195
|
};
|
|
3178
3196
|
$forceUpdate: () => void;
|
|
3179
|
-
$nextTick: typeof
|
|
3180
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?:
|
|
3197
|
+
$nextTick: typeof _vue_runtime_core.nextTick;
|
|
3198
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: _vue_runtime_core.WatchOptions): _vue_reactivity.WatchStopHandle;
|
|
3181
3199
|
} & Readonly<{}> & Omit<Readonly<{
|
|
3182
3200
|
config: _tmagic_form_schema.FormConfig;
|
|
3183
3201
|
values: FormValue;
|
|
@@ -3187,12 +3205,12 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3187
3205
|
labelPosition?: string;
|
|
3188
3206
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3189
3207
|
}> & Readonly<{
|
|
3190
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3191
3208
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3209
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3192
3210
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3193
3211
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3194
|
-
}>, "submit" | "configForm"> &
|
|
3195
|
-
configForm: Readonly<
|
|
3212
|
+
}>, "submit" | "configForm"> & _vue_reactivity.ShallowUnwrapRef<{
|
|
3213
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3196
3214
|
config: _tmagic_form_schema.FormConfig;
|
|
3197
3215
|
initValues: Record<string, any>;
|
|
3198
3216
|
lastValues?: Record<string, any>;
|
|
@@ -3216,21 +3234,21 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3216
3234
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3217
3235
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3218
3236
|
}>, {
|
|
3219
|
-
values:
|
|
3220
|
-
lastValuesProcessed:
|
|
3237
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3238
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3221
3239
|
formState: FormState;
|
|
3222
|
-
initialized:
|
|
3223
|
-
changeRecords:
|
|
3240
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3241
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3224
3242
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3225
3243
|
resetForm: () => void;
|
|
3226
3244
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3227
|
-
}, {}, {}, {},
|
|
3245
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3228
3246
|
change: (...args: any[]) => void;
|
|
3229
3247
|
error: (...args: any[]) => void;
|
|
3230
3248
|
"update:stepActive": (...args: any[]) => void;
|
|
3231
3249
|
"field-change": (...args: any[]) => void;
|
|
3232
3250
|
"field-input": (...args: any[]) => void;
|
|
3233
|
-
},
|
|
3251
|
+
}, _vue_runtime_core.PublicProps, {
|
|
3234
3252
|
disabled: boolean;
|
|
3235
3253
|
labelWidth: string;
|
|
3236
3254
|
inline: boolean;
|
|
@@ -3243,7 +3261,7 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3243
3261
|
keyProp: string;
|
|
3244
3262
|
parentValues: Record<string, any>;
|
|
3245
3263
|
stepActive: string | number;
|
|
3246
|
-
}, false, {}, {},
|
|
3264
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
3247
3265
|
P: {};
|
|
3248
3266
|
B: {};
|
|
3249
3267
|
D: {};
|
|
@@ -3274,11 +3292,11 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3274
3292
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3275
3293
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3276
3294
|
}>, {
|
|
3277
|
-
values:
|
|
3278
|
-
lastValuesProcessed:
|
|
3295
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3296
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3279
3297
|
formState: FormState;
|
|
3280
|
-
initialized:
|
|
3281
|
-
changeRecords:
|
|
3298
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3299
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3282
3300
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3283
3301
|
resetForm: () => void;
|
|
3284
3302
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -3297,14 +3315,14 @@ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {
|
|
|
3297
3315
|
stepActive: string | number;
|
|
3298
3316
|
}> | null>>;
|
|
3299
3317
|
submit: (v: FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
3300
|
-
}> & {} &
|
|
3318
|
+
}> & {} & _vue_runtime_core.ComponentCustomProperties & {} & {
|
|
3301
3319
|
$slots: {
|
|
3302
3320
|
'props-form-panel-header'(_props: {}): any;
|
|
3303
3321
|
};
|
|
3304
3322
|
}) => any) | undefined;
|
|
3305
3323
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3306
3324
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3307
|
-
}>, {}, {}, {}, {}, string,
|
|
3325
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3308
3326
|
declare const _default$f: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
|
|
3309
3327
|
|
|
3310
3328
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -3325,8 +3343,8 @@ type __VLS_Props$c = {
|
|
|
3325
3343
|
labelPosition?: string;
|
|
3326
3344
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3327
3345
|
};
|
|
3328
|
-
declare const __VLS_component$6:
|
|
3329
|
-
configForm: Readonly<
|
|
3346
|
+
declare const __VLS_component$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
|
|
3347
|
+
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3330
3348
|
config: FormConfig;
|
|
3331
3349
|
initValues: Record<string, any>;
|
|
3332
3350
|
lastValues?: Record<string, any>;
|
|
@@ -3350,21 +3368,21 @@ declare const __VLS_component$6: vue.DefineComponent<__VLS_Props$c, {
|
|
|
3350
3368
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3351
3369
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3352
3370
|
}>, {
|
|
3353
|
-
values:
|
|
3354
|
-
lastValuesProcessed:
|
|
3371
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3372
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3355
3373
|
formState: FormState;
|
|
3356
|
-
initialized:
|
|
3357
|
-
changeRecords:
|
|
3374
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3375
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3358
3376
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3359
3377
|
resetForm: () => void;
|
|
3360
3378
|
submitForm: (native?: boolean) => Promise<any>;
|
|
3361
|
-
}, {}, {}, {},
|
|
3379
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3362
3380
|
change: (...args: any[]) => void;
|
|
3363
3381
|
error: (...args: any[]) => void;
|
|
3364
3382
|
"update:stepActive": (...args: any[]) => void;
|
|
3365
3383
|
"field-change": (...args: any[]) => void;
|
|
3366
3384
|
"field-input": (...args: any[]) => void;
|
|
3367
|
-
},
|
|
3385
|
+
}, _vue_runtime_core.PublicProps, {
|
|
3368
3386
|
disabled: boolean;
|
|
3369
3387
|
labelWidth: string;
|
|
3370
3388
|
inline: boolean;
|
|
@@ -3377,7 +3395,7 @@ declare const __VLS_component$6: vue.DefineComponent<__VLS_Props$c, {
|
|
|
3377
3395
|
keyProp: string;
|
|
3378
3396
|
parentValues: Record<string, any>;
|
|
3379
3397
|
stepActive: string | number;
|
|
3380
|
-
}, false, {}, {},
|
|
3398
|
+
}, false, {}, {}, _vue_runtime_core.GlobalComponents, _vue_runtime_core.GlobalDirectives, string, {}, any, _vue_runtime_core.ComponentProvideOptions, {
|
|
3381
3399
|
P: {};
|
|
3382
3400
|
B: {};
|
|
3383
3401
|
D: {};
|
|
@@ -3408,11 +3426,11 @@ declare const __VLS_component$6: vue.DefineComponent<__VLS_Props$c, {
|
|
|
3408
3426
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
3409
3427
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
3410
3428
|
}>, {
|
|
3411
|
-
values:
|
|
3412
|
-
lastValuesProcessed:
|
|
3429
|
+
values: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3430
|
+
lastValuesProcessed: _vue_reactivity.Ref<FormValue, FormValue>;
|
|
3413
3431
|
formState: FormState;
|
|
3414
|
-
initialized:
|
|
3415
|
-
changeRecords:
|
|
3432
|
+
initialized: _vue_reactivity.Ref<boolean, boolean>;
|
|
3433
|
+
changeRecords: _vue_reactivity.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
3416
3434
|
changeHandler: (v: FormValue, eventData: ContainerChangeEventData$1) => void;
|
|
3417
3435
|
resetForm: () => void;
|
|
3418
3436
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -3431,17 +3449,17 @@ declare const __VLS_component$6: vue.DefineComponent<__VLS_Props$c, {
|
|
|
3431
3449
|
stepActive: string | number;
|
|
3432
3450
|
}> | null>>;
|
|
3433
3451
|
submit: (v: FormValue, eventData: ContainerChangeEventData$1) => Promise<void>;
|
|
3434
|
-
}, {}, {}, {},
|
|
3435
|
-
mounted: (internalInstance: any) => any;
|
|
3452
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3436
3453
|
submit: (values: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
3454
|
+
mounted: (internalInstance: any) => any;
|
|
3437
3455
|
"submit-error": (e: any) => any;
|
|
3438
3456
|
"form-error": (e: any) => any;
|
|
3439
|
-
}, string,
|
|
3440
|
-
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3457
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$c> & Readonly<{
|
|
3441
3458
|
onSubmit?: ((values: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3459
|
+
onMounted?: ((internalInstance: any) => any) | undefined;
|
|
3442
3460
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3443
3461
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3444
|
-
}>, {}, {}, {}, {}, string,
|
|
3462
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3445
3463
|
declare const _default$e: __VLS_WithSlots$6<typeof __VLS_component$6, __VLS_Slots$6>;
|
|
3446
3464
|
|
|
3447
3465
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -3454,10 +3472,10 @@ type __VLS_Props$b = {
|
|
|
3454
3472
|
data?: MenuButton | MenuComponent;
|
|
3455
3473
|
eventType?: 'mousedown' | 'mouseup' | 'click';
|
|
3456
3474
|
};
|
|
3457
|
-
declare const _default$d:
|
|
3475
|
+
declare const _default$d: _vue_runtime_core.DefineComponent<__VLS_Props$b, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$b> & Readonly<{}>, {
|
|
3458
3476
|
data: MenuButton | MenuComponent;
|
|
3459
3477
|
eventType: "mousedown" | "mouseup" | "click";
|
|
3460
|
-
}, {}, {}, {}, string,
|
|
3478
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3461
3479
|
|
|
3462
3480
|
type __VLS_Props$a = {
|
|
3463
3481
|
menuData?: (MenuButton | MenuComponent)[];
|
|
@@ -3467,7 +3485,7 @@ type __VLS_Props$a = {
|
|
|
3467
3485
|
};
|
|
3468
3486
|
declare const visible$1: Ref<boolean, boolean>;
|
|
3469
3487
|
declare const subMenuData: Ref<(MenuButton | MenuComponent)[]>;
|
|
3470
|
-
declare const menuStyle:
|
|
3488
|
+
declare const menuStyle: _vue_reactivity.ComputedRef<{
|
|
3471
3489
|
top: string;
|
|
3472
3490
|
left: string;
|
|
3473
3491
|
zIndex: number;
|
|
@@ -3481,7 +3499,7 @@ declare var __VLS_5$1: {};
|
|
|
3481
3499
|
type __VLS_Slots$5 = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx$3.$slots> & {
|
|
3482
3500
|
title?: (props: typeof __VLS_5$1) => any;
|
|
3483
3501
|
}>;
|
|
3484
|
-
declare const __VLS_self$3:
|
|
3502
|
+
declare const __VLS_self$3: _vue_runtime_core.DefineComponent<__VLS_Props$a, {
|
|
3485
3503
|
ToolButton: typeof _default$d;
|
|
3486
3504
|
visible: typeof visible$1;
|
|
3487
3505
|
subMenuData: typeof subMenuData;
|
|
@@ -3490,11 +3508,11 @@ declare const __VLS_self$3: vue.DefineComponent<__VLS_Props$a, {
|
|
|
3490
3508
|
clickHandler: typeof clickHandler;
|
|
3491
3509
|
showSubMenu: typeof showSubMenu;
|
|
3492
3510
|
mouseenterHandler: typeof mouseenterHandler;
|
|
3493
|
-
}, {}, {}, {},
|
|
3511
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3494
3512
|
mouseenter: () => any;
|
|
3495
3513
|
show: () => any;
|
|
3496
3514
|
hide: () => any;
|
|
3497
|
-
}, string,
|
|
3515
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$a> & Readonly<{
|
|
3498
3516
|
onMouseenter?: (() => any) | undefined;
|
|
3499
3517
|
onShow?: (() => any) | undefined;
|
|
3500
3518
|
onHide?: (() => any) | undefined;
|
|
@@ -3502,9 +3520,9 @@ declare const __VLS_self$3: vue.DefineComponent<__VLS_Props$a, {
|
|
|
3502
3520
|
menuData: (MenuButton | MenuComponent)[];
|
|
3503
3521
|
isSubMenu: boolean;
|
|
3504
3522
|
autoHide: boolean;
|
|
3505
|
-
}, {}, {}, {}, string,
|
|
3506
|
-
declare const __VLS_component$5:
|
|
3507
|
-
menu: Readonly<
|
|
3523
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3524
|
+
declare const __VLS_component$5: _vue_runtime_core.DefineComponent<__VLS_Props$a, {
|
|
3525
|
+
menu: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
3508
3526
|
menuPosition: Ref<{
|
|
3509
3527
|
left: number;
|
|
3510
3528
|
top: number;
|
|
@@ -3525,11 +3543,11 @@ declare const __VLS_component$5: vue.DefineComponent<__VLS_Props$a, {
|
|
|
3525
3543
|
clientY: number;
|
|
3526
3544
|
clientX: number;
|
|
3527
3545
|
}) => void;
|
|
3528
|
-
}, {}, {}, {},
|
|
3546
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3529
3547
|
mouseenter: () => any;
|
|
3530
3548
|
show: () => any;
|
|
3531
3549
|
hide: () => any;
|
|
3532
|
-
}, string,
|
|
3550
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$a> & Readonly<{
|
|
3533
3551
|
onMouseenter?: (() => any) | undefined;
|
|
3534
3552
|
onShow?: (() => any) | undefined;
|
|
3535
3553
|
onHide?: (() => any) | undefined;
|
|
@@ -3537,7 +3555,7 @@ declare const __VLS_component$5: vue.DefineComponent<__VLS_Props$a, {
|
|
|
3537
3555
|
menuData: (MenuButton | MenuComponent)[];
|
|
3538
3556
|
isSubMenu: boolean;
|
|
3539
3557
|
autoHide: boolean;
|
|
3540
|
-
}, {}, {}, {}, string,
|
|
3558
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3541
3559
|
declare const _default$c: __VLS_WithSlots$5<typeof __VLS_component$5, __VLS_Slots$5>;
|
|
3542
3560
|
|
|
3543
3561
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -3549,26 +3567,26 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
3549
3567
|
type __VLS_Props$9 = {
|
|
3550
3568
|
icon?: any;
|
|
3551
3569
|
};
|
|
3552
|
-
declare const _default$b:
|
|
3570
|
+
declare const _default$b: _vue_runtime_core.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$9> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3553
3571
|
|
|
3554
|
-
declare const isDragging:
|
|
3572
|
+
declare const isDragging: _vue_reactivity.Ref<boolean, boolean>;
|
|
3555
3573
|
declare const __VLS_ctx$2: InstanceType<__VLS_PickNotAny<typeof __VLS_self$2, new () => {}>>;
|
|
3556
3574
|
declare var __VLS_1$1: {};
|
|
3557
3575
|
type __VLS_Slots$4 = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx$2.$slots> & {
|
|
3558
3576
|
default?: (props: typeof __VLS_1$1) => any;
|
|
3559
3577
|
}>;
|
|
3560
|
-
declare const __VLS_self$2:
|
|
3578
|
+
declare const __VLS_self$2: _vue_runtime_core.DefineComponent<{}, {
|
|
3561
3579
|
isDragging: typeof isDragging;
|
|
3562
|
-
}, {}, {}, {},
|
|
3580
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3563
3581
|
change: (e: OnDrag<gesto.default>) => any;
|
|
3564
|
-
}, string,
|
|
3582
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<{}> & Readonly<{
|
|
3565
3583
|
onChange?: ((e: OnDrag<gesto.default>) => any) | undefined;
|
|
3566
|
-
}>, {}, {}, {}, {}, string,
|
|
3567
|
-
declare const __VLS_component$4:
|
|
3584
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, true, {}, any>;
|
|
3585
|
+
declare const __VLS_component$4: _vue_runtime_core.DefineComponent<{}, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3568
3586
|
change: (e: OnDrag<gesto.default>) => any;
|
|
3569
|
-
}, string,
|
|
3587
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<{}> & Readonly<{
|
|
3570
3588
|
onChange?: ((e: OnDrag<gesto.default>) => any) | undefined;
|
|
3571
|
-
}>, {}, {}, {}, {}, string,
|
|
3589
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, true, {}, any>;
|
|
3572
3590
|
declare const _default$a: __VLS_WithSlots$4<typeof __VLS_component$4, __VLS_Slots$4>;
|
|
3573
3591
|
|
|
3574
3592
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -3588,9 +3606,9 @@ type __VLS_Props$8 = {
|
|
|
3588
3606
|
rightClass?: string;
|
|
3589
3607
|
centerClass?: string;
|
|
3590
3608
|
};
|
|
3591
|
-
declare const hasLeft:
|
|
3592
|
-
declare const hasRight:
|
|
3593
|
-
declare const center:
|
|
3609
|
+
declare const hasLeft: _vue_reactivity.ComputedRef<boolean>;
|
|
3610
|
+
declare const hasRight: _vue_reactivity.ComputedRef<boolean>;
|
|
3611
|
+
declare const center: _vue_reactivity.Ref<number, number>;
|
|
3594
3612
|
declare const changeLeft: ({ deltaX }: OnDrag) => void;
|
|
3595
3613
|
declare const changeRight: ({ deltaX }: OnDrag) => void;
|
|
3596
3614
|
declare const __VLS_ctx$1: InstanceType<__VLS_PickNotAny<typeof __VLS_self$1, new () => {}>>;
|
|
@@ -3604,18 +3622,18 @@ type __VLS_Slots$3 = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx
|
|
|
3604
3622
|
} & {
|
|
3605
3623
|
right?: (props: typeof __VLS_19) => any;
|
|
3606
3624
|
}>;
|
|
3607
|
-
declare const __VLS_self$1:
|
|
3625
|
+
declare const __VLS_self$1: _vue_runtime_core.DefineComponent<__VLS_Props$8, {
|
|
3608
3626
|
Resizer: typeof _default$a;
|
|
3609
3627
|
hasLeft: typeof hasLeft;
|
|
3610
3628
|
hasRight: typeof hasRight;
|
|
3611
3629
|
center: typeof center;
|
|
3612
3630
|
changeLeft: typeof changeLeft;
|
|
3613
3631
|
changeRight: typeof changeRight;
|
|
3614
|
-
}, {}, {}, {},
|
|
3632
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3615
3633
|
change: (...args: any[]) => void;
|
|
3616
3634
|
"update:left": (...args: any[]) => void;
|
|
3617
3635
|
"update:right": (...args: any[]) => void;
|
|
3618
|
-
}, string,
|
|
3636
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
3619
3637
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3620
3638
|
"onUpdate:left"?: ((...args: any[]) => any) | undefined;
|
|
3621
3639
|
"onUpdate:right"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3623,14 +3641,14 @@ declare const __VLS_self$1: vue.DefineComponent<__VLS_Props$8, {
|
|
|
3623
3641
|
minLeft: number;
|
|
3624
3642
|
minRight: number;
|
|
3625
3643
|
minCenter: number;
|
|
3626
|
-
}, {}, {}, {}, string,
|
|
3627
|
-
declare const __VLS_component$3:
|
|
3644
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3645
|
+
declare const __VLS_component$3: _vue_runtime_core.DefineComponent<__VLS_Props$8, {
|
|
3628
3646
|
updateWidth(): void;
|
|
3629
|
-
}, {}, {}, {},
|
|
3647
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3630
3648
|
change: (...args: any[]) => void;
|
|
3631
3649
|
"update:left": (...args: any[]) => void;
|
|
3632
3650
|
"update:right": (...args: any[]) => void;
|
|
3633
|
-
}, string,
|
|
3651
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
3634
3652
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3635
3653
|
"onUpdate:left"?: ((...args: any[]) => any) | undefined;
|
|
3636
3654
|
"onUpdate:right"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3638,7 +3656,7 @@ declare const __VLS_component$3: vue.DefineComponent<__VLS_Props$8, {
|
|
|
3638
3656
|
minLeft: number;
|
|
3639
3657
|
minRight: number;
|
|
3640
3658
|
minCenter: number;
|
|
3641
|
-
}, {}, {}, {}, string,
|
|
3659
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3642
3660
|
declare const _default$9: __VLS_WithSlots$3<typeof __VLS_component$3, __VLS_Slots$3>;
|
|
3643
3661
|
|
|
3644
3662
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -3657,36 +3675,36 @@ type __VLS_PublicProps$1 = __VLS_Props$7 & {
|
|
|
3657
3675
|
'width'?: number;
|
|
3658
3676
|
'visible'?: boolean;
|
|
3659
3677
|
};
|
|
3660
|
-
declare const _default$8:
|
|
3678
|
+
declare const _default$8: _vue_runtime_core.DefineComponent<__VLS_PublicProps$1, {
|
|
3661
3679
|
show(): Promise<void>;
|
|
3662
3680
|
hide(): Promise<void>;
|
|
3663
|
-
}, {}, {}, {},
|
|
3681
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3664
3682
|
close: () => any;
|
|
3665
|
-
open: () => any;
|
|
3666
3683
|
submit: (values: CodeBlockContent, eventData: ContainerChangeEventData$1) => any;
|
|
3684
|
+
open: () => any;
|
|
3667
3685
|
"update:width": (value: number) => any;
|
|
3668
3686
|
"update:visible": (value: boolean) => any;
|
|
3669
|
-
}, string,
|
|
3687
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
|
|
3670
3688
|
onClose?: (() => any) | undefined;
|
|
3671
|
-
onOpen?: (() => any) | undefined;
|
|
3672
3689
|
onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
3690
|
+
onOpen?: (() => any) | undefined;
|
|
3673
3691
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3674
3692
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3675
|
-
}>, {}, {}, {}, {}, string,
|
|
3693
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3676
3694
|
|
|
3677
3695
|
interface Position {
|
|
3678
3696
|
left: number;
|
|
3679
3697
|
top: number;
|
|
3680
3698
|
}
|
|
3681
|
-
declare const visible:
|
|
3699
|
+
declare const visible: _vue_runtime_core.ModelRef<boolean, string, boolean, boolean>;
|
|
3682
3700
|
type __VLS_Props$6 = {
|
|
3683
3701
|
position?: Position;
|
|
3684
3702
|
title?: string;
|
|
3685
3703
|
beforeClose?: (_done: (_cancel?: boolean) => void) => void;
|
|
3686
3704
|
};
|
|
3687
|
-
declare const curZIndex:
|
|
3688
|
-
declare const bodyHeight:
|
|
3689
|
-
declare const style:
|
|
3705
|
+
declare const curZIndex: _vue_reactivity.Ref<number, number>;
|
|
3706
|
+
declare const bodyHeight: _vue_reactivity.ComputedRef<number | "auto">;
|
|
3707
|
+
declare const style: _vue_reactivity.ComputedRef<{
|
|
3690
3708
|
left: string;
|
|
3691
3709
|
top: string;
|
|
3692
3710
|
width: string;
|
|
@@ -3707,7 +3725,7 @@ type __VLS_Slots$2 = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx
|
|
|
3707
3725
|
} & {
|
|
3708
3726
|
body?: (props: typeof __VLS_18) => any;
|
|
3709
3727
|
}>;
|
|
3710
|
-
declare const __VLS_self:
|
|
3728
|
+
declare const __VLS_self: _vue_runtime_core.DefineComponent<__VLS_PublicProps, {
|
|
3711
3729
|
Close: typeof Close;
|
|
3712
3730
|
TMagicButton: typeof TMagicButton;
|
|
3713
3731
|
MIcon: typeof _default$b;
|
|
@@ -3717,34 +3735,34 @@ declare const __VLS_self: vue.DefineComponent<__VLS_PublicProps, {
|
|
|
3717
3735
|
style: typeof style;
|
|
3718
3736
|
closeHandler: typeof closeHandler;
|
|
3719
3737
|
nextZIndex: typeof nextZIndex;
|
|
3720
|
-
}, {}, {}, {},
|
|
3738
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3721
3739
|
"update:width": (value: number) => any;
|
|
3722
3740
|
"update:height": (value: number) => any;
|
|
3723
3741
|
"update:visible": (value: boolean) => any;
|
|
3724
|
-
}, string,
|
|
3742
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
3725
3743
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3726
3744
|
"onUpdate:height"?: ((value: number) => any) | undefined;
|
|
3727
3745
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3728
3746
|
}>, {
|
|
3729
3747
|
title: string;
|
|
3730
3748
|
position: Position;
|
|
3731
|
-
}, {}, {}, {}, string,
|
|
3732
|
-
declare const __VLS_component$2:
|
|
3733
|
-
bodyHeight:
|
|
3734
|
-
target: Readonly<
|
|
3735
|
-
titleEl: Readonly<
|
|
3736
|
-
}, {}, {}, {},
|
|
3749
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3750
|
+
declare const __VLS_component$2: _vue_runtime_core.DefineComponent<__VLS_PublicProps, {
|
|
3751
|
+
bodyHeight: _vue_reactivity.ComputedRef<number | "auto">;
|
|
3752
|
+
target: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
3753
|
+
titleEl: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
3754
|
+
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3737
3755
|
"update:width": (value: number) => any;
|
|
3738
3756
|
"update:height": (value: number) => any;
|
|
3739
3757
|
"update:visible": (value: boolean) => any;
|
|
3740
|
-
}, string,
|
|
3758
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
3741
3759
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3742
3760
|
"onUpdate:height"?: ((value: number) => any) | undefined;
|
|
3743
3761
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3744
3762
|
}>, {
|
|
3745
3763
|
title: string;
|
|
3746
3764
|
position: Position;
|
|
3747
|
-
}, {}, {}, {}, string,
|
|
3765
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3748
3766
|
declare const _default$7: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
|
|
3749
3767
|
|
|
3750
3768
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -3771,7 +3789,7 @@ type __VLS_Props$5 = {
|
|
|
3771
3789
|
nextLevelIndentIncrement?: number;
|
|
3772
3790
|
emptyText?: string;
|
|
3773
3791
|
};
|
|
3774
|
-
declare const __VLS_component$1:
|
|
3792
|
+
declare const __VLS_component$1: _vue_runtime_core.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3775
3793
|
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3776
3794
|
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3777
3795
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
@@ -3779,7 +3797,7 @@ declare const __VLS_component$1: vue.DefineComponent<__VLS_Props$5, {}, {}, {},
|
|
|
3779
3797
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
3780
3798
|
"node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3781
3799
|
"node-dragover": (event: DragEvent) => any;
|
|
3782
|
-
}, string,
|
|
3800
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
3783
3801
|
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3784
3802
|
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3785
3803
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
@@ -3790,7 +3808,7 @@ declare const __VLS_component$1: vue.DefineComponent<__VLS_Props$5, {}, {}, {},
|
|
|
3790
3808
|
}>, {
|
|
3791
3809
|
emptyText: string;
|
|
3792
3810
|
indent: number;
|
|
3793
|
-
}, {}, {}, {}, string,
|
|
3811
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3794
3812
|
declare const _default$6: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
|
|
3795
3813
|
|
|
3796
3814
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -3818,14 +3836,14 @@ type __VLS_Props$4 = {
|
|
|
3818
3836
|
indent?: number;
|
|
3819
3837
|
nextLevelIndentIncrement?: number;
|
|
3820
3838
|
};
|
|
3821
|
-
declare const __VLS_component:
|
|
3839
|
+
declare const __VLS_component: _vue_runtime_core.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3822
3840
|
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3823
3841
|
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3824
3842
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
3825
3843
|
"node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
|
|
3826
3844
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
3827
3845
|
"node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3828
|
-
}, string,
|
|
3846
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$4> & Readonly<{
|
|
3829
3847
|
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3830
3848
|
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3831
3849
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
@@ -3836,7 +3854,7 @@ declare const __VLS_component: vue.DefineComponent<__VLS_Props$4, {}, {}, {}, {}
|
|
|
3836
3854
|
indent: number;
|
|
3837
3855
|
parentsId: Id[];
|
|
3838
3856
|
nextLevelIndentIncrement: number;
|
|
3839
|
-
}, {}, {}, {}, string,
|
|
3857
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3840
3858
|
declare const _default$5: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
3841
3859
|
|
|
3842
3860
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -3846,36 +3864,36 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
3846
3864
|
};
|
|
3847
3865
|
|
|
3848
3866
|
type __VLS_Props$3 = FieldProps<PageFragmentSelectConfig>;
|
|
3849
|
-
declare const _default$4:
|
|
3867
|
+
declare const _default$4: _vue_runtime_core.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3850
3868
|
change: (...args: any[]) => void;
|
|
3851
|
-
}, string,
|
|
3869
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
3852
3870
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3853
3871
|
}>, {
|
|
3854
3872
|
disabled: boolean;
|
|
3855
|
-
}, {}, {}, {}, string,
|
|
3873
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3856
3874
|
|
|
3857
3875
|
type __VLS_Props$2 = FieldProps<DisplayCondsConfig>;
|
|
3858
|
-
declare const _default$3:
|
|
3876
|
+
declare const _default$3: _vue_runtime_core.DefineComponent<__VLS_Props$2, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3859
3877
|
change: (value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
3860
|
-
}, string,
|
|
3878
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
3861
3879
|
onChange?: ((value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3862
3880
|
}>, {
|
|
3863
3881
|
disabled: boolean;
|
|
3864
|
-
}, {}, {}, {}, string,
|
|
3882
|
+
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3865
3883
|
|
|
3866
3884
|
type __VLS_Props$1 = FieldProps<CondOpSelectConfig>;
|
|
3867
|
-
declare const _default$2:
|
|
3885
|
+
declare const _default$2: _vue_runtime_core.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3868
3886
|
change: (value: string) => any;
|
|
3869
|
-
}, string,
|
|
3887
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
3870
3888
|
onChange?: ((value: string) => any) | undefined;
|
|
3871
|
-
}>, {}, {}, {}, {}, string,
|
|
3889
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3872
3890
|
|
|
3873
3891
|
type __VLS_Props = FieldProps<StyleSchema>;
|
|
3874
|
-
declare const _default$1:
|
|
3892
|
+
declare const _default$1: _vue_runtime_core.DefineComponent<__VLS_Props, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3875
3893
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
3876
|
-
}, string,
|
|
3894
|
+
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
3877
3895
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
3878
|
-
}>, {}, {}, {}, {}, string,
|
|
3896
|
+
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3879
3897
|
|
|
3880
3898
|
declare const _default: {
|
|
3881
3899
|
install: (app: App, opt?: Partial<EditorInstallOptions | DesignPluginOptions | FormInstallOptions>) => void;
|