@atlaskit/textfield 5.6.2 → 5.6.4
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 +12 -0
- package/dist/cjs/text-field.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/text-field.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/text-field.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +18 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/textfield
|
|
2
2
|
|
|
3
|
+
## 5.6.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`356d6ebed05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/356d6ebed05) - This package is now onboarded onto the product push model.
|
|
8
|
+
|
|
9
|
+
## 5.6.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
|
|
14
|
+
|
|
3
15
|
## 5.6.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/text-field.js
CHANGED
|
@@ -24,7 +24,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
24
24
|
var analyticsParams = {
|
|
25
25
|
componentName: 'textField',
|
|
26
26
|
packageName: "@atlaskit/textfield",
|
|
27
|
-
packageVersion: "5.6.
|
|
27
|
+
packageVersion: "5.6.4"
|
|
28
28
|
};
|
|
29
29
|
var Textfield = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
30
30
|
var _props$appearance = props.appearance,
|
package/dist/cjs/version.json
CHANGED
|
@@ -8,7 +8,7 @@ import { containerStyles as getContainerStyles, inputStyles as getInputStyles }
|
|
|
8
8
|
const analyticsParams = {
|
|
9
9
|
componentName: 'textField',
|
|
10
10
|
packageName: "@atlaskit/textfield",
|
|
11
|
-
packageVersion: "5.6.
|
|
11
|
+
packageVersion: "5.6.4"
|
|
12
12
|
};
|
|
13
13
|
const Textfield = /*#__PURE__*/forwardRef((props, ref) => {
|
|
14
14
|
const {
|
package/dist/es2019/version.json
CHANGED
package/dist/esm/text-field.js
CHANGED
|
@@ -14,7 +14,7 @@ import { containerStyles as getContainerStyles, inputStyles as getInputStyles }
|
|
|
14
14
|
var analyticsParams = {
|
|
15
15
|
componentName: 'textField',
|
|
16
16
|
packageName: "@atlaskit/textfield",
|
|
17
|
-
packageVersion: "5.6.
|
|
17
|
+
packageVersion: "5.6.4"
|
|
18
18
|
};
|
|
19
19
|
var Textfield = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
20
20
|
var _props$appearance = props.appearance,
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/textfield",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.4",
|
|
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/"
|
|
@@ -12,32 +12,24 @@
|
|
|
12
12
|
"module": "dist/esm/index.js",
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
|
14
14
|
"types": "dist/types/index.d.ts",
|
|
15
|
-
"typesVersions": {
|
|
16
|
-
">=4.5 <4.9": {
|
|
17
|
-
"*": [
|
|
18
|
-
"dist/types-ts4.5/*",
|
|
19
|
-
"dist/types-ts4.5/index.d.ts"
|
|
20
|
-
]
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
15
|
"sideEffects": false,
|
|
24
16
|
"atlaskit:src": "src/index.tsx",
|
|
25
17
|
"atlassian": {
|
|
26
18
|
"team": "Design System Team",
|
|
19
|
+
"productPushConsumption": [
|
|
20
|
+
"jira"
|
|
21
|
+
],
|
|
27
22
|
"releaseModel": "continuous",
|
|
28
23
|
"website": {
|
|
29
24
|
"name": "Text field",
|
|
30
25
|
"category": "Components"
|
|
31
26
|
}
|
|
32
27
|
},
|
|
33
|
-
"af:exports": {
|
|
34
|
-
".": "./src/index.tsx"
|
|
35
|
-
},
|
|
36
28
|
"dependencies": {
|
|
37
29
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
38
30
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
39
31
|
"@atlaskit/theme": "^12.5.0",
|
|
40
|
-
"@atlaskit/tokens": "^1.
|
|
32
|
+
"@atlaskit/tokens": "^1.14.0",
|
|
41
33
|
"@babel/runtime": "^7.0.0",
|
|
42
34
|
"@emotion/react": "^11.7.1"
|
|
43
35
|
},
|
|
@@ -45,6 +37,8 @@
|
|
|
45
37
|
"react": "^16.8.0"
|
|
46
38
|
},
|
|
47
39
|
"devDependencies": {
|
|
40
|
+
"@af/accessibility-testing": "*",
|
|
41
|
+
"@af/visual-regression": "*",
|
|
48
42
|
"@atlaskit/codemod-utils": "^4.2.3",
|
|
49
43
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
50
44
|
"@atlaskit/ssr": "*",
|
|
@@ -54,7 +48,6 @@
|
|
|
54
48
|
"@atlassian/feature-flags-test-utils": "*",
|
|
55
49
|
"@testing-library/dom": "^8.17.1",
|
|
56
50
|
"@testing-library/react": "^12.1.5",
|
|
57
|
-
"jest-axe": "^4.0.0",
|
|
58
51
|
"jscodeshift": "^0.13.0",
|
|
59
52
|
"react-dom": "^16.8.0",
|
|
60
53
|
"storybook-addon-performance": "^0.16.0",
|
|
@@ -86,6 +79,17 @@
|
|
|
86
79
|
"deprecation": "no-deprecated-imports"
|
|
87
80
|
}
|
|
88
81
|
},
|
|
82
|
+
"typesVersions": {
|
|
83
|
+
">=4.5 <4.9": {
|
|
84
|
+
"*": [
|
|
85
|
+
"dist/types-ts4.5/*",
|
|
86
|
+
"dist/types-ts4.5/index.d.ts"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"af:exports": {
|
|
91
|
+
".": "./src/index.tsx"
|
|
92
|
+
},
|
|
89
93
|
"platform-feature-flags": {
|
|
90
94
|
"platform.design-system-team.border-checkbox_nyoiu": {
|
|
91
95
|
"type": "boolean"
|