@atlaskit/button 17.17.0 → 17.17.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.
- package/CHANGELOG.md +1223 -1221
- package/dist/cjs/new-button/variants/default/button.js +28 -28
- package/dist/cjs/new-button/variants/default/link.js +29 -29
- package/dist/cjs/new-button/variants/default/use-default-button.js +11 -11
- package/dist/cjs/new-button/variants/icon/button.js +9 -9
- package/dist/cjs/new-button/variants/icon/link.js +8 -8
- package/dist/cjs/new-button/variants/icon/use-icon-button.js +6 -6
- package/dist/cjs/old-button/button.js +5 -3
- package/dist/cjs/old-button/loading-button.js +2 -0
- package/dist/cjs/old-button/shared/button-base.js +4 -2
- package/dist/es2019/new-button/variants/default/button.js +27 -27
- package/dist/es2019/new-button/variants/default/link.js +28 -28
- package/dist/es2019/new-button/variants/default/use-default-button.js +11 -11
- package/dist/es2019/new-button/variants/icon/button.js +9 -9
- package/dist/es2019/new-button/variants/icon/link.js +8 -8
- package/dist/es2019/new-button/variants/icon/use-icon-button.js +6 -6
- package/dist/es2019/old-button/button.js +5 -3
- package/dist/es2019/old-button/loading-button.js +2 -0
- package/dist/es2019/old-button/shared/button-base.js +4 -2
- package/dist/esm/new-button/variants/default/button.js +28 -28
- package/dist/esm/new-button/variants/default/link.js +29 -29
- package/dist/esm/new-button/variants/default/use-default-button.js +11 -11
- package/dist/esm/new-button/variants/icon/button.js +9 -9
- package/dist/esm/new-button/variants/icon/link.js +8 -8
- package/dist/esm/new-button/variants/icon/use-icon-button.js +6 -6
- package/dist/esm/old-button/button.js +5 -3
- package/dist/esm/old-button/loading-button.js +2 -0
- package/dist/esm/old-button/shared/button-base.js +4 -2
- package/dist/types/new-button/containers/split-button/index.d.ts +2 -2
- package/dist/types/new-button/containers/split-button/split-button.d.ts +1 -1
- package/dist/types/new-button/variants/default/link.d.ts +4 -4
- package/dist/types/new-button/variants/default/use-default-button.d.ts +1 -1
- package/dist/types/new-button/variants/icon/button.d.ts +3 -3
- package/dist/types/new-button/variants/icon/link.d.ts +3 -3
- package/dist/types/new-button/variants/icon/use-icon-button.d.ts +1 -1
- package/dist/types/new-button/variants/shared/content.d.ts +1 -1
- package/dist/types/new-button/variants/types.d.ts +1 -1
- package/dist/types/old-button/button.d.ts +5 -3
- package/dist/types/old-button/loading-button.d.ts +2 -0
- package/dist/types-ts4.5/new-button/containers/split-button/index.d.ts +2 -2
- package/dist/types-ts4.5/new-button/containers/split-button/split-button.d.ts +1 -1
- package/dist/types-ts4.5/new-button/variants/default/link.d.ts +4 -4
- package/dist/types-ts4.5/new-button/variants/default/use-default-button.d.ts +1 -1
- package/dist/types-ts4.5/new-button/variants/icon/button.d.ts +3 -3
- package/dist/types-ts4.5/new-button/variants/icon/link.d.ts +3 -3
- package/dist/types-ts4.5/new-button/variants/icon/use-icon-button.d.ts +1 -1
- package/dist/types-ts4.5/new-button/variants/shared/content.d.ts +1 -1
- package/dist/types-ts4.5/new-button/variants/types.d.ts +1 -1
- package/dist/types-ts4.5/old-button/button.d.ts +5 -3
- package/dist/types-ts4.5/old-button/loading-button.d.ts +2 -0
- package/package.json +60 -24
|
@@ -10,5 +10,5 @@ type ContentProps = {
|
|
|
10
10
|
*
|
|
11
11
|
* Used for slots within a Button, including icons and text content.
|
|
12
12
|
*/
|
|
13
|
-
declare const Content: ({ children, type, hasOverlay, position
|
|
13
|
+
declare const Content: ({ children, type, hasOverlay, position }: ContentProps) => JSX.Element;
|
|
14
14
|
export default Content;
|
|
@@ -84,7 +84,7 @@ export type CommonButtonVariantProps = AdditionalButtonVariantProps & CombinedBu
|
|
|
84
84
|
*/
|
|
85
85
|
export type AdditionalCommonLinkVariantProps<RouterLinkConfig extends Record<string, any> = never> = {
|
|
86
86
|
/**
|
|
87
|
-
* Provides a URL for link buttons. When using an AppProvider with a configured router link component, a `RouterLinkConfig` object type can be provided for advanced usage. See the [Link Button routing example](/components/button/
|
|
87
|
+
* Provides a URL for link buttons. When using an AppProvider with a configured router link component, a `RouterLinkConfig` object type can be provided for advanced usage. See the [Link Button routing example](/components/button/examples#routing) for more details.
|
|
88
88
|
*/
|
|
89
89
|
href: string | RouterLinkConfig;
|
|
90
90
|
};
|
|
@@ -5,11 +5,13 @@ export interface ButtonProps extends BaseProps {
|
|
|
5
5
|
/**
|
|
6
6
|
* __Button__
|
|
7
7
|
*
|
|
8
|
+
* CAUTION: Legacy buttons will soon be deprecated. Please use the new Button components from `@atlaskit/button/new`.
|
|
9
|
+
*
|
|
8
10
|
* A button triggers an event or action. They let users know what will happen next.
|
|
9
11
|
*
|
|
10
|
-
* - [Examples](https://atlassian.design/components/button/examples)
|
|
11
|
-
* - [Code](https://atlassian.design/components/button/code)
|
|
12
|
-
* - [Usage](https://atlassian.design/components/button/usage)
|
|
12
|
+
* - [Examples](https://atlassian.design/components/button/button-legacy/examples)
|
|
13
|
+
* - [Code](https://atlassian.design/components/button/button-legacy/code)
|
|
14
|
+
* - [Usage](https://atlassian.design/components/button/button-legacy/usage)
|
|
13
15
|
*/
|
|
14
16
|
declare const Button: React.MemoExoticComponent<React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLElement>>>;
|
|
15
17
|
export default Button;
|
|
@@ -7,6 +7,8 @@ export type LoadingButtonProps = Omit<BaseProps, 'overlay'> & LoadingButtonOwnPr
|
|
|
7
7
|
/**
|
|
8
8
|
* __Loading button__
|
|
9
9
|
*
|
|
10
|
+
* CAUTION: Legacy loading buttons will soon be deprecated. Please use the new Button components from `@atlaskit/button/new` with the `isLoading` prop.
|
|
11
|
+
*
|
|
10
12
|
* A small wrapper around Button that allows you to show an @atlaskit/spinner as an overlay on the button when you set an isLoading prop to true.
|
|
11
13
|
*
|
|
12
14
|
* - [Examples](https://atlassian.design/components/button/examples#loading-button)
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { SplitButton, SplitButtonWithSlots, Divider, SplitButtonContainer
|
|
1
|
+
export { SplitButton, SplitButtonWithSlots, Divider, SplitButtonContainer } from './split-button';
|
|
2
2
|
export { getActions } from './utils';
|
|
3
|
-
export { SplitButtonContext, useSplitButtonContext
|
|
3
|
+
export { SplitButtonContext, useSplitButtonContext } from './split-button-context';
|
|
@@ -10,7 +10,7 @@ type DividerProps = {
|
|
|
10
10
|
/**
|
|
11
11
|
* TODO: Add JSDoc
|
|
12
12
|
*/
|
|
13
|
-
export declare const Divider: ({ appearance, spacing, isDisabled
|
|
13
|
+
export declare const Divider: ({ appearance, spacing, isDisabled }: DividerProps) => jsx.JSX.Element;
|
|
14
14
|
/**
|
|
15
15
|
* TODO: Add JSdoc
|
|
16
16
|
*/
|
|
@@ -2,15 +2,15 @@ import { type Ref } from 'react';
|
|
|
2
2
|
import { type AdditionalDefaultLinkVariantProps, type CommonLinkVariantProps } from '../types';
|
|
3
3
|
import { type CommonDefaultButtonProps } from './types';
|
|
4
4
|
export type LinkButtonProps<RouterLinkConfig extends Record<string, any> = never> = CommonDefaultButtonProps & CommonLinkVariantProps<RouterLinkConfig> & AdditionalDefaultLinkVariantProps;
|
|
5
|
-
declare const LinkButtonBase: <RouterLinkConfig extends Record<string, any> = never>({ analyticsContext,
|
|
5
|
+
declare const LinkButtonBase: <RouterLinkConfig extends Record<string, any> = never>({ analyticsContext, appearance, autoFocus, children, href, iconAfter, iconBefore, interactionName, isDisabled, isSelected, onClick, onClickCapture, onKeyDownCapture, onKeyUpCapture, onMouseDownCapture, onMouseUpCapture, onPointerDownCapture, onPointerUpCapture, onTouchEndCapture, onTouchStartCapture, overlay, shouldFitContainer, spacing, testId, UNSAFE_iconAfter_size, UNSAFE_iconBefore_size, ...rest }: LinkButtonProps<RouterLinkConfig>, ref: Ref<HTMLAnchorElement>) => JSX.Element;
|
|
6
6
|
/**
|
|
7
7
|
* __Link Button__
|
|
8
8
|
*
|
|
9
9
|
* Renders a link in the style of a button.
|
|
10
10
|
*
|
|
11
|
-
* - [Examples](https://atlassian.design/components/button/examples)
|
|
12
|
-
* - [Code](https://atlassian.design/components/button/code)
|
|
13
|
-
* - [Usage](https://atlassian.design/components/button/usage)
|
|
11
|
+
* - [Examples](https://atlassian.design/components/link-button/examples)
|
|
12
|
+
* - [Code](https://atlassian.design/components/link-button/code)
|
|
13
|
+
* - [Usage](https://atlassian.design/components/link-button/usage)
|
|
14
14
|
*/
|
|
15
15
|
declare const LinkButton: <RouterLinkConfig extends Record<string, any> = never>(props: LinkButtonProps<RouterLinkConfig> & {
|
|
16
16
|
ref?: Ref<HTMLAnchorElement>;
|
|
@@ -11,5 +11,5 @@ type UseButtonReturn<TagName extends HTMLElement> = UseButtonBaseReturn<TagName>
|
|
|
11
11
|
*
|
|
12
12
|
* @private
|
|
13
13
|
*/
|
|
14
|
-
declare const useDefaultButton: <TagName extends HTMLElement>({ analyticsContext, appearance, autoFocus, buttonType,
|
|
14
|
+
declare const useDefaultButton: <TagName extends HTMLElement>({ analyticsContext, appearance, autoFocus, buttonType, children, iconAfter: IconAfter, iconBefore: IconBefore, interactionName, isDisabled, isLoading, isSelected, onClick, onClickCapture, onKeyDownCapture, onKeyUpCapture, onMouseDownCapture, onMouseUpCapture, onPointerDownCapture, onPointerUpCapture, onTouchEndCapture, onTouchStartCapture, overlay, ref, shouldFitContainer, spacing, UNSAFE_iconAfter_size, UNSAFE_iconBefore_size, }: UseDefaultButtonArgs<TagName>) => UseButtonReturn<TagName>;
|
|
15
15
|
export default useDefaultButton;
|
|
@@ -7,9 +7,9 @@ export type IconButtonProps = CommonIconButtonProps & CommonButtonVariantProps;
|
|
|
7
7
|
*
|
|
8
8
|
* TODO: Description
|
|
9
9
|
*
|
|
10
|
-
* - [Examples](https://atlassian.design/components/button/examples)
|
|
11
|
-
* - [Code](https://atlassian.design/components/button/code)
|
|
12
|
-
* - [Usage](https://atlassian.design/components/button/usage)
|
|
10
|
+
* - [Examples](https://atlassian.design/components/icon-button/examples)
|
|
11
|
+
* - [Code](https://atlassian.design/components/icon-button/code)
|
|
12
|
+
* - [Usage](https://atlassian.design/components/icon-button/usage)
|
|
13
13
|
*/
|
|
14
14
|
declare const IconButton: React.MemoExoticComponent<React.ForwardRefExoticComponent<CommonIconButtonProps & import("../types").AdditionalButtonVariantProps & Omit<import("../types").AdditionalHTMLElementPropsExtender<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children">>, keyof import("../types").CommonButtonProps<TagName>> & import("../types").CommonButtonProps<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>>;
|
|
15
15
|
export default IconButton;
|
|
@@ -8,9 +8,9 @@ declare const LinkIconButtonBase: <RouterLinkConfig extends Record<string, any>
|
|
|
8
8
|
*
|
|
9
9
|
* Renders a link in the style of an icon button.
|
|
10
10
|
*
|
|
11
|
-
* - [Examples](https://atlassian.design/components/button/examples)
|
|
12
|
-
* - [Code](https://atlassian.design/components/button/code)
|
|
13
|
-
* - [Usage](https://atlassian.design/components/button/usage)
|
|
11
|
+
* - [Examples](https://atlassian.design/components/link-icon-button/examples)
|
|
12
|
+
* - [Code](https://atlassian.design/components/link-icon-button/code)
|
|
13
|
+
* - [Usage](https://atlassian.design/components/link-icon-button/usage)
|
|
14
14
|
*/
|
|
15
15
|
declare const LinkIconButton: <RouterLinkConfig extends Record<string, any> = never>(props: LinkIconButtonProps<RouterLinkConfig> & {
|
|
16
16
|
ref?: Ref<HTMLAnchorElement>;
|
|
@@ -11,5 +11,5 @@ type UseIconButtonReturn<TagName extends HTMLElement> = UseButtonBaseReturn<TagN
|
|
|
11
11
|
*
|
|
12
12
|
* @private
|
|
13
13
|
*/
|
|
14
|
-
declare const useIconButton: <TagName extends HTMLElement>({ analyticsContext, appearance, autoFocus, buttonType, icon: Icon, interactionName, isDisabled,
|
|
14
|
+
declare const useIconButton: <TagName extends HTMLElement>({ analyticsContext, appearance, autoFocus, buttonType, icon: Icon, interactionName, isDisabled, isLoading, isSelected, label, onClick, onClickCapture, onKeyDownCapture, onKeyUpCapture, onMouseDownCapture, onMouseUpCapture, onPointerDownCapture, onPointerUpCapture, onTouchEndCapture, onTouchStartCapture, overlay, ref, shape, shouldFitContainer, spacing, UNSAFE_size, }: UseIconButtonArgs<TagName>) => UseIconButtonReturn<TagName>;
|
|
15
15
|
export default useIconButton;
|
|
@@ -10,5 +10,5 @@ type ContentProps = {
|
|
|
10
10
|
*
|
|
11
11
|
* Used for slots within a Button, including icons and text content.
|
|
12
12
|
*/
|
|
13
|
-
declare const Content: ({ children, type, hasOverlay, position
|
|
13
|
+
declare const Content: ({ children, type, hasOverlay, position }: ContentProps) => JSX.Element;
|
|
14
14
|
export default Content;
|
|
@@ -84,7 +84,7 @@ export type CommonButtonVariantProps = AdditionalButtonVariantProps & CombinedBu
|
|
|
84
84
|
*/
|
|
85
85
|
export type AdditionalCommonLinkVariantProps<RouterLinkConfig extends Record<string, any> = never> = {
|
|
86
86
|
/**
|
|
87
|
-
* Provides a URL for link buttons. When using an AppProvider with a configured router link component, a `RouterLinkConfig` object type can be provided for advanced usage. See the [Link Button routing example](/components/button/
|
|
87
|
+
* Provides a URL for link buttons. When using an AppProvider with a configured router link component, a `RouterLinkConfig` object type can be provided for advanced usage. See the [Link Button routing example](/components/button/examples#routing) for more details.
|
|
88
88
|
*/
|
|
89
89
|
href: string | RouterLinkConfig;
|
|
90
90
|
};
|
|
@@ -5,11 +5,13 @@ export interface ButtonProps extends BaseProps {
|
|
|
5
5
|
/**
|
|
6
6
|
* __Button__
|
|
7
7
|
*
|
|
8
|
+
* CAUTION: Legacy buttons will soon be deprecated. Please use the new Button components from `@atlaskit/button/new`.
|
|
9
|
+
*
|
|
8
10
|
* A button triggers an event or action. They let users know what will happen next.
|
|
9
11
|
*
|
|
10
|
-
* - [Examples](https://atlassian.design/components/button/examples)
|
|
11
|
-
* - [Code](https://atlassian.design/components/button/code)
|
|
12
|
-
* - [Usage](https://atlassian.design/components/button/usage)
|
|
12
|
+
* - [Examples](https://atlassian.design/components/button/button-legacy/examples)
|
|
13
|
+
* - [Code](https://atlassian.design/components/button/button-legacy/code)
|
|
14
|
+
* - [Usage](https://atlassian.design/components/button/button-legacy/usage)
|
|
13
15
|
*/
|
|
14
16
|
declare const Button: React.MemoExoticComponent<React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLElement>>>;
|
|
15
17
|
export default Button;
|
|
@@ -7,6 +7,8 @@ export type LoadingButtonProps = Omit<BaseProps, 'overlay'> & LoadingButtonOwnPr
|
|
|
7
7
|
/**
|
|
8
8
|
* __Loading button__
|
|
9
9
|
*
|
|
10
|
+
* CAUTION: Legacy loading buttons will soon be deprecated. Please use the new Button components from `@atlaskit/button/new` with the `isLoading` prop.
|
|
11
|
+
*
|
|
10
12
|
* A small wrapper around Button that allows you to show an @atlaskit/spinner as an overlay on the button when you set an isLoading prop to true.
|
|
11
13
|
*
|
|
12
14
|
* - [Examples](https://atlassian.design/components/button/examples#loading-button)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/button",
|
|
3
|
-
"version": "17.17.
|
|
3
|
+
"version": "17.17.2",
|
|
4
4
|
"description": "A button triggers an event or action. They let users know what will happen next.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,50 +31,88 @@
|
|
|
31
31
|
"website": {
|
|
32
32
|
"name": "Button",
|
|
33
33
|
"category": "Components",
|
|
34
|
+
"status": {
|
|
35
|
+
"type": "beta",
|
|
36
|
+
"description": "New and ready to use. We'll provide comms and support for any major changes. Migrate from legacy buttons using our codemod.",
|
|
37
|
+
"actions": [
|
|
38
|
+
{
|
|
39
|
+
"text": "View the migration guide",
|
|
40
|
+
"href": "/components/button/button-legacy/migration-guide"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
34
44
|
"subPages": [
|
|
35
45
|
{
|
|
36
|
-
"title": "
|
|
37
|
-
"id": "button
|
|
46
|
+
"title": "Icon button",
|
|
47
|
+
"id": "icon-button",
|
|
38
48
|
"status": {
|
|
39
|
-
"type": "beta"
|
|
49
|
+
"type": "beta",
|
|
50
|
+
"description": "New and ready to use. We'll provide comms and support for any major changes. Migrate from legacy buttons using our codemod.",
|
|
51
|
+
"actions": [
|
|
52
|
+
{
|
|
53
|
+
"text": "View the migration guide",
|
|
54
|
+
"href": "/components/button/button-legacy/migration-guide"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
40
57
|
},
|
|
41
58
|
"sortKey": 1
|
|
42
59
|
},
|
|
43
60
|
{
|
|
44
|
-
"title": "
|
|
45
|
-
"id": "
|
|
61
|
+
"title": "Link button",
|
|
62
|
+
"id": "link-button",
|
|
46
63
|
"status": {
|
|
47
|
-
"type": "beta"
|
|
64
|
+
"type": "beta",
|
|
65
|
+
"description": "New and ready to use. We'll provide comms and support for any major changes. Migrate from legacy buttons using our codemod.",
|
|
66
|
+
"actions": [
|
|
67
|
+
{
|
|
68
|
+
"text": "View the migration guide",
|
|
69
|
+
"href": "/components/button/button-legacy/migration-guide"
|
|
70
|
+
}
|
|
71
|
+
]
|
|
48
72
|
},
|
|
49
73
|
"sortKey": 2
|
|
50
74
|
},
|
|
51
75
|
{
|
|
52
|
-
"title": "
|
|
53
|
-
"id": "
|
|
76
|
+
"title": "Link icon button",
|
|
77
|
+
"id": "link-icon-button",
|
|
54
78
|
"status": {
|
|
55
|
-
"type": "beta"
|
|
79
|
+
"type": "beta",
|
|
80
|
+
"description": "New and ready to use. We'll provide comms and support for any major changes. Migrate from legacy buttons using our codemod.",
|
|
81
|
+
"actions": [
|
|
82
|
+
{
|
|
83
|
+
"text": "View the migration guide",
|
|
84
|
+
"href": "/components/button/button-legacy/migration-guide"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
56
87
|
},
|
|
57
88
|
"sortKey": 3
|
|
58
89
|
},
|
|
59
90
|
{
|
|
60
|
-
"title": "
|
|
61
|
-
"id": "
|
|
91
|
+
"title": "Split button",
|
|
92
|
+
"id": "split-button",
|
|
62
93
|
"status": {
|
|
63
94
|
"type": "beta"
|
|
64
95
|
},
|
|
65
96
|
"sortKey": 4
|
|
66
97
|
},
|
|
67
98
|
{
|
|
68
|
-
"title": "
|
|
69
|
-
"id": "
|
|
70
|
-
"status": {
|
|
71
|
-
"type": "beta"
|
|
72
|
-
},
|
|
99
|
+
"title": "Button group",
|
|
100
|
+
"id": "button-group",
|
|
73
101
|
"sortKey": 5
|
|
74
102
|
},
|
|
75
103
|
{
|
|
76
|
-
"title": "Button
|
|
77
|
-
"id": "button-
|
|
104
|
+
"title": "Button (legacy)",
|
|
105
|
+
"id": "button-legacy",
|
|
106
|
+
"status": {
|
|
107
|
+
"type": "intent-to-deprecate",
|
|
108
|
+
"description": "Legacy buttons will soon be deprecated. Please use the new [button](/components/button), [icon button](/components/button/icon-button), [link button](/components/button/link-button), or [link icon button](/components/button/link-icon-button). Migrate from legacy buttons using our codemod.",
|
|
109
|
+
"actions": [
|
|
110
|
+
{
|
|
111
|
+
"text": "View the migration guide",
|
|
112
|
+
"href": "/components/button/button-legacy/migration-guide"
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
78
116
|
"sortKey": 6
|
|
79
117
|
}
|
|
80
118
|
]
|
|
@@ -97,9 +135,9 @@
|
|
|
97
135
|
"@atlaskit/icon": "^22.3.0",
|
|
98
136
|
"@atlaskit/interaction-context": "^2.1.0",
|
|
99
137
|
"@atlaskit/platform-feature-flags": "^0.2.5",
|
|
100
|
-
"@atlaskit/primitives": "^
|
|
138
|
+
"@atlaskit/primitives": "^7.0.0",
|
|
101
139
|
"@atlaskit/spinner": "^16.1.0",
|
|
102
|
-
"@atlaskit/theme": "^12.
|
|
140
|
+
"@atlaskit/theme": "^12.9.0",
|
|
103
141
|
"@atlaskit/tokens": "^1.49.0",
|
|
104
142
|
"@atlaskit/tooltip": "^18.4.0",
|
|
105
143
|
"@atlaskit/visually-hidden": "^1.3.0",
|
|
@@ -115,11 +153,10 @@
|
|
|
115
153
|
"@af/visual-regression": "*",
|
|
116
154
|
"@atlaskit/app-provider": "^1.3.0",
|
|
117
155
|
"@atlaskit/calendar": "^14.2.0",
|
|
118
|
-
"@atlaskit/checkbox": "^13.
|
|
156
|
+
"@atlaskit/checkbox": "^13.4.0",
|
|
119
157
|
"@atlaskit/ssr": "*",
|
|
120
158
|
"@atlaskit/toggle": "^13.1.0",
|
|
121
159
|
"@atlaskit/visual-regression": "*",
|
|
122
|
-
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
123
160
|
"@testing-library/react": "^12.1.5",
|
|
124
161
|
"@testing-library/user-event": "^14.4.3",
|
|
125
162
|
"@types/react-router-dom": "^4.3.1",
|
|
@@ -157,7 +194,6 @@
|
|
|
157
194
|
}
|
|
158
195
|
},
|
|
159
196
|
"homepage": "https://atlassian.design/components/button/",
|
|
160
|
-
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
|
|
161
197
|
"platform-feature-flags": {
|
|
162
198
|
"platform.design-system-team.button-tokenised-typography-styles": {
|
|
163
199
|
"type": "boolean"
|