quasar-ui-sellmate-ui-kit 3.14.36 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-sellmate-ui-kit",
3
- "version": "3.14.36",
3
+ "version": "3.14.38",
4
4
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
5
5
  "description": "Sellmate UI Kit",
6
6
  "license": "MIT",
@@ -4,7 +4,7 @@
4
4
  rounded
5
5
  unelevated
6
6
  :ripple="false"
7
- :color="color ? color : 'info'"
7
+ :color="color ? color : 'green_70'"
8
8
  :icon="helpOutlineIcon"
9
9
  :label="label"
10
10
  no-wrap
@@ -23,7 +23,7 @@
23
23
  size="20px"
24
24
  />
25
25
  <div class="flex items-center s-mb-sm">
26
- <q-icon :name="helpOutlineIcon" size="24px" color="info" class="q-mr-sm" />
26
+ <q-icon :name="helpOutlineIcon" size="24px" color="green_70" class="q-mr-sm" />
27
27
  <span class="font-16-700">{{ title }}</span>
28
28
  </div>
29
29
  <slot name="s-help-message">
@@ -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);