@atlaskit/forge-react-types 0.15.1 → 0.16.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.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#110801](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110801)
8
+ [`72b94db2b5e62`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72b94db2b5e62) -
9
+ added stack bar chart to UI Kit
10
+
3
11
  ## 0.15.1
4
12
 
5
13
  ### Patch Changes
@@ -10,3 +10,4 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+ export type StackBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps } from './BarChartProps';
@@ -1,2 +1,2 @@
1
1
  export type { BadgeProps, BannerProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CalendarProps, CheckboxProps, CheckboxGroupProps, CodeBlockProps, CodeProps, 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, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
2
- export type { BarChartProps } from './components/charts';
2
+ export type { BarChartProps, StackBarChartProps } from './components/charts';
@@ -10,3 +10,4 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+ export type StackBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps } from './BarChartProps';
@@ -1,2 +1,2 @@
1
1
  export type { BadgeProps, BannerProps, BleedProps, BoxProps, ButtonGroupProps, ButtonProps, CalendarProps, CheckboxProps, CheckboxGroupProps, CodeBlockProps, CodeProps, 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, TextAreaProps, TextfieldProps, ToggleProps, TooltipProps, ValidMessageProps, } from './components/__generated__';
2
- export type { BarChartProps } from './components/charts';
2
+ export type { BarChartProps, StackBarChartProps } from './components/charts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/forge-react-types",
3
- "version": "0.15.1",
3
+ "version": "0.16.0",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -10,3 +10,5 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+
14
+ export type StackBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps } from './BarChartProps';
package/src/index.ts CHANGED
@@ -59,4 +59,4 @@ export type {
59
59
  ValidMessageProps,
60
60
  } from './components/__generated__';
61
61
 
62
- export type { BarChartProps } from './components/charts';
62
+ export type { BarChartProps, StackBarChartProps } from './components/charts';