@quasar/quasar-app-extension-qactivity 3.0.0-beta.2 → 3.0.0-rc.0
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 +3 -9
- package/dist/boot/vite-register.js +1 -1
- package/dist/index.js +2 -2
- package/package.json +10 -6
- package/src/boot/vite-register.ts +1 -1
- package/src/index.ts +2 -2
package/README.md
CHANGED
|
@@ -13,16 +13,10 @@ components for Quasar CLI Vite applications.
|
|
|
13
13
|
quasar ext add @quasar/qactivity
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
While v3 is in beta:
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
quasar ext add @quasar/qactivity@beta
|
|
20
|
-
```
|
|
21
|
-
|
|
22
16
|
## Requirements
|
|
23
17
|
|
|
24
18
|
- Quasar v2.
|
|
25
|
-
- `@quasar/app-vite` >=3.0.0-
|
|
19
|
+
- `@quasar/app-vite` >=3.0.0-rc.1.
|
|
26
20
|
|
|
27
21
|
## Uninstall
|
|
28
22
|
|
|
@@ -34,8 +28,8 @@ quasar ext remove @quasar/qactivity
|
|
|
34
28
|
|
|
35
29
|
If QActivity is useful in your workflow and you want to support ongoing maintenance:
|
|
36
30
|
|
|
37
|
-
GitHub Sponsors: https://github.com/sponsors/hawkeye64
|
|
38
|
-
PayPal: https://paypal.me/hawkeye64
|
|
31
|
+
- GitHub Sponsors: https://github.com/sponsors/hawkeye64
|
|
32
|
+
- PayPal: https://paypal.me/hawkeye64
|
|
39
33
|
|
|
40
34
|
## License
|
|
41
35
|
|
package/dist/index.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Docs: https://quasar.dev/app-extensions/development-guide/index-api
|
|
6
6
|
*/
|
|
7
|
-
import { defineIndexScript } from "
|
|
7
|
+
import { defineIndexScript } from "#q-app";
|
|
8
8
|
export default defineIndexScript((api) => {
|
|
9
9
|
api.compatibleWith("quasar", "^2.0.0");
|
|
10
|
-
api.compatibleWith("@quasar/app-vite", ">=3.0.0-
|
|
10
|
+
api.compatibleWith("@quasar/app-vite", ">=3.0.0-rc.1");
|
|
11
11
|
api.registerDescribeApi("QActivity", "~@quasar/quasar-ui-qactivity/dist/api/QActivity.json");
|
|
12
12
|
api.registerDescribeApi("QActivityItem", "~@quasar/quasar-ui-qactivity/dist/api/QActivityItem.json");
|
|
13
13
|
api.extendQuasarConf(() => ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quasar/quasar-app-extension-qactivity",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-rc.0",
|
|
4
4
|
"description": "QActivity is an app extension for Quasar for making an activity list",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"activity",
|
|
@@ -29,19 +29,22 @@
|
|
|
29
29
|
],
|
|
30
30
|
"type": "module",
|
|
31
31
|
"main": "dist/index.js",
|
|
32
|
+
"imports": {
|
|
33
|
+
"#q-app": "@quasar/app-vite"
|
|
34
|
+
},
|
|
32
35
|
"publishConfig": {
|
|
33
36
|
"access": "public"
|
|
34
37
|
},
|
|
35
38
|
"dependencies": {
|
|
36
|
-
"@quasar/quasar-ui-qactivity": "^3.0.0-
|
|
39
|
+
"@quasar/quasar-ui-qactivity": "^3.0.0-rc.0"
|
|
37
40
|
},
|
|
38
41
|
"devDependencies": {
|
|
39
|
-
"@quasar/app-vite": "3.0.0-
|
|
40
|
-
"quasar": "^2.
|
|
42
|
+
"@quasar/app-vite": "3.0.0-rc.1",
|
|
43
|
+
"quasar": "^2.20.0",
|
|
41
44
|
"typescript": "~6.0.3"
|
|
42
45
|
},
|
|
43
46
|
"peerDependencies": {
|
|
44
|
-
"@quasar/app-vite": ">=3.0.0-
|
|
47
|
+
"@quasar/app-vite": ">=3.0.0-rc.1"
|
|
45
48
|
},
|
|
46
49
|
"engines": {
|
|
47
50
|
"node": ">=22.13",
|
|
@@ -49,6 +52,7 @@
|
|
|
49
52
|
},
|
|
50
53
|
"scripts": {
|
|
51
54
|
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.build.json",
|
|
52
|
-
"lint": "oxlint src"
|
|
55
|
+
"lint": "oxlint src",
|
|
56
|
+
"release": "pnpm publish --tag latest"
|
|
53
57
|
}
|
|
54
58
|
}
|
package/src/index.ts
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
* Docs: https://quasar.dev/app-extensions/development-guide/index-api
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import { defineIndexScript } from "
|
|
8
|
+
import { defineIndexScript } from "#q-app";
|
|
9
9
|
|
|
10
10
|
export default defineIndexScript((api) => {
|
|
11
11
|
api.compatibleWith("quasar", "^2.0.0");
|
|
12
|
-
api.compatibleWith("@quasar/app-vite", ">=3.0.0-
|
|
12
|
+
api.compatibleWith("@quasar/app-vite", ">=3.0.0-rc.1");
|
|
13
13
|
|
|
14
14
|
api.registerDescribeApi("QActivity", "~@quasar/quasar-ui-qactivity/dist/api/QActivity.json");
|
|
15
15
|
api.registerDescribeApi(
|