@onereach/ui-components 4.3.12 → 4.3.13-beta.2681.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/dist/bundled/v2/components/OrTagV3/OrTag.vue.d.ts +5 -5
- package/dist/bundled/v2/components/OrTagsV3/OrTags.js +163 -0
- package/dist/bundled/v2/components/OrTagsV3/OrTags.vue.d.ts +80 -0
- package/dist/bundled/v2/components/OrTagsV3/index.d.ts +1 -0
- package/dist/bundled/v2/components/OrTagsV3/index.js +37 -0
- package/dist/bundled/v2/components/OrTagsV3/styles.d.ts +4 -0
- package/dist/bundled/v2/components/OrTagsV3/styles.js +26 -0
- package/dist/bundled/v2/components/index.d.ts +1 -0
- package/dist/bundled/v2/components/index.js +2 -0
- package/dist/bundled/v2/index.js +3 -1
- package/dist/bundled/v3/OrTags.vue_vue_type_script_lang-e75444b5.js +70 -0
- package/dist/bundled/v3/components/OrTagV3/OrTag.vue.d.ts +5 -5
- package/dist/bundled/v3/components/OrTagsV3/OrTags.js +101 -0
- package/dist/bundled/v3/components/OrTagsV3/OrTags.vue.d.ts +36 -0
- package/dist/bundled/v3/components/OrTagsV3/index.d.ts +1 -0
- package/dist/bundled/v3/components/OrTagsV3/index.js +46 -0
- package/dist/bundled/v3/components/OrTagsV3/styles.d.ts +4 -0
- package/dist/bundled/v3/components/OrTagsV3/styles.js +26 -0
- package/dist/bundled/v3/components/index.d.ts +1 -0
- package/dist/bundled/v3/components/index.js +2 -0
- package/dist/bundled/v3/index.js +4 -1
- package/dist/esm/v2/OrTags-4ffaa13b.js +159 -0
- package/dist/esm/v2/components/index.d.ts +1 -0
- package/dist/esm/v2/components/index.js +1 -0
- package/dist/esm/v2/components/or-tag-v3/OrTag.vue.d.ts +5 -5
- package/dist/esm/v2/components/or-tags-v3/OrTags.vue.d.ts +80 -0
- package/dist/esm/v2/components/or-tags-v3/index.d.ts +1 -0
- package/dist/esm/v2/components/or-tags-v3/index.js +19 -0
- package/dist/esm/v2/components/or-tags-v3/styles.d.ts +4 -0
- package/dist/esm/v2/index.js +1 -0
- package/dist/esm/v3/OrTags-a082de82.js +147 -0
- package/dist/esm/v3/components/index.d.ts +1 -0
- package/dist/esm/v3/components/index.js +1 -0
- package/dist/esm/v3/components/or-tag-v3/OrTag.vue.d.ts +5 -5
- package/dist/esm/v3/components/or-tags-v3/OrTags.vue.d.ts +36 -0
- package/dist/esm/v3/components/or-tags-v3/index.d.ts +1 -0
- package/dist/esm/v3/components/or-tags-v3/index.js +18 -0
- package/dist/esm/v3/components/or-tags-v3/styles.d.ts +4 -0
- package/dist/esm/v3/index.js +1 -0
- package/package.json +2 -3
- package/src/components/index.ts +1 -0
- package/src/components/or-tag-v3/OrTag.vue +3 -2
- package/src/components/or-tags-v3/OrTags.docs.mdx +7 -0
- package/src/components/or-tags-v3/OrTags.stories3.ts +101 -0
- package/src/components/or-tags-v3/OrTags.vue +129 -0
- package/src/components/or-tags-v3/index.ts +1 -0
- package/src/components/or-tags-v3/styles.ts +41 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { defineComponent, ref, computed } from 'vue-demi';
|
|
2
|
+
import { Tags, TagsContainer, TagsOverflowButton, TagsOverflowPopover } from './components/OrTagsV3/styles.js';
|
|
3
|
+
import './components/OrButtonV3/OrButton.js';
|
|
4
|
+
import './components/OrPopoverV3/OrPopover.js';
|
|
5
|
+
import './components/OrTagV3/OrTag.js';
|
|
6
|
+
import { useOverflow } from './hooks/useOverflow.js';
|
|
7
|
+
import { s as script$1 } from './OrButton.vue_vue_type_script_lang-f58fa1b8.js';
|
|
8
|
+
import { s as script$2 } from './OrPopover.vue_vue_type_script_lang-2d4eae64.js';
|
|
9
|
+
import { s as script$3 } from './OrTag.vue_vue_type_script_lang-8643b784.js';
|
|
10
|
+
|
|
11
|
+
var script = defineComponent({
|
|
12
|
+
name: 'OrTags',
|
|
13
|
+
components: {
|
|
14
|
+
OrButton: script$1,
|
|
15
|
+
OrPopover: script$2,
|
|
16
|
+
OrTag: script$3
|
|
17
|
+
},
|
|
18
|
+
props: {
|
|
19
|
+
items: {
|
|
20
|
+
type: Array,
|
|
21
|
+
default: () => []
|
|
22
|
+
},
|
|
23
|
+
tagProps: {
|
|
24
|
+
type: Object,
|
|
25
|
+
default: undefined
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
setup(props) {
|
|
29
|
+
// Refs
|
|
30
|
+
const root = ref();
|
|
31
|
+
const container = ref();
|
|
32
|
+
const overflowButton = ref();
|
|
33
|
+
const overflowButtonRoot = computed(() => {
|
|
34
|
+
var _a;
|
|
35
|
+
return (_a = overflowButton.value) === null || _a === void 0 ? void 0 : _a.root;
|
|
36
|
+
});
|
|
37
|
+
const overflowPopover = ref();
|
|
38
|
+
const overflowPopoverRoot = computed(() => {
|
|
39
|
+
var _a;
|
|
40
|
+
return (_a = overflowPopover.value) === null || _a === void 0 ? void 0 : _a.root;
|
|
41
|
+
});
|
|
42
|
+
// Styles
|
|
43
|
+
const rootStyles = computed(() => ['or-tags-v3', ...Tags]);
|
|
44
|
+
const containerStyles = computed(() => [...TagsContainer]);
|
|
45
|
+
const overflowButtonStyles = computed(() => [...TagsOverflowButton]);
|
|
46
|
+
const overflowPopoverStyles = computed(() => [...TagsOverflowPopover]);
|
|
47
|
+
// State
|
|
48
|
+
const {
|
|
49
|
+
innerItems
|
|
50
|
+
} = useOverflow(container);
|
|
51
|
+
const overflowItems = computed(() => {
|
|
52
|
+
return props.items.slice(innerItems.value.length);
|
|
53
|
+
});
|
|
54
|
+
return {
|
|
55
|
+
root,
|
|
56
|
+
container,
|
|
57
|
+
overflowButton,
|
|
58
|
+
overflowButtonRoot,
|
|
59
|
+
overflowPopover,
|
|
60
|
+
overflowPopoverRoot,
|
|
61
|
+
rootStyles,
|
|
62
|
+
containerStyles,
|
|
63
|
+
overflowButtonStyles,
|
|
64
|
+
overflowPopoverStyles,
|
|
65
|
+
overflowItems
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
export { script as s };
|
|
@@ -2,7 +2,7 @@ import { PropType } from 'vue-demi';
|
|
|
2
2
|
import { TagColor, TagVariant } from './props';
|
|
3
3
|
declare const _default: import("vue-demi").DefineComponent<{
|
|
4
4
|
variant: {
|
|
5
|
-
type: PropType<
|
|
5
|
+
type: PropType<"tag" | "button" | "reset">;
|
|
6
6
|
default: TagVariant;
|
|
7
7
|
};
|
|
8
8
|
color: {
|
|
@@ -17,9 +17,9 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
17
17
|
root: import("vue-demi").Ref<HTMLElement | undefined>;
|
|
18
18
|
rootStyles: import("vue-demi").ComputedRef<string[]>;
|
|
19
19
|
custom: import("vue-demi").ComputedRef<boolean>;
|
|
20
|
-
}, unknown, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, ("
|
|
20
|
+
}, unknown, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, ("reset" | "click" | "focus" | "blur")[], "reset" | "click" | "focus" | "blur", import("vue-demi").VNodeProps & import("vue-demi").AllowedComponentProps & import("vue-demi").ComponentCustomProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
21
21
|
variant: {
|
|
22
|
-
type: PropType<
|
|
22
|
+
type: PropType<"tag" | "button" | "reset">;
|
|
23
23
|
default: TagVariant;
|
|
24
24
|
};
|
|
25
25
|
color: {
|
|
@@ -31,12 +31,12 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
33
|
}>> & {
|
|
34
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
34
35
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
35
36
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
36
37
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
37
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
38
38
|
}, {
|
|
39
|
-
variant:
|
|
39
|
+
variant: "tag" | "button" | "reset";
|
|
40
40
|
color: string;
|
|
41
41
|
disabled: boolean;
|
|
42
42
|
}>;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { s as script } from '../../OrTags.vue_vue_type_script_lang-e75444b5.js';
|
|
2
|
+
export { s as default } from '../../OrTags.vue_vue_type_script_lang-e75444b5.js';
|
|
3
|
+
import { resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, Fragment, renderList, createBlock, mergeProps, withCtx, createTextVNode, toDisplayString, createVNode, withModifiers, createCommentVNode } from 'vue';
|
|
4
|
+
import 'vue-demi';
|
|
5
|
+
import './styles.js';
|
|
6
|
+
import '../OrButtonV3/OrButton.js';
|
|
7
|
+
import '../../OrButton.vue_vue_type_script_lang-f58fa1b8.js';
|
|
8
|
+
import '../OrButtonV3/props.js';
|
|
9
|
+
import '../OrButtonV3/styles.js';
|
|
10
|
+
import '../OrLoaderV3/OrLoader.js';
|
|
11
|
+
import '../../OrLoader.vue_vue_type_script_lang-49907820.js';
|
|
12
|
+
import '@vueuse/core';
|
|
13
|
+
import '../OrLoaderV3/props.js';
|
|
14
|
+
import '../OrLoaderV3/styles.js';
|
|
15
|
+
import '../OrPopoverV3/OrPopover.js';
|
|
16
|
+
import '../../OrPopover.vue_vue_type_script_lang-2d4eae64.js';
|
|
17
|
+
import '../../floating-ui.dom.esm-83eba816.js';
|
|
18
|
+
import '../OrPopoverV3/props.js';
|
|
19
|
+
import '../OrPopoverV3/styles.js';
|
|
20
|
+
import '../OrBottomSheetV3/OrBottomSheet.js';
|
|
21
|
+
import '../../OrBottomSheet.vue_vue_type_script_lang-a81b2abb.js';
|
|
22
|
+
import '../OrBottomSheetV3/props.js';
|
|
23
|
+
import '../OrBottomSheetV3/styles.js';
|
|
24
|
+
import '../OrOverlayV3/OrOverlay.js';
|
|
25
|
+
import '../../OrOverlay.vue_vue_type_script_lang-86c7b93a.js';
|
|
26
|
+
import '../OrOverlayV3/styles.js';
|
|
27
|
+
import '../OrTeleportV3/OrTeleport.js';
|
|
28
|
+
import '../../OrTeleport.vue3.vue_vue_type_script_lang-a6ce162e.js';
|
|
29
|
+
import '../../hooks/useElevation.js';
|
|
30
|
+
import '../../utils/isVisible.js';
|
|
31
|
+
import '../../hooks/useResponsive/useResponsive.js';
|
|
32
|
+
import '../OrTagV3/OrTag.js';
|
|
33
|
+
import '../../OrTag.vue_vue_type_script_lang-8643b784.js';
|
|
34
|
+
import '../OrTagV3/props.js';
|
|
35
|
+
import '../OrTagV3/styles.js';
|
|
36
|
+
import '../OrIconButtonV3/OrIconButton.js';
|
|
37
|
+
import '../../OrIconButton.vue_vue_type_script_lang-e786c9e5.js';
|
|
38
|
+
import '../OrIconButtonV3/props.js';
|
|
39
|
+
import '../OrIconV3/props.js';
|
|
40
|
+
import '../OrIconButtonV3/styles.js';
|
|
41
|
+
import '../OrIconV3/OrIcon.js';
|
|
42
|
+
import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
43
|
+
import '../OrIconV3/styles.js';
|
|
44
|
+
import '../OrTooltipV3/OrTooltip.js';
|
|
45
|
+
import '../../OrTooltip.vue_vue_type_script_lang-56496d67.js';
|
|
46
|
+
import '../OrTooltipV3/styles.js';
|
|
47
|
+
import '../../hooks/useOverflow.js';
|
|
48
|
+
|
|
49
|
+
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
50
|
+
const _component_OrTag = resolveComponent("OrTag");
|
|
51
|
+
const _component_OrButton = resolveComponent("OrButton");
|
|
52
|
+
const _component_OrPopover = resolveComponent("OrPopover");
|
|
53
|
+
return openBlock(), createElementBlock("div", {
|
|
54
|
+
ref: "root",
|
|
55
|
+
class: normalizeClass(_ctx.rootStyles)
|
|
56
|
+
}, [createElementVNode("div", {
|
|
57
|
+
ref: "container",
|
|
58
|
+
class: normalizeClass(_ctx.containerStyles)
|
|
59
|
+
}, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, item => {
|
|
60
|
+
return openBlock(), createBlock(_component_OrTag, mergeProps(_ctx.tagProps, {
|
|
61
|
+
key: item
|
|
62
|
+
}), {
|
|
63
|
+
default: withCtx(() => [createTextVNode(toDisplayString(item), 1 /* TEXT */)]),
|
|
64
|
+
|
|
65
|
+
_: 2 /* DYNAMIC */
|
|
66
|
+
}, 1040 /* FULL_PROPS, DYNAMIC_SLOTS */);
|
|
67
|
+
}), 128 /* KEYED_FRAGMENT */))], 2 /* CLASS */), _ctx.overflowItems.length > 0 ? (openBlock(), createElementBlock(Fragment, {
|
|
68
|
+
key: 0
|
|
69
|
+
}, [createVNode(_component_OrButton, {
|
|
70
|
+
ref: "overflowButton",
|
|
71
|
+
class: normalizeClass(_ctx.overflowButtonStyles),
|
|
72
|
+
type: 'button',
|
|
73
|
+
variant: 'link',
|
|
74
|
+
color: 'inherit',
|
|
75
|
+
onClick: _cache[0] || (_cache[0] = withModifiers($event => _ctx.overflowPopover.open(), ["stop"]))
|
|
76
|
+
}, {
|
|
77
|
+
default: withCtx(() => [createTextVNode(" +" + toDisplayString(_ctx.overflowItems.length), 1 /* TEXT */)]),
|
|
78
|
+
|
|
79
|
+
_: 1 /* STABLE */
|
|
80
|
+
}, 8 /* PROPS */, ["class"]), createVNode(_component_OrPopover, {
|
|
81
|
+
ref: "overflowPopover",
|
|
82
|
+
trigger: _ctx.overflowButtonRoot
|
|
83
|
+
}, {
|
|
84
|
+
default: withCtx(() => [createElementVNode("div", {
|
|
85
|
+
class: normalizeClass(_ctx.overflowPopoverStyles)
|
|
86
|
+
}, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.overflowItems, item => {
|
|
87
|
+
return openBlock(), createBlock(_component_OrTag, mergeProps(_ctx.tagProps, {
|
|
88
|
+
key: item
|
|
89
|
+
}), {
|
|
90
|
+
default: withCtx(() => [createTextVNode(toDisplayString(item), 1 /* TEXT */)]),
|
|
91
|
+
|
|
92
|
+
_: 2 /* DYNAMIC */
|
|
93
|
+
}, 1040 /* FULL_PROPS, DYNAMIC_SLOTS */);
|
|
94
|
+
}), 128 /* KEYED_FRAGMENT */))], 2 /* CLASS */)]),
|
|
95
|
+
|
|
96
|
+
_: 1 /* STABLE */
|
|
97
|
+
}, 8 /* PROPS */, ["trigger"])], 64 /* STABLE_FRAGMENT */)) : createCommentVNode("v-if", true)], 2 /* CLASS */);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
script.render = render;
|
|
101
|
+
script.__file = "src/components/or-tags-v3/OrTags.vue";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { PropType } from 'vue-demi';
|
|
2
|
+
declare const _default: import("vue-demi").DefineComponent<{
|
|
3
|
+
items: {
|
|
4
|
+
type: PropType<string[]>;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
tagProps: {
|
|
8
|
+
type: PropType<any>;
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
root: import("vue-demi").Ref<HTMLElement | undefined>;
|
|
13
|
+
container: import("vue-demi").Ref<HTMLElement | undefined>;
|
|
14
|
+
overflowButton: import("vue-demi").Ref<any>;
|
|
15
|
+
overflowButtonRoot: import("vue-demi").ComputedRef<any>;
|
|
16
|
+
overflowPopover: import("vue-demi").Ref<any>;
|
|
17
|
+
overflowPopoverRoot: import("vue-demi").ComputedRef<any>;
|
|
18
|
+
rootStyles: import("vue-demi").ComputedRef<string[]>;
|
|
19
|
+
containerStyles: import("vue-demi").ComputedRef<string[]>;
|
|
20
|
+
overflowButtonStyles: import("vue-demi").ComputedRef<string[]>;
|
|
21
|
+
overflowPopoverStyles: import("vue-demi").ComputedRef<string[]>;
|
|
22
|
+
overflowItems: import("vue-demi").ComputedRef<string[]>;
|
|
23
|
+
}, unknown, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, {}, string, import("vue-demi").VNodeProps & import("vue-demi").AllowedComponentProps & import("vue-demi").ComponentCustomProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
24
|
+
items: {
|
|
25
|
+
type: PropType<string[]>;
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
28
|
+
tagProps: {
|
|
29
|
+
type: PropType<any>;
|
|
30
|
+
default: undefined;
|
|
31
|
+
};
|
|
32
|
+
}>>, {
|
|
33
|
+
items: string[];
|
|
34
|
+
tagProps: any;
|
|
35
|
+
}>;
|
|
36
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as OrTagsV3 } from './OrTags.vue';
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export { s as OrTagsV3 } from '../../OrTags.vue_vue_type_script_lang-e75444b5.js';
|
|
2
|
+
import 'vue-demi';
|
|
3
|
+
import './styles.js';
|
|
4
|
+
import '../OrButtonV3/OrButton.js';
|
|
5
|
+
import '../../OrButton.vue_vue_type_script_lang-f58fa1b8.js';
|
|
6
|
+
import '../OrButtonV3/props.js';
|
|
7
|
+
import '../OrButtonV3/styles.js';
|
|
8
|
+
import '../OrLoaderV3/OrLoader.js';
|
|
9
|
+
import '../../OrLoader.vue_vue_type_script_lang-49907820.js';
|
|
10
|
+
import '@vueuse/core';
|
|
11
|
+
import '../OrLoaderV3/props.js';
|
|
12
|
+
import '../OrLoaderV3/styles.js';
|
|
13
|
+
import 'vue';
|
|
14
|
+
import '../OrPopoverV3/OrPopover.js';
|
|
15
|
+
import '../../OrPopover.vue_vue_type_script_lang-2d4eae64.js';
|
|
16
|
+
import '../../floating-ui.dom.esm-83eba816.js';
|
|
17
|
+
import '../OrPopoverV3/props.js';
|
|
18
|
+
import '../OrPopoverV3/styles.js';
|
|
19
|
+
import '../OrBottomSheetV3/OrBottomSheet.js';
|
|
20
|
+
import '../../OrBottomSheet.vue_vue_type_script_lang-a81b2abb.js';
|
|
21
|
+
import '../OrBottomSheetV3/props.js';
|
|
22
|
+
import '../OrBottomSheetV3/styles.js';
|
|
23
|
+
import '../OrOverlayV3/OrOverlay.js';
|
|
24
|
+
import '../../OrOverlay.vue_vue_type_script_lang-86c7b93a.js';
|
|
25
|
+
import '../OrOverlayV3/styles.js';
|
|
26
|
+
import '../OrTeleportV3/OrTeleport.js';
|
|
27
|
+
import '../../OrTeleport.vue3.vue_vue_type_script_lang-a6ce162e.js';
|
|
28
|
+
import '../../hooks/useElevation.js';
|
|
29
|
+
import '../../utils/isVisible.js';
|
|
30
|
+
import '../../hooks/useResponsive/useResponsive.js';
|
|
31
|
+
import '../OrTagV3/OrTag.js';
|
|
32
|
+
import '../../OrTag.vue_vue_type_script_lang-8643b784.js';
|
|
33
|
+
import '../OrTagV3/props.js';
|
|
34
|
+
import '../OrTagV3/styles.js';
|
|
35
|
+
import '../OrIconButtonV3/OrIconButton.js';
|
|
36
|
+
import '../../OrIconButton.vue_vue_type_script_lang-e786c9e5.js';
|
|
37
|
+
import '../OrIconButtonV3/props.js';
|
|
38
|
+
import '../OrIconV3/props.js';
|
|
39
|
+
import '../OrIconButtonV3/styles.js';
|
|
40
|
+
import '../OrIconV3/OrIcon.js';
|
|
41
|
+
import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
42
|
+
import '../OrIconV3/styles.js';
|
|
43
|
+
import '../OrTooltipV3/OrTooltip.js';
|
|
44
|
+
import '../../OrTooltip.vue_vue_type_script_lang-56496d67.js';
|
|
45
|
+
import '../OrTooltipV3/styles.js';
|
|
46
|
+
import '../../hooks/useOverflow.js';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const Tags = [
|
|
2
|
+
// Layout
|
|
3
|
+
'layout-row',
|
|
4
|
+
// Spacing
|
|
5
|
+
'gap-sm',
|
|
6
|
+
// Theme
|
|
7
|
+
'theme-foreground-default', 'dark:theme-foreground-default-dark'];
|
|
8
|
+
const TagsContainer = [
|
|
9
|
+
// Layout
|
|
10
|
+
'layout-row',
|
|
11
|
+
// Overflow
|
|
12
|
+
'overflow-hidden',
|
|
13
|
+
// Spacing
|
|
14
|
+
'gap-sm'];
|
|
15
|
+
const TagsOverflowButton = [
|
|
16
|
+
// Typography
|
|
17
|
+
'typography-caption-regular'];
|
|
18
|
+
const TagsOverflowPopover = [
|
|
19
|
+
// Layout
|
|
20
|
+
'layout-row !flex-wrap',
|
|
21
|
+
// Box
|
|
22
|
+
'max-w-[192px]',
|
|
23
|
+
// Spacing
|
|
24
|
+
'px-md', 'py-md', 'gap-sm'];
|
|
25
|
+
|
|
26
|
+
export { Tags, TagsContainer, TagsOverflowButton, TagsOverflowPopover };
|
|
@@ -133,6 +133,7 @@ export { TabsVariant } from './OrTabsV3/props.js';
|
|
|
133
133
|
export { s as OrTag } from '../OrTag.vue_vue_type_script_lang-4e98d8a0.js';
|
|
134
134
|
export { s as OrTagV3 } from '../OrTag.vue_vue_type_script_lang-8643b784.js';
|
|
135
135
|
export { TagColor, TagVariant } from './OrTagV3/props.js';
|
|
136
|
+
export { s as OrTagsV3 } from '../OrTags.vue_vue_type_script_lang-e75444b5.js';
|
|
136
137
|
export { default as OrTeleport } from './OrTeleport/OrTeleport.js';
|
|
137
138
|
export { s as OrTeleportV3 } from '../OrTeleport.vue3.vue_vue_type_script_lang-a6ce162e.js';
|
|
138
139
|
export { s as OrTextV3 } from '../OrText.vue_vue_type_script_lang-6ce019db.js';
|
|
@@ -279,6 +280,7 @@ import './OrTabV3/styles.js';
|
|
|
279
280
|
import './OrTabHeaderItem/OrTabHeaderItem.js';
|
|
280
281
|
import './OrTabsV3/styles.js';
|
|
281
282
|
import './OrTabV3/OrTab.js';
|
|
283
|
+
import './OrTagsV3/styles.js';
|
|
282
284
|
import './OrTextV3/styles.js';
|
|
283
285
|
import './OrTextareaV3/styles.js';
|
|
284
286
|
import './OrTimePickerV3/styles.js';
|