@nixweb/nixloc-ui 0.0.296 → 0.0.298
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/IncrementDecrement.vue +8 -1
- package/src/component/forms/InputPassword.vue +6 -13
- package/src/component/layout/NewMenu.vue +2 -1
- package/src/component/shared/TableImport.vue +3 -8
- package/src/component/shared/file-manager/FileManager.vue +3 -0
- package/src/store/modules/generic.js +5 -0
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<div class="wrapper">
|
|
7
7
|
<span :class="{ disabled: disabled }" class="minus" @click="decrement">-</span>
|
|
8
8
|
<span :class="{ disabled: disabled }" class="num" @click="showEdit = true" v-if="!showEdit">{{ number }}</span>
|
|
9
|
-
<input v-if="showEdit" class="input" type="number" @keyup.enter.prevent="
|
|
9
|
+
<input v-if="showEdit" class="input" type="number" @keyup.enter.prevent="enter" :disabled="disabled"
|
|
10
10
|
v-model="number" />
|
|
11
11
|
<span v-if="showEdit" :class="{ disabled: disabled }" @click="showEdit = false">
|
|
12
12
|
<i class="fa-solid fa-check"></i>
|
|
@@ -31,6 +31,7 @@ export default {
|
|
|
31
31
|
"triggerEvent",
|
|
32
32
|
"min",
|
|
33
33
|
"max",
|
|
34
|
+
"changed"
|
|
34
35
|
],
|
|
35
36
|
data() {
|
|
36
37
|
return {
|
|
@@ -56,11 +57,17 @@ export default {
|
|
|
56
57
|
this.executeFilter();
|
|
57
58
|
}
|
|
58
59
|
},
|
|
60
|
+
enter(){
|
|
61
|
+
this.showEdit = false;
|
|
62
|
+
if (this.changed) this.changed();
|
|
63
|
+
},
|
|
59
64
|
executeFilter() {
|
|
60
65
|
if (this.fieldTarget) {
|
|
61
66
|
let obj = { fieldTarget: this.fieldTarget, value: this.number };
|
|
62
67
|
this.addFilter(obj);
|
|
63
68
|
}
|
|
69
|
+
|
|
70
|
+
if (this.changed) this.changed();
|
|
64
71
|
},
|
|
65
72
|
},
|
|
66
73
|
watch: {
|
|
@@ -6,20 +6,11 @@
|
|
|
6
6
|
<Tip :field="field" :formName="formName" />
|
|
7
7
|
</label>
|
|
8
8
|
<div class="inner-addon right-addon">
|
|
9
|
-
<i
|
|
10
|
-
v-if="notifications.length > 0 && formDirty"
|
|
11
|
-
class="required glyphicon fas fa-exclamation-triangle"
|
|
12
|
-
></i>
|
|
9
|
+
<i v-if="notifications.length > 0 && formDirty" class="required glyphicon fas fa-exclamation-triangle"></i>
|
|
13
10
|
<slot v-else></slot>
|
|
14
|
-
<input
|
|
15
|
-
|
|
16
|
-
:
|
|
17
|
-
v-mask="mask || withoutMask"
|
|
18
|
-
v-bind:value="value"
|
|
19
|
-
v-on:input="$emit('input', $event.target.value)"
|
|
20
|
-
class="form-control"
|
|
21
|
-
:class="{ required: notifications.length > 0 && formDirty }"
|
|
22
|
-
/>
|
|
11
|
+
<input type="password" :disabled="disabled" :placeholder="titlePlaceholder" v-mask="mask || withoutMask"
|
|
12
|
+
v-bind:value="value" v-on:input="$emit('input', $event.target.value)" class="form-control"
|
|
13
|
+
:class="{ required: notifications.length > 0 && formDirty }" />
|
|
23
14
|
</div>
|
|
24
15
|
<div v-if="formDirty">
|
|
25
16
|
<div v-for="message in notifications" :key="message">
|
|
@@ -42,6 +33,7 @@ export default {
|
|
|
42
33
|
"field",
|
|
43
34
|
"titleColor",
|
|
44
35
|
"placeholder",
|
|
36
|
+
"disabled",
|
|
45
37
|
"mask",
|
|
46
38
|
"formName",
|
|
47
39
|
"required",
|
|
@@ -144,6 +136,7 @@ input::placeholder {
|
|
|
144
136
|
color: #94aa2a;
|
|
145
137
|
font-size: 14px;
|
|
146
138
|
}
|
|
139
|
+
|
|
147
140
|
.invalid {
|
|
148
141
|
color: #f0134d;
|
|
149
142
|
font-size: 14px;
|
|
@@ -6,14 +6,9 @@
|
|
|
6
6
|
<thead>
|
|
7
7
|
<tr>
|
|
8
8
|
<th v-for="(obj, ind) in headerTableMap" :key="ind" class="title-header">
|
|
9
|
-
<div class="div-select">
|
|
10
|
-
<SelectStatic
|
|
11
|
-
|
|
12
|
-
:data="select"
|
|
13
|
-
:markFormDirty="false"
|
|
14
|
-
:initialValue="obj.target"
|
|
15
|
-
v-model="obj.target"
|
|
16
|
-
/>
|
|
9
|
+
<div class="div-select">
|
|
10
|
+
<SelectStatic :title="obj.title" :data="select" :markFormDirty="false" :initialValue="obj.target"
|
|
11
|
+
v-model="obj.target" />
|
|
17
12
|
</div>
|
|
18
13
|
</th>
|
|
19
14
|
</tr>
|
|
@@ -148,6 +148,7 @@ export default {
|
|
|
148
148
|
let isOrderService = th.innerText.includes("t.produtoOs");
|
|
149
149
|
let isPaymentOsCustomer = th.innerText.includes("t.pagamentoCliente");
|
|
150
150
|
let isPaymentOsSupplier = th.innerText.includes("t.pagamentoFornecedor");
|
|
151
|
+
let isAttachment = th.innerText.includes("t.anexo");
|
|
151
152
|
|
|
152
153
|
if (isProduct) {
|
|
153
154
|
obj.vForSimple = "v-for='produto in d.itensLocacao'";
|
|
@@ -202,6 +203,9 @@ export default {
|
|
|
202
203
|
} else if (isAddressRent) {
|
|
203
204
|
obj.vForSimple = "v-for='endereco in d.saidaRetorno'";
|
|
204
205
|
config.push(obj);
|
|
206
|
+
} else if (isAttachment) {
|
|
207
|
+
obj.vForSimple = "v-for='anexo in d.anexo'";
|
|
208
|
+
config.push(obj);
|
|
205
209
|
} else {
|
|
206
210
|
config.push(obj);
|
|
207
211
|
}
|
|
@@ -232,6 +236,7 @@ export default {
|
|
|
232
236
|
.replaceAll("t.produtoOs", "")
|
|
233
237
|
.replaceAll("t.pagamentoCliente", "")
|
|
234
238
|
.replaceAll("t.pagamentoFornecedor", "")
|
|
239
|
+
.replaceAll("t.anexo", "")
|
|
235
240
|
.replaceAll("<p> !important;</p>", "<p> </p>");
|
|
236
241
|
}
|
|
237
242
|
|