@mythpe/quasar-ui-qui 0.5.0 → 0.5.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/README.md +9 -6
- package/package.json +30 -29
- package/rREADME.md +0 -147
package/README.md
CHANGED
|
@@ -26,11 +26,13 @@
|
|
|
26
26
|
### 1. Quasar CLI Project (Recommended)
|
|
27
27
|
|
|
28
28
|
The easiest way to integrate is via the [App Extension](https://www.npmjs.com/package/@mythpe/quasar-app-extension-qui):
|
|
29
|
+
|
|
29
30
|
```bash
|
|
30
|
-
quasar ext add qui
|
|
31
|
+
quasar ext add @mythpe/qui
|
|
31
32
|
```
|
|
32
33
|
|
|
33
34
|
#### Alternative: Manual Package Installation
|
|
35
|
+
|
|
34
36
|
If you prefer not to use the App Extension, install the package manually:
|
|
35
37
|
|
|
36
38
|
```bash
|
|
@@ -42,7 +44,9 @@ pnpm add @mythpe/quasar-ui-qui
|
|
|
42
44
|
```
|
|
43
45
|
|
|
44
46
|
#### Manual Boot Registration
|
|
47
|
+
|
|
45
48
|
Create and register a boot file (`src/boot/myth.[ts|js]`):
|
|
49
|
+
|
|
46
50
|
```js
|
|
47
51
|
import { defineBoot } from '#q-app/wrappers'
|
|
48
52
|
import { install } from '@mythpe/quasar-ui-qui'
|
|
@@ -98,11 +102,10 @@ Add the following tags **after** your Quasar Framework assets:
|
|
|
98
102
|
|
|
99
103
|
## 👨💻 Author & Developer
|
|
100
104
|
|
|
101
|
-
|
|
102
|
-
|
|
|
103
|
-
|
|
|
104
|
-
|
|
|
105
|
-
| 📧 **Email** | mythpe@gmail.com |
|
|
105
|
+
| **Developer** | Ahmed Faiz (MyTh) |
|
|
106
|
+
| :-------------- | :-------------------------------- |
|
|
107
|
+
| 🌐 **Website** | [4myth.com](https://4myth.com) |
|
|
108
|
+
| 📧 **Email** | mythpe@gmail.com |
|
|
106
109
|
| 📱 **WhatsApp** | [+966 59 047 0092](https://wa.me) |
|
|
107
110
|
|
|
108
111
|
## 📄 License
|
package/package.json
CHANGED
|
@@ -1,50 +1,60 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mythpe/quasar-ui-qui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "MyTh Ahmed Faiz",
|
|
6
6
|
"mobile": "+966590470092",
|
|
7
7
|
"email": "mythpe@gmail.com",
|
|
8
8
|
"url": "https://www.4myth.com"
|
|
9
9
|
},
|
|
10
|
-
"description": "MyTh Quasar
|
|
10
|
+
"description": "MyTh Quasar Ui Kit Extinction",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"MyTh",
|
|
13
|
+
"Quasar",
|
|
14
|
+
"Vue js",
|
|
15
|
+
"UI",
|
|
16
|
+
"Components",
|
|
17
|
+
"Form Validation",
|
|
18
|
+
"Internationalization",
|
|
19
|
+
"UI Kit",
|
|
20
|
+
"Quasar Extension"
|
|
21
|
+
],
|
|
11
22
|
"license": "MIT",
|
|
12
23
|
"type": "module",
|
|
13
24
|
"main": "./dist/index.common.js",
|
|
14
25
|
"module": "./dist/index.js",
|
|
15
|
-
"types": "./dist/
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
16
27
|
"exports": {
|
|
17
28
|
".": {
|
|
18
|
-
"types": "./dist/
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
19
30
|
"import": "./dist/index.js",
|
|
20
31
|
"require": "./dist/index.common.js"
|
|
21
32
|
}
|
|
22
33
|
},
|
|
23
34
|
"scripts": {
|
|
35
|
+
"lint": "eslint \"./src/**/*.{ts,js,vue}\"",
|
|
36
|
+
"lint:fix": "eslint \"./src/**/*.{ts,js,vue}\" --fix",
|
|
37
|
+
"format": "prettier --write \"**/*.{js,ts,vue,css,scss,html,md,json}\" --ignore-path ../.gitignore",
|
|
24
38
|
"clean": "rimraf dist",
|
|
25
39
|
"build": "yarn clean && vite build",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"dev:android": "cd dev && yarn dev:android && cd ..",
|
|
30
|
-
"dev:electron": "cd dev && yarn dev:electron && cd ..",
|
|
31
|
-
"lint": "eslint \"./src/**/*.{ts,js,cjs,mjs,vue}\"",
|
|
32
|
-
"lint:fix": "eslint \"./src/**/*.{ts,js,cjs,mjs,vue}\" --fix",
|
|
33
|
-
"format": "prettier --write \"**/*.{js,ts,vue,css,scss,html,md,json}\" --ignore-path ../.gitignore"
|
|
40
|
+
"release": "yarn version --patch",
|
|
41
|
+
"minor": "yarn version --minor",
|
|
42
|
+
"major": "yarn version --major"
|
|
34
43
|
},
|
|
35
44
|
"peerDependencies": {
|
|
36
45
|
"quasar": "^2.19.3",
|
|
37
46
|
"vee-validate": "^4.15.1",
|
|
38
|
-
"vue": "^3.5.
|
|
39
|
-
"vue-i18n": "^11.4.
|
|
47
|
+
"vue": "^3.5.34",
|
|
48
|
+
"vue-i18n": "^11.4.4",
|
|
49
|
+
"vue-router": "^5.0.7",
|
|
50
|
+
"@quasar/app-vite": "^2.6.0",
|
|
51
|
+
"@quasar/extras": "^1.18.0",
|
|
52
|
+
"@quasar/app-webpack": "^4.4.5"
|
|
40
53
|
},
|
|
41
54
|
"devDependencies": {
|
|
42
55
|
"@eslint/js": "^10.0.1",
|
|
43
56
|
"@microsoft/api-extractor": "^7.58.7",
|
|
44
|
-
"@
|
|
45
|
-
"@quasar/app-webpack": "^4.4.5",
|
|
46
|
-
"@quasar/extras": "^1.18.0",
|
|
47
|
-
"@types/node": "^25.8.0",
|
|
57
|
+
"@types/node": "^25.9.0",
|
|
48
58
|
"@types/pluralize": "^0.0.33",
|
|
49
59
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
50
60
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
@@ -58,29 +68,20 @@
|
|
|
58
68
|
"pluralize": "^8.0.0",
|
|
59
69
|
"postcss": "^8.5.14",
|
|
60
70
|
"prettier": "^3.8.3",
|
|
61
|
-
"quasar": "^2.19.3",
|
|
62
71
|
"rimraf": "^6.1.3",
|
|
63
72
|
"rtlcss": "^4.3.0",
|
|
64
73
|
"sass": "^1.99.0",
|
|
65
74
|
"typescript": "^6.0.3",
|
|
66
|
-
"vee-validate": "^4.15.1",
|
|
67
75
|
"vite": "^8.0.13",
|
|
68
76
|
"vite-plugin-dts": "^5.0.0",
|
|
69
|
-
"vue": "^3.5.34",
|
|
70
77
|
"vue-eslint-parser": "^10.4.0",
|
|
71
|
-
"vue-
|
|
72
|
-
"vue-router": "^5.0.7",
|
|
73
|
-
"vue-tsc": "^3.2.9"
|
|
78
|
+
"vue-tsc": "^3.3.0"
|
|
74
79
|
},
|
|
75
80
|
"browserslist": [
|
|
76
81
|
"last 4 Chrome versions",
|
|
77
82
|
"last 4 Firefox versions",
|
|
78
83
|
"last 2 Edge versions",
|
|
79
|
-
"last 4 Safari versions"
|
|
80
|
-
"last 4 Android versions",
|
|
81
|
-
"last 4 ChromeAndroid versions",
|
|
82
|
-
"last 4 FirefoxAndroid versions",
|
|
83
|
-
"last 4 iOS versions"
|
|
84
|
+
"last 4 Safari versions"
|
|
84
85
|
],
|
|
85
86
|
"engines": {
|
|
86
87
|
"node": "^28 || ^26 || ^24 || ^22.12",
|
package/rREADME.md
DELETED
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
# MyTh Quasar UI Kit Extintion
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/@mythpe/quasar-ui-qui)
|
|
4
|
-
[](https://www.npmjs.com/package/@mythpe/quasar-ui-qui)
|
|
5
|
-
|
|
6
|
-
**Compatible with Quasar UI v2 and Vue 3**.
|
|
7
|
-
|
|
8
|
-
# Usage
|
|
9
|
-
|
|
10
|
-
## Quasar CLI project
|
|
11
|
-
|
|
12
|
-
Install the [App Extension](https://www.npmjs.com/package/@mythpe/quasar-app-extension-qui).
|
|
13
|
-
|
|
14
|
-
**OR**:
|
|
15
|
-
|
|
16
|
-
Create and register a boot file:
|
|
17
|
-
|
|
18
|
-
```js
|
|
19
|
-
import Vue from 'vue'
|
|
20
|
-
import Plugin from '@mythpe/quasar-ui-qui'
|
|
21
|
-
import '@mythpe/quasar-ui-qui/dist/index.css'
|
|
22
|
-
|
|
23
|
-
Vue.use(Plugin)
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
**OR**:
|
|
27
|
-
|
|
28
|
-
```html
|
|
29
|
-
<style src="@mythpe/quasar-ui-qui/dist/index.css"></style>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
import { Component as MyComponent, Directive } from '@mythpe/quasar-ui-qui'
|
|
33
|
-
|
|
34
|
-
export default {
|
|
35
|
-
components: {
|
|
36
|
-
MyComponent
|
|
37
|
-
},
|
|
38
|
-
directives: {
|
|
39
|
-
Directive
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
</script>
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## Vue CLI project
|
|
46
|
-
|
|
47
|
-
```js
|
|
48
|
-
import Vue from 'vue'
|
|
49
|
-
import Plugin from '@mythpe/quasar-ui-qui'
|
|
50
|
-
import '@mythpe/quasar-ui-qui/dist/index.css'
|
|
51
|
-
|
|
52
|
-
Vue.use(Plugin)
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
**OR**:
|
|
56
|
-
|
|
57
|
-
```html
|
|
58
|
-
<style src="@mythpe/quasar-ui-qui/dist/index.css"></style>
|
|
59
|
-
|
|
60
|
-
<script>
|
|
61
|
-
import { Component as MyComponent, Directive } from '@mythpe/quasar-ui-qui'
|
|
62
|
-
|
|
63
|
-
export default {
|
|
64
|
-
components: {
|
|
65
|
-
MyComponent
|
|
66
|
-
},
|
|
67
|
-
directives: {
|
|
68
|
-
Directive
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
</script>
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
## UMD variant
|
|
75
|
-
|
|
76
|
-
Exports `window.Myth`.
|
|
77
|
-
|
|
78
|
-
Add the following tag(s) after the Quasar ones:
|
|
79
|
-
|
|
80
|
-
```html
|
|
81
|
-
<head>
|
|
82
|
-
<!-- AFTER the Quasar stylesheet tags: -->
|
|
83
|
-
<link
|
|
84
|
-
href="https://cdn.jsdelivr.net/npm/@mythpe/quasar-ui-qui/dist/index.min.css"
|
|
85
|
-
rel="stylesheet"
|
|
86
|
-
type="text/css"
|
|
87
|
-
/>
|
|
88
|
-
</head>
|
|
89
|
-
<body>
|
|
90
|
-
<!-- at end of body, AFTER Quasar script(s): -->
|
|
91
|
-
<script src="https://cdn.jsdelivr.net/npm/@mythpe/quasar-ui-qui/dist/index.umd.min.js"></script>
|
|
92
|
-
</body>
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
If you need the RTL variant of the CSS, then go for the following (instead of the above stylesheet link):
|
|
96
|
-
|
|
97
|
-
```html
|
|
98
|
-
<link
|
|
99
|
-
href="https://cdn.jsdelivr.net/npm/@mythpe/quasar-ui-qui/dist/index.rtl.min.css"
|
|
100
|
-
rel="stylesheet"
|
|
101
|
-
type="text/css"
|
|
102
|
-
/>
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
# Setup
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
$ yarn
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
# Developing
|
|
112
|
-
|
|
113
|
-
```bash
|
|
114
|
-
# start dev in SPA mode
|
|
115
|
-
$ yarn dev
|
|
116
|
-
|
|
117
|
-
# start dev in UMD mode
|
|
118
|
-
$ yarn dev:umd
|
|
119
|
-
|
|
120
|
-
# start dev in SSR mode
|
|
121
|
-
$ yarn dev:ssr
|
|
122
|
-
|
|
123
|
-
# start dev in Cordova iOS mode
|
|
124
|
-
$ yarn dev:ios
|
|
125
|
-
|
|
126
|
-
# start dev in Cordova Android mode
|
|
127
|
-
$ yarn dev:android
|
|
128
|
-
|
|
129
|
-
# start dev in Electron mode
|
|
130
|
-
$ yarn dev:electron
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
# Building package
|
|
134
|
-
|
|
135
|
-
```bash
|
|
136
|
-
$ yarn build
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
# Adding Assets
|
|
140
|
-
|
|
141
|
-
If you have a component that has assets, like language or icon-sets, you will need to provide these for UMD. In the `ui/build/script.javascript.js`
|
|
142
|
-
file, you will find a couple of commented out commands that call `addAssets`. Uncomment what you need and add your assets to have them be built and
|
|
143
|
-
put into the `ui/dist` folder.
|
|
144
|
-
|
|
145
|
-
# License
|
|
146
|
-
|
|
147
|
-
MIT (c) MyTh <mythpe@gmail.com>
|