@vtj/ui 0.11.13 → 0.11.15

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.
@@ -17,17 +17,21 @@ declare function __VLS_template(): {
17
17
  $props: Partial<{
18
18
  footer: boolean;
19
19
  inline: boolean;
20
+ footerAlign: "center" | "left" | "right";
20
21
  tooltipMessage: boolean | Partial< ElTooltipProps>;
21
22
  model: Record<string, any>;
22
23
  submitText: string | null;
23
24
  resetText: string | null;
24
25
  enterSubmit: boolean;
26
+ sticky: boolean;
25
27
  }> & Omit<{
26
28
  readonly footer: boolean;
27
29
  readonly inline: boolean;
30
+ readonly footerAlign: "center" | "left" | "right";
28
31
  readonly submitText: string | null;
29
32
  readonly resetText: string | null;
30
33
  readonly enterSubmit: boolean;
34
+ readonly sticky: boolean;
31
35
  readonly tooltipMessage?: boolean | Partial< ElTooltipProps> | undefined;
32
36
  readonly model?: Record<string, any> | undefined;
33
37
  readonly inlineColumns?: number | undefined;
@@ -35,7 +39,7 @@ declare function __VLS_template(): {
35
39
  readonly onReset?: (() => any) | undefined;
36
40
  readonly onSubmit?: ((model: Record<string, any>) => any) | undefined;
37
41
  readonly onChange?: ((model: Record<string, any>) => any) | undefined;
38
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit">;
42
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky">;
39
43
  $attrs: {
40
44
  [x: string]: unknown;
41
45
  };
@@ -269,6 +273,14 @@ declare function __VLS_template(): {
269
273
  type: BooleanConstructor;
270
274
  default: boolean;
271
275
  };
276
+ sticky: {
277
+ type: BooleanConstructor;
278
+ default: boolean;
279
+ };
280
+ footerAlign: {
281
+ type: PropType<"left" | "center" | "right">;
282
+ default: string;
283
+ };
272
284
  }>> & Readonly<{
273
285
  onReset?: (() => any) | undefined;
274
286
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
@@ -287,11 +299,13 @@ declare function __VLS_template(): {
287
299
  }, string, {
288
300
  footer: boolean;
289
301
  inline: boolean;
302
+ footerAlign: "center" | "left" | "right";
290
303
  tooltipMessage: boolean | Partial< ElTooltipProps>;
291
304
  model: Record<string, any>;
292
305
  submitText: string | null;
293
306
  resetText: string | null;
294
307
  enterSubmit: boolean;
308
+ sticky: boolean;
295
309
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
296
310
  beforeCreate?: (() => void) | (() => void)[];
297
311
  created?: (() => void) | (() => void)[];
@@ -315,11 +329,13 @@ declare function __VLS_template(): {
315
329
  } & Readonly<{
316
330
  footer: boolean;
317
331
  inline: boolean;
332
+ footerAlign: "center" | "left" | "right";
318
333
  tooltipMessage: boolean | Partial< ElTooltipProps>;
319
334
  model: Record<string, any>;
320
335
  submitText: string | null;
321
336
  resetText: string | null;
322
337
  enterSubmit: boolean;
338
+ sticky: boolean;
323
339
  }> & Omit<Readonly< ExtractPropTypes<{
324
340
  model: {
325
341
  type: PropType<Record<string, any>>;
@@ -354,11 +370,19 @@ declare function __VLS_template(): {
354
370
  type: BooleanConstructor;
355
371
  default: boolean;
356
372
  };
373
+ sticky: {
374
+ type: BooleanConstructor;
375
+ default: boolean;
376
+ };
377
+ footerAlign: {
378
+ type: PropType<"left" | "center" | "right">;
379
+ default: string;
380
+ };
357
381
  }>> & Readonly<{
358
382
  onReset?: (() => any) | undefined;
359
383
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
360
384
  onChange?: ((model: Record<string, any>) => any) | undefined;
361
- }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit")> & ShallowUnwrapRef<{
385
+ }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & ShallowUnwrapRef<{
362
386
  formRef: Ref<any, any>;
363
387
  model: FormModel;
364
388
  submit: () => Promise<void>;
@@ -402,17 +426,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
402
426
  $props: Partial<{
403
427
  footer: boolean;
404
428
  inline: boolean;
429
+ footerAlign: "center" | "left" | "right";
405
430
  tooltipMessage: boolean | Partial< ElTooltipProps>;
406
431
  model: Record<string, any>;
407
432
  submitText: string | null;
408
433
  resetText: string | null;
409
434
  enterSubmit: boolean;
435
+ sticky: boolean;
410
436
  }> & Omit<{
411
437
  readonly footer: boolean;
412
438
  readonly inline: boolean;
439
+ readonly footerAlign: "center" | "left" | "right";
413
440
  readonly submitText: string | null;
414
441
  readonly resetText: string | null;
415
442
  readonly enterSubmit: boolean;
443
+ readonly sticky: boolean;
416
444
  readonly tooltipMessage?: boolean | Partial< ElTooltipProps> | undefined;
417
445
  readonly model?: Record<string, any> | undefined;
418
446
  readonly inlineColumns?: number | undefined;
@@ -420,7 +448,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
420
448
  readonly onReset?: (() => any) | undefined;
421
449
  readonly onSubmit?: ((model: Record<string, any>) => any) | undefined;
422
450
  readonly onChange?: ((model: Record<string, any>) => any) | undefined;
423
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit">;
451
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky">;
424
452
  $attrs: {
425
453
  [x: string]: unknown;
426
454
  };
@@ -654,6 +682,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
654
682
  type: BooleanConstructor;
655
683
  default: boolean;
656
684
  };
685
+ sticky: {
686
+ type: BooleanConstructor;
687
+ default: boolean;
688
+ };
689
+ footerAlign: {
690
+ type: PropType<"left" | "center" | "right">;
691
+ default: string;
692
+ };
657
693
  }>> & Readonly<{
658
694
  onReset?: (() => any) | undefined;
659
695
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
@@ -672,11 +708,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
672
708
  }, string, {
673
709
  footer: boolean;
674
710
  inline: boolean;
711
+ footerAlign: "center" | "left" | "right";
675
712
  tooltipMessage: boolean | Partial< ElTooltipProps>;
676
713
  model: Record<string, any>;
677
714
  submitText: string | null;
678
715
  resetText: string | null;
679
716
  enterSubmit: boolean;
717
+ sticky: boolean;
680
718
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
681
719
  beforeCreate?: (() => void) | (() => void)[];
682
720
  created?: (() => void) | (() => void)[];
@@ -700,11 +738,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
700
738
  } & Readonly<{
701
739
  footer: boolean;
702
740
  inline: boolean;
741
+ footerAlign: "center" | "left" | "right";
703
742
  tooltipMessage: boolean | Partial< ElTooltipProps>;
704
743
  model: Record<string, any>;
705
744
  submitText: string | null;
706
745
  resetText: string | null;
707
746
  enterSubmit: boolean;
747
+ sticky: boolean;
708
748
  }> & Omit<Readonly< ExtractPropTypes<{
709
749
  model: {
710
750
  type: PropType<Record<string, any>>;
@@ -739,11 +779,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
739
779
  type: BooleanConstructor;
740
780
  default: boolean;
741
781
  };
782
+ sticky: {
783
+ type: BooleanConstructor;
784
+ default: boolean;
785
+ };
786
+ footerAlign: {
787
+ type: PropType<"left" | "center" | "right">;
788
+ default: string;
789
+ };
742
790
  }>> & Readonly<{
743
791
  onReset?: (() => any) | undefined;
744
792
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
745
793
  onChange?: ((model: Record<string, any>) => any) | undefined;
746
- }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit")> & ShallowUnwrapRef<{
794
+ }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & ShallowUnwrapRef<{
747
795
  formRef: Ref<any, any>;
748
796
  model: FormModel;
749
797
  submit: () => Promise<void>;
@@ -762,17 +810,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
762
810
  $props: Partial<{
763
811
  footer: boolean;
764
812
  inline: boolean;
813
+ footerAlign: "center" | "left" | "right";
765
814
  tooltipMessage: boolean | Partial< ElTooltipProps>;
766
815
  model: Record<string, any>;
767
816
  submitText: string | null;
768
817
  resetText: string | null;
769
818
  enterSubmit: boolean;
819
+ sticky: boolean;
770
820
  }> & Omit<{
771
821
  readonly footer: boolean;
772
822
  readonly inline: boolean;
823
+ readonly footerAlign: "center" | "left" | "right";
773
824
  readonly submitText: string | null;
774
825
  readonly resetText: string | null;
775
826
  readonly enterSubmit: boolean;
827
+ readonly sticky: boolean;
776
828
  readonly tooltipMessage?: boolean | Partial< ElTooltipProps> | undefined;
777
829
  readonly model?: Record<string, any> | undefined;
778
830
  readonly inlineColumns?: number | undefined;
@@ -780,7 +832,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
780
832
  readonly onReset?: (() => any) | undefined;
781
833
  readonly onSubmit?: ((model: Record<string, any>) => any) | undefined;
782
834
  readonly onChange?: ((model: Record<string, any>) => any) | undefined;
783
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit">;
835
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky">;
784
836
  $attrs: {
785
837
  [x: string]: unknown;
786
838
  };
@@ -1014,6 +1066,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1014
1066
  type: BooleanConstructor;
1015
1067
  default: boolean;
1016
1068
  };
1069
+ sticky: {
1070
+ type: BooleanConstructor;
1071
+ default: boolean;
1072
+ };
1073
+ footerAlign: {
1074
+ type: PropType<"left" | "center" | "right">;
1075
+ default: string;
1076
+ };
1017
1077
  }>> & Readonly<{
1018
1078
  onReset?: (() => any) | undefined;
1019
1079
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
@@ -1032,11 +1092,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1032
1092
  }, string, {
1033
1093
  footer: boolean;
1034
1094
  inline: boolean;
1095
+ footerAlign: "center" | "left" | "right";
1035
1096
  tooltipMessage: boolean | Partial< ElTooltipProps>;
1036
1097
  model: Record<string, any>;
1037
1098
  submitText: string | null;
1038
1099
  resetText: string | null;
1039
1100
  enterSubmit: boolean;
1101
+ sticky: boolean;
1040
1102
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1041
1103
  beforeCreate?: (() => void) | (() => void)[];
1042
1104
  created?: (() => void) | (() => void)[];
@@ -1060,11 +1122,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1060
1122
  } & Readonly<{
1061
1123
  footer: boolean;
1062
1124
  inline: boolean;
1125
+ footerAlign: "center" | "left" | "right";
1063
1126
  tooltipMessage: boolean | Partial< ElTooltipProps>;
1064
1127
  model: Record<string, any>;
1065
1128
  submitText: string | null;
1066
1129
  resetText: string | null;
1067
1130
  enterSubmit: boolean;
1131
+ sticky: boolean;
1068
1132
  }> & Omit<Readonly< ExtractPropTypes<{
1069
1133
  model: {
1070
1134
  type: PropType<Record<string, any>>;
@@ -1099,11 +1163,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1099
1163
  type: BooleanConstructor;
1100
1164
  default: boolean;
1101
1165
  };
1166
+ sticky: {
1167
+ type: BooleanConstructor;
1168
+ default: boolean;
1169
+ };
1170
+ footerAlign: {
1171
+ type: PropType<"left" | "center" | "right">;
1172
+ default: string;
1173
+ };
1102
1174
  }>> & Readonly<{
1103
1175
  onReset?: (() => any) | undefined;
1104
1176
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
1105
1177
  onChange?: ((model: Record<string, any>) => any) | undefined;
1106
- }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit")> & ShallowUnwrapRef<{
1178
+ }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & ShallowUnwrapRef<{
1107
1179
  formRef: Ref<any, any>;
1108
1180
  model: FormModel;
1109
1181
  submit: () => Promise<void>;
@@ -1148,17 +1220,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1148
1220
  $props: Partial<{
1149
1221
  footer: boolean;
1150
1222
  inline: boolean;
1223
+ footerAlign: "center" | "left" | "right";
1151
1224
  tooltipMessage: boolean | Partial< ElTooltipProps>;
1152
1225
  model: Record<string, any>;
1153
1226
  submitText: string | null;
1154
1227
  resetText: string | null;
1155
1228
  enterSubmit: boolean;
1229
+ sticky: boolean;
1156
1230
  }> & Omit<{
1157
1231
  readonly footer: boolean;
1158
1232
  readonly inline: boolean;
1233
+ readonly footerAlign: "center" | "left" | "right";
1159
1234
  readonly submitText: string | null;
1160
1235
  readonly resetText: string | null;
1161
1236
  readonly enterSubmit: boolean;
1237
+ readonly sticky: boolean;
1162
1238
  readonly tooltipMessage?: boolean | Partial< ElTooltipProps> | undefined;
1163
1239
  readonly model?: Record<string, any> | undefined;
1164
1240
  readonly inlineColumns?: number | undefined;
@@ -1166,7 +1242,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1166
1242
  readonly onReset?: (() => any) | undefined;
1167
1243
  readonly onSubmit?: ((model: Record<string, any>) => any) | undefined;
1168
1244
  readonly onChange?: ((model: Record<string, any>) => any) | undefined;
1169
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit">;
1245
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky">;
1170
1246
  $attrs: {
1171
1247
  [x: string]: unknown;
1172
1248
  };
@@ -1400,6 +1476,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1400
1476
  type: BooleanConstructor;
1401
1477
  default: boolean;
1402
1478
  };
1479
+ sticky: {
1480
+ type: BooleanConstructor;
1481
+ default: boolean;
1482
+ };
1483
+ footerAlign: {
1484
+ type: PropType<"left" | "center" | "right">;
1485
+ default: string;
1486
+ };
1403
1487
  }>> & Readonly<{
1404
1488
  onReset?: (() => any) | undefined;
1405
1489
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
@@ -1418,11 +1502,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1418
1502
  }, string, {
1419
1503
  footer: boolean;
1420
1504
  inline: boolean;
1505
+ footerAlign: "center" | "left" | "right";
1421
1506
  tooltipMessage: boolean | Partial< ElTooltipProps>;
1422
1507
  model: Record<string, any>;
1423
1508
  submitText: string | null;
1424
1509
  resetText: string | null;
1425
1510
  enterSubmit: boolean;
1511
+ sticky: boolean;
1426
1512
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1427
1513
  beforeCreate?: (() => void) | (() => void)[];
1428
1514
  created?: (() => void) | (() => void)[];
@@ -1446,11 +1532,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1446
1532
  } & Readonly<{
1447
1533
  footer: boolean;
1448
1534
  inline: boolean;
1535
+ footerAlign: "center" | "left" | "right";
1449
1536
  tooltipMessage: boolean | Partial< ElTooltipProps>;
1450
1537
  model: Record<string, any>;
1451
1538
  submitText: string | null;
1452
1539
  resetText: string | null;
1453
1540
  enterSubmit: boolean;
1541
+ sticky: boolean;
1454
1542
  }> & Omit<Readonly< ExtractPropTypes<{
1455
1543
  model: {
1456
1544
  type: PropType<Record<string, any>>;
@@ -1485,11 +1573,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
1485
1573
  type: BooleanConstructor;
1486
1574
  default: boolean;
1487
1575
  };
1576
+ sticky: {
1577
+ type: BooleanConstructor;
1578
+ default: boolean;
1579
+ };
1580
+ footerAlign: {
1581
+ type: PropType<"left" | "center" | "right">;
1582
+ default: string;
1583
+ };
1488
1584
  }>> & Readonly<{
1489
1585
  onReset?: (() => any) | undefined;
1490
1586
  onSubmit?: ((model: Record<string, any>) => any) | undefined;
1491
1587
  onChange?: ((model: Record<string, any>) => any) | undefined;
1492
- }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit")> & ShallowUnwrapRef<{
1588
+ }>, "reset" | "submit" | "clearValidate" | "validate" | "formRef" | ("footer" | "inline" | "footerAlign" | "tooltipMessage" | "model" | "submitText" | "resetText" | "enterSubmit" | "sticky")> & ShallowUnwrapRef<{
1493
1589
  formRef: Ref<any, any>;
1494
1590
  model: FormModel;
1495
1591
  submit: () => Promise<void>;
@@ -2,7 +2,7 @@
2
2
  * Copyright (c) 2025, VTJ.PRO All rights reserved.
3
3
  * @name @vtj/ui
4
4
  * @author CHC chenhuachun1549@dingtalk.com
5
- * @version 0.11.12
5
+ * @version 0.11.14
6
6
  * @license <a href="https://vtj.pro/license.html">MIT License</a>
7
7
  */
8
- export declare const version = "0.11.12";
8
+ export declare const version = "0.11.14";