@atlaskit/forge-react-types 0.41.11 → 0.41.13
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 +15 -0
- package/dist/types/components/__generated__/ChromelessEditorProps.codegen.d.ts +17 -0
- package/dist/types/components/__generated__/CommentEditorProps.codegen.d.ts +27 -0
- package/dist/types/components/__generated__/PressableProps.codegen.d.ts +2426 -0
- package/dist/types/components/__generated__/index.d.ts +3 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/components/__generated__/ChromelessEditorProps.codegen.d.ts +17 -0
- package/dist/types-ts4.5/components/__generated__/CommentEditorProps.codegen.d.ts +27 -0
- package/dist/types-ts4.5/components/__generated__/PressableProps.codegen.d.ts +2426 -0
- package/dist/types-ts4.5/components/__generated__/index.d.ts +3 -0
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/components/__generated__/index.ts +4 -0
- package/src/index.ts +6 -0
|
@@ -71,3 +71,6 @@ export type TextProps = Omit<OriginalTextProps, 'as'> & {
|
|
|
71
71
|
* [Lozenge](https://developer.atlassian.com/platform/forge/ui-kit/components/lozenge/).
|
|
72
72
|
*/
|
|
73
73
|
export type TText<T> = (props: TextProps) => T;
|
|
74
|
+
export type { CommentEditorProps, TCommentEditor } from './CommentEditorProps.codegen';
|
|
75
|
+
export type { ChromelessEditorProps, TChromelessEditor } from './ChromelessEditorProps.codegen';
|
|
76
|
+
export type { PressableProps, TPressable } from './PressableProps.codegen';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { AdfRendererProps, BadgeProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CalendarProps, CheckboxProps, CheckboxGroupProps, CodeBlockProps, CodeProps, CommentProps, DatePickerProps, DynamicTableProps, EmptyStateProps, 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, TextProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, TimePickerProps, ValidMessageProps, PopupProps, InlineEditProps, TBadge, TBleed, TBox, TButtonGroup, TButton, TCalendar, TCheckbox, TCheckboxGroup, TCodeBlock, TCode, TComment, TDatePicker, TDynamicTable, TEmptyState, TErrorMessage, TFlex, TFormFooter, TFormHeader, TForm, TFormSection, TGrid, THeading, THelperMessage, TIcon, TInline, TInlineEdit, TLabel, TLinkButton, TList, TListItem, TLoadingButton, TLozenge, TModalBody, TModalFooter, TModalHeader, TModal, TModalTitle, TModalTransition, TProgressBar, TProgressTracker, TRadioGroup, TRadio, TRange, TSectionMessageAction, TSectionMessage, TSelect, TSpinner, TStack, TTabList, TTabPanel, TTab, TTabs, TTagGroup, TTag, TTextArea, TTextfield, TTimePicker, TToggle, TTooltip, TValidMessage, TPopup, TAdfRenderer, TText, } from './components/__generated__';
|
|
1
|
+
export type { AdfRendererProps, BadgeProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CalendarProps, CheckboxProps, CheckboxGroupProps, CodeBlockProps, CodeProps, CommentProps, DatePickerProps, DynamicTableProps, EmptyStateProps, 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, TextProps, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, TimePickerProps, ValidMessageProps, PopupProps, InlineEditProps, ChromelessEditorProps, CommentEditorProps, PressableProps, TBadge, TBleed, TBox, TButtonGroup, TButton, TCalendar, TCheckbox, TCheckboxGroup, TCodeBlock, TCode, TComment, TDatePicker, TDynamicTable, TEmptyState, TErrorMessage, TFlex, TFormFooter, TFormHeader, TForm, TFormSection, TGrid, THeading, THelperMessage, TIcon, TInline, TInlineEdit, TLabel, TLinkButton, TList, TListItem, TLoadingButton, TLozenge, TModalBody, TModalFooter, TModalHeader, TModal, TModalTitle, TModalTransition, TProgressBar, TProgressTracker, TRadioGroup, TRadio, TRange, TSectionMessageAction, TSectionMessage, TSelect, TSpinner, TStack, TTabList, TTabPanel, TTab, TTabs, TTagGroup, TTag, TTextArea, TTextfield, TTimePicker, TToggle, TTooltip, TValidMessage, TPopup, TAdfRenderer, TText, TChromelessEditor, TCommentEditor, TPressable, } from './components/__generated__';
|
|
2
2
|
export type { BarChartProps, StackBarChartProps, HorizontalStackBarChartProps, HorizontalBarChartProps, LineChartProps, DonutChartProps, PieChartProps, TBarChart, TStackBarChart, THorizontalStackBarChart, THorizontalBarChart, TLineChart, TDonutChart, TPieChart, } from './components/charts';
|
|
3
3
|
export type { ChartColorTokens } from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/forge-react-types",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.13",
|
|
4
4
|
"description": "Component types for Forge UI Kit React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"@atlaskit/lozenge": "12.2.2",
|
|
41
41
|
"@atlaskit/modal-dialog": "14.1.2",
|
|
42
42
|
"@atlaskit/popup": "3.0.1",
|
|
43
|
-
"@atlaskit/primitives": "14.3.
|
|
43
|
+
"@atlaskit/primitives": "14.3.1",
|
|
44
44
|
"@atlaskit/progress-bar": "4.0.4",
|
|
45
45
|
"@atlaskit/progress-tracker": "10.0.3",
|
|
46
46
|
"@atlaskit/radio": "8.0.3",
|
|
47
47
|
"@atlaskit/range": "9.0.3",
|
|
48
|
-
"@atlaskit/renderer": "114.7.
|
|
48
|
+
"@atlaskit/renderer": "114.7.4",
|
|
49
49
|
"@atlaskit/section-message": "8.2.2",
|
|
50
50
|
"@atlaskit/select": "20.1.0",
|
|
51
51
|
"@atlaskit/spinner": "18.0.3",
|
|
@@ -76,3 +76,7 @@ export type TextProps = Omit<OriginalTextProps, 'as'> & { as?: OriginalTextProps
|
|
|
76
76
|
* [Lozenge](https://developer.atlassian.com/platform/forge/ui-kit/components/lozenge/).
|
|
77
77
|
*/
|
|
78
78
|
export type TText<T> = (props: TextProps) => T;
|
|
79
|
+
|
|
80
|
+
export type { CommentEditorProps, TCommentEditor } from './CommentEditorProps.codegen';
|
|
81
|
+
export type { ChromelessEditorProps, TChromelessEditor } from './ChromelessEditorProps.codegen';
|
|
82
|
+
export type { PressableProps, TPressable } from './PressableProps.codegen';
|
package/src/index.ts
CHANGED
|
@@ -62,6 +62,9 @@ export type {
|
|
|
62
62
|
ValidMessageProps,
|
|
63
63
|
PopupProps,
|
|
64
64
|
InlineEditProps,
|
|
65
|
+
ChromelessEditorProps,
|
|
66
|
+
CommentEditorProps,
|
|
67
|
+
PressableProps,
|
|
65
68
|
TBadge,
|
|
66
69
|
TBleed,
|
|
67
70
|
TBox,
|
|
@@ -125,6 +128,9 @@ export type {
|
|
|
125
128
|
TPopup,
|
|
126
129
|
TAdfRenderer,
|
|
127
130
|
TText,
|
|
131
|
+
TChromelessEditor,
|
|
132
|
+
TCommentEditor,
|
|
133
|
+
TPressable,
|
|
128
134
|
} from './components/__generated__';
|
|
129
135
|
|
|
130
136
|
export type {
|