@redseed/redseed-ui-vue3 8.14.1 → 8.15.0

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": "@redseed/redseed-ui-vue3",
3
- "version": "8.14.1",
3
+ "version": "8.15.0",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -5,7 +5,7 @@ const props = defineProps({
5
5
  variant: {
6
6
  type: String,
7
7
  default: 'primary',
8
- validator: (value) => ['primary', 'secondary', 'brand', 'success', 'info', 'warning', 'error', 'ai'].includes(value)
8
+ validator: (value) => ['primary', 'secondary', 'brand', 'success', 'info', 'warning', 'error', 'ai', 'classic'].includes(value)
9
9
  },
10
10
  bordered: {
11
11
  type: Boolean,
@@ -59,6 +59,7 @@ const variantClass = computed(() => [
59
59
  'rsui-section--warning': props.variant === 'warning',
60
60
  'rsui-section--error': props.variant === 'error',
61
61
  'rsui-section--ai': props.variant === 'ai',
62
+ 'rsui-section--classic': props.variant === 'classic',
62
63
  },
63
64
  ])
64
65
 
@@ -202,6 +202,7 @@ onUnmounted(() => {
202
202
  v-show="isOpen"
203
203
  ref="contentRef"
204
204
  class="rsui-tooltip__content"
205
+ :data-position="position"
205
206
  :style="contentStyle"
206
207
  role="tooltip"
207
208
  >