@mythpe/quasar-app-extension-qui 0.0.7 → 0.0.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.
- package/README.md +16 -7
- package/package.json +5 -3
- package/src/boot/register.js +2 -2
- package/tsconfig.json +3 -0
- package/src/types.d.ts +0 -1
package/README.md
CHANGED
|
@@ -6,30 +6,39 @@
|
|
|
6
6
|
[](https://www.npmjs.com/package/@mythpe/quasar-app-extension-qui)
|
|
7
7
|
|
|
8
8
|
# Install
|
|
9
|
+
|
|
9
10
|
```bash
|
|
10
11
|
quasar ext add @mythpe/qui
|
|
11
|
-
quasar ext invoke @mythpe/qui
|
|
12
12
|
```
|
|
13
13
|
Quasar CLI will retrieve it from NPM and install the extension.
|
|
14
14
|
|
|
15
|
+
# Invoke
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
quasar ext invoke @mythpe/qui
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
|
|
15
22
|
## Prompts
|
|
16
23
|
|
|
17
24
|
> If your app extension uses prompts, explain them here, otherwise remove this section and remove prompts.js file.
|
|
18
25
|
|
|
19
26
|
# Uninstall
|
|
27
|
+
|
|
20
28
|
```bash
|
|
21
29
|
quasar ext remove @mythpe/qui
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
# Uninvoke
|
|
33
|
+
|
|
34
|
+
```bash
|
|
22
35
|
quasar ext uninvoke @mythpe/qui
|
|
23
36
|
```
|
|
24
37
|
|
|
25
38
|
# Info
|
|
26
|
-
> Add longer information here that will help the user of your app extension.
|
|
27
|
-
|
|
28
|
-
# Other Info
|
|
29
|
-
> Add other information that's not as important to know
|
|
30
39
|
|
|
31
|
-
|
|
32
|
-
If you appreciate the work that went into this App Extension, please consider [donating to Quasar](https://donate.quasar.dev).
|
|
40
|
+
> Add longer information here that will help the user of your app extension.
|
|
33
41
|
|
|
34
42
|
# License
|
|
43
|
+
|
|
35
44
|
MIT (c) MyTh <mythpe@gmail.com>
|
package/package.json
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mythpe/quasar-app-extension-qui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "MyTh Quasar UI Kit App Extension",
|
|
5
5
|
"author": "MyTh Ahmed Faiz <mythpe@gmail.com>",
|
|
6
6
|
"mobile": "+966590470092",
|
|
7
7
|
"email": "mythpe@gmail.com",
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"type": "module",
|
|
10
9
|
"scripts": {
|
|
11
10
|
"lint": "eslint --ext .js,.ts,.vue ./",
|
|
12
11
|
"lint:fix": "eslint --ext .js,.ts,.vue ./ --fix"
|
|
13
12
|
},
|
|
14
13
|
"dependencies": {
|
|
15
|
-
"@mythpe/quasar-ui-qui": "^0.0.
|
|
14
|
+
"@mythpe/quasar-ui-qui": "^0.0.18"
|
|
16
15
|
},
|
|
17
16
|
"engines": {
|
|
18
17
|
"node": "^24 || ^22 || ^20 || ^18",
|
|
19
18
|
"npm": ">= 6.13.4",
|
|
20
19
|
"yarn": ">= 1.21.1"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"typescript": "^5.7.2"
|
|
21
23
|
}
|
|
22
24
|
}
|
package/src/boot/register.js
CHANGED
package/tsconfig.json
ADDED
package/src/types.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@mythpe/quasar-ui-qui/types'
|