@atlaskit/forge-react-types 0.8.3 → 0.10.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 +16 -0
- package/dist/cjs/components/__generated__/ListItemProps.codegen.js +5 -0
- package/dist/cjs/components/__generated__/ListProps.codegen.js +5 -0
- package/dist/es2019/components/__generated__/ListItemProps.codegen.js +1 -0
- package/dist/es2019/components/__generated__/ListProps.codegen.js +1 -0
- package/dist/esm/components/__generated__/ListItemProps.codegen.js +1 -0
- package/dist/esm/components/__generated__/ListProps.codegen.js +1 -0
- package/dist/types/components/__generated__/ListItemProps.codegen.d.ts +13 -0
- package/dist/types/components/__generated__/ListProps.codegen.d.ts +14 -0
- package/dist/types/components/__generated__/index.d.ts +2 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/components/__generated__/ListItemProps.codegen.d.ts +13 -0
- package/dist/types-ts4.5/components/__generated__/ListProps.codegen.d.ts +14 -0
- package/dist/types-ts4.5/components/__generated__/index.d.ts +2 -0
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +5 -5
- package/src/components/__generated__/ListItemProps.codegen.tsx +14 -0
- package/src/components/__generated__/ListProps.codegen.tsx +15 -0
- package/src/components/__generated__/index.ts +2 -0
- package/src/index.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/forge-react-types
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#95210](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95210) [`93c93ee71c2f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93c93ee71c2f) - export has been added for the new banner component in forge ui kit
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 0.9.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [#92742](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92742) [`940b5ee54a41`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/940b5ee54a41) - Created List Component
|
|
18
|
+
|
|
3
19
|
## 0.8.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
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 - ListItemProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3badf4e1bbdfaf7df13c46031323cea2>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/listitem.tsx <<SignedSource::816e776ad7d5a83bd0d844fbb3b40544>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export interface ListItemProps {
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
}
|
|
@@ -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 - ListProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3db8e5739c51dccf55f9877eb24aa8e9>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/list.tsx <<SignedSource::e4bc24ae5e66e3583cb5fd2c9ba576df>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export interface ListProps {
|
|
12
|
+
type: 'ordered' | 'unordered';
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
}
|
|
@@ -22,6 +22,8 @@ export type { IconProps } from './IconProps.codegen';
|
|
|
22
22
|
export type { InlineProps } from './InlineProps.codegen';
|
|
23
23
|
export type { LabelProps } from './LabelProps.codegen';
|
|
24
24
|
export type { LinkButtonProps } from './LinkButtonProps.codegen';
|
|
25
|
+
export type { ListProps } from './ListProps.codegen';
|
|
26
|
+
export type { ListItemProps } from './ListItemProps.codegen';
|
|
25
27
|
export type { LoadingButtonProps } from './LoadingButtonProps.codegen';
|
|
26
28
|
export type { LozengeProps } from './LozengeProps.codegen';
|
|
27
29
|
export type { ModalBodyProps } from './ModalBodyProps.codegen';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { BadgeProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CheckboxProps, CodeBlockProps, CodeProps, DatePickerProps, DynamicTableProps, ErrorMessageProps, FlexProps, FormFooterProps, FormHeaderProps, FormProps, FormSectionProps, GridProps, HeadingProps, HelperMessageProps, IconProps, InlineProps, LabelProps, LinkButtonProps, LoadingButtonProps, LozengeProps, ModalBodyProps, ModalFooterProps, ModalHeaderProps, ModalProps, ModalTitleProps, ModalTransitionProps, ProgressBarProps, ProgressTrackerProps, RadioGroupProps, RadioProps, RangeProps, SectionMessageActionProps, SectionMessageProps, SelectProps, SpinnerProps, StackProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
|
|
1
|
+
export type { BadgeProps, BannerProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CheckboxProps, CodeBlockProps, CodeProps, DatePickerProps, DynamicTableProps, ErrorMessageProps, FlexProps, FormFooterProps, FormHeaderProps, FormProps, FormSectionProps, GridProps, HeadingProps, HelperMessageProps, IconProps, InlineProps, LabelProps, LinkButtonProps, ListProps, ListItemProps, LoadingButtonProps, LozengeProps, ModalBodyProps, ModalFooterProps, ModalHeaderProps, ModalProps, ModalTitleProps, ModalTransitionProps, ProgressBarProps, ProgressTrackerProps, RadioGroupProps, RadioProps, RangeProps, SectionMessageActionProps, SectionMessageProps, SelectProps, SpinnerProps, StackProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
|
|
@@ -0,0 +1,13 @@
|
|
|
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 - ListItemProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3badf4e1bbdfaf7df13c46031323cea2>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/listitem.tsx <<SignedSource::816e776ad7d5a83bd0d844fbb3b40544>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export interface ListItemProps {
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
}
|
|
@@ -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 - ListProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3db8e5739c51dccf55f9877eb24aa8e9>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/list.tsx <<SignedSource::e4bc24ae5e66e3583cb5fd2c9ba576df>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export interface ListProps {
|
|
12
|
+
type: 'ordered' | 'unordered';
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
}
|
|
@@ -22,6 +22,8 @@ export type { IconProps } from './IconProps.codegen';
|
|
|
22
22
|
export type { InlineProps } from './InlineProps.codegen';
|
|
23
23
|
export type { LabelProps } from './LabelProps.codegen';
|
|
24
24
|
export type { LinkButtonProps } from './LinkButtonProps.codegen';
|
|
25
|
+
export type { ListProps } from './ListProps.codegen';
|
|
26
|
+
export type { ListItemProps } from './ListItemProps.codegen';
|
|
25
27
|
export type { LoadingButtonProps } from './LoadingButtonProps.codegen';
|
|
26
28
|
export type { LozengeProps } from './LozengeProps.codegen';
|
|
27
29
|
export type { ModalBodyProps } from './ModalBodyProps.codegen';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { BadgeProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CheckboxProps, CodeBlockProps, CodeProps, DatePickerProps, DynamicTableProps, ErrorMessageProps, FlexProps, FormFooterProps, FormHeaderProps, FormProps, FormSectionProps, GridProps, HeadingProps, HelperMessageProps, IconProps, InlineProps, LabelProps, LinkButtonProps, LoadingButtonProps, LozengeProps, ModalBodyProps, ModalFooterProps, ModalHeaderProps, ModalProps, ModalTitleProps, ModalTransitionProps, ProgressBarProps, ProgressTrackerProps, RadioGroupProps, RadioProps, RangeProps, SectionMessageActionProps, SectionMessageProps, SelectProps, SpinnerProps, StackProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
|
|
1
|
+
export type { BadgeProps, BannerProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CheckboxProps, CodeBlockProps, CodeProps, DatePickerProps, DynamicTableProps, ErrorMessageProps, FlexProps, FormFooterProps, FormHeaderProps, FormProps, FormSectionProps, GridProps, HeadingProps, HelperMessageProps, IconProps, InlineProps, LabelProps, LinkButtonProps, ListProps, ListItemProps, LoadingButtonProps, LozengeProps, ModalBodyProps, ModalFooterProps, ModalHeaderProps, ModalProps, ModalTitleProps, ModalTransitionProps, ProgressBarProps, ProgressTrackerProps, RadioGroupProps, RadioProps, RangeProps, SectionMessageActionProps, SectionMessageProps, SelectProps, SpinnerProps, StackProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/forge-react-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Component types for Forge UI Kit React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"releaseModel": "continuous"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@atlaskit/badge": "^16.
|
|
28
|
+
"@atlaskit/badge": "^16.1.0",
|
|
29
29
|
"@atlaskit/banner": "^12.3.0",
|
|
30
30
|
"@atlaskit/button": "^17.14.0",
|
|
31
31
|
"@atlaskit/checkbox": "^13.1.0",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"@atlaskit/form": "^9.3.0",
|
|
35
35
|
"@atlaskit/heading": "^2.2.0",
|
|
36
36
|
"@atlaskit/lozenge": "^11.7.0",
|
|
37
|
-
"@atlaskit/modal-dialog": "^12.
|
|
37
|
+
"@atlaskit/modal-dialog": "^12.12.0",
|
|
38
38
|
"@atlaskit/primitives": "^5.6.0",
|
|
39
39
|
"@atlaskit/progress-bar": "2.0.2",
|
|
40
40
|
"@atlaskit/progress-tracker": "8.5.10",
|
|
41
41
|
"@atlaskit/radio": "^6.1.0",
|
|
42
42
|
"@atlaskit/range": "^7.1.0",
|
|
43
43
|
"@atlaskit/section-message": "^6.4.0",
|
|
44
|
-
"@atlaskit/select": "^17.
|
|
44
|
+
"@atlaskit/select": "^17.7.0",
|
|
45
45
|
"@atlaskit/spinner": "^16.0.0",
|
|
46
46
|
"@atlaskit/tabs": "^16.0.0",
|
|
47
47
|
"@atlaskit/tag": "^12.0.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@atlaskit/textarea": "^5.2.0",
|
|
50
50
|
"@atlaskit/textfield": "^6.1.0",
|
|
51
51
|
"@atlaskit/toggle": "^13.0.0",
|
|
52
|
-
"@atlaskit/tokens": "^1.
|
|
52
|
+
"@atlaskit/tokens": "^1.44.0",
|
|
53
53
|
"@atlaskit/tooltip": "^18.2.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0"
|
|
55
55
|
},
|
|
@@ -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 - ListItemProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3badf4e1bbdfaf7df13c46031323cea2>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/listitem.tsx <<SignedSource::816e776ad7d5a83bd0d844fbb3b40544>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
|
|
12
|
+
export interface ListItemProps {
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 - ListProps
|
|
5
|
+
*
|
|
6
|
+
* @codegen <<SignedSource::3db8e5739c51dccf55f9877eb24aa8e9>>
|
|
7
|
+
* @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
|
|
8
|
+
* @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/list/list.tsx <<SignedSource::e4bc24ae5e66e3583cb5fd2c9ba576df>>
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
|
|
12
|
+
export interface ListProps {
|
|
13
|
+
type: 'ordered' | 'unordered';
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
}
|
|
@@ -22,6 +22,8 @@ export type { IconProps } from './IconProps.codegen';
|
|
|
22
22
|
export type { InlineProps } from './InlineProps.codegen';
|
|
23
23
|
export type { LabelProps } from './LabelProps.codegen';
|
|
24
24
|
export type { LinkButtonProps } from './LinkButtonProps.codegen';
|
|
25
|
+
export type { ListProps } from './ListProps.codegen';
|
|
26
|
+
export type { ListItemProps } from './ListItemProps.codegen';
|
|
25
27
|
export type { LoadingButtonProps } from './LoadingButtonProps.codegen';
|
|
26
28
|
export type { LozengeProps } from './LozengeProps.codegen';
|
|
27
29
|
export type { ModalBodyProps } from './ModalBodyProps.codegen';
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type {
|
|
2
2
|
BadgeProps,
|
|
3
|
+
BannerProps,
|
|
3
4
|
BleedProps,
|
|
4
5
|
BoxProps,
|
|
5
6
|
ButtonGroupProps,
|
|
@@ -22,6 +23,8 @@ export type {
|
|
|
22
23
|
InlineProps,
|
|
23
24
|
LabelProps,
|
|
24
25
|
LinkButtonProps,
|
|
26
|
+
ListProps,
|
|
27
|
+
ListItemProps,
|
|
25
28
|
LoadingButtonProps,
|
|
26
29
|
LozengeProps,
|
|
27
30
|
ModalBodyProps,
|