prlg-ui 1.8.375 → 1.8.376
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 +3 -3
- package/dist/reka-ui/index.es.js +1573 -1558
- package/dist/rekaUI.d.ts +5 -4
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -242,7 +242,7 @@ declare const __VLS_component_13: DefineComponent<IButtonProps, {}, {}, {}, {},
|
|
|
242
242
|
click: (event: MouseEvent) => any;
|
|
243
243
|
}, string, PublicProps, Readonly<IButtonProps> & Readonly<{
|
|
244
244
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
245
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
245
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
246
246
|
|
|
247
247
|
declare const __VLS_component_14: DefineComponent<CalendarCellTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CalendarCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
248
248
|
|
|
@@ -270,7 +270,7 @@ onChange?: ((value: string | number | boolean | any[] | null, event: Event) => a
|
|
|
270
270
|
"onUpdate:modelValue"?: ((value: string | number | boolean | any[] | null) => any) | undefined;
|
|
271
271
|
"onUpdate:checked"?: ((value: boolean) => any) | undefined;
|
|
272
272
|
"onUpdate:indeterminate"?: ((value: boolean) => any) | undefined;
|
|
273
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
273
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
274
274
|
|
|
275
275
|
declare const __VLS_component_21: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
276
276
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
@@ -1294,7 +1294,7 @@ declare function __VLS_template_13(): {
|
|
|
1294
1294
|
default?(_: {}): any;
|
|
1295
1295
|
};
|
|
1296
1296
|
refs: {};
|
|
1297
|
-
rootEl:
|
|
1297
|
+
rootEl: any;
|
|
1298
1298
|
};
|
|
1299
1299
|
|
|
1300
1300
|
declare function __VLS_template_14(): {
|
|
@@ -1366,7 +1366,7 @@ declare function __VLS_template_20(): {
|
|
|
1366
1366
|
label?(_: {}): any;
|
|
1367
1367
|
};
|
|
1368
1368
|
refs: {};
|
|
1369
|
-
rootEl:
|
|
1369
|
+
rootEl: any;
|
|
1370
1370
|
};
|
|
1371
1371
|
|
|
1372
1372
|
declare function __VLS_template_21(): {
|
|
@@ -3456,6 +3456,7 @@ export declare interface IButtonProps {
|
|
|
3456
3456
|
url?: string | RouteLocationRaw;
|
|
3457
3457
|
strong?: boolean;
|
|
3458
3458
|
loading?: boolean;
|
|
3459
|
+
as?: AsTag;
|
|
3459
3460
|
}
|
|
3460
3461
|
|
|
3461
3462
|
declare interface ICalendarPrevProps extends Omit<CalendarNextProps, 'as' | 'asChild'>, IButtonProps {
|