@bitrise/bitkit 9.12.0 → 9.13.0-alpha-button-release.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "9.12.0",
4
+ "version": "9.13.0-alpha-button-release.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -0,0 +1,21 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
2
+ import Button from '../Button/Button';
3
+ import ButtonGroup from './ButtonGroup';
4
+
5
+ export default {
6
+ component: ButtonGroup,
7
+ } as ComponentMeta<typeof ButtonGroup>;
8
+
9
+ const Template: ComponentStory<typeof ButtonGroup> = (props) => (
10
+ <ButtonGroup {...props} width="900px" flexDirection="column">
11
+ <Button>Button 1</Button>
12
+ <Button>Button 2</Button>
13
+ <Button>Button 3</Button>
14
+ </ButtonGroup>
15
+ );
16
+
17
+ export const WithProps = Template.bind({});
18
+
19
+ WithProps.args = {
20
+ isAttached: true,
21
+ };
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { ButtonGroup as ChakraButtonGroup, ButtonGroupProps } from '@chakra-ui/react';
3
+
4
+ export type { ButtonGroupProps };
5
+
6
+ const ButtonGroup = (props: ButtonGroupProps) => {
7
+ return <ChakraButtonGroup {...props} />;
8
+ };
9
+
10
+ export default ButtonGroup;
package/src/index.ts CHANGED
@@ -1,288 +1,8 @@
1
- import './Old/variables.css';
2
-
3
- import * as variables from './Old/variables';
4
- import * as hooks from './Old/hooks';
5
-
6
- export { variables };
7
- export { hooks };
8
-
9
- export type { Props as AddonBeamProps } from './Old/AddonBeam/AddonBeam';
10
- export { default as AddonBeam } from './Old/AddonBeam/AddonBeam';
11
-
12
- export type { Props as AddonBeamLinkProps } from './Old/AddonBeam/AddonBeamLink';
13
- export { default as AddonBeamLink } from './Old/AddonBeam/AddonBeamLink';
14
-
15
- export type { Props as AddonFooterProps } from './Old/AddonFooter/AddonFooter';
16
- export { default as AddonFooter } from './Old/AddonFooter/AddonFooter';
17
-
18
- export type { Props as AppearProps } from './Old/Appear/Appear';
19
- export type { TypeAppearAnimationName } from './Old/Appear/Appear';
20
- export { default as Appear } from './Old/Appear/Appear';
21
-
22
- export type { Props as AppLayoutProps } from './Old/AppLayout/AppLayout';
23
- export { default as AppLayout } from './Old/AppLayout/AppLayout';
24
-
25
- export type { Props as AppLayoutBodyProps } from './Old/AppLayout/AppLayoutBody';
26
- export { default as AppLayoutBody } from './Old/AppLayout/AppLayoutBody';
27
-
28
- export type { Props as AppLayoutHeaderProps } from './Old/AppLayout/AppLayoutHeader';
29
- export { default as AppLayoutHeader } from './Old/AppLayout/AppLayoutHeader';
30
-
31
- export type { Props as AppLayoutMainProps } from './Old/AppLayout/AppLayoutMain';
32
- export { default as AppLayoutMain } from './Old/AppLayout/AppLayoutMain';
33
-
34
- export type { Props as AppLayoutSidebarProps } from './Old/AppLayout/AppLayoutSidebar';
35
- export { default as AppLayoutSidebar } from './Old/AppLayout/AppLayoutSidebar';
36
-
37
- export type { Props as AvatarProps } from './Old/Avatar/Avatar';
38
- export { default as Avatar } from './Old/Avatar/Avatar';
39
-
40
- export type { Props as BadgeProps } from './Old/Badge/Badge';
41
- export { default as Badge } from './Old/Badge/Badge';
42
-
43
- export type { Props as BaseProps } from './Old/Base/Base';
44
- export type { TypeBorderRadius } from './Old/Base/Base';
45
- export type { TypeColors } from './Old/Base/Base';
46
- export type { TypeSizes } from './Old/Base/Base';
47
- export { default as Base } from './Old/Base/Base';
48
-
49
- export type { Props as BoundsProps } from './Old/Bounds/Bounds';
50
- export { default as Bounds } from './Old/Bounds/Bounds';
51
-
52
- export type { Props as ButtonProps } from './Old/Button/Button';
53
- export { default as Button } from './Old/Button/Button';
54
-
55
- export type { Props as ButtonsProps } from './Old/Button/Buttons';
56
- export { default as Buttons } from './Old/Button/Buttons';
57
-
58
- export type { Props as CardProps } from './Old/Card/Card';
59
- export { default as Card } from './Old/Card/Card';
60
-
61
- export type { Props as CardButtonProps } from './Old/Card/CardButton';
62
- export { default as CardButton } from './Old/Card/CardButton';
63
-
64
- export type { Props as CardContentProps } from './Old/Card/CardContent';
65
- export { default as CardContent } from './Old/Card/CardContent';
66
-
67
- export type { Props as CardDividerProps } from './Old/Card/CardDivider';
68
- export { default as CardDivider } from './Old/Card/CardDivider';
69
-
70
- export type { Props as CheckboxProps } from './Old/Checkbox/Checkbox';
71
- export { default as Checkbox } from './Old/Checkbox/Checkbox';
72
-
73
- export type { Props as ColorButtonProps } from './Old/Button/ColorButton';
74
- export { default as ColorButton } from './Old/Button/ColorButton';
75
-
76
- export type { Props as DatePickerProps } from './Old/DatePicker/DatePicker';
77
- export { default as DatePicker } from './Old/DatePicker/DatePicker';
78
-
79
- export type { Props as DotProps } from './Old/Dot/Dot';
80
- export { default as Dot } from './Old/Dot/Dot';
81
-
82
- export type { Props as DropdownProps } from './Old/Dropdown/Dropdown';
83
- export { default as Dropdown } from './Old/Dropdown/Dropdown';
84
-
85
- export type { Props as DropdownButtonProps } from './Old/Dropdown/DropdownButton';
86
- export { default as DropdownButton } from './Old/Dropdown/DropdownButton';
87
-
88
- export type { Props as DropdownMenusProps } from './Old/Dropdown/DropdownMenus';
89
- export { default as DropdownMenus } from './Old/Dropdown/DropdownMenus';
90
-
91
- export type { Props as DropdownMenuProps } from './Old/Dropdown/DropdownMenu';
92
- export { default as DropdownMenu } from './Old/Dropdown/DropdownMenu';
93
-
94
- export type { Props as DropdownMenuItemProps } from './Old/Dropdown/DropdownMenuItem';
95
- export { default as DropdownMenuItem } from './Old/Dropdown/DropdownMenuItem';
96
-
97
- export type { Props as DropdownMenuItemGroupProps } from './Old/Dropdown/DropdownMenuItemGroup';
98
- export { default as DropdownMenuItemGroup } from './Old/Dropdown/DropdownMenuItemGroup';
99
-
100
- export type { Props as ExpandProps } from './Old/Expand/Expand';
101
- export { default as Expand } from './Old/Expand/Expand';
102
-
103
- export type { Props as ExternalLinkProps } from './Old/ExternalLink/ExternalLink';
104
- export { default as ExternalLink } from './Old/ExternalLink/ExternalLink';
105
-
106
- export type { Props as FlexProps } from './Old/Flex/Flex';
107
- export { default as Flex } from './Old/Flex/Flex';
108
-
109
- export type { Props as GridProps } from './Old/Grid/Grid';
110
- export { default as Grid } from './Old/Grid/Grid';
111
-
112
- export type { Props as HamburgerProps } from './Old/Hamburger/Hamburger';
113
- export { default as Hamburger } from './Old/Hamburger/Hamburger';
114
-
115
- export type { Props as IconProps } from './Old/Icon/Icon';
116
- export type { TypeIconName } from './Old/Icon/Icon';
117
- export { default as Icon } from './Old/Icon/Icon';
118
-
119
- export type { Props as ImageProps } from './Old/Image/Image';
120
- export { default as Image } from './Old/Image/Image';
121
-
122
- export type { Props as InputProps } from './Old/Input/Input';
123
- export { default as Input } from './Old/Input/Input';
124
-
125
- export type { Props as InputContainerProps } from './Old/Input/InputContainer';
126
- export { default as InputContainer } from './Old/Input/InputContainer';
127
-
128
- export type { Props as InputContentProps } from './Old/Input/InputContent';
129
- export { default as InputContent } from './Old/Input/InputContent';
130
-
131
- export type { Props as InputInlineHelpProps } from './Old/Input/InputInlineHelp';
132
- export { default as InputInlineHelp } from './Old/Input/InputInlineHelp';
133
-
134
- export type { Props as InputLabelProps } from './Old/Input/InputLabel';
135
- export { default as InputLabel } from './Old/Input/InputLabel';
1
+ export * from './old';
136
2
 
137
3
  export type { LinkProps } from './Components/Link/Link';
138
4
  export { default as Link } from './Components/Link/Link';
139
5
 
140
- export type { Props as ListProps } from './Old/List/List';
141
- export { default as List } from './Old/List/List';
142
-
143
- export type { Props as ListItemProps } from './Old/List/ListItem';
144
- export { default as ListItem } from './Old/List/ListItem';
145
-
146
- export type { Props as LogoProps } from './Old/Logo/Logo';
147
- export { default as Logo } from './Old/Logo/Logo';
148
-
149
- export type { Props as ModalProps } from './Old/Modal/Modal';
150
- export { default as Modal } from './Old/Modal/Modal';
151
-
152
- export type { Props as ModalBodyProps } from './Old/Modal/ModalBody';
153
- export { default as ModalBody } from './Old/Modal/ModalBody';
154
-
155
- export type { Props as ModalHeaderProps } from './Old/Modal/ModalHeader';
156
- // eslint-disable-next-line import/no-cycle
157
- export { default as ModalHeader } from './Old/Modal/ModalHeader';
158
-
159
- export type { Props as ModalHeaderProgressProps } from './Old/Modal/ModalHeaderProgress';
160
- export { default as ModalHeaderProgress } from './Old/Modal/ModalHeaderProgress';
161
-
162
- export type { Props as ModalTitleProps } from './Old/Modal/ModalTitle';
163
- export { default as ModalTitle } from './Old/Modal/ModalTitle';
164
-
165
- export type { Props as NotificationProps } from './Old/Notification/Notification';
166
- export { default as Notification } from './Old/Notification/Notification';
167
-
168
- export type { Props as PlacementProps } from './Old/Placement/Placement';
169
- export { default as Placement } from './Old/Placement/Placement';
170
-
171
- export type { Props as PlacementAreaProps } from './Old/Placement/PlacementArea';
172
- export { default as PlacementArea } from './Old/Placement/PlacementArea';
173
-
174
- export type { Props as PlacementArrowProps } from './Old/Placement/PlacementArrow';
175
- export { default as PlacementArrow } from './Old/Placement/PlacementArrow';
176
-
177
- export type { Props as PlacementManagerProps } from './Old/Placement/PlacementManager';
178
- export { default as PlacementManager } from './Old/Placement/PlacementManager';
179
-
180
- export type { Props as PlacementReferenceProps } from './Old/Placement/PlacementReference';
181
- export { default as PlacementReference } from './Old/Placement/PlacementReference';
182
-
183
- export type { Props as PortalProps } from './Old/Portal/Portal';
184
- export { default as Portal } from './Old/Portal/Portal';
185
-
186
- export type { Props as ProgressBarProps } from './Old/Progress/ProgressBar';
187
- export { default as ProgressBar } from './Old/Progress/ProgressBar';
188
-
189
- export type { Props as ProgressButtonProps } from './Old/Progress/ProgressButton';
190
- export { default as ProgressButton } from './Old/Progress/ProgressButton';
191
-
192
- export type { Props as ProgressBitbotProps } from './Old/Progress/ProgressBitbot';
193
- export { default as ProgressBitbot } from './Old/Progress/ProgressBitbot';
194
-
195
- export type { Props as ProgressColorButtonProps } from './Old/Progress/ProgressColorButton';
196
- export { default as ProgressColorButton } from './Old/Progress/ProgressColorButton';
197
-
198
- export type { Props as ProgressSpinnerProps } from './Old/Progress/ProgressSpinner';
199
- export { default as ProgressSpinner } from './Old/Progress/ProgressSpinner';
200
-
201
- export type { Props as RadioButtonProps } from './Old/RadioButton/RadioButton';
202
- export { default as RadioButton } from './Old/RadioButton/RadioButton';
203
-
204
- export type { Props as RibbonProps } from './Old/Ribbon/Ribbon';
205
- export { default as Ribbon } from './Old/Ribbon/Ribbon';
206
-
207
- export type { Props as SidebarProps } from './Old/Sidebar/Sidebar';
208
- export { default as Sidebar } from './Old/Sidebar/Sidebar';
209
-
210
- export type { Props as SidebarHeaderProps } from './Old/Sidebar/SidebarHeader';
211
- export { default as SidebarHeader } from './Old/Sidebar/SidebarHeader';
212
-
213
- export type { Props as SidebarMenuProps } from './Old/Sidebar/SidebarMenu';
214
- export { default as SidebarMenu } from './Old/Sidebar/SidebarMenu';
215
-
216
- export type { Props as SidebarMenuItemProps } from './Old/Sidebar/SidebarMenuItem';
217
- export { default as SidebarMenuItem } from './Old/Sidebar/SidebarMenuItem';
218
-
219
- export type { Props as SidebarSubMenuProps } from './Old/Sidebar/SidebarSubMenu';
220
- export { default as SidebarSubMenu } from './Old/Sidebar/SidebarSubMenu';
221
-
222
- export type { Props as SidebarSubMenuItemProps } from './Old/Sidebar/SidebarSubMenuItem';
223
- export { default as SidebarSubMenuItem } from './Old/Sidebar/SidebarSubMenuItem';
224
-
225
- export type { Props as SkeletonProps } from './Old/Skeleton/Skeleton';
226
- export { default as Skeleton } from './Old/Skeleton/Skeleton';
227
-
228
- export type { Props as SkeletonBoxProps } from './Old/Skeleton/SkeletonBox';
229
- export { default as SkeletonBox } from './Old/Skeleton/SkeletonBox';
230
-
231
- export type { Props as Status404Props } from './Old/Status/Status404';
232
- export { default as Status404 } from './Old/Status/Status404';
233
-
234
- export type { Props as Status500Props } from './Old/Status/Status500';
235
- export { default as Status500 } from './Old/Status/Status500';
236
-
237
- export type { Props as TableProps } from './Old/Table/Table';
238
- export { default as Table } from './Old/Table/Table';
239
-
240
- export type { Props as TableBodyProps } from './Old/Table/TableBody';
241
- export { default as TableBody } from './Old/Table/TableBody';
242
-
243
- export type { Props as TableCellProps } from './Old/Table/TableCell';
244
- export { default as TableCell } from './Old/Table/TableCell';
245
-
246
- export type { Props as TableHeaderProps } from './Old/Table/TableHeader';
247
- export { default as TableHeader } from './Old/Table/TableHeader';
248
-
249
- export type { Props as TableHeaderCellProps } from './Old/Table/TableHeaderCell';
250
- export type { TypeTableSort } from './Old/Table/TableHeaderCell';
251
- export { default as TableHeaderCell } from './Old/Table/TableHeaderCell';
252
-
253
- export type { Props as TableHeaderRowProps } from './Old/Table/TableHeaderRow';
254
- export { default as TableHeaderRow } from './Old/Table/TableHeaderRow';
255
-
256
- export type { Props as TableRowProps } from './Old/Table/TableRow';
257
- export { default as TableRow } from './Old/Table/TableRow';
258
-
259
- export type { Props as TabProps } from './Old/Tabs/Tab';
260
- export { default as Tab } from './Old/Tabs/Tab';
261
-
262
- export type { Props as TabsProps } from './Old/Tabs/Tabs';
263
- export { default as Tabs } from './Old/Tabs/Tabs';
264
-
265
- export type { Props as TextProps } from './Old/Text/Text';
266
- export type { TypeTextLetterSpacing } from './Old/Text/Text';
267
- export type { TypeTextSize } from './Old/Text/Text';
268
- export type { TypeTextWeight } from './Old/Text/Text';
269
- export { default as Text } from './Old/Text/Text';
270
-
271
- export type { Props as TextareaProps } from './Old/Textarea/Textarea';
272
- export { default as Textarea } from './Old/Textarea/Textarea';
273
-
274
- export type { Props as ToggleProps } from './Old/Toggle/Toggle';
275
- export { default as Toggle } from './Old/Toggle/Toggle';
276
-
277
- export type { Props as TooltipProps } from './Old/Tooltip/Tooltip';
278
- export { default as Tooltip } from './Old/Tooltip/Tooltip';
279
-
280
- export type { Props as VisibilityProps } from './Old/Visibility/Visibility';
281
- export { default as Visibility } from './Old/Visibility/Visibility';
282
-
283
- export type { Props as VisibilityContainerProps } from './Old/Visibility/VisibilityContainer';
284
- export { default as VisibilityContainer } from './Old/Visibility/VisibilityContainer';
285
-
286
6
  export { default as Provider } from './Components/Provider/Provider';
287
7
  export { default as theme } from './theme';
288
8
 
@@ -294,3 +14,9 @@ export { default as OverflowMenuItem } from './Components/OverflowMenu/OverflowM
294
14
 
295
15
  export type { DividerProps } from './Components/Divider/Divider';
296
16
  export { default as Divider } from './Components/Divider/Divider';
17
+
18
+ export type { ButtonProps } from './Components/Button/Button';
19
+ export { default as Button } from './Components/Button/Button';
20
+
21
+ export type { ButtonGroupProps } from './Components/ButtonGroup/ButtonGroup';
22
+ export { default as ButtonGroup } from './Components/ButtonGroup/ButtonGroup';
package/src/old.ts ADDED
@@ -0,0 +1,275 @@
1
+ import './Old/variables.css';
2
+
3
+ import * as variables from './Old/variables';
4
+ import * as hooks from './Old/hooks';
5
+
6
+ export { variables };
7
+ export { hooks };
8
+
9
+ export type { Props as AddonBeamProps } from './Old/AddonBeam/AddonBeam';
10
+ export { default as AddonBeam } from './Old/AddonBeam/AddonBeam';
11
+
12
+ export type { Props as AddonBeamLinkProps } from './Old/AddonBeam/AddonBeamLink';
13
+ export { default as AddonBeamLink } from './Old/AddonBeam/AddonBeamLink';
14
+
15
+ export type { Props as AddonFooterProps } from './Old/AddonFooter/AddonFooter';
16
+ export { default as AddonFooter } from './Old/AddonFooter/AddonFooter';
17
+
18
+ export type { Props as AppearProps } from './Old/Appear/Appear';
19
+ export type { TypeAppearAnimationName } from './Old/Appear/Appear';
20
+ export { default as Appear } from './Old/Appear/Appear';
21
+
22
+ export type { Props as AppLayoutProps } from './Old/AppLayout/AppLayout';
23
+ export { default as AppLayout } from './Old/AppLayout/AppLayout';
24
+
25
+ export type { Props as AppLayoutBodyProps } from './Old/AppLayout/AppLayoutBody';
26
+ export { default as AppLayoutBody } from './Old/AppLayout/AppLayoutBody';
27
+
28
+ export type { Props as AppLayoutHeaderProps } from './Old/AppLayout/AppLayoutHeader';
29
+ export { default as AppLayoutHeader } from './Old/AppLayout/AppLayoutHeader';
30
+
31
+ export type { Props as AppLayoutMainProps } from './Old/AppLayout/AppLayoutMain';
32
+ export { default as AppLayoutMain } from './Old/AppLayout/AppLayoutMain';
33
+
34
+ export type { Props as AppLayoutSidebarProps } from './Old/AppLayout/AppLayoutSidebar';
35
+ export { default as AppLayoutSidebar } from './Old/AppLayout/AppLayoutSidebar';
36
+
37
+ export type { Props as AvatarProps } from './Old/Avatar/Avatar';
38
+ export { default as Avatar } from './Old/Avatar/Avatar';
39
+
40
+ export type { Props as BadgeProps } from './Old/Badge/Badge';
41
+ export { default as Badge } from './Old/Badge/Badge';
42
+
43
+ export type { Props as BaseProps } from './Old/Base/Base';
44
+ export type { TypeBorderRadius } from './Old/Base/Base';
45
+ export type { TypeColors } from './Old/Base/Base';
46
+ export type { TypeSizes } from './Old/Base/Base';
47
+ export { default as Base } from './Old/Base/Base';
48
+
49
+ export type { Props as BoundsProps } from './Old/Bounds/Bounds';
50
+ export { default as Bounds } from './Old/Bounds/Bounds';
51
+
52
+ export type { Props as CardProps } from './Old/Card/Card';
53
+ export { default as Card } from './Old/Card/Card';
54
+
55
+ export type { Props as CardButtonProps } from './Old/Card/CardButton';
56
+ export { default as CardButton } from './Old/Card/CardButton';
57
+
58
+ export type { Props as CardContentProps } from './Old/Card/CardContent';
59
+ export { default as CardContent } from './Old/Card/CardContent';
60
+
61
+ export type { Props as CardDividerProps } from './Old/Card/CardDivider';
62
+ export { default as CardDivider } from './Old/Card/CardDivider';
63
+
64
+ export type { Props as CheckboxProps } from './Old/Checkbox/Checkbox';
65
+ export { default as Checkbox } from './Old/Checkbox/Checkbox';
66
+
67
+ export type { Props as ColorButtonProps } from './Old/Button/ColorButton';
68
+ export { default as ColorButton } from './Old/Button/ColorButton';
69
+
70
+ export type { Props as DatePickerProps } from './Old/DatePicker/DatePicker';
71
+ export { default as DatePicker } from './Old/DatePicker/DatePicker';
72
+
73
+ export type { Props as DotProps } from './Old/Dot/Dot';
74
+ export { default as Dot } from './Old/Dot/Dot';
75
+
76
+ export type { Props as DropdownProps } from './Old/Dropdown/Dropdown';
77
+ export { default as Dropdown } from './Old/Dropdown/Dropdown';
78
+
79
+ export type { Props as DropdownButtonProps } from './Old/Dropdown/DropdownButton';
80
+ export { default as DropdownButton } from './Old/Dropdown/DropdownButton';
81
+
82
+ export type { Props as DropdownMenusProps } from './Old/Dropdown/DropdownMenus';
83
+ export { default as DropdownMenus } from './Old/Dropdown/DropdownMenus';
84
+
85
+ export type { Props as DropdownMenuProps } from './Old/Dropdown/DropdownMenu';
86
+ export { default as DropdownMenu } from './Old/Dropdown/DropdownMenu';
87
+
88
+ export type { Props as DropdownMenuItemProps } from './Old/Dropdown/DropdownMenuItem';
89
+ export { default as DropdownMenuItem } from './Old/Dropdown/DropdownMenuItem';
90
+
91
+ export type { Props as DropdownMenuItemGroupProps } from './Old/Dropdown/DropdownMenuItemGroup';
92
+ export { default as DropdownMenuItemGroup } from './Old/Dropdown/DropdownMenuItemGroup';
93
+
94
+ export type { Props as ExpandProps } from './Old/Expand/Expand';
95
+ export { default as Expand } from './Old/Expand/Expand';
96
+
97
+ export type { Props as ExternalLinkProps } from './Old/ExternalLink/ExternalLink';
98
+ export { default as ExternalLink } from './Old/ExternalLink/ExternalLink';
99
+
100
+ export type { Props as FlexProps } from './Old/Flex/Flex';
101
+ export { default as Flex } from './Old/Flex/Flex';
102
+
103
+ export type { Props as GridProps } from './Old/Grid/Grid';
104
+ export { default as Grid } from './Old/Grid/Grid';
105
+
106
+ export type { Props as HamburgerProps } from './Old/Hamburger/Hamburger';
107
+ export { default as Hamburger } from './Old/Hamburger/Hamburger';
108
+
109
+ export type { Props as IconProps } from './Old/Icon/Icon';
110
+ export type { TypeIconName } from './Old/Icon/Icon';
111
+ export { default as Icon } from './Old/Icon/Icon';
112
+
113
+ export type { Props as ImageProps } from './Old/Image/Image';
114
+ export { default as Image } from './Old/Image/Image';
115
+
116
+ export type { Props as InputProps } from './Old/Input/Input';
117
+ export { default as Input } from './Old/Input/Input';
118
+
119
+ export type { Props as InputContainerProps } from './Old/Input/InputContainer';
120
+ export { default as InputContainer } from './Old/Input/InputContainer';
121
+
122
+ export type { Props as InputContentProps } from './Old/Input/InputContent';
123
+ export { default as InputContent } from './Old/Input/InputContent';
124
+
125
+ export type { Props as InputInlineHelpProps } from './Old/Input/InputInlineHelp';
126
+ export { default as InputInlineHelp } from './Old/Input/InputInlineHelp';
127
+
128
+ export type { Props as InputLabelProps } from './Old/Input/InputLabel';
129
+ export { default as InputLabel } from './Old/Input/InputLabel';
130
+
131
+ export type { Props as ListProps } from './Old/List/List';
132
+ export { default as List } from './Old/List/List';
133
+
134
+ export type { Props as ListItemProps } from './Old/List/ListItem';
135
+ export { default as ListItem } from './Old/List/ListItem';
136
+
137
+ export type { Props as LogoProps } from './Old/Logo/Logo';
138
+ export { default as Logo } from './Old/Logo/Logo';
139
+
140
+ export type { Props as ModalProps } from './Old/Modal/Modal';
141
+ export { default as Modal } from './Old/Modal/Modal';
142
+
143
+ export type { Props as ModalBodyProps } from './Old/Modal/ModalBody';
144
+ export { default as ModalBody } from './Old/Modal/ModalBody';
145
+
146
+ export type { Props as ModalHeaderProps } from './Old/Modal/ModalHeader';
147
+ // eslint-disable-next-line import/no-cycle
148
+ export { default as ModalHeader } from './Old/Modal/ModalHeader';
149
+
150
+ export type { Props as ModalHeaderProgressProps } from './Old/Modal/ModalHeaderProgress';
151
+ export { default as ModalHeaderProgress } from './Old/Modal/ModalHeaderProgress';
152
+
153
+ export type { Props as ModalTitleProps } from './Old/Modal/ModalTitle';
154
+ export { default as ModalTitle } from './Old/Modal/ModalTitle';
155
+
156
+ export type { Props as NotificationProps } from './Old/Notification/Notification';
157
+ export { default as Notification } from './Old/Notification/Notification';
158
+
159
+ export type { Props as PlacementProps } from './Old/Placement/Placement';
160
+ export { default as Placement } from './Old/Placement/Placement';
161
+
162
+ export type { Props as PlacementAreaProps } from './Old/Placement/PlacementArea';
163
+ export { default as PlacementArea } from './Old/Placement/PlacementArea';
164
+
165
+ export type { Props as PlacementArrowProps } from './Old/Placement/PlacementArrow';
166
+ export { default as PlacementArrow } from './Old/Placement/PlacementArrow';
167
+
168
+ export type { Props as PlacementManagerProps } from './Old/Placement/PlacementManager';
169
+ export { default as PlacementManager } from './Old/Placement/PlacementManager';
170
+
171
+ export type { Props as PlacementReferenceProps } from './Old/Placement/PlacementReference';
172
+ export { default as PlacementReference } from './Old/Placement/PlacementReference';
173
+
174
+ export type { Props as PortalProps } from './Old/Portal/Portal';
175
+ export { default as Portal } from './Old/Portal/Portal';
176
+
177
+ export type { Props as ProgressBarProps } from './Old/Progress/ProgressBar';
178
+ export { default as ProgressBar } from './Old/Progress/ProgressBar';
179
+
180
+ export type { Props as ProgressButtonProps } from './Old/Progress/ProgressButton';
181
+ export { default as ProgressButton } from './Old/Progress/ProgressButton';
182
+
183
+ export type { Props as ProgressBitbotProps } from './Old/Progress/ProgressBitbot';
184
+ export { default as ProgressBitbot } from './Old/Progress/ProgressBitbot';
185
+
186
+ export type { Props as ProgressColorButtonProps } from './Old/Progress/ProgressColorButton';
187
+ export { default as ProgressColorButton } from './Old/Progress/ProgressColorButton';
188
+
189
+ export type { Props as ProgressSpinnerProps } from './Old/Progress/ProgressSpinner';
190
+ export { default as ProgressSpinner } from './Old/Progress/ProgressSpinner';
191
+
192
+ export type { Props as RadioButtonProps } from './Old/RadioButton/RadioButton';
193
+ export { default as RadioButton } from './Old/RadioButton/RadioButton';
194
+
195
+ export type { Props as RibbonProps } from './Old/Ribbon/Ribbon';
196
+ export { default as Ribbon } from './Old/Ribbon/Ribbon';
197
+
198
+ export type { Props as SidebarProps } from './Old/Sidebar/Sidebar';
199
+ export { default as Sidebar } from './Old/Sidebar/Sidebar';
200
+
201
+ export type { Props as SidebarHeaderProps } from './Old/Sidebar/SidebarHeader';
202
+ export { default as SidebarHeader } from './Old/Sidebar/SidebarHeader';
203
+
204
+ export type { Props as SidebarMenuProps } from './Old/Sidebar/SidebarMenu';
205
+ export { default as SidebarMenu } from './Old/Sidebar/SidebarMenu';
206
+
207
+ export type { Props as SidebarMenuItemProps } from './Old/Sidebar/SidebarMenuItem';
208
+ export { default as SidebarMenuItem } from './Old/Sidebar/SidebarMenuItem';
209
+
210
+ export type { Props as SidebarSubMenuProps } from './Old/Sidebar/SidebarSubMenu';
211
+ export { default as SidebarSubMenu } from './Old/Sidebar/SidebarSubMenu';
212
+
213
+ export type { Props as SidebarSubMenuItemProps } from './Old/Sidebar/SidebarSubMenuItem';
214
+ export { default as SidebarSubMenuItem } from './Old/Sidebar/SidebarSubMenuItem';
215
+
216
+ export type { Props as SkeletonProps } from './Old/Skeleton/Skeleton';
217
+ export { default as Skeleton } from './Old/Skeleton/Skeleton';
218
+
219
+ export type { Props as SkeletonBoxProps } from './Old/Skeleton/SkeletonBox';
220
+ export { default as SkeletonBox } from './Old/Skeleton/SkeletonBox';
221
+
222
+ export type { Props as Status404Props } from './Old/Status/Status404';
223
+ export { default as Status404 } from './Old/Status/Status404';
224
+
225
+ export type { Props as Status500Props } from './Old/Status/Status500';
226
+ export { default as Status500 } from './Old/Status/Status500';
227
+
228
+ export type { Props as TableProps } from './Old/Table/Table';
229
+ export { default as Table } from './Old/Table/Table';
230
+
231
+ export type { Props as TableBodyProps } from './Old/Table/TableBody';
232
+ export { default as TableBody } from './Old/Table/TableBody';
233
+
234
+ export type { Props as TableCellProps } from './Old/Table/TableCell';
235
+ export { default as TableCell } from './Old/Table/TableCell';
236
+
237
+ export type { Props as TableHeaderProps } from './Old/Table/TableHeader';
238
+ export { default as TableHeader } from './Old/Table/TableHeader';
239
+
240
+ export type { Props as TableHeaderCellProps } from './Old/Table/TableHeaderCell';
241
+ export type { TypeTableSort } from './Old/Table/TableHeaderCell';
242
+ export { default as TableHeaderCell } from './Old/Table/TableHeaderCell';
243
+
244
+ export type { Props as TableHeaderRowProps } from './Old/Table/TableHeaderRow';
245
+ export { default as TableHeaderRow } from './Old/Table/TableHeaderRow';
246
+
247
+ export type { Props as TableRowProps } from './Old/Table/TableRow';
248
+ export { default as TableRow } from './Old/Table/TableRow';
249
+
250
+ export type { Props as TabProps } from './Old/Tabs/Tab';
251
+ export { default as Tab } from './Old/Tabs/Tab';
252
+
253
+ export type { Props as TabsProps } from './Old/Tabs/Tabs';
254
+ export { default as Tabs } from './Old/Tabs/Tabs';
255
+
256
+ export type { Props as TextProps } from './Old/Text/Text';
257
+ export type { TypeTextLetterSpacing } from './Old/Text/Text';
258
+ export type { TypeTextSize } from './Old/Text/Text';
259
+ export type { TypeTextWeight } from './Old/Text/Text';
260
+ export { default as Text } from './Old/Text/Text';
261
+
262
+ export type { Props as TextareaProps } from './Old/Textarea/Textarea';
263
+ export { default as Textarea } from './Old/Textarea/Textarea';
264
+
265
+ export type { Props as ToggleProps } from './Old/Toggle/Toggle';
266
+ export { default as Toggle } from './Old/Toggle/Toggle';
267
+
268
+ export type { Props as TooltipProps } from './Old/Tooltip/Tooltip';
269
+ export { default as Tooltip } from './Old/Tooltip/Tooltip';
270
+
271
+ export type { Props as VisibilityProps } from './Old/Visibility/Visibility';
272
+ export { default as Visibility } from './Old/Visibility/Visibility';
273
+
274
+ export type { Props as VisibilityContainerProps } from './Old/Visibility/VisibilityContainer';
275
+ export { default as VisibilityContainer } from './Old/Visibility/VisibilityContainer';