@dcodegroup-au/dsg-vue 0.1.37 → 0.1.38
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/{DsgTablePerPage.vue_vue_type_style_index_0_lang-JL45uhoK.cjs → DsgTablePerPage.vue_vue_type_style_index_0_lang-B3I_IWaf.cjs} +147 -147
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-DU73vqBV.js → DsgTablePerPage.vue_vue_type_style_index_0_lang-sxs2bNQL.js} +821 -809
- package/dist/components/Elements/DsgTooltip.vue.d.ts +7 -2
- package/dist/components/Navigation/DsgTab.vue.d.ts +3 -1
- package/dist/dsg-vue.cjs +10 -10
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.esm.js +650 -626
- package/dist/dsg-vue.table.cjs +1 -1
- package/dist/dsg-vue.table.esm.js +1 -1
- package/eslint.config.ts +1 -2
- package/package.json +3 -3
|
@@ -6,10 +6,15 @@ import { Placement as FloatingVuePlacement, TriggerEvent as FloatingVueTriggerEv
|
|
|
6
6
|
*/
|
|
7
7
|
export type DsgTooltipTrigger = FloatingVueTriggerEvent;
|
|
8
8
|
export type DsgTooltipPosition = FloatingVuePlacement;
|
|
9
|
-
export type DsgTooltipTheme =
|
|
9
|
+
export type DsgTooltipTheme = "light" | "dark";
|
|
10
10
|
export interface DsgTooltipProps {
|
|
11
11
|
label?: string;
|
|
12
12
|
supportingText?: string;
|
|
13
|
+
supportingTextHtml?: boolean;
|
|
14
|
+
width?: string;
|
|
15
|
+
maxWidth?: string;
|
|
16
|
+
titleClass?: string;
|
|
17
|
+
supportingTextClass?: string;
|
|
13
18
|
position?: DsgTooltipPosition;
|
|
14
19
|
triggers?: DsgTooltipTrigger[];
|
|
15
20
|
autoHide?: boolean;
|
|
@@ -30,7 +35,7 @@ export interface DsgTooltipProps {
|
|
|
30
35
|
theme?: DsgTooltipTheme;
|
|
31
36
|
boundary?: HTMLElement | null | undefined;
|
|
32
37
|
container?: HTMLElement | null | undefined;
|
|
33
|
-
strategy?:
|
|
38
|
+
strategy?: "fixed" | "absolute";
|
|
34
39
|
}
|
|
35
40
|
declare function __VLS_template(): {
|
|
36
41
|
attrs: Partial<{}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DsgBadgeProps } from '../Elements/DsgBadge.vue';
|
|
2
|
+
import { DsgTooltipProps } from '../Elements/DsgTooltip.vue';
|
|
2
3
|
/**
|
|
3
4
|
* -------------------------------------------------
|
|
4
5
|
* # Setup: Props/Variables/Models
|
|
@@ -10,7 +11,8 @@ export interface DsgTabLink {
|
|
|
10
11
|
href?: string;
|
|
11
12
|
current: boolean;
|
|
12
13
|
badge?: DsgBadgeProps;
|
|
13
|
-
|
|
14
|
+
tooltip?: DsgTooltipProps | null;
|
|
15
|
+
[key: string]: unknown;
|
|
14
16
|
}
|
|
15
17
|
export interface DsgTabProps {
|
|
16
18
|
tabs: DsgTabLink[];
|