@mythpe/quasar-ui-qui 0.2.43 → 0.2.45
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/package.json +3 -1
- package/src/boot/register.ts +1 -2
- package/src/components/index.ts +2 -1
- package/src/components/map/MMap.vue +69 -0
- package/src/components/map/index.ts +12 -0
- package/src/global.d.ts +16 -0
- package/src/plugin/defineAsyncComponents.ts +2 -0
- package/src/types/api/MAvatarViewer.d.ts +2 -1
- package/src/types/api/MBlock.d.ts +29 -0
- package/src/types/api/MBtn.d.ts +25 -0
- package/src/types/api/MCheckbox.d.ts +33 -0
- package/src/types/api/MCkeditor.d.ts +40 -0
- package/src/types/api/MCol.d.ts +55 -0
- package/src/types/api/MColumn.d.ts +16 -0
- package/src/types/api/MContainer.d.ts +19 -0
- package/src/types/api/MDate.d.ts +15 -0
- package/src/types/api/MDialog.d.ts +18 -0
- package/src/types/api/MEditor.d.ts +13 -0
- package/src/types/api/MField.d.ts +12 -0
- package/src/types/api/MFile.d.ts +21 -0
- package/src/types/api/MForm.d.ts +55 -0
- package/src/types/api/MHelpRow.d.ts +19 -0
- package/src/types/api/MHidden.d.ts +20 -0
- package/src/types/api/MHiddenInput.d.ts +26 -0
- package/src/types/api/MInput.d.ts +159 -0
- package/src/types/api/MInputFieldControl.d.ts +16 -0
- package/src/types/api/MInputLabel.d.ts +17 -0
- package/src/types/api/MMap.d.ts +24 -0
- package/src/types/api/MModalMenu.d.ts +17 -0
- package/src/types/api/MOptions.d.ts +62 -0
- package/src/types/api/MOtp.d.ts +52 -0
- package/src/types/api/MPassword.d.ts +20 -0
- package/src/types/api/MPicker.d.ts +41 -0
- package/src/types/api/MRadio.d.ts +13 -0
- package/src/types/api/MRow.d.ts +24 -0
- package/src/types/api/MSar.d.ts +25 -0
- package/src/types/api/MSelect.d.ts +1 -1
- package/src/types/api/MSignaturePad.d.ts +2 -1
- package/src/types/api/MTime.d.ts +12 -0
- package/src/types/api/MToggle.d.ts +39 -0
- package/src/types/api/MTooltip.d.ts +136 -0
- package/src/types/api/MTypingString.d.ts +24 -0
- package/src/types/api/MUploader.d.ts +163 -0
- package/src/types/components.d.ts +38 -984
- package/src/types/google.d.ts +19 -0
- package/src/types/index.d.ts +86 -2
- package/src/types/m-datatable.d.ts +3 -1
- package/src/types/{myth-api.ts → myth-api.d.ts} +9 -2
- package/src/types/plugin-props-option.d.ts +24 -26
- package/src/types/theme.d.ts +3 -1
- package/src/utils/createMyth.ts +13 -15
- package/src/utils/vue-plugin.ts +4 -3
- package/tsconfig.json +5 -1
- package/src/types/install-options.d.ts +0 -14
- package/src/types/m-geolocation.d.ts +0 -16
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* MyTh Ahmed Faiz Copyright © 2016-2025 All rights reserved.
|
|
3
|
+
* Email: mythpe@gmail.com
|
|
4
|
+
* Mobile: +966590470092
|
|
5
|
+
* Website: https://www.4myth.com
|
|
6
|
+
* Github: https://github.com/mythpe
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type { TypedOptions } from 'typed.js'
|
|
10
|
+
import type { VNode } from 'vue'
|
|
11
|
+
|
|
12
|
+
export type MTypingStringProps = {
|
|
13
|
+
name: number | string;
|
|
14
|
+
tag?: string;
|
|
15
|
+
string: string | string[];
|
|
16
|
+
loop?: TypedOptions['loop'];
|
|
17
|
+
typeSpeed?: TypedOptions['typeSpeed'];
|
|
18
|
+
backDelay?: TypedOptions['backDelay'];
|
|
19
|
+
fadeOut?: TypedOptions['fadeOut'];
|
|
20
|
+
options?: Omit<TypedOptions, 'loop' | 'typeSpeed' | 'backDelay' | 'fadeOut'>;
|
|
21
|
+
}
|
|
22
|
+
export type MTypingStringSlots = {
|
|
23
|
+
default?: () => VNode[];
|
|
24
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* MyTh Ahmed Faiz Copyright © 2016-2025 All rights reserved.
|
|
3
|
+
* Email: mythpe@gmail.com
|
|
4
|
+
* Mobile: +966590470092
|
|
5
|
+
* Website: https://www.4myth.com
|
|
6
|
+
* Github: https://github.com/mythpe
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type { HelpersStubSchema } from '../api-helpers'
|
|
10
|
+
import type { QUploaderProps, QUploaderSlots } from 'quasar'
|
|
11
|
+
import type { VNode } from 'vue'
|
|
12
|
+
import type { MColProps } from './MCol'
|
|
13
|
+
import type { BaseInputsProps } from './MInput'
|
|
14
|
+
|
|
15
|
+
export type MUploaderMediaItem = {
|
|
16
|
+
id: number;
|
|
17
|
+
value: number;
|
|
18
|
+
name: string;
|
|
19
|
+
file_name: string;
|
|
20
|
+
type: string;
|
|
21
|
+
size: number;
|
|
22
|
+
size_to_string: string;
|
|
23
|
+
url: string;
|
|
24
|
+
download_url: string;
|
|
25
|
+
icon: string;
|
|
26
|
+
description: string;
|
|
27
|
+
attachment_type: string;
|
|
28
|
+
attachment_type_id: number;
|
|
29
|
+
attachment_type_id_to_string: string;
|
|
30
|
+
user_id: number | null;
|
|
31
|
+
user_id_to_string: string;
|
|
32
|
+
order_column: number;
|
|
33
|
+
[k: string]: any;
|
|
34
|
+
};
|
|
35
|
+
export type MUploaderServiceType = Pick<HelpersStubSchema, 'getUploadAttachmentsUrl' | 'updateAttachment' | 'uploadAttachments' | 'deleteAttachment'>
|
|
36
|
+
export type MUploaderProps = Omit<QUploaderProps, 'formFields' | 'headers' | 'url'> & MColProps & Pick<BaseInputsProps, 'fieldOptions'> & {
|
|
37
|
+
/**
|
|
38
|
+
* Name fo field input, Attachments key name.
|
|
39
|
+
* Default is: 'attachments'
|
|
40
|
+
*/
|
|
41
|
+
name?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Put component in disabled mode
|
|
44
|
+
*/
|
|
45
|
+
disable?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Put component in readonly mode
|
|
48
|
+
*/
|
|
49
|
+
readonly?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Comma separated list of unique file type specifiers. Maps to 'accept' attribute of native input type=file element
|
|
52
|
+
*/
|
|
53
|
+
accept?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Support for uploading images
|
|
56
|
+
*/
|
|
57
|
+
images?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Support for uploading svg
|
|
60
|
+
*/
|
|
61
|
+
svg?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Support for uploading videos
|
|
64
|
+
*/
|
|
65
|
+
video?: boolean;
|
|
66
|
+
/**
|
|
67
|
+
* Support for uploading pdf
|
|
68
|
+
*/
|
|
69
|
+
pdf?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Support for uploading excel
|
|
72
|
+
*/
|
|
73
|
+
excel?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* Upload files immediately when added
|
|
76
|
+
*/
|
|
77
|
+
autoUpload?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Field name for each file upload; This goes into the following header: 'Content-Disposition: form-data; name="__HERE__"; filename="somefile.png"; If using a function then for best performance, reference it from your scope and do not define it inline
|
|
80
|
+
* Default value: (file) => file.name
|
|
81
|
+
* @param files The current file being processed
|
|
82
|
+
* @returns Field name for the current file upload
|
|
83
|
+
*/
|
|
84
|
+
fieldName?: string | ((files: File) => string);
|
|
85
|
+
/**
|
|
86
|
+
* Collection send to API
|
|
87
|
+
*/
|
|
88
|
+
collection?: string | number | symbol;
|
|
89
|
+
/**
|
|
90
|
+
* Field Attachment Type
|
|
91
|
+
*/
|
|
92
|
+
attachmentType?: any;
|
|
93
|
+
/**
|
|
94
|
+
* return attachments after upload;
|
|
95
|
+
* Default current collection name;
|
|
96
|
+
*/
|
|
97
|
+
returnType?: 'all' | 'current' | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* Object with additional fields definitions (used by Form to be uploaded);
|
|
100
|
+
*/
|
|
101
|
+
formFields?: Record<string, any>;
|
|
102
|
+
/**
|
|
103
|
+
* Extra headers
|
|
104
|
+
*/
|
|
105
|
+
headers?: Record<string, any>;
|
|
106
|
+
/**
|
|
107
|
+
* Label for the uploader
|
|
108
|
+
*/
|
|
109
|
+
label?: string | null | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* The Attachments list.
|
|
112
|
+
*/
|
|
113
|
+
modelValue?: MUploaderMediaItem[];
|
|
114
|
+
/**
|
|
115
|
+
* Hide delete media items from uploader, no delete media For API
|
|
116
|
+
*/
|
|
117
|
+
hideDeleteMedia?: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Show update button of media.
|
|
120
|
+
*/
|
|
121
|
+
updateBtn?: boolean;
|
|
122
|
+
/**
|
|
123
|
+
* User APi service for upload & delete
|
|
124
|
+
*/
|
|
125
|
+
service: string | MUploaderServiceType;
|
|
126
|
+
/**
|
|
127
|
+
* The ID of model will use in attachments
|
|
128
|
+
*/
|
|
129
|
+
modelId?: string | number | undefined;
|
|
130
|
+
uploading?: boolean | undefined;
|
|
131
|
+
defaultFileIcon?: string | undefined;
|
|
132
|
+
deleteMediaIcon?: string | undefined;
|
|
133
|
+
uploadFilesIcon?: string | undefined;
|
|
134
|
+
pickFilesIcon?: string | undefined;
|
|
135
|
+
removeUploadedIcon?: string | undefined;
|
|
136
|
+
removeQueuedIcon?: string | undefined;
|
|
137
|
+
abortUploadIcon?: string | undefined;
|
|
138
|
+
downloadFileIcon?: string | undefined;
|
|
139
|
+
errorsIcon?: string | undefined;
|
|
140
|
+
iconsSize?: string | undefined;
|
|
141
|
+
displayMode?: 'list' | 'card' | undefined;
|
|
142
|
+
shadow?: string | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* Media Item Label Field.
|
|
145
|
+
* Default is: name.
|
|
146
|
+
*/
|
|
147
|
+
mediaLabel?: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export type MUploaderSlots = QUploaderSlots & {
|
|
150
|
+
/**
|
|
151
|
+
* Field main content
|
|
152
|
+
*/
|
|
153
|
+
default: () => VNode[];
|
|
154
|
+
/**
|
|
155
|
+
* list of item will be display
|
|
156
|
+
*/
|
|
157
|
+
// list: (scope: { item: MUploaderMediaItem, index: number }) => VNode[];
|
|
158
|
+
/**
|
|
159
|
+
* list of item will be display
|
|
160
|
+
*/
|
|
161
|
+
'item-list': (scope: { item: MUploaderMediaItem, index: number }) => VNode[];
|
|
162
|
+
}
|
|
163
|
+
export type MUploaderXhrInfo = { files: readonly any[]; xhr: any; }
|