@maltjoy/core-vue 1.0.0-beta.3 → 1.0.0-beta.4
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.
|
@@ -10,7 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
10
10
|
};
|
|
11
11
|
padding: {
|
|
12
12
|
type: PropType<PanelSizes>;
|
|
13
|
-
|
|
13
|
+
default: string;
|
|
14
14
|
validator(size: PanelSizes): boolean;
|
|
15
15
|
};
|
|
16
16
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -23,11 +23,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
padding: {
|
|
25
25
|
type: PropType<PanelSizes>;
|
|
26
|
-
|
|
26
|
+
default: string;
|
|
27
27
|
validator(size: PanelSizes): boolean;
|
|
28
28
|
};
|
|
29
29
|
}>>, {
|
|
30
30
|
noMargin: boolean;
|
|
31
|
+
padding: PanelSizes;
|
|
31
32
|
}>, {
|
|
32
33
|
'panel-title': (_: {}) => any;
|
|
33
34
|
'panel-title-action': (_: {}) => any;
|
|
@@ -16,6 +16,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
type: PropType<"nowrap" | "wrap">;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
|
+
/** Apply a flex-grow to children in order to stretch them all along horizontal space */
|
|
20
|
+
itemStretch: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
};
|
|
19
23
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
24
|
justify: {
|
|
21
25
|
type: PropType<"flex-end" | "center" | "space-between" | "flex-start">;
|
|
@@ -33,11 +37,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
37
|
type: PropType<"nowrap" | "wrap">;
|
|
34
38
|
default: string;
|
|
35
39
|
};
|
|
40
|
+
/** Apply a flex-grow to children in order to stretch them all along horizontal space */
|
|
41
|
+
itemStretch: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
};
|
|
36
44
|
}>>, {
|
|
37
45
|
align: "flex-end" | "stretch" | "center" | "flex-start";
|
|
38
46
|
direction: "column" | "row";
|
|
39
47
|
justify: "flex-end" | "center" | "space-between" | "flex-start";
|
|
40
48
|
wrap: "nowrap" | "wrap";
|
|
49
|
+
itemStretch: boolean;
|
|
41
50
|
}>, {
|
|
42
51
|
default: (_: {}) => any;
|
|
43
52
|
}>;
|