@winchsa/ui 0.1.33 → 0.1.35

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.
Files changed (300) hide show
  1. package/dist/components/Breadcrumbs.d.vue.ts +7 -0
  2. package/dist/components/Breadcrumbs.vue +46 -0
  3. package/dist/components/Breadcrumbs.vue.d.ts +7 -0
  4. package/dist/components/CustomizerSection.d.vue.ts +17 -0
  5. package/dist/components/CustomizerSection.vue +19 -0
  6. package/dist/components/CustomizerSection.vue.d.ts +17 -0
  7. package/dist/components/DialogCloseBtn.d.vue.ts +7 -0
  8. package/dist/components/DialogCloseBtn.vue +20 -0
  9. package/dist/components/DialogCloseBtn.vue.d.ts +7 -0
  10. package/dist/components/Drawer.d.vue.ts +28 -0
  11. package/dist/components/Drawer.vue +60 -0
  12. package/dist/components/Drawer.vue.d.ts +28 -0
  13. package/dist/components/IconBtn.d.vue.ts +18 -0
  14. package/dist/components/IconBtn.vue +24 -0
  15. package/dist/components/IconBtn.vue.d.ts +18 -0
  16. package/dist/components/LoadingBar.d.vue.ts +6 -0
  17. package/dist/components/LoadingBar.vue +31 -0
  18. package/dist/components/LoadingBar.vue.d.ts +6 -0
  19. package/dist/components/LoadingDialog.d.vue.ts +12 -0
  20. package/dist/components/LoadingDialog.vue +41 -0
  21. package/dist/components/LoadingDialog.vue.d.ts +12 -0
  22. package/dist/components/LoadingItem.d.vue.ts +25 -0
  23. package/dist/components/LoadingItem.vue +66 -0
  24. package/dist/components/LoadingItem.vue.d.ts +25 -0
  25. package/dist/components/Modal.d.vue.ts +50 -0
  26. package/dist/components/Modal.vue +155 -0
  27. package/dist/components/Modal.vue.d.ts +50 -0
  28. package/dist/components/MoreBtn.d.vue.ts +17 -0
  29. package/dist/components/MoreBtn.vue +28 -0
  30. package/dist/components/MoreBtn.vue.d.ts +17 -0
  31. package/dist/components/ScrollToTop.d.vue.ts +3 -0
  32. package/dist/components/ScrollToTop.vue +39 -0
  33. package/dist/components/ScrollToTop.vue.d.ts +3 -0
  34. package/dist/components/SiteTitle.d.vue.ts +3 -0
  35. package/dist/components/SiteTitle.vue +14 -0
  36. package/dist/components/SiteTitle.vue.d.ts +3 -0
  37. package/dist/components/Toaster.d.vue.ts +6 -0
  38. package/dist/components/Toaster.vue +19 -0
  39. package/dist/components/Toaster.vue.d.ts +6 -0
  40. package/dist/components/cards/AppCard.d.vue.ts +18 -0
  41. package/dist/components/cards/AppCard.vue +45 -0
  42. package/dist/components/cards/AppCard.vue.d.ts +18 -0
  43. package/dist/components/cards/AppCardActions.d.vue.ts +33 -0
  44. package/dist/components/cards/AppCardActions.vue +126 -0
  45. package/dist/components/cards/AppCardActions.vue.d.ts +33 -0
  46. package/dist/components/cards/CardStatisticsHorizontal.d.vue.ts +9 -0
  47. package/dist/components/cards/CardStatisticsHorizontal.vue +29 -0
  48. package/dist/components/cards/CardStatisticsHorizontal.vue.d.ts +9 -0
  49. package/dist/components/cards/CheckboxesCard.d.vue.ts +18 -0
  50. package/dist/components/cards/CheckboxesCard.vue +108 -0
  51. package/dist/components/cards/CheckboxesCard.vue.d.ts +18 -0
  52. package/dist/components/cards/HeaderCard.d.vue.ts +9 -0
  53. package/dist/components/cards/HeaderCard.vue +31 -0
  54. package/dist/components/cards/HeaderCard.vue.d.ts +9 -0
  55. package/dist/components/cards/ImageCard.d.vue.ts +33 -0
  56. package/dist/components/cards/ImageCard.vue +73 -0
  57. package/dist/components/cards/ImageCard.vue.d.ts +33 -0
  58. package/dist/components/cards/InputCard.d.vue.ts +21 -0
  59. package/dist/components/cards/InputCard.vue +60 -0
  60. package/dist/components/cards/InputCard.vue.d.ts +21 -0
  61. package/dist/components/cards/StaticCard.d.vue.ts +21 -0
  62. package/dist/components/cards/StaticCard.vue +37 -0
  63. package/dist/components/cards/StaticCard.vue.d.ts +21 -0
  64. package/dist/components/forms/Accordion.d.vue.ts +19 -0
  65. package/dist/components/forms/Accordion.vue +43 -0
  66. package/dist/components/forms/Accordion.vue.d.ts +19 -0
  67. package/dist/components/forms/AppBarSearch.d.vue.ts +43 -0
  68. package/dist/components/forms/AppBarSearch.vue +345 -0
  69. package/dist/components/forms/AppBarSearch.vue.d.ts +43 -0
  70. package/dist/components/forms/AppCombobox.d.vue.ts +13 -0
  71. package/dist/components/forms/AppCombobox.vue +60 -0
  72. package/dist/components/forms/AppCombobox.vue.d.ts +13 -0
  73. package/dist/components/forms/AppDrawerHeaderSection.d.vue.ts +20 -0
  74. package/dist/components/forms/AppDrawerHeaderSection.vue +21 -0
  75. package/dist/components/forms/AppDrawerHeaderSection.vue.d.ts +20 -0
  76. package/dist/components/forms/AppLabel.d.vue.ts +24 -0
  77. package/dist/components/forms/AppLabel.vue +47 -0
  78. package/dist/components/forms/AppLabel.vue.d.ts +24 -0
  79. package/dist/components/forms/AppLink.d.vue.ts +19 -0
  80. package/dist/components/forms/AppLink.vue +50 -0
  81. package/dist/components/forms/AppLink.vue.d.ts +19 -0
  82. package/dist/components/forms/AppNumberField.d.vue.ts +20 -0
  83. package/dist/components/forms/AppNumberField.vue +79 -0
  84. package/dist/components/forms/AppNumberField.vue.d.ts +20 -0
  85. package/dist/components/forms/AppOtpInput.d.vue.ts +13 -0
  86. package/dist/components/forms/AppOtpInput.vue +84 -0
  87. package/dist/components/forms/AppOtpInput.vue.d.ts +13 -0
  88. package/dist/components/forms/AppSearchHeader.d.vue.ts +8 -0
  89. package/dist/components/forms/AppSearchHeader.vue +72 -0
  90. package/dist/components/forms/AppSearchHeader.vue.d.ts +8 -0
  91. package/dist/components/forms/AppSelect.d.vue.ts +21 -0
  92. package/dist/components/forms/AppSelect.vue +94 -0
  93. package/dist/components/forms/AppSelect.vue.d.ts +21 -0
  94. package/dist/components/forms/AppStepper.d.vue.ts +21 -0
  95. package/dist/components/forms/AppStepper.vue +232 -0
  96. package/dist/components/forms/AppStepper.vue.d.ts +21 -0
  97. package/dist/components/forms/AppSwitch.d.vue.ts +18 -0
  98. package/dist/components/forms/AppSwitch.vue +60 -0
  99. package/dist/components/forms/AppSwitch.vue.d.ts +18 -0
  100. package/dist/components/forms/AppTextField.d.vue.ts +17 -0
  101. package/dist/components/forms/AppTextField.vue +62 -0
  102. package/dist/components/forms/AppTextField.vue.d.ts +17 -0
  103. package/dist/components/forms/AppTextarea.d.vue.ts +17 -0
  104. package/dist/components/forms/AppTextarea.vue +65 -0
  105. package/dist/components/forms/AppTextarea.vue.d.ts +17 -0
  106. package/dist/components/forms/AttachmentCropperInput.d.vue.ts +18 -0
  107. package/dist/components/forms/AttachmentCropperInput.vue +227 -0
  108. package/dist/components/forms/AttachmentCropperInput.vue.d.ts +18 -0
  109. package/dist/components/forms/AttachmentInput.d.vue.ts +16 -0
  110. package/dist/components/forms/AttachmentInput.vue +116 -0
  111. package/dist/components/forms/AttachmentInput.vue.d.ts +16 -0
  112. package/dist/components/forms/AutocompleteInput.d.vue.ts +86 -0
  113. package/dist/components/forms/AutocompleteInput.vue +778 -0
  114. package/dist/components/forms/AutocompleteInput.vue.d.ts +86 -0
  115. package/dist/components/forms/BankSelect.d.vue.ts +21 -0
  116. package/dist/components/forms/BankSelect.vue +43 -0
  117. package/dist/components/forms/BankSelect.vue.d.ts +21 -0
  118. package/dist/components/forms/BaseButton.d.vue.ts +20 -0
  119. package/dist/components/forms/BaseButton.vue +42 -0
  120. package/dist/components/forms/BaseButton.vue.d.ts +20 -0
  121. package/dist/components/forms/CounterInput.d.vue.ts +13 -0
  122. package/dist/components/forms/CounterInput.vue +71 -0
  123. package/dist/components/forms/CounterInput.vue.d.ts +13 -0
  124. package/dist/components/forms/CustomCheckboxes.d.vue.ts +25 -0
  125. package/dist/components/forms/CustomCheckboxes.vue +69 -0
  126. package/dist/components/forms/CustomCheckboxes.vue.d.ts +25 -0
  127. package/dist/components/forms/CustomCheckboxesWithIcon.d.vue.ts +25 -0
  128. package/dist/components/forms/CustomCheckboxesWithIcon.vue +80 -0
  129. package/dist/components/forms/CustomCheckboxesWithIcon.vue.d.ts +25 -0
  130. package/dist/components/forms/CustomCheckboxesWithImage.d.vue.ts +16 -0
  131. package/dist/components/forms/CustomCheckboxesWithImage.vue +67 -0
  132. package/dist/components/forms/CustomCheckboxesWithImage.vue.d.ts +16 -0
  133. package/dist/components/forms/CustomRadios.d.vue.ts +25 -0
  134. package/dist/components/forms/CustomRadios.vue +69 -0
  135. package/dist/components/forms/CustomRadios.vue.d.ts +25 -0
  136. package/dist/components/forms/CustomRadiosWithIcon.d.vue.ts +28 -0
  137. package/dist/components/forms/CustomRadiosWithIcon.vue +98 -0
  138. package/dist/components/forms/CustomRadiosWithIcon.vue.d.ts +28 -0
  139. package/dist/components/forms/CustomRadiosWithImage.d.vue.ts +35 -0
  140. package/dist/components/forms/CustomRadiosWithImage.vue +69 -0
  141. package/dist/components/forms/CustomRadiosWithImage.vue.d.ts +35 -0
  142. package/dist/components/forms/DatePicker.d.vue.ts +29 -0
  143. package/dist/components/forms/DatePicker.vue +392 -0
  144. package/dist/components/forms/DatePicker.vue.d.ts +29 -0
  145. package/dist/components/forms/DatePickerRange.d.vue.ts +24 -0
  146. package/dist/components/forms/DatePickerRange.vue +127 -0
  147. package/dist/components/forms/DatePickerRange.vue.d.ts +24 -0
  148. package/dist/components/forms/DraggedUploadFile.d.vue.ts +11 -0
  149. package/dist/components/forms/DraggedUploadFile.vue +120 -0
  150. package/dist/components/forms/DraggedUploadFile.vue.d.ts +11 -0
  151. package/dist/components/forms/ImageCardInput.d.vue.ts +35 -0
  152. package/dist/components/forms/ImageCardInput.vue +234 -0
  153. package/dist/components/forms/ImageCardInput.vue.d.ts +35 -0
  154. package/dist/components/forms/InputValidationWrapper.d.vue.ts +26 -0
  155. package/dist/components/forms/InputValidationWrapper.vue +24 -0
  156. package/dist/components/forms/InputValidationWrapper.vue.d.ts +26 -0
  157. package/dist/components/forms/LicensePlateInput.d.vue.ts +21 -0
  158. package/dist/components/forms/LicensePlateInput.vue +175 -0
  159. package/dist/components/forms/LicensePlateInput.vue.d.ts +21 -0
  160. package/dist/components/forms/ManualDate.d.vue.ts +20 -0
  161. package/dist/components/forms/ManualDate.vue +264 -0
  162. package/dist/components/forms/ManualDate.vue.d.ts +20 -0
  163. package/dist/components/forms/MobileInput.d.vue.ts +25 -0
  164. package/dist/components/forms/MobileInput.vue +118 -0
  165. package/dist/components/forms/MobileInput.vue.d.ts +25 -0
  166. package/dist/components/forms/PasswordInput.d.vue.ts +11 -0
  167. package/dist/components/forms/PasswordInput.vue +29 -0
  168. package/dist/components/forms/PasswordInput.vue.d.ts +11 -0
  169. package/dist/components/forms/RangeInput.d.vue.ts +10 -0
  170. package/dist/components/forms/RangeInput.vue +48 -0
  171. package/dist/components/forms/RangeInput.vue.d.ts +10 -0
  172. package/dist/components/forms/Tabs.d.vue.ts +23 -0
  173. package/dist/components/forms/Tabs.vue +35 -0
  174. package/dist/components/forms/Tabs.vue.d.ts +23 -0
  175. package/dist/components/forms/TimePicker.d.vue.ts +18 -0
  176. package/dist/components/forms/TimePicker.vue +370 -0
  177. package/dist/components/forms/TimePicker.vue.d.ts +18 -0
  178. package/dist/components/table/DataTable.d.vue.ts +70 -0
  179. package/dist/components/table/DataTable.vue +361 -0
  180. package/dist/components/table/DataTable.vue.d.ts +70 -0
  181. package/dist/components/table/EditableDataTable.d.vue.ts +21 -0
  182. package/dist/components/table/EditableDataTable.vue +330 -0
  183. package/dist/components/table/EditableDataTable.vue.d.ts +21 -0
  184. package/dist/components/table/EditableDataTableRow.d.vue.ts +20 -0
  185. package/dist/components/table/EditableDataTableRow.vue +252 -0
  186. package/dist/components/table/EditableDataTableRow.vue.d.ts +20 -0
  187. package/dist/components/table/FilterGenerator.d.vue.ts +13 -0
  188. package/dist/components/table/FilterGenerator.vue +231 -0
  189. package/dist/components/table/FilterGenerator.vue.d.ts +13 -0
  190. package/dist/components/table/StaticTable.d.vue.ts +34 -0
  191. package/dist/components/table/StaticTable.vue +152 -0
  192. package/dist/components/table/StaticTable.vue.d.ts +34 -0
  193. package/dist/components/table/TablePagination.d.vue.ts +15 -0
  194. package/dist/components/table/TablePagination.vue +73 -0
  195. package/dist/components/table/TablePagination.vue.d.ts +15 -0
  196. package/dist/composables/useIsMobile.d.ts +1 -0
  197. package/dist/composables/useIsMobile.js +10 -0
  198. package/dist/composables/useIsMobile.mjs +4 -0
  199. package/dist/composables/useTableFilters.d.ts +23 -0
  200. package/dist/composables/useTableFilters.js +197 -0
  201. package/dist/composables/useTableFilters.mjs +184 -0
  202. package/dist/images/avatar.png +0 -0
  203. package/dist/images/sa.svg +1 -0
  204. package/dist/index.d.ts +65 -0
  205. package/dist/index.js +454 -0
  206. package/dist/index.mjs +130 -0
  207. package/dist/lang/ar.json +54 -0
  208. package/dist/lang/en.json +54 -0
  209. package/dist/styles/assets/scss/variables/_template.scss +1 -0
  210. package/dist/styles/assets/scss/variables/_vuetify.scss +1 -0
  211. package/dist/styles/core/base/_components.scss +164 -0
  212. package/dist/styles/core/base/_dark.scss +16 -0
  213. package/dist/styles/core/base/_default-layout-w-vertical-nav.scss +106 -0
  214. package/dist/styles/core/base/_default-layout.scss +16 -0
  215. package/dist/styles/core/base/_index.scss +47 -0
  216. package/dist/styles/core/base/_layouts.scss +63 -0
  217. package/dist/styles/core/base/_misc.scss +20 -0
  218. package/dist/styles/core/base/_mixins.scss +84 -0
  219. package/dist/styles/core/base/_route-transitions.scss +70 -0
  220. package/dist/styles/core/base/_utilities.scss +418 -0
  221. package/dist/styles/core/base/_utils.scss +100 -0
  222. package/dist/styles/core/base/_variables.scss +190 -0
  223. package/dist/styles/core/base/_vertical-nav.scss +264 -0
  224. package/dist/styles/core/base/libs/_perfect-scrollbar.scss +35 -0
  225. package/dist/styles/core/base/libs/vuetify/_index.scss +1 -0
  226. package/dist/styles/core/base/libs/vuetify/_overrides.scss +380 -0
  227. package/dist/styles/core/base/libs/vuetify/_variables.scss +48 -0
  228. package/dist/styles/core/base/placeholders/_default-layout-vertical-nav.scss +48 -0
  229. package/dist/styles/core/base/placeholders/_default-layout.scss +3 -0
  230. package/dist/styles/core/base/placeholders/_index.scss +5 -0
  231. package/dist/styles/core/base/placeholders/_misc.scss +7 -0
  232. package/dist/styles/core/base/placeholders/_nav.scss +26 -0
  233. package/dist/styles/core/base/placeholders/_vertical-nav.scss +84 -0
  234. package/dist/styles/core/base/skins/_bordered.scss +60 -0
  235. package/dist/styles/core/base/skins/_index.scss +1 -0
  236. package/dist/styles/core/template/_components.scss +1044 -0
  237. package/dist/styles/core/template/_default-layout-w-vertical-nav.scss +20 -0
  238. package/dist/styles/core/template/_utilities.scss +20 -0
  239. package/dist/styles/core/template/_variables.scss +67 -0
  240. package/dist/styles/core/template/_vertical-nav.scss +41 -0
  241. package/dist/styles/core/template/index.css +18786 -0
  242. package/dist/styles/core/template/index.scss +15 -0
  243. package/dist/styles/core/template/libs/vuetify/_variables.scss +464 -0
  244. package/dist/styles/core/template/libs/vuetify/index.css +739 -0
  245. package/dist/styles/core/template/libs/vuetify/index.scss +1 -0
  246. package/dist/styles/core/template/pages/misc.css +16 -0
  247. package/dist/styles/core/template/pages/misc.scss +20 -0
  248. package/dist/styles/core/template/placeholders/_default-layout-vertical-nav.scss +9 -0
  249. package/dist/styles/core/template/placeholders/_index.scss +3 -0
  250. package/dist/styles/core/template/placeholders/_nav.scss +15 -0
  251. package/dist/styles/core/template/placeholders/_vertical-nav.scss +18 -0
  252. package/dist/styles/core/template/skins/_bordered.scss +36 -0
  253. package/dist/styles/core/template/skins/_index.scss +1 -0
  254. package/dist/styles/layouts/_classes.scss +3 -0
  255. package/dist/styles/layouts/_dashboard-layout.scss +43 -0
  256. package/dist/styles/layouts/_global.scss +10 -0
  257. package/dist/styles/layouts/_mixins.scss +28 -0
  258. package/dist/styles/layouts/_placeholders.scss +53 -0
  259. package/dist/styles/layouts/_rtl.scss +7 -0
  260. package/dist/styles/layouts/_variables.scss +22 -0
  261. package/dist/styles/layouts/index.css +14 -0
  262. package/dist/styles/layouts/index.scss +2 -0
  263. package/dist/types.d.ts +218 -0
  264. package/dist/utils/apiUrl.d.ts +1 -0
  265. package/dist/utils/apiUrl.js +15 -0
  266. package/dist/utils/apiUrl.mjs +8 -0
  267. package/dist/utils/client.d.ts +9 -0
  268. package/dist/utils/client.js +53 -0
  269. package/dist/utils/client.mjs +39 -0
  270. package/dist/utils/files.d.ts +2 -0
  271. package/dist/utils/files.js +35 -0
  272. package/dist/utils/files.mjs +22 -0
  273. package/dist/utils/formValidation.d.ts +7 -0
  274. package/dist/utils/formValidation.js +20 -0
  275. package/dist/utils/formValidation.mjs +13 -0
  276. package/dist/utils/formatters.d.ts +12 -0
  277. package/dist/utils/formatters.js +84 -0
  278. package/dist/utils/formatters.mjs +56 -0
  279. package/dist/utils/hijriDate.d.ts +58 -0
  280. package/dist/utils/hijriDate.js +168 -0
  281. package/dist/utils/hijriDate.mjs +1951 -0
  282. package/dist/utils/i18n.d.ts +8 -0
  283. package/dist/utils/i18n.js +36 -0
  284. package/dist/utils/i18n.mjs +27 -0
  285. package/dist/utils/index.d.ts +10 -0
  286. package/dist/utils/index.js +115 -0
  287. package/dist/utils/index.mjs +10 -0
  288. package/dist/utils/queryParams.d.ts +4 -0
  289. package/dist/utils/queryParams.js +26 -0
  290. package/dist/utils/queryParams.mjs +18 -0
  291. package/dist/utils/ruleValidator.d.ts +41 -0
  292. package/dist/utils/ruleValidator.js +210 -0
  293. package/dist/utils/ruleValidator.mjs +195 -0
  294. package/dist/utils/toaster.d.ts +12 -0
  295. package/dist/utils/toaster.js +68 -0
  296. package/dist/utils/toaster.mjs +58 -0
  297. package/dist/utils/utils.d.ts +9 -0
  298. package/dist/utils/utils.js +84 -0
  299. package/dist/utils/utils.mjs +67 -0
  300. package/package.json +67 -67
@@ -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,21 @@
1
+ type __VLS_Props = {
2
+ label?: string;
3
+ title?: string;
4
+ };
5
+ declare var __VLS_18: string | number, __VLS_19: any;
6
+ type __VLS_Slots = {} & {
7
+ [K in NonNullable<typeof __VLS_18>]?: (props: typeof __VLS_19) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
+ "update:model-value": (value: string | null) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,94 @@
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 props = defineProps({
10
+ label: { type: String, required: false },
11
+ title: { type: String, required: false }
12
+ });
13
+ const { t } = useI18n();
14
+ const attrs = useAttrs();
15
+ const emit = defineEmits(["update:model-value"]);
16
+ const uid = Math.random().toString(36).slice(2, 7);
17
+ const langLabel = computed(() => props.label ? t(props.label) : "");
18
+ const elementId = computed(() => {
19
+ const token = attrs.id || props.label;
20
+ return token ? `app-select-${token}-${uid}` : void 0;
21
+ });
22
+ const placeholder = computed(() => {
23
+ return attrs.placeholder || (props.label ? t("inputs.placeholder_select", { name: langLabel.value }) : "");
24
+ });
25
+ const handleMenuToggle = ($event) => {
26
+ const container = document.getElementsByClassName("v-overlay-container");
27
+ if (!$event) {
28
+ if (container && container[0]) {
29
+ for (let i = 0; i < container[0].children.length; i++) {
30
+ if (container[0].children[i].classList.contains(".v-menu")) {
31
+ container[0].children[i].remove();
32
+ }
33
+ }
34
+ }
35
+ }
36
+ };
37
+ </script>
38
+
39
+ <template>
40
+ <div
41
+ class="app-select flex-grow-1"
42
+ :class="$attrs.class"
43
+ >
44
+ <VLabel
45
+ v-if="title ?? label"
46
+ :for="elementId"
47
+ class="mb-2 text-body-2 text-high-emphasis app-font-size-13"
48
+ :text="title ?? langLabel"
49
+ />
50
+
51
+ <VSelect
52
+ v-bind="{
53
+ ...$attrs,
54
+ class: null,
55
+ label: void 0,
56
+ variant: 'outlined',
57
+ id: elementId,
58
+ menuProps: {
59
+ contentClass: ['app-inner-list', 'app-select__content', 'v-select__content', $attrs.multiple !== void 0 ? 'v-list-select-multiple' : '',
60
+ // @ts-ignore
61
+ ...[$attrs?.['menu-props']?.contentClass || '']]
62
+ }
63
+ }"
64
+ class="app-font-size-13"
65
+ :class="{
66
+ 'hide-arrow': !!$attrs.modelValue && $attrs?.clearable
67
+ }"
68
+ :placeholder="placeholder"
69
+ :no-data-text="t('no_data')"
70
+ persistent-clear
71
+ @update:model-value="e => emit('update:model-value', e)"
72
+ @update:menu="handleMenuToggle"
73
+ >
74
+ <template
75
+ v-for="(_, name) in $slots"
76
+ #[name]="slotProps"
77
+ >
78
+ <slot
79
+ :name="name"
80
+ v-bind="slotProps || {}"
81
+ />
82
+ </template>
83
+ <template #details>
84
+ <span class="app-h-10px" />
85
+ </template>
86
+ </VSelect>
87
+ </div>
88
+ </template>
89
+
90
+ <style scoped>
91
+ .hide-arrow :deep(.v-field__append-inner) {
92
+ display: none !important;
93
+ }
94
+ </style>
@@ -0,0 +1,21 @@
1
+ type __VLS_Props = {
2
+ label?: string;
3
+ title?: string;
4
+ };
5
+ declare var __VLS_18: string | number, __VLS_19: any;
6
+ type __VLS_Slots = {} & {
7
+ [K in NonNullable<typeof __VLS_18>]?: (props: typeof __VLS_19) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
+ "update:model-value": (value: string | null) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -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;