@atlaskit/form 9.1.0 → 9.1.2
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 +13 -0
- package/dist/cjs/field.js +1 -1
- package/dist/es2019/field.js +1 -1
- package/dist/esm/field.js +1 -1
- package/dist/types/field.d.ts +1 -0
- package/dist/types-ts4.5/field.d.ts +1 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/form
|
|
2
2
|
|
|
3
|
+
## 9.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#68248](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68248) [`22e0fd4f6694`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/22e0fd4f6694) - Move the onBlur event from the input to the input container in `DatePicker`.
|
|
8
|
+
Add the type `aria-describedby` in to Field component.
|
|
9
|
+
|
|
10
|
+
## 9.1.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#88354](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88354) [`4c87d9b4f0c2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4c87d9b4f0c2) - The internal composition of this component has changed. There is no expected change in behavior.
|
|
15
|
+
|
|
3
16
|
## 9.1.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/dist/cjs/field.js
CHANGED
|
@@ -19,7 +19,7 @@ var _requiredAsterisk = _interopRequireDefault(require("./required-asterisk"));
|
|
|
19
19
|
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; }
|
|
20
20
|
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; } /** @jsx jsx */
|
|
21
21
|
var fieldWrapperStyles = (0, _react2.css)({
|
|
22
|
-
|
|
22
|
+
marginBlockStart: "var(--ds-space-100, 8px)"
|
|
23
23
|
});
|
|
24
24
|
function isEvent(event) {
|
|
25
25
|
return Boolean(event && event.target);
|
package/dist/es2019/field.js
CHANGED
|
@@ -8,7 +8,7 @@ import { FormContext, IsDisabledContext } from './form';
|
|
|
8
8
|
import { Label } from './label';
|
|
9
9
|
import RequiredAsterisk from './required-asterisk';
|
|
10
10
|
const fieldWrapperStyles = css({
|
|
11
|
-
|
|
11
|
+
marginBlockStart: "var(--ds-space-100, 8px)"
|
|
12
12
|
});
|
|
13
13
|
function isEvent(event) {
|
|
14
14
|
return Boolean(event && event.target);
|
package/dist/esm/field.js
CHANGED
|
@@ -13,7 +13,7 @@ import { FormContext, IsDisabledContext } from './form';
|
|
|
13
13
|
import { Label } from './label';
|
|
14
14
|
import RequiredAsterisk from './required-asterisk';
|
|
15
15
|
var fieldWrapperStyles = css({
|
|
16
|
-
|
|
16
|
+
marginBlockStart: "var(--ds-space-100, 8px)"
|
|
17
17
|
});
|
|
18
18
|
function isEvent(event) {
|
|
19
19
|
return Boolean(event && event.target);
|
package/dist/types/field.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/form",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.2",
|
|
4
4
|
"description": "A form allows users to input information.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/icon": "^22.1.0",
|
|
31
|
-
"@atlaskit/primitives": "^5.
|
|
32
|
-
"@atlaskit/theme": "^12.
|
|
33
|
-
"@atlaskit/tokens": "^1.
|
|
31
|
+
"@atlaskit/primitives": "^5.5.0",
|
|
32
|
+
"@atlaskit/theme": "^12.7.0",
|
|
33
|
+
"@atlaskit/tokens": "^1.43.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
35
|
"@emotion/react": "^11.7.1",
|
|
36
36
|
"final-form": "^4.20.3",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"@af/accessibility-testing": "*",
|
|
47
47
|
"@af/integration-testing": "*",
|
|
48
48
|
"@af/visual-regression": "*",
|
|
49
|
-
"@atlaskit/banner": "^12.
|
|
50
|
-
"@atlaskit/button": "^17.
|
|
49
|
+
"@atlaskit/banner": "^12.2.0",
|
|
50
|
+
"@atlaskit/button": "^17.11.0",
|
|
51
51
|
"@atlaskit/checkbox": "^13.1.0",
|
|
52
52
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
53
53
|
"@atlaskit/range": "^7.1.0",
|
|
54
|
-
"@atlaskit/select": "^17.
|
|
54
|
+
"@atlaskit/select": "^17.6.0",
|
|
55
55
|
"@atlaskit/ssr": "*",
|
|
56
56
|
"@atlaskit/textfield": "^6.1.0",
|
|
57
57
|
"@atlaskit/visual-regression": "*",
|