@antdv-next1/pro-card 2.0.16 → 2.0.17

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.
@@ -27,7 +27,7 @@ declare const _ProCheckCard: _$vue.DefineSetupFnComponent<ProCheckCardProps, {},
27
27
  extra?: () => VueNode[];
28
28
  cover?: () => VueNode[];
29
29
  description?: () => VNode[];
30
- }>, CardMetaProps & Omit<CardProps, "title" | "onTabChange" | "activeTabKey" | "defaultActiveTabKey" | "headStyle" | "bodyStyle" | "tabBarExtraContent" | "tabList" | "type" | "size"> & {
30
+ }>, CardMetaProps & Omit<CardProps, "size" | "title" | "type" | "headStyle" | "bodyStyle" | "tabList" | "tabBarExtraContent" | "activeTabKey" | "defaultActiveTabKey" | "onTabChange"> & {
31
31
  /** 边框流光 */borderBeam?: BorderBeamProps | boolean;
32
32
  size?: CardProps["size"] | "large";
33
33
  checked?: boolean;
@@ -218,7 +218,10 @@ const ProCheckCard = /* @__PURE__ */ defineComponent((props, { slots, attrs }) =
218
218
  required: false,
219
219
  default: void 0
220
220
  },
221
- size: { required: false },
221
+ size: {
222
+ type: String,
223
+ required: false
224
+ },
222
225
  checked: {
223
226
  type: Boolean,
224
227
  required: false,
@@ -259,7 +262,11 @@ const ProCheckCard = /* @__PURE__ */ defineComponent((props, { slots, attrs }) =
259
262
  type: Function,
260
263
  required: false
261
264
  },
262
- collapsible: { required: false }
265
+ collapsible: {
266
+ type: [String, Boolean],
267
+ required: false,
268
+ default: void 0
269
+ }
263
270
  },
264
271
  name: "ProCheckCard",
265
272
  inheritAttrs: false