@vunk/form 2.14.13 → 2.14.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.
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { NormalObject } from '@vunk/shared';
2
+ import { AnyFunc, NormalObject } from '@vunk/shared';
3
3
  export declare const props: {
4
4
  columns: {
5
5
  type: PropType<any[]>;
@@ -41,6 +41,27 @@ export declare const props: {
41
41
  type: PropType<NormalObject>;
42
42
  default: () => {};
43
43
  };
44
+ /**
45
+ * @description 保留最后一个不被删除
46
+ */
47
+ keepLast: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ /**
52
+ * @description 是否开启顶部的添加按钮
53
+ */
54
+ topSplicable: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ slots: {
59
+ type: PropType<{
60
+ labelActions?: AnyFunc;
61
+ default?: AnyFunc;
62
+ }>;
63
+ default: () => {};
64
+ };
44
65
  required: {
45
66
  readonly type: PropType<boolean>;
46
67
  readonly required: false;