@atlaskit/forge-react-types 0.14.2 → 0.15.1
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 +14 -0
- package/dist/cjs/components/charts/BarChartProps.js +1 -0
- package/dist/cjs/components/charts/index.js +1 -0
- package/dist/es2019/components/charts/BarChartProps.js +0 -0
- package/dist/es2019/components/charts/index.js +0 -0
- package/dist/esm/components/charts/BarChartProps.js +0 -0
- package/dist/esm/components/charts/index.js +0 -0
- package/dist/types/components/charts/BarChartProps.d.ts +12 -0
- package/dist/types/components/charts/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types-ts4.5/components/charts/BarChartProps.d.ts +12 -0
- package/dist/types-ts4.5/components/charts/index.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/package.json +20 -20
- package/src/components/charts/BarChartProps.tsx +12 -0
- package/src/components/charts/index.ts +1 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/forge-react-types
|
|
2
2
|
|
|
3
|
+
## 0.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 0.15.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#103763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103763)
|
|
14
|
+
[`84c41016e8cb0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/84c41016e8cb0) -
|
|
15
|
+
Added Bar Chart component to UI Kit, updated Forge sandbox UI Kit names
|
|
16
|
+
|
|
3
17
|
## 0.14.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type BarChartProps = {
|
|
2
|
+
width?: number;
|
|
3
|
+
height?: number;
|
|
4
|
+
data: unknown[];
|
|
5
|
+
showBorder?: boolean;
|
|
6
|
+
xAccessor: number | string;
|
|
7
|
+
yAccessor: number | string;
|
|
8
|
+
colorAccessor?: number | string;
|
|
9
|
+
title?: string;
|
|
10
|
+
subTitle?: string;
|
|
11
|
+
colors?: string[];
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BarChartProps } from './BarChartProps';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +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';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type BarChartProps = {
|
|
2
|
+
width?: number;
|
|
3
|
+
height?: number;
|
|
4
|
+
data: unknown[];
|
|
5
|
+
showBorder?: boolean;
|
|
6
|
+
xAccessor: number | string;
|
|
7
|
+
yAccessor: number | string;
|
|
8
|
+
colorAccessor?: number | string;
|
|
9
|
+
title?: string;
|
|
10
|
+
subTitle?: string;
|
|
11
|
+
colors?: string[];
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BarChartProps } from './BarChartProps';
|
|
@@ -1 +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';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/forge-react-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Component types for Forge UI Kit React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,26 +33,26 @@
|
|
|
33
33
|
"@atlaskit/code": "^15.2.0",
|
|
34
34
|
"@atlaskit/dynamic-table": "^14.17.0",
|
|
35
35
|
"@atlaskit/empty-state": "^7.8.0",
|
|
36
|
-
"@atlaskit/form": "^10.
|
|
37
|
-
"@atlaskit/heading": "^2.
|
|
38
|
-
"@atlaskit/lozenge": "^11.
|
|
39
|
-
"@atlaskit/modal-dialog": "^12.
|
|
40
|
-
"@atlaskit/primitives": "^7.
|
|
41
|
-
"@atlaskit/progress-bar": "2.
|
|
42
|
-
"@atlaskit/progress-tracker": "8.
|
|
43
|
-
"@atlaskit/radio": "^6.
|
|
44
|
-
"@atlaskit/range": "^7.
|
|
36
|
+
"@atlaskit/form": "^10.4.0",
|
|
37
|
+
"@atlaskit/heading": "^2.4.0",
|
|
38
|
+
"@atlaskit/lozenge": "^11.8.0",
|
|
39
|
+
"@atlaskit/modal-dialog": "^12.14.0",
|
|
40
|
+
"@atlaskit/primitives": "^7.4.0",
|
|
41
|
+
"@atlaskit/progress-bar": "2.2.0",
|
|
42
|
+
"@atlaskit/progress-tracker": "8.7.0",
|
|
43
|
+
"@atlaskit/radio": "^6.4.0",
|
|
44
|
+
"@atlaskit/range": "^7.3.0",
|
|
45
45
|
"@atlaskit/section-message": "^6.5.0",
|
|
46
|
-
"@atlaskit/select": "^17.
|
|
47
|
-
"@atlaskit/spinner": "^16.
|
|
48
|
-
"@atlaskit/tabs": "^16.
|
|
49
|
-
"@atlaskit/tag": "^12.
|
|
50
|
-
"@atlaskit/tag-group": "^10.
|
|
51
|
-
"@atlaskit/textarea": "^5.
|
|
52
|
-
"@atlaskit/textfield": "^6.
|
|
53
|
-
"@atlaskit/toggle": "^13.
|
|
54
|
-
"@atlaskit/tokens": "^1.
|
|
55
|
-
"@atlaskit/tooltip": "^18.
|
|
46
|
+
"@atlaskit/select": "^17.11.0",
|
|
47
|
+
"@atlaskit/spinner": "^16.2.0",
|
|
48
|
+
"@atlaskit/tabs": "^16.2.0",
|
|
49
|
+
"@atlaskit/tag": "^12.3.0",
|
|
50
|
+
"@atlaskit/tag-group": "^10.4.0",
|
|
51
|
+
"@atlaskit/textarea": "^5.5.0",
|
|
52
|
+
"@atlaskit/textfield": "^6.4.0",
|
|
53
|
+
"@atlaskit/toggle": "^13.2.0",
|
|
54
|
+
"@atlaskit/tokens": "^1.51.0",
|
|
55
|
+
"@atlaskit/tooltip": "^18.5.0",
|
|
56
56
|
"@babel/runtime": "^7.0.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type BarChartProps = {
|
|
2
|
+
width?: number;
|
|
3
|
+
height?: number;
|
|
4
|
+
data: unknown[];
|
|
5
|
+
showBorder?: boolean;
|
|
6
|
+
xAccessor: number | string;
|
|
7
|
+
yAccessor: number | string;
|
|
8
|
+
colorAccessor?: number | string;
|
|
9
|
+
title?: string;
|
|
10
|
+
subTitle?: string;
|
|
11
|
+
colors?: string[];
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BarChartProps } from './BarChartProps';
|