innoboxrr-vue-datatable 1.2.3 → 1.2.5
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/DataTableComponent.vue +1 -1
- package/src/components/DisabledLinkComponent.vue +6 -3
- package/src/components/IconLinkComponent.vue +2 -2
- package/src/components/IconRouteComponent.vue +2 -2
- package/src/components/NavDropdownComponent.vue +1 -1
- package/src/components/SelectPaginationComponent.vue +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
|
|
3
|
-
<a
|
|
3
|
+
<a
|
|
4
|
+
href="#"
|
|
5
|
+
class="disabled-link dark:text-white"
|
|
6
|
+
:uk-tooltip="`title: ${ 'This action is not authorized' }; pos:right`">
|
|
4
7
|
|
|
5
8
|
<span
|
|
6
9
|
v-if="showIcon"
|
|
7
|
-
class="uk-margin-small-right uk-icon"
|
|
10
|
+
class="uk-margin-small-right uk-icon dark:text-white"
|
|
8
11
|
:uk-icon="icon"></span>
|
|
9
12
|
|
|
10
|
-
<span>{{ text }}</span>
|
|
13
|
+
<span class="dark:text-white">{{ text }}</span>
|
|
11
14
|
|
|
12
15
|
</a>
|
|
13
16
|
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
<a :href="link" :target="target">
|
|
4
4
|
|
|
5
5
|
<span
|
|
6
|
-
class="uk-margin-small-right uk-icon"
|
|
6
|
+
class="uk-margin-small-right uk-icon dark:text-white"
|
|
7
7
|
:uk-icon="iconAttr"
|
|
8
8
|
:style="iconStyle"></span>
|
|
9
9
|
|
|
10
|
-
<span :class="textClass">{{ text }}</span>
|
|
10
|
+
<span :class="textClass" class="dark:text-white">{{ text }}</span>
|
|
11
11
|
|
|
12
12
|
</a>
|
|
13
13
|
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
<router-link :to="pathObject">
|
|
4
4
|
|
|
5
5
|
<span
|
|
6
|
-
class="uk-margin-small-right uk-icon"
|
|
6
|
+
class="uk-margin-small-right uk-icon dark:text-white"
|
|
7
7
|
:uk-icon="iconAttr"
|
|
8
8
|
:style="iconStyle"></span>
|
|
9
9
|
|
|
10
|
-
<span :class="textClass">{{ text }}</span>
|
|
10
|
+
<span :class="textClass" class="dark:text-white">{{ text }}</span>
|
|
11
11
|
|
|
12
12
|
</router-link>
|
|
13
13
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div
|
|
4
4
|
:uk-dropdown="options"
|
|
5
|
-
class="uk-padding-remove z-10 hidden text-base list-none bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-slate-800">
|
|
5
|
+
class="uk-padding-remove z-10 hidden text-base list-none bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-slate-800 p-2">
|
|
6
6
|
|
|
7
7
|
<ul class="uk-nav uk-dropdown-nav">
|
|
8
8
|
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
|
|
40
40
|
<li>
|
|
41
41
|
<select
|
|
42
|
-
class="
|
|
42
|
+
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
|
43
43
|
v-model="current_page">
|
|
44
44
|
|
|
45
45
|
<option
|