@mythpe/quasar-ui-qui 0.0.29 → 0.0.31
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mythpe/quasar-ui-qui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"description": "MyTh Quasar UI Kit App Extension",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "MyTh Ahmed Faiz",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"type": "module",
|
|
13
13
|
"module": "src/index.esm.js",
|
|
14
14
|
"main": "src/index.common.js",
|
|
15
|
+
"types": "./types.d.ts",
|
|
15
16
|
"scripts": {
|
|
16
17
|
"lint": "eslint ./src --ext .js,.ts,.vue ./",
|
|
17
18
|
"lint:fix": "eslint --fix --ext .js,.ts,.vue ./src",
|
|
@@ -31,7 +32,6 @@
|
|
|
31
32
|
"@vee-validate/rules": "^4.14.0",
|
|
32
33
|
"axios": "^1.7.8",
|
|
33
34
|
"ckeditor5": "^43.3.1",
|
|
34
|
-
"color-name": "^2.0.0",
|
|
35
35
|
"lodash": "^4.17.0",
|
|
36
36
|
"lodash-inflection": "^1.5.0",
|
|
37
37
|
"typed.js": "^2.1.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"vue-i18n": "^10.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"
|
|
42
|
+
"color-name": "^2.0.0",
|
|
43
43
|
"@quasar/app-webpack": "^3.13.0",
|
|
44
44
|
"@quasar/extras": "^1.16.4",
|
|
45
45
|
"@rollup/plugin-buble": "^0.21.3",
|
|
@@ -10,7 +10,7 @@ import MAxios from './MAxios.vue'
|
|
|
10
10
|
import MAvatarViewer from './MAvatarViewer.vue'
|
|
11
11
|
import MBtn from './MBtn.vue'
|
|
12
12
|
import MCheckbox from './MCheckbox.vue'
|
|
13
|
-
import MCkeditor from './MCkeditor.vue'
|
|
13
|
+
// import MCkeditor from './MCkeditor.vue'
|
|
14
14
|
import MColor from './MColor.vue'
|
|
15
15
|
import MDate from './MDate.vue'
|
|
16
16
|
import MEditor from './MEditor.vue'
|
|
@@ -39,7 +39,7 @@ export {
|
|
|
39
39
|
MAvatarViewer,
|
|
40
40
|
MBtn,
|
|
41
41
|
MCheckbox,
|
|
42
|
-
MCkeditor,
|
|
42
|
+
// MCkeditor,
|
|
43
43
|
MColor,
|
|
44
44
|
MDate,
|
|
45
45
|
MEditor,
|
|
@@ -2,7 +2,8 @@ import type {
|
|
|
2
2
|
MAvatarViewerProps,
|
|
3
3
|
MBlockProps,
|
|
4
4
|
MBtnProps,
|
|
5
|
-
MCheckboxProps,
|
|
5
|
+
MCheckboxProps,
|
|
6
|
+
MCkeditorProps,
|
|
6
7
|
MColProps,
|
|
7
8
|
MColumnProps,
|
|
8
9
|
MContainerProps,
|
|
@@ -28,10 +29,15 @@ import type {
|
|
|
28
29
|
import type {
|
|
29
30
|
QBtnDropdownProps,
|
|
30
31
|
QBtnProps,
|
|
31
|
-
QCardProps,
|
|
32
|
+
QCardProps,
|
|
33
|
+
QDialogOptions,
|
|
32
34
|
QDialogProps,
|
|
33
|
-
QFieldProps,
|
|
34
|
-
|
|
35
|
+
QFieldProps,
|
|
36
|
+
QIconProps,
|
|
37
|
+
QItemLabelProps,
|
|
38
|
+
QItemProps,
|
|
39
|
+
QItemSectionProps,
|
|
40
|
+
QListProps,
|
|
35
41
|
QMenuProps,
|
|
36
42
|
QNotifyCreateOptions,
|
|
37
43
|
QPageStickyProps,
|
package/src/utils/vue-plugin.ts
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
MBlock,
|
|
16
16
|
MBtn,
|
|
17
17
|
MCheckbox,
|
|
18
|
-
MCkeditor,
|
|
18
|
+
// MCkeditor,
|
|
19
19
|
MCol,
|
|
20
20
|
MColor,
|
|
21
21
|
MColumn,
|
|
@@ -111,7 +111,7 @@ function install (app: App, options: InstallOptions = {}) {
|
|
|
111
111
|
app.component('MAxios', MAxios)
|
|
112
112
|
app.component('MBtn', MBtn)
|
|
113
113
|
app.component('MCheckbox', MCheckbox)
|
|
114
|
-
app.component('MCkeditor', MCkeditor)
|
|
114
|
+
// app.component('MCkeditor', MCkeditor)
|
|
115
115
|
app.component('MColor', MColor)
|
|
116
116
|
app.component('MDate', MDate)
|
|
117
117
|
app.component('MEditor', MEditor)
|
|
File without changes
|