@aures5g/vue-component-library 3.45.0 → 3.46.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/{TableSelectionFilter-DoENxTY_.js → TableSelectionFilter-CrBn8CFe.js} +1 -1
- package/dist/{UIMenu-DSRikXGe.js → UIMenu-CUXLDTkz.js} +376 -357
- package/dist/src/components/copyToClipboard/UICopy.vue.d.ts +4 -3
- package/dist/src/components/copyToClipboard/uiCopy.const.d.ts +0 -6
- package/dist/src/components/iconButton/UIIconButton.vue.d.ts +2 -0
- package/dist/src/directives/tooltip.d.ts +11 -4
- package/dist/src/index.d.ts +2 -2
- package/dist/vue-component-library.js +1092 -1103
- package/dist/vue-component-library.umd.cjs +11 -11
- package/package.json +4 -4
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ICON_POSITION } from './uiCopy.const';
|
|
2
|
+
import type { TooltipPositionModifiers } from '@/directives/tooltip';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
textToClipboard: string;
|
|
4
5
|
textToDisplay?: string | number;
|
|
5
6
|
tooltipText: string | number;
|
|
6
|
-
tooltipPosition?:
|
|
7
|
+
tooltipPosition?: TooltipPositionModifiers;
|
|
7
8
|
hiddenIcon?: boolean;
|
|
8
9
|
iconPosition?: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
9
10
|
};
|
|
@@ -13,7 +14,7 @@ type __VLS_Slots = {} & {
|
|
|
13
14
|
};
|
|
14
15
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
16
|
textToDisplay: string | number;
|
|
16
|
-
tooltipPosition:
|
|
17
|
+
tooltipPosition: TooltipPositionModifiers;
|
|
17
18
|
hiddenIcon: boolean;
|
|
18
19
|
iconPosition: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
19
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,12 +7,14 @@ type __VLS_Props = {
|
|
|
7
7
|
placement?: ComponentPlacements;
|
|
8
8
|
icon?: FontAwesomeIconProps['icon'];
|
|
9
9
|
badge?: boolean | number | string;
|
|
10
|
+
title?: string;
|
|
10
11
|
};
|
|
11
12
|
declare var __VLS_1: {};
|
|
12
13
|
type __VLS_Slots = {} & {
|
|
13
14
|
default?: (props: typeof __VLS_1) => any;
|
|
14
15
|
};
|
|
15
16
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
17
|
+
title: string;
|
|
16
18
|
size: ButtonSizes;
|
|
17
19
|
icon: FontAwesomeIconProps["icon"];
|
|
18
20
|
placement: ComponentPlacements;
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import type { DirectiveBinding } from 'vue';
|
|
2
|
-
type TooltipValue = string | {
|
|
3
|
-
value: string;
|
|
1
|
+
import type { DirectiveBinding, Directive } from 'vue';
|
|
2
|
+
type TooltipValue = string | null | undefined | {
|
|
3
|
+
value: string | null | undefined;
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
overflow?: boolean;
|
|
6
|
+
position?: TooltipPositionModifiers;
|
|
6
7
|
};
|
|
7
8
|
type OptionalDirectiveBinding = DirectiveBinding<TooltipValue | undefined | null, TooltipModifiers>;
|
|
8
|
-
type TooltipPositionModifiers = 'top' | 'right' | 'left' | 'bottom';
|
|
9
|
+
export type TooltipPositionModifiers = 'top' | 'right' | 'left' | 'bottom';
|
|
9
10
|
type TooltipModifiers = TooltipPositionModifiers | 'overflow';
|
|
10
11
|
declare function setupTooltip(el: HTMLElement, binding: OptionalDirectiveBinding): void;
|
|
11
12
|
declare function cleanupTooltip(el: HTMLElement): void;
|
|
13
|
+
export type TooltipDirective = Directive<HTMLElement, TooltipValue, TooltipModifiers>;
|
|
14
|
+
declare module 'vue' {
|
|
15
|
+
interface GlobalDirectives {
|
|
16
|
+
vTooltip: TooltipDirective;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
12
19
|
export declare const Tooltip: {
|
|
13
20
|
beforeMount: typeof setupTooltip;
|
|
14
21
|
updated: typeof setupTooltip;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ import UIFab from './components/fab/UIFab.vue';
|
|
|
32
32
|
import UISegmentedButton from './components/segmentedButton/UISegmentedButton.vue';
|
|
33
33
|
import UITable from './components/table/UITable.vue';
|
|
34
34
|
import type { Field, RowClickPayload, FilterComponentProps, CellComponentProps } from './components/table/uiTable.types';
|
|
35
|
-
import { Tooltip } from './directives/tooltip';
|
|
35
|
+
import { Tooltip, type TooltipDirective } from './directives/tooltip';
|
|
36
36
|
import UILabelValueList from '@/components/labelValueList/UILabelValueList.vue';
|
|
37
37
|
import UILabelValue from '@/components/labelValueList/UILabelValue.vue';
|
|
38
38
|
import UILabelSubValueList from '@/components/labelValueList/UILabelSubValueList.vue';
|
|
@@ -43,6 +43,6 @@ import UISearchBar from './components/searchBar/UISearchBar.vue';
|
|
|
43
43
|
import UISlider from './components/slider/UISlider.vue';
|
|
44
44
|
import UIDatePicker from '@/components/datePicker/UIDatePicker.vue';
|
|
45
45
|
import { useACBSBreakpoints } from '@/composables/breakpoints';
|
|
46
|
-
export { ACBSPlugin, useACBSConfig, UIButton, UINavbar, UITag, UIBadge, UICopy, UITabs, UIIconButton, UIToggleButton, UIRadioButton, UICheckbox, UIInputChip, UIFilterChip, UITextField, UITextArea, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, UIDropdown, UIInfoStrip, UIInfoStripSecondaryBox, UIPersonList, UIBrandLogo, UIFab, UISegmentedButton, UITable, type Field, type RowClickPayload, type FilterComponentProps, type CellComponentProps, Tooltip,
|
|
46
|
+
export { ACBSPlugin, useACBSConfig, UIButton, UINavbar, UITag, UIBadge, UICopy, UITabs, UIIconButton, UIToggleButton, UIRadioButton, UICheckbox, UIInputChip, UIFilterChip, UITextField, UITextArea, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, UIDropdown, UIInfoStrip, UIInfoStripSecondaryBox, UIPersonList, UIBrandLogo, UIFab, UISegmentedButton, UITable, type Field, type RowClickPayload, type FilterComponentProps, type CellComponentProps, Tooltip, type TooltipDirective,
|
|
47
47
|
/** @deprecated overflow-tooltip and tooltip directives were merged into one */
|
|
48
48
|
Tooltip as OverflowTooltip, UILabelValueList, UILabelValue, UILabelSubValueList, UILabelSubValue, UIMenu, UITabButtons, UISearchBar, UISlider, UIDatePicker, useACBSBreakpoints, };
|