@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.
- package/dist/cjs/index.js +666 -347
- 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/bottomInfoBar/BottomInfoBar.d.ts +17 -0
- package/dist/cjs/types/components/bottomInfoBar/index.d.ts +1 -0
- package/dist/cjs/types/components/foundations/logo/Logo.d.ts +7 -0
- package/dist/cjs/types/components/foundations/logo/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +3 -0
- package/dist/esm/index.js +664 -348
- 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/bottomInfoBar/BottomInfoBar.d.ts +17 -0
- package/dist/esm/types/components/bottomInfoBar/index.d.ts +1 -0
- package/dist/esm/types/components/foundations/logo/Logo.d.ts +7 -0
- package/dist/esm/types/components/foundations/logo/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +3 -0
- package/dist/index.d.ts +29 -1
- package/package.json +1 -1
|
@@ -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 @@
|
|
|
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
|
-
|
|
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 };
|