@vunk/form 2.14.12 → 2.14.14

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,6 +1,7 @@
1
1
  import { PropType } from 'vue';
2
2
  import { NormalObject } from '@vunk/shared';
3
3
  import { Slots } from './types';
4
+ import { CardProps } from 'element-plus';
4
5
  export declare const props: {
5
6
  columns: {
6
7
  type: PropType<any[]>;
@@ -53,6 +54,14 @@ export declare const props: {
53
54
  type: BooleanConstructor;
54
55
  default: boolean;
55
56
  };
57
+ /**
58
+ * @description 卡片的属性
59
+ * @link https://element-plus.org/en-US/component/card.html#card-attributes
60
+ */
61
+ cardProps: {
62
+ type: PropType<Partial<CardProps>>;
63
+ default: () => {};
64
+ };
56
65
  required: {
57
66
  readonly type: PropType<boolean>;
58
67
  readonly required: false;