quasar-ui-sellmate-ui-kit 3.14.37 → 3.14.38
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/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +11 -5
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STooltip.vue +7 -1
package/package.json
CHANGED
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
:self="$props.boxSelf"
|
|
51
51
|
:offset="$props.boxOffset"
|
|
52
52
|
class="s-tooltip"
|
|
53
|
-
:class="`bg-${COLOR_OF_TYPE[type].background} text-${COLOR_OF_TYPE[type].text}`"
|
|
53
|
+
:class="`bg-${COLOR_OF_TYPE[type].background} text-${COLOR_OF_TYPE[type].text} `"
|
|
54
|
+
:style="`z-index: ${$props.zIndex};`"
|
|
54
55
|
:modelValue="modelValue"
|
|
55
56
|
@hide="$emit('update:modelValue', false)"
|
|
56
57
|
@show="$emit('update:modelValue', true)"
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
:offset="$props.arrowOffset"
|
|
64
65
|
:class="`${$props.arrowStyle} tooltip-triangle--${type}`"
|
|
65
66
|
class="tooltip-triangle"
|
|
67
|
+
:style="`z-index: ${$props.zIndex};`"
|
|
66
68
|
:modelValue="modelValue"
|
|
67
69
|
></q-tooltip>
|
|
68
70
|
</template>
|
|
@@ -148,6 +150,10 @@
|
|
|
148
150
|
type: String,
|
|
149
151
|
default: '',
|
|
150
152
|
},
|
|
153
|
+
zIndex: {
|
|
154
|
+
type: Number,
|
|
155
|
+
default: 9000,
|
|
156
|
+
},
|
|
151
157
|
},
|
|
152
158
|
setup(props) {
|
|
153
159
|
const isToggled = ref(props.toggle);
|