@quasar/quasar-app-extension-qactivity 3.0.0-rc.0 → 3.0.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 +16 -5
- package/dist/boot/vite-register.js +2 -2
- package/dist/index.js +7 -7
- package/package.json +5 -5
- package/src/boot/vite-register.ts +4 -4
- package/src/index.ts +11 -11
package/README.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# QActivity App Extension
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@quasar/quasar-app-extension-qactivity)
|
|
4
|
+
[](https://www.npmjs.com/package/@quasar/quasar-app-extension-qactivity)
|
|
5
|
+
[](https://www.npmjs.com/package/@quasar/quasar-app-extension-qactivity)
|
|
6
|
+
[](https://www.npmjs.com/package/@quasar/quasar-app-extension-qactivity)
|
|
7
|
+
|
|
8
|
+
<span class="badge-github-sponsors"><a href="https://github.com/sponsors/hawkeye64" title="Sponsor this project on GitHub"><img src="https://img.shields.io/badge/github-sponsors-ea4aaa.svg?logo=githubsponsors&logoColor=white" alt="GitHub Sponsors button" /></a></span>
|
|
9
|
+
<span class="badge-paypal"><a href="https://paypal.me/hawkeye64" title="Donate to this project using Paypal"><img src="https://img.shields.io/badge/paypal-donate-yellow.svg" alt="PayPal donate button" /></a></span>
|
|
10
|
+
|
|
11
|
+
[](https://chat.quasar.dev)
|
|
12
|
+
[](https://twitter.com/jgalbraith64)
|
|
13
|
+
|
|
3
14
|
The QActivity app extension (`@quasar/quasar-app-extension-qactivity`) installs and registers the
|
|
4
|
-
[QActivity UI](https://github.com/quasarframework/quasar-ui-qactivity/tree/
|
|
15
|
+
[QActivity UI](https://github.com/quasarframework/quasar-ui-qactivity/tree/main/packages/ui)
|
|
5
16
|
components for Quasar CLI Vite applications.
|
|
6
17
|
|
|
7
|
-

|
|
8
|
-
[](https://www.npmjs.com/package/@quasar/quasar-app-extension-qactivity)
|
|
9
|
-
|
|
10
18
|
## Install
|
|
11
19
|
|
|
12
20
|
```bash
|
|
@@ -16,7 +24,10 @@ quasar ext add @quasar/qactivity
|
|
|
16
24
|
## Requirements
|
|
17
25
|
|
|
18
26
|
- Quasar v2.
|
|
19
|
-
- `@quasar/app-vite` >=3.0.0
|
|
27
|
+
- `@quasar/app-vite` >=3.0.0.
|
|
28
|
+
|
|
29
|
+
QActivity v3 does not support webpack-based Quasar apps. If your application is still using
|
|
30
|
+
`@quasar/app-webpack`, migrate the app to Quasar CLI Vite before installing this app extension.
|
|
20
31
|
|
|
21
32
|
## Uninstall
|
|
22
33
|
|
package/dist/index.js
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
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
|
-
api.compatibleWith(
|
|
10
|
-
api.compatibleWith(
|
|
11
|
-
api.registerDescribeApi(
|
|
12
|
-
api.registerDescribeApi(
|
|
9
|
+
api.compatibleWith('quasar', '^2.0.0');
|
|
10
|
+
api.compatibleWith('@quasar/app-vite', '>=3.0.0');
|
|
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
13
|
api.extendQuasarConf(() => ({
|
|
14
|
-
boot: [
|
|
15
|
-
css: [
|
|
14
|
+
boot: ['~@quasar/quasar-app-extension-qactivity/dist/boot/vite-register.js'],
|
|
15
|
+
css: ['~@quasar/quasar-ui-qactivity/src/index.scss'],
|
|
16
16
|
}));
|
|
17
17
|
});
|
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",
|
|
4
4
|
"description": "QActivity is an app extension for Quasar for making an activity list",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"activity",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@quasar/quasar-ui-qactivity": "^3.0.0
|
|
39
|
+
"@quasar/quasar-ui-qactivity": "^3.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@quasar/app-vite": "3.0.0
|
|
43
|
-
"quasar": "^2.
|
|
42
|
+
"@quasar/app-vite": "3.0.0",
|
|
43
|
+
"quasar": "^2.21.1",
|
|
44
44
|
"typescript": "~6.0.3"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@quasar/app-vite": ">=3.0.0
|
|
47
|
+
"@quasar/app-vite": ">=3.0.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=22.13",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineBoot } from
|
|
2
|
-
import VuePlugin from
|
|
1
|
+
import { defineBoot } from '#q-app'
|
|
2
|
+
import VuePlugin from '@quasar/quasar-ui-qactivity'
|
|
3
3
|
|
|
4
4
|
export default defineBoot(({ app }) => {
|
|
5
|
-
app.use(VuePlugin)
|
|
6
|
-
})
|
|
5
|
+
app.use(VuePlugin)
|
|
6
|
+
})
|
package/src/index.ts
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
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
|
-
api.compatibleWith(
|
|
12
|
-
api.compatibleWith(
|
|
11
|
+
api.compatibleWith('quasar', '^2.0.0')
|
|
12
|
+
api.compatibleWith('@quasar/app-vite', '>=3.0.0')
|
|
13
13
|
|
|
14
|
-
api.registerDescribeApi(
|
|
14
|
+
api.registerDescribeApi('QActivity', '~@quasar/quasar-ui-qactivity/dist/api/QActivity.json')
|
|
15
15
|
api.registerDescribeApi(
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
)
|
|
16
|
+
'QActivityItem',
|
|
17
|
+
'~@quasar/quasar-ui-qactivity/dist/api/QActivityItem.json',
|
|
18
|
+
)
|
|
19
19
|
|
|
20
20
|
api.extendQuasarConf(() => ({
|
|
21
|
-
boot: [
|
|
22
|
-
css: [
|
|
23
|
-
}))
|
|
24
|
-
})
|
|
21
|
+
boot: ['~@quasar/quasar-app-extension-qactivity/dist/boot/vite-register.js'],
|
|
22
|
+
css: ['~@quasar/quasar-ui-qactivity/src/index.scss'],
|
|
23
|
+
}))
|
|
24
|
+
})
|