@firstnoodle-ui/bui 0.0.53 → 0.0.57
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/bui.css +1 -1
- package/dist/components/button/Button.vue.d.ts +307 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/panel-layout/PanelLayout.vue.d.ts +48 -0
- package/dist/components/panel-layout/ResizablePanel.vue.d.ts +44 -0
- package/dist/components/panel-layout/index.d.ts +2 -0
- package/dist/components/pop-calendar/PopCalendar.vue.d.ts +16 -16
- package/dist/components/pop-confirm/PopConfirm.vue.d.ts +28 -27
- package/dist/components/popper/Popper.vue.d.ts +4 -4
- package/dist/components/segmented-controls/SegmentButton.vue.d.ts +11 -0
- package/dist/components/segmented-controls/SegmentedControls.vue.d.ts +11 -0
- package/dist/components/segmented-controls/index.d.ts +2 -0
- package/dist/components/segmented-controls/types.d.ts +5 -0
- package/dist/components/text-editor/components/FormattingMenuDivider.vue.d.ts +2 -0
- package/dist/components/text-editor/components/InserLink.vue.d.ts +412 -0
- package/dist/components/text-editor/components/InsertImage.vue.d.ts +7 -0
- package/dist/components/text-editor/components/index.d.ts +3 -0
- package/dist/components/text-editor/index.d.ts +1 -0
- package/dist/components/text-editor/utils.ts/getCurrentWord.d.ts +1 -0
- package/dist/components/text-editor/utils.ts/index.d.ts +3 -0
- package/dist/components/text-editor/utils.ts/pasteImage.d.ts +2 -0
- package/dist/components/text-editor/utils.ts/replaceCurrentWord.d.ts +1 -0
- package/dist/components/tiptap-editor/TiptapEditor.vue.d.ts +36 -0
- package/dist/components/tiptap-editor/index.d.ts +1 -0
- package/dist/components/tooltip/Tooltip.vue.d.ts +427 -3
- package/dist/components/tree-diagram/components/child-node/ChildNode.vue.d.ts +2 -0
- package/dist/components/tree-diagram/components/child-node/index.d.ts +1 -0
- package/dist/components/tree-diagram/components/connection-lines/ConnectionLines.vue.d.ts +2 -0
- package/dist/components/tree-diagram/components/connection-lines/index.d.ts +1 -0
- package/dist/components/tree-diagram/components/connection-lines/svgPath.d.ts +1 -0
- package/dist/components/tree-diagram/components/index.d.ts +3 -0
- package/dist/components/tree-diagram/components/root-node/RootNode.vue.d.ts +2 -0
- package/dist/components/tree-diagram/components/root-node/index.d.ts +1 -0
- package/dist/components/tree-diagram/composables/usePositioning.d.ts +1 -0
- package/dist/components/tree-diagram/index.d.ts +1 -0
- package/dist/components/tree-list/types.d.ts +14 -0
- package/dist/components/types.d.ts +1 -1
- package/dist/index.mjs +15988 -12554
- package/package.json +22 -17
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
size?: number;
|
|
3
|
+
border?: boolean;
|
|
4
|
+
draggable?: boolean;
|
|
5
|
+
placement?: "top" | "bottom" | "left" | "right";
|
|
6
|
+
maxSize?: number;
|
|
7
|
+
minSize?: number;
|
|
8
|
+
};
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {
|
|
15
|
+
aside: HTMLElement;
|
|
16
|
+
};
|
|
17
|
+
rootEl: HTMLElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
resize: (...args: any[]) => void;
|
|
22
|
+
"resize-start": (...args: any[]) => void;
|
|
23
|
+
"resize-end": (...args: any[]) => void;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
"onResize-start"?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
"onResize-end"?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
}>, {
|
|
29
|
+
border: boolean;
|
|
30
|
+
placement: "top" | "bottom" | "left" | "right";
|
|
31
|
+
size: number;
|
|
32
|
+
draggable: boolean;
|
|
33
|
+
maxSize: number;
|
|
34
|
+
minSize: number;
|
|
35
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
36
|
+
aside: HTMLElement;
|
|
37
|
+
}, HTMLElement>;
|
|
38
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
|
+
export default _default;
|
|
40
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -95,7 +95,7 @@ declare function __VLS_template(): {
|
|
|
95
95
|
closeOnClickOutside: boolean;
|
|
96
96
|
flipOptions: Partial<{
|
|
97
97
|
mainAxis?: boolean | undefined;
|
|
98
|
-
crossAxis?: boolean | undefined;
|
|
98
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
99
99
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
100
100
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
101
101
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -103,7 +103,7 @@ declare function __VLS_template(): {
|
|
|
103
103
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
104
104
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
105
105
|
altBoundary?: boolean | undefined;
|
|
106
|
-
padding?: import('@floating-ui/
|
|
106
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
107
107
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
108
108
|
}>;
|
|
109
109
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
@@ -113,9 +113,9 @@ declare function __VLS_template(): {
|
|
|
113
113
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
114
114
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
115
115
|
altBoundary?: boolean | undefined;
|
|
116
|
-
padding?: import('@floating-ui/
|
|
116
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
117
117
|
limiter?: {
|
|
118
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
118
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
119
119
|
options?: any;
|
|
120
120
|
} | undefined;
|
|
121
121
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -154,7 +154,7 @@ declare function __VLS_template(): {
|
|
|
154
154
|
closeOnClickOutside: boolean;
|
|
155
155
|
flipOptions: Partial<{
|
|
156
156
|
mainAxis?: boolean | undefined;
|
|
157
|
-
crossAxis?: boolean | undefined;
|
|
157
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
158
158
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
159
159
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
160
160
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -162,7 +162,7 @@ declare function __VLS_template(): {
|
|
|
162
162
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
163
163
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
164
164
|
altBoundary?: boolean | undefined;
|
|
165
|
-
padding?: import('@floating-ui/
|
|
165
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
166
166
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
167
167
|
}>;
|
|
168
168
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
@@ -172,9 +172,9 @@ declare function __VLS_template(): {
|
|
|
172
172
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
173
173
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
174
174
|
altBoundary?: boolean | undefined;
|
|
175
|
-
padding?: import('@floating-ui/
|
|
175
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
176
176
|
limiter?: {
|
|
177
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
177
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
178
178
|
options?: any;
|
|
179
179
|
} | undefined;
|
|
180
180
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -318,7 +318,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
318
318
|
closeOnClickOutside: boolean;
|
|
319
319
|
flipOptions: Partial<{
|
|
320
320
|
mainAxis?: boolean | undefined;
|
|
321
|
-
crossAxis?: boolean | undefined;
|
|
321
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
322
322
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
323
323
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
324
324
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -326,7 +326,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
326
326
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
327
327
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
328
328
|
altBoundary?: boolean | undefined;
|
|
329
|
-
padding?: import('@floating-ui/
|
|
329
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
330
330
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
331
331
|
}>;
|
|
332
332
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
@@ -336,9 +336,9 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
336
336
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
337
337
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
338
338
|
altBoundary?: boolean | undefined;
|
|
339
|
-
padding?: import('@floating-ui/
|
|
339
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
340
340
|
limiter?: {
|
|
341
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
341
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
342
342
|
options?: any;
|
|
343
343
|
} | undefined;
|
|
344
344
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -377,7 +377,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
377
377
|
closeOnClickOutside: boolean;
|
|
378
378
|
flipOptions: Partial<{
|
|
379
379
|
mainAxis?: boolean | undefined;
|
|
380
|
-
crossAxis?: boolean | undefined;
|
|
380
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
381
381
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
382
382
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
383
383
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -385,7 +385,7 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
385
385
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
386
386
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
387
387
|
altBoundary?: boolean | undefined;
|
|
388
|
-
padding?: import('@floating-ui/
|
|
388
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
389
389
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
390
390
|
}>;
|
|
391
391
|
offsetOptions: Partial<import('@floating-ui/dom').OffsetOptions>;
|
|
@@ -395,9 +395,9 @@ declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {
|
|
|
395
395
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
396
396
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
397
397
|
altBoundary?: boolean | undefined;
|
|
398
|
-
padding?: import('@floating-ui/
|
|
398
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
399
399
|
limiter?: {
|
|
400
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
400
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
401
401
|
options?: any;
|
|
402
402
|
} | undefined;
|
|
403
403
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { Placement } from '../../types/floating-ui';
|
|
1
|
+
import { OffsetOptions, Placement } from '../../types/floating-ui';
|
|
2
2
|
import { ConfirmCancelProps } from '../confirm-cancel/types';
|
|
3
3
|
import { nextTick } from 'vue';
|
|
4
4
|
type __VLS_Props = ConfirmCancelProps & {
|
|
5
5
|
title?: string;
|
|
6
6
|
description?: string;
|
|
7
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
7
8
|
placement?: Placement;
|
|
8
9
|
tagName?: string;
|
|
9
10
|
};
|
|
@@ -24,7 +25,7 @@ declare function __VLS_template(): {
|
|
|
24
25
|
readonly disabled?: boolean | undefined;
|
|
25
26
|
readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
|
|
26
27
|
readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
|
|
27
|
-
readonly offsetOptions?: Partial<
|
|
28
|
+
readonly offsetOptions?: Partial<OffsetOptions> | undefined;
|
|
28
29
|
readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
|
|
29
30
|
readonly openDelay?: number | undefined;
|
|
30
31
|
readonly placement?: Placement | undefined;
|
|
@@ -64,7 +65,7 @@ declare function __VLS_template(): {
|
|
|
64
65
|
disabled?: boolean;
|
|
65
66
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
66
67
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
67
|
-
offsetOptions?: Partial<
|
|
68
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
68
69
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
69
70
|
openDelay?: number;
|
|
70
71
|
placement?: Placement;
|
|
@@ -97,7 +98,7 @@ declare function __VLS_template(): {
|
|
|
97
98
|
closeOnClickOutside: boolean;
|
|
98
99
|
flipOptions: Partial<{
|
|
99
100
|
mainAxis?: boolean | undefined;
|
|
100
|
-
crossAxis?: boolean | undefined;
|
|
101
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
101
102
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
102
103
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
103
104
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -105,19 +106,19 @@ declare function __VLS_template(): {
|
|
|
105
106
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
106
107
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
107
108
|
altBoundary?: boolean | undefined;
|
|
108
|
-
padding?: import('@floating-ui/
|
|
109
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
109
110
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
110
111
|
}>;
|
|
111
|
-
offsetOptions: Partial<
|
|
112
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
112
113
|
shiftOptions: Partial<{
|
|
113
114
|
mainAxis?: boolean | undefined;
|
|
114
115
|
crossAxis?: boolean | undefined;
|
|
115
116
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
116
117
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
117
118
|
altBoundary?: boolean | undefined;
|
|
118
|
-
padding?: import('@floating-ui/
|
|
119
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
119
120
|
limiter?: {
|
|
120
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
121
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
121
122
|
options?: any;
|
|
122
123
|
} | undefined;
|
|
123
124
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -156,7 +157,7 @@ declare function __VLS_template(): {
|
|
|
156
157
|
closeOnClickOutside: boolean;
|
|
157
158
|
flipOptions: Partial<{
|
|
158
159
|
mainAxis?: boolean | undefined;
|
|
159
|
-
crossAxis?: boolean | undefined;
|
|
160
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
160
161
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
161
162
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
162
163
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -164,19 +165,19 @@ declare function __VLS_template(): {
|
|
|
164
165
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
165
166
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
166
167
|
altBoundary?: boolean | undefined;
|
|
167
|
-
padding?: import('@floating-ui/
|
|
168
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
168
169
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
169
170
|
}>;
|
|
170
|
-
offsetOptions: Partial<
|
|
171
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
171
172
|
shiftOptions: Partial<{
|
|
172
173
|
mainAxis?: boolean | undefined;
|
|
173
174
|
crossAxis?: boolean | undefined;
|
|
174
175
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
175
176
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
176
177
|
altBoundary?: boolean | undefined;
|
|
177
|
-
padding?: import('@floating-ui/
|
|
178
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
178
179
|
limiter?: {
|
|
179
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
180
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
180
181
|
options?: any;
|
|
181
182
|
} | undefined;
|
|
182
183
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -193,7 +194,7 @@ declare function __VLS_template(): {
|
|
|
193
194
|
disabled?: boolean;
|
|
194
195
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
195
196
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
196
|
-
offsetOptions?: Partial<
|
|
197
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
197
198
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
198
199
|
openDelay?: number;
|
|
199
200
|
placement?: Placement;
|
|
@@ -251,7 +252,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
251
252
|
readonly disabled?: boolean | undefined;
|
|
252
253
|
readonly flipOptions?: Partial<import('@floating-ui/dom').FlipOptions> | undefined;
|
|
253
254
|
readonly limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions> | undefined;
|
|
254
|
-
readonly offsetOptions?: Partial<
|
|
255
|
+
readonly offsetOptions?: Partial<OffsetOptions> | undefined;
|
|
255
256
|
readonly shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions> | undefined;
|
|
256
257
|
readonly openDelay?: number | undefined;
|
|
257
258
|
readonly placement?: Placement | undefined;
|
|
@@ -291,7 +292,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
291
292
|
disabled?: boolean;
|
|
292
293
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
293
294
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
294
|
-
offsetOptions?: Partial<
|
|
295
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
295
296
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
296
297
|
openDelay?: number;
|
|
297
298
|
placement?: Placement;
|
|
@@ -324,7 +325,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
324
325
|
closeOnClickOutside: boolean;
|
|
325
326
|
flipOptions: Partial<{
|
|
326
327
|
mainAxis?: boolean | undefined;
|
|
327
|
-
crossAxis?: boolean | undefined;
|
|
328
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
328
329
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
329
330
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
330
331
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -332,19 +333,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
332
333
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
333
334
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
334
335
|
altBoundary?: boolean | undefined;
|
|
335
|
-
padding?: import('@floating-ui/
|
|
336
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
336
337
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
337
338
|
}>;
|
|
338
|
-
offsetOptions: Partial<
|
|
339
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
339
340
|
shiftOptions: Partial<{
|
|
340
341
|
mainAxis?: boolean | undefined;
|
|
341
342
|
crossAxis?: boolean | undefined;
|
|
342
343
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
343
344
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
344
345
|
altBoundary?: boolean | undefined;
|
|
345
|
-
padding?: import('@floating-ui/
|
|
346
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
346
347
|
limiter?: {
|
|
347
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
348
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
348
349
|
options?: any;
|
|
349
350
|
} | undefined;
|
|
350
351
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -383,7 +384,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
383
384
|
closeOnClickOutside: boolean;
|
|
384
385
|
flipOptions: Partial<{
|
|
385
386
|
mainAxis?: boolean | undefined;
|
|
386
|
-
crossAxis?: boolean | undefined;
|
|
387
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
387
388
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
388
389
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
389
390
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -391,19 +392,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
391
392
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
392
393
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
393
394
|
altBoundary?: boolean | undefined;
|
|
394
|
-
padding?: import('@floating-ui/
|
|
395
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
395
396
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
396
397
|
}>;
|
|
397
|
-
offsetOptions: Partial<
|
|
398
|
+
offsetOptions: Partial<OffsetOptions>;
|
|
398
399
|
shiftOptions: Partial<{
|
|
399
400
|
mainAxis?: boolean | undefined;
|
|
400
401
|
crossAxis?: boolean | undefined;
|
|
401
402
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
402
403
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
403
404
|
altBoundary?: boolean | undefined;
|
|
404
|
-
padding?: import('@floating-ui/
|
|
405
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
405
406
|
limiter?: {
|
|
406
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
407
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
407
408
|
options?: any;
|
|
408
409
|
} | undefined;
|
|
409
410
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -420,7 +421,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
420
421
|
disabled?: boolean;
|
|
421
422
|
flipOptions?: Partial<import('@floating-ui/dom').FlipOptions>;
|
|
422
423
|
limitShiftOptions?: Partial<import('@floating-ui/core').LimitShiftOptions>;
|
|
423
|
-
offsetOptions?: Partial<
|
|
424
|
+
offsetOptions?: Partial<OffsetOptions>;
|
|
424
425
|
shiftOptions?: Partial<import('@floating-ui/dom').ShiftOptions>;
|
|
425
426
|
openDelay?: number;
|
|
426
427
|
placement?: Placement;
|
|
@@ -59,7 +59,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
59
59
|
closeOnClickOutside: boolean;
|
|
60
60
|
flipOptions: Partial<{
|
|
61
61
|
mainAxis?: boolean | undefined;
|
|
62
|
-
crossAxis?: boolean | undefined;
|
|
62
|
+
crossAxis?: boolean | "alignment" | undefined;
|
|
63
63
|
fallbackPlacements?: Array<Placement> | undefined;
|
|
64
64
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
65
65
|
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
@@ -67,7 +67,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
67
67
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
68
68
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
69
69
|
altBoundary?: boolean | undefined;
|
|
70
|
-
padding?: import('@floating-ui/
|
|
70
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
71
71
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
72
72
|
}>;
|
|
73
73
|
offsetOptions: Partial<OffsetOptions>;
|
|
@@ -77,9 +77,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
77
77
|
rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
|
|
78
78
|
elementContext?: import('@floating-ui/core').ElementContext | undefined;
|
|
79
79
|
altBoundary?: boolean | undefined;
|
|
80
|
-
padding?: import('@floating-ui/
|
|
80
|
+
padding?: import('@floating-ui/utils').Padding | undefined;
|
|
81
81
|
limiter?: {
|
|
82
|
-
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/
|
|
82
|
+
fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
|
|
83
83
|
options?: any;
|
|
84
84
|
} | undefined;
|
|
85
85
|
boundary?: import('@floating-ui/dom').Boundary | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Segment } from './types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
active: boolean;
|
|
4
|
+
segment: Segment;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
|
+
click: () => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
onClick?: (() => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Segment } from './types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
segments: Segment[];
|
|
4
|
+
selectedSegment: Segment;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
|
+
select: (segment: Segment) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
onSelect?: ((segment: Segment) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|