@xelto.npm/xc2-lib 0.0.26 → 0.0.27

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.
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ declare const BottomBarComponent: ({ buttons, ...props }: {
3
+ [x: string]: any;
4
+ buttons: any;
5
+ }) => JSX.Element;
6
+ export default BottomBarComponent;
@@ -0,0 +1 @@
1
+ export { default } from "./BottomBarComponent";
@@ -3,3 +3,4 @@ export { default as Typography } from "./typography";
3
3
  export { default as Button } from "./buttons/customButton";
4
4
  export { default as Illustration } from "./foundations/illustration";
5
5
  export { default as Icon } from "./foundations/icon";
6
+ export { default as BottomBar } from "./bottomBar";
package/dist/index.d.ts CHANGED
@@ -45,4 +45,9 @@ declare const Icon: ({ iconName, color, size, forwardedRef, ...rest }: {
45
45
  forwardedRef: any;
46
46
  }) => JSX.Element;
47
47
 
48
- export { AppTileComponent as AppTile, CustomButtonComponent as Button, Icon, Illustration, TypographyComponent as Typography };
48
+ declare const BottomBarComponent: ({ buttons, ...props }: {
49
+ [x: string]: any;
50
+ buttons: any;
51
+ }) => JSX.Element;
52
+
53
+ export { AppTileComponent as AppTile, BottomBarComponent as BottomBar, CustomButtonComponent as Button, Icon, Illustration, TypographyComponent as Typography };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xelto.npm/xc2-lib",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "author": "XELTO",
5
5
  "description": "React component library based on MUI",
6
6
  "license": "ISC",