@antdv-next1/pro-card 2.0.10 → 2.0.12
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.
- package/dist/Card.d.ts +2 -2
- package/dist/Card.js +160 -129
- package/dist/ProCard.d.ts +14 -9
- package/dist/ProCard.js +8 -8
- package/dist/components/CheckCard/CheckCard.d.ts +3 -3
- package/dist/components/CheckCard/CheckCard.js +22 -10
- package/dist/components/CheckCard/style/index.js +1 -0
- package/dist/components/Statistic/index.js +1 -1
- package/dist/components/StatisticCard/index.d.ts +2 -2
- package/dist/components/StatisticCard/index.js +1 -7
- package/dist/pro-card.esm.js +7308 -7273
- package/dist/pro-card.js +79 -79
- package/dist/style/index.js +88 -39
- package/package.json +3 -3
|
@@ -5,6 +5,7 @@ import * as _$vue from "vue";
|
|
|
5
5
|
import { VNode } from "vue";
|
|
6
6
|
import { VueNode } from "@v-c/util";
|
|
7
7
|
import * as _$antdv_next0 from "antdv-next";
|
|
8
|
+
import * as _$antdv_next_dist_form_FormItemLabel0 from "antdv-next/dist/form/FormItemLabel";
|
|
8
9
|
import { CustomSlotsType } from "@v-c/util/dist/type";
|
|
9
10
|
import * as _$antdv_next_dist_grid_row0 from "antdv-next/dist/grid/row";
|
|
10
11
|
|
|
@@ -18,7 +19,7 @@ type StatisticCardProps = ProCardProps & {
|
|
|
18
19
|
declare const _StatisticCard: _$vue.DefineSetupFnComponent<StatisticCardProps, {}, CustomSlotsType<{
|
|
19
20
|
default?: () => VNode[];
|
|
20
21
|
}>, _$antdv_next0.CardProps & _$antdv_next0.RowProps & {
|
|
21
|
-
tooltip?:
|
|
22
|
+
tooltip?: _$antdv_next_dist_form_FormItemLabel0.FormItemTooltipType;
|
|
22
23
|
split?: "vertical" | "horizontal";
|
|
23
24
|
direction?: "column" | "row";
|
|
24
25
|
gutter?: _$antdv_next_dist_grid_row0.Gutter | [_$antdv_next_dist_grid_row0.Gutter, _$antdv_next_dist_grid_row0.Gutter];
|
|
@@ -30,7 +31,6 @@ declare const _StatisticCard: _$vue.DefineSetupFnComponent<StatisticCardProps, {
|
|
|
30
31
|
headerBordered?: boolean;
|
|
31
32
|
ghost?: boolean;
|
|
32
33
|
collapsible?: CollapsibleType;
|
|
33
|
-
collapsed?: boolean;
|
|
34
34
|
collapsibleIconRender?: ({
|
|
35
35
|
collapsed
|
|
36
36
|
}: {
|
|
@@ -190,8 +190,7 @@ const StatisticCard = /* @__PURE__ */ defineComponent((props, { attrs, slots })
|
|
|
190
190
|
String,
|
|
191
191
|
Number,
|
|
192
192
|
null,
|
|
193
|
-
Boolean
|
|
194
|
-
Array
|
|
193
|
+
Boolean
|
|
195
194
|
],
|
|
196
195
|
required: false,
|
|
197
196
|
default: void 0
|
|
@@ -242,11 +241,6 @@ const StatisticCard = /* @__PURE__ */ defineComponent((props, { attrs, slots })
|
|
|
242
241
|
required: false,
|
|
243
242
|
default: void 0
|
|
244
243
|
},
|
|
245
|
-
collapsed: {
|
|
246
|
-
type: Boolean,
|
|
247
|
-
required: false,
|
|
248
|
-
default: void 0
|
|
249
|
-
},
|
|
250
244
|
collapsibleIconRender: {
|
|
251
245
|
type: Function,
|
|
252
246
|
required: false
|