@bildvitta/quasar-ui-asteroid 3.11.0-beta.16 → 3.11.0-beta.18

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.11.0-beta.16",
4
+ "version": "3.11.0-beta.18",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="#90a4ae" height="48" viewBox="0 -960 960 960" width="48"><path d="M480-80q-84 0-157-31t-127-85q-54-54-85-127T80-480q0-84 31-157t85-127q54-54 127-85t157-31q12 0 21 9t9 21q0 12-9 21t-21 9q-141 0-240.5 99.5T140-480q0 141 99.5 240.5T480-140q141 0 240.5-99.5T820-480q0-12 9-21t21-9q12 0 21 9t9 21q0 84-31 157t-85 127q-54 54-127 85T480-80Z"/></svg>
@@ -3,6 +3,7 @@
3
3
  <div v-for="(fieldsetItem, fieldsetItemKey) in normalizedFields" :key="fieldsetItemKey" class="full-width">
4
4
  <slot v-if="fieldsetItem.label" :name="`legend-${fieldsetItemKey}`">
5
5
  <qas-label :label="fieldsetItem.label" />
6
+ <div v-if="fieldsetItem.description" class="q-mb-md text-body1 text-grey-8">{{ fieldsetItem.description }}</div>
6
7
  </slot>
7
8
 
8
9
  <div>
@@ -123,6 +124,7 @@ const normalizedFields = computed(() => {
123
124
 
124
125
  fields[fieldsetKey] = {
125
126
  label: fieldsetItem.label,
127
+ description: fieldsetItem.description,
126
128
  fields: { hidden: {}, visible: {} }
127
129
  }
128
130
 
@@ -36,7 +36,7 @@ props:
36
36
  desc: Lista para agrupar elementos por rótulo (label).
37
37
  default: {}
38
38
  type: Object
39
- examples: ["{ personalInformation: { label: 'Informações pessoais', fields: [name, email] } }"]
39
+ examples: ["{ personalInformation: { label: 'Informações pessoais', description: 'Descrição dos campos', fields: ['name', 'email'] } }"]
40
40
 
41
41
  fieldset-gutter:
42
42
  desc: Espaçamento entre rótulos (label).
@@ -9,7 +9,7 @@
9
9
  <q-breadcrumbs v-if="useBreadcrumbs" class="text-caption" gutter="xs" separator-color="grey-8">
10
10
  <q-breadcrumbs-el v-if="useHomeIcon" class="qas-page-header__breadcrumbs-el text-grey-8" icon="sym_r_home" :to="homeRoute" />
11
11
 
12
- <q-breadcrumbs-el v-for="(item, index) in normalizedBreadcrumbs" :key="index" class="qas-page-header__breadcrumbs-el" :label="item.label" :to="item.route" />
12
+ <q-breadcrumbs-el v-for="(item, index) in normalizedBreadcrumbs" :key="index" class="ellipsis inline-block qas-page-header__breadcrumbs-el" :label="item.label" :to="item.route" />
13
13
  </q-breadcrumbs>
14
14
  </div>
15
15
 
@@ -142,6 +142,7 @@ export default {
142
142
  <style lang="scss">
143
143
  .qas-page-header {
144
144
  &__breadcrumbs-el {
145
+ max-width: 180px;
145
146
  transition: color var(--qas-generic-transition);
146
147
 
147
148
  &.q-breadcrumbs__el:not(.q-router-link--exact-active):hover {
@@ -1,13 +1,21 @@
1
1
  <template>
2
2
  <div class="q-mb-xl qas-welcome text-left">
3
- <h3 class="text-grey-9 text-h3">
4
- {{ welcomeMessage }}<span v-if="firstName">, {{ firstName }}</span>
5
- </h3>
3
+ <div class="items-center justify-between row">
4
+ <div>
5
+ <h3 class="text-grey-9 text-h3">
6
+ {{ welcomeMessage }}<span v-if="firstName">, {{ firstName }}</span>
7
+ </h3>
6
8
 
7
- <div class="text-caption text-grey-8">{{ currentDay }}</div>
9
+ <div class="text-caption text-grey-8">{{ currentDay }}</div>
10
+ </div>
11
+
12
+ <slot name="actions">
13
+ <qas-actions-menu v-if="hasActionsMenuProps" v-bind="actionsMenuProps" />
14
+ </slot>
15
+ </div>
8
16
 
9
17
  <div v-if="hasShortcuts">
10
- <div class="q-mb-md q-mt-md text-grey-9 text-subtitle2">Atalhos</div>
18
+ <qas-label class="q-mt-lg" label="Atalhos" />
11
19
 
12
20
  <div class="qas-welcome__container">
13
21
  <div ref="scrollArea" class="row" :class="contentClasses">
@@ -34,6 +42,11 @@ export default {
34
42
  },
35
43
 
36
44
  props: {
45
+ actionsMenuProps: {
46
+ default: () => ({}),
47
+ type: Object
48
+ },
49
+
37
50
  name: {
38
51
  default: '',
39
52
  type: String
@@ -68,6 +81,10 @@ export default {
68
81
  return this.name.split(' ')?.[0]
69
82
  },
70
83
 
84
+ hasActionsMenuProps () {
85
+ return !!Object.keys(this.actionsMenuProps).length
86
+ },
87
+
71
88
  hasShortcuts () {
72
89
  return !!this.shortcuts.length
73
90
  },
@@ -4,6 +4,11 @@ meta:
4
4
  desc: Componente de boas-vindas para ser usado na Home dos sistemas.
5
5
 
6
6
  props:
7
+ actions-menu-props:
8
+ desc: Propriedades repassadas para o QasActionsMenu.
9
+ default: {}
10
+ type: Object
11
+
7
12
  name:
8
13
  desc: Nome do usuário a ser mostrado na tela.
9
14
  type: String
@@ -12,3 +17,7 @@ props:
12
17
  desc: Lista de cards de atalhos.
13
18
  default: []
14
19
  type: Array
20
+
21
+ slots:
22
+ actions:
23
+ desc: Slot para substituir o QasActionsMenu.
@@ -0,0 +1,28 @@
1
+ @keyframes rotation {
2
+ from {
3
+ transform: rotate(0deg);
4
+ }
5
+
6
+ to {
7
+ transform: rotate(359deg);
8
+ }
9
+ }
10
+
11
+ .icons-is-loading {
12
+ .material-symbols-rounded {
13
+ position: relative;
14
+ color: transparent;
15
+
16
+ &::before {
17
+ content: '';
18
+ background-image: url('~@bildvitta/quasar-ui-asteroid/src/assets/icon-loading.svg');
19
+ background-size: contain;
20
+ background-repeat: no-repeat;
21
+ background-position: center center;
22
+ animation: rotation 1s infinite linear;
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ }
27
+ }
28
+ }
@@ -0,0 +1 @@
1
+ @import './font-face';
package/src/index.scss CHANGED
@@ -19,6 +19,9 @@ $background-color: var(--qas-background-color);
19
19
  $generic-border-radius: var(--qas-generic-border-radius);
20
20
  $border-grey: var(--qas-border-grey);
21
21
 
22
+ // base
23
+ @import './css/base/index';
24
+
22
25
  // variables
23
26
  @import './css/variables/index';
24
27