@xelto.npm/xc2-lib 0.0.26 → 0.0.28

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";
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import propTypes from "prop-types";
3
+ declare const BottomInfoBar: {
4
+ ({ noLogo, leftText, rightText, onRightTextClick }: {
5
+ noLogo?: boolean | undefined;
6
+ leftText?: string | undefined;
7
+ rightText?: string | undefined;
8
+ onRightTextClick: any;
9
+ }): JSX.Element;
10
+ propTypes: {
11
+ noLogo: propTypes.Requireable<boolean>;
12
+ leftText: propTypes.Requireable<string>;
13
+ rightText: propTypes.Requireable<string>;
14
+ onRightTextClick: propTypes.Requireable<(...args: any[]) => any>;
15
+ };
16
+ };
17
+ export default BottomInfoBar;
@@ -0,0 +1 @@
1
+ export { default } from "./BottomInfoBar";
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare const Logo: ({ logoName, color, ...props }: {
3
+ [x: string]: any;
4
+ logoName: any;
5
+ color: any;
6
+ }) => JSX.Element;
7
+ export default Logo;
@@ -0,0 +1 @@
1
+ export { default } from "./Logo";
@@ -3,3 +3,6 @@ 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 Logo } from "./foundations/logo";
7
+ export { default as BottomBar } from "./bottomBar";
8
+ export { default as BottomInfoBar } from "./bottomInfoBar";
package/dist/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  /// <reference types="react" />
2
+ import propTypes from 'prop-types';
3
+
2
4
  declare const AppTileComponent: ({ header, description, illustrationName, forwardedRef, isBigType, size, color }: {
3
5
  header: any;
4
6
  description: any;
@@ -45,4 +47,30 @@ declare const Icon: ({ iconName, color, size, forwardedRef, ...rest }: {
45
47
  forwardedRef: any;
46
48
  }) => JSX.Element;
47
49
 
48
- export { AppTileComponent as AppTile, CustomButtonComponent as Button, Icon, Illustration, TypographyComponent as Typography };
50
+ declare const Logo: ({ logoName, color, ...props }: {
51
+ [x: string]: any;
52
+ logoName: any;
53
+ color: any;
54
+ }) => JSX.Element;
55
+
56
+ declare const BottomBarComponent: ({ buttons, ...props }: {
57
+ [x: string]: any;
58
+ buttons: any;
59
+ }) => JSX.Element;
60
+
61
+ declare const BottomInfoBar: {
62
+ ({ noLogo, leftText, rightText, onRightTextClick }: {
63
+ noLogo?: boolean | undefined;
64
+ leftText?: string | undefined;
65
+ rightText?: string | undefined;
66
+ onRightTextClick: any;
67
+ }): JSX.Element;
68
+ propTypes: {
69
+ noLogo: propTypes.Requireable<boolean>;
70
+ leftText: propTypes.Requireable<string>;
71
+ rightText: propTypes.Requireable<string>;
72
+ onRightTextClick: propTypes.Requireable<(...args: any[]) => any>;
73
+ };
74
+ };
75
+
76
+ export { AppTileComponent as AppTile, BottomBarComponent as BottomBar, BottomInfoBar, CustomButtonComponent as Button, Icon, Illustration, Logo, 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.28",
4
4
  "author": "XELTO",
5
5
  "description": "React component library based on MUI",
6
6
  "license": "ISC",