@wizleap-inc/wiz-ui-next 2.19.0 → 2.20.1

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.
@@ -1,5 +1,5 @@
1
- import { PropType } from "vue";
2
- type messageType = {
1
+ import { PropType, Component as ComponentType } from "vue";
2
+ type TextMessage = {
3
3
  text: string;
4
4
  type: "default" | "error";
5
5
  };
@@ -9,7 +9,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
9
9
  required: true;
10
10
  };
11
11
  messages: {
12
- type: PropType<messageType[]>;
12
+ type: PropType<(ComponentType<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | TextMessage)[]>;
13
13
  required: true;
14
14
  };
15
15
  width: {
@@ -24,6 +24,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
24
  }, {
25
25
  props: any;
26
26
  emit: (e: "update:modelValue", value: boolean) => void;
27
+ isTextMessage: (message: TextMessage | ComponentType) => message is TextMessage;
27
28
  visible: import("vue").WritableComputedRef<boolean>;
28
29
  close: () => void;
29
30
  readonly ARIA_LABELS: {
@@ -65,10 +66,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
65
66
  readonly CLOSE: "モーダルを閉じる";
66
67
  };
67
68
  };
68
- readonly informationPanelStyle: string;
69
69
  readonly informationPanelBorderStyle: string;
70
70
  readonly informationPanelFontStyle: Record<"default" | "error", string>;
71
71
  readonly informationPanelIconStyle: string;
72
+ readonly informationPanelStyle: string;
73
+ readonly WizIClose: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
72
74
  readonly WizIconButton: import("vue").DefineComponent<{
73
75
  icon: {
74
76
  type: PropType<import('../../../components').TIcon>;
@@ -141,7 +143,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
141
143
  disabled: boolean;
142
144
  variant: "transparent" | "link" | "sub" | "primary";
143
145
  }>;
144
- readonly WizIClose: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
145
146
  readonly WizVStack: import("vue").DefineComponent<{
146
147
  align: {
147
148
  type: PropType<"stretch" | "center" | "end" | "start">;
@@ -615,7 +616,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
615
616
  required: true;
616
617
  };
617
618
  messages: {
618
- type: PropType<messageType[]>;
619
+ type: PropType<(ComponentType<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | TextMessage)[]>;
619
620
  required: true;
620
621
  };
621
622
  width: {