@atlaskit/side-navigation 11.0.20 → 11.0.21

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,11 @@
1
1
  # @atlaskit/side-navigation
2
2
 
3
+ ## 11.0.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 11.0.20
4
10
 
5
11
  ### Patch Changes
@@ -14,7 +14,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
14
14
  readonly height: "100%";
15
15
  readonly overflow: "hidden";
16
16
  readonly position: "relative";
17
- readonly '&::before': {
17
+ readonly "&::before": {
18
18
  readonly content: "''";
19
19
  readonly display: "block";
20
20
  readonly left: "var(--ds-space-100)";
@@ -25,7 +25,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
25
25
  readonly position: "absolute";
26
26
  readonly zIndex: 1;
27
27
  };
28
- readonly '&::after': {
28
+ readonly "&::after": {
29
29
  readonly content: "''";
30
30
  readonly position: "absolute";
31
31
  readonly display: "block";
@@ -45,7 +45,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
45
45
  * to the top or bottom of the container.
46
46
  */
47
47
  export declare const innerContainerCSS: (opts: StyleOpts) => {
48
- readonly '&::after': {
48
+ readonly "&::after": {
49
49
  readonly borderRadius: "var(--ds-radius-xsmall)";
50
50
  readonly content: "''";
51
51
  readonly display: "block";
@@ -56,7 +56,7 @@ export declare const innerContainerCSS: (opts: StyleOpts) => {
56
56
  readonly zIndex: 2;
57
57
  readonly backgroundColor: "var(--ds-menu-scroll-indicator-color, var(--ds-surface))";
58
58
  };
59
- readonly '&::before'?: {
59
+ readonly "&::before"?: {
60
60
  readonly borderRadius: "var(--ds-radius-xsmall)";
61
61
  readonly content: "''";
62
62
  readonly left: 0;
@@ -79,11 +79,11 @@ export declare const containerCSS: (opts: StyleOpts) => {
79
79
  readonly marginLeft: "var(--ds-space-100)";
80
80
  readonly marginRight: "var(--ds-space-100)";
81
81
  readonly position: "relative";
82
- readonly '& [data-ds--menu--heading-item]': {
82
+ readonly "& [data-ds--menu--heading-item]": {
83
83
  readonly marginBottom: "var(--ds-space-075)";
84
84
  readonly marginTop: "var(--ds-space-200)";
85
85
  };
86
- readonly '& [data-ds--menu--skeleton-heading-item]': {
86
+ readonly "& [data-ds--menu--skeleton-heading-item]": {
87
87
  readonly marginTop: number;
88
88
  readonly marginBottom: number;
89
89
  };
@@ -14,7 +14,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
14
14
  readonly height: "100%";
15
15
  readonly overflow: "hidden";
16
16
  readonly position: "relative";
17
- readonly '&::before': {
17
+ readonly "&::before": {
18
18
  readonly content: "''";
19
19
  readonly display: "block";
20
20
  readonly left: "var(--ds-space-100)";
@@ -25,7 +25,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
25
25
  readonly position: "absolute";
26
26
  readonly zIndex: 1;
27
27
  };
28
- readonly '&::after': {
28
+ readonly "&::after": {
29
29
  readonly content: "''";
30
30
  readonly position: "absolute";
31
31
  readonly display: "block";
@@ -45,7 +45,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
45
45
  * to the top or bottom of the container.
46
46
  */
47
47
  export declare const innerContainerCSS: (opts: StyleOpts) => {
48
- readonly '&::after': {
48
+ readonly "&::after": {
49
49
  readonly borderRadius: "var(--ds-radius-xsmall)";
50
50
  readonly content: "''";
51
51
  readonly display: "block";
@@ -56,7 +56,7 @@ export declare const innerContainerCSS: (opts: StyleOpts) => {
56
56
  readonly zIndex: 2;
57
57
  readonly backgroundColor: "var(--ds-menu-scroll-indicator-color, var(--ds-surface))";
58
58
  };
59
- readonly '&::before'?: {
59
+ readonly "&::before"?: {
60
60
  readonly borderRadius: "var(--ds-radius-xsmall)";
61
61
  readonly content: "''";
62
62
  readonly left: 0;
@@ -79,11 +79,11 @@ export declare const containerCSS: (opts: StyleOpts) => {
79
79
  readonly marginLeft: "var(--ds-space-100)";
80
80
  readonly marginRight: "var(--ds-space-100)";
81
81
  readonly position: "relative";
82
- readonly '& [data-ds--menu--heading-item]': {
82
+ readonly "& [data-ds--menu--heading-item]": {
83
83
  readonly marginBottom: "var(--ds-space-075)";
84
84
  readonly marginTop: "var(--ds-space-200)";
85
85
  };
86
- readonly '& [data-ds--menu--skeleton-heading-item]': {
86
+ readonly "& [data-ds--menu--skeleton-heading-item]": {
87
87
  readonly marginTop: number;
88
88
  readonly marginBottom: number;
89
89
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "11.0.20",
3
+ "version": "11.0.21",
4
4
  "description": "A highly composable side navigation component that supports nested views.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -28,15 +28,15 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@atlaskit/css": "^0.14.0",
31
+ "@atlaskit/css": "^0.15.0",
32
32
  "@atlaskit/ds-lib": "^5.1.0",
33
- "@atlaskit/icon": "^28.3.0",
33
+ "@atlaskit/icon": "^28.5.0",
34
34
  "@atlaskit/menu": "^8.4.0",
35
35
  "@atlaskit/motion": "^5.3.0",
36
36
  "@atlaskit/platform-feature-flags": "^1.1.0",
37
- "@atlaskit/primitives": "^14.15.0",
37
+ "@atlaskit/primitives": "^15.0.0",
38
38
  "@atlaskit/theme": "^21.0.0",
39
- "@atlaskit/tokens": "^6.4.0",
39
+ "@atlaskit/tokens": "^6.5.0",
40
40
  "@babel/runtime": "^7.0.0",
41
41
  "@compiled/react": "^0.18.3"
42
42
  },
@@ -48,13 +48,13 @@
48
48
  "@af/integration-testing": "workspace:^",
49
49
  "@af/visual-regression": "workspace:^",
50
50
  "@atlaskit/atlassian-navigation": "^5.3.0",
51
- "@atlaskit/button": "^23.4.0",
51
+ "@atlaskit/button": "^23.5.0",
52
52
  "@atlaskit/docs": "^11.1.0",
53
53
  "@atlaskit/dropdown-menu": "^16.3.0",
54
54
  "@atlaskit/form": "^14.2.0",
55
55
  "@atlaskit/image": "^3.0.0",
56
56
  "@atlaskit/link": "^3.2.0",
57
- "@atlaskit/logo": "^19.7.0",
57
+ "@atlaskit/logo": "^19.9.0",
58
58
  "@atlaskit/onboarding": "^14.4.0",
59
59
  "@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
60
60
  "@atlaskit/pragmatic-drag-and-drop-live-region": "^1.3.0",