@vtj/designer 0.13.9 → 0.13.11

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vtj/designer",
3
3
  "private": false,
4
- "version": "0.13.9",
4
+ "version": "0.13.11",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "低代码引擎",
@@ -26,12 +26,12 @@
26
26
  "marked": "~15.0.8",
27
27
  "mockjs": "~1.1.0",
28
28
  "monaco-editor": "~0.52.0",
29
- "@vtj/core": "~0.13.9",
30
- "@vtj/icons": "~0.13.9",
31
- "@vtj/uni": "~0.13.9",
32
- "@vtj/renderer": "~0.13.9",
33
- "@vtj/ui": "~0.13.9",
34
- "@vtj/utils": "~0.13.9"
29
+ "@vtj/core": "~0.13.11",
30
+ "@vtj/icons": "~0.13.11",
31
+ "@vtj/renderer": "~0.13.11",
32
+ "@vtj/ui": "~0.13.11",
33
+ "@vtj/utils": "~0.13.11",
34
+ "@vtj/uni": "~0.13.11"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/mockjs": "~1.0.10",
@@ -13,4 +13,6 @@ export declare function useWorkspace(widgets: ComputedRef<Widget[]>): {
13
13
  menuChecked: Ref<string, string>;
14
14
  onCloseTab: (name: string) => void;
15
15
  onMenuChecked: (item: ActionMenuItem) => void;
16
+ closeAllTabs: () => void;
17
+ closeOtherTabs: () => void;
16
18
  };
@@ -2,6 +2,7 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
2
2
  export interface Props {
3
3
  modelValue?: string;
4
4
  attachment?: Record<string, any>;
5
+ acceptFilter?: boolean;
5
6
  }
6
7
  declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7
8
  "update:modelValue": (...args: any[]) => void;
@@ -9,5 +10,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
9
10
  }, string, PublicProps, Readonly<Props> & Readonly<{
10
11
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11
12
  onChange?: ((...args: any[]) => any) | undefined;
12
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
13
+ }>, {
14
+ acceptFilter: boolean;
15
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
13
16
  export default _default;
@@ -205,7 +205,9 @@ export declare const setters: {
205
205
  }, string, PublicProps, Readonly< Props> & Readonly<{
206
206
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
207
207
  onChange?: ((...args: any[]) => any) | undefined;
208
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
208
+ }>, {
209
+ acceptFilter: boolean;
210
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
209
211
  VanIconSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
210
212
  "update:modelValue": (...args: any[]) => void;
211
213
  change: (...args: any[]) => void;
@@ -7,8 +7,10 @@ export interface Props {
7
7
  }
8
8
  declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
9
9
  "update:modelValue": (...args: any[]) => void;
10
+ command: (...args: any[]) => void;
10
11
  }, string, PublicProps, Readonly<Props> & Readonly<{
11
12
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
13
+ onCommand?: ((...args: any[]) => any) | undefined;
12
14
  }>, {
13
15
  menus: ActionMenuItem[];
14
16
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -7202,12 +7202,12 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
7202
7202
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, string[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
7203
7203
  data: TreeData;
7204
7204
  props: TreeOptionProps;
7205
+ draggable: boolean;
7205
7206
  checkStrictly: boolean;
7206
7207
  lazy: boolean;
7207
7208
  checkOnClickNode: boolean;
7208
7209
  checkOnClickLeaf: boolean;
7209
7210
  accordion: boolean;
7210
- draggable: boolean;
7211
7211
  defaultExpandAll: boolean;
7212
7212
  indent: number;
7213
7213
  autoExpandParent: boolean;
@@ -14414,12 +14414,12 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
14414
14414
  }, {}, {}, {}, {
14415
14415
  data: TreeData;
14416
14416
  props: TreeOptionProps;
14417
+ draggable: boolean;
14417
14418
  checkStrictly: boolean;
14418
14419
  lazy: boolean;
14419
14420
  checkOnClickNode: boolean;
14420
14421
  checkOnClickLeaf: boolean;
14421
14422
  accordion: boolean;
14422
- draggable: boolean;
14423
14423
  defaultExpandAll: boolean;
14424
14424
  indent: number;
14425
14425
  autoExpandParent: boolean;
@@ -1,3 +1,3 @@
1
1
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
1
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
3
  export default _default;
@@ -2,7 +2,7 @@
2
2
  * Copyright (c) 2025, VTJ.PRO All rights reserved.
3
3
  * @name @vtj/designer
4
4
  * @author CHC chenhuachun1549@dingtalk.com
5
- * @version 0.13.8
5
+ * @version 0.13.10
6
6
  * @license <a href="https://vtj.pro/license.html">MIT License</a>
7
7
  */
8
- export declare const version = "0.13.8";
8
+ export declare const version = "0.13.10";
@@ -1,4 +0,0 @@
1
- import { _ as f } from "./index-V80MAGGS.js";
2
- export {
3
- f as default
4
- };