@winchsa/ui 0.1.16 → 0.1.18
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/components/Breadcrumbs.d.vue.ts +6 -0
- package/dist/components/CustomizerSection.d.vue.ts +25 -0
- package/dist/components/DialogCloseBtn.d.vue.ts +9 -0
- package/dist/components/Drawer.d.vue.ts +44 -0
- package/dist/components/IconBtn.d.vue.ts +30 -0
- package/dist/components/LoadingBar.d.vue.ts +5 -0
- package/dist/components/LoadingDialog.d.vue.ts +11 -0
- package/dist/components/LoadingItem.d.vue.ts +47 -0
- package/dist/components/Modal.d.vue.ts +0 -0
- package/dist/components/MoreBtn.d.vue.ts +25 -0
- package/dist/components/ScrollToTop.d.vue.ts +2 -0
- package/dist/components/SiteTitle.d.vue.ts +2 -0
- package/dist/components/Toaster.d.vue.ts +5 -0
- package/dist/components/cards/AppCard.d.vue.ts +26 -0
- package/dist/components/cards/AppCardActions.d.vue.ts +79 -0
- package/dist/components/cards/CardStatisticsHorizontal.d.vue.ts +10 -0
- package/dist/components/cards/CheckboxesCard.d.vue.ts +20 -0
- package/dist/components/cards/HeaderCard.d.vue.ts +8 -0
- package/dist/components/cards/ImageCard.d.vue.ts +63 -0
- package/dist/components/cards/InputCard.d.vue.ts +41 -0
- package/dist/components/cards/StaticCard.d.vue.ts +33 -0
- package/dist/components/forms/Accordion.d.vue.ts +35 -0
- package/dist/components/forms/AppBarSearch.d.vue.ts +1587 -0
- package/dist/components/forms/AppCombobox.d.vue.ts +0 -0
- package/dist/components/forms/AppDrawerHeaderSection.d.vue.ts +30 -0
- package/dist/components/forms/AppLabel.d.vue.ts +36 -0
- package/dist/components/forms/AppLink.d.vue.ts +27 -0
- package/dist/components/forms/AppNumberField.d.vue.ts +45 -0
- package/dist/components/forms/AppOtpInput.d.vue.ts +16 -0
- package/dist/components/forms/AppSearchHeader.d.vue.ts +7 -0
- package/dist/components/forms/AppSelect.d.vue.ts +0 -0
- package/dist/components/forms/AppStepper.d.vue.ts +25 -0
- package/dist/components/forms/AppSwitch.d.vue.ts +27 -0
- package/dist/components/forms/AppTextField.d.vue.ts +26 -0
- package/dist/components/forms/AppTextarea.d.vue.ts +26 -0
- package/dist/components/forms/AttachmentCropperInput.d.vue.ts +25 -0
- package/dist/components/forms/AttachmentInput.d.vue.ts +20 -0
- package/dist/components/forms/AutocompleteInput.d.vue.ts +0 -0
- package/dist/components/forms/AutocompleteInput.vue +3 -2
- package/dist/components/forms/BankSelect.d.vue.ts +19 -0
- package/dist/components/forms/BaseButton.d.vue.ts +31 -0
- package/dist/components/forms/CounterInput.d.vue.ts +15 -0
- package/dist/components/forms/CustomCheckboxes.d.vue.ts +39 -0
- package/dist/components/forms/CustomCheckboxesWithIcon.d.vue.ts +39 -0
- package/dist/components/forms/CustomCheckboxesWithImage.d.vue.ts +15 -0
- package/dist/components/forms/CustomRadios.d.vue.ts +40 -0
- package/dist/components/forms/CustomRadiosWithIcon.d.vue.ts +45 -0
- package/dist/components/forms/CustomRadiosWithImage.d.vue.ts +53 -0
- package/dist/components/forms/DatePicker.d.vue.ts +34 -0
- package/dist/components/forms/DatePickerRange.d.vue.ts +23 -0
- package/dist/components/forms/DraggedUploadFile.d.vue.ts +10 -0
- package/dist/components/forms/ImageCardInput.d.vue.ts +0 -0
- package/dist/components/forms/InputValidationWrapper.d.vue.ts +33 -0
- package/dist/components/forms/LicensePlateInput.d.vue.ts +21 -0
- package/dist/components/forms/ManualDate.d.vue.ts +22 -0
- package/dist/components/forms/MobileInput.d.vue.ts +49 -0
- package/dist/components/forms/PasswordInput.d.vue.ts +13 -0
- package/dist/components/forms/RangeInput.d.vue.ts +5 -0
- package/dist/components/forms/Tabs.d.vue.ts +42 -0
- package/dist/components/forms/TimePicker.d.vue.ts +23 -0
- package/dist/components/forms/TimePicker.vue +1 -1
- package/dist/components/table/DataTable.d.vue.ts +0 -0
- package/dist/components/table/EditableDataTable.d.vue.ts +76 -0
- package/dist/components/table/EditableDataTable.vue.d.ts +1 -0
- package/dist/components/table/EditableDataTableRow.d.vue.ts +18 -0
- package/dist/components/table/EditableDataTableRow.vue +1 -0
- package/dist/components/table/FilterGenerator.d.vue.ts +14 -0
- package/dist/components/table/StaticTable.d.vue.ts +23 -0
- package/dist/components/table/TablePagination.d.vue.ts +13 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
|
File without changes
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { VSpacer } from 'vuetify/components';
|
|
2
|
+
import IconBtn from '../IconBtn.vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
title: string;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
7
|
+
declare var __VLS_5: {};
|
|
8
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
9
|
+
beforeClose?: (props: typeof __VLS_5) => any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
12
|
+
VSpacer: typeof VSpacer;
|
|
13
|
+
IconBtn: typeof IconBtn;
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
15
|
+
cancel: (el: MouseEvent) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onCancel?: ((el: MouseEvent) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
+
cancel: (el: MouseEvent) => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
22
|
+
onCancel?: ((el: MouseEvent) => any) | undefined;
|
|
23
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { VValidation, VLabel, VMessages } from 'vuetify/components';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
class?: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
rules?: ((value: unknown) => string)[];
|
|
6
|
+
errorMessages?: string;
|
|
7
|
+
modelValue?: string | number | undefined | null;
|
|
8
|
+
};
|
|
9
|
+
declare const LangLabel: import("vue").ComputedRef<string>;
|
|
10
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
11
|
+
declare var __VLS_13: {};
|
|
12
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
13
|
+
default?: (props: typeof __VLS_13) => any;
|
|
14
|
+
}>;
|
|
15
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
16
|
+
VValidation: typeof VValidation;
|
|
17
|
+
VLabel: typeof VLabel;
|
|
18
|
+
VMessages: typeof VMessages;
|
|
19
|
+
LangLabel: typeof LangLabel;
|
|
20
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
21
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
26
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
29
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { RouterLink } from 'vue-router';
|
|
2
|
+
declare const isExternalLink: import("vue").ComputedRef<boolean>;
|
|
3
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
4
|
+
declare var __VLS_1: {}, __VLS_8: {}, __VLS_10: {};
|
|
5
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
7
|
+
} & {
|
|
8
|
+
default?: (props: typeof __VLS_8) => any;
|
|
9
|
+
} & {
|
|
10
|
+
default?: (props: typeof __VLS_10) => any;
|
|
11
|
+
}>;
|
|
12
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
13
|
+
RouterLink: typeof RouterLink;
|
|
14
|
+
isExternalLink: typeof isExternalLink;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {} | {
|
|
16
|
+
[x: string]: any;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {} | {
|
|
19
|
+
[x: string]: any;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { VTextField, VLabel } from 'vuetify/components';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue?: string | null;
|
|
4
|
+
};
|
|
5
|
+
declare const numberValue: import("vue").Ref<string | null, string | null>;
|
|
6
|
+
declare const elementId: import("vue").ComputedRef<string | undefined>;
|
|
7
|
+
declare const label: import("vue").ComputedRef<string | null>;
|
|
8
|
+
declare const LangLabel: import("vue").ComputedRef<string>;
|
|
9
|
+
declare const placeholder: import("vue").ComputedRef<string>;
|
|
10
|
+
declare const validateInput: (event: InputEvent) => void;
|
|
11
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
12
|
+
declare var __VLS_14: any, __VLS_15: any;
|
|
13
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
14
|
+
[K in NonNullable<typeof __VLS_14>]?: (props: typeof __VLS_15) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
VTextField: typeof VTextField;
|
|
18
|
+
VLabel: typeof VLabel;
|
|
19
|
+
numberValue: typeof numberValue;
|
|
20
|
+
elementId: typeof elementId;
|
|
21
|
+
label: typeof label;
|
|
22
|
+
LangLabel: typeof LangLabel;
|
|
23
|
+
placeholder: typeof placeholder;
|
|
24
|
+
validateInput: typeof validateInput;
|
|
25
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
26
|
+
"update:modelValue": (value: string | null) => any;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
modelValue: string | null;
|
|
31
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
32
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
33
|
+
"update:modelValue": (value: string | null) => any;
|
|
34
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
35
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
modelValue: string | null;
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
totalInput?: number;
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
errorMessages?: string;
|
|
5
|
+
isAppRtl?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
"update:modelValue": (value: string | number) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
modelValue: string;
|
|
13
|
+
errorMessages: string;
|
|
14
|
+
totalInput: number;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
subtitle?: string;
|
|
4
|
+
customClass?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
type Item = {
|
|
2
|
+
title: string;
|
|
3
|
+
icon?: string;
|
|
4
|
+
size?: string;
|
|
5
|
+
subtitle?: string;
|
|
6
|
+
};
|
|
7
|
+
type Direction = 'vertical' | 'horizontal';
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
items: Item[];
|
|
10
|
+
currentStep?: number;
|
|
11
|
+
direction?: Direction;
|
|
12
|
+
iconSize?: string | number;
|
|
13
|
+
isActiveStepValid?: boolean;
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
|
+
"update:currentStep": (value: number) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
"onUpdate:currentStep"?: ((value: number) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
iconSize: string | number;
|
|
21
|
+
direction: Direction;
|
|
22
|
+
currentStep: number;
|
|
23
|
+
isActiveStepValid: boolean;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { VLabel, VSwitch } from 'vuetify/components';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
labelSwitch?: string;
|
|
4
|
+
};
|
|
5
|
+
declare const elementId: import("vue").ComputedRef<string | undefined>;
|
|
6
|
+
declare const label: import("vue").ComputedRef<string | undefined>;
|
|
7
|
+
declare const LangLabel: import("vue").ComputedRef<string>;
|
|
8
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
9
|
+
declare var __VLS_10: any, __VLS_11: any;
|
|
10
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
11
|
+
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
|
|
12
|
+
}>;
|
|
13
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
14
|
+
VLabel: typeof VLabel;
|
|
15
|
+
VSwitch: typeof VSwitch;
|
|
16
|
+
elementId: typeof elementId;
|
|
17
|
+
label: typeof label;
|
|
18
|
+
LangLabel: typeof LangLabel;
|
|
19
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { VLabel, VTextField } from 'vuetify/components';
|
|
2
|
+
declare const elementId: import("vue").ComputedRef<string | undefined>;
|
|
3
|
+
declare const label: import("vue").ComputedRef<string | null>;
|
|
4
|
+
declare const LangLabel: import("vue").ComputedRef<string>;
|
|
5
|
+
declare const placeholder: import("vue").ComputedRef<string>;
|
|
6
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
7
|
+
declare var __VLS_10: any, __VLS_11: any;
|
|
8
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
9
|
+
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
12
|
+
VLabel: typeof VLabel;
|
|
13
|
+
VTextField: typeof VTextField;
|
|
14
|
+
elementId: typeof elementId;
|
|
15
|
+
label: typeof label;
|
|
16
|
+
LangLabel: typeof LangLabel;
|
|
17
|
+
placeholder: typeof placeholder;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { VLabel, VTextarea } from 'vuetify/components';
|
|
2
|
+
declare const elementId: import("vue").ComputedRef<string | undefined>;
|
|
3
|
+
declare const label: import("vue").ComputedRef<string | null>;
|
|
4
|
+
declare const LangLabel: import("vue").ComputedRef<string>;
|
|
5
|
+
declare const placeholder: import("vue").ComputedRef<string>;
|
|
6
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
7
|
+
declare var __VLS_10: any, __VLS_11: any;
|
|
8
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
9
|
+
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
12
|
+
VLabel: typeof VLabel;
|
|
13
|
+
VTextarea: typeof VTextarea;
|
|
14
|
+
elementId: typeof elementId;
|
|
15
|
+
label: typeof label;
|
|
16
|
+
LangLabel: typeof LangLabel;
|
|
17
|
+
placeholder: typeof placeholder;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import 'cropperjs/dist/cropper.css';
|
|
2
|
+
import type { Attachment } from '../../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
validTypes?: string[];
|
|
5
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
6
|
+
multiple?: boolean;
|
|
7
|
+
modelValue: Attachment | Attachment[] | null;
|
|
8
|
+
sizeInMB?: number;
|
|
9
|
+
showPreview?: boolean;
|
|
10
|
+
cropWidth?: number;
|
|
11
|
+
cropHeight?: number;
|
|
12
|
+
};
|
|
13
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:model-value": (value: Attachment | Attachment[]) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
"onUpdate:model-value"?: ((value: Attachment | Attachment[]) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
multiple: boolean;
|
|
19
|
+
validTypes: string[];
|
|
20
|
+
sizeInMB: number;
|
|
21
|
+
showPreview: boolean;
|
|
22
|
+
cropWidth: number;
|
|
23
|
+
cropHeight: number;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { Attachment } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
validTypes?: string[];
|
|
4
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
5
|
+
multiple?: boolean;
|
|
6
|
+
modelValue: Attachment | Attachment[] | null;
|
|
7
|
+
sizeInMB?: number;
|
|
8
|
+
showPreview?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
11
|
+
"update:model-value": (value: Attachment | Attachment[]) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
"onUpdate:model-value"?: ((value: Attachment | Attachment[]) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
multiple: boolean;
|
|
16
|
+
validTypes: string[];
|
|
17
|
+
sizeInMB: number;
|
|
18
|
+
showPreview: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
export default _default;
|
|
File without changes
|
|
@@ -41,7 +41,8 @@ const props = defineProps({
|
|
|
41
41
|
hideDetails: { type: Boolean, required: false, default: false },
|
|
42
42
|
fetchEnabled: { type: Boolean, required: false, default: true },
|
|
43
43
|
isLoading: { type: Boolean, required: false, default: false },
|
|
44
|
-
disableIfEmpty: { type: Boolean, required: false, default: false }
|
|
44
|
+
disableIfEmpty: { type: Boolean, required: false, default: false },
|
|
45
|
+
clearable: { type: Boolean, required: false, default: true }
|
|
45
46
|
});
|
|
46
47
|
const defaultOptions = ref(props.options ?? []);
|
|
47
48
|
const displayedOptions = ref(props.options ?? []);
|
|
@@ -436,7 +437,7 @@ defineExpose({
|
|
|
436
437
|
|
|
437
438
|
<template #clear>
|
|
438
439
|
<div
|
|
439
|
-
v-if="(Array.isArray(value) && value?.length > 0 || value) && value && !disabled"
|
|
440
|
+
v-if="(Array.isArray(value) && value?.length > 0 || value) && value && !disabled && clearable"
|
|
440
441
|
class="multiselect-clear cursor-pointer"
|
|
441
442
|
@mousedown.prevent.stop="value = null"
|
|
442
443
|
>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { Bank, Params } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
rules?: ((value: unknown) => string | true)[];
|
|
4
|
+
errorMessages?: string;
|
|
5
|
+
multiple?: boolean;
|
|
6
|
+
params?: Params;
|
|
7
|
+
searchInternally?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
trackByValue?: string | string[];
|
|
10
|
+
};
|
|
11
|
+
type __VLS_PublicProps = {
|
|
12
|
+
modelValue?: Bank | string | null;
|
|
13
|
+
} & __VLS_Props;
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: string | Bank | null) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: string | Bank | null) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { VBtn, VIcon } from 'vuetify/components';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
title?: string;
|
|
4
|
+
color?: string;
|
|
5
|
+
icon?: string;
|
|
6
|
+
leadingIcon?: string;
|
|
7
|
+
trailingIcon?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const buttonColor: import("vue").ComputedRef<string>;
|
|
10
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
11
|
+
declare var __VLS_14: {};
|
|
12
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
13
|
+
default?: (props: typeof __VLS_14) => any;
|
|
14
|
+
}>;
|
|
15
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
16
|
+
VBtn: typeof VBtn;
|
|
17
|
+
VIcon: typeof VIcon;
|
|
18
|
+
buttonColor: typeof buttonColor;
|
|
19
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
color: string;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
23
|
+
color: string;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
max?: number;
|
|
4
|
+
min?: number;
|
|
5
|
+
modelValue?: number;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
"update:modelValue": (value: number) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
modelValue: number;
|
|
13
|
+
min: number;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { VLabel, VCheckbox, VSpacer, VCol, VRow } from 'vuetify/components';
|
|
2
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
selectedCheckbox: string[];
|
|
5
|
+
checkboxContent: CustomInputContent[];
|
|
6
|
+
gridColumn?: GridColumn;
|
|
7
|
+
};
|
|
8
|
+
declare const selectedOption: import("vue").Ref<string[], string[]>;
|
|
9
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
10
|
+
declare var __VLS_18: {
|
|
11
|
+
item: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
14
|
+
default?: (props: typeof __VLS_18) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
VLabel: typeof VLabel;
|
|
18
|
+
VCheckbox: typeof VCheckbox;
|
|
19
|
+
VSpacer: typeof VSpacer;
|
|
20
|
+
VCol: typeof VCol;
|
|
21
|
+
VRow: typeof VRow;
|
|
22
|
+
selectedOption: typeof selectedOption;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
24
|
+
"update:selectedCheckbox": (value: string[]) => any;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
|
+
"onUpdate:selectedCheckbox"?: ((value: string[]) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
29
|
+
"update:selectedCheckbox": (value: string[]) => any;
|
|
30
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
31
|
+
"onUpdate:selectedCheckbox"?: ((value: string[]) => any) | undefined;
|
|
32
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { VLabel, VCheckbox, VIcon, VCol, VRow } from 'vuetify/components';
|
|
2
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
selectedCheckbox: string[];
|
|
5
|
+
checkboxContent: CustomInputContent[];
|
|
6
|
+
gridColumn?: GridColumn;
|
|
7
|
+
};
|
|
8
|
+
declare const selectedOption: import("vue").Ref<string[], string[]>;
|
|
9
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
10
|
+
declare var __VLS_14: {
|
|
11
|
+
item: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
14
|
+
default?: (props: typeof __VLS_14) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
VLabel: typeof VLabel;
|
|
18
|
+
VCheckbox: typeof VCheckbox;
|
|
19
|
+
VIcon: typeof VIcon;
|
|
20
|
+
VCol: typeof VCol;
|
|
21
|
+
VRow: typeof VRow;
|
|
22
|
+
selectedOption: typeof selectedOption;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
24
|
+
"update:selectedCheckbox": (value: string[]) => any;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
|
+
"onUpdate:selectedCheckbox"?: ((value: string[]) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
29
|
+
"update:selectedCheckbox": (value: string[]) => any;
|
|
30
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
31
|
+
"onUpdate:selectedCheckbox"?: ((value: string[]) => any) | undefined;
|
|
32
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedCheckbox: string[];
|
|
4
|
+
checkboxContent: {
|
|
5
|
+
bgImage: string;
|
|
6
|
+
value: string;
|
|
7
|
+
}[];
|
|
8
|
+
gridColumn?: GridColumn;
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
11
|
+
"update:selectedCheckbox": (value: string[]) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
"onUpdate:selectedCheckbox"?: ((value: string[]) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { VLabel, VRadio, VSpacer, VRadioGroup, VCol, VRow } from 'vuetify/components';
|
|
2
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
selectedRadio: string;
|
|
5
|
+
radioContent: CustomInputContent[];
|
|
6
|
+
gridColumn?: GridColumn;
|
|
7
|
+
};
|
|
8
|
+
declare const selectedOption: import("vue").Ref<string, string>;
|
|
9
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
10
|
+
declare var __VLS_22: {
|
|
11
|
+
item: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
14
|
+
default?: (props: typeof __VLS_22) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
VLabel: typeof VLabel;
|
|
18
|
+
VRadio: typeof VRadio;
|
|
19
|
+
VSpacer: typeof VSpacer;
|
|
20
|
+
VRadioGroup: typeof VRadioGroup;
|
|
21
|
+
VCol: typeof VCol;
|
|
22
|
+
VRow: typeof VRow;
|
|
23
|
+
selectedOption: typeof selectedOption;
|
|
24
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
25
|
+
"update:selectedRadio": (value: string) => any;
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
27
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
28
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
30
|
+
"update:selectedRadio": (value: string) => any;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
32
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
35
|
+
export default _default;
|
|
36
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { VLabel, VRadio, VRadioGroup, VCol, VRow, VIcon } from 'vuetify/components';
|
|
2
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
selectedRadio: string | number;
|
|
5
|
+
label?: string;
|
|
6
|
+
radioContent: CustomInputContent[];
|
|
7
|
+
gridColumn?: GridColumn;
|
|
8
|
+
errorMessages?: string;
|
|
9
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
10
|
+
};
|
|
11
|
+
declare const selectedOption: import("vue").Ref<string | number, string | number>;
|
|
12
|
+
declare const labelLang: import("vue").ComputedRef<string>;
|
|
13
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
14
|
+
declare var __VLS_21: {
|
|
15
|
+
item: any;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
18
|
+
default?: (props: typeof __VLS_21) => any;
|
|
19
|
+
}>;
|
|
20
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
21
|
+
VLabel: typeof VLabel;
|
|
22
|
+
VRadio: typeof VRadio;
|
|
23
|
+
VRadioGroup: typeof VRadioGroup;
|
|
24
|
+
VCol: typeof VCol;
|
|
25
|
+
VRow: typeof VRow;
|
|
26
|
+
VIcon: typeof VIcon;
|
|
27
|
+
selectedOption: typeof selectedOption;
|
|
28
|
+
labelLang: typeof labelLang;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
30
|
+
"update:selectedRadio": (value: string | number) => any;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
32
|
+
"onUpdate:selectedRadio"?: ((value: string | number) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
35
|
+
"update:selectedRadio": (value: string | number) => any;
|
|
36
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
37
|
+
"onUpdate:selectedRadio"?: ((value: string | number) => any) | undefined;
|
|
38
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|