@atlaskit/form 12.0.12 → 12.0.13
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 +9 -0
- package/dist/cjs/messages.js +4 -4
- package/dist/es2019/messages.js +2 -2
- package/dist/esm/messages.js +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/form
|
|
2
2
|
|
|
3
|
+
## 12.0.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#188952](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188952)
|
|
8
|
+
[`1a88e6e2601ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a88e6e2601ae) -
|
|
9
|
+
Migrated usage of renamed/deprecated icons
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 12.0.12
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/cjs/messages.js
CHANGED
|
@@ -12,8 +12,8 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
12
12
|
var React = _react;
|
|
13
13
|
var _runtime = require("@compiled/react/runtime");
|
|
14
14
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
15
|
-
var
|
|
16
|
-
var
|
|
15
|
+
var _statusErrorError = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-error--error"));
|
|
16
|
+
var _statusSuccessEditorSuccess = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-success--editor-success"));
|
|
17
17
|
var _fieldIdContext = require("./field-id-context");
|
|
18
18
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
19
19
|
/**
|
|
@@ -40,14 +40,14 @@ var IconWrapper = function IconWrapper(_ref) {
|
|
|
40
40
|
}, children);
|
|
41
41
|
};
|
|
42
42
|
var messageIcons = {
|
|
43
|
-
error: /*#__PURE__*/React.createElement(
|
|
43
|
+
error: /*#__PURE__*/React.createElement(_statusErrorError.default, {
|
|
44
44
|
LEGACY_margin: "0 -2px 0 0",
|
|
45
45
|
color: "currentColor",
|
|
46
46
|
LEGACY_size: "small",
|
|
47
47
|
label: "error",
|
|
48
48
|
size: "small"
|
|
49
49
|
}),
|
|
50
|
-
valid: /*#__PURE__*/React.createElement(
|
|
50
|
+
valid: /*#__PURE__*/React.createElement(_statusSuccessEditorSuccess.default, {
|
|
51
51
|
LEGACY_margin: "0 -2px 0 0",
|
|
52
52
|
color: "currentColor",
|
|
53
53
|
LEGACY_size: "small",
|
package/dist/es2019/messages.js
CHANGED
|
@@ -3,8 +3,8 @@ import "./messages.compiled.css";
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import { createContext, useContext, useEffect, useRef, useState } from 'react';
|
|
6
|
-
import ErrorIcon from '@atlaskit/icon/core/migration/error';
|
|
7
|
-
import SuccessIcon from '@atlaskit/icon/core/migration/success--editor-success';
|
|
6
|
+
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
7
|
+
import SuccessIcon from '@atlaskit/icon/core/migration/status-success--editor-success';
|
|
8
8
|
import { FieldId } from './field-id-context';
|
|
9
9
|
|
|
10
10
|
/**
|
package/dist/esm/messages.js
CHANGED
|
@@ -4,8 +4,8 @@ import "./messages.compiled.css";
|
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import { ax, ix } from "@compiled/react/runtime";
|
|
6
6
|
import { createContext, useContext, useEffect, useRef, useState } from 'react';
|
|
7
|
-
import ErrorIcon from '@atlaskit/icon/core/migration/error';
|
|
8
|
-
import SuccessIcon from '@atlaskit/icon/core/migration/success--editor-success';
|
|
7
|
+
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
8
|
+
import SuccessIcon from '@atlaskit/icon/core/migration/status-success--editor-success';
|
|
9
9
|
import { FieldId } from './field-id-context';
|
|
10
10
|
|
|
11
11
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/form",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.13",
|
|
4
4
|
"description": "A form allows users to input information.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/css": "^0.12.0",
|
|
29
|
-
"@atlaskit/ds-lib": "^4.
|
|
29
|
+
"@atlaskit/ds-lib": "^4.1.0",
|
|
30
30
|
"@atlaskit/heading": "^5.2.0",
|
|
31
|
-
"@atlaskit/icon": "^27.
|
|
31
|
+
"@atlaskit/icon": "^27.5.0",
|
|
32
32
|
"@atlaskit/primitives": "^14.10.0",
|
|
33
33
|
"@atlaskit/theme": "^19.0.0",
|
|
34
|
-
"@atlaskit/tokens": "^5.
|
|
34
|
+
"@atlaskit/tokens": "^5.6.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"@compiled/react": "^0.18.3",
|
|
37
37
|
"final-form": "^4.20.3",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@atlaskit/docs": "^11.0.0",
|
|
54
54
|
"@atlaskit/link": "^3.2.0",
|
|
55
55
|
"@atlaskit/lozenge": "^13.0.0",
|
|
56
|
-
"@atlaskit/modal-dialog": "^14.
|
|
56
|
+
"@atlaskit/modal-dialog": "^14.3.0",
|
|
57
57
|
"@atlaskit/radio": "^8.1.0",
|
|
58
58
|
"@atlaskit/range": "^9.1.0",
|
|
59
59
|
"@atlaskit/section-message": "^8.2.0",
|