enwawa-ui 4.1.38 → 4.1.40

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 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 {
@@ -5946,6 +5962,11 @@ export interface OrModuleTableHeaderProps {
5946
5962
  * Icon for second button
5947
5963
  */
5948
5964
  secondaryButtonIcon?: React.ReactNode;
5965
+ /**
5966
+ * Additional elements rendered alongside the action buttons
5967
+ * (next to the secondary and primary buttons)
5968
+ */
5969
+ customButtonsElements?: React.ReactNode;
5949
5970
  /**
5950
5971
  * justify the contents of the main container
5951
5972
  */