@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,19 @@
|
|
|
1
|
+
declare var __VLS_1: {}, __VLS_10: {}, __VLS_12: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
default?: (props: typeof __VLS_10) => any;
|
|
6
|
+
} & {
|
|
7
|
+
default?: (props: typeof __VLS_12) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {} | {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { RouterLink } from "vue-router";
|
|
3
|
+
import { computed } from "vue";
|
|
4
|
+
defineOptions({
|
|
5
|
+
inheritAttrs: false
|
|
6
|
+
});
|
|
7
|
+
const props = defineProps({
|
|
8
|
+
// @ts-ignore
|
|
9
|
+
...RouterLink.props,
|
|
10
|
+
to: {
|
|
11
|
+
type: [String, Object],
|
|
12
|
+
default: void 0
|
|
13
|
+
},
|
|
14
|
+
withoutDefaultClass: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: false
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const isExternalLink = computed(() => {
|
|
20
|
+
return typeof props.to === "string" && (props.to.startsWith("http") || props.to.startsWith("https"));
|
|
21
|
+
});
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<template>
|
|
25
|
+
<a
|
|
26
|
+
v-if="isExternalLink"
|
|
27
|
+
v-bind="$attrs"
|
|
28
|
+
:href="to"
|
|
29
|
+
target="_blank"
|
|
30
|
+
:class="[{ 'hover-underline': !withoutDefaultClass }, ...($attrs?.class || [])]"
|
|
31
|
+
>
|
|
32
|
+
<slot />
|
|
33
|
+
</a>
|
|
34
|
+
|
|
35
|
+
<RouterLink
|
|
36
|
+
v-else-if="to"
|
|
37
|
+
v-bind="$attrs"
|
|
38
|
+
:to="to"
|
|
39
|
+
:class="[{ 'hover-underline': !withoutDefaultClass }, ...($attrs?.class || [])]"
|
|
40
|
+
>
|
|
41
|
+
<slot />
|
|
42
|
+
</RouterLink>
|
|
43
|
+
|
|
44
|
+
<span
|
|
45
|
+
v-else
|
|
46
|
+
v-bind="$attrs"
|
|
47
|
+
>
|
|
48
|
+
<slot />
|
|
49
|
+
</span>
|
|
50
|
+
</template>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare var __VLS_1: {}, __VLS_10: {}, __VLS_12: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
default?: (props: typeof __VLS_10) => any;
|
|
6
|
+
} & {
|
|
7
|
+
default?: (props: typeof __VLS_12) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {} | {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
modelValue?: string | null | number;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_17: string | number, __VLS_18: any;
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
[K in NonNullable<typeof __VLS_17>]?: (props: typeof __VLS_18) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
"update:modelValue": (value: string | null) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, watch, useAttrs, computed } from "vue";
|
|
3
|
+
import { VTextField, VLabel } from "vuetify/components";
|
|
4
|
+
import { useI18n } from "vue-i18n";
|
|
5
|
+
const { t } = useI18n();
|
|
6
|
+
const attrs = useAttrs();
|
|
7
|
+
defineOptions({
|
|
8
|
+
name: "AppTextField",
|
|
9
|
+
inheritAttrs: false
|
|
10
|
+
});
|
|
11
|
+
const props = defineProps({
|
|
12
|
+
modelValue: { type: [String, null, Number], required: false, default: null }
|
|
13
|
+
});
|
|
14
|
+
const emit = defineEmits(["update:modelValue"]);
|
|
15
|
+
const numberValue = ref(null);
|
|
16
|
+
const uid = Math.random().toString(36).slice(2, 7);
|
|
17
|
+
const toDigits = (value) => {
|
|
18
|
+
return String(value ?? "").replace(/\D/g, "") || null;
|
|
19
|
+
};
|
|
20
|
+
const label = computed(() => attrs.label);
|
|
21
|
+
const langLabel = computed(() => label.value ? t(label.value) : "");
|
|
22
|
+
const elementId = computed(() => {
|
|
23
|
+
const token = attrs.id || label.value;
|
|
24
|
+
return token ? `AppTextField-${token}-${uid}` : void 0;
|
|
25
|
+
});
|
|
26
|
+
const placeholder = computed(() => {
|
|
27
|
+
return attrs.placeholder || (label.value ? t("inputs.placeholder", { name: langLabel.value }) : "");
|
|
28
|
+
});
|
|
29
|
+
watch(() => props.modelValue, (val) => {
|
|
30
|
+
numberValue.value = toDigits(val);
|
|
31
|
+
emit("update:modelValue", numberValue.value);
|
|
32
|
+
}, { immediate: true });
|
|
33
|
+
const validateInput = (event) => {
|
|
34
|
+
const input = event.target;
|
|
35
|
+
numberValue.value = toDigits(numberValue.value);
|
|
36
|
+
input.value = numberValue.value ?? "";
|
|
37
|
+
emit("update:modelValue", numberValue.value);
|
|
38
|
+
};
|
|
39
|
+
</script>
|
|
40
|
+
|
|
41
|
+
<template>
|
|
42
|
+
<div
|
|
43
|
+
class="AppTextField flex-grow-1"
|
|
44
|
+
:class="$attrs.class"
|
|
45
|
+
>
|
|
46
|
+
<VLabel
|
|
47
|
+
v-if="label"
|
|
48
|
+
:for="elementId"
|
|
49
|
+
class="mb-2 text-body-2 text-high-emphasis app-font-size-13"
|
|
50
|
+
:text="langLabel"
|
|
51
|
+
/>
|
|
52
|
+
<VTextField
|
|
53
|
+
v-bind="{
|
|
54
|
+
...$attrs,
|
|
55
|
+
class: null,
|
|
56
|
+
label: void 0,
|
|
57
|
+
variant: 'outlined',
|
|
58
|
+
id: elementId
|
|
59
|
+
}"
|
|
60
|
+
v-model="numberValue"
|
|
61
|
+
:placeholder="placeholder"
|
|
62
|
+
class="app-font-size-13"
|
|
63
|
+
@input="validateInput"
|
|
64
|
+
>
|
|
65
|
+
<template
|
|
66
|
+
v-for="(_, name) in $slots"
|
|
67
|
+
#[name]="slotProps"
|
|
68
|
+
>
|
|
69
|
+
<slot
|
|
70
|
+
:name="name"
|
|
71
|
+
v-bind="slotProps || {}"
|
|
72
|
+
/>
|
|
73
|
+
</template>
|
|
74
|
+
<template #details>
|
|
75
|
+
<span class="app-h-10px" />
|
|
76
|
+
</template>
|
|
77
|
+
</VTextField>
|
|
78
|
+
</div>
|
|
79
|
+
</template>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
modelValue?: string | null | number;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_17: string | number, __VLS_18: any;
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
[K in NonNullable<typeof __VLS_17>]?: (props: typeof __VLS_18) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
"update:modelValue": (value: string | null) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
totalInput?: number;
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
errorMessages?: string;
|
|
5
|
+
isAppRtl?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: 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
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { onMounted, ref } from "vue";
|
|
3
|
+
import { useI18n } from "vue-i18n";
|
|
4
|
+
import AppTextField from "./AppTextField.vue";
|
|
5
|
+
const props = defineProps({
|
|
6
|
+
totalInput: { type: Number, required: false, default: 4 },
|
|
7
|
+
modelValue: { type: String, required: false, default: "" },
|
|
8
|
+
errorMessages: { type: String, required: false, default: "" },
|
|
9
|
+
isAppRtl: { type: Boolean, required: false }
|
|
10
|
+
});
|
|
11
|
+
const { t } = useI18n();
|
|
12
|
+
const emit = defineEmits(["update:modelValue"]);
|
|
13
|
+
const digits = ref([]);
|
|
14
|
+
const refOtpComp = ref(null);
|
|
15
|
+
onMounted(() => {
|
|
16
|
+
if (props.modelValue) {
|
|
17
|
+
digits.value = props.modelValue.split("");
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
const handleBackspace = (event, index) => {
|
|
21
|
+
digits.value[index - 1] = "";
|
|
22
|
+
if (refOtpComp.value !== null && index > 1) {
|
|
23
|
+
const inputEl = refOtpComp.value.children[index - 2].querySelector("input");
|
|
24
|
+
if (inputEl) {
|
|
25
|
+
inputEl.focus();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
const handleNextInput = (event, index) => {
|
|
30
|
+
digits.value[index - 1] = event.key;
|
|
31
|
+
if (refOtpComp.value !== null && index !== 0 && index < refOtpComp.value.children.length) {
|
|
32
|
+
const inputEl = refOtpComp.value.children[index].querySelector("input");
|
|
33
|
+
if (inputEl) {
|
|
34
|
+
inputEl.focus();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
const handleKeyDown = (event, index) => {
|
|
39
|
+
if (event.code !== "Tab" && event.code !== "ArrowRight" && event.code !== "ArrowLeft") {
|
|
40
|
+
event.preventDefault();
|
|
41
|
+
}
|
|
42
|
+
if (event.code === "Backspace") {
|
|
43
|
+
handleBackspace(event, index);
|
|
44
|
+
}
|
|
45
|
+
if (/^([0-9])$/.test(event.key)) {
|
|
46
|
+
handleNextInput(event, index);
|
|
47
|
+
}
|
|
48
|
+
emit("update:modelValue", digits.value.join(""));
|
|
49
|
+
};
|
|
50
|
+
</script>
|
|
51
|
+
|
|
52
|
+
<template>
|
|
53
|
+
<div>
|
|
54
|
+
<h6 class="text-h6 mb-3">
|
|
55
|
+
{{ t('mobile_verification_enter_code') }}
|
|
56
|
+
</h6>
|
|
57
|
+
<div
|
|
58
|
+
ref="refOtpComp"
|
|
59
|
+
class="d-flex align-center gap-4 otp-input"
|
|
60
|
+
:class="{
|
|
61
|
+
'flex-row-reverse': isAppRtl
|
|
62
|
+
}"
|
|
63
|
+
>
|
|
64
|
+
<AppTextField
|
|
65
|
+
v-for="i in props.totalInput"
|
|
66
|
+
:key="i"
|
|
67
|
+
:model-value="digits[i - 1]"
|
|
68
|
+
maxlength="1"
|
|
69
|
+
:error="errorMessages?.length > 0"
|
|
70
|
+
@keydown="handleKeyDown($event, i)"
|
|
71
|
+
/>
|
|
72
|
+
</div>
|
|
73
|
+
<div class="text-error mt-2">
|
|
74
|
+
{{ errorMessages }}
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</template>
|
|
78
|
+
|
|
79
|
+
<style>
|
|
80
|
+
.otp-input input {
|
|
81
|
+
font-size: 1.25rem;
|
|
82
|
+
text-align: center;
|
|
83
|
+
}
|
|
84
|
+
</style>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
totalInput?: number;
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
errorMessages?: string;
|
|
5
|
+
isAppRtl?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: 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
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
subtitle?: string;
|
|
4
|
+
customClass?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: 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
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { VCardText, VIcon } from "vuetify/components";
|
|
3
|
+
import AppSearchHeaderBg from "../../images/avatar.png";
|
|
4
|
+
import AppCard from "../cards/AppCard.vue";
|
|
5
|
+
import AppTextField from "./AppTextField.vue";
|
|
6
|
+
defineProps({
|
|
7
|
+
title: { type: String, required: false },
|
|
8
|
+
subtitle: { type: String, required: false },
|
|
9
|
+
customClass: { type: String, required: false }
|
|
10
|
+
});
|
|
11
|
+
defineOptions({
|
|
12
|
+
inheritAttrs: false
|
|
13
|
+
});
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<template>
|
|
17
|
+
<!-- Search Banner -->
|
|
18
|
+
<AppCard
|
|
19
|
+
flat
|
|
20
|
+
class="text-center search-header"
|
|
21
|
+
:class="customClass"
|
|
22
|
+
:style="`background: url(${AppSearchHeaderBg});`"
|
|
23
|
+
>
|
|
24
|
+
<VCardText>
|
|
25
|
+
<h5 class="text-h3 font-weight-medium">
|
|
26
|
+
{{ title }}
|
|
27
|
+
</h5>
|
|
28
|
+
|
|
29
|
+
<!-- Search Input -->
|
|
30
|
+
<AppTextField
|
|
31
|
+
v-bind="$attrs"
|
|
32
|
+
placeholder="Search a question..."
|
|
33
|
+
class="search-header-input mx-auto my-3"
|
|
34
|
+
density="comfortable"
|
|
35
|
+
>
|
|
36
|
+
<template #prepend-inner>
|
|
37
|
+
<VIcon
|
|
38
|
+
icon="tabler-search"
|
|
39
|
+
size="23"
|
|
40
|
+
/>
|
|
41
|
+
</template>
|
|
42
|
+
</AppTextField>
|
|
43
|
+
|
|
44
|
+
<p class="mb-0">
|
|
45
|
+
{{ subtitle }}
|
|
46
|
+
</p>
|
|
47
|
+
</VCardText>
|
|
48
|
+
</AppCard>
|
|
49
|
+
</template>
|
|
50
|
+
|
|
51
|
+
<style>
|
|
52
|
+
.search-header {
|
|
53
|
+
padding: 4rem !important;
|
|
54
|
+
background-size: cover !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.search-header-input {
|
|
58
|
+
border-radius: 0.25rem !important;
|
|
59
|
+
border-radius: 0.375rem !important;
|
|
60
|
+
background-color: rgb(var(--v-theme-surface));
|
|
61
|
+
max-inline-size: 40.125rem !important;
|
|
62
|
+
}
|
|
63
|
+
.search-header-input .v-field__prepend-inner i {
|
|
64
|
+
inset-block-start: 3px !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@media (max-width: 37.5rem) {
|
|
68
|
+
.search-header {
|
|
69
|
+
padding: 1.5rem !important;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
</style>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
subtitle?: string;
|
|
4
|
+
customClass?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: 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
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare var __VLS_18: string | number, __VLS_19: any;
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
[K in NonNullable<typeof __VLS_18>]?: (props: typeof __VLS_19) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
"update:model-value": (value: string | null) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
8
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { computed, useAttrs } from "vue";
|
|
3
|
+
import { VLabel, VSelect } from "vuetify/components";
|
|
4
|
+
import { useI18n } from "vue-i18n";
|
|
5
|
+
defineOptions({
|
|
6
|
+
name: "AppSelect",
|
|
7
|
+
inheritAttrs: false
|
|
8
|
+
});
|
|
9
|
+
const { t } = useI18n();
|
|
10
|
+
const attrs = useAttrs();
|
|
11
|
+
const emit = defineEmits(["update:model-value"]);
|
|
12
|
+
const uid = Math.random().toString(36).slice(2, 7);
|
|
13
|
+
const label = computed(() => attrs.label);
|
|
14
|
+
const langLabel = computed(() => label.value ? t(label.value) : "");
|
|
15
|
+
const elementId = computed(() => {
|
|
16
|
+
const token = attrs.id || label.value;
|
|
17
|
+
return token ? `app-select-${token}-${uid}` : void 0;
|
|
18
|
+
});
|
|
19
|
+
const placeholder = computed(() => {
|
|
20
|
+
return attrs.placeholder || (label.value ? t("inputs.placeholder_select", { name: langLabel.value }) : "");
|
|
21
|
+
});
|
|
22
|
+
const handleMenuToggle = ($event) => {
|
|
23
|
+
const container = document.getElementsByClassName("v-overlay-container");
|
|
24
|
+
if (!$event) {
|
|
25
|
+
if (container && container[0]) {
|
|
26
|
+
for (let i = 0; i < container[0].children.length; i++) {
|
|
27
|
+
if (container[0].children[i].classList.contains(".v-menu")) {
|
|
28
|
+
container[0].children[i].remove();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
</script>
|
|
35
|
+
|
|
36
|
+
<template>
|
|
37
|
+
<div
|
|
38
|
+
class="app-select flex-grow-1"
|
|
39
|
+
:class="$attrs.class"
|
|
40
|
+
>
|
|
41
|
+
<VLabel
|
|
42
|
+
v-if="label"
|
|
43
|
+
:for="elementId"
|
|
44
|
+
class="mb-2 text-body-2 text-high-emphasis app-font-size-13"
|
|
45
|
+
:text="langLabel"
|
|
46
|
+
/>
|
|
47
|
+
|
|
48
|
+
<VSelect
|
|
49
|
+
v-bind="{
|
|
50
|
+
...$attrs,
|
|
51
|
+
class: null,
|
|
52
|
+
label: void 0,
|
|
53
|
+
variant: 'outlined',
|
|
54
|
+
id: elementId,
|
|
55
|
+
menuProps: {
|
|
56
|
+
contentClass: ['app-inner-list', 'app-select__content', 'v-select__content', $attrs.multiple !== void 0 ? 'v-list-select-multiple' : '',
|
|
57
|
+
// @ts-ignore
|
|
58
|
+
...[$attrs?.['menu-props']?.contentClass || '']]
|
|
59
|
+
}
|
|
60
|
+
}"
|
|
61
|
+
class="app-font-size-13"
|
|
62
|
+
:class="{
|
|
63
|
+
'hide-arrow': !!$attrs.modelValue && $attrs?.clearable
|
|
64
|
+
}"
|
|
65
|
+
:placeholder="placeholder"
|
|
66
|
+
:no-data-text="t('no_data')"
|
|
67
|
+
persistent-clear
|
|
68
|
+
@update:model-value="e => emit('update:model-value', e)"
|
|
69
|
+
@update:menu="handleMenuToggle"
|
|
70
|
+
>
|
|
71
|
+
<template
|
|
72
|
+
v-for="(_, name) in $slots"
|
|
73
|
+
#[name]="slotProps"
|
|
74
|
+
>
|
|
75
|
+
<slot
|
|
76
|
+
:name="name"
|
|
77
|
+
v-bind="slotProps || {}"
|
|
78
|
+
/>
|
|
79
|
+
</template>
|
|
80
|
+
<template #details>
|
|
81
|
+
<span class="app-h-10px" />
|
|
82
|
+
</template>
|
|
83
|
+
</VSelect>
|
|
84
|
+
</div>
|
|
85
|
+
</template>
|
|
86
|
+
|
|
87
|
+
<style scoped>
|
|
88
|
+
.hide-arrow :deep(.v-field__append-inner) {
|
|
89
|
+
display: none !important;
|
|
90
|
+
}
|
|
91
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare var __VLS_18: string | number, __VLS_19: any;
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
[K in NonNullable<typeof __VLS_18>]?: (props: typeof __VLS_19) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
"update:model-value": (value: string | null) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
8
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
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 __VLS_export: 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
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: typeof __VLS_export;
|
|
21
|
+
export default _default;
|