identity-admin-ui 1.11.25 → 1.11.27
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/cjs/index.js +1 -1
- package/lib/cjs/types/components/Dialog/ActionDialog.d.ts +3 -1
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/esm/index.js +1 -1
- package/lib/esm/types/components/Dialog/ActionDialog.d.ts +3 -1
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -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;
|