@atlaskit/pagination 16.2.11 → 16.3.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/pagination
2
2
 
3
+ ## 16.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`31b1ede297136`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31b1ede297136) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
3
10
  ## 16.2.11
4
11
 
5
12
  ### Patch Changes
@@ -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 _pagination.default;
11
+ }
12
+ });
13
+ var _pagination = _interopRequireDefault(require("../pagination"));
@@ -34,7 +34,7 @@ var styles = {
34
34
  var analyticsAttributes = {
35
35
  componentName: 'pagination',
36
36
  packageName: "@atlaskit/pagination",
37
- packageVersion: "16.2.11"
37
+ packageVersion: "16.3.0"
38
38
  };
39
39
  function NavigatorIcon(_ref) {
40
40
  var chevronDirection = _ref.chevronDirection;
@@ -0,0 +1 @@
1
+ export { default } from '../pagination';
@@ -21,7 +21,7 @@ const styles = {
21
21
  const analyticsAttributes = {
22
22
  componentName: 'pagination',
23
23
  packageName: "@atlaskit/pagination",
24
- packageVersion: "16.2.11"
24
+ packageVersion: "16.3.0"
25
25
  };
26
26
  function NavigatorIcon({
27
27
  chevronDirection
@@ -0,0 +1 @@
1
+ export { default } from '../pagination';
@@ -25,7 +25,7 @@ var styles = {
25
25
  var analyticsAttributes = {
26
26
  componentName: 'pagination',
27
27
  packageName: "@atlaskit/pagination",
28
- packageVersion: "16.2.11"
28
+ packageVersion: "16.3.0"
29
29
  };
30
30
  function NavigatorIcon(_ref) {
31
31
  var chevronDirection = _ref.chevronDirection;
@@ -0,0 +1 @@
1
+ export { default } from '../pagination';
@@ -0,0 +1 @@
1
+ export { default } from '../pagination';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/pagination",
3
- "version": "16.2.11",
3
+ "version": "16.3.0",
4
4
  "description": "Pagination allows you to divide large amounts of content into smaller chunks across multiple pages.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -44,7 +44,7 @@
44
44
  "@atlaskit/button": "^23.11.0",
45
45
  "@atlaskit/css": "^0.19.0",
46
46
  "@atlaskit/ds-lib": "^7.0.0",
47
- "@atlaskit/icon": "^34.0.0",
47
+ "@atlaskit/icon": "^34.3.0",
48
48
  "@atlaskit/primitives": "^19.0.0",
49
49
  "@atlaskit/tokens": "^13.0.0",
50
50
  "@atlaskit/visually-hidden": "^3.0.0",
@@ -59,7 +59,7 @@
59
59
  "@af/integration-testing": "workspace:^",
60
60
  "@af/visual-regression": "workspace:^",
61
61
  "@atlaskit/code": "^17.4.0",
62
- "@atlaskit/docs": "^11.7.0",
62
+ "@atlaskit/docs": "^11.8.0",
63
63
  "@atlaskit/heading": "^5.4.0",
64
64
  "@atlaskit/link": "^3.4.0",
65
65
  "@atlaskit/section-message": "^8.12.0",
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/pagination/pagination",
3
+ "main": "../dist/cjs/entry-points/pagination.js",
4
+ "module": "../dist/esm/entry-points/pagination.js",
5
+ "module:es2019": "../dist/es2019/entry-points/pagination.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/pagination.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/pagination.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }