@bitrise/bitkit 10.19.0 → 10.20.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 +1 -1
- package/src/Components/Collapse/Collapse.tsx +5 -0
- package/src/index.ts +3 -0
- package/src/old.ts +0 -3
- package/src/tsconfig.tsbuildinfo +1 -1
- package/src/Old/Expand/Expand.css +0 -26
- package/src/Old/Expand/Expand.test.tsx +0 -52
- package/src/Old/Expand/Expand.tsx +0 -133
- package/src/Old/Expand/__snapshots__/Expand.test.tsx.snap +0 -211
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -196,5 +196,8 @@ export { default as Tr } from './Components/Table/Tr';
|
|
|
196
196
|
export type { ToggleProps } from './Components/Toggle/Toggle';
|
|
197
197
|
export { default as Toggle } from './Components/Toggle/Toggle';
|
|
198
198
|
|
|
199
|
+
export type { CollapseProps } from './Components/Collapse/Collapse';
|
|
200
|
+
export { default as Collapse } from './Components/Collapse/Collapse';
|
|
201
|
+
|
|
199
202
|
export type { TextareaProps } from './Components/Form/Textarea/Textarea';
|
|
200
203
|
export { default as Textarea } from './Components/Form/Textarea/Textarea';
|
package/src/old.ts
CHANGED
|
@@ -24,9 +24,6 @@ export { default as DropdownMenuItem } from './Old/Dropdown/DropdownMenuItem';
|
|
|
24
24
|
export type { Props as DropdownMenuItemGroupProps } from './Old/Dropdown/DropdownMenuItemGroup';
|
|
25
25
|
export { default as DropdownMenuItemGroup } from './Old/Dropdown/DropdownMenuItemGroup';
|
|
26
26
|
|
|
27
|
-
export type { Props as ExpandProps } from './Old/Expand/Expand';
|
|
28
|
-
export { default as Expand } from './Old/Expand/Expand';
|
|
29
|
-
|
|
30
27
|
export type { Props as FlexProps } from './Old/Flex/Flex';
|
|
31
28
|
export { default as Flex } from './Old/Flex/Flex';
|
|
32
29
|
|