@atlaskit/forge-react-types 0.22.4 → 0.23.0

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,13 @@
1
1
  # @atlaskit/forge-react-types
2
2
 
3
+ ## 0.23.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#117808](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117808)
8
+ [`bf24f053d5b93`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bf24f053d5b93) -
9
+ Add InlineEdit Component
10
+
3
11
  ## 0.22.4
4
12
 
5
13
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ *
4
+ * Extract component prop types from UIKit 2 components - InlineEditProps
5
+ *
6
+ * @codegen <<SignedSource::df616049f34e7fd6ab871781645bdb6a>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/inline-edit/index.tsx <<SignedSource::86ac72f92909d48a88b33710464753bb>>
9
+ */
10
+ import React from 'react';
11
+ import { default as PlatformInlineEdit } from '@atlaskit/inline-edit';
12
+ export type InlineEditProps = Omit<React.ComponentProps<typeof PlatformInlineEdit>, 'validate' | 'analyticsContext' | 'readView' | 'editView'> & {
13
+ children: React.ReactNode;
14
+ };
@@ -23,6 +23,7 @@ export type { HeadingProps } from './HeadingProps.codegen';
23
23
  export type { HelperMessageProps } from './HelperMessageProps.codegen';
24
24
  export type { IconProps } from './IconProps.codegen';
25
25
  export type { InlineProps } from './InlineProps.codegen';
26
+ export type { InlineEditProps } from './InlineEditProps.codegen';
26
27
  export type { LabelProps } from './LabelProps.codegen';
27
28
  export type { LinkButtonProps } from './LinkButtonProps.codegen';
28
29
  export type { ListProps } from './ListProps.codegen';
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ *
4
+ * Extract component prop types from UIKit 2 components - InlineEditProps
5
+ *
6
+ * @codegen <<SignedSource::df616049f34e7fd6ab871781645bdb6a>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/inline-edit/index.tsx <<SignedSource::86ac72f92909d48a88b33710464753bb>>
9
+ */
10
+ import React from 'react';
11
+ import { default as PlatformInlineEdit } from '@atlaskit/inline-edit';
12
+ export type InlineEditProps = Omit<React.ComponentProps<typeof PlatformInlineEdit>, 'validate' | 'analyticsContext' | 'readView' | 'editView'> & {
13
+ children: React.ReactNode;
14
+ };
@@ -23,6 +23,7 @@ export type { HeadingProps } from './HeadingProps.codegen';
23
23
  export type { HelperMessageProps } from './HelperMessageProps.codegen';
24
24
  export type { IconProps } from './IconProps.codegen';
25
25
  export type { InlineProps } from './InlineProps.codegen';
26
+ export type { InlineEditProps } from './InlineEditProps.codegen';
26
27
  export type { LabelProps } from './LabelProps.codegen';
27
28
  export type { LinkButtonProps } from './LinkButtonProps.codegen';
28
29
  export type { ListProps } from './ListProps.codegen';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/forge-react-types",
3
- "version": "0.22.4",
3
+ "version": "0.23.0",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -35,6 +35,7 @@
35
35
  "@atlaskit/empty-state": "^7.9.0",
36
36
  "@atlaskit/form": "^10.4.0",
37
37
  "@atlaskit/heading": "^2.4.0",
38
+ "@atlaskit/inline-edit": "^13.4.1",
38
39
  "@atlaskit/lozenge": "^11.8.0",
39
40
  "@atlaskit/modal-dialog": "^12.14.0",
40
41
  "@atlaskit/primitives": "^11.0.0",
@@ -0,0 +1,16 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ *
4
+ * Extract component prop types from UIKit 2 components - InlineEditProps
5
+ *
6
+ * @codegen <<SignedSource::df616049f34e7fd6ab871781645bdb6a>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/inline-edit/index.tsx <<SignedSource::86ac72f92909d48a88b33710464753bb>>
9
+ */
10
+ import React from 'react';
11
+ import { default as PlatformInlineEdit } from '@atlaskit/inline-edit';
12
+
13
+ export type InlineEditProps = Omit<
14
+ React.ComponentProps<typeof PlatformInlineEdit>,
15
+ 'validate' | 'analyticsContext' | 'readView' | 'editView'
16
+ > & { children: React.ReactNode };
@@ -23,6 +23,7 @@ export type { HeadingProps } from './HeadingProps.codegen';
23
23
  export type { HelperMessageProps } from './HelperMessageProps.codegen';
24
24
  export type { IconProps } from './IconProps.codegen';
25
25
  export type { InlineProps } from './InlineProps.codegen';
26
+ export type { InlineEditProps } from './InlineEditProps.codegen';
26
27
  export type { LabelProps } from './LabelProps.codegen';
27
28
  export type { LinkButtonProps } from './LinkButtonProps.codegen';
28
29
  export type { ListProps } from './ListProps.codegen';