@vtj/designer 0.16.11 → 0.16.13

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.
Files changed (29) hide show
  1. package/dist/Editor-Ce_uPB1q.js +4 -0
  2. package/dist/{index-D40kzfbN.js → index-Cm-7k5DS.js} +1397 -1391
  3. package/dist/index.mjs +1 -1
  4. package/package.json +7 -7
  5. package/types/components/hooks/useAI.d.ts +1 -1
  6. package/types/components/hooks/useOpenApi.d.ts +1 -1
  7. package/types/components/setters/image.d.ts +42 -267
  8. package/types/components/setters/index.d.ts +42 -266
  9. package/types/components/shared/binder.d.ts +56 -304
  10. package/types/components/shared/panel.d.ts +5 -13
  11. package/types/components/shared/viewer.d.ts +1231 -199
  12. package/types/components/widgets/ai/image-input.d.ts +42 -267
  13. package/types/components/widgets/ai/index.d.ts +4 -10
  14. package/types/components/widgets/ai/json-input.d.ts +120 -570
  15. package/types/components/widgets/apis/form.d.ts +32 -163
  16. package/types/components/widgets/apis/swagger.d.ts +2 -4
  17. package/types/components/widgets/designer/index.d.ts +2 -4
  18. package/types/components/widgets/devtools/index.d.ts +4 -10
  19. package/types/components/widgets/docs/index.d.ts +4 -10
  20. package/types/components/widgets/env/index.d.ts +2 -4
  21. package/types/components/widgets/i18n/index.d.ts +2 -4
  22. package/types/components/widgets/index.d.ts +16 -46
  23. package/types/components/widgets/market/index.d.ts +4 -10
  24. package/types/components/widgets/scripts/group.d.ts +38 -220
  25. package/types/components/widgets/style/spacing-input.d.ts +2 -4
  26. package/types/framework/openapi.d.ts +1 -1
  27. package/types/utils.d.ts +20 -16
  28. package/types/version.d.ts +2 -2
  29. package/dist/Editor-K7Frwt8a.js +0 -4
@@ -1,9 +1,9 @@
1
- import { nextTick, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNode, RendererNode, RendererElement, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, Reactive } from 'vue';
1
+ import { nextTick, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNode, RendererNode, RendererElement, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, Reactive } from 'vue';
2
2
  import { ApiSchema, ProjectModel } from '@vtj/core';
3
3
  import { BaseSize, DialogMode, DraggableOptions, IconParam, ResizableOptions, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, PanelBadge, HeaderProps, ContainerProps, FormModel } from '@vtj/ui';
4
4
  import { UseMouseSourceType, Position } from '@vueuse/core';
5
5
  import { OnCleanup } from '@vue/reactivity';
6
- import { UseTooltipProps, ComponentSize, FormRules, FormItemProp, FormItemRule, FormValidateCallback, FormValidationResult, FormItemContext, ElTooltipProps } from 'element-plus';
6
+ import { UseTooltipProps, FormRules, ComponentSize, FormItemProp, FormProps, FormValidateCallback, FormValidationResult, FormItemContext, ElTooltipProps } from 'element-plus';
7
7
  import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
8
8
  export interface Props {
9
9
  model?: ApiSchema;
@@ -110,9 +110,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
110
110
  stop: () => void;
111
111
  }) => any) | undefined | undefined;
112
112
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "size" | "height" | "width" | "primary" | "modelValue" | "mode" | "draggable" | "pure" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding">;
113
- $attrs: {
114
- [x: string]: unknown;
115
- };
113
+ $attrs: Attrs;
116
114
  $refs: {
117
115
  [x: string]: unknown;
118
116
  } & {
@@ -294,9 +292,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
294
292
  readonly height?: string | number | undefined;
295
293
  readonly shadow?: "hover" | "always" | "none" | undefined;
296
294
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
297
- $attrs: {
298
- [x: string]: unknown;
299
- };
295
+ $attrs: Attrs;
300
296
  $refs: {
301
297
  [x: string]: unknown;
302
298
  } & {
@@ -339,9 +335,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
339
335
  readonly height?: string | number | undefined;
340
336
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
341
337
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
342
- $attrs: {
343
- [x: string]: unknown;
344
- };
338
+ $attrs: Attrs;
345
339
  $refs: {
346
340
  [x: string]: unknown;
347
341
  } & {
@@ -1184,7 +1178,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1184
1178
  $props: Partial<{
1185
1179
  footer: boolean;
1186
1180
  inline: boolean;
1187
- footerAlign: "left" | "right" | "center";
1181
+ footerAlign: "right" | "left" | "center";
1188
1182
  tooltipMessage: boolean | Partial< UseTooltipProps>;
1189
1183
  model: Record<string, any>;
1190
1184
  submitText: string | null;
@@ -1207,46 +1201,33 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1207
1201
  readonly onReset?: (() => any) | undefined | undefined;
1208
1202
  readonly onSubmit?: ((model: Record<string, any>) => any) | undefined | undefined;
1209
1203
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "model" | "footer" | "tooltipMessage" | "inline" | "submitText" | "resetText" | "enterSubmit" | "sticky" | "footerAlign">;
1210
- $attrs: {
1211
- [x: string]: unknown;
1212
- };
1204
+ $attrs: Attrs;
1213
1205
  $refs: {
1214
1206
  [x: string]: unknown;
1215
1207
  } & {
1216
1208
  formRef: ({
1217
1209
  $: ComponentInternalInstance;
1218
1210
  $data: {};
1219
- $props: Partial<{
1220
- labelWidth: string | number;
1221
- labelPosition: "left" | "right" | "top";
1222
- showMessage: boolean;
1223
- requireAsteriskPosition: "left" | "right";
1224
- labelSuffix: string;
1225
- validateOnRuleChange: boolean;
1226
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1227
- }> & Omit<{
1228
- readonly labelWidth: string | number;
1229
- readonly labelPosition: "left" | "right" | "top";
1230
- readonly showMessage: boolean;
1231
- readonly requireAsteriskPosition: "left" | "right";
1232
- readonly labelSuffix: string;
1233
- readonly validateOnRuleChange: boolean;
1234
- readonly scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1235
- readonly size?: ComponentSize | undefined;
1236
- readonly disabled?: boolean | undefined;
1237
- readonly inline?: boolean | undefined;
1211
+ $props: {
1238
1212
  readonly model?: Record<string, any> | undefined;
1239
1213
  readonly rules?: FormRules | undefined;
1214
+ readonly labelPosition?: "left" | "right" | "top" | undefined;
1215
+ readonly requireAsteriskPosition?: "left" | "right" | undefined;
1216
+ readonly labelWidth?: string | number | undefined;
1217
+ readonly labelSuffix?: string | undefined;
1218
+ readonly inline?: boolean | undefined;
1240
1219
  readonly inlineMessage?: boolean | undefined;
1241
1220
  readonly statusIcon?: boolean | undefined;
1221
+ readonly showMessage?: boolean | undefined;
1222
+ readonly validateOnRuleChange?: boolean | undefined;
1242
1223
  readonly hideRequiredAsterisk?: boolean | undefined;
1243
1224
  readonly scrollToError?: boolean | undefined;
1244
- onValidate
1245
- /** @type { [typeof BaseInfo, typeof BaseInfo, ] } */ ?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
1246
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions">;
1247
- $attrs: {
1248
- [x: string]: unknown;
1249
- };
1225
+ readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
1226
+ readonly size?: ComponentSize | undefined;
1227
+ readonly disabled?: boolean | undefined;
1228
+ readonly onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
1229
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1230
+ $attrs: Attrs;
1250
1231
  $refs: {
1251
1232
  [x: string]: unknown;
1252
1233
  };
@@ -1258,65 +1239,9 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1258
1239
  $host: Element | null;
1259
1240
  $emit: (event: "validate", prop: FormItemProp, isValid: boolean, message: string) => void;
1260
1241
  $el: any;
1261
- $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
1262
- size: {
1263
- type: PropType<"" | "default" | "large" | "small">;
1264
- };
1265
- disabled: {
1266
- type: PropType<boolean>;
1267
- };
1268
- inline: {
1269
- type: PropType<boolean>;
1270
- };
1271
- model: {
1272
- type: PropType<Record<string, any>>;
1273
- };
1274
- labelWidth: {
1275
- type: PropType<string | number>;
1276
- default: string;
1277
- };
1278
- labelPosition: {
1279
- type: PropType<"left" | "right" | "top">;
1280
- default: string;
1281
- };
1282
- rules: {
1283
- type: PropType<Partial<Record<string, Arrayable<FormItemRule>>>>;
1284
- };
1285
- inlineMessage: {
1286
- type: PropType<boolean>;
1287
- };
1288
- showMessage: {
1289
- type: PropType<boolean>;
1290
- default: boolean;
1291
- };
1292
- requireAsteriskPosition: {
1293
- type: PropType<"left" | "right">;
1294
- default: string;
1295
- };
1296
- labelSuffix: {
1297
- type: PropType<string>;
1298
- default: string;
1299
- };
1300
- statusIcon: {
1301
- type: PropType<boolean>;
1302
- };
1303
- validateOnRuleChange: {
1304
- type: PropType<boolean>;
1305
- default: boolean;
1306
- };
1307
- hideRequiredAsterisk: {
1308
- type: PropType<boolean>;
1309
- };
1310
- scrollToError: {
1311
- type: PropType<boolean>;
1312
- };
1313
- scrollIntoViewOptions: {
1314
- type: PropType<boolean | ScrollIntoViewOptions>;
1315
- default: boolean;
1316
- };
1317
- }>> & {
1242
+ $options: ComponentOptionsBase<Readonly< FormProps> & Readonly<{
1318
1243
  onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
1319
- }, {
1244
+ }>, {
1320
1245
  validate: (callback?: FormValidateCallback) => FormValidationResult;
1321
1246
  validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
1322
1247
  resetFields: (props?: Arrayable<FormItemProp>) => void;
@@ -1325,16 +1250,16 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1325
1250
  getField: (prop: FormItemProp) => FormItemContext | undefined;
1326
1251
  fields: Reactive< FormItemContext[]>;
1327
1252
  setInitialValues: (initModel: Record<string, any>) => void;
1328
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1253
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1329
1254
  validate: (prop: FormItemProp, isValid: boolean, message: string) => void;
1330
1255
  }, string, {
1256
+ scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1331
1257
  labelWidth: string | number;
1332
1258
  labelPosition: "left" | "right" | "top";
1333
- showMessage: boolean;
1334
1259
  requireAsteriskPosition: "left" | "right";
1335
1260
  labelSuffix: string;
1261
+ showMessage: boolean;
1336
1262
  validateOnRuleChange: boolean;
1337
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1338
1263
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1339
1264
  beforeCreate?: (() => void) | (() => void)[];
1340
1265
  created?: (() => void) | (() => void)[];
@@ -1356,72 +1281,16 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1356
1281
  $nextTick: nextTick;
1357
1282
  $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;
1358
1283
  } & Readonly<{
1284
+ scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1359
1285
  labelWidth: string | number;
1360
1286
  labelPosition: "left" | "right" | "top";
1361
- showMessage: boolean;
1362
1287
  requireAsteriskPosition: "left" | "right";
1363
1288
  labelSuffix: string;
1289
+ showMessage: boolean;
1364
1290
  validateOnRuleChange: boolean;
1365
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
1366
- }> & Omit<Readonly< ExtractPropTypes<{
1367
- size: {
1368
- type: PropType<"" | "default" | "large" | "small">;
1369
- };
1370
- disabled: {
1371
- type: PropType<boolean>;
1372
- };
1373
- inline: {
1374
- type: PropType<boolean>;
1375
- };
1376
- model: {
1377
- type: PropType<Record<string, any>>;
1378
- };
1379
- labelWidth: {
1380
- type: PropType<string | number>;
1381
- default: string;
1382
- };
1383
- labelPosition: {
1384
- type: PropType<"left" | "right" | "top">;
1385
- default: string;
1386
- };
1387
- rules: {
1388
- type: PropType<Partial<Record<string, Arrayable<FormItemRule>>>>;
1389
- };
1390
- inlineMessage: {
1391
- type: PropType<boolean>;
1392
- };
1393
- showMessage: {
1394
- type: PropType<boolean>;
1395
- default: boolean;
1396
- };
1397
- requireAsteriskPosition: {
1398
- type: PropType<"left" | "right">;
1399
- default: string;
1400
- };
1401
- labelSuffix: {
1402
- type: PropType<string>;
1403
- default: string;
1404
- };
1405
- statusIcon: {
1406
- type: PropType<boolean>;
1407
- };
1408
- validateOnRuleChange: {
1409
- type: PropType<boolean>;
1410
- default: boolean;
1411
- };
1412
- hideRequiredAsterisk: {
1413
- type: PropType<boolean>;
1414
- };
1415
- scrollToError: {
1416
- type: PropType<boolean>;
1417
- };
1418
- scrollIntoViewOptions: {
1419
- type: PropType<boolean | ScrollIntoViewOptions>;
1420
- default: boolean;
1421
- };
1422
- }>> & {
1291
+ }> & Omit<Readonly< FormProps> & Readonly<{
1423
1292
  onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
1424
- }, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & ShallowUnwrapRef<{
1293
+ }>, "clearValidate" | "validate" | "fields" | "labelWidth" | "labelPosition" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validateField" | "resetFields" | "scrollToField" | "getField" | "setInitialValues"> & ShallowUnwrapRef<{
1425
1294
  validate: (callback?: FormValidateCallback) => FormValidationResult;
1426
1295
  validateField: (props?: Arrayable<FormItemProp>, callback?: FormValidateCallback) => FormValidationResult;
1427
1296
  resetFields: (props?: Arrayable<FormItemProp>) => void;
@@ -1504,7 +1373,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1504
1373
  }, string, {
1505
1374
  footer: boolean;
1506
1375
  inline: boolean;
1507
- footerAlign: "left" | "right" | "center";
1376
+ footerAlign: "right" | "left" | "center";
1508
1377
  tooltipMessage: boolean | Partial< UseTooltipProps>;
1509
1378
  model: Record<string, any>;
1510
1379
  submitText: string | null;
@@ -1534,7 +1403,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
1534
1403
  } & Readonly<{
1535
1404
  footer: boolean;
1536
1405
  inline: boolean;
1537
- footerAlign: "left" | "right" | "center";
1406
+ footerAlign: "right" | "left" | "center";
1538
1407
  tooltipMessage: boolean | Partial< UseTooltipProps>;
1539
1408
  model: Record<string, any>;
1540
1409
  submitText: string | null;
@@ -1,5 +1,5 @@
1
1
  import { GridColumns, GridLoader, GridCustomInfo, GridCellRenders, GridEditRenders, GridFilterRenders, GridSortableEvent, GridSortableOptions } from '@vtj/ui';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
3
  import { Options } from 'sortablejs';
4
4
  import { VxeTableProps, VxeGridEventProps, VxeGridSlots, VxeTableDataRow, SlotVNodeType, VxeGridInstance, VxeTableConstructor, VxeGridConstructor } from 'vxe-table';
5
5
  import { MessageBoxData } from 'element-plus';
@@ -56,9 +56,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
56
56
  readonly onEditChange?: ((data: any[]) => any) | undefined | undefined;
57
57
  readonly onLoaded?: ((rows: any[]) => any) | undefined | undefined;
58
58
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "auto" | "resizable" | "page" | "editable" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSize" | "pageSizes" | "virtual">;
59
- $attrs: {
60
- [x: string]: unknown;
61
- };
59
+ $attrs: Attrs;
62
60
  $refs: {
63
61
  [x: string]: unknown;
64
62
  } & {
@@ -1,4 +1,4 @@
1
- import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
2
  import { Designer } from '../../..';
3
3
  import { Props } from '../../shared/viewport';
4
4
  import { OnCleanup } from '@vue/reactivity';
@@ -19,9 +19,7 @@ declare const _default: DefineComponent<{}, {
19
19
  height: number;
20
20
  } | undefined;
21
21
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
22
- $attrs: {
23
- [x: string]: unknown;
24
- };
22
+ $attrs: Attrs;
25
23
  $refs: {
26
24
  [x: string]: unknown;
27
25
  };
@@ -1,4 +1,4 @@
1
- import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNode, RendererNode, RendererElement, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNode, RendererNode, RendererElement, ShallowRef, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
2
  import { BaseSize, DialogMode, DraggableOptions, IconParam, ResizableOptions, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, PanelBadge, HeaderProps, ContainerProps } from '@vtj/ui';
3
3
  import { UseMouseSourceType, Position } from '@vueuse/core';
4
4
  import { OnCleanup } from '@vue/reactivity';
@@ -104,9 +104,7 @@ declare const _default: DefineComponent<{}, {
104
104
  stop: () => void;
105
105
  }) => any) | undefined | undefined;
106
106
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "size" | "height" | "width" | "primary" | "modelValue" | "mode" | "draggable" | "pure" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding">;
107
- $attrs: {
108
- [x: string]: unknown;
109
- };
107
+ $attrs: Attrs;
110
108
  $refs: {
111
109
  [x: string]: unknown;
112
110
  } & {
@@ -288,9 +286,7 @@ declare const _default: DefineComponent<{}, {
288
286
  readonly height?: string | number | undefined;
289
287
  readonly shadow?: "hover" | "always" | "none" | undefined;
290
288
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
291
- $attrs: {
292
- [x: string]: unknown;
293
- };
289
+ $attrs: Attrs;
294
290
  $refs: {
295
291
  [x: string]: unknown;
296
292
  } & {
@@ -333,9 +329,7 @@ declare const _default: DefineComponent<{}, {
333
329
  readonly height?: string | number | undefined;
334
330
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
335
331
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
336
- $attrs: {
337
- [x: string]: unknown;
338
- };
332
+ $attrs: Attrs;
339
333
  $refs: {
340
334
  [x: string]: unknown;
341
335
  } & {
@@ -1,4 +1,4 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, nextTick } from 'vue';
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, nextTick } from 'vue';
2
2
  import { ActionMenuItem, BaseSize, ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, PanelBadge, IconParam, HeaderProps, ContainerProps } from '@vtj/ui';
3
3
  import { OnCleanup } from '@vue/reactivity';
4
4
  import { Props } from '../../shared/panel';
@@ -34,9 +34,7 @@ declare const _default: DefineComponent<Props, {
34
34
  readonly onRemove?: ((...args: any[]) => any) | undefined;
35
35
  readonly onSave?: ((...args: any[]) => any) | undefined;
36
36
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
37
- $attrs: {
38
- [x: string]: unknown;
39
- };
37
+ $attrs: Attrs;
40
38
  $refs: {
41
39
  [x: string]: unknown;
42
40
  } & {
@@ -217,9 +215,7 @@ declare const _default: DefineComponent<Props, {
217
215
  }>>> | null | undefined;
218
216
  readonly shadow?: "hover" | "none" | "always" | undefined;
219
217
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
220
- $attrs: {
221
- [x: string]: unknown;
222
- };
218
+ $attrs: Attrs;
223
219
  $refs: {
224
220
  [x: string]: unknown;
225
221
  } & {
@@ -262,9 +258,7 @@ declare const _default: DefineComponent<Props, {
262
258
  readonly height?: string | number | undefined;
263
259
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
264
260
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
265
- $attrs: {
266
- [x: string]: unknown;
267
- };
261
+ $attrs: Attrs;
268
262
  $refs: {
269
263
  [x: string]: unknown;
270
264
  } & {
@@ -1,5 +1,5 @@
1
1
  import { GridColumns, GridLoader, GridCustomInfo, GridCellRenders, GridEditRenders, GridFilterRenders, GridSortableEvent, GridSortableOptions } from '@vtj/ui';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
3
  import { Options } from 'sortablejs';
4
4
  import { VxeTableProps, VxeGridEventProps, VxeGridSlots, VxeTableDataRow, SlotVNodeType, VxeGridInstance, VxeTableConstructor, VxeGridConstructor } from 'vxe-table';
5
5
  import { MessageBoxData } from 'element-plus';
@@ -50,9 +50,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
50
50
  readonly onEditChange?: ((data: any[]) => any) | undefined | undefined;
51
51
  readonly onLoaded?: ((rows: any[]) => any) | undefined | undefined;
52
52
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "auto" | "resizable" | "page" | "editable" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSize" | "pageSizes" | "virtual">;
53
- $attrs: {
54
- [x: string]: unknown;
55
- };
53
+ $attrs: Attrs;
56
54
  $refs: {
57
55
  [x: string]: unknown;
58
56
  } & {
@@ -1,5 +1,5 @@
1
1
  import { GridColumns, GridLoader, GridCustomInfo, GridCellRenders, GridEditRenders, GridFilterRenders, GridSortableEvent, GridSortableOptions } from '@vtj/ui';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, VNode, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
3
  import { Options } from 'sortablejs';
4
4
  import { VxeTableProps, VxeGridEventProps, VxeGridSlots, VxeTableDataRow, SlotVNodeType, VxeGridInstance, VxeTableConstructor, VxeGridConstructor } from 'vxe-table';
5
5
  import { MessageBoxData } from 'element-plus';
@@ -50,9 +50,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
50
50
  readonly onEditChange?: ((data: any[]) => any) | undefined | undefined;
51
51
  readonly onLoaded?: ((rows: any[]) => any) | undefined | undefined;
52
52
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "auto" | "resizable" | "page" | "editable" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSize" | "pageSizes" | "virtual">;
53
- $attrs: {
54
- [x: string]: unknown;
55
- };
53
+ $attrs: Attrs;
56
54
  $refs: {
57
55
  [x: string]: unknown;
58
56
  } & {
@@ -1,4 +1,4 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, Ref, ComputedRef, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, ShallowRef } from 'vue';
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, Ref, ComputedRef, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, ShallowRef } from 'vue';
2
2
  import { Props } from './logo/index';
3
3
  import { Props } from './toolbar/index';
4
4
  import { Props } from './actions/index';
@@ -74,9 +74,7 @@ export declare const widgets: {
74
74
  height: number;
75
75
  } | undefined;
76
76
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
77
- $attrs: {
78
- [x: string]: unknown;
79
- };
77
+ $attrs: Attrs;
80
78
  $refs: {
81
79
  [x: string]: unknown;
82
80
  };
@@ -306,9 +304,7 @@ export declare const widgets: {
306
304
  readonly onRemove?: ((...args: any[]) => any) | undefined;
307
305
  readonly onSave?: ((...args: any[]) => any) | undefined;
308
306
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
309
- $attrs: {
310
- [x: string]: unknown;
311
- };
307
+ $attrs: Attrs;
312
308
  $refs: {
313
309
  [x: string]: unknown;
314
310
  } & {
@@ -489,9 +485,7 @@ export declare const widgets: {
489
485
  }>>> | null | undefined;
490
486
  readonly shadow?: "hover" | "none" | "always" | undefined;
491
487
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
492
- $attrs: {
493
- [x: string]: unknown;
494
- };
488
+ $attrs: Attrs;
495
489
  $refs: {
496
490
  [x: string]: unknown;
497
491
  } & {
@@ -534,9 +528,7 @@ export declare const widgets: {
534
528
  readonly height?: string | number | undefined;
535
529
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
536
530
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
537
- $attrs: {
538
- [x: string]: unknown;
539
- };
531
+ $attrs: Attrs;
540
532
  $refs: {
541
533
  [x: string]: unknown;
542
534
  } & {
@@ -985,9 +977,7 @@ export declare const widgets: {
985
977
  readonly onRemove?: ((...args: any[]) => any) | undefined;
986
978
  readonly onSave?: ((...args: any[]) => any) | undefined;
987
979
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
988
- $attrs: {
989
- [x: string]: unknown;
990
- };
980
+ $attrs: Attrs;
991
981
  $refs: {
992
982
  [x: string]: unknown;
993
983
  } & {
@@ -1168,9 +1158,7 @@ export declare const widgets: {
1168
1158
  }>>> | null | undefined;
1169
1159
  readonly shadow?: "hover" | "none" | "always" | undefined;
1170
1160
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
1171
- $attrs: {
1172
- [x: string]: unknown;
1173
- };
1161
+ $attrs: Attrs;
1174
1162
  $refs: {
1175
1163
  [x: string]: unknown;
1176
1164
  } & {
@@ -1213,9 +1201,7 @@ export declare const widgets: {
1213
1201
  readonly height?: string | number | undefined;
1214
1202
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
1215
1203
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
1216
- $attrs: {
1217
- [x: string]: unknown;
1218
- };
1204
+ $attrs: Attrs;
1219
1205
  $refs: {
1220
1206
  [x: string]: unknown;
1221
1207
  } & {
@@ -1666,9 +1652,7 @@ export declare const widgets: {
1666
1652
  readonly onRemove?: ((...args: any[]) => any) | undefined;
1667
1653
  readonly onSave?: ((...args: any[]) => any) | undefined;
1668
1654
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1669
- $attrs: {
1670
- [x: string]: unknown;
1671
- };
1655
+ $attrs: Attrs;
1672
1656
  $refs: {
1673
1657
  [x: string]: unknown;
1674
1658
  } & {
@@ -1849,9 +1833,7 @@ export declare const widgets: {
1849
1833
  }>>> | null | undefined;
1850
1834
  readonly shadow?: "hover" | "none" | "always" | undefined;
1851
1835
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
1852
- $attrs: {
1853
- [x: string]: unknown;
1854
- };
1836
+ $attrs: Attrs;
1855
1837
  $refs: {
1856
1838
  [x: string]: unknown;
1857
1839
  } & {
@@ -1894,9 +1876,7 @@ export declare const widgets: {
1894
1876
  readonly height?: string | number | undefined;
1895
1877
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
1896
1878
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
1897
- $attrs: {
1898
- [x: string]: unknown;
1899
- };
1879
+ $attrs: Attrs;
1900
1880
  $refs: {
1901
1881
  [x: string]: unknown;
1902
1882
  } & {
@@ -2363,9 +2343,7 @@ export declare const widgets: {
2363
2343
  readonly onEditChange?: ((data: any[]) => any) | undefined | undefined;
2364
2344
  readonly onLoaded?: ((rows: any[]) => any) | undefined | undefined;
2365
2345
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "auto" | "resizable" | "page" | "editable" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSize" | "pageSizes" | "virtual">;
2366
- $attrs: {
2367
- [x: string]: unknown;
2368
- };
2346
+ $attrs: Attrs;
2369
2347
  $refs: {
2370
2348
  [x: string]: unknown;
2371
2349
  } & {
@@ -3705,9 +3683,7 @@ export declare const widgets: {
3705
3683
  stop: () => void;
3706
3684
  }) => any) | undefined | undefined;
3707
3685
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "size" | "height" | "width" | "primary" | "modelValue" | "mode" | "draggable" | "pure" | "modal" | "closable" | "maximizable" | "minimizable" | "bodyPadding">;
3708
- $attrs: {
3709
- [x: string]: unknown;
3710
- };
3686
+ $attrs: Attrs;
3711
3687
  $refs: {
3712
3688
  [x: string]: unknown;
3713
3689
  } & {
@@ -3889,9 +3865,7 @@ export declare const widgets: {
3889
3865
  readonly height?: string | number | undefined;
3890
3866
  readonly shadow?: "hover" | "always" | "none" | undefined;
3891
3867
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
3892
- $attrs: {
3893
- [x: string]: unknown;
3894
- };
3868
+ $attrs: Attrs;
3895
3869
  $refs: {
3896
3870
  [x: string]: unknown;
3897
3871
  } & {
@@ -3934,9 +3908,7 @@ export declare const widgets: {
3934
3908
  readonly height?: string | number | undefined;
3935
3909
  readonly overflow?: "hidden" | "auto" | "visible" | undefined;
3936
3910
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
3937
- $attrs: {
3938
- [x: string]: unknown;
3939
- };
3911
+ $attrs: Attrs;
3940
3912
  $refs: {
3941
3913
  [x: string]: unknown;
3942
3914
  } & {
@@ -4821,9 +4793,7 @@ export declare const widgets: {
4821
4793
  readonly onEditChange?: ((data: any[]) => any) | undefined | undefined;
4822
4794
  readonly onLoaded?: ((rows: any[]) => any) | undefined | undefined;
4823
4795
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "auto" | "resizable" | "page" | "editable" | "columns" | "rowSortable" | "columnSortable" | "customable" | "pager" | "pageSize" | "pageSizes" | "virtual">;
4824
- $attrs: {
4825
- [x: string]: unknown;
4826
- };
4796
+ $attrs: Attrs;
4827
4797
  $refs: {
4828
4798
  [x: string]: unknown;
4829
4799
  } & {