prlg-ui 1.8.240 → 1.8.241
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/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +4 -4
- package/dist/reka-ui/index.es.js +5066 -4320
- package/dist/rekaUI.d.ts +343 -9
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { AlertDialogPortal } from 'reka-ui';
|
|
|
8
8
|
import { AlertDialogRoot } from 'reka-ui';
|
|
9
9
|
import { AlertDialogTitleProps } from 'reka-ui';
|
|
10
10
|
import { AlertDialogTriggerProps } from 'reka-ui';
|
|
11
|
+
import { AllowedComponentProps } from 'vue';
|
|
11
12
|
import { AsTag } from 'reka-ui';
|
|
12
13
|
import { CalendarCell } from 'reka-ui';
|
|
13
14
|
import { CalendarCellTriggerProps } from 'reka-ui';
|
|
@@ -23,8 +24,13 @@ import { CalendarPrevProps } from 'reka-ui';
|
|
|
23
24
|
import { default as CalendarRoot } from './CalendarRoot';
|
|
24
25
|
import { ColumnDef } from '@tanstack/vue-table';
|
|
25
26
|
import { Component } from 'vue';
|
|
27
|
+
import { ComponentCustomProperties } from 'vue';
|
|
28
|
+
import { ComponentCustomProps } from 'vue';
|
|
29
|
+
import { ComponentInternalInstance } from 'vue';
|
|
30
|
+
import { ComponentOptionsBase } from 'vue';
|
|
26
31
|
import { ComponentOptionsMixin } from 'vue';
|
|
27
32
|
import { ComponentProvideOptions } from 'vue';
|
|
33
|
+
import { ComponentPublicInstance } from 'vue';
|
|
28
34
|
import { ComputedRef } from 'vue';
|
|
29
35
|
import { ConfigType } from 'dayjs';
|
|
30
36
|
import { createColumnHelper } from '@tanstack/vue-table';
|
|
@@ -65,6 +71,7 @@ import { default as DateRangePickerRoot } from './DateRangePickerRoot';
|
|
|
65
71
|
import { DateRangePickerTriggerProps } from 'reka-ui';
|
|
66
72
|
import { Dayjs } from 'dayjs';
|
|
67
73
|
import { default as dayjs } from 'dayjs';
|
|
74
|
+
import { DebuggerEvent } from 'vue';
|
|
68
75
|
import { DefineComponent } from 'vue';
|
|
69
76
|
import { DialogCloseProps } from 'reka-ui';
|
|
70
77
|
import { DialogContentProps } from 'reka-ui';
|
|
@@ -93,9 +100,13 @@ import { DropdownMenuSubContentProps } from 'reka-ui';
|
|
|
93
100
|
import { DropdownMenuSubTriggerProps } from 'reka-ui';
|
|
94
101
|
import { DropdownMenuTrigger } from 'reka-ui';
|
|
95
102
|
import { FocusOutsideEvent } from 'reka-ui';
|
|
103
|
+
import { GlobalComponents } from 'vue';
|
|
104
|
+
import { GlobalDirectives } from 'vue';
|
|
96
105
|
import { LabelProps } from 'reka-ui';
|
|
97
106
|
import { MaybeRefOrGetter } from 'vue';
|
|
107
|
+
import { nextTick } from 'vue';
|
|
98
108
|
import { ObjectDirective } from 'vue';
|
|
109
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
99
110
|
import { PaginationEllipsisProps } from 'reka-ui';
|
|
100
111
|
import { PaginationFirstProps } from 'reka-ui';
|
|
101
112
|
import { PaginationLastProps } from 'reka-ui';
|
|
@@ -115,10 +126,15 @@ import { PopoverTrigger } from 'reka-ui';
|
|
|
115
126
|
import { PublicProps } from 'vue';
|
|
116
127
|
import { RadioGroupItemProps } from 'reka-ui';
|
|
117
128
|
import { RadioGroupRoot } from 'reka-ui';
|
|
129
|
+
import { Ref } from 'vue';
|
|
118
130
|
import { RendererElement } from 'vue';
|
|
119
131
|
import { RendererNode } from 'vue';
|
|
120
132
|
import { RouteLocationRaw } from 'vue-router';
|
|
121
133
|
import { RowSelectionState } from '@tanstack/vue-table';
|
|
134
|
+
import { ScrollAreaRoot as ScrollAreaRoot_2 } from 'reka-ui';
|
|
135
|
+
import { ScrollAreaRootProps } from 'reka-ui';
|
|
136
|
+
import { ScrollAreaScrollbarProps } from 'reka-ui';
|
|
137
|
+
import { ScrollAreaViewportProps } from 'reka-ui';
|
|
122
138
|
import { SelectContentProps } from 'reka-ui';
|
|
123
139
|
import { SelectGroup } from 'reka-ui';
|
|
124
140
|
import { SelectIcon } from 'reka-ui';
|
|
@@ -134,6 +150,8 @@ import { SelectSeparatorProps } from 'reka-ui';
|
|
|
134
150
|
import { SelectTriggerProps } from 'reka-ui';
|
|
135
151
|
import { SelectValueProps } from 'reka-ui';
|
|
136
152
|
import { SelectViewportProps } from 'reka-ui';
|
|
153
|
+
import { ShallowUnwrapRef } from 'vue';
|
|
154
|
+
import { Slot } from 'vue';
|
|
137
155
|
import { SortingState } from '@tanstack/vue-table';
|
|
138
156
|
import { SwitchRootProps } from 'reka-ui';
|
|
139
157
|
import { SwitchThumbProps } from 'reka-ui';
|
|
@@ -155,6 +173,9 @@ import { TooltipProvider } from 'reka-ui';
|
|
|
155
173
|
import { TooltipRoot } from 'reka-ui';
|
|
156
174
|
import { TooltipTrigger } from 'reka-ui';
|
|
157
175
|
import { VNode } from 'vue';
|
|
176
|
+
import { VNodeProps } from 'vue';
|
|
177
|
+
import { WatchOptions } from 'vue';
|
|
178
|
+
import { WatchStopHandle } from 'vue';
|
|
158
179
|
|
|
159
180
|
declare const __VLS_component: DefineComponent<IAccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IAccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
160
181
|
|
|
@@ -488,7 +509,137 @@ strong: boolean;
|
|
|
488
509
|
as: AsTag | Component;
|
|
489
510
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
490
511
|
|
|
491
|
-
declare const __VLS_component_60: DefineComponent<
|
|
512
|
+
declare const __VLS_component_60: DefineComponent<IScrollAreaRootProps, {
|
|
513
|
+
scrollToBottom: typeof scrollToBottom;
|
|
514
|
+
scrollToTop: typeof scrollToTop;
|
|
515
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IScrollAreaRootProps> & Readonly<{}>, {
|
|
516
|
+
maxHeight: number | string;
|
|
517
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
518
|
+
scrollArea: ({
|
|
519
|
+
$: ComponentInternalInstance;
|
|
520
|
+
$data: {};
|
|
521
|
+
$props: {
|
|
522
|
+
readonly maxHeight?: number | string | undefined;
|
|
523
|
+
readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
|
|
524
|
+
readonly dir?: ("ltr" | "rtl") | undefined;
|
|
525
|
+
readonly scrollHideDelay?: number | undefined;
|
|
526
|
+
readonly asChild?: boolean | undefined;
|
|
527
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
528
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
529
|
+
$attrs: {
|
|
530
|
+
[x: string]: unknown;
|
|
531
|
+
};
|
|
532
|
+
$refs: {
|
|
533
|
+
[x: string]: unknown;
|
|
534
|
+
};
|
|
535
|
+
$slots: Readonly<{
|
|
536
|
+
[name: string]: Slot<any> | undefined;
|
|
537
|
+
}>;
|
|
538
|
+
$root: ComponentPublicInstance | null;
|
|
539
|
+
$parent: ComponentPublicInstance | null;
|
|
540
|
+
$host: Element | null;
|
|
541
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
542
|
+
$el: any;
|
|
543
|
+
$options: ComponentOptionsBase<Readonly<IScrollAreaRootProps> & Readonly<{}>, {
|
|
544
|
+
ScrollAreaRoot: typeof ScrollAreaRoot_2;
|
|
545
|
+
forwared: typeof forwared;
|
|
546
|
+
height: typeof height;
|
|
547
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
548
|
+
maxHeight: number | string;
|
|
549
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
550
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
551
|
+
created?: (() => void) | (() => void)[];
|
|
552
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
553
|
+
mounted?: (() => void) | (() => void)[];
|
|
554
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
555
|
+
updated?: (() => void) | (() => void)[];
|
|
556
|
+
activated?: (() => void) | (() => void)[];
|
|
557
|
+
deactivated?: (() => void) | (() => void)[];
|
|
558
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
559
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
560
|
+
destroyed?: (() => void) | (() => void)[];
|
|
561
|
+
unmounted?: (() => void) | (() => void)[];
|
|
562
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
563
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
564
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
565
|
+
};
|
|
566
|
+
$forceUpdate: () => void;
|
|
567
|
+
$nextTick: nextTick;
|
|
568
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
569
|
+
} & Readonly<{
|
|
570
|
+
maxHeight: number | string;
|
|
571
|
+
}> & Omit<Readonly<IScrollAreaRootProps> & Readonly<{}>, "height" | "maxHeight" | "forwared" | "ScrollAreaRoot"> & ShallowUnwrapRef< {
|
|
572
|
+
ScrollAreaRoot: typeof ScrollAreaRoot_2;
|
|
573
|
+
forwared: typeof forwared;
|
|
574
|
+
height: typeof height;
|
|
575
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
576
|
+
$slots: {
|
|
577
|
+
default?(_: {}): any;
|
|
578
|
+
};
|
|
579
|
+
} & {
|
|
580
|
+
$: ComponentInternalInstance;
|
|
581
|
+
$data: {};
|
|
582
|
+
$props: {
|
|
583
|
+
readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
|
|
584
|
+
readonly dir?: ("ltr" | "rtl") | undefined;
|
|
585
|
+
readonly scrollHideDelay?: number | undefined;
|
|
586
|
+
readonly asChild?: boolean | undefined;
|
|
587
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
588
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
589
|
+
$attrs: {
|
|
590
|
+
[x: string]: unknown;
|
|
591
|
+
};
|
|
592
|
+
$refs: {
|
|
593
|
+
[x: string]: unknown;
|
|
594
|
+
};
|
|
595
|
+
$slots: Readonly<{
|
|
596
|
+
[name: string]: Slot<any> | undefined;
|
|
597
|
+
}>;
|
|
598
|
+
$root: ComponentPublicInstance | null;
|
|
599
|
+
$parent: ComponentPublicInstance | null;
|
|
600
|
+
$host: Element | null;
|
|
601
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
602
|
+
$el: any;
|
|
603
|
+
$options: ComponentOptionsBase<Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
604
|
+
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
605
|
+
scrollTop: () => void;
|
|
606
|
+
scrollTopLeft: () => void;
|
|
607
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
608
|
+
type: "scroll" | "auto" | "hover" | "always";
|
|
609
|
+
scrollHideDelay: number;
|
|
610
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
611
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
612
|
+
created?: (() => void) | (() => void)[];
|
|
613
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
614
|
+
mounted?: (() => void) | (() => void)[];
|
|
615
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
616
|
+
updated?: (() => void) | (() => void)[];
|
|
617
|
+
activated?: (() => void) | (() => void)[];
|
|
618
|
+
deactivated?: (() => void) | (() => void)[];
|
|
619
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
620
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
621
|
+
destroyed?: (() => void) | (() => void)[];
|
|
622
|
+
unmounted?: (() => void) | (() => void)[];
|
|
623
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
624
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
625
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
626
|
+
};
|
|
627
|
+
$forceUpdate: () => void;
|
|
628
|
+
$nextTick: nextTick;
|
|
629
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
630
|
+
} & Readonly<{
|
|
631
|
+
type: "scroll" | "auto" | "hover" | "always";
|
|
632
|
+
scrollHideDelay: number;
|
|
633
|
+
}> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "type" | "viewport" | "scrollHideDelay" | "scrollTop" | "scrollTopLeft"> & ShallowUnwrapRef< {
|
|
634
|
+
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
635
|
+
scrollTop: () => void;
|
|
636
|
+
scrollTopLeft: () => void;
|
|
637
|
+
}>) | null;
|
|
638
|
+
}, any>;
|
|
639
|
+
|
|
640
|
+
declare const __VLS_component_61: DefineComponent<ScrollAreaViewportProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
641
|
+
|
|
642
|
+
declare const __VLS_component_62: DefineComponent<SelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
492
643
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
493
644
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
494
645
|
closeAutoFocus: (event: Event) => any;
|
|
@@ -498,11 +649,11 @@ onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
|
498
649
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
499
650
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
500
651
|
|
|
501
|
-
declare const
|
|
652
|
+
declare const __VLS_component_63: DefineComponent<SelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
502
653
|
|
|
503
|
-
declare const
|
|
654
|
+
declare const __VLS_component_64: DefineComponent<SelectViewportProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
504
655
|
|
|
505
|
-
declare const
|
|
656
|
+
declare const __VLS_component_65: DefineComponent<SwitchRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
506
657
|
"update:modelValue": (payload: boolean) => any;
|
|
507
658
|
}, string, PublicProps, Readonly<SwitchRootProps> & Readonly<{
|
|
508
659
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
@@ -1084,7 +1235,128 @@ declare function __VLS_template_60(): {
|
|
|
1084
1235
|
slots: {
|
|
1085
1236
|
default?(_: {}): any;
|
|
1086
1237
|
};
|
|
1087
|
-
refs: {
|
|
1238
|
+
refs: {
|
|
1239
|
+
scrollArea: ({
|
|
1240
|
+
$: ComponentInternalInstance;
|
|
1241
|
+
$data: {};
|
|
1242
|
+
$props: {
|
|
1243
|
+
readonly maxHeight?: number | string | undefined;
|
|
1244
|
+
readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
|
|
1245
|
+
readonly dir?: ("ltr" | "rtl") | undefined;
|
|
1246
|
+
readonly scrollHideDelay?: number | undefined;
|
|
1247
|
+
readonly asChild?: boolean | undefined;
|
|
1248
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
1249
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1250
|
+
$attrs: {
|
|
1251
|
+
[x: string]: unknown;
|
|
1252
|
+
};
|
|
1253
|
+
$refs: {
|
|
1254
|
+
[x: string]: unknown;
|
|
1255
|
+
};
|
|
1256
|
+
$slots: Readonly<{
|
|
1257
|
+
[name: string]: Slot<any> | undefined;
|
|
1258
|
+
}>;
|
|
1259
|
+
$root: ComponentPublicInstance | null;
|
|
1260
|
+
$parent: ComponentPublicInstance | null;
|
|
1261
|
+
$host: Element | null;
|
|
1262
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1263
|
+
$el: any;
|
|
1264
|
+
$options: ComponentOptionsBase<Readonly<IScrollAreaRootProps> & Readonly<{}>, {
|
|
1265
|
+
ScrollAreaRoot: typeof ScrollAreaRoot_2;
|
|
1266
|
+
forwared: typeof forwared;
|
|
1267
|
+
height: typeof height;
|
|
1268
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1269
|
+
maxHeight: number | string;
|
|
1270
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1271
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1272
|
+
created?: (() => void) | (() => void)[];
|
|
1273
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1274
|
+
mounted?: (() => void) | (() => void)[];
|
|
1275
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1276
|
+
updated?: (() => void) | (() => void)[];
|
|
1277
|
+
activated?: (() => void) | (() => void)[];
|
|
1278
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1279
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1280
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1281
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1282
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1283
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1284
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1285
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1286
|
+
};
|
|
1287
|
+
$forceUpdate: () => void;
|
|
1288
|
+
$nextTick: nextTick;
|
|
1289
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1290
|
+
} & Readonly<{
|
|
1291
|
+
maxHeight: number | string;
|
|
1292
|
+
}> & Omit<Readonly<IScrollAreaRootProps> & Readonly<{}>, "height" | "maxHeight" | "forwared" | "ScrollAreaRoot"> & ShallowUnwrapRef< {
|
|
1293
|
+
ScrollAreaRoot: typeof ScrollAreaRoot_2;
|
|
1294
|
+
forwared: typeof forwared;
|
|
1295
|
+
height: typeof height;
|
|
1296
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1297
|
+
$slots: {
|
|
1298
|
+
default?(_: {}): any;
|
|
1299
|
+
};
|
|
1300
|
+
} & {
|
|
1301
|
+
$: ComponentInternalInstance;
|
|
1302
|
+
$data: {};
|
|
1303
|
+
$props: {
|
|
1304
|
+
readonly type?: ("scroll" | "auto" | "hover" | "always") | undefined;
|
|
1305
|
+
readonly dir?: ("ltr" | "rtl") | undefined;
|
|
1306
|
+
readonly scrollHideDelay?: number | undefined;
|
|
1307
|
+
readonly asChild?: boolean | undefined;
|
|
1308
|
+
readonly as?: (AsTag | Component) | undefined;
|
|
1309
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1310
|
+
$attrs: {
|
|
1311
|
+
[x: string]: unknown;
|
|
1312
|
+
};
|
|
1313
|
+
$refs: {
|
|
1314
|
+
[x: string]: unknown;
|
|
1315
|
+
};
|
|
1316
|
+
$slots: Readonly<{
|
|
1317
|
+
[name: string]: Slot<any> | undefined;
|
|
1318
|
+
}>;
|
|
1319
|
+
$root: ComponentPublicInstance | null;
|
|
1320
|
+
$parent: ComponentPublicInstance | null;
|
|
1321
|
+
$host: Element | null;
|
|
1322
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1323
|
+
$el: any;
|
|
1324
|
+
$options: ComponentOptionsBase<Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
1325
|
+
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1326
|
+
scrollTop: () => void;
|
|
1327
|
+
scrollTopLeft: () => void;
|
|
1328
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1329
|
+
type: "scroll" | "auto" | "hover" | "always";
|
|
1330
|
+
scrollHideDelay: number;
|
|
1331
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1332
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1333
|
+
created?: (() => void) | (() => void)[];
|
|
1334
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1335
|
+
mounted?: (() => void) | (() => void)[];
|
|
1336
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1337
|
+
updated?: (() => void) | (() => void)[];
|
|
1338
|
+
activated?: (() => void) | (() => void)[];
|
|
1339
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1340
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1341
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1342
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1343
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1344
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1345
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1346
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1347
|
+
};
|
|
1348
|
+
$forceUpdate: () => void;
|
|
1349
|
+
$nextTick: nextTick;
|
|
1350
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1351
|
+
} & Readonly<{
|
|
1352
|
+
type: "scroll" | "auto" | "hover" | "always";
|
|
1353
|
+
scrollHideDelay: number;
|
|
1354
|
+
}> & Omit<Readonly<ScrollAreaRootProps> & Readonly<{}>, "type" | "viewport" | "scrollHideDelay" | "scrollTop" | "scrollTopLeft"> & ShallowUnwrapRef< {
|
|
1355
|
+
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1356
|
+
scrollTop: () => void;
|
|
1357
|
+
scrollTopLeft: () => void;
|
|
1358
|
+
}>) | null;
|
|
1359
|
+
};
|
|
1088
1360
|
rootEl: any;
|
|
1089
1361
|
};
|
|
1090
1362
|
|
|
@@ -1115,6 +1387,24 @@ declare function __VLS_template_63(): {
|
|
|
1115
1387
|
rootEl: any;
|
|
1116
1388
|
};
|
|
1117
1389
|
|
|
1390
|
+
declare function __VLS_template_64(): {
|
|
1391
|
+
attrs: Partial<{}>;
|
|
1392
|
+
slots: {
|
|
1393
|
+
default?(_: {}): any;
|
|
1394
|
+
};
|
|
1395
|
+
refs: {};
|
|
1396
|
+
rootEl: any;
|
|
1397
|
+
};
|
|
1398
|
+
|
|
1399
|
+
declare function __VLS_template_65(): {
|
|
1400
|
+
attrs: Partial<{}>;
|
|
1401
|
+
slots: {
|
|
1402
|
+
default?(_: {}): any;
|
|
1403
|
+
};
|
|
1404
|
+
refs: {};
|
|
1405
|
+
rootEl: any;
|
|
1406
|
+
};
|
|
1407
|
+
|
|
1118
1408
|
declare function __VLS_template_7(): {
|
|
1119
1409
|
attrs: Partial<{}>;
|
|
1120
1410
|
slots: {
|
|
@@ -1262,6 +1552,10 @@ declare type __VLS_TemplateResult_62 = ReturnType<typeof __VLS_template_62>;
|
|
|
1262
1552
|
|
|
1263
1553
|
declare type __VLS_TemplateResult_63 = ReturnType<typeof __VLS_template_63>;
|
|
1264
1554
|
|
|
1555
|
+
declare type __VLS_TemplateResult_64 = ReturnType<typeof __VLS_template_64>;
|
|
1556
|
+
|
|
1557
|
+
declare type __VLS_TemplateResult_65 = ReturnType<typeof __VLS_template_65>;
|
|
1558
|
+
|
|
1265
1559
|
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
1266
1560
|
|
|
1267
1561
|
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
@@ -1628,6 +1922,18 @@ declare type __VLS_WithTemplateSlots_63<T, S> = T & {
|
|
|
1628
1922
|
};
|
|
1629
1923
|
};
|
|
1630
1924
|
|
|
1925
|
+
declare type __VLS_WithTemplateSlots_64<T, S> = T & {
|
|
1926
|
+
new (): {
|
|
1927
|
+
$slots: S;
|
|
1928
|
+
};
|
|
1929
|
+
};
|
|
1930
|
+
|
|
1931
|
+
declare type __VLS_WithTemplateSlots_65<T, S> = T & {
|
|
1932
|
+
new (): {
|
|
1933
|
+
$slots: S;
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
|
|
1631
1937
|
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
1632
1938
|
new (): {
|
|
1633
1939
|
$slots: S;
|
|
@@ -1939,6 +2245,20 @@ export declare const DropdownMenuSubTrigger: __VLS_WithTemplateSlots_41<typeof _
|
|
|
1939
2245
|
|
|
1940
2246
|
export { DropdownMenuTrigger }
|
|
1941
2247
|
|
|
2248
|
+
declare const forwared: ComputedRef<Readonly<{
|
|
2249
|
+
type: "scroll" | "auto" | "hover" | "always";
|
|
2250
|
+
dir: "ltr" | "rtl";
|
|
2251
|
+
scrollHideDelay: number;
|
|
2252
|
+
asChild: boolean;
|
|
2253
|
+
as: AsTag | Component;
|
|
2254
|
+
}> & {
|
|
2255
|
+
readonly maxHeight: string | number;
|
|
2256
|
+
} & {
|
|
2257
|
+
readonly asChild: boolean;
|
|
2258
|
+
}>;
|
|
2259
|
+
|
|
2260
|
+
declare const height: ComputedRef<string>;
|
|
2261
|
+
|
|
1942
2262
|
declare interface IAccordionContentProps {
|
|
1943
2263
|
/** Когда true, компонент будет отображать дочерний элемент как корневой */
|
|
1944
2264
|
asChild?: boolean;
|
|
@@ -2112,6 +2432,10 @@ declare interface IPopoverContentProps extends PopoverContentProps {
|
|
|
2112
2432
|
width?: number;
|
|
2113
2433
|
}
|
|
2114
2434
|
|
|
2435
|
+
declare interface IScrollAreaRootProps extends ScrollAreaRootProps {
|
|
2436
|
+
maxHeight?: number | string;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2115
2439
|
declare interface ISelectItemProps extends SelectItemProps {
|
|
2116
2440
|
label?: string;
|
|
2117
2441
|
}
|
|
@@ -2191,7 +2515,17 @@ export declare const RadioGroupItem: DefineComponent<RadioGroupItemProps, {}, {}
|
|
|
2191
2515
|
|
|
2192
2516
|
export { RadioGroupRoot }
|
|
2193
2517
|
|
|
2194
|
-
export declare const
|
|
2518
|
+
export declare const ScrollAreaRoot: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
|
|
2519
|
+
|
|
2520
|
+
export declare const ScrollAreaScrollbar: DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2521
|
+
|
|
2522
|
+
export declare const ScrollAreaViewport: __VLS_WithTemplateSlots_61<typeof __VLS_component_61, __VLS_TemplateResult_61["slots"]>;
|
|
2523
|
+
|
|
2524
|
+
declare function scrollToBottom(): void;
|
|
2525
|
+
|
|
2526
|
+
declare function scrollToTop(): void;
|
|
2527
|
+
|
|
2528
|
+
export declare const SelectContent: __VLS_WithTemplateSlots_62<typeof __VLS_component_62, __VLS_TemplateResult_62["slots"]>;
|
|
2195
2529
|
|
|
2196
2530
|
export { SelectGroup }
|
|
2197
2531
|
|
|
@@ -2215,17 +2549,17 @@ export { SelectScrollUpButton }
|
|
|
2215
2549
|
|
|
2216
2550
|
export declare const SelectSeparator: DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2217
2551
|
|
|
2218
|
-
export declare const SelectTrigger:
|
|
2552
|
+
export declare const SelectTrigger: __VLS_WithTemplateSlots_63<typeof __VLS_component_63, __VLS_TemplateResult_63["slots"]>;
|
|
2219
2553
|
|
|
2220
2554
|
export declare const SelectValue: DefineComponent<ISelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISelectValueProps> & Readonly<{}>, {
|
|
2221
2555
|
maxSelectedLabels: number;
|
|
2222
2556
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2223
2557
|
|
|
2224
|
-
export declare const SelectViewport:
|
|
2558
|
+
export declare const SelectViewport: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
|
|
2225
2559
|
|
|
2226
2560
|
export declare const Spinner: DefineComponent<ISpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISpinnerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2227
2561
|
|
|
2228
|
-
export declare const SwitchRoot:
|
|
2562
|
+
export declare const SwitchRoot: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
|
|
2229
2563
|
|
|
2230
2564
|
export declare const SwitchThumb: DefineComponent<SwitchThumbProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2231
2565
|
|