@xelto.npm/xc2-lib 0.0.28 → 0.0.30
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 +12615 -12408
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/buttons/iconButton/IconButtonComponent.d.ts +11 -0
- package/dist/cjs/types/components/buttons/iconButton/index.d.ts +1 -0
- package/dist/cjs/types/components/checkbox/CheckboxComponent.d.ts +11 -0
- package/dist/cjs/types/components/checkbox/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +12615 -12409
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/buttons/iconButton/IconButtonComponent.d.ts +11 -0
- package/dist/esm/types/components/buttons/iconButton/index.d.ts +1 -0
- package/dist/esm/types/components/checkbox/CheckboxComponent.d.ts +11 -0
- package/dist/esm/types/components/checkbox/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +12 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export default function IconButtonComponent({ text, type, icon, color, fluid, onClick, forwardedRef, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
text: any;
|
|
5
|
+
type: any;
|
|
6
|
+
icon: any;
|
|
7
|
+
color: any;
|
|
8
|
+
fluid: any;
|
|
9
|
+
onClick: any;
|
|
10
|
+
forwardedRef: any;
|
|
11
|
+
}): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./IconButtonComponent.js";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const CheckboxComponent: ({ disabled, label, checked, onChange, indeterminate, forwardedRef, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
disabled: any;
|
|
5
|
+
label: any;
|
|
6
|
+
checked: any;
|
|
7
|
+
onChange: any;
|
|
8
|
+
indeterminate: any;
|
|
9
|
+
forwardedRef: any;
|
|
10
|
+
}) => JSX.Element;
|
|
11
|
+
export default CheckboxComponent;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CheckboxComponent';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as AppTile } from "./appTile";
|
|
2
2
|
export { default as Typography } from "./typography";
|
|
3
3
|
export { default as Button } from "./buttons/customButton";
|
|
4
|
+
export { default as IconButton } from "./buttons/iconButton";
|
|
4
5
|
export { default as Illustration } from "./foundations/illustration";
|
|
5
6
|
export { default as Icon } from "./foundations/icon";
|
|
6
7
|
export { default as Logo } from "./foundations/logo";
|
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,17 @@ declare const CustomButtonComponent: ({ type, text, size, fluid, color, resoluti
|
|
|
32
32
|
forwardedRef: any;
|
|
33
33
|
}) => JSX.Element;
|
|
34
34
|
|
|
35
|
+
declare function IconButtonComponent({ text, type, icon, color, fluid, onClick, forwardedRef, ...props }: {
|
|
36
|
+
[x: string]: any;
|
|
37
|
+
text: any;
|
|
38
|
+
type: any;
|
|
39
|
+
icon: any;
|
|
40
|
+
color: any;
|
|
41
|
+
fluid: any;
|
|
42
|
+
onClick: any;
|
|
43
|
+
forwardedRef: any;
|
|
44
|
+
}): JSX.Element;
|
|
45
|
+
|
|
35
46
|
declare const Illustration: ({ illustrationName, color, size, isBigType }: {
|
|
36
47
|
illustrationName: any;
|
|
37
48
|
color: any;
|
|
@@ -73,4 +84,4 @@ declare const BottomInfoBar: {
|
|
|
73
84
|
};
|
|
74
85
|
};
|
|
75
86
|
|
|
76
|
-
export { AppTileComponent as AppTile, BottomBarComponent as BottomBar, BottomInfoBar, CustomButtonComponent as Button, Icon, Illustration, Logo, TypographyComponent as Typography };
|
|
87
|
+
export { AppTileComponent as AppTile, BottomBarComponent as BottomBar, BottomInfoBar, CustomButtonComponent as Button, Icon, IconButtonComponent as IconButton, Illustration, Logo, TypographyComponent as Typography };
|