@winchsa/ui 0.1.17 → 0.1.19

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 (67) hide show
  1. package/dist/components/Breadcrumbs.d.vue.ts +6 -0
  2. package/dist/components/CustomizerSection.d.vue.ts +25 -0
  3. package/dist/components/DialogCloseBtn.d.vue.ts +9 -0
  4. package/dist/components/Drawer.d.vue.ts +44 -0
  5. package/dist/components/IconBtn.d.vue.ts +30 -0
  6. package/dist/components/LoadingBar.d.vue.ts +5 -0
  7. package/dist/components/LoadingDialog.d.vue.ts +11 -0
  8. package/dist/components/LoadingItem.d.vue.ts +47 -0
  9. package/dist/components/Modal.d.vue.ts +0 -0
  10. package/dist/components/MoreBtn.d.vue.ts +25 -0
  11. package/dist/components/ScrollToTop.d.vue.ts +2 -0
  12. package/dist/components/SiteTitle.d.vue.ts +2 -0
  13. package/dist/components/Toaster.d.vue.ts +5 -0
  14. package/dist/components/cards/AppCard.d.vue.ts +26 -0
  15. package/dist/components/cards/AppCardActions.d.vue.ts +79 -0
  16. package/dist/components/cards/CardStatisticsHorizontal.d.vue.ts +10 -0
  17. package/dist/components/cards/CheckboxesCard.d.vue.ts +20 -0
  18. package/dist/components/cards/HeaderCard.d.vue.ts +8 -0
  19. package/dist/components/cards/ImageCard.d.vue.ts +63 -0
  20. package/dist/components/cards/InputCard.d.vue.ts +41 -0
  21. package/dist/components/cards/StaticCard.d.vue.ts +33 -0
  22. package/dist/components/forms/Accordion.d.vue.ts +35 -0
  23. package/dist/components/forms/AppBarSearch.d.vue.ts +1587 -0
  24. package/dist/components/forms/AppCombobox.d.vue.ts +0 -0
  25. package/dist/components/forms/AppDrawerHeaderSection.d.vue.ts +30 -0
  26. package/dist/components/forms/AppLabel.d.vue.ts +36 -0
  27. package/dist/components/forms/AppLink.d.vue.ts +27 -0
  28. package/dist/components/forms/AppNumberField.d.vue.ts +45 -0
  29. package/dist/components/forms/AppOtpInput.d.vue.ts +16 -0
  30. package/dist/components/forms/AppSearchHeader.d.vue.ts +7 -0
  31. package/dist/components/forms/AppSelect.d.vue.ts +0 -0
  32. package/dist/components/forms/AppStepper.d.vue.ts +25 -0
  33. package/dist/components/forms/AppSwitch.d.vue.ts +27 -0
  34. package/dist/components/forms/AppTextField.d.vue.ts +26 -0
  35. package/dist/components/forms/AppTextarea.d.vue.ts +26 -0
  36. package/dist/components/forms/AttachmentCropperInput.d.vue.ts +25 -0
  37. package/dist/components/forms/AttachmentInput.d.vue.ts +20 -0
  38. package/dist/components/forms/AutocompleteInput.d.vue.ts +0 -0
  39. package/dist/components/forms/AutocompleteInput.vue +4 -3
  40. package/dist/components/forms/BankSelect.d.vue.ts +19 -0
  41. package/dist/components/forms/BaseButton.d.vue.ts +31 -0
  42. package/dist/components/forms/CounterInput.d.vue.ts +15 -0
  43. package/dist/components/forms/CustomCheckboxes.d.vue.ts +39 -0
  44. package/dist/components/forms/CustomCheckboxesWithIcon.d.vue.ts +39 -0
  45. package/dist/components/forms/CustomCheckboxesWithImage.d.vue.ts +15 -0
  46. package/dist/components/forms/CustomRadios.d.vue.ts +40 -0
  47. package/dist/components/forms/CustomRadiosWithIcon.d.vue.ts +45 -0
  48. package/dist/components/forms/CustomRadiosWithImage.d.vue.ts +53 -0
  49. package/dist/components/forms/DatePicker.d.vue.ts +34 -0
  50. package/dist/components/forms/DatePickerRange.d.vue.ts +23 -0
  51. package/dist/components/forms/DraggedUploadFile.d.vue.ts +10 -0
  52. package/dist/components/forms/ImageCardInput.d.vue.ts +0 -0
  53. package/dist/components/forms/InputValidationWrapper.d.vue.ts +33 -0
  54. package/dist/components/forms/LicensePlateInput.d.vue.ts +21 -0
  55. package/dist/components/forms/ManualDate.d.vue.ts +22 -0
  56. package/dist/components/forms/MobileInput.d.vue.ts +49 -0
  57. package/dist/components/forms/PasswordInput.d.vue.ts +13 -0
  58. package/dist/components/forms/RangeInput.d.vue.ts +5 -0
  59. package/dist/components/forms/Tabs.d.vue.ts +42 -0
  60. package/dist/components/forms/TimePicker.d.vue.ts +23 -0
  61. package/dist/components/table/DataTable.d.vue.ts +0 -0
  62. package/dist/components/table/EditableDataTable.d.vue.ts +76 -0
  63. package/dist/components/table/EditableDataTableRow.d.vue.ts +18 -0
  64. package/dist/components/table/FilterGenerator.d.vue.ts +14 -0
  65. package/dist/components/table/StaticTable.d.vue.ts +23 -0
  66. package/dist/components/table/TablePagination.d.vue.ts +13 -0
  67. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import type { Breadcrumb } from '../types';
2
+ type __VLS_Props = {
3
+ items: Breadcrumb[];
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -0,0 +1,25 @@
1
+ import { VDivider } from 'vuetify/components';
2
+ type __VLS_Props = {
3
+ title: string;
4
+ divider?: boolean;
5
+ };
6
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
7
+ declare var __VLS_5: {};
8
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
9
+ default?: (props: typeof __VLS_5) => any;
10
+ }>;
11
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
12
+ VDivider: typeof VDivider;
13
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ divider: boolean;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ divider: boolean;
18
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
+ export default _default;
21
+ type __VLS_WithSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -0,0 +1,9 @@
1
+ type __VLS_Props = {
2
+ icon?: string;
3
+ iconSize?: string;
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
6
+ icon: string;
7
+ iconSize: string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,44 @@
1
+ import { VCardTitle, VDialog, VCardActions, VCardText } from 'vuetify/components';
2
+ import AppCard from './cards/AppCard.vue';
3
+ import IconBtn from './IconBtn.vue';
4
+ type __VLS_Props = {
5
+ isAppRtl: boolean;
6
+ };
7
+ declare const editModal: import("vue").ModelRef<boolean | undefined, string, boolean | undefined, boolean | undefined>;
8
+ type __VLS_PublicProps = {
9
+ 'editModal'?: boolean;
10
+ } & __VLS_Props;
11
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
12
+ declare var __VLS_13: {}, __VLS_26: {}, __VLS_32: {};
13
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
14
+ title?: (props: typeof __VLS_13) => any;
15
+ } & {
16
+ default?: (props: typeof __VLS_26) => any;
17
+ } & {
18
+ actions?: (props: typeof __VLS_32) => any;
19
+ }>;
20
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
21
+ VCardTitle: typeof VCardTitle;
22
+ VDialog: typeof VDialog;
23
+ VCardActions: typeof VCardActions;
24
+ VCardText: typeof VCardText;
25
+ AppCard: typeof AppCard;
26
+ IconBtn: typeof IconBtn;
27
+ editModal: typeof editModal;
28
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
+ "update:editModal": (value: boolean | undefined) => any;
30
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
31
+ "onUpdate:editModal"?: ((value: boolean | undefined) => any) | undefined;
32
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
33
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
+ "update:editModal": (value: boolean | undefined) => any;
35
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
36
+ "onUpdate:editModal"?: ((value: boolean | undefined) => any) | undefined;
37
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
39
+ export default _default;
40
+ type __VLS_WithSlots<T, S> = T & {
41
+ new (): {
42
+ $slots: S;
43
+ };
44
+ };
@@ -0,0 +1,30 @@
1
+ import { VBtn } from 'vuetify/components';
2
+ type __VLS_Props = {
3
+ color?: string;
4
+ variant?: 'text' | 'flat' | 'outlined' | 'elevated' | 'tonal' | 'plain';
5
+ density?: 'default' | 'comfortable' | 'compact';
6
+ };
7
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
8
+ declare var __VLS_6: {};
9
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
10
+ default?: (props: typeof __VLS_6) => any;
11
+ }>;
12
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
13
+ VBtn: typeof VBtn;
14
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
15
+ color: string;
16
+ density: "default" | "comfortable" | "compact";
17
+ variant: "text" | "flat" | "outlined" | "elevated" | "tonal" | "plain";
18
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
20
+ color: string;
21
+ density: "default" | "comfortable" | "compact";
22
+ variant: "text" | "flat" | "outlined" | "elevated" | "tonal" | "plain";
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,5 @@
1
+ type __VLS_Props = {
2
+ isLoading: boolean;
3
+ };
4
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ export default _default;
@@ -0,0 +1,11 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ title: string;
4
+ logoSrc: string;
5
+ };
6
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
7
+ "update:modelValue": (value: boolean) => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ export default _default;
@@ -0,0 +1,47 @@
1
+ import { VProgressCircular } from 'vuetify/components';
2
+ type __VLS_Props = {
3
+ size?: number;
4
+ direction?: 'center' | 'start' | 'end';
5
+ };
6
+ declare const isLoading: import("vue").ModelRef<boolean, string, boolean, boolean>;
7
+ declare const overlayClass: import("vue").ComputedRef<{
8
+ 'loading-overlay': boolean;
9
+ 'loading-center': boolean;
10
+ 'loading-start': boolean;
11
+ 'loading-end': boolean;
12
+ }>;
13
+ type __VLS_PublicProps = {
14
+ modelValue?: boolean;
15
+ } & __VLS_Props;
16
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
17
+ declare var __VLS_1: {};
18
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
19
+ default?: (props: typeof __VLS_1) => any;
20
+ }>;
21
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
22
+ VProgressCircular: typeof VProgressCircular;
23
+ isLoading: typeof isLoading;
24
+ overlayClass: typeof overlayClass;
25
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
+ "update:modelValue": (value: boolean) => any;
27
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
29
+ }>, {
30
+ size: number;
31
+ direction: "center" | "start" | "end";
32
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
33
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
+ "update:modelValue": (value: boolean) => any;
35
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
36
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
37
+ }>, {
38
+ size: number;
39
+ direction: "center" | "start" | "end";
40
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
41
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
42
+ export default _default;
43
+ type __VLS_WithSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
File without changes
@@ -0,0 +1,25 @@
1
+ import { VIcon, VList, VMenu } from 'vuetify/components';
2
+ import IconBtn from './IconBtn.vue';
3
+ type __VLS_Props = {
4
+ menuList?: unknown[];
5
+ itemProps?: boolean;
6
+ };
7
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
8
+ declare var __VLS_13: {};
9
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
10
+ default?: (props: typeof __VLS_13) => any;
11
+ }>;
12
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
13
+ VIcon: typeof VIcon;
14
+ VList: typeof VList;
15
+ VMenu: typeof VMenu;
16
+ IconBtn: typeof IconBtn;
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
+ export default _default;
21
+ type __VLS_WithSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,5 @@
1
+ type __VLS_Props = {
2
+ theme: 'light' | 'dark';
3
+ };
4
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ export default _default;
@@ -0,0 +1,26 @@
1
+ import { VCard } from 'vuetify/components';
2
+ import LoadingBar from '../LoadingBar.vue';
3
+ type __VLS_Props = {
4
+ isLoading?: boolean;
5
+ };
6
+ declare const slots: import("vue").ComputedRef<Record<string, any>>;
7
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
8
+ declare var __VLS_6: {}, __VLS_12: any, __VLS_13: any;
9
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
10
+ [K in NonNullable<typeof __VLS_12>]?: (props: typeof __VLS_13) => any;
11
+ } & {
12
+ default?: (props: typeof __VLS_6) => any;
13
+ }>;
14
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
15
+ VCard: typeof VCard;
16
+ LoadingBar: typeof LoadingBar;
17
+ slots: typeof slots;
18
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
21
+ export default _default;
22
+ type __VLS_WithSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,79 @@
1
+ import { VCard, VCardItem, VIcon, VOverlay, VExpandTransition, VProgressCircular, VCardTitle } from 'vuetify/components';
2
+ import IconBtn from '../IconBtn.vue';
3
+ type __VLS_Props = {
4
+ collapsed?: boolean;
5
+ noActions?: boolean;
6
+ actionCollapsed?: boolean;
7
+ actionRefresh?: boolean;
8
+ actionRemove?: boolean;
9
+ title?: string;
10
+ };
11
+ declare const isContentCollapsed: import("vue").Ref<boolean, boolean>;
12
+ declare const isCardRemoved: import("vue").Ref<boolean, boolean>;
13
+ declare const isOverlayVisible: import("vue").Ref<boolean, boolean>;
14
+ declare const triggerCollapse: () => void;
15
+ declare const triggerRefresh: () => void;
16
+ declare const triggeredRemove: () => void;
17
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
18
+ declare var __VLS_18: {}, __VLS_20: {}, __VLS_59: {};
19
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
20
+ title?: (props: typeof __VLS_18) => any;
21
+ } & {
22
+ 'before-actions'?: (props: typeof __VLS_20) => any;
23
+ } & {
24
+ default?: (props: typeof __VLS_59) => any;
25
+ }>;
26
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
27
+ VCard: typeof VCard;
28
+ VCardItem: typeof VCardItem;
29
+ VIcon: typeof VIcon;
30
+ VOverlay: typeof VOverlay;
31
+ VExpandTransition: typeof VExpandTransition;
32
+ VProgressCircular: typeof VProgressCircular;
33
+ VCardTitle: typeof VCardTitle;
34
+ IconBtn: typeof IconBtn;
35
+ isContentCollapsed: typeof isContentCollapsed;
36
+ isCardRemoved: typeof isCardRemoved;
37
+ isOverlayVisible: typeof isOverlayVisible;
38
+ triggerCollapse: typeof triggerCollapse;
39
+ triggerRefresh: typeof triggerRefresh;
40
+ triggeredRemove: typeof triggeredRemove;
41
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
42
+ collapsed: (isContentCollapsed: boolean) => any;
43
+ refresh: (hideOverlay: () => void) => any;
44
+ trash: () => any;
45
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
46
+ onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
47
+ onRefresh?: ((hideOverlay: () => void) => any) | undefined;
48
+ onTrash?: (() => any) | undefined;
49
+ }>, {
50
+ title: string;
51
+ collapsed: boolean;
52
+ noActions: boolean;
53
+ actionCollapsed: boolean;
54
+ actionRefresh: boolean;
55
+ actionRemove: boolean;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
58
+ collapsed: (isContentCollapsed: boolean) => any;
59
+ refresh: (hideOverlay: () => void) => any;
60
+ trash: () => any;
61
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
62
+ onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
63
+ onRefresh?: ((hideOverlay: () => void) => any) | undefined;
64
+ onTrash?: (() => any) | undefined;
65
+ }>, {
66
+ title: string;
67
+ collapsed: boolean;
68
+ noActions: boolean;
69
+ actionCollapsed: boolean;
70
+ actionRefresh: boolean;
71
+ actionRemove: boolean;
72
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
73
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
74
+ export default _default;
75
+ type __VLS_WithSlots<T, S> = T & {
76
+ new (): {
77
+ $slots: S;
78
+ };
79
+ };
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ title: string;
3
+ color?: string;
4
+ icon: string;
5
+ stats: string;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ color: string;
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,20 @@
1
+ type ChechboxModel = {
2
+ key: string | number;
3
+ label: string;
4
+ selected?: boolean;
5
+ };
6
+ type __VLS_Props = {
7
+ id?: string | number;
8
+ title?: string;
9
+ modelValue: ChechboxModel[];
10
+ };
11
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
12
+ "update:modelValue": (value: ChechboxModel[]) => any;
13
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: ChechboxModel[]) => any) | undefined;
15
+ }>, {
16
+ title: string;
17
+ modelValue: ChechboxModel[];
18
+ id: string | number;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ export default _default;
@@ -0,0 +1,8 @@
1
+ type __VLS_Props = {
2
+ title: string;
3
+ backPage?: string;
4
+ isAppRtl: boolean;
5
+ logoSrc?: string;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ export default _default;
@@ -0,0 +1,63 @@
1
+ import { VCardItem, VAvatar, VImg } from 'vuetify/components';
2
+ import AppLink from '../forms/AppLink.vue';
3
+ import AppCard from './AppCard.vue';
4
+ type __VLS_Props = {
5
+ title?: {
6
+ text: string;
7
+ to?: string;
8
+ };
9
+ subTitle?: {
10
+ text: string;
11
+ to?: string;
12
+ };
13
+ image?: string;
14
+ avatar?: string;
15
+ isLoading?: boolean;
16
+ imageClass?: string[];
17
+ };
18
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
19
+ declare var __VLS_17: {}, __VLS_19: {}, __VLS_24: {}, __VLS_29: {};
20
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
21
+ 'image-subtitle'?: (props: typeof __VLS_17) => any;
22
+ } & {
23
+ title?: (props: typeof __VLS_19) => any;
24
+ } & {
25
+ 'sub-title'?: (props: typeof __VLS_24) => any;
26
+ } & {
27
+ default?: (props: typeof __VLS_29) => any;
28
+ }>;
29
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
30
+ VCardItem: typeof VCardItem;
31
+ VAvatar: typeof VAvatar;
32
+ VImg: typeof VImg;
33
+ AppLink: typeof AppLink;
34
+ AppCard: typeof AppCard;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
36
+ title: {
37
+ text: string;
38
+ to?: string;
39
+ };
40
+ image: string;
41
+ subTitle: {
42
+ text: string;
43
+ to?: string;
44
+ };
45
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
46
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
47
+ title: {
48
+ text: string;
49
+ to?: string;
50
+ };
51
+ image: string;
52
+ subTitle: {
53
+ text: string;
54
+ to?: string;
55
+ };
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
58
+ export default _default;
59
+ type __VLS_WithSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
@@ -0,0 +1,41 @@
1
+ import { VLabel } from 'vuetify/components';
2
+ import AppLink from '../forms/AppLink.vue';
3
+ import AppCard from './AppCard.vue';
4
+ type __VLS_Props = {
5
+ title?: string;
6
+ text?: string | number;
7
+ color?: string;
8
+ to?: string;
9
+ disabled?: boolean;
10
+ info?: string;
11
+ };
12
+ declare const colorStyle: import("vue").ComputedRef<string>;
13
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
14
+ declare var __VLS_8: {};
15
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
16
+ default?: (props: typeof __VLS_8) => any;
17
+ }>;
18
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
19
+ VLabel: typeof VLabel;
20
+ AppLink: typeof AppLink;
21
+ AppCard: typeof AppCard;
22
+ colorStyle: typeof colorStyle;
23
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
+ color: string;
25
+ disabled: boolean;
26
+ title: string;
27
+ text: string | number;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
30
+ color: string;
31
+ disabled: boolean;
32
+ title: string;
33
+ text: string | number;
34
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
35
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
36
+ export default _default;
37
+ type __VLS_WithSlots<T, S> = T & {
38
+ new (): {
39
+ $slots: S;
40
+ };
41
+ };
@@ -0,0 +1,33 @@
1
+ import { VCardItem } from 'vuetify/components';
2
+ import AppCard from './AppCard.vue';
3
+ type __VLS_Props = {
4
+ title: string;
5
+ subTitle?: string;
6
+ color?: string;
7
+ titleClass?: string;
8
+ subTitleClass?: string;
9
+ isLoading: boolean;
10
+ };
11
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
12
+ declare var __VLS_9: {};
13
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
14
+ default?: (props: typeof __VLS_9) => any;
15
+ }>;
16
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
17
+ VCardItem: typeof VCardItem;
18
+ AppCard: typeof AppCard;
19
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
20
+ color: string;
21
+ title: string;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
+ color: string;
25
+ title: string;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ export default _default;
29
+ type __VLS_WithSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,35 @@
1
+ import { VExpansionPanels, VExpansionPanel, VExpansionPanelTitle, VExpansionPanelText, VIcon } from 'vuetify/components';
2
+ import BaseButton from './BaseButton.vue';
3
+ type __VLS_Props = {
4
+ title?: string;
5
+ isOpen?: boolean;
6
+ };
7
+ declare const panel: import("vue").Ref<number | null, number | null>;
8
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
9
+ declare var __VLS_21: {}, __VLS_27: {};
10
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
11
+ title?: (props: typeof __VLS_21) => any;
12
+ } & {
13
+ default?: (props: typeof __VLS_27) => any;
14
+ }>;
15
+ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
16
+ VExpansionPanels: typeof VExpansionPanels;
17
+ VExpansionPanel: typeof VExpansionPanel;
18
+ VExpansionPanelTitle: typeof VExpansionPanelTitle;
19
+ VExpansionPanelText: typeof VExpansionPanelText;
20
+ VIcon: typeof VIcon;
21
+ BaseButton: typeof BaseButton;
22
+ panel: typeof panel;
23
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
+ isOpen: boolean;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
27
+ isOpen: boolean;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ export default _default;
31
+ type __VLS_WithSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };