@atlaskit/textfield 6.5.1 → 6.5.3
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 +14 -0
- package/dist/cjs/text-field.js +2 -2
- package/dist/es2019/text-field.js +1 -1
- package/dist/esm/text-field.js +1 -1
- package/package.json +3 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/textfield
|
|
2
2
|
|
|
3
|
+
## 6.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#143559](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/143559)
|
|
8
|
+
[`56dfbfe361f96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/56dfbfe361f96) -
|
|
9
|
+
Upgrade react-select from 5.4 to 5.8 and replace it with internal atlaskit/react-select
|
|
10
|
+
|
|
11
|
+
## 6.5.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.5.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/text-field.js
CHANGED
|
@@ -21,13 +21,13 @@ var _excluded = ["appearance", "className", "elemAfterInput", "elemBeforeInput",
|
|
|
21
21
|
*/
|
|
22
22
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
23
23
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof3(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u &&
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof3(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
25
25
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
26
26
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
27
27
|
var analyticsParams = {
|
|
28
28
|
componentName: 'textField',
|
|
29
29
|
packageName: "@atlaskit/textfield",
|
|
30
|
-
packageVersion: "6.5.
|
|
30
|
+
packageVersion: "6.5.3"
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
/**
|
package/dist/esm/text-field.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/textfield",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.3",
|
|
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/"
|
|
@@ -17,10 +17,6 @@
|
|
|
17
17
|
"atlassian": {
|
|
18
18
|
"team": "Design System Team",
|
|
19
19
|
"runReact18": true,
|
|
20
|
-
"productPushConsumption": [
|
|
21
|
-
"jira"
|
|
22
|
-
],
|
|
23
|
-
"releaseModel": "continuous",
|
|
24
20
|
"website": {
|
|
25
21
|
"name": "Text field",
|
|
26
22
|
"category": "Components"
|
|
@@ -29,7 +25,7 @@
|
|
|
29
25
|
"dependencies": {
|
|
30
26
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
31
27
|
"@atlaskit/theme": "^13.0.0",
|
|
32
|
-
"@atlaskit/tokens": "^
|
|
28
|
+
"@atlaskit/tokens": "^2.0.0",
|
|
33
29
|
"@babel/runtime": "^7.0.0",
|
|
34
30
|
"@emotion/react": "^11.7.1"
|
|
35
31
|
},
|
|
@@ -41,7 +37,7 @@
|
|
|
41
37
|
"@af/integration-testing": "*",
|
|
42
38
|
"@af/visual-regression": "*",
|
|
43
39
|
"@atlaskit/codemod-utils": "^4.2.3",
|
|
44
|
-
"@atlaskit/ds-lib": "^
|
|
40
|
+
"@atlaskit/ds-lib": "^3.0.0",
|
|
45
41
|
"@atlaskit/ssr": "*",
|
|
46
42
|
"@atlaskit/visual-regression": "*",
|
|
47
43
|
"@atlassian/feature-flags-test-utils": "*",
|