@atlaskit/forge-react-types 0.15.1 → 0.17.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,25 @@
1
1
  # @atlaskit/forge-react-types
2
2
 
3
+ ## 0.17.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#111262](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111262)
8
+ [`373f957f5ab2c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/373f957f5ab2c) -
9
+ Added Horizontal Bar Chart to UI Kit
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 0.16.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#110801](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110801)
20
+ [`72b94db2b5e62`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72b94db2b5e62) -
21
+ added stack bar chart to UI Kit
22
+
3
23
  ## 0.15.1
4
24
 
5
25
  ### Patch Changes
@@ -10,3 +10,5 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+ export type StackBarChartProps = BarChartProps;
14
+ export type HorizontalBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps, HorizontalBarChartProps } 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, HorizontalBarChartProps, } from './components/charts';
@@ -10,3 +10,5 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+ export type StackBarChartProps = BarChartProps;
14
+ export type HorizontalBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps, HorizontalBarChartProps } 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, HorizontalBarChartProps, } 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.17.0",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,12 +27,12 @@
27
27
  "dependencies": {
28
28
  "@atlaskit/badge": "^16.2.0",
29
29
  "@atlaskit/banner": "^12.4.0",
30
- "@atlaskit/button": "^17.17.0",
31
- "@atlaskit/calendar": "^14.2.1",
32
- "@atlaskit/checkbox": "^13.4.0",
33
- "@atlaskit/code": "^15.2.0",
34
- "@atlaskit/dynamic-table": "^14.17.0",
35
- "@atlaskit/empty-state": "^7.8.0",
30
+ "@atlaskit/button": "^17.21.0",
31
+ "@atlaskit/calendar": "^14.3.0",
32
+ "@atlaskit/checkbox": "^13.5.0",
33
+ "@atlaskit/code": "^15.3.0",
34
+ "@atlaskit/dynamic-table": "^14.18.0",
35
+ "@atlaskit/empty-state": "^7.9.0",
36
36
  "@atlaskit/form": "^10.4.0",
37
37
  "@atlaskit/heading": "^2.4.0",
38
38
  "@atlaskit/lozenge": "^11.8.0",
@@ -10,3 +10,6 @@ export type BarChartProps = {
10
10
  subTitle?: string;
11
11
  colors?: string[];
12
12
  };
13
+
14
+ export type StackBarChartProps = BarChartProps;
15
+ export type HorizontalBarChartProps = BarChartProps;
@@ -1 +1 @@
1
- export type { BarChartProps } from './BarChartProps';
1
+ export type { BarChartProps, StackBarChartProps, HorizontalBarChartProps } from './BarChartProps';
package/src/index.ts CHANGED
@@ -59,4 +59,8 @@ export type {
59
59
  ValidMessageProps,
60
60
  } from './components/__generated__';
61
61
 
62
- export type { BarChartProps } from './components/charts';
62
+ export type {
63
+ BarChartProps,
64
+ StackBarChartProps,
65
+ HorizontalBarChartProps,
66
+ } from './components/charts';