@atlaskit/page-layout 1.3.9 → 1.3.10
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/page-layout
|
|
2
2
|
|
|
3
|
+
## 1.3.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 1.3.9
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -92,6 +92,10 @@ export interface LeftSidebarProps extends SlotWidthProps {
|
|
|
92
92
|
width?: number;
|
|
93
93
|
}
|
|
94
94
|
export declare type SidebarResizeControllerProps = {
|
|
95
|
+
/**
|
|
96
|
+
* React children!
|
|
97
|
+
*/
|
|
98
|
+
children: ReactNode;
|
|
95
99
|
/**
|
|
96
100
|
* Called when left-sidebar expanded.
|
|
97
101
|
*/
|
|
@@ -104,10 +108,6 @@ export declare type SidebarResizeControllerProps = {
|
|
|
104
108
|
export declare type DimensionNames = 'leftPanelWidth' | 'bannerHeight' | 'topNavigationHeight' | 'leftSidebarWidth' | 'leftSidebarFlyoutWidth' | 'rightSidebarWidth' | 'rightPanelWidth';
|
|
105
109
|
export declare type Dimensions = Partial<Record<DimensionNames, number>>;
|
|
106
110
|
export interface PageLayoutProps extends SidebarResizeControllerProps {
|
|
107
|
-
/**
|
|
108
|
-
* React children!
|
|
109
|
-
*/
|
|
110
|
-
children: ReactNode;
|
|
111
111
|
skipLinksLabel?: string;
|
|
112
112
|
/**
|
|
113
113
|
* A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "A collection of components which let you compose an application's page layout.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"atlaskit:src": "src/index.tsx",
|
|
17
17
|
"atlassian": {
|
|
18
|
-
"disableProductCI": true,
|
|
19
18
|
"team": "Design System Team",
|
|
20
19
|
"deprecatedAutoEntryPoints": true,
|
|
21
20
|
"releaseModel": "scheduled",
|
|
@@ -29,8 +28,8 @@
|
|
|
29
28
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
30
29
|
"@atlaskit/icon": "^21.11.0",
|
|
31
30
|
"@atlaskit/motion": "^1.3.0",
|
|
32
|
-
"@atlaskit/theme": "^12.
|
|
33
|
-
"@atlaskit/tokens": "^1.
|
|
31
|
+
"@atlaskit/theme": "^12.3.0",
|
|
32
|
+
"@atlaskit/tokens": "^1.2.0",
|
|
34
33
|
"@babel/runtime": "^7.0.0",
|
|
35
34
|
"@emotion/react": "^11.7.1",
|
|
36
35
|
"bind-event-listener": "^2.1.1",
|
|
@@ -47,14 +46,14 @@
|
|
|
47
46
|
"@atlaskit/docs": "*",
|
|
48
47
|
"@atlaskit/drawer": "^7.4.0",
|
|
49
48
|
"@atlaskit/icon": "*",
|
|
50
|
-
"@atlaskit/logo": "^13.
|
|
51
|
-
"@atlaskit/menu": "^1.
|
|
49
|
+
"@atlaskit/logo": "^13.11.0",
|
|
50
|
+
"@atlaskit/menu": "^1.5.0",
|
|
52
51
|
"@atlaskit/notification-indicator": "^9.0.0",
|
|
53
52
|
"@atlaskit/notification-log-client": "^6.0.0",
|
|
54
53
|
"@atlaskit/onboarding": "^10.6.0",
|
|
55
54
|
"@atlaskit/popup": "^1.5.0",
|
|
56
55
|
"@atlaskit/section-message": "^6.3.0",
|
|
57
|
-
"@atlaskit/side-navigation": "^1.
|
|
56
|
+
"@atlaskit/side-navigation": "^1.6.0",
|
|
58
57
|
"@atlaskit/ssr": "*",
|
|
59
58
|
"@atlaskit/tooltip": "*",
|
|
60
59
|
"@atlaskit/visual-regression": "*",
|
|
@@ -87,9 +86,11 @@
|
|
|
87
86
|
"analytics": [
|
|
88
87
|
"analytics-next"
|
|
89
88
|
],
|
|
89
|
+
"design-tokens": [
|
|
90
|
+
"color"
|
|
91
|
+
],
|
|
90
92
|
"theming": [
|
|
91
|
-
"react-context"
|
|
92
|
-
"tokens"
|
|
93
|
+
"react-context"
|
|
93
94
|
],
|
|
94
95
|
"deprecation": "no-deprecated-imports",
|
|
95
96
|
"styling": [
|