@atlaskit/inline-edit 12.2.4 → 12.2.6

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,17 @@
1
1
  # @atlaskit/inline-edit
2
2
 
3
+ ## 12.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 12.2.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 12.2.4
4
16
 
5
17
  ### Patch Changes
@@ -51,7 +51,7 @@ var buttonStyles = (0, _react2.css)({
51
51
  var analyticsAttributes = {
52
52
  componentName: 'inlineEdit',
53
53
  packageName: "@atlaskit/inline-edit",
54
- packageVersion: "12.2.4"
54
+ packageVersion: "12.2.6"
55
55
  };
56
56
 
57
57
  var noop = function noop() {};
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-edit",
3
- "version": "12.2.4",
3
+ "version": "12.2.6",
4
4
  "sideEffects": false
5
5
  }
@@ -20,7 +20,7 @@ const buttonStyles = css({
20
20
  const analyticsAttributes = {
21
21
  componentName: 'inlineEdit',
22
22
  packageName: "@atlaskit/inline-edit",
23
- packageVersion: "12.2.4"
23
+ packageVersion: "12.2.6"
24
24
  };
25
25
 
26
26
  const noop = () => {};
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-edit",
3
- "version": "12.2.4",
3
+ "version": "12.2.6",
4
4
  "sideEffects": false
5
5
  }
@@ -26,7 +26,7 @@ var buttonStyles = css({
26
26
  var analyticsAttributes = {
27
27
  componentName: 'inlineEdit',
28
28
  packageName: "@atlaskit/inline-edit",
29
- packageVersion: "12.2.4"
29
+ packageVersion: "12.2.6"
30
30
  };
31
31
 
32
32
  var noop = function noop() {};
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-edit",
3
- "version": "12.2.4",
3
+ "version": "12.2.6",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-edit",
3
- "version": "12.2.4",
3
+ "version": "12.2.6",
4
4
  "description": "An inline edit displays a custom input component that switches between reading and editing on the same page.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -26,14 +26,14 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@atlaskit/analytics-next": "^8.2.0",
29
- "@atlaskit/button": "^16.4.0",
29
+ "@atlaskit/button": "^16.5.0",
30
30
  "@atlaskit/codemod-utils": "^4.1.0",
31
- "@atlaskit/form": "^8.7.0",
31
+ "@atlaskit/form": "^8.8.0",
32
32
  "@atlaskit/icon": "^21.11.0",
33
33
  "@atlaskit/inline-dialog": "^13.4.0",
34
34
  "@atlaskit/textfield": "^5.3.0",
35
35
  "@atlaskit/theme": "^12.2.0",
36
- "@atlaskit/tokens": "^0.11.0",
36
+ "@atlaskit/tokens": "^0.13.0",
37
37
  "@babel/runtime": "^7.0.0",
38
38
  "@emotion/react": "^11.7.1"
39
39
  },
@@ -44,7 +44,7 @@
44
44
  "@atlaskit/datetime-picker": "^12.3.0",
45
45
  "@atlaskit/docs": "*",
46
46
  "@atlaskit/section-message": "^6.3.0",
47
- "@atlaskit/select": "^15.7.0",
47
+ "@atlaskit/select": "^16.0.0",
48
48
  "@atlaskit/ssr": "*",
49
49
  "@atlaskit/tag": "^11.4.0",
50
50
  "@atlaskit/tag-group": "^10.1.0",
package/report.api.md CHANGED
@@ -1,12 +1,17 @@
1
+ <!-- API Report Version: 2.2 -->
2
+
1
3
  ## API Report File for "@atlaskit/inline-edit"
2
4
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
6
+ > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
+
8
+ ### Table of contents
4
9
 
5
- <!--
6
- Generated API Report version: 2.0
7
- -->
10
+ - [Main Entry Types](#main-entry-types)
8
11
 
9
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
12
+ ### Main Entry Types
13
+
14
+ <!--SECTION START: Main Entry Types-->
10
15
 
11
16
  ```ts
12
17
  import { FieldProps } from '@atlaskit/form';
@@ -33,7 +38,7 @@ interface CommonProps extends WithAnalyticsEventsProps {
33
38
  value: any,
34
39
  formState: {},
35
40
  fieldState: {},
36
- ) => string | void | Promise<string | void>;
41
+ ) => Promise<string | void> | string | void;
37
42
  }
38
43
 
39
44
  // @public (undocumented)
@@ -75,3 +80,5 @@ export interface InlineEditProps<FieldValue> extends CommonProps {
75
80
 
76
81
  // (No @packageDocumentation comment for this package)
77
82
  ```
83
+
84
+ <!--SECTION END: Main Entry Types-->