@winchsa/ui 0.1.33 → 0.1.34
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 +7 -0
- package/dist/components/Breadcrumbs.vue +46 -0
- package/dist/components/Breadcrumbs.vue.d.ts +7 -0
- package/dist/components/CustomizerSection.d.vue.ts +17 -0
- package/dist/components/CustomizerSection.vue +19 -0
- package/dist/components/CustomizerSection.vue.d.ts +17 -0
- package/dist/components/DialogCloseBtn.d.vue.ts +7 -0
- package/dist/components/DialogCloseBtn.vue +20 -0
- package/dist/components/DialogCloseBtn.vue.d.ts +7 -0
- package/dist/components/Drawer.d.vue.ts +28 -0
- package/dist/components/Drawer.vue +60 -0
- package/dist/components/Drawer.vue.d.ts +28 -0
- package/dist/components/IconBtn.d.vue.ts +18 -0
- package/dist/components/IconBtn.vue +24 -0
- package/dist/components/IconBtn.vue.d.ts +18 -0
- package/dist/components/LoadingBar.d.vue.ts +6 -0
- package/dist/components/LoadingBar.vue +31 -0
- package/dist/components/LoadingBar.vue.d.ts +6 -0
- package/dist/components/LoadingDialog.d.vue.ts +12 -0
- package/dist/components/LoadingDialog.vue +41 -0
- package/dist/components/LoadingDialog.vue.d.ts +12 -0
- package/dist/components/LoadingItem.d.vue.ts +25 -0
- package/dist/components/LoadingItem.vue +66 -0
- package/dist/components/LoadingItem.vue.d.ts +25 -0
- package/dist/components/Modal.d.vue.ts +50 -0
- package/dist/components/Modal.vue +155 -0
- package/dist/components/Modal.vue.d.ts +50 -0
- package/dist/components/MoreBtn.d.vue.ts +17 -0
- package/dist/components/MoreBtn.vue +28 -0
- package/dist/components/MoreBtn.vue.d.ts +17 -0
- package/dist/components/ScrollToTop.d.vue.ts +3 -0
- package/dist/components/ScrollToTop.vue +39 -0
- package/dist/components/ScrollToTop.vue.d.ts +3 -0
- package/dist/components/SiteTitle.d.vue.ts +3 -0
- package/dist/components/SiteTitle.vue +14 -0
- package/dist/components/SiteTitle.vue.d.ts +3 -0
- package/dist/components/Toaster.d.vue.ts +6 -0
- package/dist/components/Toaster.vue +19 -0
- package/dist/components/Toaster.vue.d.ts +6 -0
- package/dist/components/cards/AppCard.d.vue.ts +18 -0
- package/dist/components/cards/AppCard.vue +45 -0
- package/dist/components/cards/AppCard.vue.d.ts +18 -0
- package/dist/components/cards/AppCardActions.d.vue.ts +33 -0
- package/dist/components/cards/AppCardActions.vue +126 -0
- package/dist/components/cards/AppCardActions.vue.d.ts +33 -0
- package/dist/components/cards/CardStatisticsHorizontal.d.vue.ts +9 -0
- package/dist/components/cards/CardStatisticsHorizontal.vue +29 -0
- package/dist/components/cards/CardStatisticsHorizontal.vue.d.ts +9 -0
- package/dist/components/cards/CheckboxesCard.d.vue.ts +18 -0
- package/dist/components/cards/CheckboxesCard.vue +108 -0
- package/dist/components/cards/CheckboxesCard.vue.d.ts +18 -0
- package/dist/components/cards/HeaderCard.d.vue.ts +9 -0
- package/dist/components/cards/HeaderCard.vue +31 -0
- package/dist/components/cards/HeaderCard.vue.d.ts +9 -0
- package/dist/components/cards/ImageCard.d.vue.ts +33 -0
- package/dist/components/cards/ImageCard.vue +73 -0
- package/dist/components/cards/ImageCard.vue.d.ts +33 -0
- package/dist/components/cards/InputCard.d.vue.ts +21 -0
- package/dist/components/cards/InputCard.vue +60 -0
- package/dist/components/cards/InputCard.vue.d.ts +21 -0
- package/dist/components/cards/StaticCard.d.vue.ts +21 -0
- package/dist/components/cards/StaticCard.vue +37 -0
- package/dist/components/cards/StaticCard.vue.d.ts +21 -0
- package/dist/components/forms/Accordion.d.vue.ts +19 -0
- package/dist/components/forms/Accordion.vue +43 -0
- package/dist/components/forms/Accordion.vue.d.ts +19 -0
- package/dist/components/forms/AppBarSearch.d.vue.ts +43 -0
- package/dist/components/forms/AppBarSearch.vue +345 -0
- package/dist/components/forms/AppBarSearch.vue.d.ts +43 -0
- package/dist/components/forms/AppCombobox.d.vue.ts +13 -0
- package/dist/components/forms/AppCombobox.vue +60 -0
- package/dist/components/forms/AppCombobox.vue.d.ts +13 -0
- package/dist/components/forms/AppDrawerHeaderSection.d.vue.ts +20 -0
- package/dist/components/forms/AppDrawerHeaderSection.vue +21 -0
- package/dist/components/forms/AppDrawerHeaderSection.vue.d.ts +20 -0
- package/dist/components/forms/AppLabel.d.vue.ts +24 -0
- package/dist/components/forms/AppLabel.vue +47 -0
- package/dist/components/forms/AppLabel.vue.d.ts +24 -0
- package/dist/components/forms/AppLink.d.vue.ts +19 -0
- package/dist/components/forms/AppLink.vue +50 -0
- package/dist/components/forms/AppLink.vue.d.ts +19 -0
- package/dist/components/forms/AppNumberField.d.vue.ts +20 -0
- package/dist/components/forms/AppNumberField.vue +79 -0
- package/dist/components/forms/AppNumberField.vue.d.ts +20 -0
- package/dist/components/forms/AppOtpInput.d.vue.ts +13 -0
- package/dist/components/forms/AppOtpInput.vue +84 -0
- package/dist/components/forms/AppOtpInput.vue.d.ts +13 -0
- package/dist/components/forms/AppSearchHeader.d.vue.ts +8 -0
- package/dist/components/forms/AppSearchHeader.vue +72 -0
- package/dist/components/forms/AppSearchHeader.vue.d.ts +8 -0
- package/dist/components/forms/AppSelect.d.vue.ts +17 -0
- package/dist/components/forms/AppSelect.vue +91 -0
- package/dist/components/forms/AppSelect.vue.d.ts +17 -0
- package/dist/components/forms/AppStepper.d.vue.ts +21 -0
- package/dist/components/forms/AppStepper.vue +232 -0
- package/dist/components/forms/AppStepper.vue.d.ts +21 -0
- package/dist/components/forms/AppSwitch.d.vue.ts +16 -0
- package/dist/components/forms/AppSwitch.vue +59 -0
- package/dist/components/forms/AppSwitch.vue.d.ts +16 -0
- package/dist/components/forms/AppTextField.d.vue.ts +13 -0
- package/dist/components/forms/AppTextField.vue +59 -0
- package/dist/components/forms/AppTextField.vue.d.ts +13 -0
- package/dist/components/forms/AppTextarea.d.vue.ts +13 -0
- package/dist/components/forms/AppTextarea.vue +62 -0
- package/dist/components/forms/AppTextarea.vue.d.ts +13 -0
- package/dist/components/forms/AttachmentCropperInput.d.vue.ts +18 -0
- package/dist/components/forms/AttachmentCropperInput.vue +227 -0
- package/dist/components/forms/AttachmentCropperInput.vue.d.ts +18 -0
- package/dist/components/forms/AttachmentInput.d.vue.ts +16 -0
- package/dist/components/forms/AttachmentInput.vue +116 -0
- package/dist/components/forms/AttachmentInput.vue.d.ts +16 -0
- package/dist/components/forms/AutocompleteInput.d.vue.ts +84 -0
- package/dist/components/forms/AutocompleteInput.vue +760 -0
- package/dist/components/forms/AutocompleteInput.vue.d.ts +84 -0
- package/dist/components/forms/BankSelect.d.vue.ts +21 -0
- package/dist/components/forms/BankSelect.vue +43 -0
- package/dist/components/forms/BankSelect.vue.d.ts +21 -0
- package/dist/components/forms/BaseButton.d.vue.ts +20 -0
- package/dist/components/forms/BaseButton.vue +42 -0
- package/dist/components/forms/BaseButton.vue.d.ts +20 -0
- package/dist/components/forms/CounterInput.d.vue.ts +13 -0
- package/dist/components/forms/CounterInput.vue +71 -0
- package/dist/components/forms/CounterInput.vue.d.ts +13 -0
- package/dist/components/forms/CustomCheckboxes.d.vue.ts +25 -0
- package/dist/components/forms/CustomCheckboxes.vue +69 -0
- package/dist/components/forms/CustomCheckboxes.vue.d.ts +25 -0
- package/dist/components/forms/CustomCheckboxesWithIcon.d.vue.ts +25 -0
- package/dist/components/forms/CustomCheckboxesWithIcon.vue +80 -0
- package/dist/components/forms/CustomCheckboxesWithIcon.vue.d.ts +25 -0
- package/dist/components/forms/CustomCheckboxesWithImage.d.vue.ts +16 -0
- package/dist/components/forms/CustomCheckboxesWithImage.vue +67 -0
- package/dist/components/forms/CustomCheckboxesWithImage.vue.d.ts +16 -0
- package/dist/components/forms/CustomRadios.d.vue.ts +25 -0
- package/dist/components/forms/CustomRadios.vue +69 -0
- package/dist/components/forms/CustomRadios.vue.d.ts +25 -0
- package/dist/components/forms/CustomRadiosWithIcon.d.vue.ts +28 -0
- package/dist/components/forms/CustomRadiosWithIcon.vue +98 -0
- package/dist/components/forms/CustomRadiosWithIcon.vue.d.ts +28 -0
- package/dist/components/forms/CustomRadiosWithImage.d.vue.ts +35 -0
- package/dist/components/forms/CustomRadiosWithImage.vue +69 -0
- package/dist/components/forms/CustomRadiosWithImage.vue.d.ts +35 -0
- package/dist/components/forms/DatePicker.d.vue.ts +29 -0
- package/dist/components/forms/DatePicker.vue +392 -0
- package/dist/components/forms/DatePicker.vue.d.ts +29 -0
- package/dist/components/forms/DatePickerRange.d.vue.ts +24 -0
- package/dist/components/forms/DatePickerRange.vue +127 -0
- package/dist/components/forms/DatePickerRange.vue.d.ts +24 -0
- package/dist/components/forms/DraggedUploadFile.d.vue.ts +11 -0
- package/dist/components/forms/DraggedUploadFile.vue +120 -0
- package/dist/components/forms/DraggedUploadFile.vue.d.ts +11 -0
- package/dist/components/forms/ImageCardInput.d.vue.ts +35 -0
- package/dist/components/forms/ImageCardInput.vue +234 -0
- package/dist/components/forms/ImageCardInput.vue.d.ts +35 -0
- package/dist/components/forms/InputValidationWrapper.d.vue.ts +26 -0
- package/dist/components/forms/InputValidationWrapper.vue +24 -0
- package/dist/components/forms/InputValidationWrapper.vue.d.ts +26 -0
- package/dist/components/forms/LicensePlateInput.d.vue.ts +21 -0
- package/dist/components/forms/LicensePlateInput.vue +175 -0
- package/dist/components/forms/LicensePlateInput.vue.d.ts +21 -0
- package/dist/components/forms/ManualDate.d.vue.ts +20 -0
- package/dist/components/forms/ManualDate.vue +264 -0
- package/dist/components/forms/ManualDate.vue.d.ts +20 -0
- package/dist/components/forms/MobileInput.d.vue.ts +25 -0
- package/dist/components/forms/MobileInput.vue +118 -0
- package/dist/components/forms/MobileInput.vue.d.ts +25 -0
- package/dist/components/forms/PasswordInput.d.vue.ts +11 -0
- package/dist/components/forms/PasswordInput.vue +29 -0
- package/dist/components/forms/PasswordInput.vue.d.ts +11 -0
- package/dist/components/forms/RangeInput.d.vue.ts +10 -0
- package/dist/components/forms/RangeInput.vue +48 -0
- package/dist/components/forms/RangeInput.vue.d.ts +10 -0
- package/dist/components/forms/Tabs.d.vue.ts +23 -0
- package/dist/components/forms/Tabs.vue +35 -0
- package/dist/components/forms/Tabs.vue.d.ts +23 -0
- package/dist/components/forms/TimePicker.d.vue.ts +18 -0
- package/dist/components/forms/TimePicker.vue +370 -0
- package/dist/components/forms/TimePicker.vue.d.ts +18 -0
- package/dist/components/table/DataTable.d.vue.ts +70 -0
- package/dist/components/table/DataTable.vue +361 -0
- package/dist/components/table/DataTable.vue.d.ts +70 -0
- package/dist/components/table/EditableDataTable.d.vue.ts +21 -0
- package/dist/components/table/EditableDataTable.vue +330 -0
- package/dist/components/table/EditableDataTable.vue.d.ts +21 -0
- package/dist/components/table/EditableDataTableRow.d.vue.ts +20 -0
- package/dist/components/table/EditableDataTableRow.vue +253 -0
- package/dist/components/table/EditableDataTableRow.vue.d.ts +20 -0
- package/dist/components/table/FilterGenerator.d.vue.ts +13 -0
- package/dist/components/table/FilterGenerator.vue +231 -0
- package/dist/components/table/FilterGenerator.vue.d.ts +13 -0
- package/dist/components/table/StaticTable.d.vue.ts +34 -0
- package/dist/components/table/StaticTable.vue +152 -0
- package/dist/components/table/StaticTable.vue.d.ts +34 -0
- package/dist/components/table/TablePagination.d.vue.ts +15 -0
- package/dist/components/table/TablePagination.vue +73 -0
- package/dist/components/table/TablePagination.vue.d.ts +15 -0
- package/dist/composables/useIsMobile.d.ts +1 -0
- package/dist/composables/useIsMobile.js +10 -0
- package/dist/composables/useIsMobile.mjs +4 -0
- package/dist/composables/useTableFilters.d.ts +23 -0
- package/dist/composables/useTableFilters.js +197 -0
- package/dist/composables/useTableFilters.mjs +184 -0
- package/dist/images/avatar.png +0 -0
- package/dist/images/sa.svg +1 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.js +454 -0
- package/dist/index.mjs +130 -0
- package/dist/lang/ar.json +54 -0
- package/dist/lang/en.json +54 -0
- package/dist/styles/assets/scss/variables/_template.scss +1 -0
- package/dist/styles/assets/scss/variables/_vuetify.scss +1 -0
- package/dist/styles/core/base/_components.scss +164 -0
- package/dist/styles/core/base/_dark.scss +16 -0
- package/dist/styles/core/base/_default-layout-w-vertical-nav.scss +106 -0
- package/dist/styles/core/base/_default-layout.scss +16 -0
- package/dist/styles/core/base/_index.scss +47 -0
- package/dist/styles/core/base/_layouts.scss +63 -0
- package/dist/styles/core/base/_misc.scss +20 -0
- package/dist/styles/core/base/_mixins.scss +84 -0
- package/dist/styles/core/base/_route-transitions.scss +70 -0
- package/dist/styles/core/base/_utilities.scss +418 -0
- package/dist/styles/core/base/_utils.scss +100 -0
- package/dist/styles/core/base/_variables.scss +190 -0
- package/dist/styles/core/base/_vertical-nav.scss +264 -0
- package/dist/styles/core/base/libs/_perfect-scrollbar.scss +35 -0
- package/dist/styles/core/base/libs/vuetify/_index.scss +1 -0
- package/dist/styles/core/base/libs/vuetify/_overrides.scss +380 -0
- package/dist/styles/core/base/libs/vuetify/_variables.scss +48 -0
- package/dist/styles/core/base/placeholders/_default-layout-vertical-nav.scss +48 -0
- package/dist/styles/core/base/placeholders/_default-layout.scss +3 -0
- package/dist/styles/core/base/placeholders/_index.scss +5 -0
- package/dist/styles/core/base/placeholders/_misc.scss +7 -0
- package/dist/styles/core/base/placeholders/_nav.scss +26 -0
- package/dist/styles/core/base/placeholders/_vertical-nav.scss +84 -0
- package/dist/styles/core/base/skins/_bordered.scss +60 -0
- package/dist/styles/core/base/skins/_index.scss +1 -0
- package/dist/styles/core/template/_components.scss +1035 -0
- package/dist/styles/core/template/_default-layout-w-vertical-nav.scss +20 -0
- package/dist/styles/core/template/_utilities.scss +20 -0
- package/dist/styles/core/template/_variables.scss +67 -0
- package/dist/styles/core/template/_vertical-nav.scss +41 -0
- package/dist/styles/core/template/index.css +18779 -0
- package/dist/styles/core/template/index.scss +15 -0
- package/dist/styles/core/template/libs/vuetify/_variables.scss +464 -0
- package/dist/styles/core/template/libs/vuetify/index.css +739 -0
- package/dist/styles/core/template/libs/vuetify/index.scss +1 -0
- package/dist/styles/core/template/pages/misc.css +16 -0
- package/dist/styles/core/template/pages/misc.scss +20 -0
- package/dist/styles/core/template/placeholders/_default-layout-vertical-nav.scss +9 -0
- package/dist/styles/core/template/placeholders/_index.scss +3 -0
- package/dist/styles/core/template/placeholders/_nav.scss +15 -0
- package/dist/styles/core/template/placeholders/_vertical-nav.scss +18 -0
- package/dist/styles/core/template/skins/_bordered.scss +36 -0
- package/dist/styles/core/template/skins/_index.scss +1 -0
- package/dist/styles/layouts/_classes.scss +3 -0
- package/dist/styles/layouts/_dashboard-layout.scss +43 -0
- package/dist/styles/layouts/_global.scss +10 -0
- package/dist/styles/layouts/_mixins.scss +28 -0
- package/dist/styles/layouts/_placeholders.scss +53 -0
- package/dist/styles/layouts/_rtl.scss +7 -0
- package/dist/styles/layouts/_variables.scss +22 -0
- package/dist/styles/layouts/index.css +14 -0
- package/dist/styles/layouts/index.scss +2 -0
- package/dist/types.d.ts +218 -0
- package/dist/utils/apiUrl.d.ts +1 -0
- package/dist/utils/apiUrl.js +15 -0
- package/dist/utils/apiUrl.mjs +8 -0
- package/dist/utils/client.d.ts +9 -0
- package/dist/utils/client.js +53 -0
- package/dist/utils/client.mjs +39 -0
- package/dist/utils/files.d.ts +2 -0
- package/dist/utils/files.js +35 -0
- package/dist/utils/files.mjs +22 -0
- package/dist/utils/formValidation.d.ts +7 -0
- package/dist/utils/formValidation.js +20 -0
- package/dist/utils/formValidation.mjs +13 -0
- package/dist/utils/formatters.d.ts +12 -0
- package/dist/utils/formatters.js +84 -0
- package/dist/utils/formatters.mjs +56 -0
- package/dist/utils/hijriDate.d.ts +58 -0
- package/dist/utils/hijriDate.js +168 -0
- package/dist/utils/hijriDate.mjs +1951 -0
- package/dist/utils/i18n.d.ts +8 -0
- package/dist/utils/i18n.js +36 -0
- package/dist/utils/i18n.mjs +27 -0
- package/dist/utils/index.d.ts +10 -0
- package/dist/utils/index.js +115 -0
- package/dist/utils/index.mjs +10 -0
- package/dist/utils/queryParams.d.ts +4 -0
- package/dist/utils/queryParams.js +26 -0
- package/dist/utils/queryParams.mjs +18 -0
- package/dist/utils/ruleValidator.d.ts +41 -0
- package/dist/utils/ruleValidator.js +210 -0
- package/dist/utils/ruleValidator.mjs +195 -0
- package/dist/utils/toaster.d.ts +12 -0
- package/dist/utils/toaster.js +68 -0
- package/dist/utils/toaster.mjs +58 -0
- package/dist/utils/utils.d.ts +9 -0
- package/dist/utils/utils.js +84 -0
- package/dist/utils/utils.mjs +67 -0
- package/package.json +1 -1
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, watch, toRaw } from "vue";
|
|
3
|
+
import { VLabel, VCheckbox, VCol, VRow } from "vuetify/components";
|
|
4
|
+
const props = defineProps({
|
|
5
|
+
selectedCheckbox: { type: Array, required: true },
|
|
6
|
+
checkboxContent: { type: Array, required: true },
|
|
7
|
+
gridColumn: { type: Object, required: false }
|
|
8
|
+
});
|
|
9
|
+
const emit = defineEmits(["update:selectedCheckbox"]);
|
|
10
|
+
const selectedOption = ref(structuredClone(toRaw(props.selectedCheckbox)));
|
|
11
|
+
watch(selectedOption, () => {
|
|
12
|
+
emit("update:selectedCheckbox", selectedOption.value);
|
|
13
|
+
});
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<template>
|
|
17
|
+
<VRow
|
|
18
|
+
v-if="checkboxContent && selectedOption"
|
|
19
|
+
v-model="selectedOption"
|
|
20
|
+
>
|
|
21
|
+
<VCol
|
|
22
|
+
v-for="item in checkboxContent"
|
|
23
|
+
:key="item.value"
|
|
24
|
+
v-bind="gridColumn"
|
|
25
|
+
>
|
|
26
|
+
<VLabel
|
|
27
|
+
class="custom-input custom-checkbox rounded cursor-pointer w-100"
|
|
28
|
+
:class="selectedOption.includes(item.value) ? 'active' : ''"
|
|
29
|
+
>
|
|
30
|
+
<div>
|
|
31
|
+
<VCheckbox
|
|
32
|
+
v-model="selectedOption"
|
|
33
|
+
:value="item.value"
|
|
34
|
+
/>
|
|
35
|
+
</div>
|
|
36
|
+
<img
|
|
37
|
+
:src="item.bgImage"
|
|
38
|
+
alt="bg-img"
|
|
39
|
+
class="custom-checkbox-image"
|
|
40
|
+
>
|
|
41
|
+
</VLabel>
|
|
42
|
+
</VCol>
|
|
43
|
+
</VRow>
|
|
44
|
+
</template>
|
|
45
|
+
|
|
46
|
+
<style scoped>
|
|
47
|
+
.custom-checkbox {
|
|
48
|
+
position: relative;
|
|
49
|
+
padding: 0;
|
|
50
|
+
border-width: 2px;
|
|
51
|
+
transition: all 0.5s;
|
|
52
|
+
}
|
|
53
|
+
.custom-checkbox .custom-checkbox-image {
|
|
54
|
+
block-size: 100%;
|
|
55
|
+
inline-size: 100%;
|
|
56
|
+
min-inline-size: 100%;
|
|
57
|
+
}
|
|
58
|
+
.custom-checkbox .v-checkbox {
|
|
59
|
+
position: absolute;
|
|
60
|
+
inset-block-start: 0;
|
|
61
|
+
inset-inline-end: 0;
|
|
62
|
+
visibility: hidden;
|
|
63
|
+
}
|
|
64
|
+
.custom-checkbox:hover .v-checkbox, .custom-checkbox.active .v-checkbox {
|
|
65
|
+
visibility: visible;
|
|
66
|
+
}
|
|
67
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
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 __VLS_export: 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
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string;
|
|
4
|
+
radioContent: CustomInputContent[];
|
|
5
|
+
gridColumn?: GridColumn;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_32: {
|
|
8
|
+
item: CustomInputContent;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
default?: (props: typeof __VLS_32) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:selectedRadio": (value: string) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, watch, toRaw } from "vue";
|
|
3
|
+
import { VLabel, VRadio, VSpacer, VRadioGroup, VCol, VRow } from "vuetify/components";
|
|
4
|
+
const props = defineProps({
|
|
5
|
+
selectedRadio: { type: String, required: true },
|
|
6
|
+
radioContent: { type: Array, required: true },
|
|
7
|
+
gridColumn: { type: Object, required: false }
|
|
8
|
+
});
|
|
9
|
+
const emit = defineEmits(["update:selectedRadio"]);
|
|
10
|
+
const selectedOption = ref(structuredClone(toRaw(props.selectedRadio)));
|
|
11
|
+
watch(selectedOption, () => {
|
|
12
|
+
emit("update:selectedRadio", selectedOption.value);
|
|
13
|
+
});
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<template>
|
|
17
|
+
<VRadioGroup
|
|
18
|
+
v-if="radioContent"
|
|
19
|
+
v-model="selectedOption"
|
|
20
|
+
>
|
|
21
|
+
<VRow>
|
|
22
|
+
<VCol
|
|
23
|
+
v-for="item in radioContent"
|
|
24
|
+
:key="item.title"
|
|
25
|
+
v-bind="gridColumn"
|
|
26
|
+
>
|
|
27
|
+
<VLabel
|
|
28
|
+
class="custom-input custom-radio rounded cursor-pointer"
|
|
29
|
+
:class="selectedOption === item.value ? 'active' : ''"
|
|
30
|
+
>
|
|
31
|
+
<div>
|
|
32
|
+
<VRadio :value="item.value" />
|
|
33
|
+
</div>
|
|
34
|
+
<slot :item="item">
|
|
35
|
+
<div class="flex-grow-1">
|
|
36
|
+
<div class="d-flex align-center mb-1">
|
|
37
|
+
<h6 class="cr-title text-base">
|
|
38
|
+
{{ item.title }}
|
|
39
|
+
</h6>
|
|
40
|
+
<VSpacer />
|
|
41
|
+
<span
|
|
42
|
+
v-if="item.subtitle"
|
|
43
|
+
class="text-disabled text-base"
|
|
44
|
+
>{{ item.subtitle }}</span>
|
|
45
|
+
</div>
|
|
46
|
+
<p class="text-sm mb-0">
|
|
47
|
+
{{ item.desc }}
|
|
48
|
+
</p>
|
|
49
|
+
</div>
|
|
50
|
+
</slot>
|
|
51
|
+
</VLabel>
|
|
52
|
+
</VCol>
|
|
53
|
+
</VRow>
|
|
54
|
+
</VRadioGroup>
|
|
55
|
+
</template>
|
|
56
|
+
|
|
57
|
+
<style scoped>
|
|
58
|
+
.custom-radio {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: flex-start;
|
|
61
|
+
gap: 0.375rem;
|
|
62
|
+
}
|
|
63
|
+
.custom-radio .v-radio {
|
|
64
|
+
margin-block-start: -0.25rem;
|
|
65
|
+
}
|
|
66
|
+
.custom-radio .cr-title {
|
|
67
|
+
font-weight: 500;
|
|
68
|
+
}
|
|
69
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string;
|
|
4
|
+
radioContent: CustomInputContent[];
|
|
5
|
+
gridColumn?: GridColumn;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_32: {
|
|
8
|
+
item: CustomInputContent;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
default?: (props: typeof __VLS_32) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:selectedRadio": (value: string) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string | number;
|
|
4
|
+
label?: string;
|
|
5
|
+
radioContent: CustomInputContent[];
|
|
6
|
+
gridColumn?: GridColumn;
|
|
7
|
+
errorMessages?: string;
|
|
8
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_31: {
|
|
11
|
+
item: CustomInputContent;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = {} & {
|
|
14
|
+
default?: (props: typeof __VLS_31) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
17
|
+
"update:selectedRadio": (value: string | number) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
"onUpdate:selectedRadio"?: ((value: string | number) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, watch, toRaw, computed } from "vue";
|
|
3
|
+
import { VLabel, VRadio, VRadioGroup, VCol, VRow, VIcon } from "vuetify/components";
|
|
4
|
+
import { useI18n } from "vue-i18n";
|
|
5
|
+
const { t } = useI18n();
|
|
6
|
+
const props = defineProps({
|
|
7
|
+
selectedRadio: { type: [String, Number], required: true },
|
|
8
|
+
label: { type: String, required: false },
|
|
9
|
+
radioContent: { type: Array, required: true },
|
|
10
|
+
gridColumn: { type: Object, required: false },
|
|
11
|
+
errorMessages: { type: String, required: false },
|
|
12
|
+
rules: { type: Array, required: false }
|
|
13
|
+
});
|
|
14
|
+
const emit = defineEmits(["update:selectedRadio"]);
|
|
15
|
+
const selectedOption = ref(structuredClone(toRaw(props.selectedRadio)));
|
|
16
|
+
watch(selectedOption, () => {
|
|
17
|
+
emit("update:selectedRadio", selectedOption.value);
|
|
18
|
+
});
|
|
19
|
+
watch(() => props.selectedRadio, () => {
|
|
20
|
+
selectedOption.value = props.selectedRadio;
|
|
21
|
+
}, { immediate: true });
|
|
22
|
+
const labelLang = computed(() => props.label ? t("inputs.placeholder_select", { name: t(props.label) }) : "");
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<template>
|
|
26
|
+
<div v-if="radioContent">
|
|
27
|
+
<VLabel
|
|
28
|
+
class="font-weight-bold mb-4 text-body-2 text-high-emphasis"
|
|
29
|
+
:text="labelLang"
|
|
30
|
+
/>
|
|
31
|
+
|
|
32
|
+
<VRadioGroup v-model="selectedOption" :rules="rules" :error-messages="errorMessages">
|
|
33
|
+
<VRow>
|
|
34
|
+
<VCol
|
|
35
|
+
v-for="item in radioContent"
|
|
36
|
+
:key="item.title"
|
|
37
|
+
v-bind="gridColumn"
|
|
38
|
+
>
|
|
39
|
+
<VLabel
|
|
40
|
+
class="custom-input custom-radio-icon app-rounded-6 cursor-pointer"
|
|
41
|
+
:class="[selectedOption === item.value ? 'active' : '', errorMessages ? 'border-error' : '']"
|
|
42
|
+
>
|
|
43
|
+
<slot :item="item">
|
|
44
|
+
<div class="d-flex flex-column align-center text-center gap-2">
|
|
45
|
+
<VIcon
|
|
46
|
+
v-bind="item.icon"
|
|
47
|
+
class="text-high-emphasis"
|
|
48
|
+
/>
|
|
49
|
+
<img
|
|
50
|
+
:src="item.image"
|
|
51
|
+
alt="radio image"
|
|
52
|
+
class="img-fluid"
|
|
53
|
+
>
|
|
54
|
+
<h6 class="cr-title text-base">
|
|
55
|
+
{{ item.title }}
|
|
56
|
+
</h6>
|
|
57
|
+
|
|
58
|
+
<p v-if="item.desc" class="text-sm mb-0 clamp-text">
|
|
59
|
+
{{ item.desc }}
|
|
60
|
+
</p>
|
|
61
|
+
</div>
|
|
62
|
+
</slot>
|
|
63
|
+
|
|
64
|
+
<div>
|
|
65
|
+
<VRadio :value="item.value" />
|
|
66
|
+
</div>
|
|
67
|
+
</VLabel>
|
|
68
|
+
</VCol>
|
|
69
|
+
</VRow>
|
|
70
|
+
</VRadioGroup>
|
|
71
|
+
</div>
|
|
72
|
+
</template>
|
|
73
|
+
|
|
74
|
+
<style scoped>
|
|
75
|
+
.custom-radio-icon {
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
gap: 0.375rem;
|
|
79
|
+
}
|
|
80
|
+
.custom-radio-icon .v-radio {
|
|
81
|
+
margin-block-end: -0.25rem;
|
|
82
|
+
}
|
|
83
|
+
.custom-radio-icon .cr-title {
|
|
84
|
+
font-weight: 500;
|
|
85
|
+
}
|
|
86
|
+
.custom-radio-icon img {
|
|
87
|
+
height: 70px;
|
|
88
|
+
}
|
|
89
|
+
</style>
|
|
90
|
+
|
|
91
|
+
<style>
|
|
92
|
+
.custom-radio-icon .v-radio {
|
|
93
|
+
margin-block-end: -0.25rem;
|
|
94
|
+
}
|
|
95
|
+
.custom-radio-icon .v-radio .v-selection-control__wrapper {
|
|
96
|
+
margin-inline-start: 0;
|
|
97
|
+
}
|
|
98
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { CustomInputContent, GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string | number;
|
|
4
|
+
label?: string;
|
|
5
|
+
radioContent: CustomInputContent[];
|
|
6
|
+
gridColumn?: GridColumn;
|
|
7
|
+
errorMessages?: string;
|
|
8
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_31: {
|
|
11
|
+
item: CustomInputContent;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = {} & {
|
|
14
|
+
default?: (props: typeof __VLS_31) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
17
|
+
"update:selectedRadio": (value: string | number) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
"onUpdate:selectedRadio"?: ((value: string | number) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string;
|
|
4
|
+
radioContent: {
|
|
5
|
+
bgImage?: string;
|
|
6
|
+
value: string;
|
|
7
|
+
type?: string;
|
|
8
|
+
}[];
|
|
9
|
+
gridColumn?: GridColumn;
|
|
10
|
+
};
|
|
11
|
+
declare var __VLS_29: number, __VLS_30: {
|
|
12
|
+
item: {
|
|
13
|
+
bgImage?: string;
|
|
14
|
+
value: string;
|
|
15
|
+
type?: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
type __VLS_Slots = {} & {
|
|
19
|
+
[K in NonNullable<typeof __VLS_29>]?: (props: typeof __VLS_30) => any;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
22
|
+
"update:selectedRadio": (value: string) => any;
|
|
23
|
+
"clicked-custom": () => any;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
26
|
+
"onClicked-custom"?: (() => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, watch, toRaw } from "vue";
|
|
3
|
+
import { VRadioGroup, VRow, VCol, VLabel, VRadio } from "vuetify/components";
|
|
4
|
+
const props = defineProps({
|
|
5
|
+
selectedRadio: { type: String, required: true },
|
|
6
|
+
radioContent: { type: Array, required: true },
|
|
7
|
+
gridColumn: { type: Object, required: false }
|
|
8
|
+
});
|
|
9
|
+
const emit = defineEmits(["update:selectedRadio", "clicked-custom"]);
|
|
10
|
+
const selectedOption = ref(structuredClone(toRaw(props.selectedRadio)));
|
|
11
|
+
watch(selectedOption, () => {
|
|
12
|
+
emit("update:selectedRadio", selectedOption.value);
|
|
13
|
+
});
|
|
14
|
+
watch(() => props.selectedRadio, (val) => {
|
|
15
|
+
selectedOption.value = val;
|
|
16
|
+
});
|
|
17
|
+
</script>
|
|
18
|
+
|
|
19
|
+
<template>
|
|
20
|
+
<VRadioGroup
|
|
21
|
+
v-if="radioContent"
|
|
22
|
+
v-model="selectedOption"
|
|
23
|
+
>
|
|
24
|
+
<VRow>
|
|
25
|
+
<VCol
|
|
26
|
+
v-for="(item, index) in radioContent"
|
|
27
|
+
:key="item.bgImage"
|
|
28
|
+
v-bind="gridColumn"
|
|
29
|
+
:style="{
|
|
30
|
+
maxWidth: $attrs?.['max-width']
|
|
31
|
+
}"
|
|
32
|
+
>
|
|
33
|
+
<VLabel
|
|
34
|
+
class="custom-input custom-radio rounded cursor-pointer w-100"
|
|
35
|
+
:class="selectedOption === item.value ? 'active' : ''"
|
|
36
|
+
@click="item?.type === 'custom' ? emit('clicked-custom') : ''"
|
|
37
|
+
>
|
|
38
|
+
<img
|
|
39
|
+
v-if="item.bgImage"
|
|
40
|
+
:src="item.bgImage"
|
|
41
|
+
alt="bg-img"
|
|
42
|
+
class="custom-radio-image"
|
|
43
|
+
>
|
|
44
|
+
<slot v-else :item="item" :name="index" />
|
|
45
|
+
<VRadio
|
|
46
|
+
v-show="item.bgImage"
|
|
47
|
+
:value="item.value"
|
|
48
|
+
:disabled="item?.type === 'custom'"
|
|
49
|
+
/>
|
|
50
|
+
</VLabel>
|
|
51
|
+
</VCol>
|
|
52
|
+
</VRow>
|
|
53
|
+
</VRadioGroup>
|
|
54
|
+
</template>
|
|
55
|
+
|
|
56
|
+
<style scoped>
|
|
57
|
+
.custom-radio {
|
|
58
|
+
padding: 0 !important;
|
|
59
|
+
border-width: 2px !important;
|
|
60
|
+
}
|
|
61
|
+
.custom-radio .custom-radio-image {
|
|
62
|
+
block-size: 100%;
|
|
63
|
+
inline-size: 100%;
|
|
64
|
+
min-inline-size: 100%;
|
|
65
|
+
}
|
|
66
|
+
.custom-radio .v-radio {
|
|
67
|
+
visibility: hidden;
|
|
68
|
+
}
|
|
69
|
+
</style>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { GridColumn } from '../../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
selectedRadio: string;
|
|
4
|
+
radioContent: {
|
|
5
|
+
bgImage?: string;
|
|
6
|
+
value: string;
|
|
7
|
+
type?: string;
|
|
8
|
+
}[];
|
|
9
|
+
gridColumn?: GridColumn;
|
|
10
|
+
};
|
|
11
|
+
declare var __VLS_29: number, __VLS_30: {
|
|
12
|
+
item: {
|
|
13
|
+
bgImage?: string;
|
|
14
|
+
value: string;
|
|
15
|
+
type?: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
type __VLS_Slots = {} & {
|
|
19
|
+
[K in NonNullable<typeof __VLS_29>]?: (props: typeof __VLS_30) => any;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
22
|
+
"update:selectedRadio": (value: string) => any;
|
|
23
|
+
"clicked-custom": () => any;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onUpdate:selectedRadio"?: ((value: string) => any) | undefined;
|
|
26
|
+
"onClicked-custom"?: (() => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import 'v-calendar/style.css';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue?: string | Date;
|
|
4
|
+
format?: string;
|
|
5
|
+
displayFormat?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
forcedLabel?: string;
|
|
8
|
+
minDate?: string | Date | null;
|
|
9
|
+
maxDate?: string | Date | null;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
disabled?: boolean | undefined;
|
|
12
|
+
errorMessages?: string | string[];
|
|
13
|
+
clearable?: boolean;
|
|
14
|
+
clearIcon?: string;
|
|
15
|
+
required?: boolean;
|
|
16
|
+
rules?: ((value: unknown) => typeof value | string)[];
|
|
17
|
+
showToday?: boolean;
|
|
18
|
+
hideErrorMessage?: boolean;
|
|
19
|
+
inTable?: boolean;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
22
|
+
"update:modelValue": (value: string | Date) => any;
|
|
23
|
+
resetSelectedDate: () => any;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((value: string | Date) => any) | undefined;
|
|
26
|
+
onResetSelectedDate?: (() => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
29
|
+
export default _default;
|