@gearbox-protocol/ui-kit 3.14.0-next.61 → 3.14.0-next.62
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/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmModalView.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ export interface TransactionConfirmModalViewProps extends Omit<TransactionConfir
|
|
|
4
4
|
readonly open: boolean;
|
|
5
5
|
readonly onClose: () => void;
|
|
6
6
|
readonly title: React.ReactNode;
|
|
7
|
-
readonly titleAddon
|
|
8
|
-
readonly hideTitleAddonOnResult
|
|
9
|
-
readonly containerClassName
|
|
10
|
-
readonly containerTestId
|
|
11
|
-
readonly shellTestId
|
|
7
|
+
readonly titleAddon?: React.ReactNode | undefined;
|
|
8
|
+
readonly hideTitleAddonOnResult?: boolean | undefined;
|
|
9
|
+
readonly containerClassName?: string | undefined;
|
|
10
|
+
readonly containerTestId?: string | undefined;
|
|
11
|
+
readonly shellTestId?: string | undefined;
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
*
|
package/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmPageView.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { TransactionConfirmShellProps } from './TransactionConfirmShell';
|
|
3
3
|
export interface TransactionConfirmPageViewProps extends Omit<TransactionConfirmShellProps, "header" | "data-testid"> {
|
|
4
4
|
readonly title: React.ReactNode;
|
|
5
|
-
readonly titleAddon
|
|
6
|
-
readonly hideTitleAddonOnResult
|
|
7
|
-
readonly containerClassName
|
|
8
|
-
readonly containerTestId
|
|
9
|
-
readonly shellTestId
|
|
5
|
+
readonly titleAddon?: React.ReactNode | undefined;
|
|
6
|
+
readonly hideTitleAddonOnResult?: boolean | undefined;
|
|
7
|
+
readonly containerClassName?: string | undefined;
|
|
8
|
+
readonly containerTestId?: string | undefined;
|
|
9
|
+
readonly shellTestId?: string | undefined;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
12
|
*
|