@equinor/ioc-common-frontend 11.0.0 → 11.1.1
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/build/index.d.ts +2 -0
- package/build/index.esm.js +2 -2
- package/build/index.esm.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/types/components/ConfirmationDialog/ConfirmationDialog.d.ts +2 -0
- package/build/types/components/ConfirmationDialog/ConfirmationDialog.d.ts.map +1 -1
- package/build/types/components/ConfirmationDialog/ConfirmationDialog.stories.d.ts +1 -0
- package/build/types/components/ConfirmationDialog/ConfirmationDialog.stories.d.ts.map +1 -1
- package/build/types/components/ConfirmationDialog/ConfirmationDialog.styles.d.ts.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -880,6 +880,8 @@ interface ConfirmationDialogProps {
|
|
|
880
880
|
confirmtext: string | React.ReactNode;
|
|
881
881
|
confirmButtonType: 'delete' | 'save' | 'remove';
|
|
882
882
|
cancelText: string;
|
|
883
|
+
confirmationButtonText?: string;
|
|
884
|
+
reverseButtonOrder?: boolean;
|
|
883
885
|
}
|
|
884
886
|
declare const ConfirmationDialog: React.FC<ConfirmationDialogProps>;
|
|
885
887
|
|