@skyscanner/backpack-web 42.4.0 → 42.5.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.
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
import BpkCardList from './src/BpkCardList';
|
|
2
|
+
import { LAYOUTS, ACCESSORY_DESKTOP_TYPES, ACCESSORY_MOBILE_TYPES } from './src/common-types';
|
|
2
3
|
export default BpkCardList;
|
|
4
|
+
export { LAYOUTS, ACCESSORY_DESKTOP_TYPES, ACCESSORY_MOBILE_TYPES };
|
|
5
|
+
export type { LayoutDesktop, LayoutMobile } from './src/common-types';
|
|
@@ -17,4 +17,6 @@
|
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
19
|
import BpkCardList from "./src/BpkCardList";
|
|
20
|
-
|
|
20
|
+
import { LAYOUTS, ACCESSORY_DESKTOP_TYPES, ACCESSORY_MOBILE_TYPES } from "./src/common-types";
|
|
21
|
+
export default BpkCardList;
|
|
22
|
+
export { LAYOUTS, ACCESSORY_DESKTOP_TYPES, ACCESSORY_MOBILE_TYPES };
|
|
@@ -4,4 +4,5 @@ import BpkInfoBannerExpandable from './src/BpkInfoBannerExpandable';
|
|
|
4
4
|
import { ALERT_TYPES, STYLE_TYPES } from './src/common-types';
|
|
5
5
|
import withBannerAlertState from './src/withBannerAlertState';
|
|
6
6
|
export { ALERT_TYPES, STYLE_TYPES, BpkInfoBannerDismissable, BpkInfoBannerExpandable, withBannerAlertState, };
|
|
7
|
+
export type { AlertTypeValue, StyleTypeValue } from './src/common-types';
|
|
7
8
|
export default BpkInfoBanner;
|