@atlaskit/forge-react-types 0.6.0 → 0.7.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.
@@ -3,9 +3,9 @@
3
3
  *
4
4
  * Extract component prop types from UIKit 2 components - DynamicTableProps
5
5
  *
6
- * @codegen <<SignedSource::c890291e6c3787365ab3388ccd6fbbb2>>
6
+ * @codegen <<SignedSource::03b327fd7b2b0d35bb11cad82c90e06e>>
7
7
  * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
- * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/dynamictable/__generated__/index.partial.tsx <<SignedSource::6f2271a6205d0822b4d137943d8c81cf>>
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/dynamictable/__generated__/index.partial.tsx <<SignedSource::cf7412793fca67a33a30cac3c6cf9d55>>
9
9
  */
10
10
  import type { RowType, StatefulProps } from '@atlaskit/dynamic-table/types';
11
11
  type NewRowType = Pick<RowType, 'cells' | 'key' | 'isHighlighted'>;
@@ -3,9 +3,9 @@
3
3
  *
4
4
  * Extract component prop types from UIKit 2 components - SelectProps
5
5
  *
6
- * @codegen <<SignedSource::727e28488596a9f6dd15015cf612d87b>>
6
+ * @codegen <<SignedSource::34b03877a8575c86c89dbc1a170d510f>>
7
7
  * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
- * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/select/__generated__/index.partial.tsx <<SignedSource::d942c0f7e12d127523ea750bac92a98a>>
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/select/__generated__/index.partial.tsx <<SignedSource::65ddf6ee7d476bf410047952e4cf6bf0>>
9
9
  */
10
10
  import { SelectProps as PlatformSelectProps } from '@atlaskit/select';
11
11
  export type SelectProps = Pick<PlatformSelectProps<any, true | false>, 'spacing' | 'appearance' | 'testId' | 'autoFocus' | 'defaultValue' | 'closeMenuOnSelect' | 'inputValue' | 'inputId' | 'isClearable' | 'isLoading' | 'isMulti' | 'isSearchable' | 'menuIsOpen' | 'onInputChange' | 'options' | 'placeholder' | 'onChange' | 'id' | 'isDisabled' | 'isInvalid' | 'onBlur' | 'onFocus' | 'value' | 'aria-invalid' | 'aria-labelledby' | 'name'> & {
@@ -1,4 +1,5 @@
1
1
  export type { BadgeProps } from './BadgeProps.codegen';
2
+ export type { BannerProps } from './BannerProps.codegen';
2
3
  export type { BleedProps } from './BleedProps.codegen';
3
4
  export type { BoxProps } from './BoxProps.codegen';
4
5
  export type { ButtonGroupProps } from './ButtonGroupProps.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 - BannerProps
5
+ *
6
+ * @codegen <<SignedSource::8dbcd1242f8f41057dca14d4f74a0558>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/banner/__generated__/index.partial.tsx <<SignedSource::38dfbc20812e31312c3e7d8a543fc94d>>
9
+ */
10
+ import React from 'react';
11
+ import PlatformBanner from '@atlaskit/banner';
12
+ type PlatformBannerProps = React.ComponentProps<typeof PlatformBanner>;
13
+ export type BannerProps = Pick<PlatformBannerProps, 'appearance' | 'children' | 'icon' | 'testId'>;
14
+ export {};