@xelto.npm/xc2-lib 0.0.30 → 0.0.32
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 +59636 -6877
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Inputs/datepicker/DatePicker.d.ts +19 -0
- package/dist/cjs/types/components/Inputs/datepicker/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +2 -0
- package/dist/esm/index.js +59651 -6894
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Inputs/datepicker/DatePicker.d.ts +19 -0
- package/dist/esm/types/components/Inputs/datepicker/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +2 -0
- package/dist/index.d.ts +28 -1
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
declare const DatePicker: {
|
|
4
|
+
({ value, onChange, label, fluid, disabled, forwardedRef, ...props }: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
value: any;
|
|
7
|
+
onChange: any;
|
|
8
|
+
label?: string | undefined;
|
|
9
|
+
fluid?: boolean | undefined;
|
|
10
|
+
disabled?: boolean | undefined;
|
|
11
|
+
forwardedRef: any;
|
|
12
|
+
}): JSX.Element;
|
|
13
|
+
propTypes: {
|
|
14
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
15
|
+
label: PropTypes.Requireable<string>;
|
|
16
|
+
fluid: PropTypes.Requireable<boolean>;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default DatePicker;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './DatePicker';
|
|
@@ -7,3 +7,5 @@ export { default as Icon } from "./foundations/icon";
|
|
|
7
7
|
export { default as Logo } from "./foundations/logo";
|
|
8
8
|
export { default as BottomBar } from "./bottomBar";
|
|
9
9
|
export { default as BottomInfoBar } from "./bottomInfoBar";
|
|
10
|
+
export { default as Checkbox } from "./checkbox";
|
|
11
|
+
export { default as DatePicker } from "./Inputs/datepicker";
|
package/dist/index.d.ts
CHANGED
|
@@ -84,4 +84,31 @@ declare const BottomInfoBar: {
|
|
|
84
84
|
};
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
declare const CheckboxComponent: ({ disabled, label, checked, onChange, indeterminate, forwardedRef, ...props }: {
|
|
88
|
+
[x: string]: any;
|
|
89
|
+
disabled: any;
|
|
90
|
+
label: any;
|
|
91
|
+
checked: any;
|
|
92
|
+
onChange: any;
|
|
93
|
+
indeterminate: any;
|
|
94
|
+
forwardedRef: any;
|
|
95
|
+
}) => JSX.Element;
|
|
96
|
+
|
|
97
|
+
declare const DatePicker: {
|
|
98
|
+
({ value, onChange, label, fluid, disabled, forwardedRef, ...props }: {
|
|
99
|
+
[x: string]: any;
|
|
100
|
+
value: any;
|
|
101
|
+
onChange: any;
|
|
102
|
+
label?: string | undefined;
|
|
103
|
+
fluid?: boolean | undefined;
|
|
104
|
+
disabled?: boolean | undefined;
|
|
105
|
+
forwardedRef: any;
|
|
106
|
+
}): JSX.Element;
|
|
107
|
+
propTypes: {
|
|
108
|
+
disabled: propTypes.Requireable<boolean>;
|
|
109
|
+
label: propTypes.Requireable<string>;
|
|
110
|
+
fluid: propTypes.Requireable<boolean>;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export { AppTileComponent as AppTile, BottomBarComponent as BottomBar, BottomInfoBar, CustomButtonComponent as Button, CheckboxComponent as Checkbox, DatePicker, Icon, IconButtonComponent as IconButton, Illustration, Logo, TypographyComponent as Typography };
|