@nixweb/nixloc-ui 0.0.191 → 0.0.192
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
|
@@ -3,47 +3,17 @@
|
|
|
3
3
|
<div @click="execute()">
|
|
4
4
|
<slot></slot>
|
|
5
5
|
</div>
|
|
6
|
-
<Modal
|
|
7
|
-
v-if="isModal"
|
|
8
|
-
:title="title"
|
|
9
|
-
:width="450"
|
|
10
|
-
:height="250"
|
|
11
|
-
v-show="showModal(`confirmation${data.id}`)"
|
|
12
|
-
>
|
|
6
|
+
<Modal v-if="isModal" :title="title" :width="450" :height="250" v-show="showModal(`confirmation${data.id}`)">
|
|
13
7
|
<b-col sm="12">
|
|
14
8
|
<div class="div-button text-center">
|
|
15
|
-
<Button
|
|
16
|
-
|
|
17
|
-
type="edit"
|
|
18
|
-
title="cancel"
|
|
19
|
-
size="small"
|
|
20
|
-
:clicked="cancel"
|
|
21
|
-
/>
|
|
22
|
-
<Button
|
|
23
|
-
key="confirm"
|
|
24
|
-
:type="type"
|
|
25
|
-
title="Sim, confirmar"
|
|
26
|
-
size="medium"
|
|
27
|
-
:clicked="confirm"
|
|
28
|
-
/>
|
|
9
|
+
<Button key="notConfirm" type="edit" title="cancel" size="small" :clicked="cancel" />
|
|
10
|
+
<Button key="confirm" :type="type" title="Sim, confirmar" size="medium" :clicked="confirm" />
|
|
29
11
|
</div>
|
|
30
12
|
</b-col>
|
|
31
13
|
</Modal>
|
|
32
14
|
<div v-else class="div-button text-center">
|
|
33
|
-
<Button
|
|
34
|
-
|
|
35
|
-
type="edit"
|
|
36
|
-
title="cancel"
|
|
37
|
-
size="small"
|
|
38
|
-
:clicked="cancel"
|
|
39
|
-
/>
|
|
40
|
-
<Button
|
|
41
|
-
_key="confirm"
|
|
42
|
-
:type="type"
|
|
43
|
-
title="Sim, confirmar"
|
|
44
|
-
size="medium"
|
|
45
|
-
:clicked="confirm"
|
|
46
|
-
/>
|
|
15
|
+
<Button _key="notConfirm" type="edit" title="cancel" size="small" :clicked="cancel" />
|
|
16
|
+
<Button _key="confirm" :type="type" title="Sim, confirmar" size="medium" :clicked="confirm" />
|
|
47
17
|
</div>
|
|
48
18
|
</div>
|
|
49
19
|
</template>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<div slot="content-main">
|
|
6
6
|
<br />
|
|
7
7
|
<Loading type="line" :center="false" v-show="loadingSearch" />
|
|
8
|
-
<div v-show="!showFilter">
|
|
8
|
+
<div v-show="!showFilter">
|
|
9
9
|
<div class="div-progress" v-if="liveTotalRecords != baseParams.totalRecords && !loadingSearch && !cancel">
|
|
10
10
|
<ProgressBar :text="`Carregando ${liveTotalRecords} registros de ${baseParams.totalRecords}`"
|
|
11
11
|
:value="liveTotalRecords" :max="baseParams.totalRecords" size="medium" />
|