@atlaskit/ds-explorations 1.5.0 → 1.6.0

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/ds-explorations
2
2
 
3
+ ## 1.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`9f9498aafb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9498aafb1) - [ux] Box API introduces `hidden` for `overflow` prop.
8
+
3
9
  ## 1.5.0
4
10
 
5
11
  ### Minor Changes
@@ -183,6 +183,9 @@ var positionMap = {
183
183
  var overflowMap = {
184
184
  auto: (0, _react2.css)({
185
185
  overflow: 'auto'
186
+ }),
187
+ hidden: (0, _react2.css)({
188
+ overflow: 'hidden'
186
189
  })
187
190
  };
188
191
  var baseStyles = (0, _react2.css)({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "sideEffects": false
5
5
  }
@@ -166,6 +166,9 @@ const positionMap = {
166
166
  const overflowMap = {
167
167
  auto: css({
168
168
  overflow: 'auto'
169
+ }),
170
+ hidden: css({
171
+ overflow: 'hidden'
169
172
  })
170
173
  };
171
174
  const baseStyles = css({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "sideEffects": false
5
5
  }
@@ -170,6 +170,9 @@ var positionMap = {
170
170
  var overflowMap = {
171
171
  auto: css({
172
172
  overflow: 'auto'
173
+ }),
174
+ hidden: css({
175
+ overflow: 'hidden'
173
176
  })
174
177
  };
175
178
  var baseStyles = css({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "sideEffects": false
5
5
  }
@@ -172,6 +172,7 @@ declare const positionMap: {
172
172
  declare type Overflow = keyof typeof overflowMap;
173
173
  declare const overflowMap: {
174
174
  auto: import("@emotion/react").SerializedStyles;
175
+ hidden: import("@emotion/react").SerializedStyles;
175
176
  };
176
177
  /**
177
178
  * THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "An experimental package for exploration and validation of spacing / typography foundations.",
5
5
  "license": "Apache-2.0",
6
6
  "atlassian": {
package/report.api.md CHANGED
@@ -378,6 +378,7 @@ type Overflow = keyof typeof overflowMap;
378
378
  // @public (undocumented)
379
379
  const overflowMap: {
380
380
  auto: SerializedStyles;
381
+ hidden: SerializedStyles;
381
382
  };
382
383
 
383
384
  // @public (undocumented)
@@ -284,6 +284,7 @@ const positionMap = {
284
284
  type Overflow = keyof typeof overflowMap;
285
285
  const overflowMap = {
286
286
  auto: css({ overflow: 'auto' }),
287
+ hidden: css({ overflow: 'hidden' }),
287
288
  };
288
289
 
289
290
  const baseStyles = css({
@@ -362,6 +362,7 @@ type Overflow = keyof typeof overflowMap;
362
362
  // @public (undocumented)
363
363
  const overflowMap: {
364
364
  auto: SerializedStyles;
365
+ hidden: SerializedStyles;
365
366
  };
366
367
 
367
368
  // @public (undocumented)