@atlaskit/primitives 20.1.0 → 20.2.1
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 +20 -0
- package/constellation/flex/examples.mdx +4 -4
- package/constellation/grid/examples.mdx +7 -7
- package/dist/cjs/compiled/components/anchor.js +1 -1
- package/dist/cjs/compiled/components/flex.js +2 -2
- package/dist/cjs/compiled/components/grid.js +2 -1
- package/dist/cjs/compiled/components/pressable.js +1 -1
- package/dist/cjs/components/anchor.js +1 -1
- package/dist/cjs/components/pressable.js +1 -1
- package/dist/es2019/compiled/components/anchor.js +1 -1
- package/dist/es2019/compiled/components/flex.js +2 -2
- package/dist/es2019/compiled/components/grid.js +2 -1
- package/dist/es2019/compiled/components/pressable.js +1 -1
- package/dist/es2019/components/anchor.js +1 -1
- package/dist/es2019/components/pressable.js +1 -1
- package/dist/esm/compiled/components/anchor.js +1 -1
- package/dist/esm/compiled/components/flex.js +2 -2
- package/dist/esm/compiled/components/grid.js +2 -1
- package/dist/esm/compiled/components/pressable.js +1 -1
- package/dist/esm/components/anchor.js +1 -1
- package/dist/esm/components/pressable.js +1 -1
- package/dist/types/compiled/components/anchor.d.ts +1 -1
- package/dist/types/compiled/components/bleed.d.ts +1 -1
- package/dist/types/compiled/components/box.d.ts +1 -1
- package/dist/types/compiled/components/flex.d.ts +2 -2
- package/dist/types/compiled/components/focusable.d.ts +1 -1
- package/dist/types/compiled/components/grid.d.ts +2 -1
- package/dist/types/compiled/responsive/hide.d.ts +1 -1
- package/dist/types/compiled/responsive/show.d.ts +1 -1
- package/dist/types/components/box.d.ts +1 -1
- package/package.json +6 -12
- package/primitives.docs.tsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/primitives
|
|
2
2
|
|
|
3
|
+
## 20.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`86c21c639404f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/86c21c639404f) -
|
|
8
|
+
Run `scoped-jsx` codemod, migrating atlaskit components and examples to import the JSX type from
|
|
9
|
+
React and use logical CSS properties. The change is required for components to be compatible with
|
|
10
|
+
React 19 version, which removed JSX from global scope.
|
|
11
|
+
|
|
12
|
+
## 20.2.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [`a02bbdc5849e2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a02bbdc5849e2) -
|
|
17
|
+
Promote compiled Flex and Grid primitives to general availability.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
3
23
|
## 20.1.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -24,24 +24,24 @@ richly-configured `Inline` or `Stack`. Like Stack and Inline, `Flex` exclusively
|
|
|
24
24
|
token-backed `gap` properties to ensure layouts using `Flex` match the Atlassian Design System
|
|
25
25
|
spacing scale.
|
|
26
26
|
|
|
27
|
-
<Example Component={FlexJustifyContent} packageName="@atlaskit/primitives/flex" />
|
|
27
|
+
<Example Component={FlexJustifyContent} packageName="@atlaskit/primitives/compiled/flex" />
|
|
28
28
|
|
|
29
29
|
## Align items and justify content
|
|
30
30
|
|
|
31
31
|
`Flex` applies the `alignItems` and `justifyContent` properties to align content along its cross and
|
|
32
32
|
main axes respectively.
|
|
33
33
|
|
|
34
|
-
<Example Component={FlexAlignItems} packageName="@atlaskit/primitives/flex" />
|
|
34
|
+
<Example Component={FlexAlignItems} packageName="@atlaskit/primitives/compiled/flex" />
|
|
35
35
|
|
|
36
36
|
## Wrap
|
|
37
37
|
|
|
38
38
|
Flex-prefixed properties in CSS do not have this prefix in the component API. For example,
|
|
39
39
|
`flex-wrap` is instead applied as the `wrap` property.
|
|
40
40
|
|
|
41
|
-
<Example Component={FlexWrap} packageName="@atlaskit/primitives/flex" />
|
|
41
|
+
<Example Component={FlexWrap} packageName="@atlaskit/primitives/compiled/flex" />
|
|
42
42
|
|
|
43
43
|
## Direction
|
|
44
44
|
|
|
45
45
|
Flex direction is applied via the `direction` property.
|
|
46
46
|
|
|
47
|
-
<Example Component={FlexDirection} packageName="@atlaskit/primitives/flex" />
|
|
47
|
+
<Example Component={FlexDirection} packageName="@atlaskit/primitives/compiled/flex" />
|
|
@@ -26,14 +26,14 @@ The `Grid` component is designed as a very basic mapping to the CSS Grid API. It
|
|
|
26
26
|
alternative to [Flex](/components/primitives/flex), [Inline](/components/primitives/inline) or
|
|
27
27
|
[Stack](/components/primitives/stack).
|
|
28
28
|
|
|
29
|
-
<Example Component={GridBasic} packageName="@atlaskit/primitives/grid" />
|
|
29
|
+
<Example Component={GridBasic} packageName="@atlaskit/primitives/compiled/grid" />
|
|
30
30
|
|
|
31
31
|
## Gap properties
|
|
32
32
|
|
|
33
33
|
Gap properties `rowGap`, `columnGap` and `gap` only allow token-backed values. This is to aid
|
|
34
34
|
ergonomics and keep the whitespace of the grid harmonious with the spacing system.
|
|
35
35
|
|
|
36
|
-
<Example Component={GridGap} packageName="@atlaskit/primitives/grid" />
|
|
36
|
+
<Example Component={GridGap} packageName="@atlaskit/primitives/compiled/grid" />
|
|
37
37
|
|
|
38
38
|
## Template syntax
|
|
39
39
|
|
|
@@ -45,33 +45,33 @@ properties.
|
|
|
45
45
|
|
|
46
46
|
Template columns enables grid to declare the way columns are applied in the template.
|
|
47
47
|
|
|
48
|
-
<Example Component={GridTemplate} packageName="@atlaskit/primitives/grid" />
|
|
48
|
+
<Example Component={GridTemplate} packageName="@atlaskit/primitives/compiled/grid" />
|
|
49
49
|
|
|
50
50
|
### Template rows
|
|
51
51
|
|
|
52
52
|
Template rows enables grid to declare the way row are applied in the template.
|
|
53
53
|
|
|
54
|
-
<Example Component={GridTemplateRow} packageName="@atlaskit/primitives/grid" />
|
|
54
|
+
<Example Component={GridTemplateRow} packageName="@atlaskit/primitives/compiled/grid" />
|
|
55
55
|
|
|
56
56
|
### Template areas
|
|
57
57
|
|
|
58
58
|
Template areas enables grid to declare the grid areas are applied in the template.
|
|
59
59
|
|
|
60
|
-
<Example Component={GridTemplateArea} packageName="@atlaskit/primitives/grid" />
|
|
60
|
+
<Example Component={GridTemplateArea} packageName="@atlaskit/primitives/compiled/grid" />
|
|
61
61
|
|
|
62
62
|
## Autoflow syntax
|
|
63
63
|
|
|
64
64
|
Grid-prefixed properties in CSS do not have this prefix in the component API. `grid-auto-flow` is
|
|
65
65
|
instead applied via `autoFlow`.
|
|
66
66
|
|
|
67
|
-
<Example Component={GridAutoFlow} packageName="@atlaskit/primitives/grid" />
|
|
67
|
+
<Example Component={GridAutoFlow} packageName="@atlaskit/primitives/compiled/grid" />
|
|
68
68
|
|
|
69
69
|
## Responsive grid
|
|
70
70
|
|
|
71
71
|
Here, we construct a grid layout that adapts from a single column to a four-column layout depending
|
|
72
72
|
on the viewport size.
|
|
73
73
|
|
|
74
|
-
<Example Component={ResponsiveGrid} packageName="@atlaskit/primitives/grid" />
|
|
74
|
+
<Example Component={ResponsiveGrid} packageName="@atlaskit/primitives/compiled/grid" />
|
|
75
75
|
|
|
76
76
|
You may also be looking for:
|
|
77
77
|
|
|
@@ -70,7 +70,7 @@ var AnchorNoRef = function AnchorNoRef(_ref, ref) {
|
|
|
70
70
|
action: 'clicked',
|
|
71
71
|
componentName: componentName || 'Anchor',
|
|
72
72
|
packageName: "@atlaskit/primitives",
|
|
73
|
-
packageVersion: "20.0
|
|
73
|
+
packageVersion: "20.2.0",
|
|
74
74
|
analyticsData: analyticsContext,
|
|
75
75
|
actionSubject: 'link'
|
|
76
76
|
});
|
|
@@ -85,8 +85,8 @@ var styles = {
|
|
|
85
85
|
*
|
|
86
86
|
* @example
|
|
87
87
|
* ```tsx
|
|
88
|
-
*
|
|
89
|
-
* import { Flex
|
|
88
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
89
|
+
* import { Flex } from '@atlaskit/primitives/compiled/flex'
|
|
90
90
|
*
|
|
91
91
|
* const Component = () => (
|
|
92
92
|
* <Flex direction="column">
|
|
@@ -89,7 +89,8 @@ var gridAutoFlowMap = {
|
|
|
89
89
|
*
|
|
90
90
|
* @example
|
|
91
91
|
* ```tsx
|
|
92
|
-
* import {
|
|
92
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
93
|
+
* import { Grid } from '@atlaskit/primitives/compiled/grid'
|
|
93
94
|
*
|
|
94
95
|
* const Component = () => (
|
|
95
96
|
* <Grid gap="space.100" gridColumns="1fr 1fr">
|
|
@@ -61,7 +61,7 @@ var Pressable = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
61
61
|
action: 'clicked',
|
|
62
62
|
componentName: componentName || 'Pressable',
|
|
63
63
|
packageName: "@atlaskit/primitives",
|
|
64
|
-
packageVersion: "20.0
|
|
64
|
+
packageVersion: "20.2.0",
|
|
65
65
|
analyticsData: analyticsContext,
|
|
66
66
|
actionSubject: 'button'
|
|
67
67
|
});
|
|
@@ -105,7 +105,7 @@ var AnchorNoRef = function AnchorNoRef(_ref, ref) {
|
|
|
105
105
|
action: 'clicked',
|
|
106
106
|
componentName: componentName || 'Anchor',
|
|
107
107
|
packageName: "@atlaskit/primitives",
|
|
108
|
-
packageVersion: "20.0
|
|
108
|
+
packageVersion: "20.2.0",
|
|
109
109
|
analyticsData: analyticsContext,
|
|
110
110
|
actionSubject: 'link'
|
|
111
111
|
});
|
|
@@ -97,7 +97,7 @@ var Pressable = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
97
97
|
action: 'clicked',
|
|
98
98
|
componentName: componentName || 'Pressable',
|
|
99
99
|
packageName: "@atlaskit/primitives",
|
|
100
|
-
packageVersion: "20.0
|
|
100
|
+
packageVersion: "20.2.0",
|
|
101
101
|
analyticsData: analyticsContext,
|
|
102
102
|
actionSubject: 'button'
|
|
103
103
|
});
|
|
@@ -74,8 +74,8 @@ const styles = {
|
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* ```tsx
|
|
77
|
-
*
|
|
78
|
-
* import { Flex
|
|
77
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
78
|
+
* import { Flex } from '@atlaskit/primitives/compiled/flex'
|
|
79
79
|
*
|
|
80
80
|
* const Component = () => (
|
|
81
81
|
* <Flex direction="column">
|
|
@@ -81,7 +81,8 @@ const gridAutoFlowMap = {
|
|
|
81
81
|
*
|
|
82
82
|
* @example
|
|
83
83
|
* ```tsx
|
|
84
|
-
* import {
|
|
84
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
85
|
+
* import { Grid } from '@atlaskit/primitives/compiled/grid'
|
|
85
86
|
*
|
|
86
87
|
* const Component = () => (
|
|
87
88
|
* <Grid gap="space.100" gridColumns="1fr 1fr">
|
|
@@ -48,7 +48,7 @@ const Pressable = /*#__PURE__*/forwardRef(({
|
|
|
48
48
|
action: 'clicked',
|
|
49
49
|
componentName: componentName || 'Pressable',
|
|
50
50
|
packageName: "@atlaskit/primitives",
|
|
51
|
-
packageVersion: "20.0
|
|
51
|
+
packageVersion: "20.2.0",
|
|
52
52
|
analyticsData: analyticsContext,
|
|
53
53
|
actionSubject: 'button'
|
|
54
54
|
});
|
|
@@ -86,7 +86,7 @@ const Pressable = /*#__PURE__*/forwardRef(({
|
|
|
86
86
|
action: 'clicked',
|
|
87
87
|
componentName: componentName || 'Pressable',
|
|
88
88
|
packageName: "@atlaskit/primitives",
|
|
89
|
-
packageVersion: "20.0
|
|
89
|
+
packageVersion: "20.2.0",
|
|
90
90
|
analyticsData: analyticsContext,
|
|
91
91
|
actionSubject: 'button'
|
|
92
92
|
});
|
|
@@ -61,7 +61,7 @@ var AnchorNoRef = function AnchorNoRef(_ref, ref) {
|
|
|
61
61
|
action: 'clicked',
|
|
62
62
|
componentName: componentName || 'Anchor',
|
|
63
63
|
packageName: "@atlaskit/primitives",
|
|
64
|
-
packageVersion: "20.0
|
|
64
|
+
packageVersion: "20.2.0",
|
|
65
65
|
analyticsData: analyticsContext,
|
|
66
66
|
actionSubject: 'link'
|
|
67
67
|
});
|
|
@@ -76,8 +76,8 @@ var styles = {
|
|
|
76
76
|
*
|
|
77
77
|
* @example
|
|
78
78
|
* ```tsx
|
|
79
|
-
*
|
|
80
|
-
* import { Flex
|
|
79
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
80
|
+
* import { Flex } from '@atlaskit/primitives/compiled/flex'
|
|
81
81
|
*
|
|
82
82
|
* const Component = () => (
|
|
83
83
|
* <Flex direction="column">
|
|
@@ -81,7 +81,8 @@ var gridAutoFlowMap = {
|
|
|
81
81
|
*
|
|
82
82
|
* @example
|
|
83
83
|
* ```tsx
|
|
84
|
-
* import {
|
|
84
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
85
|
+
* import { Grid } from '@atlaskit/primitives/compiled/grid'
|
|
85
86
|
*
|
|
86
87
|
* const Component = () => (
|
|
87
88
|
* <Grid gap="space.100" gridColumns="1fr 1fr">
|
|
@@ -52,7 +52,7 @@ var Pressable = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
52
52
|
action: 'clicked',
|
|
53
53
|
componentName: componentName || 'Pressable',
|
|
54
54
|
packageName: "@atlaskit/primitives",
|
|
55
|
-
packageVersion: "20.0
|
|
55
|
+
packageVersion: "20.2.0",
|
|
56
56
|
analyticsData: analyticsContext,
|
|
57
57
|
actionSubject: 'button'
|
|
58
58
|
});
|
|
@@ -99,7 +99,7 @@ var AnchorNoRef = function AnchorNoRef(_ref, ref) {
|
|
|
99
99
|
action: 'clicked',
|
|
100
100
|
componentName: componentName || 'Anchor',
|
|
101
101
|
packageName: "@atlaskit/primitives",
|
|
102
|
-
packageVersion: "20.0
|
|
102
|
+
packageVersion: "20.2.0",
|
|
103
103
|
analyticsData: analyticsContext,
|
|
104
104
|
actionSubject: 'link'
|
|
105
105
|
});
|
|
@@ -91,7 +91,7 @@ var Pressable = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
91
91
|
action: 'clicked',
|
|
92
92
|
componentName: componentName || 'Pressable',
|
|
93
93
|
packageName: "@atlaskit/primitives",
|
|
94
|
-
packageVersion: "20.0
|
|
94
|
+
packageVersion: "20.2.0",
|
|
95
95
|
analyticsData: analyticsContext,
|
|
96
96
|
actionSubject: 'button'
|
|
97
97
|
});
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ComponentPropsWithoutRef, type ReactNode, type Ref } from 'react';
|
|
5
|
+
import { type ComponentPropsWithoutRef, type JSX, type ReactNode, type Ref } from 'react';
|
|
6
6
|
import { type UIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
7
7
|
import { type RouterLinkComponentProps } from '@atlaskit/app-provider';
|
|
8
8
|
import type { BasePrimitiveProps, StyleProp } from './types';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type ReactElement, type ReactNode } from 'react';
|
|
5
|
+
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type JSX, type ReactElement, type ReactNode } from 'react';
|
|
6
6
|
import { type StrictXCSSProp, type XCSSAllProperties, type XCSSAllPseudos } from '@atlaskit/css';
|
|
7
7
|
import type { BackgroundColorToken, SVGElements } from '../../utils/types';
|
|
8
8
|
import type { BasePrimitiveProps, PaddingToken, StyleProp, SurfaceColorToken } from './types';
|
|
@@ -56,8 +56,8 @@ export type FlexProps<T extends ElementType = 'div'> = {
|
|
|
56
56
|
*
|
|
57
57
|
* @example
|
|
58
58
|
* ```tsx
|
|
59
|
-
*
|
|
60
|
-
* import { Flex
|
|
59
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
60
|
+
* import { Flex } from '@atlaskit/primitives/compiled/flex'
|
|
61
61
|
*
|
|
62
62
|
* const Component = () => (
|
|
63
63
|
* <Flex direction="column">
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type ReactElement, type ReactNode } from 'react';
|
|
5
|
+
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type JSX, type ReactElement, type ReactNode } from 'react';
|
|
6
6
|
import type { BasePrimitiveProps, StyleProp } from '../components/types';
|
|
7
7
|
type AllowedElements = Exclude<keyof JSX.IntrinsicElements, 'button' | 'a'>;
|
|
8
8
|
type CustomElement<P = any> = {
|
|
@@ -66,7 +66,8 @@ export type GridProps<T extends ElementType = 'div'> = {
|
|
|
66
66
|
*
|
|
67
67
|
* @example
|
|
68
68
|
* ```tsx
|
|
69
|
-
* import {
|
|
69
|
+
* import { Box } from '@atlaskit/primitives/compiled'
|
|
70
|
+
* import { Grid } from '@atlaskit/primitives/compiled/grid'
|
|
70
71
|
*
|
|
71
72
|
* const Component = () => (
|
|
72
73
|
* <Grid gap="space.100" gridColumns="1fr 1fr">
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ReactNode } from 'react';
|
|
5
|
+
import { type JSX, type ReactNode } from 'react';
|
|
6
6
|
import { type BasePrimitiveProps } from '../components/types';
|
|
7
7
|
import type { Breakpoint, ComponentAs } from './types';
|
|
8
8
|
type ResponsiveHideProps = {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ReactNode } from 'react';
|
|
5
|
+
import { type JSX, type ReactNode } from 'react';
|
|
6
6
|
import { type BasePrimitiveProps } from '../components/types';
|
|
7
7
|
import type { Breakpoint, ComponentAs } from './types';
|
|
8
8
|
type ResponsiveShowProps = {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type ReactElement, type ReactNode } from 'react';
|
|
5
|
+
import { type ComponentPropsWithoutRef, type ComponentPropsWithRef, type JSX, type ReactElement, type ReactNode } from 'react';
|
|
6
6
|
import { type SVGElements } from '../utils/types';
|
|
7
7
|
import { type BackgroundColor, type Space } from '../xcss/style-maps.partial';
|
|
8
8
|
import type { BasePrimitiveProps, StyleProp } from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/primitives",
|
|
3
|
-
"version": "20.1
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"description": "Primitives are token-backed low-level building blocks.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -60,19 +60,13 @@
|
|
|
60
60
|
"title": "Flex",
|
|
61
61
|
"folder": "flex",
|
|
62
62
|
"slug": "primitives/flex",
|
|
63
|
-
"id": "@atlaskit/primitives/flex"
|
|
64
|
-
"status": {
|
|
65
|
-
"type": "beta"
|
|
66
|
-
}
|
|
63
|
+
"id": "@atlaskit/primitives/compiled/flex"
|
|
67
64
|
},
|
|
68
65
|
{
|
|
69
66
|
"title": "Grid",
|
|
70
67
|
"folder": "grid",
|
|
71
68
|
"slug": "primitives/grid",
|
|
72
|
-
"id": "@atlaskit/primitives/grid"
|
|
73
|
-
"status": {
|
|
74
|
-
"type": "beta"
|
|
75
|
-
}
|
|
69
|
+
"id": "@atlaskit/primitives/compiled/grid"
|
|
76
70
|
},
|
|
77
71
|
{
|
|
78
72
|
"title": "Bleed",
|
|
@@ -145,7 +139,7 @@
|
|
|
145
139
|
"@atlaskit/ds-lib": "^8.0.0",
|
|
146
140
|
"@atlaskit/interaction-context": "^4.0.0",
|
|
147
141
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
148
|
-
"@atlaskit/tokens": "^15.
|
|
142
|
+
"@atlaskit/tokens": "^15.2.0",
|
|
149
143
|
"@atlaskit/visually-hidden": "^4.1.0",
|
|
150
144
|
"@babel/runtime": "^7.0.0",
|
|
151
145
|
"@compiled/react": "^0.20.0",
|
|
@@ -163,7 +157,7 @@
|
|
|
163
157
|
"@af/integration-testing": "workspace:^",
|
|
164
158
|
"@af/visual-regression": "workspace:^",
|
|
165
159
|
"@atlaskit/avatar": "^26.1.0",
|
|
166
|
-
"@atlaskit/button": "^24.
|
|
160
|
+
"@atlaskit/button": "^24.3.0",
|
|
167
161
|
"@atlaskit/checkbox": "^18.1.0",
|
|
168
162
|
"@atlaskit/code": "^18.2.0",
|
|
169
163
|
"@atlaskit/docs": "^12.0.0",
|
|
@@ -174,7 +168,7 @@
|
|
|
174
168
|
"@atlaskit/icon": "^36.1.0",
|
|
175
169
|
"@atlaskit/image": "^4.1.0",
|
|
176
170
|
"@atlaskit/link": "^4.1.0",
|
|
177
|
-
"@atlaskit/logo": "^21.
|
|
171
|
+
"@atlaskit/logo": "^21.3.0",
|
|
178
172
|
"@atlaskit/lozenge": "^14.1.0",
|
|
179
173
|
"@atlaskit/motion": "^7.2.0",
|
|
180
174
|
"@atlaskit/object": "^2.1.0",
|
package/primitives.docs.tsx
CHANGED
|
@@ -113,7 +113,7 @@ const documentation: StructuredContentSource = {
|
|
|
113
113
|
{
|
|
114
114
|
name: 'Flex',
|
|
115
115
|
description: 'A primitive Flex component for flexbox layout with compiled styling support.',
|
|
116
|
-
status: '
|
|
116
|
+
status: 'general-availability',
|
|
117
117
|
import: {
|
|
118
118
|
name: 'Flex',
|
|
119
119
|
package: '@atlaskit/primitives/compiled',
|
|
@@ -193,7 +193,7 @@ const documentation: StructuredContentSource = {
|
|
|
193
193
|
{
|
|
194
194
|
name: 'Grid',
|
|
195
195
|
description: 'A primitive Grid component for CSS Grid layout with compiled styling support.',
|
|
196
|
-
status: '
|
|
196
|
+
status: 'general-availability',
|
|
197
197
|
import: {
|
|
198
198
|
name: 'Grid',
|
|
199
199
|
package: '@atlaskit/primitives/compiled',
|