@atlaskit/right-side-panel 3.0.19 → 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,27 @@
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
+
10
+ ## 4.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`770f036c93884`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/770f036c93884) -
15
+ Removed `react-intl-next` alias and replaced all usages with `react-intl` directly.
16
+
17
+ What changed: The `react-intl-next` npm alias (which resolved to `react-intl@^5`) has been
18
+ removed. All imports now reference `react-intl` directly, and `peerDependencies` have been updated
19
+ to `"^5.25.1 || ^6.0.0 || ^7.0.0"`.
20
+
21
+ How consumer should update their code: Ensure `react-intl` is installed at a version satisfying
22
+ `^5.25.1 || ^6.0.0 || ^7.0.0`. If your application was using `react-intl-next` as an npm alias, it
23
+ can be safely removed. Replace any remaining `react-intl-next` imports with `react-intl`.
24
+
3
25
  ## 3.0.19
4
26
 
5
27
  ### Patch 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": "3.0.19",
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/"
@@ -40,14 +40,15 @@
40
40
  "peerDependencies": {
41
41
  "react": "^18.2.0 || ^19.0.0",
42
42
  "react-dom": "^18.2.0 || ^19.0.0",
43
- "react-intl-next": "npm:react-intl@^5.18.1"
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",
50
50
  "enzyme": "^3.10.0",
51
+ "react-intl": "^6.6.2",
51
52
  "react-test-renderer": "^18.2.0"
52
53
  },
53
54
  "keywords": [
package/report.api.md CHANGED
@@ -108,7 +108,7 @@ interface State {
108
108
  {
109
109
  "react": "^16.8.0",
110
110
  "react-dom": "^16.8.0",
111
- "react-intl-next": "npm:react-intl@^5.18.1"
111
+ "react-intl": "npm:react-intl@^5.18.1"
112
112
  }
113
113
  ```
114
114
 
@@ -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
- }