@bitrise/bitkit 10.35.1 → 10.35.2-alpha-chakra.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 +1 -1
- package/src/Foundations/Sizes/Sizes.ts +2 -0
- package/src/index.ts +4 -2
- package/src/tsconfig.tsbuildinfo +1 -1
- package/src/Old/Base/Base.css +0 -337
- package/src/Old/Base/Base.tsx +0 -199
- package/src/Old/Flex/Flex.css +0 -105
- package/src/Old/Flex/Flex.tsx +0 -92
- package/src/Old/Placement/Placement.css +0 -100
- package/src/Old/Placement/Placement.tsx +0 -74
- package/src/Old/Placement/PlacementArea.tsx +0 -49
- package/src/Old/Placement/PlacementArrow.tsx +0 -20
- package/src/Old/Placement/PlacementArrowPropsContext.ts +0 -9
- package/src/Old/Placement/PlacementManager.tsx +0 -24
- package/src/Old/Placement/PlacementManagerContext.ts +0 -9
- package/src/Old/Placement/PlacementPopper.tsx +0 -173
- package/src/Old/Placement/PlacementReference.tsx +0 -19
- package/src/Old/hooks/index.ts +0 -2
- package/src/Old/hooks/useEventListener.ts +0 -45
- package/src/Old/hooks/useSyncedStateAndProps.ts +0 -14
- package/src/Old/variables.css +0 -210
- package/src/Old/variables.ts +0 -320
- package/src/old.ts +0 -16
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
export * from './old';
|
|
2
1
|
export * from './types/chakra';
|
|
3
2
|
export * from './utils/chakra';
|
|
4
3
|
export * from './hooks';
|
|
5
4
|
|
|
5
|
+
export { default as theme } from './theme';
|
|
6
|
+
export type { Colors } from './Foundations/Colors/Colors';
|
|
7
|
+
export type { Sizes } from './Foundations/Sizes/Sizes';
|
|
8
|
+
|
|
6
9
|
export type { LinkProps } from './Components/Link/Link';
|
|
7
10
|
export { default as Link } from './Components/Link/Link';
|
|
8
11
|
|
|
9
12
|
export { default as Provider } from './Components/Provider/Provider';
|
|
10
|
-
export { default as theme } from './theme';
|
|
11
13
|
|
|
12
14
|
export type { OverflowMenuProps } from './Components/OverflowMenu/OverflowMenu';
|
|
13
15
|
export { default as OverflowMenu } from './Components/OverflowMenu/OverflowMenu';
|