@atlaskit/primitives 18.0.1 → 18.0.2

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/constellation/anchor/code.mdx +2 -2
  3. package/constellation/bleed/code.mdx +2 -2
  4. package/constellation/box/code.mdx +2 -2
  5. package/constellation/flex/code.mdx +2 -2
  6. package/constellation/grid/code.mdx +2 -2
  7. package/constellation/inline/code.mdx +2 -2
  8. package/constellation/metric-text/code.mdx +2 -2
  9. package/constellation/pressable/code.mdx +2 -2
  10. package/constellation/stack/code.mdx +2 -2
  11. package/constellation/text/code.mdx +2 -2
  12. package/dist/cjs/compiled/components/anchor.js +1 -1
  13. package/dist/cjs/compiled/components/bleed.js +1 -1
  14. package/dist/cjs/compiled/components/box.js +1 -1
  15. package/dist/cjs/compiled/components/flex.js +1 -1
  16. package/dist/cjs/compiled/components/focusable.js +1 -1
  17. package/dist/cjs/compiled/components/grid.js +1 -1
  18. package/dist/cjs/compiled/components/inline.js +1 -1
  19. package/dist/cjs/compiled/components/metric-text.js +1 -1
  20. package/dist/cjs/compiled/components/pressable.js +1 -1
  21. package/dist/cjs/compiled/components/stack.js +1 -1
  22. package/dist/cjs/compiled/components/text.js +1 -1
  23. package/dist/cjs/compiled/responsive/hide.js +1 -1
  24. package/dist/cjs/compiled/responsive/show.js +1 -1
  25. package/dist/es2019/compiled/components/anchor.js +1 -1
  26. package/dist/es2019/compiled/components/bleed.js +1 -1
  27. package/dist/es2019/compiled/components/box.js +1 -1
  28. package/dist/es2019/compiled/components/flex.js +1 -1
  29. package/dist/es2019/compiled/components/focusable.js +1 -1
  30. package/dist/es2019/compiled/components/grid.js +1 -1
  31. package/dist/es2019/compiled/components/inline.js +1 -1
  32. package/dist/es2019/compiled/components/metric-text.js +1 -1
  33. package/dist/es2019/compiled/components/pressable.js +1 -1
  34. package/dist/es2019/compiled/components/stack.js +1 -1
  35. package/dist/es2019/compiled/components/text.js +1 -1
  36. package/dist/es2019/compiled/responsive/hide.js +1 -1
  37. package/dist/es2019/compiled/responsive/show.js +1 -1
  38. package/dist/esm/compiled/components/anchor.js +1 -1
  39. package/dist/esm/compiled/components/bleed.js +1 -1
  40. package/dist/esm/compiled/components/box.js +1 -1
  41. package/dist/esm/compiled/components/flex.js +1 -1
  42. package/dist/esm/compiled/components/focusable.js +1 -1
  43. package/dist/esm/compiled/components/grid.js +1 -1
  44. package/dist/esm/compiled/components/inline.js +1 -1
  45. package/dist/esm/compiled/components/metric-text.js +1 -1
  46. package/dist/esm/compiled/components/pressable.js +1 -1
  47. package/dist/esm/compiled/components/stack.js +1 -1
  48. package/dist/esm/compiled/components/text.js +1 -1
  49. package/dist/esm/compiled/responsive/hide.js +1 -1
  50. package/dist/esm/compiled/responsive/show.js +1 -1
  51. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/primitives
2
2
 
3
+ ## 18.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 18.0.1
4
10
 
5
11
  ### Patch Changes
@@ -3,7 +3,7 @@ title: Anchor
3
3
  description: An anchor is a primitive for building custom links.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Anchor
9
9
  ---
@@ -20,4 +20,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
20
20
 
21
21
  Anchor also supports all valid `HTMLAnchorElement` props.
22
22
 
23
- <TSMorphProps exportName="Anchor" packageName="@atlaskit/primitives" />
23
+ <TSMorphProps exportName="Anchor" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Bleed
3
3
  description: A bleed controls negative whitespace in layouts.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Bleed
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Bleed" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Bleed" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Box
3
3
  description: A box is a generic container that provides managed access to design tokens.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Box
9
9
  ---
@@ -21,4 +21,4 @@ default is a `div`, so it would support all valid `HTMLDivElement` props.
21
21
 
22
22
  ## Props
23
23
 
24
- <TSMorphProps exportName="Box" packageName="@atlaskit/primitives" />
24
+ <TSMorphProps exportName="Box" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Flex
3
3
  description: A flex implements the CSS flexbox API.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Flex
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Flex" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Flex" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Grid
3
3
  description: A grid uses the CSS grid API to create consistent layouts.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Grid
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Grid" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Grid" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Inline
3
3
  description: An inline manages the horizontal layout of direct children using flexbox.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Inline
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Inline" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Inline" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: MetricText
3
3
  description: MetricText is a token-backed typography component to display metrics.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - MetricText
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="MetricText" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="MetricText" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Pressable
3
3
  description: A pressable is a primitive for building custom buttons.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Pressable
9
9
  ---
@@ -21,4 +21,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
21
21
  Pressable also supports all valid `HTMLButtonElement` props, except for `disabled` which is replaced
22
22
  by the `isDisabled` prop.
23
23
 
24
- <TSMorphProps exportName="Pressable" packageName="@atlaskit/primitives" />
24
+ <TSMorphProps exportName="Pressable" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Stack
3
3
  description: A stack manages the vertical layout of direct children using flexbox.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Stack
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Stack" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Stack" packageName="@atlaskit/primitives/compiled" />
@@ -3,7 +3,7 @@ title: Text
3
3
  description: Text is a token-backed typography component to display body text.
4
4
  order: 1
5
5
  props:
6
- packageName: '@atlaskit/primitives'
6
+ packageName: '@atlaskit/primitives/compiled'
7
7
  exports:
8
8
  - Text
9
9
  ---
@@ -18,4 +18,4 @@ import { CodeDocsHeader } from '@af/design-system-docs-ui';
18
18
 
19
19
  ## Props
20
20
 
21
- <TSMorphProps exportName="Text" packageName="@atlaskit/primitives" />
21
+ <TSMorphProps exportName="Text" packageName="@atlaskit/primitives/compiled" />
@@ -1,4 +1,4 @@
1
- /* anchor.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* anchor.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* bleed.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* bleed.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* box.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* box.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* flex.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* flex.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* focusable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* focusable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* grid.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* grid.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _typeof = require("@babel/runtime/helpers/typeof");
@@ -1,4 +1,4 @@
1
- /* inline.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* inline.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* metric-text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* metric-text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* pressable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* pressable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* stack.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* stack.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* hide.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* hide.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _typeof = require("@babel/runtime/helpers/typeof");
@@ -1,4 +1,4 @@
1
- /* show.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* show.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  "use strict";
3
3
 
4
4
  var _typeof = require("@babel/runtime/helpers/typeof");
@@ -1,4 +1,4 @@
1
- /* anchor.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* anchor.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./anchor.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* bleed.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* bleed.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./bleed.compiled.css";
3
3
  import { ax, ix } from "@compiled/react/runtime";
4
4
  import React from 'react';
@@ -1,4 +1,4 @@
1
- /* box.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* box.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./box.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* flex.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* flex.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./flex.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* focusable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* focusable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./focusable.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* grid.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* grid.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./grid.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* inline.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* inline.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./inline.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* metric-text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* metric-text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./metric-text.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* pressable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* pressable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./pressable.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* stack.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* stack.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import "./stack.compiled.css";
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- /* text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./text.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* hide.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* hide.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./hide.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* show.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* show.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./show.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* anchor.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* anchor.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _typeof from "@babel/runtime/helpers/typeof";
4
4
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
@@ -1,4 +1,4 @@
1
- /* bleed.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* bleed.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./bleed.compiled.css";
3
3
  import { ax, ix } from "@compiled/react/runtime";
4
4
  import React from 'react';
@@ -1,4 +1,4 @@
1
- /* box.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* box.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["as", "children", "backgroundColor", "padding", "paddingBlock", "paddingBlockStart", "paddingBlockEnd", "paddingInline", "paddingInlineStart", "paddingInlineEnd", "style", "testId", "xcss"],
@@ -1,4 +1,4 @@
1
- /* flex.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* flex.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["as", "role", "alignItems", "justifyContent", "gap", "columnGap", "rowGap", "children", "testId", "direction", "wrap", "xcss"];
@@ -1,4 +1,4 @@
1
- /* focusable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* focusable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["as", "children", "isInset", "testId", "style", "xcss"],
@@ -1,4 +1,4 @@
1
- /* grid.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* grid.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./grid.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* inline.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* inline.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["as", "alignInline", "alignBlock", "shouldWrap", "spread", "grow", "space", "rowSpace", "separator", "xcss", "testId", "role", "children"];
@@ -1,4 +1,4 @@
1
- /* metric-text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* metric-text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./metric-text.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* pressable.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* pressable.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["children", "isDisabled", "type", "onClick", "interactionName", "componentName", "analyticsContext", "style", "testId", "xcss", "tabIndex"],
@@ -1,4 +1,4 @@
1
- /* stack.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* stack.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["as", "alignInline", "alignBlock", "spread", "grow", "space", "children", "testId", "xcss", "role"];
@@ -1,4 +1,4 @@
1
- /* text.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* text.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./text.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* hide.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* hide.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./hide.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
@@ -1,4 +1,4 @@
1
- /* show.tsx generated by @compiled/babel-plugin v0.38.1 */
1
+ /* show.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import "./show.compiled.css";
3
3
  import * as React from 'react';
4
4
  import { ax, ix } from "@compiled/react/runtime";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/primitives",
3
- "version": "18.0.1",
3
+ "version": "18.0.2",
4
4
  "description": "Primitives are token-backed low-level building blocks.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -135,12 +135,12 @@
135
135
  "@atlaskit/analytics-next": "^11.1.0",
136
136
  "@atlaskit/app-provider": "^4.1.0",
137
137
  "@atlaskit/css": "^0.19.0",
138
- "@atlaskit/ds-lib": "^5.3.0",
138
+ "@atlaskit/ds-lib": "^6.0.0",
139
139
  "@atlaskit/interaction-context": "^3.1.0",
140
- "@atlaskit/tokens": "^11.0.0",
140
+ "@atlaskit/tokens": "^11.1.0",
141
141
  "@atlaskit/visually-hidden": "^3.0.0",
142
142
  "@babel/runtime": "^7.0.0",
143
- "@compiled/react": "^0.18.6",
143
+ "@compiled/react": "^0.20.0",
144
144
  "@emotion/react": "^11.7.1",
145
145
  "@emotion/serialize": "^1.1.0",
146
146
  "bind-event-listener": "^3.0.0",
@@ -155,21 +155,21 @@
155
155
  "@af/integration-testing": "workspace:^",
156
156
  "@af/visual-regression": "workspace:^",
157
157
  "@atlaskit/avatar": "^25.8.0",
158
- "@atlaskit/button": "^23.9.0",
158
+ "@atlaskit/button": "^23.10.0",
159
159
  "@atlaskit/checkbox": "^17.3.0",
160
160
  "@atlaskit/code": "^17.4.0",
161
- "@atlaskit/docs": "^11.4.0",
162
- "@atlaskit/dropdown-menu": "^16.4.0",
161
+ "@atlaskit/docs": "^11.6.0",
162
+ "@atlaskit/dropdown-menu": "^16.6.0",
163
163
  "@atlaskit/flag": "^17.8.0",
164
- "@atlaskit/form": "^15.3.0",
164
+ "@atlaskit/form": "^15.4.0",
165
165
  "@atlaskit/heading": "^5.3.0",
166
- "@atlaskit/icon": "^31.0.0",
166
+ "@atlaskit/icon": "^32.0.0",
167
167
  "@atlaskit/icon-object": "^7.4.0",
168
168
  "@atlaskit/image": "^3.0.0",
169
169
  "@atlaskit/link": "^3.3.0",
170
170
  "@atlaskit/logo": "^19.10.0",
171
- "@atlaskit/lozenge": "^13.4.0",
172
- "@atlaskit/motion": "^5.3.0",
171
+ "@atlaskit/lozenge": "^13.5.0",
172
+ "@atlaskit/motion": "^5.4.0",
173
173
  "@atlaskit/range": "^9.3.0",
174
174
  "@atlaskit/section-message": "^8.12.0",
175
175
  "@atlaskit/textfield": "^8.2.0",