@bitrise/bitkit 13.260.0 → 13.262.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/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -370,6 +370,9 @@ export { default as FormLabel } from './Components/Form/FormLabel';
|
|
|
370
370
|
export type { ToggleButtonProps } from './Components/ToggleButton/ToggleButton';
|
|
371
371
|
export { default as ToggleButton } from './Components/ToggleButton/ToggleButton';
|
|
372
372
|
|
|
373
|
+
export type { TreeViewProps } from './Components/TreeView/TreeView';
|
|
374
|
+
export { default as TreeView } from './Components/TreeView/TreeView';
|
|
375
|
+
|
|
373
376
|
export {
|
|
374
377
|
default as SettingsCard,
|
|
375
378
|
SettingsCardData,
|
package/src/utils/reexports.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { keyframes } from '@emotion/react';
|
|
2
|
-
export { forwardRef, Portal } from '@chakra-ui/react';
|
|
2
|
+
export { forwardRef, Portal, Grid, GridItem } from '@chakra-ui/react';
|
|
3
|
+
export type { GridProps, GridItemProps } from '@chakra-ui/react';
|
|
3
4
|
export type { StyleProps } from '@chakra-ui/styled-system';
|
|
4
5
|
export { IMask, useIMask } from 'react-imask';
|