@vifui/core 0.6.0-alpha.11 → 0.6.0-alpha.13
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/components/index.d.ts +1 -0
- package/dist/components/popover/index.d.ts +19 -0
- package/dist/components/popover/index.js +10 -0
- package/dist/components/popover/popover-anchor.vue.d.ts +22 -0
- package/dist/components/popover/popover-anchor.vue.js +32 -0
- package/dist/components/popover/popover-anchor.vue2.js +5 -0
- package/dist/components/popover/popover-arrow.vue.d.ts +24 -0
- package/dist/components/popover/popover-arrow.vue.js +34 -0
- package/dist/components/popover/popover-arrow.vue2.js +5 -0
- package/dist/components/popover/popover-close.vue.d.ts +22 -0
- package/dist/components/popover/popover-close.vue.js +37 -0
- package/dist/components/popover/popover-close.vue2.js +5 -0
- package/dist/components/popover/popover-content.vue.d.ts +39 -0
- package/dist/components/popover/popover-content.vue.js +56 -0
- package/dist/components/popover/popover-content.vue2.js +5 -0
- package/dist/components/popover/popover-description.vue.d.ts +22 -0
- package/dist/components/popover/popover-description.vue.js +33 -0
- package/dist/components/popover/popover-description.vue2.js +5 -0
- package/dist/components/popover/popover-portal.vue.d.ts +17 -0
- package/dist/components/popover/popover-portal.vue.js +33 -0
- package/dist/components/popover/popover-portal.vue2.js +5 -0
- package/dist/components/popover/popover-root.vue.d.ts +32 -0
- package/dist/components/popover/popover-root.vue.js +37 -0
- package/dist/components/popover/popover-root.vue2.js +5 -0
- package/dist/components/popover/popover-title.vue.d.ts +22 -0
- package/dist/components/popover/popover-title.vue.js +31 -0
- package/dist/components/popover/popover-title.vue2.js +5 -0
- package/dist/components/popover/popover-trigger.vue.d.ts +22 -0
- package/dist/components/popover/popover-trigger.vue.js +31 -0
- package/dist/components/popover/popover-trigger.vue2.js +5 -0
- package/dist/components/popover/popover.styles.d.ts +74 -0
- package/dist/components/popover/popover.styles.js +16 -0
- package/dist/components/tooltip/tooltip.styles.d.ts +3 -3
- package/dist/index.js +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export { default as PopoverRoot } from "./popover-root.vue";
|
|
2
|
+
export { default as PopoverAnchor } from "./popover-anchor.vue";
|
|
3
|
+
export { default as PopoverTrigger } from "./popover-trigger.vue";
|
|
4
|
+
export { default as PopoverPortal } from "./popover-portal.vue";
|
|
5
|
+
export { default as PopoverContent } from "./popover-content.vue";
|
|
6
|
+
export { default as PopoverArrow } from "./popover-arrow.vue";
|
|
7
|
+
export { default as PopoverClose } from "./popover-close.vue";
|
|
8
|
+
export { default as PopoverTitle } from "./popover-title.vue";
|
|
9
|
+
export { default as PopoverDescription } from "./popover-description.vue";
|
|
10
|
+
export { popoverVariants, type PopoverVariantProps } from "./popover.styles";
|
|
11
|
+
export type { PopoverRootProps, PopoverRootEmits, PopoverRootSlots, } from "./popover-root.vue";
|
|
12
|
+
export type { PopoverAnchorProps, PopoverAnchorSlots, } from "./popover-anchor.vue";
|
|
13
|
+
export type { PopoverTriggerProps, PopoverTriggerSlots, } from "./popover-trigger.vue";
|
|
14
|
+
export type { PopoverPortalProps, PopoverPortalSlots, } from "./popover-portal.vue";
|
|
15
|
+
export type { PopoverContentProps, PopoverContentSlots, PopoverContentEmits, } from "./popover-content.vue";
|
|
16
|
+
export type { PopoverArrowProps, PopoverArrowSlots } from "./popover-arrow.vue";
|
|
17
|
+
export type { PopoverCloseProps, PopoverCloseSlots } from "./popover-close.vue";
|
|
18
|
+
export type { PopoverTitleProps, PopoverTitleSlots } from "./popover-title.vue";
|
|
19
|
+
export type { PopoverDescriptionProps, PopoverDescriptionSlots } from "./popover-description.vue";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { default as PopoverRoot } from './popover-root.vue.js';
|
|
2
|
+
export { default as PopoverAnchor } from './popover-anchor.vue.js';
|
|
3
|
+
export { default as PopoverTrigger } from './popover-trigger.vue.js';
|
|
4
|
+
export { default as PopoverPortal } from './popover-portal.vue.js';
|
|
5
|
+
export { default as PopoverContent } from './popover-content.vue.js';
|
|
6
|
+
export { default as PopoverArrow } from './popover-arrow.vue.js';
|
|
7
|
+
export { default as PopoverClose } from './popover-close.vue.js';
|
|
8
|
+
export { default as PopoverTitle } from './popover-title.vue.js';
|
|
9
|
+
export { default as PopoverDescription } from './popover-description.vue.js';
|
|
10
|
+
export { popoverVariants } from './popover.styles.js';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PopoverAnchorProps as RekaPopoverAnchorProps } from "reka-ui";
|
|
2
|
+
import { type HTMLAttributes } from "vue";
|
|
3
|
+
/** props for the VifUI PopoverAnchor component */
|
|
4
|
+
export interface PopoverAnchorProps extends RekaPopoverAnchorProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverAnchor component */
|
|
9
|
+
export interface PopoverAnchorSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverAnchorSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardProps, PopoverAnchor } from 'reka-ui';
|
|
3
|
+
import { popoverVariants } from './popover.styles.js';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-anchor",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
reference: { type: null, required: false },
|
|
10
|
+
asChild: { type: Boolean, required: false },
|
|
11
|
+
as: { type: null, required: false, default: "div" }
|
|
12
|
+
},
|
|
13
|
+
setup(__props) {
|
|
14
|
+
const props = __props;
|
|
15
|
+
const anchorProps = useForwardProps(() => {
|
|
16
|
+
const { class: _, ...rest } = props;
|
|
17
|
+
return rest;
|
|
18
|
+
});
|
|
19
|
+
const theme = computed(() => popoverVariants().anchor({ class: props.class }));
|
|
20
|
+
return (_ctx, _cache) => {
|
|
21
|
+
return openBlock(), createBlock(unref(PopoverAnchor), mergeProps(unref(anchorProps), { class: theme.value }), {
|
|
22
|
+
default: withCtx(() => [
|
|
23
|
+
renderSlot(_ctx.$slots, "default")
|
|
24
|
+
]),
|
|
25
|
+
_: 3
|
|
26
|
+
/* FORWARDED */
|
|
27
|
+
}, 16, ["class"]);
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type PopoverArrowProps as RekaPopoverArrowProps } from "reka-ui";
|
|
2
|
+
import { type HTMLAttributes } from "vue";
|
|
3
|
+
/** props for the VifUI PopoverArrow component */
|
|
4
|
+
export interface PopoverArrowProps extends RekaPopoverArrowProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverArrow component */
|
|
9
|
+
export interface PopoverArrowSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverArrowSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverArrowProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverArrowProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
width: number;
|
|
16
|
+
height: number;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardProps, PopoverArrow } from 'reka-ui';
|
|
3
|
+
import { popoverVariants } from './popover.styles.js';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-arrow",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
width: { type: Number, required: false, default: 10 },
|
|
10
|
+
height: { type: Number, required: false, default: 5 },
|
|
11
|
+
rounded: { type: Boolean, required: false },
|
|
12
|
+
asChild: { type: Boolean, required: false },
|
|
13
|
+
as: { type: null, required: false, default: "svg" }
|
|
14
|
+
},
|
|
15
|
+
setup(__props) {
|
|
16
|
+
const props = __props;
|
|
17
|
+
const triggerProps = useForwardProps(() => {
|
|
18
|
+
const { class: _, ...rest } = props;
|
|
19
|
+
return rest;
|
|
20
|
+
});
|
|
21
|
+
const theme = computed(() => popoverVariants().arrow({ class: props.class }));
|
|
22
|
+
return (_ctx, _cache) => {
|
|
23
|
+
return openBlock(), createBlock(unref(PopoverArrow), mergeProps(unref(triggerProps), { class: theme.value }), {
|
|
24
|
+
default: withCtx(() => [
|
|
25
|
+
renderSlot(_ctx.$slots, "default")
|
|
26
|
+
]),
|
|
27
|
+
_: 3
|
|
28
|
+
/* FORWARDED */
|
|
29
|
+
}, 16, ["class"]);
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PopoverCloseProps as RekaPopoverCloseProps } from "reka-ui";
|
|
2
|
+
import { type HTMLAttributes } from "vue";
|
|
3
|
+
/** props for the VifUI PopoverClose component */
|
|
4
|
+
export interface PopoverCloseProps extends RekaPopoverCloseProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverClose component */
|
|
9
|
+
export interface PopoverCloseSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverCloseSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverCloseProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot, createVNode } from 'vue';
|
|
2
|
+
import { useForwardProps, PopoverClose } from 'reka-ui';
|
|
3
|
+
import { popoverVariants } from './popover.styles.js';
|
|
4
|
+
import { Icon } from '@iconify/vue';
|
|
5
|
+
|
|
6
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
|
+
__name: "popover-close",
|
|
8
|
+
props: {
|
|
9
|
+
class: { type: null, required: false },
|
|
10
|
+
asChild: { type: Boolean, required: false },
|
|
11
|
+
as: { type: null, required: false, default: "button" }
|
|
12
|
+
},
|
|
13
|
+
setup(__props) {
|
|
14
|
+
const props = __props;
|
|
15
|
+
const triggerProps = useForwardProps(() => {
|
|
16
|
+
const { class: _, ...rest } = props;
|
|
17
|
+
return rest;
|
|
18
|
+
});
|
|
19
|
+
const theme = computed(() => popoverVariants().close({ class: props.class }));
|
|
20
|
+
return (_ctx, _cache) => {
|
|
21
|
+
return openBlock(), createBlock(unref(PopoverClose), mergeProps(unref(triggerProps), {
|
|
22
|
+
class: theme.value,
|
|
23
|
+
"aria-label": "Close popover"
|
|
24
|
+
}), {
|
|
25
|
+
default: withCtx(() => [
|
|
26
|
+
renderSlot(_ctx.$slots, "default", {}, () => [
|
|
27
|
+
createVNode(unref(Icon), { icon: "radix-icons:cross-2" })
|
|
28
|
+
])
|
|
29
|
+
]),
|
|
30
|
+
_: 3
|
|
31
|
+
/* FORWARDED */
|
|
32
|
+
}, 16, ["class"]);
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { type PopoverContentProps as RekaPopoverContentProps, type PopoverContentEmits as RekaPopoverContentEmits } from "reka-ui";
|
|
2
|
+
import { type HTMLAttributes } from "vue";
|
|
3
|
+
/** props for the VifUI PopoverContent component */
|
|
4
|
+
export interface PopoverContentProps extends RekaPopoverContentProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Emits for the VifUI PopoverContent component */
|
|
9
|
+
export interface PopoverContentEmits extends RekaPopoverContentEmits {
|
|
10
|
+
}
|
|
11
|
+
/** Slots for the VifUI PopoverContent component */
|
|
12
|
+
export interface PopoverContentSlots {
|
|
13
|
+
default: () => void;
|
|
14
|
+
}
|
|
15
|
+
type __VLS_Slots = PopoverContentSlots;
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
19
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
20
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
21
|
+
openAutoFocus: (event: Event) => any;
|
|
22
|
+
closeAutoFocus: (event: Event) => any;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<PopoverContentProps> & Readonly<{
|
|
24
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
25
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
26
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
27
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
28
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
29
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardPropsEmits, PopoverContent } from 'reka-ui';
|
|
3
|
+
import { popoverVariants } from './popover.styles.js';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-content",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
forceMount: { type: Boolean, required: false },
|
|
10
|
+
side: { type: null, required: false },
|
|
11
|
+
sideOffset: { type: Number, required: false },
|
|
12
|
+
sideFlip: { type: Boolean, required: false },
|
|
13
|
+
align: { type: null, required: false },
|
|
14
|
+
alignOffset: { type: Number, required: false },
|
|
15
|
+
alignFlip: { type: Boolean, required: false },
|
|
16
|
+
avoidCollisions: { type: Boolean, required: false },
|
|
17
|
+
collisionBoundary: { type: null, required: false },
|
|
18
|
+
collisionPadding: { type: [Number, Object], required: false },
|
|
19
|
+
arrowPadding: { type: Number, required: false },
|
|
20
|
+
sticky: { type: String, required: false },
|
|
21
|
+
hideWhenDetached: { type: Boolean, required: false },
|
|
22
|
+
positionStrategy: { type: String, required: false },
|
|
23
|
+
updatePositionStrategy: { type: String, required: false },
|
|
24
|
+
disableUpdateOnLayoutShift: { type: Boolean, required: false },
|
|
25
|
+
prioritizePosition: { type: Boolean, required: false },
|
|
26
|
+
reference: { type: null, required: false },
|
|
27
|
+
asChild: { type: Boolean, required: false },
|
|
28
|
+
as: { type: null, required: false, default: "div" },
|
|
29
|
+
disableOutsidePointerEvents: { type: Boolean, required: false }
|
|
30
|
+
},
|
|
31
|
+
emits: ["escapeKeyDown", "pointerDownOutside", "focusOutside", "interactOutside", "openAutoFocus", "closeAutoFocus"],
|
|
32
|
+
setup(__props, { emit: __emit }) {
|
|
33
|
+
const props = __props;
|
|
34
|
+
const emits = __emit;
|
|
35
|
+
const contentPropsEmits = useForwardPropsEmits(() => {
|
|
36
|
+
const { class: _, ...rest } = props;
|
|
37
|
+
return rest;
|
|
38
|
+
}, emits);
|
|
39
|
+
const theme = computed(
|
|
40
|
+
() => popoverVariants().content({
|
|
41
|
+
class: props.class
|
|
42
|
+
})
|
|
43
|
+
);
|
|
44
|
+
return (_ctx, _cache) => {
|
|
45
|
+
return openBlock(), createBlock(unref(PopoverContent), mergeProps(unref(contentPropsEmits), { class: theme.value }), {
|
|
46
|
+
default: withCtx(() => [
|
|
47
|
+
renderSlot(_ctx.$slots, "default")
|
|
48
|
+
]),
|
|
49
|
+
_: 3
|
|
50
|
+
/* FORWARDED */
|
|
51
|
+
}, 16, ["class"]);
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type HTMLAttributes } from "vue";
|
|
2
|
+
import { type PrimitiveProps } from "reka-ui";
|
|
3
|
+
/** props for the VifUI PopoverDescription component */
|
|
4
|
+
export interface PopoverDescriptionProps extends PrimitiveProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverDescription component */
|
|
9
|
+
export interface PopoverDescriptionSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverDescriptionSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverDescriptionProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { popoverVariants } from './popover.styles.js';
|
|
3
|
+
import { useForwardProps, Primitive } from 'reka-ui';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-description",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
asChild: { type: Boolean, required: false },
|
|
10
|
+
as: { type: null, required: false, default: "p" }
|
|
11
|
+
},
|
|
12
|
+
setup(__props) {
|
|
13
|
+
const props = __props;
|
|
14
|
+
const primitiveProps = useForwardProps(() => {
|
|
15
|
+
const { class: _, ...rest } = props;
|
|
16
|
+
return rest;
|
|
17
|
+
});
|
|
18
|
+
const theme = computed(
|
|
19
|
+
() => popoverVariants().description({ class: props.class })
|
|
20
|
+
);
|
|
21
|
+
return (_ctx, _cache) => {
|
|
22
|
+
return openBlock(), createBlock(unref(Primitive), mergeProps(unref(primitiveProps), { class: theme.value }), {
|
|
23
|
+
default: withCtx(() => [
|
|
24
|
+
renderSlot(_ctx.$slots, "default")
|
|
25
|
+
]),
|
|
26
|
+
_: 3
|
|
27
|
+
/* FORWARDED */
|
|
28
|
+
}, 16, ["class"]);
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type PopoverPortalProps as RekaPopoverPortalProps } from "reka-ui";
|
|
2
|
+
/** props for the VifUI PopoverPortal component */
|
|
3
|
+
export interface PopoverPortalProps extends RekaPopoverPortalProps {
|
|
4
|
+
}
|
|
5
|
+
/** Slots for the VifUI PopoverPortal component */
|
|
6
|
+
export interface PopoverPortalSlots {
|
|
7
|
+
default: () => void;
|
|
8
|
+
}
|
|
9
|
+
type __VLS_Slots = PopoverPortalSlots;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardProps, PopoverPortal } from 'reka-ui';
|
|
3
|
+
|
|
4
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
+
__name: "popover-portal",
|
|
6
|
+
props: {
|
|
7
|
+
to: { type: null, required: false },
|
|
8
|
+
disabled: { type: Boolean, required: false },
|
|
9
|
+
defer: { type: Boolean, required: false },
|
|
10
|
+
forceMount: { type: Boolean, required: false }
|
|
11
|
+
},
|
|
12
|
+
setup(__props) {
|
|
13
|
+
const props = __props;
|
|
14
|
+
const portalProps = useForwardProps(props);
|
|
15
|
+
return (_ctx, _cache) => {
|
|
16
|
+
return openBlock(), createBlock(
|
|
17
|
+
unref(PopoverPortal),
|
|
18
|
+
normalizeProps(guardReactiveProps(unref(portalProps))),
|
|
19
|
+
{
|
|
20
|
+
default: withCtx(() => [
|
|
21
|
+
renderSlot(_ctx.$slots, "default")
|
|
22
|
+
]),
|
|
23
|
+
_: 3
|
|
24
|
+
/* FORWARDED */
|
|
25
|
+
},
|
|
26
|
+
16
|
|
27
|
+
/* FULL_PROPS */
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type PopoverRootProps as RekaPopoverRootProps, type PopoverRootEmits as RekaPopoverRootEmits } from "reka-ui";
|
|
2
|
+
/** props for the VifUI PopoverRoot component */
|
|
3
|
+
export interface PopoverRootProps extends RekaPopoverRootProps {
|
|
4
|
+
}
|
|
5
|
+
/** Emits for the VifUI PopoverRoot component */
|
|
6
|
+
export interface PopoverRootEmits extends RekaPopoverRootEmits {
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverRoot component */
|
|
9
|
+
export interface PopoverRootSlots {
|
|
10
|
+
default: (props: {
|
|
11
|
+
/**Current open state */
|
|
12
|
+
open: boolean;
|
|
13
|
+
/**Close the popover */
|
|
14
|
+
close: () => void;
|
|
15
|
+
}) => void;
|
|
16
|
+
}
|
|
17
|
+
type __VLS_Slots = PopoverRootSlots;
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:open": (value: boolean) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
21
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
defaultOpen: boolean;
|
|
24
|
+
modal: boolean;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardPropsEmits, PopoverRoot } from 'reka-ui';
|
|
3
|
+
|
|
4
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
+
__name: "popover-root",
|
|
6
|
+
props: {
|
|
7
|
+
defaultOpen: { type: Boolean, required: false, default: false },
|
|
8
|
+
open: { type: Boolean, required: false },
|
|
9
|
+
modal: { type: Boolean, required: false, default: false }
|
|
10
|
+
},
|
|
11
|
+
emits: ["update:open"],
|
|
12
|
+
setup(__props, { emit: __emit }) {
|
|
13
|
+
const props = __props;
|
|
14
|
+
const emits = __emit;
|
|
15
|
+
const rootPropsEmits = useForwardPropsEmits(props, emits);
|
|
16
|
+
return (_ctx, _cache) => {
|
|
17
|
+
return openBlock(), createBlock(
|
|
18
|
+
unref(PopoverRoot),
|
|
19
|
+
normalizeProps(guardReactiveProps(unref(rootPropsEmits))),
|
|
20
|
+
{
|
|
21
|
+
default: withCtx(({ open, close }) => [
|
|
22
|
+
renderSlot(_ctx.$slots, "default", {
|
|
23
|
+
open,
|
|
24
|
+
close
|
|
25
|
+
})
|
|
26
|
+
]),
|
|
27
|
+
_: 3
|
|
28
|
+
/* FORWARDED */
|
|
29
|
+
},
|
|
30
|
+
16
|
|
31
|
+
/* FULL_PROPS */
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type HTMLAttributes } from "vue";
|
|
2
|
+
import { type PrimitiveProps } from "reka-ui";
|
|
3
|
+
/** props for the VifUI PopoverTitle component */
|
|
4
|
+
export interface PopoverTitleProps extends PrimitiveProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverTitle component */
|
|
9
|
+
export interface PopoverTitleSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverTitleSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverTitleProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { popoverVariants } from './popover.styles.js';
|
|
3
|
+
import { useForwardProps, Primitive } from 'reka-ui';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-title",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
asChild: { type: Boolean, required: false },
|
|
10
|
+
as: { type: null, required: false, default: "h4" }
|
|
11
|
+
},
|
|
12
|
+
setup(__props) {
|
|
13
|
+
const props = __props;
|
|
14
|
+
const primitiveProps = useForwardProps(() => {
|
|
15
|
+
const { class: _, ...rest } = props;
|
|
16
|
+
return rest;
|
|
17
|
+
});
|
|
18
|
+
const theme = computed(() => popoverVariants().title({ class: props.class }));
|
|
19
|
+
return (_ctx, _cache) => {
|
|
20
|
+
return openBlock(), createBlock(unref(Primitive), mergeProps(unref(primitiveProps), { class: theme.value }), {
|
|
21
|
+
default: withCtx(() => [
|
|
22
|
+
renderSlot(_ctx.$slots, "default")
|
|
23
|
+
]),
|
|
24
|
+
_: 3
|
|
25
|
+
/* FORWARDED */
|
|
26
|
+
}, 16, ["class"]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PopoverTriggerProps as RekaPopoverTriggerProps } from "reka-ui";
|
|
2
|
+
import { type HTMLAttributes } from "vue";
|
|
3
|
+
/** props for the VifUI PopoverTrigger component */
|
|
4
|
+
export interface PopoverTriggerProps extends RekaPopoverTriggerProps {
|
|
5
|
+
/**Custom class for the content */
|
|
6
|
+
class?: HTMLAttributes["class"];
|
|
7
|
+
}
|
|
8
|
+
/** Slots for the VifUI PopoverTrigger component */
|
|
9
|
+
export interface PopoverTriggerSlots {
|
|
10
|
+
default: () => void;
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Slots = PopoverTriggerSlots;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {
|
|
14
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { defineComponent, computed, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
|
|
2
|
+
import { useForwardProps, PopoverTrigger } from 'reka-ui';
|
|
3
|
+
import { popoverVariants } from './popover.styles.js';
|
|
4
|
+
|
|
5
|
+
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "popover-trigger",
|
|
7
|
+
props: {
|
|
8
|
+
class: { type: null, required: false },
|
|
9
|
+
asChild: { type: Boolean, required: false },
|
|
10
|
+
as: { type: null, required: false, default: "button" }
|
|
11
|
+
},
|
|
12
|
+
setup(__props) {
|
|
13
|
+
const props = __props;
|
|
14
|
+
const triggerProps = useForwardProps(() => {
|
|
15
|
+
const { class: _, ...rest } = props;
|
|
16
|
+
return rest;
|
|
17
|
+
});
|
|
18
|
+
const theme = computed(() => popoverVariants().trigger({ class: props.class }));
|
|
19
|
+
return (_ctx, _cache) => {
|
|
20
|
+
return openBlock(), createBlock(unref(PopoverTrigger), mergeProps(unref(triggerProps), { class: theme.value }), {
|
|
21
|
+
default: withCtx(() => [
|
|
22
|
+
renderSlot(_ctx.$slots, "default")
|
|
23
|
+
]),
|
|
24
|
+
_: 3
|
|
25
|
+
/* FORWARDED */
|
|
26
|
+
}, 16, ["class"]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export { _sfc_main as default };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { VariantProps } from "tailwind-variants";
|
|
2
|
+
/**
|
|
3
|
+
* Popover component variant mapper
|
|
4
|
+
*
|
|
5
|
+
* Maps variant props to @vifui/styles CSS classes
|
|
6
|
+
*/
|
|
7
|
+
export declare const popoverVariants: import("tailwind-variants").TVReturnType<{
|
|
8
|
+
[key: string]: {
|
|
9
|
+
[key: string]: import("tailwind-variants").ClassValue | {
|
|
10
|
+
root?: import("tailwind-variants").ClassValue;
|
|
11
|
+
trigger?: import("tailwind-variants").ClassValue;
|
|
12
|
+
content?: import("tailwind-variants").ClassValue;
|
|
13
|
+
anchor?: import("tailwind-variants").ClassValue;
|
|
14
|
+
title?: import("tailwind-variants").ClassValue;
|
|
15
|
+
close?: import("tailwind-variants").ClassValue;
|
|
16
|
+
description?: import("tailwind-variants").ClassValue;
|
|
17
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
} | {
|
|
21
|
+
[x: string]: {
|
|
22
|
+
[x: string]: import("tailwind-variants").ClassValue | {
|
|
23
|
+
root?: import("tailwind-variants").ClassValue;
|
|
24
|
+
trigger?: import("tailwind-variants").ClassValue;
|
|
25
|
+
content?: import("tailwind-variants").ClassValue;
|
|
26
|
+
anchor?: import("tailwind-variants").ClassValue;
|
|
27
|
+
title?: import("tailwind-variants").ClassValue;
|
|
28
|
+
close?: import("tailwind-variants").ClassValue;
|
|
29
|
+
description?: import("tailwind-variants").ClassValue;
|
|
30
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
} | {}, {
|
|
34
|
+
root: string;
|
|
35
|
+
trigger: string;
|
|
36
|
+
anchor: string;
|
|
37
|
+
content: string;
|
|
38
|
+
title: string;
|
|
39
|
+
description: string;
|
|
40
|
+
arrow: string;
|
|
41
|
+
close: string;
|
|
42
|
+
}, undefined, {
|
|
43
|
+
[key: string]: {
|
|
44
|
+
[key: string]: import("tailwind-variants").ClassValue | {
|
|
45
|
+
root?: import("tailwind-variants").ClassValue;
|
|
46
|
+
trigger?: import("tailwind-variants").ClassValue;
|
|
47
|
+
content?: import("tailwind-variants").ClassValue;
|
|
48
|
+
anchor?: import("tailwind-variants").ClassValue;
|
|
49
|
+
title?: import("tailwind-variants").ClassValue;
|
|
50
|
+
close?: import("tailwind-variants").ClassValue;
|
|
51
|
+
description?: import("tailwind-variants").ClassValue;
|
|
52
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
} | {}, {
|
|
56
|
+
root: string;
|
|
57
|
+
trigger: string;
|
|
58
|
+
anchor: string;
|
|
59
|
+
content: string;
|
|
60
|
+
title: string;
|
|
61
|
+
description: string;
|
|
62
|
+
arrow: string;
|
|
63
|
+
close: string;
|
|
64
|
+
}, import("tailwind-variants").TVReturnType<unknown, {
|
|
65
|
+
root: string;
|
|
66
|
+
trigger: string;
|
|
67
|
+
anchor: string;
|
|
68
|
+
content: string;
|
|
69
|
+
title: string;
|
|
70
|
+
description: string;
|
|
71
|
+
arrow: string;
|
|
72
|
+
close: string;
|
|
73
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
74
|
+
export type PopoverVariantProps = VariantProps<typeof popoverVariants>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { tv } from 'tailwind-variants';
|
|
2
|
+
|
|
3
|
+
const popoverVariants = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
root: "",
|
|
6
|
+
trigger: "vif-popover__trigger",
|
|
7
|
+
anchor: "",
|
|
8
|
+
content: "vif-popover__content",
|
|
9
|
+
title: "vif-popover__title",
|
|
10
|
+
description: "vif-popover__description",
|
|
11
|
+
arrow: "vif-popover__arrow",
|
|
12
|
+
close: "vif-popover__close"
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export { popoverVariants };
|
|
@@ -10,9 +10,9 @@ export declare const tooltipVariants: import("tailwind-variants").TVReturnType<{
|
|
|
10
10
|
root?: import("tailwind-variants").ClassValue;
|
|
11
11
|
trigger?: import("tailwind-variants").ClassValue;
|
|
12
12
|
content?: import("tailwind-variants").ClassValue;
|
|
13
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
13
14
|
provider?: import("tailwind-variants").ClassValue;
|
|
14
15
|
portal?: import("tailwind-variants").ClassValue;
|
|
15
|
-
arrow?: import("tailwind-variants").ClassValue;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
} | {
|
|
@@ -21,9 +21,9 @@ export declare const tooltipVariants: import("tailwind-variants").TVReturnType<{
|
|
|
21
21
|
root?: import("tailwind-variants").ClassValue;
|
|
22
22
|
trigger?: import("tailwind-variants").ClassValue;
|
|
23
23
|
content?: import("tailwind-variants").ClassValue;
|
|
24
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
24
25
|
provider?: import("tailwind-variants").ClassValue;
|
|
25
26
|
portal?: import("tailwind-variants").ClassValue;
|
|
26
|
-
arrow?: import("tailwind-variants").ClassValue;
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
} | {}, {
|
|
@@ -39,9 +39,9 @@ export declare const tooltipVariants: import("tailwind-variants").TVReturnType<{
|
|
|
39
39
|
root?: import("tailwind-variants").ClassValue;
|
|
40
40
|
trigger?: import("tailwind-variants").ClassValue;
|
|
41
41
|
content?: import("tailwind-variants").ClassValue;
|
|
42
|
+
arrow?: import("tailwind-variants").ClassValue;
|
|
42
43
|
provider?: import("tailwind-variants").ClassValue;
|
|
43
44
|
portal?: import("tailwind-variants").ClassValue;
|
|
44
|
-
arrow?: import("tailwind-variants").ClassValue;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
} | {}, {
|
package/dist/index.js
CHANGED
|
@@ -55,6 +55,15 @@ export { default as TabsList } from './components/tabs/tabs-list.vue.js';
|
|
|
55
55
|
export { default as TabsIndicator } from './components/tabs/tabs-indicator.vue.js';
|
|
56
56
|
export { default as TabsTrigger } from './components/tabs/tabs-trigger.vue.js';
|
|
57
57
|
export { default as TabsContent } from './components/tabs/tabs-content.vue.js';
|
|
58
|
+
export { default as PopoverRoot } from './components/popover/popover-root.vue.js';
|
|
59
|
+
export { default as PopoverAnchor } from './components/popover/popover-anchor.vue.js';
|
|
60
|
+
export { default as PopoverTrigger } from './components/popover/popover-trigger.vue.js';
|
|
61
|
+
export { default as PopoverPortal } from './components/popover/popover-portal.vue.js';
|
|
62
|
+
export { default as PopoverContent } from './components/popover/popover-content.vue.js';
|
|
63
|
+
export { default as PopoverArrow } from './components/popover/popover-arrow.vue.js';
|
|
64
|
+
export { default as PopoverClose } from './components/popover/popover-close.vue.js';
|
|
65
|
+
export { default as PopoverTitle } from './components/popover/popover-title.vue.js';
|
|
66
|
+
export { default as PopoverDescription } from './components/popover/popover-description.vue.js';
|
|
58
67
|
export { default as TooltipProvider } from './components/tooltip/tooltip-provider.vue.js';
|
|
59
68
|
export { default as TooltipRoot } from './components/tooltip/tooltip-root.vue.js';
|
|
60
69
|
export { default as TooltipTrigger } from './components/tooltip/tooltip-trigger.vue.js';
|
|
@@ -75,6 +84,7 @@ export { listVariants } from './components/list/list.styles.js';
|
|
|
75
84
|
export { spinnerVariants } from './components/spinner/spinner.styles.js';
|
|
76
85
|
export { switchVariants } from './components/switch/switch.styles.js';
|
|
77
86
|
export { tabsVariants } from './components/tabs/tabs.styles.js';
|
|
87
|
+
export { popoverVariants } from './components/popover/popover.styles.js';
|
|
78
88
|
export { tooltipVariants } from './components/tooltip/tooltip.styles.js';
|
|
79
89
|
export { uploadVariants } from './components/upload/upload.styles.js';
|
|
80
90
|
|