bootstrap-vue-next 0.9.19 → 0.9.21
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/bootstrap-vue-next.css +1 -1
- package/dist/bootstrap-vue-next.mjs +2755 -2727
- package/dist/bootstrap-vue-next.mjs.map +1 -1
- package/dist/bootstrap-vue-next.umd.js +1 -1
- package/dist/bootstrap-vue-next.umd.js.map +1 -1
- package/dist/src/components/BAvatar/BAvatar.vue.d.ts +9 -9
- package/dist/src/components/BBreadcrumb/BBreadcrumbItem.vue.d.ts +9 -9
- package/dist/src/components/BButton/BButton.vue.d.ts +9 -9
- package/dist/src/components/BCard/BCard.vue.d.ts +108 -108
- package/dist/src/components/BCard/BCardBody.vue.d.ts +23 -23
- package/dist/src/components/BCard/BCardFooter.vue.d.ts +5 -5
- package/dist/src/components/BCard/BCardHeadFoot.vue.d.ts +5 -5
- package/dist/src/components/BCard/BCardHeader.vue.d.ts +5 -5
- package/dist/src/components/BCard/BCardImg.vue.d.ts +9 -9
- package/dist/src/components/BCarousel/BCarouselSlide.vue.d.ts +5 -5
- package/dist/src/components/BDropdown/BDropdownGroup.vue.d.ts +9 -9
- package/dist/src/components/BForm/BFormFloatingLabel.vue.d.ts +5 -5
- package/dist/src/components/BImg.vue.d.ts +18 -18
- package/dist/src/components/BListGroup/BListGroupItem.vue.d.ts +9 -9
- package/dist/src/components/BModal.vue.d.ts +80 -80
- package/dist/src/components/BOffcanvas/BOffcanvas.vue.d.ts +14 -14
- package/dist/src/components/BPlaceholder/BPlaceholderTable.vue.d.ts +9 -9
- package/dist/src/components/BPopover.vue.d.ts +5 -1
- package/dist/src/components/BTable/BTable.vue.d.ts +9 -9
- package/dist/src/components/BTabs/BTabs.vue.d.ts +9 -9
- package/dist/src/components/BToast/BToast.vue.d.ts +4 -4
- package/dist/src/components/BTooltip.vue.d.ts +5 -1
- package/dist/src/types/BootstrapVueOptions.d.ts +10 -16
- package/dist/src/types/index.d.ts +1 -1
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/src/utils/parseActiveImports.d.ts +3 -0
- package/package.json +3 -3
- package/src/BootstrapVue.ts +24 -10
- package/src/components/BPopover.vue +6 -0
- package/src/components/BToast/plugin.ts +5 -3
- package/src/components/BTooltip.vue +10 -1
- package/src/types/BootstrapVueOptions.ts +9 -17
- package/src/types/index.ts +1 -1
- package/src/utils/index.ts +1 -0
- package/src/utils/parseActiveImports.ts +21 -0
|
@@ -40,6 +40,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: import("vue").PropType<Booleanish>;
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
|
+
sizes: {
|
|
44
|
+
type: import("vue").PropType<string | string[]>;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
43
47
|
blank: {
|
|
44
48
|
type: import("vue").PropType<Booleanish>;
|
|
45
49
|
default: boolean;
|
|
@@ -48,10 +52,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
52
|
type: import("vue").PropType<string>;
|
|
49
53
|
default: undefined;
|
|
50
54
|
};
|
|
51
|
-
sizes: {
|
|
52
|
-
type: import("vue").PropType<string | string[]>;
|
|
53
|
-
default: undefined;
|
|
54
|
-
};
|
|
55
55
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
56
56
|
load: (value: Event) => void;
|
|
57
57
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -95,6 +95,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
95
|
type: import("vue").PropType<Booleanish>;
|
|
96
96
|
default: boolean;
|
|
97
97
|
};
|
|
98
|
+
sizes: {
|
|
99
|
+
type: import("vue").PropType<string | string[]>;
|
|
100
|
+
default: undefined;
|
|
101
|
+
};
|
|
98
102
|
blank: {
|
|
99
103
|
type: import("vue").PropType<Booleanish>;
|
|
100
104
|
default: boolean;
|
|
@@ -103,10 +107,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
103
107
|
type: import("vue").PropType<string>;
|
|
104
108
|
default: undefined;
|
|
105
109
|
};
|
|
106
|
-
sizes: {
|
|
107
|
-
type: import("vue").PropType<string | string[]>;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
110
|
}>> & {
|
|
111
111
|
onLoad?: ((value: Event) => any) | undefined;
|
|
112
112
|
}, {
|
|
@@ -120,8 +120,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
120
|
width: string | number;
|
|
121
121
|
height: string | number;
|
|
122
122
|
lazy: Booleanish;
|
|
123
|
+
sizes: string | string[];
|
|
123
124
|
blank: Booleanish;
|
|
124
125
|
blankColor: string;
|
|
125
|
-
sizes: string | string[];
|
|
126
126
|
}, {}>;
|
|
127
127
|
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { Booleanish } from '../../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
-
|
|
3
|
+
caption: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
5
5
|
default: undefined;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
text: {
|
|
8
8
|
type: import("vue").PropType<string>;
|
|
9
9
|
default: undefined;
|
|
10
10
|
};
|
|
@@ -69,11 +69,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
69
69
|
default: string;
|
|
70
70
|
};
|
|
71
71
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
72
|
-
|
|
72
|
+
caption: {
|
|
73
73
|
type: import("vue").PropType<string>;
|
|
74
74
|
default: undefined;
|
|
75
75
|
};
|
|
76
|
-
|
|
76
|
+
text: {
|
|
77
77
|
type: import("vue").PropType<string>;
|
|
78
78
|
default: undefined;
|
|
79
79
|
};
|
|
@@ -138,8 +138,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
138
138
|
default: string;
|
|
139
139
|
};
|
|
140
140
|
}>>, {
|
|
141
|
-
text: string;
|
|
142
141
|
caption: string;
|
|
142
|
+
text: string;
|
|
143
143
|
background: string;
|
|
144
144
|
id: string;
|
|
145
145
|
interval: string | number;
|
|
@@ -7,14 +7,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
7
7
|
type: import("vue").PropType<string>;
|
|
8
8
|
default: undefined;
|
|
9
9
|
};
|
|
10
|
-
headerClass: {
|
|
11
|
-
type: import("vue").PropType<any>;
|
|
12
|
-
default: undefined;
|
|
13
|
-
};
|
|
14
10
|
headerTag: {
|
|
15
11
|
type: import("vue").PropType<string>;
|
|
16
12
|
default: string;
|
|
17
13
|
};
|
|
14
|
+
headerClass: {
|
|
15
|
+
type: import("vue").PropType<any>;
|
|
16
|
+
default: undefined;
|
|
17
|
+
};
|
|
18
18
|
ariaDescribedby: {
|
|
19
19
|
type: import("vue").PropType<string>;
|
|
20
20
|
default: undefined;
|
|
@@ -32,14 +32,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
32
32
|
type: import("vue").PropType<string>;
|
|
33
33
|
default: undefined;
|
|
34
34
|
};
|
|
35
|
-
headerClass: {
|
|
36
|
-
type: import("vue").PropType<any>;
|
|
37
|
-
default: undefined;
|
|
38
|
-
};
|
|
39
35
|
headerTag: {
|
|
40
36
|
type: import("vue").PropType<string>;
|
|
41
37
|
default: string;
|
|
42
38
|
};
|
|
39
|
+
headerClass: {
|
|
40
|
+
type: import("vue").PropType<any>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
43
|
ariaDescribedby: {
|
|
44
44
|
type: import("vue").PropType<string>;
|
|
45
45
|
default: undefined;
|
|
@@ -51,8 +51,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
51
51
|
}>>, {
|
|
52
52
|
header: string;
|
|
53
53
|
id: string;
|
|
54
|
-
headerClass: any;
|
|
55
54
|
headerTag: string;
|
|
55
|
+
headerClass: any;
|
|
56
56
|
ariaDescribedby: string;
|
|
57
57
|
headerVariant: keyof import("../../types").BaseColorVariant | null;
|
|
58
58
|
}, {}>, {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
-
|
|
2
|
+
label: {
|
|
3
3
|
type: import("vue").PropType<string>;
|
|
4
4
|
default: undefined;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
text: {
|
|
7
7
|
type: import("vue").PropType<string>;
|
|
8
8
|
default: undefined;
|
|
9
9
|
};
|
|
@@ -12,11 +12,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
12
12
|
default: undefined;
|
|
13
13
|
};
|
|
14
14
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
|
|
15
|
+
label: {
|
|
16
16
|
type: import("vue").PropType<string>;
|
|
17
17
|
default: undefined;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
text: {
|
|
20
20
|
type: import("vue").PropType<string>;
|
|
21
21
|
default: undefined;
|
|
22
22
|
};
|
|
@@ -25,8 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
25
|
default: undefined;
|
|
26
26
|
};
|
|
27
27
|
}>>, {
|
|
28
|
-
text: string;
|
|
29
28
|
label: string;
|
|
29
|
+
text: string;
|
|
30
30
|
labelFor: string;
|
|
31
31
|
}, {}>, {
|
|
32
32
|
default?: ((props: Record<string, never>) => any) | undefined;
|
|
@@ -44,6 +44,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
44
|
type: import("vue").PropType<Booleanish>;
|
|
45
45
|
default: boolean;
|
|
46
46
|
};
|
|
47
|
+
rounded: {
|
|
48
|
+
type: import("vue").PropType<string | boolean>;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
sizes: {
|
|
52
|
+
type: import("vue").PropType<string | string[]>;
|
|
53
|
+
default: undefined;
|
|
54
|
+
};
|
|
47
55
|
blank: {
|
|
48
56
|
type: import("vue").PropType<Booleanish>;
|
|
49
57
|
default: boolean;
|
|
@@ -56,14 +64,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
64
|
type: import("vue").PropType<Booleanish>;
|
|
57
65
|
default: boolean;
|
|
58
66
|
};
|
|
59
|
-
rounded: {
|
|
60
|
-
type: import("vue").PropType<string | boolean>;
|
|
61
|
-
default: boolean;
|
|
62
|
-
};
|
|
63
|
-
sizes: {
|
|
64
|
-
type: import("vue").PropType<string | string[]>;
|
|
65
|
-
default: undefined;
|
|
66
|
-
};
|
|
67
67
|
thumbnail: {
|
|
68
68
|
type: import("vue").PropType<Booleanish>;
|
|
69
69
|
default: boolean;
|
|
@@ -113,6 +113,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
113
|
type: import("vue").PropType<Booleanish>;
|
|
114
114
|
default: boolean;
|
|
115
115
|
};
|
|
116
|
+
rounded: {
|
|
117
|
+
type: import("vue").PropType<string | boolean>;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
120
|
+
sizes: {
|
|
121
|
+
type: import("vue").PropType<string | string[]>;
|
|
122
|
+
default: undefined;
|
|
123
|
+
};
|
|
116
124
|
blank: {
|
|
117
125
|
type: import("vue").PropType<Booleanish>;
|
|
118
126
|
default: boolean;
|
|
@@ -125,14 +133,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
133
|
type: import("vue").PropType<Booleanish>;
|
|
126
134
|
default: boolean;
|
|
127
135
|
};
|
|
128
|
-
rounded: {
|
|
129
|
-
type: import("vue").PropType<string | boolean>;
|
|
130
|
-
default: boolean;
|
|
131
|
-
};
|
|
132
|
-
sizes: {
|
|
133
|
-
type: import("vue").PropType<string | string[]>;
|
|
134
|
-
default: undefined;
|
|
135
|
-
};
|
|
136
136
|
thumbnail: {
|
|
137
137
|
type: import("vue").PropType<Booleanish>;
|
|
138
138
|
default: boolean;
|
|
@@ -149,11 +149,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
149
|
height: string | number;
|
|
150
150
|
lazy: Booleanish;
|
|
151
151
|
block: Booleanish;
|
|
152
|
+
rounded: string | boolean;
|
|
153
|
+
sizes: string | string[];
|
|
152
154
|
blank: Booleanish;
|
|
153
155
|
blankColor: string;
|
|
154
156
|
fluidGrow: Booleanish;
|
|
155
|
-
rounded: string | boolean;
|
|
156
|
-
sizes: string | string[];
|
|
157
157
|
thumbnail: Booleanish;
|
|
158
158
|
}, {}>;
|
|
159
159
|
export default _default;
|
|
@@ -9,14 +9,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
9
9
|
type: import("vue").PropType<LinkTarget>;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
|
-
button: {
|
|
13
|
-
type: import("vue").PropType<Booleanish>;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
12
|
to: {
|
|
17
13
|
type: import("vue").PropType<RouteLocationRaw>;
|
|
18
14
|
default: undefined;
|
|
19
15
|
};
|
|
16
|
+
button: {
|
|
17
|
+
type: import("vue").PropType<Booleanish>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
20
|
href: {
|
|
21
21
|
type: import("vue").PropType<string>;
|
|
22
22
|
default: undefined;
|
|
@@ -46,14 +46,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
46
46
|
type: import("vue").PropType<LinkTarget>;
|
|
47
47
|
default: string;
|
|
48
48
|
};
|
|
49
|
-
button: {
|
|
50
|
-
type: import("vue").PropType<Booleanish>;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
49
|
to: {
|
|
54
50
|
type: import("vue").PropType<RouteLocationRaw>;
|
|
55
51
|
default: undefined;
|
|
56
52
|
};
|
|
53
|
+
button: {
|
|
54
|
+
type: import("vue").PropType<Booleanish>;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
57
|
href: {
|
|
58
58
|
type: import("vue").PropType<string>;
|
|
59
59
|
default: undefined;
|
|
@@ -77,8 +77,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
77
77
|
}>>, {
|
|
78
78
|
tag: string;
|
|
79
79
|
target: LinkTarget;
|
|
80
|
-
button: Booleanish;
|
|
81
80
|
to: RouteLocationRaw;
|
|
81
|
+
button: Booleanish;
|
|
82
82
|
href: string;
|
|
83
83
|
disabled: Booleanish;
|
|
84
84
|
active: Booleanish;
|
|
@@ -30,19 +30,51 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
30
30
|
type: import("vue").PropType<Booleanish>;
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
|
+
bodyBgVariant: {
|
|
34
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
35
|
+
default: null;
|
|
36
|
+
};
|
|
37
|
+
bodyTextVariant: {
|
|
38
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
39
|
+
default: null;
|
|
40
|
+
};
|
|
41
|
+
titleTag: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
33
45
|
bodyClass: {
|
|
34
46
|
type: import("vue").PropType<any>;
|
|
35
47
|
default: undefined;
|
|
36
48
|
};
|
|
37
|
-
|
|
49
|
+
footerBgVariant: {
|
|
50
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
51
|
+
default: null;
|
|
52
|
+
};
|
|
53
|
+
footerBorderVariant: {
|
|
54
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
55
|
+
default: null;
|
|
56
|
+
};
|
|
57
|
+
footerClass: {
|
|
38
58
|
type: import("vue").PropType<any>;
|
|
39
59
|
default: undefined;
|
|
40
60
|
};
|
|
41
|
-
|
|
61
|
+
footerTextVariant: {
|
|
42
62
|
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
43
63
|
default: null;
|
|
44
64
|
};
|
|
45
|
-
|
|
65
|
+
headerBgVariant: {
|
|
66
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
67
|
+
default: null;
|
|
68
|
+
};
|
|
69
|
+
headerBorderVariant: {
|
|
70
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
71
|
+
default: null;
|
|
72
|
+
};
|
|
73
|
+
headerClass: {
|
|
74
|
+
type: import("vue").PropType<any>;
|
|
75
|
+
default: undefined;
|
|
76
|
+
};
|
|
77
|
+
headerTextVariant: {
|
|
46
78
|
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
47
79
|
default: null;
|
|
48
80
|
};
|
|
@@ -78,34 +110,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
78
110
|
type: import("vue").PropType<any>;
|
|
79
111
|
default: undefined;
|
|
80
112
|
};
|
|
81
|
-
footerBgVariant: {
|
|
82
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
83
|
-
default: null;
|
|
84
|
-
};
|
|
85
|
-
footerBorderVariant: {
|
|
86
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
87
|
-
default: null;
|
|
88
|
-
};
|
|
89
|
-
footerClass: {
|
|
90
|
-
type: import("vue").PropType<any>;
|
|
91
|
-
default: undefined;
|
|
92
|
-
};
|
|
93
|
-
footerTextVariant: {
|
|
94
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
95
|
-
default: null;
|
|
96
|
-
};
|
|
97
113
|
fullscreen: {
|
|
98
114
|
type: import("vue").PropType<string | boolean>;
|
|
99
115
|
default: boolean;
|
|
100
116
|
};
|
|
101
|
-
headerBgVariant: {
|
|
102
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
103
|
-
default: null;
|
|
104
|
-
};
|
|
105
|
-
headerBorderVariant: {
|
|
106
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
107
|
-
default: null;
|
|
108
|
-
};
|
|
109
117
|
headerCloseLabel: {
|
|
110
118
|
type: import("vue").PropType<string>;
|
|
111
119
|
default: string;
|
|
@@ -114,10 +122,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
114
122
|
type: import("vue").PropType<Booleanish>;
|
|
115
123
|
default: boolean;
|
|
116
124
|
};
|
|
117
|
-
headerTextVariant: {
|
|
118
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
119
|
-
default: null;
|
|
120
|
-
};
|
|
121
125
|
hideBackdrop: {
|
|
122
126
|
type: import("vue").PropType<Booleanish>;
|
|
123
127
|
default: boolean;
|
|
@@ -178,10 +182,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
178
182
|
type: import("vue").PropType<Booleanish>;
|
|
179
183
|
default: boolean;
|
|
180
184
|
};
|
|
181
|
-
titleTag: {
|
|
182
|
-
type: import("vue").PropType<string>;
|
|
183
|
-
default: string;
|
|
184
|
-
};
|
|
185
185
|
autoFocusButton: {
|
|
186
186
|
type: import("vue").PropType<"cancel" | "close" | "ok">;
|
|
187
187
|
default: undefined;
|
|
@@ -241,19 +241,51 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
241
241
|
type: import("vue").PropType<Booleanish>;
|
|
242
242
|
default: boolean;
|
|
243
243
|
};
|
|
244
|
+
bodyBgVariant: {
|
|
245
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
246
|
+
default: null;
|
|
247
|
+
};
|
|
248
|
+
bodyTextVariant: {
|
|
249
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
250
|
+
default: null;
|
|
251
|
+
};
|
|
252
|
+
titleTag: {
|
|
253
|
+
type: import("vue").PropType<string>;
|
|
254
|
+
default: string;
|
|
255
|
+
};
|
|
244
256
|
bodyClass: {
|
|
245
257
|
type: import("vue").PropType<any>;
|
|
246
258
|
default: undefined;
|
|
247
259
|
};
|
|
248
|
-
|
|
260
|
+
footerBgVariant: {
|
|
261
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
262
|
+
default: null;
|
|
263
|
+
};
|
|
264
|
+
footerBorderVariant: {
|
|
265
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
266
|
+
default: null;
|
|
267
|
+
};
|
|
268
|
+
footerClass: {
|
|
249
269
|
type: import("vue").PropType<any>;
|
|
250
270
|
default: undefined;
|
|
251
271
|
};
|
|
252
|
-
|
|
272
|
+
footerTextVariant: {
|
|
253
273
|
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
254
274
|
default: null;
|
|
255
275
|
};
|
|
256
|
-
|
|
276
|
+
headerBgVariant: {
|
|
277
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
278
|
+
default: null;
|
|
279
|
+
};
|
|
280
|
+
headerBorderVariant: {
|
|
281
|
+
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
282
|
+
default: null;
|
|
283
|
+
};
|
|
284
|
+
headerClass: {
|
|
285
|
+
type: import("vue").PropType<any>;
|
|
286
|
+
default: undefined;
|
|
287
|
+
};
|
|
288
|
+
headerTextVariant: {
|
|
257
289
|
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
258
290
|
default: null;
|
|
259
291
|
};
|
|
@@ -289,34 +321,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
289
321
|
type: import("vue").PropType<any>;
|
|
290
322
|
default: undefined;
|
|
291
323
|
};
|
|
292
|
-
footerBgVariant: {
|
|
293
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
294
|
-
default: null;
|
|
295
|
-
};
|
|
296
|
-
footerBorderVariant: {
|
|
297
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
298
|
-
default: null;
|
|
299
|
-
};
|
|
300
|
-
footerClass: {
|
|
301
|
-
type: import("vue").PropType<any>;
|
|
302
|
-
default: undefined;
|
|
303
|
-
};
|
|
304
|
-
footerTextVariant: {
|
|
305
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
306
|
-
default: null;
|
|
307
|
-
};
|
|
308
324
|
fullscreen: {
|
|
309
325
|
type: import("vue").PropType<string | boolean>;
|
|
310
326
|
default: boolean;
|
|
311
327
|
};
|
|
312
|
-
headerBgVariant: {
|
|
313
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
314
|
-
default: null;
|
|
315
|
-
};
|
|
316
|
-
headerBorderVariant: {
|
|
317
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
318
|
-
default: null;
|
|
319
|
-
};
|
|
320
328
|
headerCloseLabel: {
|
|
321
329
|
type: import("vue").PropType<string>;
|
|
322
330
|
default: string;
|
|
@@ -325,10 +333,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
325
333
|
type: import("vue").PropType<Booleanish>;
|
|
326
334
|
default: boolean;
|
|
327
335
|
};
|
|
328
|
-
headerTextVariant: {
|
|
329
|
-
type: import("vue").PropType<keyof import("../types").BaseColorVariant | null>;
|
|
330
|
-
default: null;
|
|
331
|
-
};
|
|
332
336
|
hideBackdrop: {
|
|
333
337
|
type: import("vue").PropType<Booleanish>;
|
|
334
338
|
default: boolean;
|
|
@@ -389,10 +393,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
389
393
|
type: import("vue").PropType<Booleanish>;
|
|
390
394
|
default: boolean;
|
|
391
395
|
};
|
|
392
|
-
titleTag: {
|
|
393
|
-
type: import("vue").PropType<string>;
|
|
394
|
-
default: string;
|
|
395
|
-
};
|
|
396
396
|
autoFocusButton: {
|
|
397
397
|
type: import("vue").PropType<"cancel" | "close" | "ok">;
|
|
398
398
|
default: undefined;
|
|
@@ -428,10 +428,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
428
428
|
modelValue: Booleanish;
|
|
429
429
|
noFade: Booleanish;
|
|
430
430
|
show: Booleanish;
|
|
431
|
-
bodyClass: any;
|
|
432
|
-
headerClass: any;
|
|
433
431
|
bodyBgVariant: keyof import("../types").BaseColorVariant | null;
|
|
434
432
|
bodyTextVariant: keyof import("../types").BaseColorVariant | null;
|
|
433
|
+
titleTag: string;
|
|
434
|
+
bodyClass: any;
|
|
435
|
+
footerBgVariant: keyof import("../types").BaseColorVariant | null;
|
|
436
|
+
footerBorderVariant: keyof import("../types").BaseColorVariant | null;
|
|
437
|
+
footerClass: any;
|
|
438
|
+
footerTextVariant: keyof import("../types").BaseColorVariant | null;
|
|
439
|
+
headerBgVariant: keyof import("../types").BaseColorVariant | null;
|
|
440
|
+
headerBorderVariant: keyof import("../types").BaseColorVariant | null;
|
|
441
|
+
headerClass: any;
|
|
442
|
+
headerTextVariant: keyof import("../types").BaseColorVariant | null;
|
|
435
443
|
busy: Booleanish;
|
|
436
444
|
buttonSize: keyof import("../types").BaseSize;
|
|
437
445
|
cancelDisabled: Booleanish;
|
|
@@ -440,16 +448,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
440
448
|
centered: Booleanish;
|
|
441
449
|
contentClass: any;
|
|
442
450
|
dialogClass: any;
|
|
443
|
-
footerBgVariant: keyof import("../types").BaseColorVariant | null;
|
|
444
|
-
footerBorderVariant: keyof import("../types").BaseColorVariant | null;
|
|
445
|
-
footerClass: any;
|
|
446
|
-
footerTextVariant: keyof import("../types").BaseColorVariant | null;
|
|
447
451
|
fullscreen: string | boolean;
|
|
448
|
-
headerBgVariant: keyof import("../types").BaseColorVariant | null;
|
|
449
|
-
headerBorderVariant: keyof import("../types").BaseColorVariant | null;
|
|
450
452
|
headerCloseLabel: string;
|
|
451
453
|
headerCloseWhite: Booleanish;
|
|
452
|
-
headerTextVariant: keyof import("../types").BaseColorVariant | null;
|
|
453
454
|
hideBackdrop: Booleanish;
|
|
454
455
|
hideFooter: Booleanish;
|
|
455
456
|
hideHeader: Booleanish;
|
|
@@ -465,7 +466,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
465
466
|
scrollable: Booleanish;
|
|
466
467
|
titleClass: string;
|
|
467
468
|
titleSrOnly: Booleanish;
|
|
468
|
-
titleTag: string;
|
|
469
469
|
autoFocusButton: "cancel" | "close" | "ok";
|
|
470
470
|
teleportDisabled: Booleanish;
|
|
471
471
|
teleportTo: string | RendererElement | null;
|
|
@@ -22,15 +22,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
22
22
|
type: import("vue").PropType<"top" | "bottom" | "start" | "end">;
|
|
23
23
|
default: string;
|
|
24
24
|
};
|
|
25
|
+
dismissLabel: {
|
|
26
|
+
type: import("vue").PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
25
29
|
bodyClass: {
|
|
26
30
|
type: import("vue").PropType<string>;
|
|
27
31
|
default: undefined;
|
|
28
32
|
};
|
|
29
|
-
|
|
33
|
+
footerClass: {
|
|
30
34
|
type: import("vue").PropType<string>;
|
|
31
35
|
default: undefined;
|
|
32
36
|
};
|
|
33
|
-
|
|
37
|
+
headerClass: {
|
|
34
38
|
type: import("vue").PropType<string>;
|
|
35
39
|
default: undefined;
|
|
36
40
|
};
|
|
@@ -58,10 +62,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
58
62
|
type: import("vue").PropType<Booleanish>;
|
|
59
63
|
default: boolean;
|
|
60
64
|
};
|
|
61
|
-
dismissLabel: {
|
|
62
|
-
type: import("vue").PropType<string>;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
65
|
noHeaderClose: {
|
|
66
66
|
type: import("vue").PropType<Booleanish>;
|
|
67
67
|
default: boolean;
|
|
@@ -112,15 +112,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
112
112
|
type: import("vue").PropType<"top" | "bottom" | "start" | "end">;
|
|
113
113
|
default: string;
|
|
114
114
|
};
|
|
115
|
+
dismissLabel: {
|
|
116
|
+
type: import("vue").PropType<string>;
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
115
119
|
bodyClass: {
|
|
116
120
|
type: import("vue").PropType<string>;
|
|
117
121
|
default: undefined;
|
|
118
122
|
};
|
|
119
|
-
|
|
123
|
+
footerClass: {
|
|
120
124
|
type: import("vue").PropType<string>;
|
|
121
125
|
default: undefined;
|
|
122
126
|
};
|
|
123
|
-
|
|
127
|
+
headerClass: {
|
|
124
128
|
type: import("vue").PropType<string>;
|
|
125
129
|
default: undefined;
|
|
126
130
|
};
|
|
@@ -148,10 +152,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
148
152
|
type: import("vue").PropType<Booleanish>;
|
|
149
153
|
default: boolean;
|
|
150
154
|
};
|
|
151
|
-
dismissLabel: {
|
|
152
|
-
type: import("vue").PropType<string>;
|
|
153
|
-
default: string;
|
|
154
|
-
};
|
|
155
155
|
noHeaderClose: {
|
|
156
156
|
type: import("vue").PropType<Booleanish>;
|
|
157
157
|
default: boolean;
|
|
@@ -184,16 +184,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
184
184
|
lazy: Booleanish;
|
|
185
185
|
modelValue: Booleanish;
|
|
186
186
|
placement: "top" | "bottom" | "start" | "end";
|
|
187
|
+
dismissLabel: string;
|
|
187
188
|
bodyClass: string;
|
|
188
|
-
headerClass: string;
|
|
189
189
|
footerClass: string;
|
|
190
|
+
headerClass: string;
|
|
190
191
|
noCloseOnBackdrop: Booleanish;
|
|
191
192
|
noCloseOnEsc: Booleanish;
|
|
192
193
|
teleportDisabled: Booleanish;
|
|
193
194
|
teleportTo: string | RendererElement | null;
|
|
194
195
|
bodyScrolling: Booleanish;
|
|
195
196
|
backdrop: Booleanish;
|
|
196
|
-
dismissLabel: string;
|
|
197
197
|
noHeaderClose: Booleanish;
|
|
198
198
|
noHeader: Booleanish;
|
|
199
199
|
noFocus: Booleanish;
|