innoboxrr-vue-datatable 2.1.0 → 2.2.0
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "innoboxrr-vue-datatable",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Datatable para vue3",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"*.vue"
|
|
41
41
|
],
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"innoboxrr-form-core": "^2.
|
|
43
|
+
"innoboxrr-form-core": "^2.2.0",
|
|
44
44
|
"vue": "^3.5.0",
|
|
45
45
|
"vue-router": "^4.5.0"
|
|
46
46
|
},
|
package/src/DataTable.vue
CHANGED
|
@@ -44,24 +44,28 @@
|
|
|
44
44
|
<div v-if="hasFilter" class="fe-w-auto">
|
|
45
45
|
<div class="fe-grid-divider fe-children-expand fe-text-center" fe-grid>
|
|
46
46
|
<div>
|
|
47
|
-
<
|
|
47
|
+
<button
|
|
48
|
+
type="button"
|
|
48
49
|
class="fe-text-right pointer"
|
|
49
|
-
|
|
50
|
+
data-tooltip="Update results"
|
|
51
|
+
aria-label="Update results"
|
|
50
52
|
@click="updateFilters">
|
|
51
53
|
<svg class="w-6 h-6 text-slate-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 20">
|
|
52
54
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 1v5h-5M2 19v-5h5m10-4a8 8 0 0 1-14.947 3.97M1 10a8 8 0 0 1 14.947-3.97"/>
|
|
53
55
|
</svg>
|
|
54
|
-
</
|
|
56
|
+
</button>
|
|
55
57
|
</div>
|
|
56
58
|
<div>
|
|
57
|
-
<
|
|
59
|
+
<button
|
|
60
|
+
type="button"
|
|
58
61
|
class="fe-text-right pointer"
|
|
59
62
|
uk-toggle="target: .filter-form; animation: uk-animation-scale-up;"
|
|
60
|
-
|
|
63
|
+
data-tooltip="Buscar"
|
|
64
|
+
aria-label="Buscar">
|
|
61
65
|
<svg class="w-6 h-6 text-slate-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 18">
|
|
62
66
|
<path d="M18.85 1.1A1.99 1.99 0 0 0 17.063 0H2.937a2 2 0 0 0-1.566 3.242L6.99 9.868 7 14a1 1 0 0 0 .4.8l4 3A1 1 0 0 0 13 17l.01-7.134 5.66-6.676a1.99 1.99 0 0 0 .18-2.09Z"/>
|
|
63
67
|
</svg>
|
|
64
|
-
</
|
|
68
|
+
</button>
|
|
65
69
|
</div>
|
|
66
70
|
</div>
|
|
67
71
|
</div>
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
<a
|
|
4
4
|
href="#"
|
|
5
5
|
class="disabled-link block px-4 py-2 dark:hover:text-white dark:text-slate-400"
|
|
6
|
-
|
|
6
|
+
data-tooltip="This action is not authorized"
|
|
7
|
+
data-tooltip-pos="right">
|
|
7
8
|
|
|
8
9
|
<Icon
|
|
9
10
|
v-if="showIcon"
|