sprintify-ui 0.8.69 → 0.9.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.
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  ref="targetRef"
4
- :class="props.class"
4
+ :class="classInternal"
5
5
  >
6
6
  <slot />
7
7
  </div>
@@ -77,4 +77,10 @@ const tooltipRef = ref<HTMLElement | null>(null)
77
77
 
78
78
  const { floatingStyles, showTooltip } = useTooltip(targetInternal, tooltipRef, props.interactive, props.floatingOptions);
79
79
 
80
+ const classInternal = computed(() => {
81
+ return [
82
+ props.class,
83
+ ];
84
+ });
85
+
80
86
  </script>
@@ -46,6 +46,7 @@ import BaseFileUploader from './BaseFileUploader.vue';
46
46
  import BaseForm from './BaseForm.vue';
47
47
  import BaseGantt from './BaseGantt.vue';
48
48
  import BaseHasMany from './BaseHasMany.vue';
49
+ import BaseHasManyFetch from './BaseHasManyFetch.vue';
49
50
  import BaseHeader from './BaseHeader.vue';
50
51
  import { Icon as BaseIcon } from '@iconify/vue';
51
52
  import BaseIconPicker from './BaseIconPicker.vue';
@@ -154,6 +155,7 @@ export {
154
155
  BaseForm,
155
156
  BaseGantt,
156
157
  BaseHasMany,
158
+ BaseHasManyFetch,
157
159
  BaseHeader,
158
160
  BaseIcon,
159
161
  BaseIconPicker,