identity-admin-ui 1.11.25 → 1.11.26

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.
@@ -20,5 +20,7 @@ export interface ActionDialogProps {
20
20
  buttonText?: string;
21
21
  /** Button text for secondary action */
22
22
  secondaryButtonText?: string;
23
+ /** Loading indicator for action button */
24
+ loading?: boolean;
23
25
  }
24
- export declare function ActionDialog({ open, title, message, secondaryTitle, secondaryMessage, isSecondaryAction, onClose, onAction, onSecondaryAction, secondaryButtonText, buttonText, }: ActionDialogProps): import("react/jsx-runtime").JSX.Element;
26
+ export declare function ActionDialog({ open, title, message, secondaryTitle, secondaryMessage, isSecondaryAction, onClose, onAction, onSecondaryAction, secondaryButtonText, buttonText, loading, }: ActionDialogProps): import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -765,8 +765,10 @@ interface ActionDialogProps {
765
765
  buttonText?: string;
766
766
  /** Button text for secondary action */
767
767
  secondaryButtonText?: string;
768
+ /** Loading indicator for action button */
769
+ loading?: boolean;
768
770
  }
769
- declare function ActionDialog({ open, title, message, secondaryTitle, secondaryMessage, isSecondaryAction, onClose, onAction, onSecondaryAction, secondaryButtonText, buttonText, }: ActionDialogProps): react_jsx_runtime.JSX.Element;
771
+ declare function ActionDialog({ open, title, message, secondaryTitle, secondaryMessage, isSecondaryAction, onClose, onAction, onSecondaryAction, secondaryButtonText, buttonText, loading, }: ActionDialogProps): react_jsx_runtime.JSX.Element;
770
772
 
771
773
  /**
772
774
  * Props for the IdentityShow component, providing information
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.11.25",
3
+ "version": "1.11.26",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",