@nixweb/nixloc-ui 0.0.69 → 0.0.70
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/component/forms/DateTime.vue +3 -0
- package/src/component/forms/Escolher.vue +4 -1
- package/src/component/forms/EscolherEstatico.vue +4 -1
- package/src/component/forms/Modal.vue +1 -1
- package/src/component/forms/Numero.vue +3 -0
- package/src/component/forms/Opcoes.vue +4 -2
- package/src/component/forms/Texto.vue +3 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
3
|
<label>
|
|
4
|
-
<span>{{ titulo }}</span>
|
|
4
|
+
<span class="titulo">{{ titulo }}</span>
|
|
5
5
|
<span class="requerido" v-if="requerido">*</span>
|
|
6
6
|
<Dica :campo="campo" :formNome="formNome" />
|
|
7
7
|
</label>
|
|
@@ -282,6 +282,9 @@ export default {
|
|
|
282
282
|
</script>
|
|
283
283
|
|
|
284
284
|
<style scoped>
|
|
285
|
+
.titulo {
|
|
286
|
+
color: #5f7587;
|
|
287
|
+
}
|
|
285
288
|
div.antes-lista {
|
|
286
289
|
padding: 8px;
|
|
287
290
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
3
|
<label>
|
|
4
|
-
<span>{{ titulo }}</span>
|
|
4
|
+
<span class="titulo">{{ titulo }}</span>
|
|
5
5
|
</label>
|
|
6
6
|
<div class="selecione">
|
|
7
7
|
<multiselect
|
|
@@ -119,6 +119,9 @@ export default {
|
|
|
119
119
|
</script>
|
|
120
120
|
|
|
121
121
|
<style scoped>
|
|
122
|
+
.titulo {
|
|
123
|
+
color: #5f7587;
|
|
124
|
+
}
|
|
122
125
|
div.antes-lista {
|
|
123
126
|
padding: 8px;
|
|
124
127
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<span>{{ titulo }}</span>
|
|
3
|
+
<span class="titulo">{{ titulo }}</span>
|
|
4
4
|
<Dica :campo="campo" :formNome="formNome" />
|
|
5
5
|
<div class="opcoes">
|
|
6
6
|
<b-form-group>
|
|
@@ -47,5 +47,7 @@ export default {
|
|
|
47
47
|
.opcoes {
|
|
48
48
|
margin-top: 5px;
|
|
49
49
|
}
|
|
50
|
+
.titulo {
|
|
51
|
+
color: #5f7587;
|
|
52
|
+
}
|
|
50
53
|
</style>
|
|
51
|
-
|