prlg-ui 1.8.336 → 1.8.338
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 +1613 -1514
- package/dist/rekaUI.d.ts +52 -10
- package/dist/scss/vars.scss +10 -2
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -787,10 +787,10 @@ onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
|
787
787
|
|
|
788
788
|
declare const __VLS_component_77: DefineComponent<ISelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISelectItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
789
789
|
|
|
790
|
-
declare const __VLS_component_78: DefineComponent<
|
|
790
|
+
declare const __VLS_component_78: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
791
791
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
792
792
|
"update:open": (value: boolean) => any;
|
|
793
|
-
}, string, PublicProps, Readonly<
|
|
793
|
+
}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
|
|
794
794
|
"onUpdate:modelValue"?: ((value: AcceptableValue) => any) | undefined;
|
|
795
795
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
796
796
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -1100,7 +1100,9 @@ declare type __VLS_Props_11 = {
|
|
|
1100
1100
|
viewInfo?: boolean;
|
|
1101
1101
|
};
|
|
1102
1102
|
|
|
1103
|
-
declare type __VLS_Props_12 =
|
|
1103
|
+
declare type __VLS_Props_12 = OTPCodeProps;
|
|
1104
|
+
|
|
1105
|
+
declare type __VLS_Props_13 = {
|
|
1104
1106
|
label?: string;
|
|
1105
1107
|
placeholder?: string;
|
|
1106
1108
|
name?: string;
|
|
@@ -1120,12 +1122,12 @@ declare type __VLS_Props_12 = {
|
|
|
1120
1122
|
minHeight?: string;
|
|
1121
1123
|
};
|
|
1122
1124
|
|
|
1123
|
-
declare type
|
|
1125
|
+
declare type __VLS_Props_14 = {
|
|
1124
1126
|
placeholder?: string;
|
|
1125
1127
|
size?: 'small' | 'default' | 'large';
|
|
1126
1128
|
};
|
|
1127
1129
|
|
|
1128
|
-
declare type
|
|
1130
|
+
declare type __VLS_Props_15 = SelectRootProps;
|
|
1129
1131
|
|
|
1130
1132
|
declare type __VLS_Props_2 = {
|
|
1131
1133
|
value?: string | number;
|
|
@@ -1208,9 +1210,13 @@ declare type __VLS_PublicProps_5 = {
|
|
|
1208
1210
|
} & __VLS_Props_12;
|
|
1209
1211
|
|
|
1210
1212
|
declare type __VLS_PublicProps_6 = {
|
|
1211
|
-
modelValue
|
|
1213
|
+
modelValue?: string;
|
|
1212
1214
|
} & __VLS_Props_13;
|
|
1213
1215
|
|
|
1216
|
+
declare type __VLS_PublicProps_7 = {
|
|
1217
|
+
modelValue: TShedule | null;
|
|
1218
|
+
} & __VLS_Props_14;
|
|
1219
|
+
|
|
1214
1220
|
declare function __VLS_template(): {
|
|
1215
1221
|
attrs: Partial<{}>;
|
|
1216
1222
|
slots: {
|
|
@@ -3643,6 +3649,42 @@ declare type MenuItem = {
|
|
|
3643
3649
|
|
|
3644
3650
|
export declare const Message: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
|
|
3645
3651
|
|
|
3652
|
+
export declare const OTPCode: DefineComponent<__VLS_PublicProps_5, {
|
|
3653
|
+
$els: HTMLInputElement[];
|
|
3654
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3655
|
+
"update:modelValue": (value: string) => any;
|
|
3656
|
+
} & {
|
|
3657
|
+
blur: (index: number) => any;
|
|
3658
|
+
change: (value: string) => any;
|
|
3659
|
+
focus: (index: number) => any;
|
|
3660
|
+
complete: (value: string) => any;
|
|
3661
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
3662
|
+
onBlur?: ((index: number) => any) | undefined;
|
|
3663
|
+
onChange?: ((value: string) => any) | undefined;
|
|
3664
|
+
onFocus?: ((index: number) => any) | undefined;
|
|
3665
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
3666
|
+
onComplete?: ((value: string) => any) | undefined;
|
|
3667
|
+
}>, {
|
|
3668
|
+
size: "small" | "default" | "large";
|
|
3669
|
+
disabled: boolean;
|
|
3670
|
+
length: number;
|
|
3671
|
+
error: boolean;
|
|
3672
|
+
required: boolean;
|
|
3673
|
+
readonly: boolean;
|
|
3674
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
3675
|
+
inputRefs: HTMLInputElement[];
|
|
3676
|
+
}, HTMLDivElement>;
|
|
3677
|
+
|
|
3678
|
+
declare interface OTPCodeProps {
|
|
3679
|
+
length?: number;
|
|
3680
|
+
disabled?: boolean;
|
|
3681
|
+
readonly?: boolean;
|
|
3682
|
+
error?: boolean;
|
|
3683
|
+
required?: boolean;
|
|
3684
|
+
size?: "small" | "default" | "large";
|
|
3685
|
+
full?: boolean;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3646
3688
|
export declare const PaginationEllipsis: DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3647
3689
|
|
|
3648
3690
|
export declare const PaginationFirst: DefineComponent<PaginationFirstProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -3728,9 +3770,9 @@ iconOnly: boolean;
|
|
|
3728
3770
|
|
|
3729
3771
|
export { RangeCalendarRoot }
|
|
3730
3772
|
|
|
3731
|
-
export declare const Schedule: DefineComponent<
|
|
3773
|
+
export declare const Schedule: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3732
3774
|
"update:modelValue": (value: TShedule | null) => any;
|
|
3733
|
-
}, string, PublicProps, Readonly<
|
|
3775
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
3734
3776
|
"onUpdate:modelValue"?: ((value: TShedule | null) => any) | undefined;
|
|
3735
3777
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3736
3778
|
|
|
@@ -3811,13 +3853,13 @@ declare interface TagProps {
|
|
|
3811
3853
|
|
|
3812
3854
|
export declare type TDayWeek = 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';
|
|
3813
3855
|
|
|
3814
|
-
export declare const Textarea: DefineComponent<
|
|
3856
|
+
export declare const Textarea: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3815
3857
|
"update:modelValue": (value: string) => any;
|
|
3816
3858
|
} & {
|
|
3817
3859
|
blur: (value: FocusEvent) => any;
|
|
3818
3860
|
focusIn: (value: FocusEvent) => any;
|
|
3819
3861
|
focusOut: (value: FocusEvent) => any;
|
|
3820
|
-
}, string, PublicProps, Readonly<
|
|
3862
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
3821
3863
|
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
3822
3864
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
3823
3865
|
onFocusIn?: ((value: FocusEvent) => any) | undefined;
|
package/dist/scss/vars.scss
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
--input-height: 40px;
|
|
19
19
|
--input-height-large: 44px;
|
|
20
20
|
|
|
21
|
-
--input-font-size-small:
|
|
22
|
-
--input-font-size:
|
|
21
|
+
--input-font-size-small: 1rem;
|
|
22
|
+
--input-font-size: 1rem;
|
|
23
23
|
--input-font-size-large: 1rem;
|
|
24
24
|
|
|
25
25
|
--input-padding: 0 8px;
|
|
@@ -36,6 +36,14 @@
|
|
|
36
36
|
--input-error-color: var(--theme-error-500);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
@include respond(lg) {
|
|
40
|
+
:root {
|
|
41
|
+
--input-font-size-small: 0.75rem;
|
|
42
|
+
--input-font-size: 0.9375rem;
|
|
43
|
+
--input-font-size-large: 1rem;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
39
47
|
//Удалить после перехода на reka-ui
|
|
40
48
|
:root {
|
|
41
49
|
--modal-z-index: 1000;
|