File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
app-layout/visual-refresh-toolbar/skeleton/widget-slots Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { SkeletonLayoutProps } from '../index';
8
8
9
9
import styles from '../styles.css.js' ;
10
10
11
- const BottomPageContentSlot = ( props : SkeletonLayoutProps ) => {
11
+ export const BottomPageContentSlot = ( props : SkeletonLayoutProps ) => {
12
12
const {
13
13
appLayoutState,
14
14
appLayoutProps : { placement, splitPanel } ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { SkeletonLayoutProps } from '../index';
16
16
import sharedStyles from '../../../resize/styles.css.js' ;
17
17
import styles from '../styles.css.js' ;
18
18
19
- const SidePageSlot = ( props : SkeletonLayoutProps ) => {
19
+ export const SidePageSlot = ( props : SkeletonLayoutProps ) => {
20
20
const {
21
21
appLayoutProps : { splitPanel } ,
22
22
appLayoutState,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { SkeletonLayoutProps } from '../index';
10
10
11
11
import styles from '../styles.css.js' ;
12
12
13
- const TopPageContentSlot = ( props : SkeletonLayoutProps ) => {
13
+ export const TopPageContentSlot = ( props : SkeletonLayoutProps ) => {
14
14
const {
15
15
appLayoutProps : { headerVariant, notifications } ,
16
16
appLayoutState,
Original file line number Diff line number Diff line change 1
1
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
export { PACKAGE_VERSION } from './environment' ;
4
+
5
+ // Legacy widgetized parts
4
6
export {
5
7
AppLayoutDrawerImplementation as AppLayoutDrawer ,
6
8
AppLayoutGlobalDrawersImplementation as AppLayoutGlobalDrawers ,
@@ -12,6 +14,14 @@ export {
12
14
AppLayoutSplitPanelDrawerSideImplementation as AppLayoutSplitPanelSide ,
13
15
} from '../app-layout/visual-refresh-toolbar/split-panel' ;
14
16
export { AppLayoutToolbarImplementation as AppLayoutToolbar } from '../app-layout/visual-refresh-toolbar/toolbar' ;
17
+
18
+ // Refactored widgetized parts
19
+ export { TopPageSlot as AppLayoutTopPageSlot } from '../app-layout/visual-refresh-toolbar/skeleton/widget-slots/top-page-slot' ;
20
+ export { SidePageSlot as AppLayoutSidePageSlot } from '../app-layout/visual-refresh-toolbar/skeleton/widget-slots/side-page-slot' ;
21
+ export { TopPageContentSlot as AppLayoutTopContentSlot } from '../app-layout/visual-refresh-toolbar/skeleton/widget-slots/top-page-content-slot' ;
22
+ export { BottomPageContentSlot as AppLayoutBottomContentSlot } from '../app-layout/visual-refresh-toolbar/skeleton/widget-slots/bottom-page-content-slot' ;
23
+ export { AppLayoutState as AppLayoutWidgetizedState } from '../app-layout/visual-refresh-toolbar/app-layout-state' ;
24
+
15
25
export { SplitPanelImplementation as SplitPanel } from '../split-panel/implementation' ;
16
26
export { BreadcrumbGroupImplementation as BreadcrumbGroup } from '../breadcrumb-group/implementation' ;
17
27
export { DrawerImplementation as Drawer } from '../drawer/implementation' ;
You can’t perform that action at this time.
0 commit comments