@omniaz/vue-component-library 0.6.18 → 0.6.19
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/UI/OmzTable.vue +6 -3
package/package.json
CHANGED
package/src/UI/OmzTable.vue
CHANGED
|
@@ -742,7 +742,10 @@ defineExpose({
|
|
|
742
742
|
:column="column"
|
|
743
743
|
>
|
|
744
744
|
<span
|
|
745
|
-
:class="{
|
|
745
|
+
:class="{
|
|
746
|
+
'cursor-pointer': column?.ordering || column?.orderingCallBack,
|
|
747
|
+
'underline': column?.ordering || column?.orderingCallBack,
|
|
748
|
+
}"
|
|
746
749
|
@click="orderData(column)"
|
|
747
750
|
>
|
|
748
751
|
{{ column.header }}
|
|
@@ -854,7 +857,7 @@ defineExpose({
|
|
|
854
857
|
v-if="column.linkTarget"
|
|
855
858
|
:href="column.link(row) ?? ''"
|
|
856
859
|
:target="column.linkTarget"
|
|
857
|
-
class="
|
|
860
|
+
class="underline text-blue-600 hover:text-blue-800 dark:hover:text-blue-400 truncate-200"
|
|
858
861
|
@click.stop
|
|
859
862
|
>
|
|
860
863
|
{{ column.format(row) }}
|
|
@@ -863,7 +866,7 @@ defineExpose({
|
|
|
863
866
|
<inertiaLink
|
|
864
867
|
v-else
|
|
865
868
|
:href="column.link(row) ?? ''"
|
|
866
|
-
class="
|
|
869
|
+
class="underline text-blue-600 hover:text-blue-800 dark:hover:text-blue-400 truncate-200"
|
|
867
870
|
@click.stop
|
|
868
871
|
>
|
|
869
872
|
{{ column.format(row) }}
|