prlg-ui 1.8.253 → 1.8.254
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 +1 -1
- package/dist/reka-ui/index.es.js +162 -158
- package/dist/rekaUI.d.ts +26 -7
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -663,9 +663,13 @@ declare const __VLS_component_63: DefineComponent<ISelectItemProps, {}, {}, {},
|
|
|
663
663
|
|
|
664
664
|
declare const __VLS_component_64: DefineComponent<SelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
665
665
|
|
|
666
|
-
declare const __VLS_component_65: DefineComponent<
|
|
666
|
+
declare const __VLS_component_65: DefineComponent<ISelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISelectValueProps> & Readonly<{}>, {
|
|
667
|
+
maxSelectedLabels: number;
|
|
668
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
669
|
+
|
|
670
|
+
declare const __VLS_component_66: DefineComponent<SelectViewportProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
667
671
|
|
|
668
|
-
declare const
|
|
672
|
+
declare const __VLS_component_67: DefineComponent<SwitchRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
669
673
|
"update:modelValue": (payload: boolean) => any;
|
|
670
674
|
}, string, PublicProps, Readonly<SwitchRootProps> & Readonly<{
|
|
671
675
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
@@ -1439,6 +1443,15 @@ declare function __VLS_template_66(): {
|
|
|
1439
1443
|
rootEl: any;
|
|
1440
1444
|
};
|
|
1441
1445
|
|
|
1446
|
+
declare function __VLS_template_67(): {
|
|
1447
|
+
attrs: Partial<{}>;
|
|
1448
|
+
slots: {
|
|
1449
|
+
default?(_: {}): any;
|
|
1450
|
+
};
|
|
1451
|
+
refs: {};
|
|
1452
|
+
rootEl: any;
|
|
1453
|
+
};
|
|
1454
|
+
|
|
1442
1455
|
declare function __VLS_template_7(): {
|
|
1443
1456
|
attrs: Partial<{}>;
|
|
1444
1457
|
slots: {
|
|
@@ -1592,6 +1605,8 @@ declare type __VLS_TemplateResult_65 = ReturnType<typeof __VLS_template_65>;
|
|
|
1592
1605
|
|
|
1593
1606
|
declare type __VLS_TemplateResult_66 = ReturnType<typeof __VLS_template_66>;
|
|
1594
1607
|
|
|
1608
|
+
declare type __VLS_TemplateResult_67 = ReturnType<typeof __VLS_template_67>;
|
|
1609
|
+
|
|
1595
1610
|
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
1596
1611
|
|
|
1597
1612
|
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
@@ -1976,6 +1991,12 @@ declare type __VLS_WithTemplateSlots_66<T, S> = T & {
|
|
|
1976
1991
|
};
|
|
1977
1992
|
};
|
|
1978
1993
|
|
|
1994
|
+
declare type __VLS_WithTemplateSlots_67<T, S> = T & {
|
|
1995
|
+
new (): {
|
|
1996
|
+
$slots: S;
|
|
1997
|
+
};
|
|
1998
|
+
};
|
|
1999
|
+
|
|
1979
2000
|
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
1980
2001
|
new (): {
|
|
1981
2002
|
$slots: S;
|
|
@@ -2593,17 +2614,15 @@ export declare const SelectSeparator: DefineComponent<SelectSeparatorProps, {},
|
|
|
2593
2614
|
|
|
2594
2615
|
export declare const SelectTrigger: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
|
|
2595
2616
|
|
|
2596
|
-
export declare const SelectValue:
|
|
2597
|
-
maxSelectedLabels: number;
|
|
2598
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2617
|
+
export declare const SelectValue: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
|
|
2599
2618
|
|
|
2600
|
-
export declare const SelectViewport:
|
|
2619
|
+
export declare const SelectViewport: __VLS_WithTemplateSlots_66<typeof __VLS_component_66, __VLS_TemplateResult_66["slots"]>;
|
|
2601
2620
|
|
|
2602
2621
|
export declare const Spinner: DefineComponent<ISpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISpinnerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2603
2622
|
|
|
2604
2623
|
declare type StringOrVNode = string | VNode | (() => VNode);
|
|
2605
2624
|
|
|
2606
|
-
export declare const SwitchRoot:
|
|
2625
|
+
export declare const SwitchRoot: __VLS_WithTemplateSlots_67<typeof __VLS_component_67, __VLS_TemplateResult_67["slots"]>;
|
|
2607
2626
|
|
|
2608
2627
|
export declare const SwitchThumb: DefineComponent<SwitchThumbProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2609
2628
|
|