easycomponentstools 1.0.0-dev.8 → 1.0.1
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/.idea/vcs.xml +6 -0
- package/index.html +13 -0
- package/package.json +11 -6
- package/src/components/Form/types/map/CustomMapAutoComplete.vue +1 -1
- package/src/components/Modal/EasyConfirmationModal.vue +68 -0
- package/src/components/Table/Actions/ActionBtn.vue +30 -0
- package/src/components/Table/Actions/Menu.vue +43 -0
- package/src/components/Table/ColumnValue.vue +38 -0
- package/src/components/Table/EasyTable.vue +276 -0
- package/src/components/Table/Headers/DialogColumns.vue +147 -0
- package/src/components/Table/Headers/ExportData.vue +70 -0
- package/src/components/Table/Headers/Filters.vue +219 -0
- package/src/components/Table/Headers/Headers.vue +157 -0
- package/src/composables/removeMdiSet.ts +19 -0
- package/src/composables/useDataTableExport.ts +259 -0
- package/src/composables/useHeadersStorage.ts +49 -0
- package/src/dev.ts +114 -0
- package/src/lang/el/index.ts +2 -0
- package/src/lang/el/table.ts +14 -0
- package/src/lang/en/index.ts +2 -0
- package/src/lang/en/table.ts +14 -0
- package/src/main.ts +16 -1
- package/src/scss/app.scss +13 -0
- package/vite.config.ts +5 -0
- package/dist/easyComponents.es.js +0 -35624
- package/dist/easyComponents.umd.js +0 -27
- package/dist/easycomponents.css +0 -2
- package/dist/src/components/Form/EasyForm.vue.d.ts +0 -24
- package/dist/src/components/Form/MenuActions.vue.d.ts +0 -7
- package/dist/src/components/Form/types/DatePicker.vue.d.ts +0 -16
- package/dist/src/components/Form/types/FileInput.vue.d.ts +0 -16
- package/dist/src/components/Form/types/Gallery.vue.d.ts +0 -7
- package/dist/src/components/Form/types/Input.vue.d.ts +0 -12
- package/dist/src/components/Form/types/MapAutoComplete.vue.d.ts +0 -20
- package/dist/src/components/Form/types/Number.vue.d.ts +0 -12
- package/dist/src/components/Form/types/Password.vue.d.ts +0 -12
- package/dist/src/components/Form/types/RangeDatePicker.vue.d.ts +0 -16
- package/dist/src/components/Form/types/Selects.vue.d.ts +0 -16
- package/dist/src/components/Form/types/SelectsAutoComplete.vue.d.ts +0 -16
- package/dist/src/components/Form/types/Switch.vue.d.ts +0 -16
- package/dist/src/components/Form/types/Tags.vue.d.ts +0 -16
- package/dist/src/components/Form/types/TextArea.vue.d.ts +0 -12
- package/dist/src/components/Form/types/map/CustomMapAutoComplete.vue.d.ts +0 -7
- package/dist/src/composables/useHelpers.d.ts +0 -9
- package/dist/src/composables/useMap.d.ts +0 -41
- package/dist/src/lang/el/form.d.ts +0 -5
- package/dist/src/lang/el/index.d.ts +0 -7
- package/dist/src/lang/en/form.d.ts +0 -5
- package/dist/src/lang/en/index.d.ts +0 -7
- package/dist/src/main.d.ts +0 -6
- package/dist/src/stores/useInfo.d.ts +0 -7
- package/dist/src/types/form.d.ts +0 -48
- package/dist/src/types/gallery.d.ts +0 -4
- package/dist/src/types/map.d.ts +0 -32
- package/dist/src/types/plugins.d.ts +0 -14
- package/dist/src/types/table.d.ts +0 -79
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { ComponentPublicInstance, Ref } from 'vue';
|
|
2
|
-
import { FormDTO } from '../../types/form';
|
|
3
|
-
type propsTypes = {
|
|
4
|
-
form: FormDTO;
|
|
5
|
-
};
|
|
6
|
-
declare var __VLS_194: any, __VLS_195: {
|
|
7
|
-
items: any;
|
|
8
|
-
options: any;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_Slots = {} & {
|
|
11
|
-
[K in NonNullable<typeof __VLS_194>]?: (props: typeof __VLS_195) => any;
|
|
12
|
-
};
|
|
13
|
-
declare const __VLS_base: import('vue').DefineComponent<propsTypes, {
|
|
14
|
-
formref: Ref<ComponentPublicInstance | null, ComponentPublicInstance | null>;
|
|
15
|
-
loading: Ref<boolean, boolean>;
|
|
16
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<propsTypes> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
-
declare const _default: typeof __VLS_export;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
-
new (): {
|
|
22
|
-
$slots: S;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { MenuButtonsDTO } from '../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
menuButtons: MenuButtonsDTO;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_export: import('vue').DefineComponent<propsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<propsType> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: typeof __VLS_export;
|
|
7
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string | null;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string | null | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: any[];
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: any[] | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: any[] | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Media } from '../../../types/gallery';
|
|
2
|
-
type propsType = {
|
|
3
|
-
media: Media[];
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_export: import('vue').DefineComponent<propsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: typeof __VLS_export;
|
|
7
|
-
export default _default;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const _default: typeof __VLS_export;
|
|
12
|
-
export default _default;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type Location = {
|
|
6
|
-
lat: number;
|
|
7
|
-
lng: number;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_Props = propsType;
|
|
10
|
-
type __VLS_ModelProps = {
|
|
11
|
-
modelValue?: Location;
|
|
12
|
-
};
|
|
13
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
14
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
-
"update:modelValue": (value: Location | undefined) => any;
|
|
16
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
-
"onUpdate:modelValue"?: ((value: Location | undefined) => any) | undefined;
|
|
18
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
-
declare const _default: typeof __VLS_export;
|
|
20
|
-
export default _default;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: number;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const _default: typeof __VLS_export;
|
|
12
|
-
export default _default;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const _default: typeof __VLS_export;
|
|
12
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string[];
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string[] | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: number;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: number | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string[];
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string[] | undefined) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { InputDTO } from '../../../types/form';
|
|
2
|
-
type propsType = {
|
|
3
|
-
input: InputDTO;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Props = propsType;
|
|
6
|
-
type __VLS_ModelProps = {
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
-
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const _default: typeof __VLS_export;
|
|
12
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
type propsType = {
|
|
2
|
-
label: string;
|
|
3
|
-
getPlaces?: any;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_export: import('vue').DefineComponent<propsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: typeof __VLS_export;
|
|
7
|
-
export default _default;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export default function useHelpers(): {
|
|
2
|
-
nowFormatter: () => string;
|
|
3
|
-
nowValue: () => string;
|
|
4
|
-
dateFormatter: (date: string | Date) => string;
|
|
5
|
-
dateTimeFormatter: (dateTime: string | Date) => string;
|
|
6
|
-
dateValue: (date: string | Date) => string;
|
|
7
|
-
dateTimeValue: (date: string | Date) => string;
|
|
8
|
-
timeFormatter: (value: string | Date) => string;
|
|
9
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { ComponentPublicInstance } from 'vue';
|
|
2
|
-
import { MapOptions } from '../types/map';
|
|
3
|
-
export default function useMap(): {
|
|
4
|
-
mapOptions: import('vue').Ref<{
|
|
5
|
-
zoomControl: boolean;
|
|
6
|
-
mapTypeControl: boolean;
|
|
7
|
-
scaleControl: boolean;
|
|
8
|
-
streetViewControl: boolean;
|
|
9
|
-
rotateControl: boolean;
|
|
10
|
-
fullscreenControl: boolean;
|
|
11
|
-
disableDefaultUi: boolean;
|
|
12
|
-
styles: {
|
|
13
|
-
featureType: string;
|
|
14
|
-
stylers: {
|
|
15
|
-
visibility: string;
|
|
16
|
-
}[];
|
|
17
|
-
}[];
|
|
18
|
-
zoom: number;
|
|
19
|
-
key: number;
|
|
20
|
-
}, MapOptions | {
|
|
21
|
-
zoomControl: boolean;
|
|
22
|
-
mapTypeControl: boolean;
|
|
23
|
-
scaleControl: boolean;
|
|
24
|
-
streetViewControl: boolean;
|
|
25
|
-
rotateControl: boolean;
|
|
26
|
-
fullscreenControl: boolean;
|
|
27
|
-
disableDefaultUi: boolean;
|
|
28
|
-
styles: {
|
|
29
|
-
featureType: string;
|
|
30
|
-
stylers: {
|
|
31
|
-
visibility: string;
|
|
32
|
-
}[];
|
|
33
|
-
}[];
|
|
34
|
-
zoom: number;
|
|
35
|
-
key: number;
|
|
36
|
-
}>;
|
|
37
|
-
fullScreenButtonKey: import('vue').Ref<number, number>;
|
|
38
|
-
addMap: (mapRef: ComponentPublicInstance, cardMapRef: ComponentPublicInstance) => void;
|
|
39
|
-
toggleFullscreen: () => Promise<void>;
|
|
40
|
-
isFullScreen: () => boolean | undefined;
|
|
41
|
-
};
|
package/dist/src/main.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare const useInfo: import('pinia').StoreDefinition<"EasyComponentInfo", Pick<{
|
|
2
|
-
timeZone: import('vue').Ref<string, string>;
|
|
3
|
-
}, "timeZone">, Pick<{
|
|
4
|
-
timeZone: import('vue').Ref<string, string>;
|
|
5
|
-
}, never>, Pick<{
|
|
6
|
-
timeZone: import('vue').Ref<string, string>;
|
|
7
|
-
}, never>>;
|
package/dist/src/types/form.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
export type inputType = 'input' | 'textarea' | 'number' | 'password' | 'password-eye' | 'checkbox' | 'selects' | 'selectsAutoComplete' | 'selectsAutoCompleteChips' | 'date' | 'rangeDate' | 'file' | 'map' | 'slot';
|
|
2
|
-
export type InputDTO = {
|
|
3
|
-
type: inputType;
|
|
4
|
-
key: string;
|
|
5
|
-
label: string;
|
|
6
|
-
icon?: string;
|
|
7
|
-
required?: boolean;
|
|
8
|
-
options: any;
|
|
9
|
-
validation?: any[];
|
|
10
|
-
moreButton?: {
|
|
11
|
-
onClick: any;
|
|
12
|
-
icon: string;
|
|
13
|
-
label: string;
|
|
14
|
-
};
|
|
15
|
-
onChange?: any;
|
|
16
|
-
onDelete?: any;
|
|
17
|
-
};
|
|
18
|
-
export type buttonDTO = {
|
|
19
|
-
onClick: any;
|
|
20
|
-
label: string;
|
|
21
|
-
icon?: string;
|
|
22
|
-
color?: string;
|
|
23
|
-
loading?: boolean;
|
|
24
|
-
disabled?: boolean;
|
|
25
|
-
};
|
|
26
|
-
export type submitDTO = {
|
|
27
|
-
label: string;
|
|
28
|
-
icon?: string;
|
|
29
|
-
color?: string;
|
|
30
|
-
onSubmit: any;
|
|
31
|
-
};
|
|
32
|
-
export type MenuButtonsDTO = {
|
|
33
|
-
label: string;
|
|
34
|
-
icon?: string;
|
|
35
|
-
color?: string;
|
|
36
|
-
items: buttonDTO[];
|
|
37
|
-
};
|
|
38
|
-
export type FormDTO = {
|
|
39
|
-
elevation?: number;
|
|
40
|
-
title?: string;
|
|
41
|
-
icon?: string;
|
|
42
|
-
subtitle?: string;
|
|
43
|
-
inputs: InputDTO[];
|
|
44
|
-
binder: any;
|
|
45
|
-
button?: buttonDTO;
|
|
46
|
-
submit?: submitDTO;
|
|
47
|
-
menuButtons?: MenuButtonsDTO;
|
|
48
|
-
};
|
package/dist/src/types/map.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { ComponentPublicInstance } from 'vue';
|
|
2
|
-
interface MapRefWithMapObject extends ComponentPublicInstance {
|
|
3
|
-
$mapObject?: google.maps.Map | null;
|
|
4
|
-
}
|
|
5
|
-
export type MapDTO = {
|
|
6
|
-
cardMapRef: ComponentPublicInstance;
|
|
7
|
-
mapRef: MapRefWithMapObject;
|
|
8
|
-
isFullScreen: boolean;
|
|
9
|
-
};
|
|
10
|
-
export type MapOptions = {
|
|
11
|
-
zoomControl: boolean;
|
|
12
|
-
mapTypeControl: boolean;
|
|
13
|
-
scaleControl: boolean;
|
|
14
|
-
streetViewControl: boolean;
|
|
15
|
-
rotateControl: boolean;
|
|
16
|
-
fullscreenControl: boolean;
|
|
17
|
-
disableDefaultUi: boolean;
|
|
18
|
-
styles: Array<{
|
|
19
|
-
featureType: string;
|
|
20
|
-
stylers: Array<{
|
|
21
|
-
visibility: string;
|
|
22
|
-
}>;
|
|
23
|
-
}>;
|
|
24
|
-
zoom: number;
|
|
25
|
-
key: number;
|
|
26
|
-
};
|
|
27
|
-
export interface DocumentWithFullscreen extends Document {
|
|
28
|
-
webkitExitFullscreen?: any;
|
|
29
|
-
mozCancelFullScreen?: any;
|
|
30
|
-
msExitFullscreen?: any;
|
|
31
|
-
}
|
|
32
|
-
export {};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export type colorsDTO = {
|
|
2
|
-
background: string;
|
|
3
|
-
surface: '#f1f1f1';
|
|
4
|
-
primary: '#099a09';
|
|
5
|
-
secondary: '#242424';
|
|
6
|
-
error: '#b71c1c';
|
|
7
|
-
grey: '#ACAAAAFF';
|
|
8
|
-
};
|
|
9
|
-
export type pluginsPropertiesDTO = {
|
|
10
|
-
colors: colorsDTO;
|
|
11
|
-
fontFamily: string;
|
|
12
|
-
locale: 'el' | 'en,';
|
|
13
|
-
timeZone: string;
|
|
14
|
-
};
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { DataTableHeader } from 'vuetify/framework';
|
|
2
|
-
export type HeaderActionMenuItemsDTO = {
|
|
3
|
-
label: string;
|
|
4
|
-
icon?: string;
|
|
5
|
-
onClick: any | string;
|
|
6
|
-
show?: any;
|
|
7
|
-
};
|
|
8
|
-
export type HeaderActionDTO = {
|
|
9
|
-
type?: 'menu';
|
|
10
|
-
show?: any;
|
|
11
|
-
icon: string;
|
|
12
|
-
color?: string;
|
|
13
|
-
label?: string;
|
|
14
|
-
onClick: any | string;
|
|
15
|
-
items?: HeaderActionMenuItemsDTO[];
|
|
16
|
-
};
|
|
17
|
-
export type HeaderDTO = DataTableHeader & {
|
|
18
|
-
title: string;
|
|
19
|
-
value: string;
|
|
20
|
-
sortable?: boolean;
|
|
21
|
-
align?: string;
|
|
22
|
-
width?: string;
|
|
23
|
-
valueFormatter?: any;
|
|
24
|
-
cellRenderer?: any;
|
|
25
|
-
type?: string;
|
|
26
|
-
actions?: HeaderActionDTO[];
|
|
27
|
-
hidden?: boolean;
|
|
28
|
-
show?: boolean;
|
|
29
|
-
};
|
|
30
|
-
export type SavedHeaderDTO = {
|
|
31
|
-
value: string;
|
|
32
|
-
hidden: boolean;
|
|
33
|
-
order: number;
|
|
34
|
-
};
|
|
35
|
-
export type ApiTableDTO = {
|
|
36
|
-
create?: any;
|
|
37
|
-
get: string;
|
|
38
|
-
delete?: string;
|
|
39
|
-
multipleDelete?: string;
|
|
40
|
-
};
|
|
41
|
-
export type HardFiltersDTO = {
|
|
42
|
-
label?: string;
|
|
43
|
-
type: 'trash' | 'exist' | 'not_exist' | 'active' | 'not_active' | 'premium';
|
|
44
|
-
column: string;
|
|
45
|
-
key?: string;
|
|
46
|
-
active?: boolean;
|
|
47
|
-
};
|
|
48
|
-
export type AdvancedFiltersComparisonDTO = {
|
|
49
|
-
symbol: '<' | '<=' | '=' | '>' | '>=';
|
|
50
|
-
value: number;
|
|
51
|
-
};
|
|
52
|
-
export type SelectItem = {
|
|
53
|
-
title: string;
|
|
54
|
-
value: any;
|
|
55
|
-
};
|
|
56
|
-
export type AdvancedFiltersDTO = {
|
|
57
|
-
type: 'input' | 'inArray' | 'likeInArray' | 'selects' | 'date' | 'dateTime' | 'comparison';
|
|
58
|
-
column: string;
|
|
59
|
-
label?: string;
|
|
60
|
-
value: AdvancedFiltersComparisonDTO | string | string[];
|
|
61
|
-
items?: SelectItem[];
|
|
62
|
-
};
|
|
63
|
-
export type PropsDataTableDTO = {
|
|
64
|
-
id: string;
|
|
65
|
-
headers: HeaderDTO[];
|
|
66
|
-
showSelect?: boolean;
|
|
67
|
-
multipleHardFilters?: boolean;
|
|
68
|
-
multipleDeletion?: boolean;
|
|
69
|
-
api: ApiTableDTO;
|
|
70
|
-
title?: string;
|
|
71
|
-
hardFilters?: HardFiltersDTO[];
|
|
72
|
-
advancedFilters?: AdvancedFiltersDTO[];
|
|
73
|
-
calcHeight?: string;
|
|
74
|
-
showExportData?: boolean;
|
|
75
|
-
};
|
|
76
|
-
export type SortDTO = {
|
|
77
|
-
column: string;
|
|
78
|
-
sort: string;
|
|
79
|
-
};
|