enwawa-ui 4.1.37 → 4.1.39
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.
- package/lib/index.d.ts +16 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +201 -178
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +201 -178
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4086,6 +4086,14 @@ export interface TmLoginPhoneProps {
|
|
|
4086
4086
|
* logo
|
|
4087
4087
|
*/
|
|
4088
4088
|
logo: React.ReactNode;
|
|
4089
|
+
/**
|
|
4090
|
+
* When provided, replaces the phone form with a maintenance notice.
|
|
4091
|
+
* The header/logo is preserved.
|
|
4092
|
+
*/
|
|
4093
|
+
maintenance?: {
|
|
4094
|
+
title: string;
|
|
4095
|
+
description: string;
|
|
4096
|
+
};
|
|
4089
4097
|
}
|
|
4090
4098
|
export const TmLoginPhone: React.FC<TmLoginPhoneProps>;
|
|
4091
4099
|
export interface AtCountdownProps {
|
|
@@ -4192,6 +4200,14 @@ export interface TmLoginPhoneCodeProps {
|
|
|
4192
4200
|
* logo
|
|
4193
4201
|
*/
|
|
4194
4202
|
logo?: React.ReactNode;
|
|
4203
|
+
/**
|
|
4204
|
+
* When provided, replaces the code form with a maintenance notice.
|
|
4205
|
+
* The header/logo is preserved.
|
|
4206
|
+
*/
|
|
4207
|
+
maintenance?: {
|
|
4208
|
+
title: string;
|
|
4209
|
+
description: string;
|
|
4210
|
+
};
|
|
4195
4211
|
}
|
|
4196
4212
|
export const TmLoginPhoneCode: React.FC<TmLoginPhoneCodeProps>;
|
|
4197
4213
|
export interface MarkersArray {
|