@atlaskit/button 23.10.10 → 23.11.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 +11 -0
- package/button/package.json +17 -0
- package/containers/button-group/package.json +17 -0
- package/default/button/package.json +17 -0
- package/dist/cjs/entry-points/button.js +13 -0
- package/dist/cjs/entry-points/containers-button-group.js +13 -0
- package/dist/cjs/entry-points/default-button.js +13 -0
- package/dist/cjs/entry-points/icon-button.js +13 -0
- package/dist/cjs/entry-points/icon-link.js +13 -0
- package/dist/cjs/entry-points/link.js +13 -0
- package/dist/cjs/entry-points/old-button-types.js +1 -0
- package/dist/cjs/entry-points/split-button.js +30 -0
- package/dist/cjs/entry-points/variants-types.js +1 -0
- package/dist/cjs/old-button/shared/button-base.js +1 -1
- package/dist/es2019/entry-points/button.js +1 -0
- package/dist/es2019/entry-points/containers-button-group.js +1 -0
- package/dist/es2019/entry-points/default-button.js +1 -0
- package/dist/es2019/entry-points/icon-button.js +1 -0
- package/dist/es2019/entry-points/icon-link.js +1 -0
- package/dist/es2019/entry-points/link.js +1 -0
- package/dist/es2019/entry-points/old-button-types.js +0 -0
- package/dist/es2019/entry-points/split-button.js +1 -0
- package/dist/es2019/entry-points/variants-types.js +0 -0
- package/dist/es2019/old-button/shared/button-base.js +1 -1
- package/dist/esm/entry-points/button.js +1 -0
- package/dist/esm/entry-points/containers-button-group.js +1 -0
- package/dist/esm/entry-points/default-button.js +1 -0
- package/dist/esm/entry-points/icon-button.js +1 -0
- package/dist/esm/entry-points/icon-link.js +1 -0
- package/dist/esm/entry-points/link.js +1 -0
- package/dist/esm/entry-points/old-button-types.js +0 -0
- package/dist/esm/entry-points/split-button.js +1 -0
- package/dist/esm/entry-points/variants-types.js +0 -0
- package/dist/esm/old-button/shared/button-base.js +1 -1
- package/dist/types/entry-points/button.d.ts +2 -0
- package/dist/types/entry-points/containers-button-group.d.ts +2 -0
- package/dist/types/entry-points/default-button.d.ts +2 -0
- package/dist/types/entry-points/icon-button.d.ts +2 -0
- package/dist/types/entry-points/icon-link.d.ts +2 -0
- package/dist/types/entry-points/link.d.ts +2 -0
- package/dist/types/entry-points/old-button-types.d.ts +1 -0
- package/dist/types/entry-points/split-button.d.ts +1 -0
- package/dist/types/entry-points/variants-types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/button.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/containers-button-group.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/default-button.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/icon-button.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/icon-link.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/link.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/old-button-types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/split-button.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/variants-types.d.ts +1 -0
- package/icon/button/package.json +17 -0
- package/icon/link/package.json +17 -0
- package/link/package.json +17 -0
- package/old-button/types/package.json +17 -0
- package/package.json +5 -5
- package/split-button/package.json +17 -0
- package/variants/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/button
|
|
2
2
|
|
|
3
|
+
## 23.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8fdea38bd31f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8fdea38bd31f8) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 23.10.10
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/button",
|
|
3
|
+
"main": "../dist/cjs/entry-points/button.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/button.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/button.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/button.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/button.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/containers/button-group",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/containers-button-group.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/containers-button-group.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/containers-button-group.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/containers-button-group.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/containers-button-group.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/default/button",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/default-button.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/default-button.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/default-button.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/default-button.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/default-button.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _button.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _button = _interopRequireDefault(require("../old-button/button"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _buttonGroup.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _buttonGroup = _interopRequireDefault(require("../containers/button-group"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _button.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _button = _interopRequireDefault(require("../new-button/variants/default/button"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _button.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _button = _interopRequireDefault(require("../new-button/variants/icon/button"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _link.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _link = _interopRequireDefault(require("../new-button/variants/icon/link"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _link.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _link = _interopRequireDefault(require("../new-button/variants/default/link"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Divider", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _splitButton.Divider;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "SplitButton", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _splitButton.SplitButton;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "SplitButtonContainer", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _splitButton.SplitButtonContainer;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "SplitButtonWithSlots", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _splitButton.SplitButtonWithSlots;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
var _splitButton = require("../new-button/containers/split-button/split-button");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -131,7 +131,7 @@ var ButtonBase = /*#__PURE__*/_react.default.forwardRef(function ButtonBase(prop
|
|
|
131
131
|
action: 'clicked',
|
|
132
132
|
componentName: 'button',
|
|
133
133
|
packageName: "@atlaskit/button",
|
|
134
|
-
packageVersion: "
|
|
134
|
+
packageVersion: "23.10.10",
|
|
135
135
|
analyticsData: analyticsContext
|
|
136
136
|
});
|
|
137
137
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../old-button/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../containers/button-group';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/default/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/icon/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/icon/link';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/default/link';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Divider, SplitButton, SplitButtonContainer, SplitButtonWithSlots } from '../new-button/containers/split-button/split-button';
|
|
File without changes
|
|
@@ -118,7 +118,7 @@ const ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(props, ref)
|
|
|
118
118
|
action: 'clicked',
|
|
119
119
|
componentName: 'button',
|
|
120
120
|
packageName: "@atlaskit/button",
|
|
121
|
-
packageVersion: "
|
|
121
|
+
packageVersion: "23.10.10",
|
|
122
122
|
analyticsData: analyticsContext
|
|
123
123
|
});
|
|
124
124
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../old-button/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../containers/button-group';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/default/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/icon/button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/icon/link';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../new-button/variants/default/link';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Divider, SplitButton, SplitButtonContainer, SplitButtonWithSlots } from '../new-button/containers/split-button/split-button';
|
|
File without changes
|
|
@@ -124,7 +124,7 @@ var ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(props, ref) {
|
|
|
124
124
|
action: 'clicked',
|
|
125
125
|
componentName: 'button',
|
|
126
126
|
packageName: "@atlaskit/button",
|
|
127
|
-
packageVersion: "
|
|
127
|
+
packageVersion: "23.10.10",
|
|
128
128
|
analyticsData: analyticsContext
|
|
129
129
|
});
|
|
130
130
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Appearance, BaseOwnProps, BaseProps, Spacing } from '../old-button/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Divider, SplitButton, SplitButtonContainer, SplitButtonWithSlots, } from '../new-button/containers/split-button/split-button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { AdditionalButtonVariantProps, AdditionalDefaultLinkVariantProps, Appearance, ButtonAppearance, ButtonSpacing, CommonAnchorProps, CommonBaseProps, CommonButtonProps, CommonButtonVariantProps, CommonLinkVariantProps, IconButtonAppearance, IconButtonSpacing, IconProp, IconSize, LinkButtonAppearance, Spacing, } from '../new-button/variants/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Appearance, BaseOwnProps, BaseProps, Spacing } from '../old-button/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Divider, SplitButton, SplitButtonContainer, SplitButtonWithSlots, } from '../new-button/containers/split-button/split-button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { AdditionalButtonVariantProps, AdditionalDefaultLinkVariantProps, Appearance, ButtonAppearance, ButtonSpacing, CommonAnchorProps, CommonBaseProps, CommonButtonProps, CommonButtonVariantProps, CommonLinkVariantProps, IconButtonAppearance, IconButtonSpacing, IconProp, IconSize, LinkButtonAppearance, Spacing, } from '../new-button/variants/types';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/icon/button",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/icon-button.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/icon-button.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/icon-button.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/icon-button.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/icon-button.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/icon/link",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/icon-link.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/icon-link.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/icon-link.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/icon-link.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/icon-link.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/link",
|
|
3
|
+
"main": "../dist/cjs/entry-points/link.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/link.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/link.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/link.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/link.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/old-button/types",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/old-button-types.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/old-button-types.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/old-button-types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/old-button-types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/old-button-types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/button",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.11.0",
|
|
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/"
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@atlaskit/interaction-context": "^3.1.0",
|
|
90
90
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
91
91
|
"@atlaskit/primitives": "^18.1.0",
|
|
92
|
-
"@atlaskit/spinner": "^19.
|
|
92
|
+
"@atlaskit/spinner": "^19.1.0",
|
|
93
93
|
"@atlaskit/theme": "^22.0.0",
|
|
94
94
|
"@atlaskit/tokens": "^11.4.0",
|
|
95
95
|
"@atlaskit/tooltip": "^21.1.0",
|
|
@@ -110,13 +110,13 @@
|
|
|
110
110
|
"@atlaskit/docs": "^11.7.0",
|
|
111
111
|
"@atlaskit/dropdown-menu": "^16.8.0",
|
|
112
112
|
"@atlaskit/form": "^15.5.0",
|
|
113
|
-
"@atlaskit/heading": "^5.
|
|
114
|
-
"@atlaskit/link": "^3.
|
|
113
|
+
"@atlaskit/heading": "^5.4.0",
|
|
114
|
+
"@atlaskit/link": "^3.4.0",
|
|
115
115
|
"@atlaskit/logo": "^19.10.0",
|
|
116
116
|
"@atlaskit/modal-dialog": "^14.14.0",
|
|
117
117
|
"@atlaskit/section-message": "^8.12.0",
|
|
118
118
|
"@atlaskit/select": "^21.10.0",
|
|
119
|
-
"@atlaskit/toggle": "^15.
|
|
119
|
+
"@atlaskit/toggle": "^15.3.0",
|
|
120
120
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
121
121
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
122
122
|
"@atlassian/ssr-tests": "workspace:^",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/split-button",
|
|
3
|
+
"main": "../dist/cjs/entry-points/split-button.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/split-button.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/split-button.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/split-button.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/split-button.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/button/variants/types",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/variants-types.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/variants-types.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/variants-types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/variants-types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/variants-types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|