@icij/murmur-next 4.0.4 → 4.0.6
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/lib/components/AccordionStep.vue.d.ts +2 -3
- package/dist/lib/components/AccordionWrapper.vue.d.ts +1 -2
- package/dist/lib/components/ActiveTextTruncate.vue.d.ts +2 -2
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +5 -6
- package/dist/lib/components/Brand.vue.d.ts +8 -8
- package/dist/lib/components/BrandExpansion.vue.d.ts +6 -7
- package/dist/lib/components/ConfirmButton.vue.d.ts +1 -2
- package/dist/lib/components/ContentPlaceholder.vue.d.ts +2 -3
- package/dist/lib/components/CustomPagination.vue.d.ts +9 -10
- package/dist/lib/components/DigitsInput.vue.d.ts +3 -3
- package/dist/lib/components/DonateForm.vue.d.ts +4 -5
- package/dist/lib/components/EmbedForm.vue.d.ts +7 -8
- package/dist/lib/components/FollowUsPopover.vue.d.ts +4 -5
- package/dist/lib/components/GenericFooter.vue.d.ts +1 -2
- package/dist/lib/components/GenericHeader.vue.d.ts +283 -284
- package/dist/lib/components/HapticCopy.vue.d.ts +6 -8
- package/dist/lib/components/ImddbHeader.vue.d.ts +282 -283
- package/dist/lib/components/OrdinalLegend.vue.d.ts +8 -9
- package/dist/lib/components/RangePicker.vue.d.ts +10 -14
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +2 -3
- package/dist/lib/components/ScaleLegend.vue.d.ts +2 -2
- package/dist/lib/components/SecretInput.vue.d.ts +3 -3
- package/dist/lib/components/SelectableDropdown.vue.d.ts +6 -7
- package/dist/lib/components/SharingOptions.vue.d.ts +1 -2
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +2 -3
- package/dist/lib/components/SignUpForm.vue.d.ts +5 -6
- package/dist/lib/components/SlideUpDown.vue.d.ts +3 -4
- package/dist/lib/components/TexturedDeck.vue.d.ts +3 -4
- package/dist/lib/components/TinyPagination.vue.d.ts +15 -16
- package/dist/lib/composables/chart.d.ts +7 -8
- package/dist/lib/composables/resizeObserver.d.ts +1 -2
- package/dist/lib/composables/sendEmail.d.ts +1 -2
- package/dist/lib/config.d.ts +3 -2
- package/dist/lib/datavisualisations/BarChart.vue.d.ts +6 -8
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +7 -4
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +17 -9
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +4 -8
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +4 -4
- package/dist/lib/i18n.d.ts +1 -0
- package/dist/lib/main.d.ts +11 -8
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +10 -4
- package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +3 -3
- package/dist/lib/maps/SymbolMap.vue.d.ts +8 -8
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +17563 -16205
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +60 -52
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/dist/lib/types.d.ts +4 -7
- package/dist/lib/utils/assets.d.ts +1 -1
- package/dist/lib/utils/iframe-resizer.d.ts +1 -0
- package/dist/lib/utils/placeholder.d.ts +1 -0
- package/dist/lib/utils/placeholderTypes.d.ts +2 -3
- package/lib/components/Brand.vue +9 -9
- package/lib/components/OrdinalLegend.vue +1 -1
- package/lib/components/RangePicker.vue +15 -9
- package/lib/composables/chart.ts +10 -7
- package/lib/composables/resizeObserver.ts +1 -1
- package/lib/composables/sendEmail.ts +0 -1
- package/lib/config.ts +2 -2
- package/lib/locales/en.json +1 -1
- package/lib/locales/fr.json +1 -1
- package/lib/main.ts +18 -12
- package/lib/maps/ChoroplethMap.vue +1 -1
- package/lib/maps/ChoroplethMapAnnotation.vue +2 -2
- package/lib/maps/SymbolMap.vue +5 -4
- package/lib/shims-pym.d.ts +7 -0
- package/lib/shims-vue.d.ts +1 -1
- package/lib/types.ts +5 -5
- package/lib/utils/iframe-resizer.ts +1 -1
- package/lib/utils/placeholder.ts +0 -1
- package/package.json +49 -43
- package/lib/locales/locales/en.json +0 -140
- package/lib/locales/locales/fr.json +0 -117
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { ComponentPublicInstance, PropType } from '../../node_modules/vue';
|
|
2
|
+
|
|
4
3
|
type CssPosition = 'absolute' | 'relative' | 'fixed' | 'static';
|
|
5
4
|
type ImddHeaderItem = {
|
|
6
5
|
label: string;
|
|
@@ -60,10 +59,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
60
59
|
default: () => any;
|
|
61
60
|
};
|
|
62
61
|
}, {
|
|
63
|
-
t: import(
|
|
64
|
-
[x: string]: import(
|
|
65
|
-
}, string, import(
|
|
66
|
-
[x: string]: import(
|
|
62
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
63
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
64
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
65
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
67
66
|
}>, never, string, string>;
|
|
68
67
|
root: import('../../node_modules/vue').Ref<ComponentPublicInstance | null>;
|
|
69
68
|
collapseNavbar: import('../../node_modules/vue').Ref<boolean>;
|
|
@@ -86,41 +85,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
86
85
|
default: undefined;
|
|
87
86
|
};
|
|
88
87
|
offset: {
|
|
89
|
-
type: PropType<import(
|
|
88
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
|
|
90
89
|
default: null;
|
|
91
90
|
};
|
|
91
|
+
click: {
|
|
92
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
92
95
|
title: {
|
|
93
96
|
type: PropType<string>;
|
|
94
97
|
default: undefined;
|
|
95
98
|
};
|
|
96
99
|
variant: {
|
|
97
|
-
type: PropType<keyof import(
|
|
100
|
+
type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
|
|
98
101
|
default: null;
|
|
99
102
|
};
|
|
100
103
|
html: {
|
|
101
|
-
type: PropType<import(
|
|
102
|
-
default: boolean;
|
|
103
|
-
};
|
|
104
|
-
id: {
|
|
105
|
-
type: PropType<string>;
|
|
106
|
-
default: undefined;
|
|
107
|
-
};
|
|
108
|
-
modelValue: {
|
|
109
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
104
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
110
105
|
default: boolean;
|
|
111
106
|
};
|
|
112
107
|
target: {
|
|
113
108
|
type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
|
|
114
109
|
default: null;
|
|
115
110
|
};
|
|
116
|
-
hide: {
|
|
117
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
118
|
-
default: undefined;
|
|
119
|
-
};
|
|
120
|
-
click: {
|
|
121
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
122
|
-
default: boolean;
|
|
123
|
-
};
|
|
124
111
|
delay: {
|
|
125
112
|
type: PropType<number | Readonly<{
|
|
126
113
|
show: number;
|
|
@@ -132,15 +119,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
132
119
|
};
|
|
133
120
|
};
|
|
134
121
|
tooltip: {
|
|
135
|
-
type: PropType<import(
|
|
122
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
136
123
|
default: boolean;
|
|
137
124
|
};
|
|
138
125
|
boundary: {
|
|
139
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
126
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
|
|
140
127
|
default: string;
|
|
141
128
|
};
|
|
142
129
|
boundaryPadding: {
|
|
143
|
-
type: PropType<import(
|
|
130
|
+
type: PropType<import('@floating-ui/utils').Padding>;
|
|
144
131
|
default: undefined;
|
|
145
132
|
};
|
|
146
133
|
customClass: {
|
|
@@ -154,63 +141,75 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
154
141
|
fn: (state: {
|
|
155
142
|
x: number;
|
|
156
143
|
y: number;
|
|
157
|
-
placement: import(
|
|
158
|
-
strategy: import(
|
|
159
|
-
initialPlacement: import(
|
|
160
|
-
middlewareData: import(
|
|
161
|
-
rects: import(
|
|
162
|
-
platform: import(
|
|
163
|
-
elements: import(
|
|
164
|
-
}) => import(
|
|
144
|
+
placement: import('@floating-ui/utils').Placement;
|
|
145
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
146
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
147
|
+
middlewareData: import('@floating-ui/core').MiddlewareData;
|
|
148
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
149
|
+
platform: import('@floating-ui/core').Platform;
|
|
150
|
+
elements: import('@floating-ui/dom').Elements;
|
|
151
|
+
}) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
|
|
165
152
|
}[]>;
|
|
166
153
|
default: undefined;
|
|
167
154
|
};
|
|
155
|
+
hide: {
|
|
156
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
159
|
+
id: {
|
|
160
|
+
type: PropType<string>;
|
|
161
|
+
default: undefined;
|
|
162
|
+
};
|
|
168
163
|
inline: {
|
|
169
|
-
type: PropType<import(
|
|
164
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
170
165
|
default: boolean;
|
|
171
166
|
};
|
|
172
167
|
manual: {
|
|
173
|
-
type: PropType<import(
|
|
168
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
169
|
+
default: boolean;
|
|
170
|
+
};
|
|
171
|
+
modelValue: {
|
|
172
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
174
173
|
default: boolean;
|
|
175
174
|
};
|
|
176
175
|
noAutoClose: {
|
|
177
|
-
type: PropType<import(
|
|
176
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
178
177
|
default: boolean;
|
|
179
178
|
};
|
|
180
179
|
noFade: {
|
|
181
|
-
type: PropType<import(
|
|
180
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
182
181
|
default: boolean;
|
|
183
182
|
};
|
|
184
183
|
noFlip: {
|
|
185
|
-
type: PropType<import(
|
|
184
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
186
185
|
default: boolean;
|
|
187
186
|
};
|
|
188
187
|
noHide: {
|
|
189
|
-
type: PropType<import(
|
|
188
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
190
189
|
default: boolean;
|
|
191
190
|
};
|
|
192
191
|
noShift: {
|
|
193
|
-
type: PropType<import(
|
|
192
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
194
193
|
default: boolean;
|
|
195
194
|
};
|
|
196
195
|
noSize: {
|
|
197
|
-
type: PropType<import(
|
|
196
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
198
197
|
default: boolean;
|
|
199
198
|
};
|
|
200
199
|
noninteractive: {
|
|
201
|
-
type: PropType<import(
|
|
200
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
202
201
|
default: boolean;
|
|
203
202
|
};
|
|
204
203
|
placement: {
|
|
205
|
-
type: PropType<import(
|
|
204
|
+
type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
|
|
206
205
|
default: string;
|
|
207
206
|
};
|
|
208
207
|
persistent: {
|
|
209
|
-
type: PropType<import(
|
|
208
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
210
209
|
default: boolean;
|
|
211
210
|
};
|
|
212
211
|
realtime: {
|
|
213
|
-
type: PropType<import(
|
|
212
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
214
213
|
default: boolean;
|
|
215
214
|
};
|
|
216
215
|
reference: {
|
|
@@ -218,29 +217,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
218
217
|
default: null;
|
|
219
218
|
};
|
|
220
219
|
strategy: {
|
|
221
|
-
type: PropType<import(
|
|
220
|
+
type: PropType<import('@floating-ui/utils').Strategy>;
|
|
222
221
|
default: string;
|
|
223
222
|
};
|
|
224
223
|
}>> & {
|
|
225
|
-
onHidden?: ((value: import(
|
|
224
|
+
onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
226
225
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
227
|
-
onShow?: ((value: import(
|
|
228
|
-
onHide?: ((value: import(
|
|
226
|
+
onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
227
|
+
onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
229
228
|
"onHide-prevented"?: (() => any) | undefined;
|
|
230
229
|
"onShow-prevented"?: (() => any) | undefined;
|
|
231
|
-
onShown?: ((value: import(
|
|
230
|
+
onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
232
231
|
}, {
|
|
233
232
|
hide: (e: Readonly<Event>) => void;
|
|
234
233
|
show: () => void;
|
|
235
234
|
toggle: (e?: Event | undefined) => void;
|
|
236
235
|
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
|
|
237
|
-
hidden: (value: import(
|
|
236
|
+
hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
238
237
|
"update:modelValue": (value: boolean) => void;
|
|
239
|
-
show: (value: import(
|
|
240
|
-
hide: (value: import(
|
|
238
|
+
show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
239
|
+
hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
241
240
|
"hide-prevented": () => void;
|
|
242
241
|
"show-prevented": () => void;
|
|
243
|
-
shown: (value: import(
|
|
242
|
+
shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
244
243
|
}, import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
245
244
|
content: {
|
|
246
245
|
type: PropType<string>;
|
|
@@ -251,41 +250,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
251
250
|
default: undefined;
|
|
252
251
|
};
|
|
253
252
|
offset: {
|
|
254
|
-
type: PropType<import(
|
|
253
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
|
|
255
254
|
default: null;
|
|
256
255
|
};
|
|
256
|
+
click: {
|
|
257
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
257
260
|
title: {
|
|
258
261
|
type: PropType<string>;
|
|
259
262
|
default: undefined;
|
|
260
263
|
};
|
|
261
264
|
variant: {
|
|
262
|
-
type: PropType<keyof import(
|
|
265
|
+
type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
|
|
263
266
|
default: null;
|
|
264
267
|
};
|
|
265
268
|
html: {
|
|
266
|
-
type: PropType<import(
|
|
267
|
-
default: boolean;
|
|
268
|
-
};
|
|
269
|
-
id: {
|
|
270
|
-
type: PropType<string>;
|
|
271
|
-
default: undefined;
|
|
272
|
-
};
|
|
273
|
-
modelValue: {
|
|
274
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
269
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
275
270
|
default: boolean;
|
|
276
271
|
};
|
|
277
272
|
target: {
|
|
278
273
|
type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
|
|
279
274
|
default: null;
|
|
280
275
|
};
|
|
281
|
-
hide: {
|
|
282
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
283
|
-
default: undefined;
|
|
284
|
-
};
|
|
285
|
-
click: {
|
|
286
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
287
|
-
default: boolean;
|
|
288
|
-
};
|
|
289
276
|
delay: {
|
|
290
277
|
type: PropType<number | Readonly<{
|
|
291
278
|
show: number;
|
|
@@ -297,15 +284,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
297
284
|
};
|
|
298
285
|
};
|
|
299
286
|
tooltip: {
|
|
300
|
-
type: PropType<import(
|
|
287
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
301
288
|
default: boolean;
|
|
302
289
|
};
|
|
303
290
|
boundary: {
|
|
304
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
291
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
|
|
305
292
|
default: string;
|
|
306
293
|
};
|
|
307
294
|
boundaryPadding: {
|
|
308
|
-
type: PropType<import(
|
|
295
|
+
type: PropType<import('@floating-ui/utils').Padding>;
|
|
309
296
|
default: undefined;
|
|
310
297
|
};
|
|
311
298
|
customClass: {
|
|
@@ -319,63 +306,75 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
319
306
|
fn: (state: {
|
|
320
307
|
x: number;
|
|
321
308
|
y: number;
|
|
322
|
-
placement: import(
|
|
323
|
-
strategy: import(
|
|
324
|
-
initialPlacement: import(
|
|
325
|
-
middlewareData: import(
|
|
326
|
-
rects: import(
|
|
327
|
-
platform: import(
|
|
328
|
-
elements: import(
|
|
329
|
-
}) => import(
|
|
309
|
+
placement: import('@floating-ui/utils').Placement;
|
|
310
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
311
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
312
|
+
middlewareData: import('@floating-ui/core').MiddlewareData;
|
|
313
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
314
|
+
platform: import('@floating-ui/core').Platform;
|
|
315
|
+
elements: import('@floating-ui/dom').Elements;
|
|
316
|
+
}) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
|
|
330
317
|
}[]>;
|
|
331
318
|
default: undefined;
|
|
332
319
|
};
|
|
320
|
+
hide: {
|
|
321
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
322
|
+
default: undefined;
|
|
323
|
+
};
|
|
324
|
+
id: {
|
|
325
|
+
type: PropType<string>;
|
|
326
|
+
default: undefined;
|
|
327
|
+
};
|
|
333
328
|
inline: {
|
|
334
|
-
type: PropType<import(
|
|
329
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
335
330
|
default: boolean;
|
|
336
331
|
};
|
|
337
332
|
manual: {
|
|
338
|
-
type: PropType<import(
|
|
333
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
334
|
+
default: boolean;
|
|
335
|
+
};
|
|
336
|
+
modelValue: {
|
|
337
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
339
338
|
default: boolean;
|
|
340
339
|
};
|
|
341
340
|
noAutoClose: {
|
|
342
|
-
type: PropType<import(
|
|
341
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
343
342
|
default: boolean;
|
|
344
343
|
};
|
|
345
344
|
noFade: {
|
|
346
|
-
type: PropType<import(
|
|
345
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
347
346
|
default: boolean;
|
|
348
347
|
};
|
|
349
348
|
noFlip: {
|
|
350
|
-
type: PropType<import(
|
|
349
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
351
350
|
default: boolean;
|
|
352
351
|
};
|
|
353
352
|
noHide: {
|
|
354
|
-
type: PropType<import(
|
|
353
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
355
354
|
default: boolean;
|
|
356
355
|
};
|
|
357
356
|
noShift: {
|
|
358
|
-
type: PropType<import(
|
|
357
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
359
358
|
default: boolean;
|
|
360
359
|
};
|
|
361
360
|
noSize: {
|
|
362
|
-
type: PropType<import(
|
|
361
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
363
362
|
default: boolean;
|
|
364
363
|
};
|
|
365
364
|
noninteractive: {
|
|
366
|
-
type: PropType<import(
|
|
365
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
367
366
|
default: boolean;
|
|
368
367
|
};
|
|
369
368
|
placement: {
|
|
370
|
-
type: PropType<import(
|
|
369
|
+
type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
|
|
371
370
|
default: string;
|
|
372
371
|
};
|
|
373
372
|
persistent: {
|
|
374
|
-
type: PropType<import(
|
|
373
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
375
374
|
default: boolean;
|
|
376
375
|
};
|
|
377
376
|
realtime: {
|
|
378
|
-
type: PropType<import(
|
|
377
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
379
378
|
default: boolean;
|
|
380
379
|
};
|
|
381
380
|
reference: {
|
|
@@ -383,30 +382,30 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
383
382
|
default: null;
|
|
384
383
|
};
|
|
385
384
|
strategy: {
|
|
386
|
-
type: PropType<import(
|
|
385
|
+
type: PropType<import('@floating-ui/utils').Strategy>;
|
|
387
386
|
default: string;
|
|
388
387
|
};
|
|
389
388
|
}>> & {
|
|
390
|
-
onHidden?: ((value: import(
|
|
389
|
+
onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
391
390
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
392
|
-
onShow?: ((value: import(
|
|
393
|
-
onHide?: ((value: import(
|
|
391
|
+
onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
392
|
+
onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
394
393
|
"onHide-prevented"?: (() => any) | undefined;
|
|
395
394
|
"onShow-prevented"?: (() => any) | undefined;
|
|
396
|
-
onShown?: ((value: import(
|
|
395
|
+
onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
397
396
|
}, {
|
|
398
|
-
offset: import(
|
|
397
|
+
offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
|
|
399
398
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
400
399
|
title: string;
|
|
401
|
-
click: import(
|
|
400
|
+
click: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
402
401
|
id: string;
|
|
403
|
-
html: import(
|
|
404
|
-
variant: keyof import(
|
|
405
|
-
modelValue: import(
|
|
406
|
-
hide: import(
|
|
407
|
-
manual: import(
|
|
408
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
409
|
-
boundaryPadding: import(
|
|
402
|
+
html: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
403
|
+
variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
|
|
404
|
+
modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
405
|
+
hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
406
|
+
manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
407
|
+
boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
|
|
408
|
+
boundaryPadding: import('@floating-ui/utils').Padding;
|
|
410
409
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
411
410
|
content: string;
|
|
412
411
|
customClass: any;
|
|
@@ -420,29 +419,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
420
419
|
fn: (state: {
|
|
421
420
|
x: number;
|
|
422
421
|
y: number;
|
|
423
|
-
placement: import(
|
|
424
|
-
strategy: import(
|
|
425
|
-
initialPlacement: import(
|
|
422
|
+
placement: import('@floating-ui/utils').Placement;
|
|
423
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
424
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
426
425
|
middlewareData: any;
|
|
427
|
-
rects: import(
|
|
426
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
428
427
|
platform: any;
|
|
429
|
-
elements: import(
|
|
428
|
+
elements: import('@floating-ui/dom').Elements;
|
|
430
429
|
}) => any;
|
|
431
430
|
}[];
|
|
432
|
-
inline: import(
|
|
433
|
-
noAutoClose: import(
|
|
434
|
-
noFade: import(
|
|
435
|
-
noFlip: import(
|
|
436
|
-
noHide: import(
|
|
437
|
-
noShift: import(
|
|
438
|
-
noSize: import(
|
|
439
|
-
noninteractive: import(
|
|
440
|
-
placement: import(
|
|
441
|
-
persistent: import(
|
|
442
|
-
realtime: import(
|
|
431
|
+
inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
432
|
+
noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
433
|
+
noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
434
|
+
noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
435
|
+
noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
436
|
+
noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
437
|
+
noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
438
|
+
noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
439
|
+
placement: import('bootstrap-vue-next').PopoverPlacement;
|
|
440
|
+
persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
441
|
+
realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
443
442
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
444
|
-
strategy: import(
|
|
445
|
-
tooltip: import(
|
|
443
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
444
|
+
tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
446
445
|
}, true, {}, {}, {
|
|
447
446
|
P: {};
|
|
448
447
|
B: {};
|
|
@@ -460,41 +459,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
460
459
|
default: undefined;
|
|
461
460
|
};
|
|
462
461
|
offset: {
|
|
463
|
-
type: PropType<import(
|
|
462
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
|
|
464
463
|
default: null;
|
|
465
464
|
};
|
|
465
|
+
click: {
|
|
466
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
467
|
+
default: boolean;
|
|
468
|
+
};
|
|
466
469
|
title: {
|
|
467
470
|
type: PropType<string>;
|
|
468
471
|
default: undefined;
|
|
469
472
|
};
|
|
470
473
|
variant: {
|
|
471
|
-
type: PropType<keyof import(
|
|
474
|
+
type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
|
|
472
475
|
default: null;
|
|
473
476
|
};
|
|
474
477
|
html: {
|
|
475
|
-
type: PropType<import(
|
|
476
|
-
default: boolean;
|
|
477
|
-
};
|
|
478
|
-
id: {
|
|
479
|
-
type: PropType<string>;
|
|
480
|
-
default: undefined;
|
|
481
|
-
};
|
|
482
|
-
modelValue: {
|
|
483
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
478
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
484
479
|
default: boolean;
|
|
485
480
|
};
|
|
486
481
|
target: {
|
|
487
482
|
type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
|
|
488
483
|
default: null;
|
|
489
484
|
};
|
|
490
|
-
hide: {
|
|
491
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
492
|
-
default: undefined;
|
|
493
|
-
};
|
|
494
|
-
click: {
|
|
495
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
496
|
-
default: boolean;
|
|
497
|
-
};
|
|
498
485
|
delay: {
|
|
499
486
|
type: PropType<number | Readonly<{
|
|
500
487
|
show: number;
|
|
@@ -506,15 +493,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
506
493
|
};
|
|
507
494
|
};
|
|
508
495
|
tooltip: {
|
|
509
|
-
type: PropType<import(
|
|
496
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
510
497
|
default: boolean;
|
|
511
498
|
};
|
|
512
499
|
boundary: {
|
|
513
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
500
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
|
|
514
501
|
default: string;
|
|
515
502
|
};
|
|
516
503
|
boundaryPadding: {
|
|
517
|
-
type: PropType<import(
|
|
504
|
+
type: PropType<import('@floating-ui/utils').Padding>;
|
|
518
505
|
default: undefined;
|
|
519
506
|
};
|
|
520
507
|
customClass: {
|
|
@@ -528,63 +515,75 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
528
515
|
fn: (state: {
|
|
529
516
|
x: number;
|
|
530
517
|
y: number;
|
|
531
|
-
placement: import(
|
|
532
|
-
strategy: import(
|
|
533
|
-
initialPlacement: import(
|
|
534
|
-
middlewareData: import(
|
|
535
|
-
rects: import(
|
|
536
|
-
platform: import(
|
|
537
|
-
elements: import(
|
|
538
|
-
}) => import(
|
|
518
|
+
placement: import('@floating-ui/utils').Placement;
|
|
519
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
520
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
521
|
+
middlewareData: import('@floating-ui/core').MiddlewareData;
|
|
522
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
523
|
+
platform: import('@floating-ui/core').Platform;
|
|
524
|
+
elements: import('@floating-ui/dom').Elements;
|
|
525
|
+
}) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
|
|
539
526
|
}[]>;
|
|
540
527
|
default: undefined;
|
|
541
528
|
};
|
|
529
|
+
hide: {
|
|
530
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
531
|
+
default: undefined;
|
|
532
|
+
};
|
|
533
|
+
id: {
|
|
534
|
+
type: PropType<string>;
|
|
535
|
+
default: undefined;
|
|
536
|
+
};
|
|
542
537
|
inline: {
|
|
543
|
-
type: PropType<import(
|
|
538
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
544
539
|
default: boolean;
|
|
545
540
|
};
|
|
546
541
|
manual: {
|
|
547
|
-
type: PropType<import(
|
|
542
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
543
|
+
default: boolean;
|
|
544
|
+
};
|
|
545
|
+
modelValue: {
|
|
546
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
548
547
|
default: boolean;
|
|
549
548
|
};
|
|
550
549
|
noAutoClose: {
|
|
551
|
-
type: PropType<import(
|
|
550
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
552
551
|
default: boolean;
|
|
553
552
|
};
|
|
554
553
|
noFade: {
|
|
555
|
-
type: PropType<import(
|
|
554
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
556
555
|
default: boolean;
|
|
557
556
|
};
|
|
558
557
|
noFlip: {
|
|
559
|
-
type: PropType<import(
|
|
558
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
560
559
|
default: boolean;
|
|
561
560
|
};
|
|
562
561
|
noHide: {
|
|
563
|
-
type: PropType<import(
|
|
562
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
564
563
|
default: boolean;
|
|
565
564
|
};
|
|
566
565
|
noShift: {
|
|
567
|
-
type: PropType<import(
|
|
566
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
568
567
|
default: boolean;
|
|
569
568
|
};
|
|
570
569
|
noSize: {
|
|
571
|
-
type: PropType<import(
|
|
570
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
572
571
|
default: boolean;
|
|
573
572
|
};
|
|
574
573
|
noninteractive: {
|
|
575
|
-
type: PropType<import(
|
|
574
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
576
575
|
default: boolean;
|
|
577
576
|
};
|
|
578
577
|
placement: {
|
|
579
|
-
type: PropType<import(
|
|
578
|
+
type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
|
|
580
579
|
default: string;
|
|
581
580
|
};
|
|
582
581
|
persistent: {
|
|
583
|
-
type: PropType<import(
|
|
582
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
584
583
|
default: boolean;
|
|
585
584
|
};
|
|
586
585
|
realtime: {
|
|
587
|
-
type: PropType<import(
|
|
586
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
588
587
|
default: boolean;
|
|
589
588
|
};
|
|
590
589
|
reference: {
|
|
@@ -592,34 +591,34 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
592
591
|
default: null;
|
|
593
592
|
};
|
|
594
593
|
strategy: {
|
|
595
|
-
type: PropType<import(
|
|
594
|
+
type: PropType<import('@floating-ui/utils').Strategy>;
|
|
596
595
|
default: string;
|
|
597
596
|
};
|
|
598
597
|
}>> & {
|
|
599
|
-
onHidden?: ((value: import(
|
|
598
|
+
onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
600
599
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
601
|
-
onShow?: ((value: import(
|
|
602
|
-
onHide?: ((value: import(
|
|
600
|
+
onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
601
|
+
onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
603
602
|
"onHide-prevented"?: (() => any) | undefined;
|
|
604
603
|
"onShow-prevented"?: (() => any) | undefined;
|
|
605
|
-
onShown?: ((value: import(
|
|
604
|
+
onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
606
605
|
}, {
|
|
607
606
|
hide: (e: Readonly<Event>) => void;
|
|
608
607
|
show: () => void;
|
|
609
608
|
toggle: (e?: Event | undefined) => void;
|
|
610
609
|
}, {}, {}, {}, {
|
|
611
|
-
offset: import(
|
|
610
|
+
offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
|
|
612
611
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
613
612
|
title: string;
|
|
614
|
-
click: import(
|
|
613
|
+
click: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
615
614
|
id: string;
|
|
616
|
-
html: import(
|
|
617
|
-
variant: keyof import(
|
|
618
|
-
modelValue: import(
|
|
619
|
-
hide: import(
|
|
620
|
-
manual: import(
|
|
621
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
622
|
-
boundaryPadding: import(
|
|
615
|
+
html: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
616
|
+
variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
|
|
617
|
+
modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
618
|
+
hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
619
|
+
manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
620
|
+
boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
|
|
621
|
+
boundaryPadding: import('@floating-ui/utils').Padding;
|
|
623
622
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
624
623
|
content: string;
|
|
625
624
|
customClass: any;
|
|
@@ -633,29 +632,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
633
632
|
fn: (state: {
|
|
634
633
|
x: number;
|
|
635
634
|
y: number;
|
|
636
|
-
placement: import(
|
|
637
|
-
strategy: import(
|
|
638
|
-
initialPlacement: import(
|
|
635
|
+
placement: import('@floating-ui/utils').Placement;
|
|
636
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
637
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
639
638
|
middlewareData: any;
|
|
640
|
-
rects: import(
|
|
639
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
641
640
|
platform: any;
|
|
642
|
-
elements: import(
|
|
641
|
+
elements: import('@floating-ui/dom').Elements;
|
|
643
642
|
}) => any;
|
|
644
643
|
}[];
|
|
645
|
-
inline: import(
|
|
646
|
-
noAutoClose: import(
|
|
647
|
-
noFade: import(
|
|
648
|
-
noFlip: import(
|
|
649
|
-
noHide: import(
|
|
650
|
-
noShift: import(
|
|
651
|
-
noSize: import(
|
|
652
|
-
noninteractive: import(
|
|
653
|
-
placement: import(
|
|
654
|
-
persistent: import(
|
|
655
|
-
realtime: import(
|
|
644
|
+
inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
645
|
+
noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
646
|
+
noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
647
|
+
noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
648
|
+
noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
649
|
+
noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
650
|
+
noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
651
|
+
noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
652
|
+
placement: import('bootstrap-vue-next').PopoverPlacement;
|
|
653
|
+
persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
654
|
+
realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
656
655
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
657
|
-
strategy: import(
|
|
658
|
-
tooltip: import(
|
|
656
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
657
|
+
tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
659
658
|
}>;
|
|
660
659
|
__isFragment?: undefined;
|
|
661
660
|
__isTeleport?: undefined;
|
|
@@ -670,41 +669,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
670
669
|
default: undefined;
|
|
671
670
|
};
|
|
672
671
|
offset: {
|
|
673
|
-
type: PropType<import(
|
|
672
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
|
|
674
673
|
default: null;
|
|
675
674
|
};
|
|
675
|
+
click: {
|
|
676
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
677
|
+
default: boolean;
|
|
678
|
+
};
|
|
676
679
|
title: {
|
|
677
680
|
type: PropType<string>;
|
|
678
681
|
default: undefined;
|
|
679
682
|
};
|
|
680
683
|
variant: {
|
|
681
|
-
type: PropType<keyof import(
|
|
684
|
+
type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
|
|
682
685
|
default: null;
|
|
683
686
|
};
|
|
684
687
|
html: {
|
|
685
|
-
type: PropType<import(
|
|
686
|
-
default: boolean;
|
|
687
|
-
};
|
|
688
|
-
id: {
|
|
689
|
-
type: PropType<string>;
|
|
690
|
-
default: undefined;
|
|
691
|
-
};
|
|
692
|
-
modelValue: {
|
|
693
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
688
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
694
689
|
default: boolean;
|
|
695
690
|
};
|
|
696
691
|
target: {
|
|
697
692
|
type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
|
|
698
693
|
default: null;
|
|
699
694
|
};
|
|
700
|
-
hide: {
|
|
701
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
702
|
-
default: undefined;
|
|
703
|
-
};
|
|
704
|
-
click: {
|
|
705
|
-
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
706
|
-
default: boolean;
|
|
707
|
-
};
|
|
708
695
|
delay: {
|
|
709
696
|
type: PropType<number | Readonly<{
|
|
710
697
|
show: number;
|
|
@@ -716,15 +703,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
716
703
|
};
|
|
717
704
|
};
|
|
718
705
|
tooltip: {
|
|
719
|
-
type: PropType<import(
|
|
706
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
720
707
|
default: boolean;
|
|
721
708
|
};
|
|
722
709
|
boundary: {
|
|
723
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
710
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
|
|
724
711
|
default: string;
|
|
725
712
|
};
|
|
726
713
|
boundaryPadding: {
|
|
727
|
-
type: PropType<import(
|
|
714
|
+
type: PropType<import('@floating-ui/utils').Padding>;
|
|
728
715
|
default: undefined;
|
|
729
716
|
};
|
|
730
717
|
customClass: {
|
|
@@ -738,63 +725,75 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
738
725
|
fn: (state: {
|
|
739
726
|
x: number;
|
|
740
727
|
y: number;
|
|
741
|
-
placement: import(
|
|
742
|
-
strategy: import(
|
|
743
|
-
initialPlacement: import(
|
|
744
|
-
middlewareData: import(
|
|
745
|
-
rects: import(
|
|
746
|
-
platform: import(
|
|
747
|
-
elements: import(
|
|
748
|
-
}) => import(
|
|
728
|
+
placement: import('@floating-ui/utils').Placement;
|
|
729
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
730
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
731
|
+
middlewareData: import('@floating-ui/core').MiddlewareData;
|
|
732
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
733
|
+
platform: import('@floating-ui/core').Platform;
|
|
734
|
+
elements: import('@floating-ui/dom').Elements;
|
|
735
|
+
}) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
|
|
749
736
|
}[]>;
|
|
750
737
|
default: undefined;
|
|
751
738
|
};
|
|
739
|
+
hide: {
|
|
740
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
741
|
+
default: undefined;
|
|
742
|
+
};
|
|
743
|
+
id: {
|
|
744
|
+
type: PropType<string>;
|
|
745
|
+
default: undefined;
|
|
746
|
+
};
|
|
752
747
|
inline: {
|
|
753
|
-
type: PropType<import(
|
|
748
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
754
749
|
default: boolean;
|
|
755
750
|
};
|
|
756
751
|
manual: {
|
|
757
|
-
type: PropType<import(
|
|
752
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
753
|
+
default: boolean;
|
|
754
|
+
};
|
|
755
|
+
modelValue: {
|
|
756
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
758
757
|
default: boolean;
|
|
759
758
|
};
|
|
760
759
|
noAutoClose: {
|
|
761
|
-
type: PropType<import(
|
|
760
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
762
761
|
default: boolean;
|
|
763
762
|
};
|
|
764
763
|
noFade: {
|
|
765
|
-
type: PropType<import(
|
|
764
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
766
765
|
default: boolean;
|
|
767
766
|
};
|
|
768
767
|
noFlip: {
|
|
769
|
-
type: PropType<import(
|
|
768
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
770
769
|
default: boolean;
|
|
771
770
|
};
|
|
772
771
|
noHide: {
|
|
773
|
-
type: PropType<import(
|
|
772
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
774
773
|
default: boolean;
|
|
775
774
|
};
|
|
776
775
|
noShift: {
|
|
777
|
-
type: PropType<import(
|
|
776
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
778
777
|
default: boolean;
|
|
779
778
|
};
|
|
780
779
|
noSize: {
|
|
781
|
-
type: PropType<import(
|
|
780
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
782
781
|
default: boolean;
|
|
783
782
|
};
|
|
784
783
|
noninteractive: {
|
|
785
|
-
type: PropType<import(
|
|
784
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
786
785
|
default: boolean;
|
|
787
786
|
};
|
|
788
787
|
placement: {
|
|
789
|
-
type: PropType<import(
|
|
788
|
+
type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
|
|
790
789
|
default: string;
|
|
791
790
|
};
|
|
792
791
|
persistent: {
|
|
793
|
-
type: PropType<import(
|
|
792
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
794
793
|
default: boolean;
|
|
795
794
|
};
|
|
796
795
|
realtime: {
|
|
797
|
-
type: PropType<import(
|
|
796
|
+
type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
|
|
798
797
|
default: boolean;
|
|
799
798
|
};
|
|
800
799
|
reference: {
|
|
@@ -802,42 +801,42 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
802
801
|
default: null;
|
|
803
802
|
};
|
|
804
803
|
strategy: {
|
|
805
|
-
type: PropType<import(
|
|
804
|
+
type: PropType<import('@floating-ui/utils').Strategy>;
|
|
806
805
|
default: string;
|
|
807
806
|
};
|
|
808
807
|
}>> & {
|
|
809
|
-
onHidden?: ((value: import(
|
|
808
|
+
onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
810
809
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
811
|
-
onShow?: ((value: import(
|
|
812
|
-
onHide?: ((value: import(
|
|
810
|
+
onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
811
|
+
onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
813
812
|
"onHide-prevented"?: (() => any) | undefined;
|
|
814
813
|
"onShow-prevented"?: (() => any) | undefined;
|
|
815
|
-
onShown?: ((value: import(
|
|
814
|
+
onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
|
|
816
815
|
}, {
|
|
817
816
|
hide: (e: Readonly<Event>) => void;
|
|
818
817
|
show: () => void;
|
|
819
818
|
toggle: (e?: Event | undefined) => void;
|
|
820
819
|
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
|
|
821
|
-
hidden: (value: import(
|
|
820
|
+
hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
822
821
|
"update:modelValue": (value: boolean) => void;
|
|
823
|
-
show: (value: import(
|
|
824
|
-
hide: (value: import(
|
|
822
|
+
show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
823
|
+
hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
825
824
|
"hide-prevented": () => void;
|
|
826
825
|
"show-prevented": () => void;
|
|
827
|
-
shown: (value: import(
|
|
826
|
+
shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
|
|
828
827
|
}, string, {
|
|
829
|
-
offset: import(
|
|
828
|
+
offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
|
|
830
829
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
831
830
|
title: string;
|
|
832
|
-
click: import(
|
|
831
|
+
click: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
833
832
|
id: string;
|
|
834
|
-
html: import(
|
|
835
|
-
variant: keyof import(
|
|
836
|
-
modelValue: import(
|
|
837
|
-
hide: import(
|
|
838
|
-
manual: import(
|
|
839
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
840
|
-
boundaryPadding: import(
|
|
833
|
+
html: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
834
|
+
variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
|
|
835
|
+
modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
836
|
+
hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
837
|
+
manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
838
|
+
boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
|
|
839
|
+
boundaryPadding: import('@floating-ui/utils').Padding;
|
|
841
840
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
842
841
|
content: string;
|
|
843
842
|
customClass: any;
|
|
@@ -851,29 +850,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
851
850
|
fn: (state: {
|
|
852
851
|
x: number;
|
|
853
852
|
y: number;
|
|
854
|
-
placement: import(
|
|
855
|
-
strategy: import(
|
|
856
|
-
initialPlacement: import(
|
|
853
|
+
placement: import('@floating-ui/utils').Placement;
|
|
854
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
855
|
+
initialPlacement: import('@floating-ui/utils').Placement;
|
|
857
856
|
middlewareData: any;
|
|
858
|
-
rects: import(
|
|
857
|
+
rects: import('@floating-ui/utils').ElementRects;
|
|
859
858
|
platform: any;
|
|
860
|
-
elements: import(
|
|
859
|
+
elements: import('@floating-ui/dom').Elements;
|
|
861
860
|
}) => any;
|
|
862
861
|
}[];
|
|
863
|
-
inline: import(
|
|
864
|
-
noAutoClose: import(
|
|
865
|
-
noFade: import(
|
|
866
|
-
noFlip: import(
|
|
867
|
-
noHide: import(
|
|
868
|
-
noShift: import(
|
|
869
|
-
noSize: import(
|
|
870
|
-
noninteractive: import(
|
|
871
|
-
placement: import(
|
|
872
|
-
persistent: import(
|
|
873
|
-
realtime: import(
|
|
862
|
+
inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
863
|
+
noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
864
|
+
noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
865
|
+
noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
866
|
+
noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
867
|
+
noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
868
|
+
noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
869
|
+
noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
870
|
+
placement: import('bootstrap-vue-next').PopoverPlacement;
|
|
871
|
+
persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
872
|
+
realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
874
873
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
875
|
-
strategy: import(
|
|
876
|
-
tooltip: import(
|
|
874
|
+
strategy: import('@floating-ui/utils').Strategy;
|
|
875
|
+
tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
|
|
877
876
|
}, {}, string, {}> & import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & (new () => {
|
|
878
877
|
$slots: Readonly<{
|
|
879
878
|
default?: ((props: Record<string, never>) => any) | undefined;
|