@atlaskit/right-side-panel 4.0.0 → 4.1.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,12 @@
1
1
  # @atlaskit/right-side-panel
2
2
 
3
+ ## 4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c56f27a582fec`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c56f27a582fec) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
3
10
  ## 4.0.0
4
11
 
5
12
  ### Major Changes
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/right-side-panel/RightSidePanel",
3
+ "main": "../dist/cjs/entry-points/RightSidePanel.js",
4
+ "module": "../dist/esm/entry-points/RightSidePanel.js",
5
+ "module:es2019": "../dist/es2019/entry-points/RightSidePanel.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/RightSidePanel.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/RightSidePanel.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "target": "es5",
5
4
  "outDir": "../../../../../confluence/tsDist/@atlaskit__right-side-panel",
6
5
  "rootDir": "../",
7
6
  "composite": true,
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "target": "es5",
5
4
  "outDir": "../../../../../tsDist/@atlaskit__right-side-panel/app",
6
5
  "rootDir": "../",
7
6
  "composite": true,
@@ -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, "RightSidePanel", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _index.default;
11
+ }
12
+ });
13
+ var _index = _interopRequireDefault(require("../components/RightSidePanel/index"));
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ContentWrapper", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _styled.ContentWrapper;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "FlexContainer", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _styled.FlexContainer;
16
+ }
17
+ });
18
+ var _styled = require("../components/styled");
@@ -0,0 +1 @@
1
+ export { default as RightSidePanel } from '../components/RightSidePanel/index';
@@ -0,0 +1 @@
1
+ export { FlexContainer, ContentWrapper } from '../components/styled';
@@ -0,0 +1 @@
1
+ export { default as RightSidePanel } from '../components/RightSidePanel/index';
@@ -0,0 +1 @@
1
+ export { FlexContainer, ContentWrapper } from '../components/styled';
@@ -0,0 +1 @@
1
+ export { default as RightSidePanel } from '../components/RightSidePanel/index';
@@ -0,0 +1 @@
1
+ export { FlexContainer, ContentWrapper } from '../components/styled';
@@ -0,0 +1 @@
1
+ export { default as RightSidePanel } from '../components/RightSidePanel/index';
@@ -0,0 +1 @@
1
+ export { FlexContainer, ContentWrapper } from '../components/styled';
package/docs/0-intro.tsx CHANGED
@@ -70,9 +70,9 @@ const intro: React.ReactElement = md`
70
70
  }
71
71
  `}
72
72
 
73
- ${
74
- (
75
- // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
73
+ ${(
74
+ <>
75
+ {/* eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766 */}
76
76
  <div style={{ paddingTop: token('space.200') }}>
77
77
  <Button
78
78
  onClick={() => window.open('/examples/help/right-side-panel/0-Right-Side-Panel', '_self')}
@@ -80,8 +80,8 @@ const intro: React.ReactElement = md`
80
80
  Open Example
81
81
  </Button>
82
82
  </div>
83
- )
84
- }
83
+ </>
84
+ )}
85
85
 
86
86
  ${(
87
87
  <Props props={require('!!extract-react-types-loader!../src/components/RightSidePanel/index')} />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "4.0.0",
3
+ "version": "4.1.0",
4
4
  "description": "A cross-product right-side-panel component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -43,7 +43,7 @@
43
43
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@atlaskit/page": "^14.0.0",
46
+ "@atlaskit/page": "^14.1.0",
47
47
  "@testing-library/react": "^16.3.0",
48
48
  "@types/exenv": "^1.2.0",
49
49
  "@types/react-transition-group": "^2.0.6",
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/right-side-panel/styled",
3
+ "main": "../dist/cjs/entry-points/styled.js",
4
+ "module": "../dist/esm/entry-points/styled.js",
5
+ "module:es2019": "../dist/es2019/entry-points/styled.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/styled.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/styled.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -1,30 +0,0 @@
1
- {
2
- "extends": "../../../../tsconfig.local-consumption.json",
3
- "compilerOptions": {
4
- "target": "es5",
5
- "outDir": "../../../../../jira/tsDist/@atlaskit__right-side-panel/app",
6
- "rootDir": "../",
7
- "composite": true,
8
- "noCheck": true
9
- },
10
- "include": [
11
- "../src/**/*.ts",
12
- "../src/**/*.tsx"
13
- ],
14
- "exclude": [
15
- "../src/**/__tests__/*",
16
- "../src/**/*.test.*",
17
- "../src/**/test.*",
18
- "../src/**/examples.*",
19
- "../src/**/examples/*",
20
- "../src/**/examples/**/*",
21
- "../src/**/*.stories.*",
22
- "../src/**/stories/*",
23
- "../src/**/stories/**/*"
24
- ],
25
- "references": [
26
- {
27
- "path": "../../../design-system/tokens/afm-jira/tsconfig.json"
28
- }
29
- ]
30
- }