Skip to content

Commit d8ecb6e

Browse files
committed
Fix - Types - Fix VueUiStackline types
1 parent f55408d commit d8ecb6e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

types/vue-data-ui.d.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8093,11 +8093,18 @@ declare module "vue-data-ui" {
80938093
VueUiStackbarExpose
80948094
>;
80958095

8096-
export type VueUiStacklineDatapointItem = VueUiStackbarDatapointItem;
8096+
export type VueUiStacklineDatapointItem = VueUiStackbarDatapointItem & {
8097+
shape: Shape;
8098+
standalone: boolean;
8099+
};
80978100

8098-
export type VueUiStacklineSeriesItem = VueUiStackbarSeriesItem;
8101+
export type VueUiStacklineSeriesItem = VueUiStackbarSeriesItem & {
8102+
shape: Shape;
8103+
standalone: boolean;
8104+
};
80998105

81008106
export type VueUiStacklineDatasetItem = VueUiStackbarDatasetItem & {
8107+
shape?: Shape;
81018108
standalone?: boolean; // If true, series will not be part of stacked series
81028109
}
81038110

@@ -8201,7 +8208,7 @@ declare module "vue-data-ui" {
82018208
};
82028209
totalValues?: {
82038210
show?: boolean;
8204-
offsetY?: boolean;
8211+
offsetY?: number;
82058212
fontSize?: number;
82068213
bold?: boolean;
82078214
color?: string;

0 commit comments

Comments
 (0)