@wizleap-inc/wiz-ui-next 2.8.0 → 2.9.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.
@@ -2,6 +2,9 @@ import { SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
2
2
  declare const _sfc_main: import("vue").DefineComponent<{}, {
3
3
  snackbarOptions: Readonly<import("vue").Ref<readonly {
4
4
  readonly message: string;
5
+ readonly options?: {
6
+ readonly expand?: boolean | undefined;
7
+ } | undefined;
5
8
  readonly created: string;
6
9
  readonly delete: () => void;
7
10
  }[]>>;
@@ -30,11 +33,17 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
30
33
  required: false;
31
34
  default: boolean;
32
35
  };
36
+ expand: {
37
+ type: BooleanConstructor;
38
+ required: false;
39
+ default: boolean;
40
+ };
33
41
  }, {
34
42
  props: any;
35
43
  emits: (event: "delete") => void;
36
44
  snackbarRef: import("vue").Ref<HTMLElement | undefined>;
37
45
  isHidden: import("vue").Ref<boolean>;
46
+ snackbarWidthType: import("vue").ComputedRef<"default" | "expand">;
38
47
  onDelete: () => void;
39
48
  readonly ARIA_LABELS: {
40
49
  readonly PASSWORD_VISIBLE_TOGGLE: "パスワードの表示切り替え";
@@ -81,6 +90,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
81
90
  readonly snackbarHiddenStyle: string;
82
91
  readonly snackbarMessageStyle: string;
83
92
  readonly snackbarCloseButtonStyle: string;
93
+ readonly snackbarWidthStyle: Record<"default" | "expand", string>;
84
94
  readonly WizText: import("vue").DefineComponent<{
85
95
  as: {
86
96
  type: import("vue").PropType<"label" | "p" | "span">;
@@ -296,11 +306,17 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
296
306
  required: false;
297
307
  default: boolean;
298
308
  };
309
+ expand: {
310
+ type: BooleanConstructor;
311
+ required: false;
312
+ default: boolean;
313
+ };
299
314
  }>> & {
300
315
  onDelete?: ((...args: any[]) => any) | undefined;
301
316
  }, {
302
317
  left: string;
303
318
  bottom: string;
319
+ expand: boolean;
304
320
  isStatic: boolean;
305
321
  }>;
306
322
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
@@ -18,11 +18,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
18
18
  required: false;
19
19
  default: boolean;
20
20
  };
21
+ expand: {
22
+ type: BooleanConstructor;
23
+ required: false;
24
+ default: boolean;
25
+ };
21
26
  }, {
22
27
  props: any;
23
28
  emits: (event: "delete") => void;
24
29
  snackbarRef: import("vue").Ref<HTMLElement | undefined>;
25
30
  isHidden: import("vue").Ref<boolean>;
31
+ snackbarWidthType: import("vue").ComputedRef<"default" | "expand">;
26
32
  onDelete: () => void;
27
33
  readonly ARIA_LABELS: {
28
34
  readonly PASSWORD_VISIBLE_TOGGLE: "パスワードの表示切り替え";
@@ -69,6 +75,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
69
75
  readonly snackbarHiddenStyle: string;
70
76
  readonly snackbarMessageStyle: string;
71
77
  readonly snackbarCloseButtonStyle: string;
78
+ readonly snackbarWidthStyle: Record<"default" | "expand", string>;
72
79
  readonly WizText: import("vue").DefineComponent<{
73
80
  as: {
74
81
  type: import("vue").PropType<"label" | "p" | "span">;
@@ -284,11 +291,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
284
291
  required: false;
285
292
  default: boolean;
286
293
  };
294
+ expand: {
295
+ type: BooleanConstructor;
296
+ required: false;
297
+ default: boolean;
298
+ };
287
299
  }>> & {
288
300
  onDelete?: ((...args: any[]) => any) | undefined;
289
301
  }, {
290
302
  left: string;
291
303
  bottom: string;
304
+ expand: boolean;
292
305
  isStatic: boolean;
293
306
  }>;
294
307
  export default _sfc_main;
@@ -1,5 +1,9 @@
1
+ export type SnackbarOptionType = {
2
+ expand?: boolean;
3
+ };
1
4
  export interface SnackbarOption {
2
5
  message: string;
6
+ options?: SnackbarOptionType;
3
7
  created: string;
4
8
  delete: () => void;
5
9
  }
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -1,5 +1,6 @@
1
1
  import { default as WizIAddCircle } from "./add-circle.vue";
2
2
  import { default as WizIAdd } from "./add.vue";
3
+ import { default as WizIApprovalFilled } from "./approval-filled.vue";
3
4
  import { default as WizIArrowDropDown } from "./arrow-drop-down.vue";
4
5
  import { default as WizIArrowDropUp } from "./arrow-drop-up.vue";
5
6
  import { default as WizIArrowRight } from "./arrow-right.vue";
@@ -8,18 +9,25 @@ import { default as WizIAssignment } from "./assignment.vue";
8
9
  import { default as WizIAttachFile } from "./attach-file.vue";
9
10
  import { default as WizIAutoRenew } from "./auto-renew.vue";
10
11
  import { default as WizIBook } from "./book.vue";
12
+ import { default as WizIBrightFilled } from "./bright-filled.vue";
11
13
  import { default as WizIBusinessCenter } from "./business-center.vue";
12
14
  import { default as WizICalendar } from "./calendar.vue";
13
15
  import { default as WizICamera } from "./camera.vue";
14
16
  import { default as WizICancel } from "./cancel.vue";
15
17
  import { default as WizIChangeHistory } from "./change-history.vue";
18
+ import { default as WizIChatBubbleFilled } from "./chat-bubble-filled.vue";
16
19
  import { default as WizIChat } from "./chat.vue";
20
+ import { default as WizICheckBold } from "./check-bold.vue";
21
+ import { default as WizICheckCircleFilled } from "./check-circle-filled.vue";
17
22
  import { default as WizICheck } from "./check.vue";
23
+ import { default as WizIChevronLeftBold } from "./chevron-left-bold.vue";
18
24
  import { default as WizIChevronLeft } from "./chevron-left.vue";
19
25
  import { default as WizIChevronRight } from "./chevron-right.vue";
20
26
  import { default as WizICircleCheck } from "./circle-check.vue";
21
27
  import { default as WizICircle } from "./circle.vue";
28
+ import { default as WizICloseBold } from "./close-bold.vue";
22
29
  import { default as WizIClose } from "./close.vue";
30
+ import { default as WizIContactPageFilled } from "./contact-page-filled.vue";
23
31
  import { default as WizIContentCopy } from "./content-copy.vue";
24
32
  import { default as WizIContract } from "./contract.vue";
25
33
  import { default as WizIDashboard } from "./dashboard.vue";
@@ -27,12 +35,14 @@ import { default as WizIDescription } from "./description.vue";
27
35
  import { default as WizIDownload } from "./download.vue";
28
36
  import { default as WizIEditNote } from "./edit-note.vue";
29
37
  import { default as WizIExpandLess } from "./expand-less.vue";
38
+ import { default as WizIExpandMoreBold } from "./expand-more-bold.vue";
30
39
  import { default as WizIExpandMore } from "./expand-more.vue";
31
40
  import { default as WizIEye } from "./eye.vue";
32
41
  import { default as WizIGroups } from "./groups.vue";
33
42
  import { default as WizIHelp } from "./help.vue";
34
43
  import { default as WizIHistory } from "./history.vue";
35
44
  import { default as WizIHome } from "./home.vue";
45
+ import { default as WizIInfoBold } from "./info-bold.vue";
36
46
  import { default as WizIInfo } from "./info.vue";
37
47
  import { default as WizILocationCity } from "./location-city.vue";
38
48
  import { default as WizIManageAccounts } from "./manage-accounts.vue";
@@ -42,20 +52,24 @@ import { default as WizIMoreVert } from "./more-vert.vue";
42
52
  import { default as WizINoteAdd } from "./note-add.vue";
43
53
  import { default as WizINotification } from "./notification.vue";
44
54
  import { default as WizIOpenInNew } from "./open-in-new.vue";
55
+ import { default as WizIPersonFilled } from "./person-filled.vue";
45
56
  import { default as WizIPieChart } from "./pie-chart.vue";
46
57
  import { default as WizIPinDrop } from "./pin-drop.vue";
47
58
  import { default as WizIPublic } from "./public.vue";
59
+ import { default as WizIRemoveBold } from "./remove-bold.vue";
48
60
  import { default as WizIRemove } from "./remove.vue";
49
61
  import { default as WizISchedule } from "./schedule.vue";
50
62
  import { default as WizISearch } from "./search.vue";
51
63
  import { default as WizISend } from "./send.vue";
52
64
  import { default as WizISettings } from "./settings.vue";
53
65
  import { default as WizISmartphone } from "./smartphone.vue";
66
+ import { default as WizIStarFilled } from "./star-filled.vue";
54
67
  import { default as WizIStars } from "./stars.vue";
55
68
  import { default as WizIStoreFront } from "./store-front.vue";
56
69
  import { default as WizITab } from "./tab.vue";
57
70
  import { default as WizITask } from "./task.vue";
71
+ import { default as WizITimerFilled } from "./timer-filled.vue";
58
72
  import { default as WizIUpload } from "./upload.vue";
59
73
  import { default as WizIWarning } from "./warning.vue";
60
- export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBook | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizICircle | typeof WizIClose | typeof WizIContentCopy | typeof WizIContract | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfo | typeof WizILocationCity | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizISmartphone | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizIUpload | typeof WizIWarning;
61
- export { WizIAddCircle, WizIAdd, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBook, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChat, WizICheck, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizICircle, WizIClose, WizIContentCopy, WizIContract, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfo, WizILocationCity, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPieChart, WizIPinDrop, WizIPublic, WizIRemove, WizISchedule, WizISearch, WizISend, WizISettings, WizISmartphone, WizIStars, WizIStoreFront, WizITab, WizITask, WizIUpload, WizIWarning, };
74
+ export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIApprovalFilled | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBook | typeof WizIBrightFilled | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChatBubbleFilled | typeof WizIChat | typeof WizICheckBold | typeof WizICheckCircleFilled | typeof WizICheck | typeof WizIChevronLeftBold | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizICircle | typeof WizICloseBold | typeof WizIClose | typeof WizIContactPageFilled | typeof WizIContentCopy | typeof WizIContract | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMoreBold | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfoBold | typeof WizIInfo | typeof WizILocationCity | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPersonFilled | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemoveBold | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizISmartphone | typeof WizIStarFilled | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizITimerFilled | typeof WizIUpload | typeof WizIWarning;
75
+ export { WizIAddCircle, WizIAdd, WizIApprovalFilled, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBook, WizIBrightFilled, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChatBubbleFilled, WizIChat, WizICheckBold, WizICheckCircleFilled, WizICheck, WizIChevronLeftBold, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizICircle, WizICloseBold, WizIClose, WizIContactPageFilled, WizIContentCopy, WizIContract, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMoreBold, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfoBold, WizIInfo, WizILocationCity, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPersonFilled, WizIPieChart, WizIPinDrop, WizIPublic, WizIRemoveBold, WizIRemove, WizISchedule, WizISearch, WizISend, WizISettings, WizISmartphone, WizIStarFilled, WizIStars, WizIStoreFront, WizITab, WizITask, WizITimerFilled, WizIUpload, WizIWarning, };
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _sfc_main;
@@ -2,6 +2,9 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
2
2
  WizSnackbarController: import("vue").DefineComponent<{}, {
3
3
  snackbarOptions: Readonly<import("vue").Ref<readonly {
4
4
  readonly message: string;
5
+ readonly options?: {
6
+ readonly expand?: boolean | undefined;
7
+ } | undefined;
5
8
  readonly created: string;
6
9
  readonly delete: () => void;
7
10
  }[]>>;
@@ -30,11 +33,17 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
30
33
  required: false;
31
34
  default: boolean;
32
35
  };
36
+ expand: {
37
+ type: BooleanConstructor;
38
+ required: false;
39
+ default: boolean;
40
+ };
33
41
  }, {
34
42
  props: any;
35
43
  emits: (event: "delete") => void;
36
44
  snackbarRef: import("vue").Ref<HTMLElement | undefined>;
37
45
  isHidden: import("vue").Ref<boolean>;
46
+ snackbarWidthType: import("vue").ComputedRef<"default" | "expand">;
38
47
  onDelete: () => void;
39
48
  readonly ARIA_LABELS: {
40
49
  readonly PASSWORD_VISIBLE_TOGGLE: "パスワードの表示切り替え";
@@ -81,6 +90,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
81
90
  readonly snackbarHiddenStyle: string;
82
91
  readonly snackbarMessageStyle: string;
83
92
  readonly snackbarCloseButtonStyle: string;
93
+ readonly snackbarWidthStyle: Record<"default" | "expand", string>;
84
94
  readonly WizText: import("vue").DefineComponent<{
85
95
  as: {
86
96
  type: import("vue").PropType<"label" | "p" | "span">;
@@ -296,11 +306,17 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
296
306
  required: false;
297
307
  default: boolean;
298
308
  };
309
+ expand: {
310
+ type: BooleanConstructor;
311
+ required: false;
312
+ default: boolean;
313
+ };
299
314
  }>> & {
300
315
  onDelete?: ((...args: any[]) => any) | undefined;
301
316
  }, {
302
317
  left: string;
303
318
  bottom: string;
319
+ expand: boolean;
304
320
  isStatic: boolean;
305
321
  }>;
306
322
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
@@ -2,10 +2,13 @@ import { InjectionKey } from "vue";
2
2
  export declare const useGlobalProvider: () => {
3
3
  snackbarOptions: Readonly<import("vue").Ref<readonly {
4
4
  readonly message: string;
5
+ readonly options?: {
6
+ readonly expand?: boolean | undefined;
7
+ } | undefined;
5
8
  readonly created: string;
6
9
  readonly delete: () => void;
7
10
  }[]>>;
8
- snack: (message: string) => void;
11
+ snack: (message: string, options?: import("../components/base/snackbar/types").SnackbarOptionType | undefined) => void;
9
12
  };
10
13
  export declare const globalKey: InjectionKey<ReturnType<typeof useGlobalProvider>>;
11
14
  export declare const globalInject: <T>(key: InjectionKey<T>) => T;
@@ -1,15 +1,22 @@
1
+ import { SnackbarOptionType } from '../components/base/snackbar/types';
1
2
  export declare const useSnackbarManager: () => {
2
3
  snackbarOptions: Readonly<import("vue").Ref<readonly {
3
4
  readonly message: string;
5
+ readonly options?: {
6
+ readonly expand?: boolean | undefined;
7
+ } | undefined;
4
8
  readonly created: string;
5
9
  readonly delete: () => void;
6
10
  }[]>>;
7
- snack: (message: string) => void;
11
+ snack: (message: string, options?: SnackbarOptionType) => void;
8
12
  };
9
13
  export declare const useSnackbar: () => {
10
- snack: (message: string) => void;
14
+ snack: (message: string, options?: SnackbarOptionType) => void;
11
15
  snackbarOptions: Readonly<import("vue").Ref<readonly {
12
16
  readonly message: string;
17
+ readonly options?: {
18
+ readonly expand?: boolean | undefined;
19
+ } | undefined;
13
20
  readonly created: string;
14
21
  readonly delete: () => void;
15
22
  }[]>>;