@vtj/designer 0.13.27 → 0.13.29

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 CHANGED
@@ -1,4 +1,4 @@
1
- import { A as e, x as E, L as t, p as r, o as i, D as n, U as S, E as _, j as T, I as o, z as I, G as O, H as l, k as V, n as g, K as p, g as d, M as R, a as A, N as D, e as P, X as M, P as N, l as L, R as K, B as u, a7 as Y, Q as b, F as c, S as B, f as W, i as m, a9 as G, O as f, h as w, a6 as x, t as y, Y as F, m as H, V as U, v as k, b as C, d as X, c as J, y as Z, q as h, u as j, W as v, a8 as z, aa as q, $ as Q, a0 as $, a2 as aa, Z as sa, ad as ea, T as Ea, a1 as ta, a4 as ra, C as ia, ag as na, ah as Sa, ac as _a, ae as Ta, ai as oa, ab as Ia, af as Oa, aj as la, r as Va, a5 as ga, s as pa, J as da, a3 as Ra, w as Aa } from "./index-BaMft5iS.js";
1
+ import { A as e, x as E, L as t, p as r, o as i, D as n, U as S, E as _, j as T, I as o, z as I, G as O, H as l, k as V, n as g, K as p, g as d, M as R, a as A, N as D, e as P, X as M, P as N, l as L, R as K, B as u, a7 as Y, Q as b, F as c, S as B, f as W, i as m, a9 as G, O as f, h as w, a6 as x, t as y, Y as F, m as H, V as U, v as k, b as C, d as X, c as J, y as Z, q as h, u as j, W as v, a8 as z, aa as q, $ as Q, a0 as $, a2 as aa, Z as sa, ad as ea, T as Ea, a1 as ta, a4 as ra, C as ia, ag as na, ah as Sa, ac as _a, ae as Ta, ai as oa, ab as Ia, af as Oa, aj as la, r as Va, a5 as ga, s as pa, J as da, a3 as Ra, w as Aa } from "./index-Bd05zfhh.js";
2
2
  export {
3
3
  e as API_METHOD_TYPES,
4
4
  E as ActionMenu,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vtj/designer",
3
3
  "private": false,
4
- "version": "0.13.27",
4
+ "version": "0.13.29",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "低代码引擎",
@@ -29,12 +29,12 @@
29
29
  "marked": "~15.0.8",
30
30
  "mockjs": "~1.1.0",
31
31
  "monaco-editor": "~0.52.0",
32
- "@vtj/icons": "~0.13.27",
33
- "@vtj/core": "~0.13.27",
34
- "@vtj/uni": "~0.13.27",
35
- "@vtj/ui": "~0.13.27",
36
- "@vtj/utils": "~0.13.27",
37
- "@vtj/renderer": "~0.13.27"
32
+ "@vtj/icons": "~0.13.29",
33
+ "@vtj/core": "~0.13.29",
34
+ "@vtj/renderer": "~0.13.29",
35
+ "@vtj/utils": "~0.13.29",
36
+ "@vtj/ui": "~0.13.29",
37
+ "@vtj/uni": "~0.13.29"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/mockjs": "~1.0.10",
@@ -1567,7 +1567,8 @@ declare function __VLS_template(): {
1567
1567
  };
1568
1568
  $forceUpdate: () => void;
1569
1569
  $nextTick: nextTick;
1570
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
1570
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (
1571
+ /** @type { typeof __VLS_ctx.formRef } */ ...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
1571
1572
  } & Readonly<{
1572
1573
  footer: boolean;
1573
1574
  inline: boolean;
@@ -3202,7 +3203,8 @@ declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentO
3202
3203
  };
3203
3204
  $forceUpdate: () => void;
3204
3205
  $nextTick: nextTick;
3205
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3206
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (
3207
+ /** @type { typeof __VLS_ctx.formRef } */ ...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3206
3208
  } & Readonly<{
3207
3209
  footer: boolean;
3208
3210
  inline: boolean;
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ export interface Props {
3
+ options: Record<string, string[]>;
4
+ modelValue: string[];
5
+ }
6
+ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7
+ change: (value: string[]) => any;
8
+ }, string, PublicProps, Readonly<Props> & Readonly<{
9
+ onChange?: ((value: string[]) => any) | undefined;
10
+ }>, {
11
+ modelValue: string[];
12
+ options: Record<string, string[]>;
13
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
14
+ 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.26
5
+ * @version 0.13.28
6
6
  * @license <a href="https://vtj.pro/license.html">MIT License</a>
7
7
  */
8
- export declare const version = "0.13.26";
8
+ export declare const version = "0.13.28";
@@ -1,4 +0,0 @@
1
- import { _ as f } from "./index-BaMft5iS.js";
2
- export {
3
- f as default
4
- };