@gearbox-protocol/ui-kit 3.14.0-next.16 → 3.14.0-next.17

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.
@@ -11,10 +11,14 @@ export interface TransactionConfirmDialogViewProps {
11
11
  readonly previewLoading?: boolean;
12
12
  readonly previewError?: Error | null;
13
13
  readonly previewErrorTitle?: string;
14
+ readonly previewClassName?: string;
15
+ readonly containerClassName?: string;
16
+ readonly containerTestId?: string;
17
+ readonly shellTestId?: string;
14
18
  readonly execution: React.ReactNode;
15
19
  readonly progressSteps?: ReadonlyArray<TransactionExecutionStepView>;
16
20
  readonly renderProgressStepLabel?: (step: TransactionExecutionStepView) => React.ReactNode;
17
21
  readonly result?: React.ReactNode;
18
22
  readonly hideTitleAddonOnResult?: boolean;
19
23
  }
20
- export declare function TransactionConfirmDialogView({ open, onClose, phase, title, titleAddon, preview, previewLoading, previewError, previewErrorTitle, execution, progressSteps, renderProgressStepLabel, result, hideTitleAddonOnResult, }: TransactionConfirmDialogViewProps): React.ReactElement | null;
24
+ export declare function TransactionConfirmDialogView({ open, onClose, phase, title, titleAddon, preview, previewLoading, previewError, previewErrorTitle, previewClassName, containerClassName, containerTestId, shellTestId, execution, progressSteps, renderProgressStepLabel, result, hideTitleAddonOnResult, }: TransactionConfirmDialogViewProps): React.ReactElement | null;
@@ -6,5 +6,12 @@ export declare class TransactionConfirmDialogTest {
6
6
  }
7
7
  /** Outer dialog card: mobile-first full width, fixed 560px from md up. */
8
8
  export declare const transactionConfirmDialogShellVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
9
+ /**
10
+ * Modal confirm: use available viewport height; inner preview scrolls only when
11
+ * content overflows (see `transactionConfirmPreviewScrollVariants`).
12
+ */
13
+ export declare const transactionConfirmModalContainerVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
14
+ /** Scrollable preview column inside confirm / execute body. */
15
+ export declare const transactionConfirmPreviewScrollVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
9
16
  /** Inner shell content: fill the padded dialog container without re-applying width. */
10
17
  export declare const transactionConfirmShellContentVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/ui-kit",
3
- "version": "3.14.0-next.16",
3
+ "version": "3.14.0-next.17",
4
4
  "description": "Internal UI components",
5
5
  "repository": "https://github.com/gearbox-protocol/ui-kit",
6
6
  "license": "MIT",