@synergy-design-system/vue 1.20.2 → 1.22.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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import '@synergy-design-system/components/components/spinner/spinner.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
|
|
3
|
+
[x: string]: unknown;
|
|
4
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
5
|
+
[x: string]: unknown;
|
|
6
|
+
}>>>>, {
|
|
7
|
+
readonly [x: number]: string;
|
|
8
|
+
} | {}, {}>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import '@synergy-design-system/components/components/tooltip/tooltip.js';
|
|
2
|
+
import type { SynAfterHideEvent, SynAfterShowEvent, SynHideEvent, SynShowEvent } from '@synergy-design-system/components';
|
|
3
|
+
export type { SynShowEvent } from '@synergy-design-system/components';
|
|
4
|
+
export type { SynAfterShowEvent } from '@synergy-design-system/components';
|
|
5
|
+
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
6
|
+
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
8
|
+
/**
|
|
9
|
+
* The tooltip's content.
|
|
10
|
+
* If you need to display HTML, use the `content` slot instead.
|
|
11
|
+
*/
|
|
12
|
+
content?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* The preferred placement of the tooltip.
|
|
15
|
+
* Note that the actual placement may vary as needed to keep the tooltip
|
|
16
|
+
inside of the viewport.
|
|
17
|
+
*/
|
|
18
|
+
placement?: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right" | "right-start" | "right-end" | "left" | "left-start" | "left-end" | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* Disables the tooltip so it won't show when triggered.
|
|
21
|
+
*/
|
|
22
|
+
disabled?: boolean | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* The distance in pixels from which to offset the tooltip away from its target.
|
|
25
|
+
*/
|
|
26
|
+
distance?: number | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* Indicates whether or not the tooltip is open.
|
|
29
|
+
* You can use this in lieu of the show/hide methods.
|
|
30
|
+
*/
|
|
31
|
+
open?: boolean | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* The distance in pixels from which to offset the tooltip along its target.
|
|
34
|
+
*/
|
|
35
|
+
skidding?: number | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* Controls how the tooltip is activated.
|
|
38
|
+
* Possible options include `click`, `hover`, `focus`, and `manual`.
|
|
39
|
+
* Multiple
|
|
40
|
+
options can be passed by separating them with a space.
|
|
41
|
+
* When manual is used, the tooltip must be activated
|
|
42
|
+
programmatically.
|
|
43
|
+
*/
|
|
44
|
+
trigger?: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with
|
|
47
|
+
`overflow: auto|hidden|scroll`.
|
|
48
|
+
* Hoisting uses a fixed positioning strategy that works in many, but not all,
|
|
49
|
+
scenarios.
|
|
50
|
+
*/
|
|
51
|
+
hoist?: boolean | undefined;
|
|
52
|
+
}>, {
|
|
53
|
+
callHandleOpenChange: () => Promise<void> | undefined;
|
|
54
|
+
callHandleOptionsChange: () => Promise<void> | undefined;
|
|
55
|
+
callHandleDisabledChange: () => void | undefined;
|
|
56
|
+
callShow: () => Promise<void> | undefined;
|
|
57
|
+
callHide: () => Promise<void> | undefined;
|
|
58
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
59
|
+
"syn-show": (e: SynShowEvent) => void;
|
|
60
|
+
"syn-after-show": (e: SynAfterShowEvent) => void;
|
|
61
|
+
"syn-hide": (e: SynHideEvent) => void;
|
|
62
|
+
"syn-after-hide": (e: SynAfterHideEvent) => void;
|
|
63
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
64
|
+
/**
|
|
65
|
+
* The tooltip's content.
|
|
66
|
+
* If you need to display HTML, use the `content` slot instead.
|
|
67
|
+
*/
|
|
68
|
+
content?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* The preferred placement of the tooltip.
|
|
71
|
+
* Note that the actual placement may vary as needed to keep the tooltip
|
|
72
|
+
inside of the viewport.
|
|
73
|
+
*/
|
|
74
|
+
placement?: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right" | "right-start" | "right-end" | "left" | "left-start" | "left-end" | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Disables the tooltip so it won't show when triggered.
|
|
77
|
+
*/
|
|
78
|
+
disabled?: boolean | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* The distance in pixels from which to offset the tooltip away from its target.
|
|
81
|
+
*/
|
|
82
|
+
distance?: number | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* Indicates whether or not the tooltip is open.
|
|
85
|
+
* You can use this in lieu of the show/hide methods.
|
|
86
|
+
*/
|
|
87
|
+
open?: boolean | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* The distance in pixels from which to offset the tooltip along its target.
|
|
90
|
+
*/
|
|
91
|
+
skidding?: number | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* Controls how the tooltip is activated.
|
|
94
|
+
* Possible options include `click`, `hover`, `focus`, and `manual`.
|
|
95
|
+
* Multiple
|
|
96
|
+
options can be passed by separating them with a space.
|
|
97
|
+
* When manual is used, the tooltip must be activated
|
|
98
|
+
programmatically.
|
|
99
|
+
*/
|
|
100
|
+
trigger?: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with
|
|
103
|
+
`overflow: auto|hidden|scroll`.
|
|
104
|
+
* Hoisting uses a fixed positioning strategy that works in many, but not all,
|
|
105
|
+
scenarios.
|
|
106
|
+
*/
|
|
107
|
+
hoist?: boolean | undefined;
|
|
108
|
+
}>>> & {
|
|
109
|
+
"onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
|
|
110
|
+
"onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
|
|
111
|
+
"onSyn-hide"?: ((e: SynHideEvent) => any) | undefined;
|
|
112
|
+
"onSyn-after-hide"?: ((e: SynAfterHideEvent) => any) | undefined;
|
|
113
|
+
}, {}, {}>, {
|
|
114
|
+
default?(_: {}): any;
|
|
115
|
+
content?(_: {}): any;
|
|
116
|
+
}>;
|
|
117
|
+
export default _default;
|
|
118
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
119
|
+
new (): {
|
|
120
|
+
$slots: S;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
124
|
+
type __VLS_TypePropsToOption<T> = {
|
|
125
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
126
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
127
|
+
} : {
|
|
128
|
+
type: import('vue').PropType<T[K]>;
|
|
129
|
+
required: true;
|
|
130
|
+
};
|
|
131
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export { default as SynVueRadioButton } from "./components/SynVueRadioButton.vue
|
|
|
25
25
|
export { default as SynVueRadioGroup } from "./components/SynVueRadioGroup.vue";
|
|
26
26
|
export { default as SynVueSelect } from "./components/SynVueSelect.vue";
|
|
27
27
|
export { default as SynVueSideNav } from "./components/SynVueSideNav.vue";
|
|
28
|
+
export { default as SynVueSpinner } from "./components/SynVueSpinner.vue";
|
|
28
29
|
export { default as SynVueSwitch } from "./components/SynVueSwitch.vue";
|
|
29
30
|
export { default as SynVueTag } from "./components/SynVueTag.vue";
|
|
30
31
|
export { default as SynVueTextarea } from "./components/SynVueTextarea.vue";
|
|
32
|
+
export { default as SynVueTooltip } from "./components/SynVueTooltip.vue";
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"url": "https://www.sick.com"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@synergy-design-system/components": "^1.
|
|
7
|
+
"@synergy-design-system/components": "^1.22.0"
|
|
8
8
|
},
|
|
9
9
|
"description": "Vue3 wrappers for the Synergy Design System",
|
|
10
10
|
"exports": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"directory": "packages/vue"
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "1.
|
|
43
|
+
"version": "1.22.0",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vue/tsconfig": "^0.5.1",
|
|
46
46
|
"vue": "^3.4.24"
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
// ---------------------------------------------------------------------
|
|
3
|
+
// 🔒 AUTOGENERATED @synergy-design-system/vue wrappers for @synergy-design-system/components
|
|
4
|
+
// Please do not edit this file directly!
|
|
5
|
+
// It will get recreated when running pnpm build.
|
|
6
|
+
// ---------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @summary Spinners are used to show the progress of an indeterminate operation.
|
|
10
|
+
* @documentation https://synergy.style/components/spinner
|
|
11
|
+
* @status stable
|
|
12
|
+
* @since 2.0
|
|
13
|
+
*
|
|
14
|
+
* @csspart base - The component's base wrapper.
|
|
15
|
+
*
|
|
16
|
+
* @cssproperty --track-width - The width of the track.
|
|
17
|
+
* @cssproperty --indicator-color - The color of the spinner's indicator.
|
|
18
|
+
* @cssproperty --speed - The time it takes for the spinner to complete one animation cycle.
|
|
19
|
+
*/
|
|
20
|
+
import { computed, ref } from 'vue';
|
|
21
|
+
import '@synergy-design-system/components/components/spinner/spinner.js';
|
|
22
|
+
|
|
23
|
+
import type { SynSpinner } from '@synergy-design-system/components';
|
|
24
|
+
|
|
25
|
+
// DOM Reference to the element
|
|
26
|
+
const element = ref<SynSpinner>();
|
|
27
|
+
|
|
28
|
+
// Map methods
|
|
29
|
+
|
|
30
|
+
defineExpose({
|
|
31
|
+
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
// Map attributes
|
|
35
|
+
const props = defineProps<{
|
|
36
|
+
|
|
37
|
+
}>();
|
|
38
|
+
|
|
39
|
+
// Make sure prop binding only forwards the props that are actually there.
|
|
40
|
+
// This is needed because :param="param" also adds an empty attribute
|
|
41
|
+
// when using web-components, which breaks optional arguments like size in SynInput
|
|
42
|
+
// @see https://github.com/vuejs/core/issues/5190#issuecomment-1003112498
|
|
43
|
+
const visibleProps = computed(() => Object.fromEntries(
|
|
44
|
+
Object
|
|
45
|
+
.entries(props)
|
|
46
|
+
.filter(([, value]) => typeof value !== 'undefined'),
|
|
47
|
+
));
|
|
48
|
+
|
|
49
|
+
// Map events
|
|
50
|
+
defineEmits<{
|
|
51
|
+
|
|
52
|
+
}>();
|
|
53
|
+
</script>
|
|
54
|
+
|
|
55
|
+
<template>
|
|
56
|
+
<syn-spinner
|
|
57
|
+
|
|
58
|
+
v-bind="visibleProps"
|
|
59
|
+
ref="element"
|
|
60
|
+
/>
|
|
61
|
+
</template>
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
// ---------------------------------------------------------------------
|
|
3
|
+
// 🔒 AUTOGENERATED @synergy-design-system/vue wrappers for @synergy-design-system/components
|
|
4
|
+
// Please do not edit this file directly!
|
|
5
|
+
// It will get recreated when running pnpm build.
|
|
6
|
+
// ---------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @summary Tooltips display additional information based on a specific action.
|
|
10
|
+
* @documentation https://synergy.style/components/tooltip
|
|
11
|
+
* @status stable
|
|
12
|
+
* @since 2.0
|
|
13
|
+
*
|
|
14
|
+
* @dependency syn-popup
|
|
15
|
+
*
|
|
16
|
+
* @slot - The tooltip's target element. Avoid slotting in more than one element, as subsequent ones will be ignored.
|
|
17
|
+
* @slot content - The content to render in the tooltip. Alternatively, you can use the `content` attribute.
|
|
18
|
+
*
|
|
19
|
+
* @event syn-show - Emitted when the tooltip begins to show.
|
|
20
|
+
* @event syn-after-show - Emitted after the tooltip has shown and all animations are complete.
|
|
21
|
+
* @event syn-hide - Emitted when the tooltip begins to hide.
|
|
22
|
+
* @event syn-after-hide - Emitted after the tooltip has hidden and all animations are complete.
|
|
23
|
+
*
|
|
24
|
+
* @csspart base - The component's base wrapper, an `<syn-popup>` element.
|
|
25
|
+
* @csspart base__popup - The popup's exported `popup` part. Use this to target the tooltip's popup container.
|
|
26
|
+
* @csspart base__arrow - The popup's exported `arrow` part. Use this to target the tooltip's arrow.
|
|
27
|
+
* @csspart body - The tooltip's body where its content is rendered.
|
|
28
|
+
*
|
|
29
|
+
* @cssproperty --max-width - The maximum width of the tooltip before its content will wrap.
|
|
30
|
+
* @cssproperty --hide-delay - The amount of time to wait before hiding the tooltip when hovering.
|
|
31
|
+
* @cssproperty --show-delay - The amount of time to wait before showing the tooltip when hovering.
|
|
32
|
+
*
|
|
33
|
+
* @animation tooltip.show - The animation to use when showing the tooltip.
|
|
34
|
+
* @animation tooltip.hide - The animation to use when hiding the tooltip.
|
|
35
|
+
*/
|
|
36
|
+
import { computed, ref } from 'vue';
|
|
37
|
+
import '@synergy-design-system/components/components/tooltip/tooltip.js';
|
|
38
|
+
|
|
39
|
+
import type {
|
|
40
|
+
SynAfterHideEvent, SynAfterShowEvent, SynHideEvent, SynShowEvent, SynTooltip,
|
|
41
|
+
} from '@synergy-design-system/components';
|
|
42
|
+
|
|
43
|
+
// DOM Reference to the element
|
|
44
|
+
const element = ref<SynTooltip>();
|
|
45
|
+
|
|
46
|
+
// Map methods
|
|
47
|
+
const callHandleOpenChange = (...args: Parameters<SynTooltip['handleOpenChange']>) => element.value?.handleOpenChange(...args);
|
|
48
|
+
const callHandleOptionsChange = (...args: Parameters<SynTooltip['handleOptionsChange']>) => element.value?.handleOptionsChange(...args);
|
|
49
|
+
const callHandleDisabledChange = (...args: Parameters<SynTooltip['handleDisabledChange']>) => element.value?.handleDisabledChange(...args);
|
|
50
|
+
/**
|
|
51
|
+
* Shows the tooltip.
|
|
52
|
+
*/
|
|
53
|
+
const callShow = (...args: Parameters<SynTooltip['show']>) => element.value?.show(...args);
|
|
54
|
+
/**
|
|
55
|
+
* Hides the tooltip
|
|
56
|
+
*/
|
|
57
|
+
const callHide = (...args: Parameters<SynTooltip['hide']>) => element.value?.hide(...args);
|
|
58
|
+
|
|
59
|
+
defineExpose({
|
|
60
|
+
callHandleOpenChange,
|
|
61
|
+
callHandleOptionsChange,
|
|
62
|
+
callHandleDisabledChange,
|
|
63
|
+
callShow,
|
|
64
|
+
callHide,
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
// Map attributes
|
|
68
|
+
const props = defineProps<{
|
|
69
|
+
/**
|
|
70
|
+
* The tooltip's content.
|
|
71
|
+
* If you need to display HTML, use the `content` slot instead.
|
|
72
|
+
*/
|
|
73
|
+
'content'?: SynTooltip['content'];
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* The preferred placement of the tooltip.
|
|
77
|
+
* Note that the actual placement may vary as needed to keep the tooltip
|
|
78
|
+
inside of the viewport.
|
|
79
|
+
*/
|
|
80
|
+
'placement'?: SynTooltip['placement'];
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Disables the tooltip so it won't show when triggered.
|
|
84
|
+
*/
|
|
85
|
+
'disabled'?: SynTooltip['disabled'];
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* The distance in pixels from which to offset the tooltip away from its target.
|
|
89
|
+
*/
|
|
90
|
+
'distance'?: SynTooltip['distance'];
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Indicates whether or not the tooltip is open.
|
|
94
|
+
* You can use this in lieu of the show/hide methods.
|
|
95
|
+
*/
|
|
96
|
+
'open'?: SynTooltip['open'];
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The distance in pixels from which to offset the tooltip along its target.
|
|
100
|
+
*/
|
|
101
|
+
'skidding'?: SynTooltip['skidding'];
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Controls how the tooltip is activated.
|
|
105
|
+
* Possible options include `click`, `hover`, `focus`, and `manual`.
|
|
106
|
+
* Multiple
|
|
107
|
+
options can be passed by separating them with a space.
|
|
108
|
+
* When manual is used, the tooltip must be activated
|
|
109
|
+
programmatically.
|
|
110
|
+
*/
|
|
111
|
+
'trigger'?: SynTooltip['trigger'];
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with
|
|
115
|
+
`overflow: auto|hidden|scroll`.
|
|
116
|
+
* Hoisting uses a fixed positioning strategy that works in many, but not all,
|
|
117
|
+
scenarios.
|
|
118
|
+
*/
|
|
119
|
+
'hoist'?: SynTooltip['hoist'];
|
|
120
|
+
}>();
|
|
121
|
+
|
|
122
|
+
// Make sure prop binding only forwards the props that are actually there.
|
|
123
|
+
// This is needed because :param="param" also adds an empty attribute
|
|
124
|
+
// when using web-components, which breaks optional arguments like size in SynInput
|
|
125
|
+
// @see https://github.com/vuejs/core/issues/5190#issuecomment-1003112498
|
|
126
|
+
const visibleProps = computed(() => Object.fromEntries(
|
|
127
|
+
Object
|
|
128
|
+
.entries(props)
|
|
129
|
+
.filter(([, value]) => typeof value !== 'undefined'),
|
|
130
|
+
));
|
|
131
|
+
|
|
132
|
+
// Map events
|
|
133
|
+
defineEmits<{
|
|
134
|
+
/**
|
|
135
|
+
* Emitted when the tooltip begins to show.
|
|
136
|
+
*/
|
|
137
|
+
'syn-show': [e: SynShowEvent];
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Emitted after the tooltip has shown and all animations are complete.
|
|
141
|
+
*/
|
|
142
|
+
'syn-after-show': [e: SynAfterShowEvent];
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Emitted when the tooltip begins to hide.
|
|
146
|
+
*/
|
|
147
|
+
'syn-hide': [e: SynHideEvent];
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Emitted after the tooltip has hidden and all animations are complete.
|
|
151
|
+
*/
|
|
152
|
+
'syn-after-hide': [e: SynAfterHideEvent];
|
|
153
|
+
}>();
|
|
154
|
+
</script>
|
|
155
|
+
|
|
156
|
+
<script lang="ts">
|
|
157
|
+
export type { SynShowEvent } from '@synergy-design-system/components';
|
|
158
|
+
export type { SynAfterShowEvent } from '@synergy-design-system/components';
|
|
159
|
+
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
160
|
+
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
161
|
+
</script>
|
|
162
|
+
|
|
163
|
+
<template>
|
|
164
|
+
<syn-tooltip
|
|
165
|
+
v-bind="visibleProps"
|
|
166
|
+
ref="element"
|
|
167
|
+
@syn-show="$emit('syn-show', $event)"
|
|
168
|
+
@syn-after-show="$emit('syn-after-show', $event)"
|
|
169
|
+
|
|
170
|
+
@syn-hide="$emit('syn-hide', $event)"
|
|
171
|
+
@syn-after-hide="$emit('syn-after-hide', $event)"
|
|
172
|
+
>
|
|
173
|
+
<slot />
|
|
174
|
+
<slot name="content" />
|
|
175
|
+
</syn-tooltip>
|
|
176
|
+
</template>
|
package/src/index.js
CHANGED
|
@@ -30,6 +30,8 @@ export { default as SynVueRadioButton } from './components/SynVueRadioButton.vue
|
|
|
30
30
|
export { default as SynVueRadioGroup } from './components/SynVueRadioGroup.vue';
|
|
31
31
|
export { default as SynVueSelect } from './components/SynVueSelect.vue';
|
|
32
32
|
export { default as SynVueSideNav } from './components/SynVueSideNav.vue';
|
|
33
|
+
export { default as SynVueSpinner } from './components/SynVueSpinner.vue';
|
|
33
34
|
export { default as SynVueSwitch } from './components/SynVueSwitch.vue';
|
|
34
35
|
export { default as SynVueTag } from './components/SynVueTag.vue';
|
|
35
36
|
export { default as SynVueTextarea } from './components/SynVueTextarea.vue';
|
|
37
|
+
export { default as SynVueTooltip } from './components/SynVueTooltip.vue';
|