From cb409aec31dccebd64475d1db0924c12b0032e40 Mon Sep 17 00:00:00 2001 From: Gethin Webster Date: Mon, 18 May 2026 12:24:16 +0000 Subject: [PATCH] feat(container): release disableFooterPaddings for all systems Remove @awsuiSystem core annotation from disableFooterPaddings prop, making it available to console and all other systems. This is a simple boolean prop that removes default footer padding. No API changes, no new dependencies. --- .../snapshot-tests/__snapshots__/documenter.test.ts.snap | 3 --- src/container/interfaces.ts | 1 - 2 files changed, 4 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..76ac094faa 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -9643,9 +9643,6 @@ exports[`Components definition for container matches the snapshot: container 1`] "description": "Determines whether the container footer has padding. If \`true\`, removes the default padding from the footer.", "name": "disableFooterPaddings", "optional": true, - "systemTags": [ - "core", - ], "type": "boolean", }, { diff --git a/src/container/interfaces.ts b/src/container/interfaces.ts index 1a447d0ef1..97f36ff5ca 100644 --- a/src/container/interfaces.ts +++ b/src/container/interfaces.ts @@ -69,7 +69,6 @@ export interface ContainerProps extends BaseComponentProps { /** * Determines whether the container footer has padding. If `true`, removes the default padding from the footer. - * @awsuiSystem core */ disableFooterPaddings?: boolean;