@avakhula/ui 0.0.228 → 0.0.230
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
|
@@ -164,7 +164,7 @@ export default {
|
|
|
164
164
|
return this.linkMethod === "GET" ? "GET" : "POST";
|
|
165
165
|
},
|
|
166
166
|
token() {
|
|
167
|
-
return document.head.querySelector('meta[name="csrf-token"]')
|
|
167
|
+
return document.head.querySelector('meta[name="csrf-token"]')?.content;
|
|
168
168
|
},
|
|
169
169
|
},
|
|
170
170
|
inheritAttrs: false,
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
>
|
|
11
11
|
<div>
|
|
12
12
|
<button
|
|
13
|
-
v-tooltip:[tooltipPosition]="tooltipContent"
|
|
14
13
|
class="sorting-label"
|
|
14
|
+
v-tooltip:[tooltipPosition]="tooltipContent"
|
|
15
15
|
:class="{
|
|
16
16
|
'sorting-label-active': isOpenToggleTip,
|
|
17
|
-
'
|
|
17
|
+
'has-action': tooltipText?.length || hasToggleTip
|
|
18
18
|
}"
|
|
19
19
|
type="button"
|
|
20
20
|
@click="isOpenToggleTip = !isOpenToggleTip"
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
</ib-toggle-tip>
|
|
37
37
|
</div>
|
|
38
38
|
|
|
39
|
+
<!-- v-tooltip="tooltipIconText" -->
|
|
39
40
|
<ib-icon-button
|
|
40
41
|
v-if="!hideSortingButton"
|
|
41
|
-
v-tooltip="tooltipIconText"
|
|
42
42
|
kind="white"
|
|
43
43
|
size="s"
|
|
44
44
|
@click="clickHandler"
|