@atlaskit/form 8.8.5 → 8.8.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,12 @@
1
1
  # @atlaskit/form
2
2
 
3
+ ## 8.8.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
8
+ - Updated dependencies
9
+
3
10
  ## 8.8.5
4
11
 
5
12
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/form",
3
- "version": "8.8.5",
3
+ "version": "8.8.6",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/form",
3
- "version": "8.8.5",
3
+ "version": "8.8.6",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/form",
3
- "version": "8.8.5",
3
+ "version": "8.8.6",
4
4
  "sideEffects": false
5
5
  }
@@ -14,9 +14,15 @@ export interface FormHeaderProps {
14
14
  */
15
15
  children?: ReactNode;
16
16
  }
17
- declare const FormHeaderContent: React.FC;
18
- declare const FormHeaderDescription: React.FC;
19
- declare const FormHeaderTitle: React.FC;
17
+ declare const FormHeaderContent: React.FC<{
18
+ children: ReactNode;
19
+ }>;
20
+ declare const FormHeaderDescription: React.FC<{
21
+ children: ReactNode;
22
+ }>;
23
+ declare const FormHeaderTitle: React.FC<{
24
+ children: ReactNode;
25
+ }>;
20
26
  /**
21
27
  * __Form header__
22
28
  *
@@ -1,8 +1,9 @@
1
1
  /** @jsx jsx */
2
- import { FC } from 'react';
2
+ import { FC, ReactNode } from 'react';
3
3
  export interface LabelProps {
4
4
  id?: string;
5
5
  htmlFor: string;
6
+ children: ReactNode;
6
7
  }
7
8
  /**
8
9
  * __Label__
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/form",
3
- "version": "8.8.5",
3
+ "version": "8.8.6",
4
4
  "description": "A form allows users to input information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -39,7 +39,7 @@
39
39
  "homepage": "https://atlassian.design/components/form/",
40
40
  "dependencies": {
41
41
  "@atlaskit/icon": "^21.11.0",
42
- "@atlaskit/theme": "^12.2.0",
42
+ "@atlaskit/theme": "^12.3.0",
43
43
  "@atlaskit/tokens": "^1.2.0",
44
44
  "@babel/runtime": "^7.0.0",
45
45
  "@emotion/react": "^11.7.1",