From 01e31367ae0c7ef9822fbc04c1b4c99ad8469e46 Mon Sep 17 00:00:00 2001 From: Gethin Webster Date: Mon, 18 May 2026 12:24:43 +0000 Subject: [PATCH] feat(wizard): release customPrimaryActions for all systems Remove @awsuiSystem core annotation from customPrimaryActions prop, making it available to console and all other systems. This slot prop allows replacing the default primary action buttons (Cancel, Next, Finish) with custom actions. Step navigation continues to be managed by the component. --- .../snapshot-tests/__snapshots__/documenter.test.ts.snap | 3 --- src/wizard/interfaces.ts | 2 -- 2 files changed, 5 deletions(-) diff --git a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap index 5e121a8df6..982e5ddec9 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -32805,9 +32805,6 @@ Use this if you need to wait for a response from the server before the user can "description": "Specifies right-aligned custom primary actions for the wizard. Overwrites existing buttons (e.g. Cancel, Next, Finish).", "isDefault": false, "name": "customPrimaryActions", - "systemTags": [ - "core", - ], }, { "description": "Specifies left-aligned secondary actions for the wizard. Use a button dropdown if multiple actions are required.", diff --git a/src/wizard/interfaces.ts b/src/wizard/interfaces.ts index 97fb647e38..2cf0dab770 100644 --- a/src/wizard/interfaces.ts +++ b/src/wizard/interfaces.ts @@ -105,8 +105,6 @@ export interface WizardProps extends BaseComponentProps { /** * Specifies right-aligned custom primary actions for the wizard. Overwrites existing buttons (e.g. Cancel, Next, Finish). - * - * @awsuiSystem core */ customPrimaryActions?: React.ReactNode;