prlg-ui 1.8.397 → 1.8.398
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 +169 -164
- package/dist/rekaUI.d.ts +26 -16
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -981,10 +981,10 @@ width: number;
|
|
|
981
981
|
|
|
982
982
|
declare const __VLS_component_80: DefineComponent<ISelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISelectItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
983
983
|
|
|
984
|
-
declare const __VLS_component_81: DefineComponent<
|
|
984
|
+
declare const __VLS_component_81: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
985
985
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
986
986
|
"update:open": (value: boolean) => any;
|
|
987
|
-
}, string, PublicProps, Readonly<
|
|
987
|
+
}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
|
|
988
988
|
"onUpdate:modelValue"?: ((value: AcceptableValue) => any) | undefined;
|
|
989
989
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
990
990
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -1317,7 +1317,9 @@ declare type __VLS_Props_13 = {
|
|
|
1317
1317
|
|
|
1318
1318
|
declare type __VLS_Props_14 = OTPCodeProps;
|
|
1319
1319
|
|
|
1320
|
-
declare type __VLS_Props_15 =
|
|
1320
|
+
declare type __VLS_Props_15 = CalendarProps_2;
|
|
1321
|
+
|
|
1322
|
+
declare type __VLS_Props_16 = {
|
|
1321
1323
|
label?: string;
|
|
1322
1324
|
placeholder?: string;
|
|
1323
1325
|
name?: string;
|
|
@@ -1337,14 +1339,14 @@ declare type __VLS_Props_15 = {
|
|
|
1337
1339
|
minHeight?: string;
|
|
1338
1340
|
};
|
|
1339
1341
|
|
|
1340
|
-
declare type
|
|
1342
|
+
declare type __VLS_Props_17 = Props;
|
|
1341
1343
|
|
|
1342
|
-
declare type
|
|
1344
|
+
declare type __VLS_Props_18 = {
|
|
1343
1345
|
placeholder?: string;
|
|
1344
1346
|
size?: 'small' | 'default' | 'large';
|
|
1345
1347
|
};
|
|
1346
1348
|
|
|
1347
|
-
declare type
|
|
1349
|
+
declare type __VLS_Props_19 = SelectRootProps;
|
|
1348
1350
|
|
|
1349
1351
|
declare type __VLS_Props_2 = {
|
|
1350
1352
|
value?: string | number;
|
|
@@ -1398,6 +1400,10 @@ declare type __VLS_PublicProps = {
|
|
|
1398
1400
|
'open'?: boolean;
|
|
1399
1401
|
} & __VLS_Props_4;
|
|
1400
1402
|
|
|
1403
|
+
declare type __VLS_PublicProps_10 = {
|
|
1404
|
+
modelValue: TShedule | null;
|
|
1405
|
+
} & __VLS_Props_18;
|
|
1406
|
+
|
|
1401
1407
|
declare type __VLS_PublicProps_2 = {
|
|
1402
1408
|
modelValue?: string | boolean | any | null | any[];
|
|
1403
1409
|
} & __VLS_Props_5;
|
|
@@ -1421,15 +1427,15 @@ declare type __VLS_PublicProps_6 = {
|
|
|
1421
1427
|
} & __VLS_Props_14;
|
|
1422
1428
|
|
|
1423
1429
|
declare type __VLS_PublicProps_7 = {
|
|
1424
|
-
modelValue
|
|
1430
|
+
modelValue: any;
|
|
1425
1431
|
} & __VLS_Props_15;
|
|
1426
1432
|
|
|
1427
1433
|
declare type __VLS_PublicProps_8 = {
|
|
1428
|
-
modelValue?:
|
|
1434
|
+
modelValue?: string;
|
|
1429
1435
|
} & __VLS_Props_16;
|
|
1430
1436
|
|
|
1431
1437
|
declare type __VLS_PublicProps_9 = {
|
|
1432
|
-
modelValue
|
|
1438
|
+
modelValue?: TTimeValue | null;
|
|
1433
1439
|
} & __VLS_Props_17;
|
|
1434
1440
|
|
|
1435
1441
|
declare function __VLS_template(): {
|
|
@@ -4109,7 +4115,11 @@ size: "small" | "default" | "large";
|
|
|
4109
4115
|
|
|
4110
4116
|
export { RadioGroupRoot }
|
|
4111
4117
|
|
|
4112
|
-
export declare const RangeCalendar: DefineComponent<
|
|
4118
|
+
export declare const RangeCalendar: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4119
|
+
"update:modelValue": (value: any) => any;
|
|
4120
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
4121
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
4122
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4113
4123
|
|
|
4114
4124
|
export { RangeCalendarCell }
|
|
4115
4125
|
|
|
@@ -4147,9 +4157,9 @@ iconOnly: boolean;
|
|
|
4147
4157
|
|
|
4148
4158
|
export { RangeCalendarRoot }
|
|
4149
4159
|
|
|
4150
|
-
export declare const Schedule: DefineComponent<
|
|
4160
|
+
export declare const Schedule: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4151
4161
|
"update:modelValue": (value: Partial<Record<TDayWeek, TDaySchedule>> | null) => any;
|
|
4152
|
-
}, string, PublicProps, Readonly<
|
|
4162
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
4153
4163
|
"onUpdate:modelValue"?: ((value: Partial<Record<TDayWeek, TDaySchedule>> | null) => any) | undefined;
|
|
4154
4164
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4155
4165
|
|
|
@@ -4235,13 +4245,13 @@ declare type TDaySchedule = {
|
|
|
4235
4245
|
|
|
4236
4246
|
export declare type TDayWeek = "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday";
|
|
4237
4247
|
|
|
4238
|
-
export declare const Textarea: DefineComponent<
|
|
4248
|
+
export declare const Textarea: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4239
4249
|
"update:modelValue": (value: string) => any;
|
|
4240
4250
|
} & {
|
|
4241
4251
|
blur: (value: FocusEvent) => any;
|
|
4242
4252
|
focusIn: (value: FocusEvent) => any;
|
|
4243
4253
|
focusOut: (value: FocusEvent) => any;
|
|
4244
|
-
}, string, PublicProps, Readonly<
|
|
4254
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
4245
4255
|
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
4246
4256
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4247
4257
|
onFocusIn?: ((value: FocusEvent) => any) | undefined;
|
|
@@ -4250,9 +4260,9 @@ onFocusOut?: ((value: FocusEvent) => any) | undefined;
|
|
|
4250
4260
|
textareaRef: HTMLTextAreaElement;
|
|
4251
4261
|
}, HTMLDivElement>;
|
|
4252
4262
|
|
|
4253
|
-
export declare const TimeField: DefineComponent<
|
|
4263
|
+
export declare const TimeField: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4254
4264
|
"update:modelValue": (value: TTimeValue | null) => any;
|
|
4255
|
-
}, string, PublicProps, Readonly<
|
|
4265
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
4256
4266
|
"onUpdate:modelValue"?: ((value: TTimeValue | null) => any) | undefined;
|
|
4257
4267
|
}>, {
|
|
4258
4268
|
locale: string;
|