@bitrise/bitkit 9.37.1-alpha-react18.1 → 9.38.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 +39 -36
- package/src/Components/ButtonGroup/ButtonGroup.stories.tsx +1 -1
- package/src/Components/Dialog/Dialog.stories.tsx +5 -4
- package/src/Components/Dialog/Dialog.tsx +15 -19
- package/src/Components/EmptyState/EmptyState.theme.ts +1 -1
- package/src/Components/List/List.stories.tsx +24 -0
- package/src/Components/List/List.theme.ts +20 -0
- package/src/Components/List/List.tsx +20 -0
- package/src/Components/List/ListItem.tsx +12 -0
- package/src/Components/Menu/Menu.tsx +1 -1
- package/src/Components/Popover/PopoverTrigger.tsx +2 -1
- package/src/Components/Tooltip/Tooltip.theme.ts +1 -0
- package/src/Foundations/Breakpoints/Breakpoints.ts +3 -9
- package/src/Foundations/Zindex/Zindex.ts +1 -0
- package/src/Old/Appear/Appear.css +116 -0
- package/src/Old/Appear/Appear.tsx +74 -0
- package/src/Old/Placement/Placement.css +14 -0
- package/src/Old/Placement/PlacementPopper.tsx +17 -2
- package/src/hooks/index.ts +1 -0
- package/src/index.ts +6 -1
- package/src/old.ts +4 -6
- package/src/theme.ts +2 -0
- package/src/tsconfig.tsbuildinfo +1 -1
package/src/old.ts
CHANGED
|
@@ -15,6 +15,10 @@ export { default as AddonBeamLink } from './Old/AddonBeam/AddonBeamLink';
|
|
|
15
15
|
export type { Props as AddonFooterProps } from './Old/AddonFooter/AddonFooter';
|
|
16
16
|
export { default as AddonFooter } from './Old/AddonFooter/AddonFooter';
|
|
17
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
|
+
|
|
18
22
|
export type { Props as AppLayoutProps } from './Old/AppLayout/AppLayout';
|
|
19
23
|
export { default as AppLayout } from './Old/AppLayout/AppLayout';
|
|
20
24
|
|
|
@@ -96,12 +100,6 @@ export { default as InputInlineHelp } from './Old/Input/InputInlineHelp';
|
|
|
96
100
|
export type { Props as InputLabelProps } from './Old/Input/InputLabel';
|
|
97
101
|
export { default as InputLabel } from './Old/Input/InputLabel';
|
|
98
102
|
|
|
99
|
-
export type { Props as ListProps } from './Old/List/List';
|
|
100
|
-
export { default as List } from './Old/List/List';
|
|
101
|
-
|
|
102
|
-
export type { Props as ListItemProps } from './Old/List/ListItem';
|
|
103
|
-
export { default as ListItem } from './Old/List/ListItem';
|
|
104
|
-
|
|
105
103
|
export type { Props as LogoProps } from './Old/Logo/Logo';
|
|
106
104
|
export { default as Logo } from './Old/Logo/Logo';
|
|
107
105
|
|
package/src/theme.ts
CHANGED
|
@@ -7,6 +7,7 @@ import Dialog from './Components/Dialog/Dialog.theme';
|
|
|
7
7
|
import Divider from './Components/Divider/Divider.theme';
|
|
8
8
|
import EmptyState from './Components/EmptyState/EmptyState.theme';
|
|
9
9
|
import Link from './Components/Link/Link.theme';
|
|
10
|
+
import List from './Components/List/List.theme';
|
|
10
11
|
import Menu from './Components/Menu/Menu.theme';
|
|
11
12
|
import Select from './Components/Select/Select.theme';
|
|
12
13
|
import Tabs from './Components/Tabs/Tabs.theme';
|
|
@@ -68,6 +69,7 @@ const theme = {
|
|
|
68
69
|
Divider,
|
|
69
70
|
EmptyState,
|
|
70
71
|
Link,
|
|
72
|
+
List,
|
|
71
73
|
Menu,
|
|
72
74
|
Modal: Dialog,
|
|
73
75
|
Select,
|