@wizleap-inc/wiz-ui-next 2.24.1 → 2.25.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.
@@ -1,9 +1,13 @@
1
1
  import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
2
2
  import { PropType } from "vue";
3
3
  declare const _sfc_main: import("vue").DefineComponent<{
4
+ name: {
5
+ type: StringConstructor;
6
+ required: false;
7
+ };
4
8
  src: {
5
9
  type: StringConstructor;
6
- required: true;
10
+ required: false;
7
11
  };
8
12
  ariaLabel: {
9
13
  type: StringConstructor;
@@ -17,17 +21,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
21
  color: {
18
22
  type: PropType<ColorKeys>;
19
23
  required: false;
20
- default: string;
21
24
  };
22
25
  bgColor: {
23
26
  type: PropType<ColorKeys>;
24
27
  required: false;
25
- default: string;
26
28
  };
27
29
  alt: {
28
30
  type: StringConstructor;
29
31
  required: false;
30
32
  };
33
+ /**
34
+ * @deprecated この プロパティ は削除予定です。代わりに `name` プロパティを使ってください。
35
+ */
31
36
  fallback: {
32
37
  type: StringConstructor;
33
38
  required: false;
@@ -42,17 +47,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
42
47
  onClick: () => false | void;
43
48
  isImgLoadSuccess: import("vue").Ref<boolean>;
44
49
  onError: () => void;
50
+ altHeader: import("vue").ComputedRef<string>;
51
+ avatarBgColor: import("vue").ComputedRef<string | undefined>;
52
+ fontColor: import("vue").ComputedRef<ColorKeys>;
45
53
  readonly avatarStyle: string;
46
54
  readonly avatarImageStyle: string;
47
55
  readonly avatarFallbackStyle: string;
48
56
  readonly avatarClickableStyle: string;
49
- readonly backgroundStyle: Record<ColorKeys, string>;
50
57
  readonly sizeStyle: Record<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max", string>;
51
58
  readonly colorStyle: Record<ColorKeys, string>;
52
59
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
60
+ name: {
61
+ type: StringConstructor;
62
+ required: false;
63
+ };
53
64
  src: {
54
65
  type: StringConstructor;
55
- required: true;
66
+ required: false;
56
67
  };
57
68
  ariaLabel: {
58
69
  type: StringConstructor;
@@ -66,17 +77,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
66
77
  color: {
67
78
  type: PropType<ColorKeys>;
68
79
  required: false;
69
- default: string;
70
80
  };
71
81
  bgColor: {
72
82
  type: PropType<ColorKeys>;
73
83
  required: false;
74
- default: string;
75
84
  };
76
85
  alt: {
77
86
  type: StringConstructor;
78
87
  required: false;
79
88
  };
89
+ /**
90
+ * @deprecated この プロパティ は削除予定です。代わりに `name` プロパティを使ってください。
91
+ */
80
92
  fallback: {
81
93
  type: StringConstructor;
82
94
  required: false;
@@ -88,8 +100,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
88
100
  }>> & {
89
101
  onClick?: ((...args: any[]) => any) | undefined;
90
102
  }, {
91
- bgColor: ColorKeys;
92
- color: ColorKeys;
93
103
  size: "at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max";
94
104
  clickable: boolean;
95
105
  }>;
@@ -39,7 +39,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
39
39
  default: string;
40
40
  };
41
41
  autocomplete: {
42
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
42
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
43
43
  required: false;
44
44
  default: string;
45
45
  };
@@ -100,7 +100,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
100
100
  default: string;
101
101
  };
102
102
  autocomplete: {
103
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
103
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
104
104
  required: false;
105
105
  default: string;
106
106
  };
@@ -112,7 +112,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
112
112
  width: string;
113
113
  disabled: boolean;
114
114
  expand: boolean;
115
- autocomplete: "off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
115
+ autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
116
116
  error: boolean;
117
117
  spaceType: "left" | "right" | "none" | "both";
118
118
  }>;
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5
5
  required: true;
6
6
  };
7
7
  value: {
8
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
8
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
9
9
  required: false;
10
10
  };
11
11
  id: {
@@ -87,7 +87,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
87
87
  required: true;
88
88
  };
89
89
  value: {
90
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
90
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
91
91
  required: false;
92
92
  };
93
93
  id: {
@@ -130,7 +130,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
130
130
  default: string;
131
131
  };
132
132
  autocomplete: {
133
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
133
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
134
134
  required: false;
135
135
  default: string;
136
136
  };
@@ -191,7 +191,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
191
191
  default: string;
192
192
  };
193
193
  autocomplete: {
194
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
194
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
195
195
  required: false;
196
196
  default: string;
197
197
  };
@@ -203,7 +203,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
203
203
  width: string;
204
204
  disabled: boolean;
205
205
  expand: boolean;
206
- autocomplete: "off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
206
+ autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
207
207
  error: boolean;
208
208
  spaceType: "left" | "right" | "none" | "both";
209
209
  }>;
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
5
5
  required: true;
6
6
  };
7
7
  value: {
8
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
8
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
9
9
  required: false;
10
10
  };
11
11
  id: {
@@ -46,7 +46,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
46
  required: true;
47
47
  };
48
48
  value: {
49
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
49
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
50
50
  required: false;
51
51
  };
52
52
  id: {
@@ -93,7 +93,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
93
93
  required: true;
94
94
  };
95
95
  value: {
96
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
96
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
97
97
  required: false;
98
98
  };
99
99
  id: {
@@ -175,7 +175,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
175
175
  required: true;
176
176
  };
177
177
  value: {
178
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
178
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
179
179
  required: false;
180
180
  };
181
181
  id: {
@@ -1029,7 +1029,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1029
1029
  required: true;
1030
1030
  };
1031
1031
  value: {
1032
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
1032
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
1033
1033
  required: false;
1034
1034
  };
1035
1035
  id: {
@@ -1111,7 +1111,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1111
1111
  required: true;
1112
1112
  };
1113
1113
  value: {
1114
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
1114
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
1115
1115
  required: false;
1116
1116
  };
1117
1117
  id: {
@@ -57,7 +57,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
57
57
  required: true;
58
58
  };
59
59
  value: {
60
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
60
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
61
61
  required: false;
62
62
  };
63
63
  id: {
@@ -139,7 +139,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
139
139
  required: true;
140
140
  };
141
141
  value: {
142
- type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
142
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
143
143
  required: false;
144
144
  };
145
145
  id: {
@@ -31,7 +31,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
31
31
  required: false;
32
32
  };
33
33
  autocomplete: {
34
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
34
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
35
35
  required: false;
36
36
  default: string;
37
37
  };
@@ -94,7 +94,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
94
94
  default: string;
95
95
  };
96
96
  autocomplete: {
97
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
97
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
98
98
  required: false;
99
99
  default: string;
100
100
  };
@@ -155,7 +155,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
155
155
  default: string;
156
156
  };
157
157
  autocomplete: {
158
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
158
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
159
159
  required: false;
160
160
  default: string;
161
161
  };
@@ -167,7 +167,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
167
167
  width: string;
168
168
  disabled: boolean;
169
169
  expand: boolean;
170
- autocomplete: "off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
170
+ autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
171
171
  error: boolean;
172
172
  spaceType: "left" | "right" | "none" | "both";
173
173
  }>;
@@ -202,7 +202,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
202
202
  required: false;
203
203
  };
204
204
  autocomplete: {
205
- type: PropType<"off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
205
+ type: PropType<"name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo">;
206
206
  required: false;
207
207
  default: string;
208
208
  };
@@ -213,6 +213,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
213
213
  }, {
214
214
  disabled: boolean;
215
215
  expand: boolean;
216
- autocomplete: "off" | "on" | "name" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
216
+ autocomplete: "name" | "off" | "on" | "honorificPrefix" | "givenName" | "additionalName" | "familyName" | "honorificSuffix" | "nickname" | "email" | "username" | "newPassword" | "currentPassword" | "oneTimeCode" | "organizationTitle" | "organization" | "streetAddress" | "addressLine1" | "addressLine2" | "addressLine3" | "addressLevel4" | "addressLevel3" | "addressLevel2" | "addressLevel1" | "country" | "countryName" | "postalCode" | "ccName" | "ccGivenName" | "ccAdditionalName" | "ccFamilyName" | "ccNumber" | "ccExp" | "ccExpMonth" | "ccExpYear" | "ccCsc" | "ccType" | "transactionAmount" | "language" | "bday" | "bdayDay" | "bdayMonth" | "bdayYear" | "sex" | "tel" | "telCountryCode" | "telNational" | "telAreaCode" | "telLocal" | "telExtension" | "impp" | "url" | "photo";
217
217
  }>;
218
218
  export default _sfc_main;