@firstnoodle-ui/bui 0.0.54 → 0.0.58

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.
Files changed (46) hide show
  1. package/dist/bui.css +1 -1
  2. package/dist/components/avatar-upload/AvatarUpload.vue.d.ts +173 -0
  3. package/dist/components/avatar-upload/index.d.ts +1 -0
  4. package/dist/components/button/Button.vue.d.ts +10 -10
  5. package/dist/components/confirm-cancel/ConfirmCancel.vue.d.ts +2 -2
  6. package/dist/components/horizontal-layout/Aside.vue.d.ts +1 -1
  7. package/dist/components/index.d.ts +3 -0
  8. package/dist/components/inline-form-wrapper/InlineFormWrapper.vue.d.ts +2 -2
  9. package/dist/components/modal/Modal.vue.d.ts +2 -2
  10. package/dist/components/panel-layout/ResizablePanel.vue.d.ts +2 -2
  11. package/dist/components/pop-calendar/PopCalendar.vue.d.ts +18 -18
  12. package/dist/components/pop-confirm/PopConfirm.vue.d.ts +18 -18
  13. package/dist/components/pop-select/option.vue.d.ts +2 -2
  14. package/dist/components/popper/Popper.vue.d.ts +4 -4
  15. package/dist/components/screen-overlay/ScreenOverlay.vue.d.ts +2 -2
  16. package/dist/components/scrollbar/Bar.vue.d.ts +2 -2
  17. package/dist/components/scrollbar/Scrollbar.vue.d.ts +2 -2
  18. package/dist/components/segmented-controls/SegmentButton.vue.d.ts +11 -0
  19. package/dist/components/segmented-controls/SegmentedControls.vue.d.ts +11 -0
  20. package/dist/components/segmented-controls/index.d.ts +2 -0
  21. package/dist/components/segmented-controls/types.d.ts +5 -0
  22. package/dist/components/select-list/SelectList.vue.d.ts +10 -10
  23. package/dist/components/select-list/components/select-list-option/SelectListOption.vue.d.ts +2 -2
  24. package/dist/components/tab/Tab.vue.d.ts +2 -2
  25. package/dist/components/text-editor/TextEditor.vue.d.ts +5 -5
  26. package/dist/components/text-editor/components/FormattingMenuDivider.vue.d.ts +2 -0
  27. package/dist/components/text-editor/components/InserLink.vue.d.ts +412 -0
  28. package/dist/components/text-editor/components/InsertImage.vue.d.ts +7 -0
  29. package/dist/components/text-editor/components/index.d.ts +3 -0
  30. package/dist/components/text-editor/index.d.ts +1 -0
  31. package/dist/components/tiptap-editor/TiptapEditor.vue.d.ts +41 -0
  32. package/dist/components/tiptap-editor/index.d.ts +1 -0
  33. package/dist/components/toggle-button/ToggleButton.vue.d.ts +1 -1
  34. package/dist/components/tooltip/Tooltip.vue.d.ts +16 -16
  35. package/dist/components/tree-list/types.d.ts +14 -0
  36. package/dist/components/types.d.ts +1 -1
  37. package/dist/components/vertical-layout/RunningSection.vue.d.ts +1 -1
  38. package/dist/components/vertical-layout/VerticalLayout.vue.d.ts +1 -1
  39. package/dist/index.mjs +17684 -14323
  40. package/dist/utils/tiptap/enterKeyBehaviour.d.ts +4 -0
  41. package/dist/utils/tiptap/getCurrentWord.d.ts +1 -0
  42. package/dist/utils/tiptap/index.d.ts +5 -0
  43. package/dist/utils/tiptap/pasteImage.d.ts +2 -0
  44. package/dist/utils/tiptap/replaceCurrentWord.d.ts +1 -0
  45. package/dist/utils/tiptap/useExtensionStorage.d.ts +2 -0
  46. package/package.json +23 -17
@@ -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/core').Padding | undefined;
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/core').Padding | undefined;
116
+ padding?: import('@floating-ui/utils').Padding | undefined;
117
117
  limiter?: {
118
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
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/core').Padding | undefined;
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/core').Padding | undefined;
175
+ padding?: import('@floating-ui/utils').Padding | undefined;
176
176
  limiter?: {
177
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
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;
@@ -228,13 +228,13 @@ declare function __VLS_template(): {
228
228
  };
229
229
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
230
230
  declare const __VLS_component: import('vue').DefineComponent<PopCalendarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
231
+ change: (value: Date | null) => any;
231
232
  close: () => any;
232
233
  open: (targets: HTMLElement[]) => any;
233
- change: (value: Date | null) => any;
234
234
  }, string, import('vue').PublicProps, Readonly<PopCalendarProps> & Readonly<{
235
+ onChange?: ((value: Date | null) => any) | undefined;
235
236
  onClose?: (() => any) | undefined;
236
237
  onOpen?: ((targets: HTMLElement[]) => any) | undefined;
237
- onChange?: ((value: Date | null) => any) | undefined;
238
238
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
239
239
  popperRef: ({
240
240
  $: import('vue').ComponentInternalInstance;
@@ -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/core').Padding | undefined;
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/core').Padding | undefined;
339
+ padding?: import('@floating-ui/utils').Padding | undefined;
340
340
  limiter?: {
341
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
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/core').Padding | undefined;
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/core').Padding | undefined;
398
+ padding?: import('@floating-ui/utils').Padding | undefined;
399
399
  limiter?: {
400
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
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;
@@ -98,7 +98,7 @@ declare function __VLS_template(): {
98
98
  closeOnClickOutside: boolean;
99
99
  flipOptions: Partial<{
100
100
  mainAxis?: boolean | undefined;
101
- crossAxis?: boolean | undefined;
101
+ crossAxis?: boolean | "alignment" | undefined;
102
102
  fallbackPlacements?: Array<Placement> | undefined;
103
103
  fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
104
104
  fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
@@ -106,7 +106,7 @@ declare function __VLS_template(): {
106
106
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
107
107
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
108
108
  altBoundary?: boolean | undefined;
109
- padding?: import('@floating-ui/core').Padding | undefined;
109
+ padding?: import('@floating-ui/utils').Padding | undefined;
110
110
  boundary?: import('@floating-ui/dom').Boundary | undefined;
111
111
  }>;
112
112
  offsetOptions: Partial<OffsetOptions>;
@@ -116,9 +116,9 @@ declare function __VLS_template(): {
116
116
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
117
117
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
118
118
  altBoundary?: boolean | undefined;
119
- padding?: import('@floating-ui/core').Padding | undefined;
119
+ padding?: import('@floating-ui/utils').Padding | undefined;
120
120
  limiter?: {
121
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
121
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
122
122
  options?: any;
123
123
  } | undefined;
124
124
  boundary?: import('@floating-ui/dom').Boundary | undefined;
@@ -157,7 +157,7 @@ declare function __VLS_template(): {
157
157
  closeOnClickOutside: boolean;
158
158
  flipOptions: Partial<{
159
159
  mainAxis?: boolean | undefined;
160
- crossAxis?: boolean | undefined;
160
+ crossAxis?: boolean | "alignment" | undefined;
161
161
  fallbackPlacements?: Array<Placement> | undefined;
162
162
  fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
163
163
  fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
@@ -165,7 +165,7 @@ declare function __VLS_template(): {
165
165
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
166
166
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
167
167
  altBoundary?: boolean | undefined;
168
- padding?: import('@floating-ui/core').Padding | undefined;
168
+ padding?: import('@floating-ui/utils').Padding | undefined;
169
169
  boundary?: import('@floating-ui/dom').Boundary | undefined;
170
170
  }>;
171
171
  offsetOptions: Partial<OffsetOptions>;
@@ -175,9 +175,9 @@ declare function __VLS_template(): {
175
175
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
176
176
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
177
177
  altBoundary?: boolean | undefined;
178
- padding?: import('@floating-ui/core').Padding | undefined;
178
+ padding?: import('@floating-ui/utils').Padding | undefined;
179
179
  limiter?: {
180
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
180
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
181
181
  options?: any;
182
182
  } | undefined;
183
183
  boundary?: import('@floating-ui/dom').Boundary | undefined;
@@ -233,12 +233,12 @@ declare function __VLS_template(): {
233
233
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
234
234
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
235
235
  close: (...args: any[]) => void;
236
- cancel: (...args: any[]) => void;
237
236
  confirm: (...args: any[]) => void;
237
+ cancel: (...args: any[]) => void;
238
238
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
239
239
  onClose?: ((...args: any[]) => any) | undefined;
240
- onCancel?: ((...args: any[]) => any) | undefined;
241
240
  onConfirm?: ((...args: any[]) => any) | undefined;
241
+ onCancel?: ((...args: any[]) => any) | undefined;
242
242
  }>, {
243
243
  placement: Placement;
244
244
  tagName: string;
@@ -325,7 +325,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
325
325
  closeOnClickOutside: boolean;
326
326
  flipOptions: Partial<{
327
327
  mainAxis?: boolean | undefined;
328
- crossAxis?: boolean | undefined;
328
+ crossAxis?: boolean | "alignment" | undefined;
329
329
  fallbackPlacements?: Array<Placement> | undefined;
330
330
  fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
331
331
  fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
@@ -333,7 +333,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
333
333
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
334
334
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
335
335
  altBoundary?: boolean | undefined;
336
- padding?: import('@floating-ui/core').Padding | undefined;
336
+ padding?: import('@floating-ui/utils').Padding | undefined;
337
337
  boundary?: import('@floating-ui/dom').Boundary | undefined;
338
338
  }>;
339
339
  offsetOptions: Partial<OffsetOptions>;
@@ -343,9 +343,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
343
343
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
344
344
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
345
345
  altBoundary?: boolean | undefined;
346
- padding?: import('@floating-ui/core').Padding | undefined;
346
+ padding?: import('@floating-ui/utils').Padding | undefined;
347
347
  limiter?: {
348
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
348
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
349
349
  options?: any;
350
350
  } | undefined;
351
351
  boundary?: import('@floating-ui/dom').Boundary | undefined;
@@ -384,7 +384,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
384
384
  closeOnClickOutside: boolean;
385
385
  flipOptions: Partial<{
386
386
  mainAxis?: boolean | undefined;
387
- crossAxis?: boolean | undefined;
387
+ crossAxis?: boolean | "alignment" | undefined;
388
388
  fallbackPlacements?: Array<Placement> | undefined;
389
389
  fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
390
390
  fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
@@ -392,7 +392,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
392
392
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
393
393
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
394
394
  altBoundary?: boolean | undefined;
395
- padding?: import('@floating-ui/core').Padding | undefined;
395
+ padding?: import('@floating-ui/utils').Padding | undefined;
396
396
  boundary?: import('@floating-ui/dom').Boundary | undefined;
397
397
  }>;
398
398
  offsetOptions: Partial<OffsetOptions>;
@@ -402,9 +402,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
402
402
  rootBoundary?: import('@floating-ui/core').RootBoundary | undefined;
403
403
  elementContext?: import('@floating-ui/core').ElementContext | undefined;
404
404
  altBoundary?: boolean | undefined;
405
- padding?: import('@floating-ui/core').Padding | undefined;
405
+ padding?: import('@floating-ui/utils').Padding | undefined;
406
406
  limiter?: {
407
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
407
+ fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/utils').Coords;
408
408
  options?: any;
409
409
  } | undefined;
410
410
  boundary?: import('@floating-ui/dom').Boundary | undefined;
@@ -18,12 +18,12 @@ declare function __VLS_template(): {
18
18
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
19
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
20
  click: (...args: any[]) => void;
21
- hover: (...args: any[]) => void;
22
21
  focus: (...args: any[]) => void;
22
+ hover: (...args: any[]) => void;
23
23
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
24
24
  onClick?: ((...args: any[]) => any) | undefined;
25
- onHover?: ((...args: any[]) => any) | undefined;
26
25
  onFocus?: ((...args: any[]) => any) | undefined;
26
+ onHover?: ((...args: any[]) => any) | undefined;
27
27
  }>, {
28
28
  disabled: boolean;
29
29
  selected: boolean;
@@ -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/core').Padding | undefined;
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/core').Padding | undefined;
80
+ padding?: import('@floating-ui/utils').Padding | undefined;
81
81
  limiter?: {
82
- fn: (state: import('@floating-ui/core').MiddlewareState) => import('@floating-ui/core').Coords;
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;
@@ -13,11 +13,11 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- click: (...args: any[]) => void;
17
16
  close: (...args: any[]) => void;
17
+ click: (...args: any[]) => void;
18
18
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
- onClick?: ((...args: any[]) => any) | undefined;
20
19
  onClose?: ((...args: any[]) => any) | undefined;
20
+ onClick?: ((...args: any[]) => any) | undefined;
21
21
  }>, {
22
22
  type: TOverlayType;
23
23
  show: boolean;
@@ -4,11 +4,11 @@ type __VLS_Props = {
4
4
  move: number;
5
5
  };
6
6
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
- update: (...args: any[]) => void;
8
7
  move: (...args: any[]) => void;
8
+ update: (...args: any[]) => void;
9
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- onUpdate?: ((...args: any[]) => any) | undefined;
11
10
  onMove?: ((...args: any[]) => any) | undefined;
11
+ onUpdate?: ((...args: any[]) => any) | undefined;
12
12
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
13
13
  scrollbarRef: HTMLDivElement;
14
14
  thumbRef: HTMLDivElement;
@@ -30,13 +30,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
30
30
  scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
31
31
  update: () => Promise<void>;
32
32
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
- scroll: (value: number) => any;
34
33
  intersect: (args_0: ScrollIntersectionEvent) => any;
34
+ scroll: (value: number) => any;
35
35
  scrollXActive: (value: boolean) => any;
36
36
  scrollYActive: (value: boolean) => any;
37
37
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
38
- onScroll?: ((value: number) => any) | undefined;
39
38
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
39
+ onScroll?: ((value: number) => any) | undefined;
40
40
  onScrollXActive?: ((value: boolean) => any) | undefined;
41
41
  onScrollYActive?: ((value: boolean) => any) | undefined;
42
42
  }>, {
@@ -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
+ export { default as BSegmentedControls } from './SegmentedControls.vue';
2
+ export * from './types';
@@ -0,0 +1,5 @@
1
+ import { TIcon } from '../types';
2
+ export type Segment = {
3
+ icon?: TIcon;
4
+ label?: string;
5
+ };
@@ -22,8 +22,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
22
22
  triggers?: import('../..').ScrollTrigger[];
23
23
  windowResize?: boolean;
24
24
  }> & Readonly<{
25
- onScroll?: ((value: number) => any) | undefined;
26
25
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
26
+ onScroll?: ((value: number) => any) | undefined;
27
27
  onScrollXActive?: ((value: boolean) => any) | undefined;
28
28
  onScrollYActive?: ((value: boolean) => any) | undefined;
29
29
  }>, {
@@ -33,8 +33,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
33
33
  scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
34
34
  update: () => Promise<void>;
35
35
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
36
- scroll: (value: number) => any;
37
36
  intersect: (args_0: ScrollIntersectionEvent) => any;
37
+ scroll: (value: number) => any;
38
38
  scrollXActive: (value: boolean) => any;
39
39
  scrollYActive: (value: boolean) => any;
40
40
  }, import('vue').PublicProps, {
@@ -69,8 +69,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
69
69
  triggers?: import('../..').ScrollTrigger[];
70
70
  windowResize?: boolean;
71
71
  }> & Readonly<{
72
- onScroll?: ((value: number) => any) | undefined;
73
72
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
73
+ onScroll?: ((value: number) => any) | undefined;
74
74
  onScrollXActive?: ((value: boolean) => any) | undefined;
75
75
  onScrollYActive?: ((value: boolean) => any) | undefined;
76
76
  }>, {
@@ -105,8 +105,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
105
105
  triggers?: import('../..').ScrollTrigger[];
106
106
  windowResize?: boolean;
107
107
  }> & Readonly<{
108
- onScroll?: ((value: number) => any) | undefined;
109
108
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
109
+ onScroll?: ((value: number) => any) | undefined;
110
110
  onScrollXActive?: ((value: boolean) => any) | undefined;
111
111
  onScrollYActive?: ((value: boolean) => any) | undefined;
112
112
  }>, {
@@ -116,8 +116,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
116
116
  scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
117
117
  update: () => Promise<void>;
118
118
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
119
- scroll: (value: number) => any;
120
119
  intersect: (args_0: ScrollIntersectionEvent) => any;
120
+ scroll: (value: number) => any;
121
121
  scrollXActive: (value: boolean) => any;
122
122
  scrollYActive: (value: boolean) => any;
123
123
  }, string, {
@@ -147,8 +147,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
147
147
  triggers?: import('../..').ScrollTrigger[];
148
148
  windowResize?: boolean;
149
149
  }> & Readonly<{
150
- onScroll?: ((value: number) => any) | undefined;
151
150
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
151
+ onScroll?: ((value: number) => any) | undefined;
152
152
  onScrollXActive?: ((value: boolean) => any) | undefined;
153
153
  onScrollYActive?: ((value: boolean) => any) | undefined;
154
154
  }>, {
@@ -158,8 +158,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
158
158
  scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
159
159
  update: () => Promise<void>;
160
160
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
161
- scroll: (value: number) => any;
162
161
  intersect: (args_0: ScrollIntersectionEvent) => any;
162
+ scroll: (value: number) => any;
163
163
  scrollXActive: (value: boolean) => any;
164
164
  scrollYActive: (value: boolean) => any;
165
165
  }, import('vue').PublicProps, {
@@ -194,8 +194,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
194
194
  triggers?: import('../..').ScrollTrigger[];
195
195
  windowResize?: boolean;
196
196
  }> & Readonly<{
197
- onScroll?: ((value: number) => any) | undefined;
198
197
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
198
+ onScroll?: ((value: number) => any) | undefined;
199
199
  onScrollXActive?: ((value: boolean) => any) | undefined;
200
200
  onScrollYActive?: ((value: boolean) => any) | undefined;
201
201
  }>, {
@@ -230,8 +230,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
230
230
  triggers?: import('../..').ScrollTrigger[];
231
231
  windowResize?: boolean;
232
232
  }> & Readonly<{
233
- onScroll?: ((value: number) => any) | undefined;
234
233
  onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
234
+ onScroll?: ((value: number) => any) | undefined;
235
235
  onScrollXActive?: ((value: boolean) => any) | undefined;
236
236
  onScrollYActive?: ((value: boolean) => any) | undefined;
237
237
  }>, {
@@ -241,8 +241,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
241
241
  scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
242
242
  update: () => Promise<void>;
243
243
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
244
- scroll: (value: number) => any;
245
244
  intersect: (args_0: ScrollIntersectionEvent) => any;
245
+ scroll: (value: number) => any;
246
246
  scrollXActive: (value: boolean) => any;
247
247
  scrollYActive: (value: boolean) => any;
248
248
  }, string, {
@@ -9,13 +9,13 @@ type __VLS_Props = {
9
9
  };
10
10
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
11
  click: (...args: any[]) => void;
12
- hover: (...args: any[]) => void;
13
12
  focus: (...args: any[]) => void;
14
13
  delete: (...args: any[]) => void;
14
+ hover: (...args: any[]) => void;
15
15
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
16
  onClick?: ((...args: any[]) => any) | undefined;
17
- onHover?: ((...args: any[]) => any) | undefined;
18
17
  onFocus?: ((...args: any[]) => any) | undefined;
19
18
  onDelete?: ((...args: any[]) => any) | undefined;
19
+ onHover?: ((...args: any[]) => any) | undefined;
20
20
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
21
21
  export default _default;
@@ -14,9 +14,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
14
14
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
15
15
  onSelect?: ((...args: any[]) => any) | undefined;
16
16
  }>, {
17
- notification: boolean;
18
- type: "default" | "pill";
19
17
  size: "small" | "default";
18
+ type: "default" | "pill";
19
+ notification: boolean;
20
20
  grow: boolean;
21
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
22
22
  tabRef: HTMLButtonElement;
@@ -42,18 +42,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
42
42
  focus: (position: TFocusPosition) => void;
43
43
  setContent: (value: string) => boolean | undefined;
44
44
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
45
- focus: (...args: any[]) => void;
46
- blur: (...args: any[]) => void;
47
45
  change: (...args: any[]) => void;
46
+ blur: (...args: any[]) => void;
47
+ focus: (...args: any[]) => void;
48
48
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
49
- onFocus?: ((...args: any[]) => any) | undefined;
50
- onBlur?: ((...args: any[]) => any) | undefined;
51
49
  onChange?: ((...args: any[]) => any) | undefined;
50
+ onBlur?: ((...args: any[]) => any) | undefined;
51
+ onFocus?: ((...args: any[]) => any) | undefined;
52
52
  }>, {
53
53
  link: boolean;
54
+ expandVertically: boolean;
54
55
  heading: boolean;
55
56
  history: boolean;
56
- expandVertically: boolean;
57
57
  highlight: boolean;
58
58
  insert: boolean;
59
59
  autoHideMenu: boolean;
@@ -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;