@atlaskit/side-navigation 1.8.2 → 1.8.3

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
+ ## 1.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) - Internal changes to use space tokens for spacing values. There is no visual change.
8
+
3
9
  ## 1.8.2
4
10
 
5
11
  ### Patch Changes
@@ -41,7 +41,8 @@ var outerContainerCSS = function outerContainerCSS(opts) {
41
41
  '&::before': {
42
42
  content: "''",
43
43
  display: 'block',
44
- left: containerPadding,
44
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
45
+ left: "var(--ds-space-100, 8px)",
45
46
  right: containerPadding + opts.scrollbarWidth,
46
47
  height: scrollIndicatorHeight,
47
48
  borderRadius: scrollIndicatorBorderRadius,
@@ -56,7 +57,8 @@ var outerContainerCSS = function outerContainerCSS(opts) {
56
57
  borderRadius: scrollIndicatorBorderRadius,
57
58
  flexShrink: 0,
58
59
  height: scrollIndicatorHeight,
59
- left: containerPadding,
60
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
61
+ left: "var(--ds-space-100, 8px)",
60
62
  right: containerPadding + opts.scrollbarWidth,
61
63
  bottom: 0,
62
64
  zIndex: scrollIndicatorZIndex,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "sideEffects": false
5
5
  }
@@ -30,7 +30,8 @@ export const outerContainerCSS = opts => ({
30
30
  '&::before': {
31
31
  content: "''",
32
32
  display: 'block',
33
- left: containerPadding,
33
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
34
+ left: "var(--ds-space-100, 8px)",
34
35
  right: containerPadding + opts.scrollbarWidth,
35
36
  height: scrollIndicatorHeight,
36
37
  borderRadius: scrollIndicatorBorderRadius,
@@ -45,7 +46,8 @@ export const outerContainerCSS = opts => ({
45
46
  borderRadius: scrollIndicatorBorderRadius,
46
47
  flexShrink: 0,
47
48
  height: scrollIndicatorHeight,
48
- left: containerPadding,
49
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
50
+ left: "var(--ds-space-100, 8px)",
49
51
  right: containerPadding + opts.scrollbarWidth,
50
52
  bottom: 0,
51
53
  zIndex: scrollIndicatorZIndex,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "sideEffects": false
5
5
  }
@@ -34,7 +34,8 @@ export var outerContainerCSS = function outerContainerCSS(opts) {
34
34
  '&::before': {
35
35
  content: "''",
36
36
  display: 'block',
37
- left: containerPadding,
37
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
38
+ left: "var(--ds-space-100, 8px)",
38
39
  right: containerPadding + opts.scrollbarWidth,
39
40
  height: scrollIndicatorHeight,
40
41
  borderRadius: scrollIndicatorBorderRadius,
@@ -49,7 +50,8 @@ export var outerContainerCSS = function outerContainerCSS(opts) {
49
50
  borderRadius: scrollIndicatorBorderRadius,
50
51
  flexShrink: 0,
51
52
  height: scrollIndicatorHeight,
52
- left: containerPadding,
53
+ // TODO Delete this comment after verifying space token -> previous value `containerPadding`
54
+ left: "var(--ds-space-100, 8px)",
53
55
  right: containerPadding + opts.scrollbarWidth,
54
56
  bottom: 0,
55
57
  zIndex: scrollIndicatorZIndex,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "sideEffects": false
5
5
  }
@@ -17,7 +17,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
17
17
  readonly '&::before': {
18
18
  readonly content: "''";
19
19
  readonly display: "block";
20
- readonly left: 8;
20
+ readonly left: "var(--ds-space-100)";
21
21
  readonly right: number;
22
22
  readonly height: 2;
23
23
  readonly borderRadius: 1;
@@ -32,7 +32,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
32
32
  readonly borderRadius: 1;
33
33
  readonly flexShrink: 0;
34
34
  readonly height: 2;
35
- readonly left: 8;
35
+ readonly left: "var(--ds-space-100)";
36
36
  readonly right: number;
37
37
  readonly bottom: 0;
38
38
  readonly zIndex: 1;
@@ -17,7 +17,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
17
17
  readonly '&::before': {
18
18
  readonly content: "''";
19
19
  readonly display: "block";
20
- readonly left: 8;
20
+ readonly left: "var(--ds-space-100)";
21
21
  readonly right: number;
22
22
  readonly height: 2;
23
23
  readonly borderRadius: 1;
@@ -32,7 +32,7 @@ export declare const outerContainerCSS: (opts: StyleOpts & {
32
32
  readonly borderRadius: 1;
33
33
  readonly flexShrink: 0;
34
34
  readonly height: 2;
35
- readonly left: 8;
35
+ readonly left: "var(--ds-space-100)";
36
36
  readonly right: number;
37
37
  readonly bottom: 0;
38
38
  readonly zIndex: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "description": "A highly composable side navigation component that supports nested views.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"