@vtj/designer 0.8.23 → 0.8.24
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/index.mjs +4 -4
- package/package.json +7 -7
- package/types/components/binders/event.d.ts +2 -2
- package/types/components/binders/index.d.ts +2 -2
- package/types/components/binders/variable.d.ts +2 -2
- package/types/components/editor/Editor.d.ts +1 -1
- package/types/components/hooks/useAssets.d.ts +2 -2
- package/types/components/hooks/useBinder.d.ts +2 -2
- package/types/components/hooks/useBlocks.d.ts +2 -2
- package/types/components/hooks/useColSpan.d.ts +1 -1
- package/types/components/hooks/useCurrent.d.ts +3 -3
- package/types/components/hooks/useDataSources.d.ts +2 -2
- package/types/components/hooks/useDeps.d.ts +2 -2
- package/types/components/hooks/useDesigner.d.ts +2 -2
- package/types/components/hooks/useDirectives.d.ts +2 -2
- package/types/components/hooks/useHistory.d.ts +2 -2
- package/types/components/hooks/useNodeEvents.d.ts +2 -2
- package/types/components/hooks/useNodeProps.d.ts +2 -2
- package/types/components/hooks/useProject.d.ts +2 -2
- package/types/components/hooks/useRegion.d.ts +1 -1
- package/types/components/hooks/useSelected.d.ts +1 -1
- package/types/components/index.d.ts +5 -5
- package/types/components/regions/actions.d.ts +1 -1
- package/types/components/regions/apps.d.ts +1 -1
- package/types/components/regions/brand.d.ts +1 -1
- package/types/components/regions/index.d.ts +1 -1
- package/types/components/regions/preview.d.ts +1 -1
- package/types/components/regions/settings.d.ts +1 -1
- package/types/components/regions/status.d.ts +1 -1
- package/types/components/regions/toolbar.d.ts +1 -1
- package/types/components/regions/workspace.d.ts +1 -1
- package/types/components/setter.d.ts +2 -2
- package/types/components/setters/expression.d.ts +2 -2
- package/types/components/setters/function.d.ts +1 -1
- package/types/components/setters/index.d.ts +2 -2
- package/types/components/shared/Icon.d.ts +1 -1
- package/types/components/shared/binder.d.ts +2 -2
- package/types/components/shared/index.d.ts +9 -9
- package/types/components/shared/slots.d.ts +1 -1
- package/types/components/shared/tabs.d.ts +1 -1
- package/types/components/shared/viewer.d.ts +1 -1
- package/types/components/widgets/apis/form.d.ts +1 -1
- package/types/components/widgets/data-sources/form.d.ts +2 -2
- package/types/components/widgets/defined/events.d.ts +2 -2
- package/types/components/widgets/defined/injects.d.ts +2 -2
- package/types/components/widgets/defined/props.d.ts +2 -2
- package/types/components/widgets/defined/slots.d.ts +2 -2
- package/types/components/widgets/designer/actions.d.ts +1 -1
- package/types/components/widgets/designer/index.d.ts +1 -1
- package/types/components/widgets/events/index.d.ts +1 -1
- package/types/components/widgets/index.d.ts +2 -2
- package/types/components/widgets/outline/index.d.ts +1 -1
- package/types/components/widgets/pages/form.d.ts +1 -1
- package/types/components/widgets/previewer/index.d.ts +1 -1
- package/types/components/widgets/properties/setters.d.ts +2 -2
- package/types/components/widgets/scripts/computed.d.ts +2 -2
- package/types/components/widgets/scripts/group.d.ts +2 -2
- package/types/components/widgets/scripts/lifeCycles.d.ts +2 -2
- package/types/components/widgets/scripts/methods.d.ts +2 -2
- package/types/components/widgets/scripts/state.d.ts +2 -2
- package/types/components/widgets/scripts/watch.d.ts +2 -2
- package/types/framework/assets.d.ts +2 -2
- package/types/framework/designer.d.ts +3 -3
- package/types/framework/engine.d.ts +5 -5
- package/types/framework/renderer.d.ts +3 -3
- package/types/framework/simulator.d.ts +4 -4
- package/types/framework/types.d.ts +1 -1
- package/types/managers/setter.d.ts +1 -1
- package/types/utils.d.ts +1 -1
- package/types/version.d.ts +2 -2
- package/types/wrappers/setter.d.ts +3 -3
- package/types/wrappers/skeleton.d.ts +3 -3
- package/types/wrappers/widget.d.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12,10 +12,10 @@ import ms from "mockjs";
|
|
|
12
12
|
* Copyright (c) 2024, VTJ.PRO All rights reserved.
|
|
13
13
|
* @name @vtj/designer
|
|
14
14
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
15
|
-
* @version 0.8.
|
|
15
|
+
* @version 0.8.24
|
|
16
16
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
17
17
|
*/
|
|
18
|
-
const vs = "0.8.
|
|
18
|
+
const vs = "0.8.24", Rt = {
|
|
19
19
|
width: 390,
|
|
20
20
|
height: 844
|
|
21
21
|
}, Tt = {
|
|
@@ -2025,7 +2025,7 @@ const Bs = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!
|
|
|
2025
2025
|
name: D.name,
|
|
2026
2026
|
title: D.title,
|
|
2027
2027
|
active: t(o)?.id === D.id,
|
|
2028
|
-
editable:
|
|
2028
|
+
editable: !D.preset,
|
|
2029
2029
|
tag: s[D.fromType || "Schema"]?.label,
|
|
2030
2030
|
tagType: s[D.fromType || "Schema"]?.type,
|
|
2031
2031
|
onEdit: (X) => w(D),
|
|
@@ -2034,7 +2034,7 @@ const Bs = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!
|
|
|
2034
2034
|
draggable: t(o)?.id !== D.id,
|
|
2035
2035
|
onDragstart: (X) => N(D),
|
|
2036
2036
|
onDragend: T
|
|
2037
|
-
}, null, 8, ["name", "title", "active", "tag", "tagType", "onEdit", "onRemove", "onClick", "draggable", "onDragstart"])
|
|
2037
|
+
}, null, 8, ["name", "title", "active", "editable", "tag", "tagType", "onEdit", "onRemove", "onClick", "draggable", "onDragstart"])
|
|
2038
2038
|
]),
|
|
2039
2039
|
_: 2
|
|
2040
2040
|
}, 1032, ["span"]))), 128))
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtj/designer",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.24",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"mockjs": "~1.1.0",
|
|
8
8
|
"monaco-editor": "~0.48.0",
|
|
9
|
-
"@vtj/core": "~0.8.
|
|
10
|
-
"@vtj/
|
|
11
|
-
"@vtj/renderer": "~0.8.
|
|
12
|
-
"@vtj/
|
|
13
|
-
"@vtj/utils": "~0.8.
|
|
9
|
+
"@vtj/core": "~0.8.24",
|
|
10
|
+
"@vtj/ui": "~0.8.24",
|
|
11
|
+
"@vtj/renderer": "~0.8.24",
|
|
12
|
+
"@vtj/icons": "~0.8.24",
|
|
13
|
+
"@vtj/utils": "~0.8.24"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/mockjs": "~1.0.10",
|
|
17
17
|
"vue": "~3.4.15",
|
|
18
18
|
"vue-router": "~4.3.0",
|
|
19
|
-
"@vtj/cli": "~0.8.
|
|
19
|
+
"@vtj/cli": "~0.8.10"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockModel, NodeEvent } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockModel, NodeEvent } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { editor as monacoEditor } from 'monaco-editor';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
lang?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Ref, ComputedRef } from 'vue';
|
|
2
|
-
import { MaterialDescription } from '@vtj/core';
|
|
3
1
|
import { AssetGroup } from '../../framework';
|
|
2
|
+
import { MaterialDescription } from '@vtj/core';
|
|
3
|
+
import { Ref, ComputedRef } from 'vue';
|
|
4
4
|
|
|
5
5
|
export declare function useAssets(): {
|
|
6
6
|
components: MaterialDescription[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Context } from '@vtj/renderer';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
1
|
import { MaybeRef, Ref, ComputedRef } from 'vue';
|
|
2
|
+
import { BlockModel } from '@vtj/core';
|
|
3
|
+
import { Context } from '@vtj/renderer';
|
|
4
4
|
|
|
5
5
|
export interface BinderOption {
|
|
6
6
|
title: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BlockFile } from '@vtj/core';
|
|
2
|
-
import { Engine } from '../../framework';
|
|
3
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../../framework';
|
|
3
|
+
import { BlockFile } from '@vtj/core';
|
|
4
4
|
export declare function useBlocks(): {
|
|
5
5
|
engine: ShallowReactive<Engine>;
|
|
6
6
|
blocks: ComputedRef< BlockFile[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Context } from '@vtj/renderer';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
|
-
import { Engine } from '../../framework';
|
|
4
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../../framework';
|
|
3
|
+
import { BlockModel } from '@vtj/core';
|
|
4
|
+
import { Context } from '@vtj/renderer';
|
|
5
5
|
export declare function useCurrent(): {
|
|
6
6
|
engine: ShallowReactive<Engine>;
|
|
7
7
|
current: ComputedRef< BlockModel | null>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ProjectModel, ApiSchema } from '@vtj/core';
|
|
2
|
-
import { Engine } from '../..';
|
|
3
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../..';
|
|
3
|
+
import { ProjectModel, ApiSchema } from '@vtj/core';
|
|
4
4
|
export declare function useDataSources(): {
|
|
5
5
|
engine: ShallowReactive<Engine>;
|
|
6
6
|
project: ComputedRef< ProjectModel | null>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Dependencie, ApiSchema } from '@vtj/core';
|
|
2
|
-
import { Engine } from '../../framework';
|
|
3
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../../framework';
|
|
3
|
+
import { Dependencie, ApiSchema } from '@vtj/core';
|
|
4
4
|
export declare function useDeps(): {
|
|
5
5
|
engine: ShallowReactive<Engine>;
|
|
6
6
|
dependencies: ComputedRef< Dependencie[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Designer, VtjElement } from '../../framework';
|
|
2
|
-
import { Dependencie, ApiSchema, ProjectConfig, NodeModel, BlockModel, DropPosition } from '@vtj/core';
|
|
3
1
|
import { Ref, ComputedRef } from 'vue';
|
|
2
|
+
import { Dependencie, ApiSchema, ProjectConfig, NodeModel, BlockModel, DropPosition } from '@vtj/core';
|
|
3
|
+
import { Designer, VtjElement } from '../../framework';
|
|
4
4
|
|
|
5
5
|
export declare function useDesigner(iframe: Ref<HTMLIFrameElement | undefined>, dependencies: Ref<Dependencie[]>, apis: Ref<ApiSchema[]>, config: Ref<ProjectConfig>): {
|
|
6
6
|
designer: ComputedRef< Designer | null>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DesignHelper, Engine } from '../../framework';
|
|
2
|
-
import { DirectiveModel, JSExpression, NodeDirectiveIterator, NodeModel } from '@vtj/core';
|
|
3
1
|
import { ComputedRef, ShallowReactive } from 'vue';
|
|
2
|
+
import { DirectiveModel, JSExpression, NodeDirectiveIterator, NodeModel } from '@vtj/core';
|
|
3
|
+
import { DesignHelper, Engine } from '../../framework';
|
|
4
4
|
|
|
5
5
|
export declare const createEmptyDirective: (name: string, iterator?: NodeDirectiveIterator) => DirectiveModel;
|
|
6
6
|
export declare const createModelDirective: (prop?: string) => DirectiveModel;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { HistoryModel } from '@vtj/core';
|
|
2
|
-
import { Engine } from '../../framework';
|
|
3
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../../framework';
|
|
3
|
+
import { HistoryModel } from '@vtj/core';
|
|
4
4
|
export declare function useHistory(): {
|
|
5
5
|
engine: ShallowReactive<Engine>;
|
|
6
6
|
history: ComputedRef< HistoryModel | null>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DesignHelper } from '../../framework';
|
|
2
|
-
import { NodeEvent } from '@vtj/core';
|
|
3
1
|
import { ComputedRef } from 'vue';
|
|
2
|
+
import { NodeEvent } from '@vtj/core';
|
|
3
|
+
import { DesignHelper } from '../../framework';
|
|
4
4
|
|
|
5
5
|
export declare function useNodeEvents(selected: ComputedRef<DesignHelper | null | undefined>): {
|
|
6
6
|
mouseEventList: ComputedRef<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DesignHelper } from '../../framework';
|
|
2
|
-
import { MaterialSetter, MaterialProp, NodeModel } from '@vtj/core';
|
|
3
1
|
import { ComputedRef } from 'vue';
|
|
2
|
+
import { MaterialSetter, MaterialProp, NodeModel } from '@vtj/core';
|
|
3
|
+
import { DesignHelper } from '../../framework';
|
|
4
4
|
|
|
5
5
|
export declare function useNodeProps(selected: ComputedRef<DesignHelper | null | undefined>): {
|
|
6
6
|
commonProps: ComputedRef<MaterialSetter[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ProjectModel } from '@vtj/core';
|
|
2
|
-
import { Engine } from '../../framework';
|
|
3
1
|
import { ShallowReactive, ComputedRef } from 'vue';
|
|
2
|
+
import { Engine } from '../../framework';
|
|
3
|
+
import { ProjectModel } from '@vtj/core';
|
|
4
4
|
export declare function useProject(): {
|
|
5
5
|
engine: ShallowReactive<Engine>;
|
|
6
6
|
project: ComputedRef< ProjectModel | null>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RegionType, Widget } from '../../framework';
|
|
2
1
|
import { MaybeRef, ComputedRef, Ref } from 'vue';
|
|
2
|
+
import { RegionType, Widget } from '../../framework';
|
|
3
3
|
|
|
4
4
|
export declare function useRegion(region: MaybeRef<RegionType>, group?: MaybeRef<string>): {
|
|
5
5
|
widgets: ComputedRef< Widget[]>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { widgets } from './widgets';
|
|
1
|
+
import { default as Skeleton } from './skeleton';
|
|
2
|
+
import { default as SetterView } from './setter';
|
|
4
3
|
import { default as Editor } from './editor';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { widgets } from './widgets';
|
|
5
|
+
import { regions } from './regions';
|
|
6
|
+
import { setters } from './setters';
|
|
7
7
|
|
|
8
8
|
export * from './shared';
|
|
9
9
|
export * from './binders';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RegionType, Widget } from '../..';
|
|
2
1
|
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes, ComputedRef, Ref } from 'vue';
|
|
2
|
+
import { RegionType, Widget } from '../..';
|
|
3
3
|
export declare const regions: {
|
|
4
4
|
EmptyRegion: DefineComponent<{
|
|
5
5
|
region: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { RegionType, Widget } from '../../framework';
|
|
2
|
+
import { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
region: RegionType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { MaterialSetter, BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { JSExpression } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
modelValue?: JSExpression | string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { JSFunction } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
modelValue?: JSFunction;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Context } from '@vtj/renderer';
|
|
2
|
-
import { JSExpression, JSFunction } from '@vtj/core';
|
|
3
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
+
import { JSExpression, JSFunction } from '@vtj/core';
|
|
3
|
+
import { Context } from '@vtj/renderer';
|
|
4
4
|
export declare const setters: {
|
|
5
5
|
StringSetter: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{}>>, {}, {}>;
|
|
6
6
|
BooleanSetter: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { VueComponent } from '../../framework';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
icon?: VueComponent;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
title: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as Box } from
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
1
|
+
import { default as Icon } from './Icon';
|
|
2
|
+
import { default as Panel } from './panel';
|
|
3
|
+
import { default as Tabs } from './tabs';
|
|
4
|
+
import { default as Item } from './item';
|
|
5
|
+
import { default as Box } from './box';
|
|
6
|
+
import { default as Binder } from './binder';
|
|
7
|
+
import { default as Viewer } from './viewer';
|
|
8
|
+
import { default as SlotsPicker } from './slots';
|
|
9
|
+
import { default as Viewport } from './viewport';
|
|
10
10
|
|
|
11
11
|
export * from './types';
|
|
12
12
|
export { Icon, Panel, Tabs, Item, Box, Binder, Viewer, SlotsPicker, Viewport };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { MaterialSlot } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
slots?: MaterialSlot[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { TabsItem, ActionMenuItem } from '@vtj/ui';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
items?: TabsItem[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
context: Context | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { ApiSchema, ProjectModel } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
model?: ApiSchema;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { DataSourceSchema, BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
item?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockInject, BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockInject, BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
item?: BlockInject;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockProp, BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockProp, BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
item?: BlockProp;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { BlockModel } from '@vtj/core';
|
|
3
1
|
import { Context } from '@vtj/renderer';
|
|
2
|
+
import { BlockModel } from '@vtj/core';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
item?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { NodeModel, BlockModel } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
position?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Designer } from '../../..';
|
|
2
1
|
import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { Designer } from '../../..';
|
|
3
3
|
declare const _default: DefineComponent<{}, {
|
|
4
4
|
designer: ComputedRef< Designer | null>;
|
|
5
5
|
mode: ComputedRef<any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
1
|
import { NodeEvent } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface EventDataItem {
|
|
5
5
|
name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BlockModel } from '@vtj/core';
|
|
2
|
-
import { Designer } from '../..';
|
|
3
1
|
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes, Ref, ComputedRef } from 'vue';
|
|
2
|
+
import { Designer } from '../..';
|
|
3
|
+
import { BlockModel } from '@vtj/core';
|
|
4
4
|
export declare const widgets: {
|
|
5
5
|
Logo: DefineComponent<{
|
|
6
6
|
link: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
1
|
import { NodeModel, BlockModel } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface TreeNodeData {
|
|
5
5
|
id: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { PageFile } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
item?: PageFile;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
export interface Props {
|
|
5
5
|
path?: (block: BlockModel) => string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { MaterialSetter, NodeModel, BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
1
|
import { BlockModel } from '@vtj/core';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
4
|
|
|
5
5
|
export interface Props {
|
|
6
6
|
context: Context | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Provider } from '@vtj/renderer';
|
|
2
|
-
import { Material, MaterialDescription, NodeFrom, Service } from '@vtj/core';
|
|
3
1
|
import { Ref } from 'vue';
|
|
2
|
+
import { Material, MaterialDescription, NodeFrom, Service } from '@vtj/core';
|
|
3
|
+
import { Provider } from '@vtj/renderer';
|
|
4
4
|
|
|
5
5
|
export interface AssetGroup {
|
|
6
6
|
name: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Engine } from './engine';
|
|
2
|
-
import { Dependencie, DropPosition, MaterialDescription, MaterialSlot, NodeModel, BlockModel } from '@vtj/core';
|
|
3
|
-
import { Context } from '@vtj/renderer';
|
|
4
1
|
import { Ref, ShallowRef } from 'vue';
|
|
2
|
+
import { Context } from '@vtj/renderer';
|
|
3
|
+
import { Dependencie, DropPosition, MaterialDescription, MaterialSlot, NodeModel, BlockModel } from '@vtj/core';
|
|
4
|
+
import { Engine } from './engine';
|
|
5
5
|
|
|
6
6
|
export declare function createSlotsPicker(slots: MaterialSlot[]): Promise<MaterialSlot>;
|
|
7
7
|
export interface VtjElement extends HTMLElement {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Assets } from './assets';
|
|
2
|
-
import { Simulator } from './simulator';
|
|
3
|
-
import { SkeletonWrapperInstance } from '../wrappers';
|
|
4
|
-
import { Context, Provider, ProvideAdapter } from '@vtj/renderer';
|
|
5
|
-
import { Base, ProjectModel, BlockModel, HistoryModel, Service, Emitter, ProjectSchema } from '@vtj/core';
|
|
6
1
|
import { ShallowReactive, InjectionKey, MaybeRef, App, Ref } from 'vue';
|
|
2
|
+
import { Base, ProjectModel, BlockModel, HistoryModel, Service, Emitter, ProjectSchema } from '@vtj/core';
|
|
3
|
+
import { Context, Provider, ProvideAdapter } from '@vtj/renderer';
|
|
4
|
+
import { SkeletonWrapperInstance } from '../wrappers';
|
|
5
|
+
import { Simulator } from './simulator';
|
|
6
|
+
import { Assets } from './assets';
|
|
7
7
|
|
|
8
8
|
export declare const engineKey: InjectionKey<ShallowReactive<Engine>>;
|
|
9
9
|
export interface EngineOptions {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Designer } from './designer';
|
|
2
|
-
import { Provider, Context } from '@vtj/renderer';
|
|
3
|
-
import { SimulatorEnv } from './simulator';
|
|
4
1
|
import { BlockSchema, NodeSchema, BlockModel, Service } from '@vtj/core';
|
|
2
|
+
import { SimulatorEnv } from './simulator';
|
|
3
|
+
import { Provider, Context } from '@vtj/renderer';
|
|
4
|
+
import { Designer } from './designer';
|
|
5
5
|
|
|
6
6
|
export declare class Renderer {
|
|
7
7
|
env: SimulatorEnv;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Engine } from './engine';
|
|
2
|
-
import { Designer } from './designer';
|
|
3
|
-
import { Renderer } from './renderer';
|
|
4
|
-
import { Dependencie, Material, ApiSchema, ProjectConfig, Base } from '@vtj/core';
|
|
5
1
|
import { Ref, ShallowRef } from 'vue';
|
|
2
|
+
import { Dependencie, Material, ApiSchema, ProjectConfig, Base } from '@vtj/core';
|
|
3
|
+
import { Renderer } from './renderer';
|
|
4
|
+
import { Designer } from './designer';
|
|
5
|
+
import { Engine } from './engine';
|
|
6
6
|
|
|
7
7
|
declare global {
|
|
8
8
|
interface Window {
|
package/types/utils.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NotificationHandle, MessageBoxData, MessageHandler } from 'element-plus';
|
|
2
1
|
import { JSExpression, JSFunction } from '@vtj/core';
|
|
2
|
+
import { NotificationHandle, MessageBoxData, MessageHandler } from 'element-plus';
|
|
3
3
|
|
|
4
4
|
export declare function notify(message: string, title?: string): NotificationHandle;
|
|
5
5
|
export declare function confirm(message: string): Promise<boolean | MessageBoxData>;
|
package/types/version.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) 2024, VTJ.PRO All rights reserved.
|
|
3
3
|
* @name @vtj/designer
|
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
5
|
-
* @version 0.8.
|
|
5
|
+
* @version 0.8.23
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.8.
|
|
8
|
+
export declare const version = "0.8.23";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Setter } from '../framework';
|
|
2
|
-
import { Context } from '@vtj/renderer';
|
|
3
|
-
import { MaterialSetter, BlockModel } from '@vtj/core';
|
|
4
1
|
import { PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { MaterialSetter, BlockModel } from '@vtj/core';
|
|
3
|
+
import { Context } from '@vtj/renderer';
|
|
4
|
+
import { Setter } from '../framework';
|
|
5
5
|
|
|
6
6
|
export declare const SetterWrapper: DefineComponent<{
|
|
7
7
|
context: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { DefineComponent, Ref, ShallowReactive, CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps } from 'vue';
|
|
2
|
-
import { WidgetWrapperInstance } from './widget';
|
|
3
|
-
import { RegionWrapperInstance } from './region';
|
|
4
1
|
import { RegionType, Engine, Widget } from '../framework';
|
|
2
|
+
import { RegionWrapperInstance } from './region';
|
|
3
|
+
import { WidgetWrapperInstance } from './widget';
|
|
4
|
+
import { DefineComponent, Ref, ShallowReactive, CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps } from 'vue';
|
|
5
5
|
|
|
6
6
|
export declare const SkeletonWrapper: DefineComponent<{}, {
|
|
7
7
|
skeletonRef: Ref<any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Widget, RegionType } from '../framework';
|
|
2
1
|
import { PropType, DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { Widget, RegionType } from '../framework';
|
|
3
3
|
|
|
4
4
|
export declare const WidgetWrapper: DefineComponent<{
|
|
5
5
|
region: {
|