@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.
- package/dist/cjs/index.js +39 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/bottomBar/BottomBarComponent.d.ts +6 -0
- package/dist/cjs/types/components/bottomBar/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +39 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/bottomBar/BottomBarComponent.d.ts +6 -0
- package/dist/esm/types/components/bottomBar/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 };
|