@quasar/quasar-app-extension-qcalendar 5.0.0 → 5.1.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,8 +13,8 @@
13
13
 
14
14
  The **QCalendar App Extension** allows you to seamlessly add the [QCalendar](../ui) component into your Quasar application. It manages the boot file file and all other configuration for you.
15
15
 
16
- [![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/quasarframework/quasar-ui-qcalendar)]()
17
- [![GitHub repo size in bytes](https://img.shields.io/github/repo-size/quasarframework/quasar-ui-qcalendar)]()
16
+ [![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/quasarframework/quasar-ui-qcalendar)](https://github.com/quasarframework/quasar-ui-qcalendar)
17
+ [![GitHub repo size in bytes](https://img.shields.io/github/repo-size/quasarframework/quasar-ui-qcalendar)](https://github.com/quasarframework/quasar-ui-qcalendar)
18
18
 
19
19
  ## Everything you need for a complete Calendar solution.
20
20
 
@@ -1,5 +1,7 @@
1
1
  import { defineBoot } from '#q-app';
2
2
  import VuePlugin from '@quasar/quasar-ui-qcalendar';
3
+ // @ts-expect-error SCSS side-effect imports do not have type declarations
4
+ import '@quasar/quasar-ui-qcalendar/src/index.scss';
3
5
  export default defineBoot(({ app }) => {
4
6
  app.use(VuePlugin);
5
7
  });
package/dist/index.js CHANGED
@@ -22,6 +22,5 @@ export default defineIndexScript((api) => {
22
22
  // We extend /quasar.conf.js
23
23
  api.extendQuasarConf(() => ({
24
24
  boot: ['~@quasar/quasar-app-extension-qcalendar/dist/boot/vite-register.js'],
25
- css: ['~@quasar/quasar-ui-qcalendar/src/index.scss'],
26
25
  }));
27
26
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quasar/quasar-app-extension-qcalendar",
3
- "version": "5.0.0",
3
+ "version": "5.1.0",
4
4
  "description": "A Quasar App Extension for @quasar/quasar-ui-qcalendar",
5
5
  "keywords": [
6
6
  "app",
@@ -43,10 +43,10 @@
43
43
  "access": "public"
44
44
  },
45
45
  "dependencies": {
46
- "@quasar/quasar-ui-qcalendar": "^5.0.0"
46
+ "@quasar/quasar-ui-qcalendar": "^5.1.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@quasar/app-vite": "3.0.0",
49
+ "@quasar/app-vite": "3.0.1",
50
50
  "typescript": "~6.0.3"
51
51
  },
52
52
  "peerDependencies": {
@@ -1,5 +1,7 @@
1
1
  import { defineBoot } from '#q-app'
2
2
  import VuePlugin from '@quasar/quasar-ui-qcalendar'
3
+ // @ts-expect-error SCSS side-effect imports do not have type declarations
4
+ import '@quasar/quasar-ui-qcalendar/src/index.scss'
3
5
 
4
6
  export default defineBoot(({ app }) => {
5
7
  app.use(VuePlugin)
package/src/index.ts CHANGED
@@ -41,6 +41,5 @@ export default defineIndexScript((api) => {
41
41
  // We extend /quasar.conf.js
42
42
  api.extendQuasarConf(() => ({
43
43
  boot: ['~@quasar/quasar-app-extension-qcalendar/dist/boot/vite-register.js'],
44
- css: ['~@quasar/quasar-ui-qcalendar/src/index.scss'],
45
44
  }))
46
45
  })