@wizleap-inc/wiz-ui-next 2.7.2 → 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.
Files changed (33) hide show
  1. package/dist/components/base/navigation/item.vue.d.ts +3 -3
  2. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +3 -3
  3. package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +16 -0
  4. package/dist/components/base/snackbar/snackbar.vue.d.ts +13 -0
  5. package/dist/components/base/snackbar/types.d.ts +4 -0
  6. package/dist/components/base/tab/tab-pane.vue.d.ts +14 -2
  7. package/dist/components/base/tab/tab.vue.d.ts +13 -2
  8. package/dist/components/base/tooltip/tooltip.vue.d.ts +3 -3
  9. package/dist/components/custom/chat/card/chat-card.vue.d.ts +3 -3
  10. package/dist/components/custom/chat/item/chat-item.vue.d.ts +3 -3
  11. package/dist/components/custom/notification/notification.vue.d.ts +13 -2
  12. package/dist/components/icons/approval-filled.vue.d.ts +2 -0
  13. package/dist/components/icons/bright-filled.vue.d.ts +2 -0
  14. package/dist/components/icons/chat-bubble-filled.vue.d.ts +2 -0
  15. package/dist/components/icons/check-bold.vue.d.ts +2 -0
  16. package/dist/components/icons/check-circle-filled.vue.d.ts +2 -0
  17. package/dist/components/icons/chevron-left-bold.vue.d.ts +2 -0
  18. package/dist/components/icons/close-bold.vue.d.ts +2 -0
  19. package/dist/components/icons/contact-page-filled.vue.d.ts +2 -0
  20. package/dist/components/icons/expand-more-bold.vue.d.ts +2 -0
  21. package/dist/components/icons/index.d.ts +16 -2
  22. package/dist/components/icons/info-bold.vue.d.ts +2 -0
  23. package/dist/components/icons/person-filled.vue.d.ts +2 -0
  24. package/dist/components/icons/remove-bold.vue.d.ts +2 -0
  25. package/dist/components/icons/star-filled.vue.d.ts +2 -0
  26. package/dist/components/icons/timer-filled.vue.d.ts +2 -0
  27. package/dist/components/manager/provider.vue.d.ts +16 -0
  28. package/dist/hooks/use-global-provider.d.ts +4 -1
  29. package/dist/hooks/use-snackbar.d.ts +9 -2
  30. package/dist/style.css +1 -1
  31. package/dist/wiz-ui.es.js +3769 -3515
  32. package/dist/wiz-ui.umd.js +16 -16
  33. package/package.json +3 -3
@@ -1123,7 +1123,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1123
1123
  required: false;
1124
1124
  default: string;
1125
1125
  };
1126
- hover: {
1126
+ isOpen: {
1127
1127
  type: BooleanConstructor;
1128
1128
  required: false;
1129
1129
  default: boolean;
@@ -1361,7 +1361,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1361
1361
  required: false;
1362
1362
  default: string;
1363
1363
  };
1364
- hover: {
1364
+ isOpen: {
1365
1365
  type: BooleanConstructor;
1366
1366
  required: false;
1367
1367
  default: boolean;
@@ -1377,9 +1377,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1377
1377
  default: boolean;
1378
1378
  };
1379
1379
  }>>, {
1380
+ isOpen: boolean;
1380
1381
  direction: "left" | "right" | "top" | "bottom";
1381
1382
  expand: boolean;
1382
- hover: boolean;
1383
1383
  isDirectionFixed: boolean;
1384
1384
  }>;
1385
1385
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("toggle" | "setLock" | "unlock")[], "toggle" | "setLock" | "unlock", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -170,7 +170,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
170
170
  required: false;
171
171
  default: string;
172
172
  };
173
- hover: {
173
+ isOpen: {
174
174
  type: BooleanConstructor;
175
175
  required: false;
176
176
  default: boolean;
@@ -408,7 +408,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
408
408
  required: false;
409
409
  default: string;
410
410
  };
411
- hover: {
411
+ isOpen: {
412
412
  type: BooleanConstructor;
413
413
  required: false;
414
414
  default: boolean;
@@ -424,9 +424,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
424
424
  default: boolean;
425
425
  };
426
426
  }>>, {
427
+ isOpen: boolean;
427
428
  direction: "left" | "right" | "top" | "bottom";
428
429
  expand: boolean;
429
- hover: boolean;
430
430
  isDirectionFixed: boolean;
431
431
  }>;
432
432
  readonly WizProgressPoint: import("vue").DefineComponent<{
@@ -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
  }
@@ -1,3 +1,4 @@
1
+ import { PropType } from "vue";
1
2
  declare const _sfc_main: import("vue").DefineComponent<{
2
3
  label: {
3
4
  type: StringConstructor;
@@ -15,6 +16,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
15
16
  type: NumberConstructor;
16
17
  required: false;
17
18
  };
19
+ badgeColor: {
20
+ type: PropType<"green" | "red">;
21
+ required: false;
22
+ default: string;
23
+ };
18
24
  width: {
19
25
  type: StringConstructor;
20
26
  required: false;
@@ -25,10 +31,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
25
31
  emit: (event: "click") => void;
26
32
  onClick: () => true | void;
27
33
  variant: import("vue").ComputedRef<"default" | "active" | "disabled">;
34
+ readonly tabPaneLabelStyle: string;
35
+ readonly tabPaneNotificationStyle: Record<"green" | "red", string>;
28
36
  readonly tabPaneStyle: string;
29
37
  readonly tabPaneVariantStyle: Record<"default" | "active" | "disabled", string>;
30
- readonly tabPaneLabelStyle: string;
31
- readonly tabPaneNotificationStyle: string;
32
38
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
39
  label: {
34
40
  type: StringConstructor;
@@ -46,6 +52,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
52
  type: NumberConstructor;
47
53
  required: false;
48
54
  };
55
+ badgeColor: {
56
+ type: PropType<"green" | "red">;
57
+ required: false;
58
+ default: string;
59
+ };
49
60
  width: {
50
61
  type: StringConstructor;
51
62
  required: false;
@@ -57,5 +68,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
57
68
  width: string;
58
69
  active: boolean;
59
70
  disabled: boolean;
71
+ badgeColor: "green" | "red";
60
72
  }>;
61
73
  export default _sfc_main;
@@ -509,6 +509,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
509
509
  type: NumberConstructor;
510
510
  required: false;
511
511
  };
512
+ badgeColor: {
513
+ type: PropType<"green" | "red">;
514
+ required: false;
515
+ default: string;
516
+ };
512
517
  width: {
513
518
  type: StringConstructor;
514
519
  required: false;
@@ -519,10 +524,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
519
524
  emit: (event: "click") => void;
520
525
  onClick: () => true | void;
521
526
  variant: import("vue").ComputedRef<"default" | "active" | "disabled">;
527
+ readonly tabPaneLabelStyle: string;
528
+ readonly tabPaneNotificationStyle: Record<"green" | "red", string>;
522
529
  readonly tabPaneStyle: string;
523
530
  readonly tabPaneVariantStyle: Record<"default" | "active" | "disabled", string>;
524
- readonly tabPaneLabelStyle: string;
525
- readonly tabPaneNotificationStyle: string;
526
531
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
527
532
  label: {
528
533
  type: StringConstructor;
@@ -540,6 +545,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
540
545
  type: NumberConstructor;
541
546
  required: false;
542
547
  };
548
+ badgeColor: {
549
+ type: PropType<"green" | "red">;
550
+ required: false;
551
+ default: string;
552
+ };
543
553
  width: {
544
554
  type: StringConstructor;
545
555
  required: false;
@@ -551,6 +561,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
551
561
  width: string;
552
562
  active: boolean;
553
563
  disabled: boolean;
564
+ badgeColor: "green" | "red";
554
565
  }>;
555
566
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
556
567
  modelValue: {
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5
5
  required: false;
6
6
  default: string;
7
7
  };
8
- hover: {
8
+ isOpen: {
9
9
  type: BooleanConstructor;
10
10
  required: false;
11
11
  default: boolean;
@@ -243,7 +243,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
243
243
  required: false;
244
244
  default: string;
245
245
  };
246
- hover: {
246
+ isOpen: {
247
247
  type: BooleanConstructor;
248
248
  required: false;
249
249
  default: boolean;
@@ -259,9 +259,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
259
259
  default: boolean;
260
260
  };
261
261
  }>>, {
262
+ isOpen: boolean;
262
263
  direction: "left" | "right" | "top" | "bottom";
263
264
  expand: boolean;
264
- hover: boolean;
265
265
  isDirectionFixed: boolean;
266
266
  }>;
267
267
  export default _sfc_main;
@@ -5968,7 +5968,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5968
5968
  required: false;
5969
5969
  default: string;
5970
5970
  };
5971
- hover: {
5971
+ isOpen: {
5972
5972
  type: BooleanConstructor;
5973
5973
  required: false;
5974
5974
  default: boolean;
@@ -6206,7 +6206,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6206
6206
  required: false;
6207
6207
  default: string;
6208
6208
  };
6209
- hover: {
6209
+ isOpen: {
6210
6210
  type: BooleanConstructor;
6211
6211
  required: false;
6212
6212
  default: boolean;
@@ -6222,9 +6222,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
6222
6222
  default: boolean;
6223
6223
  };
6224
6224
  }>>, {
6225
+ isOpen: boolean;
6225
6226
  direction: "left" | "right" | "top" | "bottom";
6226
6227
  expand: boolean;
6227
- hover: boolean;
6228
6228
  isDirectionFixed: boolean;
6229
6229
  }>;
6230
6230
  readonly WizAnchor: import("vue").DefineComponent<{
@@ -1687,7 +1687,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1687
1687
  required: false;
1688
1688
  default: string;
1689
1689
  };
1690
- hover: {
1690
+ isOpen: {
1691
1691
  type: BooleanConstructor;
1692
1692
  required: false;
1693
1693
  default: boolean;
@@ -1925,7 +1925,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1925
1925
  required: false;
1926
1926
  default: string;
1927
1927
  };
1928
- hover: {
1928
+ isOpen: {
1929
1929
  type: BooleanConstructor;
1930
1930
  required: false;
1931
1931
  default: boolean;
@@ -1941,9 +1941,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1941
1941
  default: boolean;
1942
1942
  };
1943
1943
  }>>, {
1944
+ isOpen: boolean;
1944
1945
  direction: "left" | "right" | "top" | "bottom";
1945
1946
  expand: boolean;
1946
- hover: boolean;
1947
1947
  isDirectionFixed: boolean;
1948
1948
  }>;
1949
1949
  readonly WizAnchor: import("vue").DefineComponent<{
@@ -779,6 +779,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
779
779
  type: NumberConstructor;
780
780
  required: false;
781
781
  };
782
+ badgeColor: {
783
+ type: PropType<"green" | "red">;
784
+ required: false;
785
+ default: string;
786
+ };
782
787
  width: {
783
788
  type: StringConstructor;
784
789
  required: false;
@@ -789,10 +794,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
789
794
  emit: (event: "click") => void;
790
795
  onClick: () => true | void;
791
796
  variant: import("vue").ComputedRef<"default" | "active" | "disabled">;
797
+ readonly tabPaneLabelStyle: string;
798
+ readonly tabPaneNotificationStyle: Record<"green" | "red", string>;
792
799
  readonly tabPaneStyle: string;
793
800
  readonly tabPaneVariantStyle: Record<"default" | "active" | "disabled", string>;
794
- readonly tabPaneLabelStyle: string;
795
- readonly tabPaneNotificationStyle: string;
796
801
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
797
802
  label: {
798
803
  type: StringConstructor;
@@ -810,6 +815,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
810
815
  type: NumberConstructor;
811
816
  required: false;
812
817
  };
818
+ badgeColor: {
819
+ type: PropType<"green" | "red">;
820
+ required: false;
821
+ default: string;
822
+ };
813
823
  width: {
814
824
  type: StringConstructor;
815
825
  required: false;
@@ -821,6 +831,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
821
831
  width: string;
822
832
  active: boolean;
823
833
  disabled: boolean;
834
+ badgeColor: "green" | "red";
824
835
  }>;
825
836
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
826
837
  modelValue: {
@@ -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
  }[]>>;