@atlaskit/textfield 8.2.6 → 8.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/textfield
2
2
 
3
+ ## 8.3.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
+
3
10
  ## 8.2.6
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 _textField.default;
11
+ }
12
+ });
13
+ var _textField = _interopRequireDefault(require("../text-field"));
@@ -0,0 +1 @@
1
+ "use strict";
@@ -28,7 +28,7 @@ var inputMediaDisabled = null;
28
28
  var analyticsParams = {
29
29
  componentName: 'textField',
30
30
  packageName: "@atlaskit/textfield",
31
- packageVersion: "0.0.0-development"
31
+ packageVersion: "8.2.6"
32
32
  };
33
33
  var disabledStyle = {
34
34
  standard: "_1h6dby5v _bfhkby5v _syaz1gmx _80om13gf",
@@ -0,0 +1 @@
1
+ export { default } from '../text-field';
File without changes
@@ -13,7 +13,7 @@ const inputMediaDisabled = null;
13
13
  const analyticsParams = {
14
14
  componentName: 'textField',
15
15
  packageName: "@atlaskit/textfield",
16
- packageVersion: "0.0.0-development"
16
+ packageVersion: "8.2.6"
17
17
  };
18
18
  const disabledStyle = {
19
19
  standard: "_1h6dby5v _bfhkby5v _syaz1gmx _80om13gf",
@@ -0,0 +1 @@
1
+ export { default } from '../text-field';
File without changes
@@ -19,7 +19,7 @@ var inputMediaDisabled = null;
19
19
  var analyticsParams = {
20
20
  componentName: 'textField',
21
21
  packageName: "@atlaskit/textfield",
22
- packageVersion: "0.0.0-development"
22
+ packageVersion: "8.2.6"
23
23
  };
24
24
  var disabledStyle = {
25
25
  standard: "_1h6dby5v _bfhkby5v _syaz1gmx _80om13gf",
@@ -0,0 +1 @@
1
+ export { default } from '../text-field';
@@ -0,0 +1 @@
1
+ export type { Appearance, TextfieldProps } from '../types';
@@ -0,0 +1 @@
1
+ export { default } from '../text-field';
@@ -0,0 +1 @@
1
+ export type { Appearance, TextfieldProps } from '../types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/textfield",
3
- "version": "8.2.6",
3
+ "version": "8.3.0",
4
4
  "description": "A text field is an input that allows a user to write or edit text.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -45,12 +45,12 @@
45
45
  "@af/integration-testing": "workspace:^",
46
46
  "@af/visual-regression": "workspace:^",
47
47
  "@atlaskit/avatar": "^25.11.0",
48
- "@atlaskit/button": "^23.10.0",
48
+ "@atlaskit/button": "^23.11.0",
49
49
  "@atlaskit/docs": "^11.7.0",
50
50
  "@atlaskit/ds-lib": "^6.0.0",
51
51
  "@atlaskit/form": "^15.5.0",
52
52
  "@atlaskit/icon": "^34.0.0",
53
- "@atlaskit/link": "^3.3.0",
53
+ "@atlaskit/link": "^3.4.0",
54
54
  "@atlaskit/primitives": "^18.1.0",
55
55
  "@atlaskit/section-message": "^8.12.0",
56
56
  "@atlassian/react-compiler-gating": "workspace:^",
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/textfield/text-field",
3
+ "main": "../dist/cjs/entry-points/text-field.js",
4
+ "module": "../dist/esm/entry-points/text-field.js",
5
+ "module:es2019": "../dist/es2019/entry-points/text-field.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/text-field.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/text-field.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/textfield/types",
3
+ "main": "../dist/cjs/entry-points/types.js",
4
+ "module": "../dist/esm/entry-points/types.js",
5
+ "module:es2019": "../dist/es2019/entry-points/types.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }