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