@bildvitta/quasar-ui-asteroid 3.12.0-beta.0 → 3.12.0-beta.10
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 +1 -1
- package/src/components/alert/QasAlert.vue +84 -61
- package/src/components/alert/QasAlert.yml +13 -7
- package/src/components/filters/QasFilters.vue +8 -15
- package/src/components/label/QasLabel.vue +13 -2
- package/src/components/label/QasLabel.yml +10 -4
- package/src/components/nested-fields/QasNestedFields.vue +36 -9
- package/src/components/nested-fields/QasNestedFields.yml +5 -5
- package/src/components/search-box/QasSearchBox.vue +1 -1
- package/src/components/select/QasSelect.vue +6 -11
- package/src/components/select-list-dialog/QasSelectListDialog.vue +386 -0
- package/src/components/select-list-dialog/QasSelectListDialog.yml +108 -0
- package/src/components/timeline/QasTimeline.vue +140 -0
- package/src/components/timeline/QasTimeline.yml +36 -0
- package/src/components/uploader/QasUploader.vue +24 -3
- package/src/components/uploader/QasUploader.yml +11 -1
- package/src/composables/index.js +3 -1
- package/src/composables/use-context.js +15 -0
- package/src/composables/use-query-cache.js +53 -0
- package/src/enums/Status.js +33 -0
- package/src/vue-plugin.js +9 -3
package/package.json
CHANGED
|
@@ -1,87 +1,110 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div v-if="
|
|
3
|
-
<
|
|
2
|
+
<div v-if="show" class="inline-block">
|
|
3
|
+
<div class="bg-dark flex justify-between no-wrap q-pa-md qas-alert relative-position">
|
|
4
|
+
<div class="qas-alert__border-left" :class="borderClass" />
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
<div class="text-body1 text-white">
|
|
7
|
+
<slot>
|
|
8
|
+
{{ text }}
|
|
9
|
+
</slot>
|
|
10
|
+
</div>
|
|
9
11
|
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
<qas-btn
|
|
13
|
+
class="q-ml-xs qas-alert__close"
|
|
14
|
+
color="white"
|
|
15
|
+
icon="sym_r_close"
|
|
16
|
+
:use-hover-on-white-color="false"
|
|
17
|
+
@click="close"
|
|
18
|
+
/>
|
|
13
19
|
</div>
|
|
14
20
|
</div>
|
|
15
21
|
</template>
|
|
16
22
|
|
|
17
|
-
<script>
|
|
18
|
-
import
|
|
19
|
-
import
|
|
23
|
+
<script setup>
|
|
24
|
+
import { LocalStorage } from 'quasar'
|
|
25
|
+
import { Status, StatusColor } from '../../enums/Status'
|
|
26
|
+
import { computed, watch, ref } from 'vue'
|
|
20
27
|
|
|
21
|
-
|
|
22
|
-
name: 'QasAlert',
|
|
28
|
+
defineOptions({ name: 'QasAlert' })
|
|
23
29
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
30
|
+
const props = defineProps({
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: Boolean,
|
|
33
|
+
default: true
|
|
27
34
|
},
|
|
28
35
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
type: Boolean
|
|
33
|
-
},
|
|
34
|
-
|
|
35
|
-
text: {
|
|
36
|
-
default: '',
|
|
37
|
-
type: String
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
color: {
|
|
41
|
-
type: String,
|
|
42
|
-
default: 'primary'
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
title: {
|
|
46
|
-
default: '',
|
|
47
|
-
type: String
|
|
48
|
-
}
|
|
36
|
+
text: {
|
|
37
|
+
type: String,
|
|
38
|
+
default: ''
|
|
49
39
|
},
|
|
50
40
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
return {
|
|
55
|
-
model: true
|
|
56
|
-
}
|
|
41
|
+
storageKey: {
|
|
42
|
+
type: String,
|
|
43
|
+
default: ''
|
|
57
44
|
},
|
|
58
45
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
46
|
+
status: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: Status.Info,
|
|
49
|
+
validator: value => Object.values(Status).includes(value)
|
|
63
50
|
},
|
|
64
51
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
52
|
+
usePersistentModelOnClose: {
|
|
53
|
+
type: Boolean
|
|
54
|
+
}
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
const emit = defineEmits(['update:modelValue'])
|
|
58
|
+
|
|
59
|
+
const model = ref(props.modelValue)
|
|
60
|
+
|
|
61
|
+
watch(() => props.modelValue, value => {
|
|
62
|
+
model.value = value
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
const colorByStatus = computed(() => {
|
|
66
|
+
const status = Object.keys(Status).find(key => Status[key] === props.status)
|
|
67
|
+
return StatusColor[status]
|
|
68
|
+
})
|
|
69
|
+
|
|
70
|
+
const borderClass = computed(() => `bg-${colorByStatus.value}`)
|
|
71
|
+
|
|
72
|
+
const storageClosedKey = computed(() => `alert-${props.storageKey}-closed`)
|
|
73
73
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
const isClosed = computed(() => {
|
|
75
|
+
return props.usePersistentModelOnClose && LocalStorage.getItem(storageClosedKey.value)
|
|
76
|
+
})
|
|
77
|
+
|
|
78
|
+
const show = computed(() => !isClosed.value && model.value)
|
|
79
|
+
|
|
80
|
+
function close () {
|
|
81
|
+
if (props.usePersistentModelOnClose) {
|
|
82
|
+
LocalStorage.set(storageClosedKey.value, true)
|
|
78
83
|
}
|
|
84
|
+
|
|
85
|
+
model.value = false
|
|
86
|
+
|
|
87
|
+
emit('update:modelValue', model.value)
|
|
79
88
|
}
|
|
89
|
+
|
|
80
90
|
</script>
|
|
81
91
|
|
|
82
92
|
<style lang="scss">
|
|
83
93
|
.qas-alert {
|
|
84
|
-
border-
|
|
85
|
-
|
|
94
|
+
border-radius: var(--qas-generic-border-radius);
|
|
95
|
+
|
|
96
|
+
&__border-left {
|
|
97
|
+
border-radius: var(--qas-generic-border-radius) 0 0 var(--qas-generic-border-radius);
|
|
98
|
+
bottom: 0;
|
|
99
|
+
content: '';
|
|
100
|
+
left: 0;
|
|
101
|
+
position: absolute;
|
|
102
|
+
top: 0;
|
|
103
|
+
width: 4px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&__close {
|
|
107
|
+
top: calc(var(--qas-spacing-sm) * -1);
|
|
108
|
+
}
|
|
86
109
|
}
|
|
87
110
|
</style>
|
|
@@ -9,21 +9,27 @@ props:
|
|
|
9
9
|
default: true
|
|
10
10
|
type: Boolean
|
|
11
11
|
|
|
12
|
-
title:
|
|
13
|
-
desc: Título do componente.
|
|
14
|
-
type: String
|
|
15
|
-
|
|
16
12
|
text:
|
|
17
13
|
desc: Texto do componente.
|
|
18
14
|
type: String
|
|
19
15
|
|
|
16
|
+
status:
|
|
17
|
+
desc: Status do alerta.
|
|
18
|
+
type: String
|
|
19
|
+
examples: ['error', 'info']
|
|
20
|
+
|
|
21
|
+
storage-key:
|
|
22
|
+
desc: Chave a ser salva no localStorage, necessário caso esteja usando mais de um QasAlert na aplicação e ambos estejam com a prop "use-persist-model-on-close" ativada.
|
|
23
|
+
type: String
|
|
24
|
+
|
|
25
|
+
use-persistent-model-on-close:
|
|
26
|
+
desc: Habilita salvar o model em localStorage ao fechar o alerta para não aparecer novamente.
|
|
27
|
+
type: Boolean
|
|
28
|
+
|
|
20
29
|
slots:
|
|
21
30
|
default:
|
|
22
31
|
desc: 'Slot para acessar o conteúdo gerado pela prop "text"'
|
|
23
32
|
|
|
24
|
-
header:
|
|
25
|
-
desc: 'Slot para acessar o conteúdo gerado pela prop "title"'
|
|
26
|
-
|
|
27
33
|
events:
|
|
28
34
|
'@update:model-value -> function(value)':
|
|
29
35
|
desc: Dispara quando o model-value altera, também usado para v-model.
|
|
@@ -224,9 +224,14 @@ export default {
|
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
|
|
227
|
-
created () {
|
|
228
|
-
this.fetchFilters()
|
|
229
|
-
|
|
227
|
+
async created () {
|
|
228
|
+
await this.fetchFilters()
|
|
229
|
+
|
|
230
|
+
if (this.useUpdateRoute) {
|
|
231
|
+
this.updateValues()
|
|
232
|
+
this.updateCurrentFilters()
|
|
233
|
+
}
|
|
234
|
+
|
|
230
235
|
this.handleSearchModelOnCreate()
|
|
231
236
|
},
|
|
232
237
|
|
|
@@ -371,18 +376,6 @@ export default {
|
|
|
371
376
|
return isMultiple ? [value] : value
|
|
372
377
|
},
|
|
373
378
|
|
|
374
|
-
watchOnceFields () {
|
|
375
|
-
if (!this.useUpdateRoute) return
|
|
376
|
-
|
|
377
|
-
const watchOnce = this.$watch('fields', values => {
|
|
378
|
-
if (Object.keys(values || {}).length) {
|
|
379
|
-
this.updateValues()
|
|
380
|
-
this.updateCurrentFilters()
|
|
381
|
-
watchOnce()
|
|
382
|
-
}
|
|
383
|
-
})
|
|
384
|
-
},
|
|
385
|
-
|
|
386
379
|
handleSearchModelOnCreate () {
|
|
387
380
|
if (this.useUpdateRoute && !this.useFilterButton) {
|
|
388
381
|
this.setSearch()
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div :class="classes">
|
|
3
3
|
<slot :label-with-suffix="formattedLabel">{{ formattedLabel }}</slot>
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
@@ -39,6 +39,16 @@ export default {
|
|
|
39
39
|
|
|
40
40
|
required: {
|
|
41
41
|
type: Boolean
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
typography: {
|
|
45
|
+
default: 'h4',
|
|
46
|
+
type: String,
|
|
47
|
+
validator: value => {
|
|
48
|
+
const availableTypography = ['h4', 'h5']
|
|
49
|
+
|
|
50
|
+
return availableTypography.includes(value)
|
|
51
|
+
}
|
|
42
52
|
}
|
|
43
53
|
},
|
|
44
54
|
|
|
@@ -54,7 +64,8 @@ export default {
|
|
|
54
64
|
classes () {
|
|
55
65
|
return [
|
|
56
66
|
`q-mb-${this.margin}`,
|
|
57
|
-
`text-${this.color}
|
|
67
|
+
`text-${this.color}`,
|
|
68
|
+
`text-${this.typography}`
|
|
58
69
|
]
|
|
59
70
|
}
|
|
60
71
|
}
|
|
@@ -4,6 +4,11 @@ meta:
|
|
|
4
4
|
desc: Componente para controlar textos que separam conteúdos, formatando com um sufixo quando existe um contador.
|
|
5
5
|
|
|
6
6
|
props:
|
|
7
|
+
color:
|
|
8
|
+
desc: Cor do texto.
|
|
9
|
+
default: grey-9
|
|
10
|
+
type: String
|
|
11
|
+
|
|
7
12
|
count:
|
|
8
13
|
desc: Contador que vai ficar ao lado do texto.
|
|
9
14
|
default: 0
|
|
@@ -20,14 +25,15 @@ props:
|
|
|
20
25
|
examples: [xs, sm, md, lg, xl]
|
|
21
26
|
|
|
22
27
|
required:
|
|
23
|
-
desc: Controla
|
|
28
|
+
desc: Controla se exibirá o sufixo "*" ao lado do texto.
|
|
24
29
|
default: false
|
|
25
30
|
type: Boolean
|
|
26
31
|
|
|
27
|
-
|
|
28
|
-
desc:
|
|
29
|
-
default:
|
|
32
|
+
typography:
|
|
33
|
+
desc: Controla qual a tipografia do texto.
|
|
34
|
+
default: h4
|
|
30
35
|
type: String
|
|
36
|
+
examples: [h4, h5]
|
|
31
37
|
|
|
32
38
|
slots:
|
|
33
39
|
default:
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div :id="fieldName" class="qas-nested-fields">
|
|
3
3
|
<div v-if="useSingleLabel" class="text-left">
|
|
4
|
-
<qas-label :label="fieldLabel"
|
|
4
|
+
<qas-label :label="fieldLabel" typography="h5" />
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
7
|
<div ref="inputContent">
|
|
8
8
|
<component :is="componentTag" v-bind="componentProps">
|
|
9
9
|
<template v-for="(row, index) in nested" :key="`row-${index}`">
|
|
10
|
-
<div v-if="!row[destroyKey]" :id="`row-${index}`" class="full-width
|
|
10
|
+
<div v-if="!row[destroyKey]" :id="`row-${index}`" class="full-width qas-nested-fields__field-item">
|
|
11
11
|
<header v-if="hasHeader" class="flex items-center q-pb-md" :class="headerClasses">
|
|
12
|
-
<qas-label v-if="!useSingleLabel" :label="getRowLabel(index)" margin="none" />
|
|
13
|
-
<qas-actions-menu v-if="hasBlockActions(row)" v-bind="
|
|
12
|
+
<qas-label v-if="!useSingleLabel" :label="getRowLabel(index)" margin="none" typography="h5" />
|
|
13
|
+
<qas-actions-menu v-if="hasBlockActions(row)" v-bind="getActionsMenuProps(index, row)" />
|
|
14
14
|
</header>
|
|
15
15
|
|
|
16
16
|
<div ref="formGenerator" class="col-12 justify-between q-col-gutter-x-md row">
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
</slot>
|
|
24
24
|
|
|
25
25
|
<div v-if="hasInlineActions(row)" class="flex items-center qas-nested-fields__actions">
|
|
26
|
-
<qas-actions-menu v-bind="
|
|
26
|
+
<qas-actions-menu v-bind="getActionsMenuProps(index, row)" />
|
|
27
27
|
</div>
|
|
28
28
|
</div>
|
|
29
29
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
</template>
|
|
35
35
|
</component>
|
|
36
36
|
|
|
37
|
-
<div v-if="useAdd"
|
|
37
|
+
<div v-if="useAdd">
|
|
38
38
|
<slot :add="add" name="add-input">
|
|
39
39
|
<div v-if="showAddFirstInputButton" class="text-left">
|
|
40
40
|
<qas-btn class="q-px-sm" color="primary" variant="tertiary" @click="add()">{{ addFirstInputLabel }}</qas-btn>
|
|
@@ -86,7 +86,7 @@ export default {
|
|
|
86
86
|
|
|
87
87
|
props: {
|
|
88
88
|
actionsMenuProps: {
|
|
89
|
-
type: Object,
|
|
89
|
+
type: [Object, Function],
|
|
90
90
|
default: () => ({})
|
|
91
91
|
},
|
|
92
92
|
|
|
@@ -130,7 +130,7 @@ export default {
|
|
|
130
130
|
},
|
|
131
131
|
|
|
132
132
|
disabledRows: {
|
|
133
|
-
type: [Array, Boolean],
|
|
133
|
+
type: [Array, Boolean, Function],
|
|
134
134
|
default: false
|
|
135
135
|
},
|
|
136
136
|
|
|
@@ -327,7 +327,22 @@ export default {
|
|
|
327
327
|
},
|
|
328
328
|
|
|
329
329
|
methods: {
|
|
330
|
-
|
|
330
|
+
getActionsMenuProps (index, row) {
|
|
331
|
+
if (typeof this.actionsMenuProps === 'function') {
|
|
332
|
+
return this.actionsMenuProps({
|
|
333
|
+
index,
|
|
334
|
+
row,
|
|
335
|
+
list: this.getDefaultActionsMenuList(index, row)
|
|
336
|
+
})
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
return {
|
|
340
|
+
...this.actionsMenuProps,
|
|
341
|
+
list: this.getActionsMenuList(index, row)
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
|
|
345
|
+
getDefaultActionsMenuList (index, row) {
|
|
331
346
|
const list = {}
|
|
332
347
|
|
|
333
348
|
if (this.useDuplicate) {
|
|
@@ -344,6 +359,12 @@ export default {
|
|
|
344
359
|
}
|
|
345
360
|
}
|
|
346
361
|
|
|
362
|
+
return list
|
|
363
|
+
},
|
|
364
|
+
|
|
365
|
+
getActionsMenuList (index, row) {
|
|
366
|
+
const list = this.getDefaultActionsMenuList(index, row)
|
|
367
|
+
|
|
347
368
|
for (const key in this.actionsMenuProps.list) {
|
|
348
369
|
const { handler, ...content } = this.actionsMenuProps.list[key] || {}
|
|
349
370
|
|
|
@@ -449,6 +470,8 @@ export default {
|
|
|
449
470
|
isDisabledRow (row) {
|
|
450
471
|
if (!this.disabledRows) return false
|
|
451
472
|
|
|
473
|
+
if (typeof this.disabledRows === 'function') return this.disabledRows(row)
|
|
474
|
+
|
|
452
475
|
if (typeof this.disabledRows === 'boolean') return true
|
|
453
476
|
|
|
454
477
|
return this.disabledRows.includes(row[this.identifierItemKey])
|
|
@@ -471,6 +494,10 @@ export default {
|
|
|
471
494
|
height: 56px;
|
|
472
495
|
}
|
|
473
496
|
|
|
497
|
+
&__field-item {
|
|
498
|
+
margin-bottom: var(--qas-spacing-md);
|
|
499
|
+
}
|
|
500
|
+
|
|
474
501
|
&__field-item + &__field-item {
|
|
475
502
|
margin-top: var(--qas-spacing-xl);
|
|
476
503
|
}
|
|
@@ -5,9 +5,9 @@ meta:
|
|
|
5
5
|
|
|
6
6
|
props:
|
|
7
7
|
actions-menu-props:
|
|
8
|
-
desc: Repassa as propriedades para o componente QasActionsMenu.
|
|
8
|
+
desc: Repassa as propriedades para o componente QasActionsMenu. É possível passar um objeto com as propriedades ou uma função que recebe o 'index', 'row' e 'list' como parâmetro e retorna um objeto com as propriedades.
|
|
9
9
|
default: {}
|
|
10
|
-
type: Object
|
|
10
|
+
type: [Object, Function]
|
|
11
11
|
|
|
12
12
|
add-first-input-label:
|
|
13
13
|
desc: Rótulo do input para adicionar o primeiro campo.
|
|
@@ -37,10 +37,10 @@ props:
|
|
|
37
37
|
type: String
|
|
38
38
|
|
|
39
39
|
disabled-rows:
|
|
40
|
-
desc: Com esta propriedade é possível desabilitar rows (linhas) especificas passando um array com chaves identificadoras,
|
|
40
|
+
desc: Com esta propriedade é possível desabilitar rows (linhas) especificas passando um array com chaves identificadoras, caso queira desativar todas passe um valor boolean "true", ou também é possível utilizar uma função de callback, que receberá a "row" como parâmetro. (Isto vai remover todos os botões da linha, como por exemplo, o duplicar e excluir).
|
|
41
41
|
default: "false"
|
|
42
|
-
type: [Array, Boolean]
|
|
43
|
-
examples: ["['my-uuid-from-row-1']", true]
|
|
42
|
+
type: [Array, Boolean, Function]
|
|
43
|
+
examples: ["['my-uuid-from-row-1']", true, "row => row.disable"]
|
|
44
44
|
|
|
45
45
|
errors:
|
|
46
46
|
desc: Propriedade de erros para mostrar nos campos gerados.
|
|
@@ -178,6 +178,12 @@ export default {
|
|
|
178
178
|
if (this.hasFuse) this.setFuse()
|
|
179
179
|
},
|
|
180
180
|
|
|
181
|
+
mx_isFetching (value) {
|
|
182
|
+
if (!this.isPopupContentOpen || !this.useLazyLoading) return
|
|
183
|
+
|
|
184
|
+
this.togglePopupContentClass(value)
|
|
185
|
+
},
|
|
186
|
+
|
|
181
187
|
options: {
|
|
182
188
|
handler () {
|
|
183
189
|
if (this.useLazyLoading && this.mx_hasFilteredOptions) return
|
|
@@ -193,7 +199,6 @@ export default {
|
|
|
193
199
|
|
|
194
200
|
created () {
|
|
195
201
|
this.setSearchMethod()
|
|
196
|
-
this.setIsFetchingWatcher()
|
|
197
202
|
},
|
|
198
203
|
|
|
199
204
|
methods: {
|
|
@@ -238,16 +243,6 @@ export default {
|
|
|
238
243
|
}
|
|
239
244
|
},
|
|
240
245
|
|
|
241
|
-
setIsFetchingWatcher () {
|
|
242
|
-
if (this.useLazyLoading) {
|
|
243
|
-
this.$watch('mx_isFetching', value => {
|
|
244
|
-
if (!this.isPopupContentOpen) return
|
|
245
|
-
|
|
246
|
-
this.togglePopupContentClass(value)
|
|
247
|
-
})
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
|
|
251
246
|
setLazyLoading () {
|
|
252
247
|
this.mx_setCachedOptions('options')
|
|
253
248
|
|