@bildvitta/quasar-ui-asteroid 3.6.0-beta.1 → 3.6.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.6.0-beta.1",
4
+ "version": "3.6.0",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -35,7 +35,7 @@
35
35
  "autoprefixer": "^10.4.2",
36
36
  "core-js": "^3.20.2",
37
37
  "postcss": "^8.4.5",
38
- "quasar": "^2.10.1",
38
+ "quasar": "^2.11.5",
39
39
  "rimraf": "^3.0.2",
40
40
  "rollup": "^2.66.0",
41
41
  "rollup-plugin-local-resolve": "^1.0.7",
@@ -45,7 +45,7 @@
45
45
  "sass": "^1.49.0"
46
46
  },
47
47
  "dependencies": {
48
- "@bildvitta/store-adapter": "^1.0.0-beta.22",
48
+ "@bildvitta/store-adapter": "^1.0.0",
49
49
  "@fawmi/vue-google-maps": "^0.9.4",
50
50
  "autonumeric": "^4.6.0",
51
51
  "axios": "^0.21.1",
@@ -53,12 +53,12 @@ export default {
53
53
  },
54
54
 
55
55
  currentDay () {
56
- const timeStamp = Date.now()
56
+ const timestamp = Date.now()
57
57
  const { daysList, monthsList } = dateConfig
58
58
 
59
59
  // exemplo: Quarta-feira, 11 de janeiro de 2023
60
60
  return date.formatDate(
61
- timeStamp, 'dddd, DDD [de] MMMM [de] YYYY', { days: daysList, months: monthsList }
61
+ timestamp, 'dddd, D [de] MMMM [de] YYYY', { days: daysList, months: monthsList }
62
62
  )
63
63
  },
64
64
 
@@ -11,7 +11,7 @@
11
11
 
12
12
  <q-img alt="ilustração do código de erro" class="error-component__image" :src="imagePath" />
13
13
 
14
- <qas-btn v-if="hasButtonProps" class="q-mt-xl" v-bind="buttonProps" color="primary" icon="chevron_left" variant="tertiary" />
14
+ <qas-btn v-if="hasButtonProps" class="q-mt-xl" v-bind="buttonProps" color="primary" icon="sym_r_chevron_left" variant="tertiary" />
15
15
  </div>
16
16
  </div>
17
17
  </template>
package/src/vue-plugin.js CHANGED
@@ -56,7 +56,7 @@ import QasUploader from './components/uploader/QasUploader.vue'
56
56
  import QasWelcome from './components/welcome/QasWelcome.vue'
57
57
 
58
58
  import VueGoogleMaps from '@fawmi/vue-google-maps'
59
- import { Notify, Quasar, Dialog as QuasarDialog } from 'quasar'
59
+ import { Notify, Loading, Quasar, Dialog as QuasarDialog } from 'quasar'
60
60
 
61
61
  // Plugins
62
62
  import {
@@ -132,7 +132,7 @@ function install (app) {
132
132
  app.component('QasUploader', QasUploader)
133
133
  app.component('QasWelcome', QasWelcome)
134
134
 
135
- app.use(Quasar, { plugins: { Notify, QuasarDialog, Dialog } })
135
+ app.use(Quasar, { plugins: { Notify, Loading, QuasarDialog, Dialog } })
136
136
 
137
137
  if (process.env.MAPS_API_KEY) {
138
138
  app.use(VueGoogleMaps, { load: { key: process.env.MAPS_API_KEY, libraries: 'places' } })