cecomponent 1.0.16 → 1.0.18
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/ce-component-lib.css +1 -1
- package/dist/ce-component-lib.js +89 -16
- package/dist/ce-component-lib.mjs +12682 -8088
- package/dist/components/Common/CEAutoSuggestInput/CEAutoSuggestInput.d.ts +13 -0
- package/dist/components/Common/Header/CEHeader.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface AutoSuggestInputProps {
|
|
3
|
+
label: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
fetchSuggestions: (query: string) => Promise<string[]>;
|
|
6
|
+
value: string;
|
|
7
|
+
onChange: (value: string) => void;
|
|
8
|
+
width?: string;
|
|
9
|
+
height?: string;
|
|
10
|
+
style?: React.CSSProperties;
|
|
11
|
+
}
|
|
12
|
+
declare const CEAutoSuggestInput: React.FC<AutoSuggestInputProps>;
|
|
13
|
+
export default CEAutoSuggestInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as CEBreadcrumbs } from './components/Common/Breadcrumb/CEBreadcrumbs';
|
|
2
2
|
export { default as CEButton } from './components/Common/Button/CEButton';
|
|
3
|
+
export { default as CEAutoSuggestInput } from './components/Common/CEAutoSuggestInput/CEAutoSuggestInput';
|
|
3
4
|
export { default as CEDrawer } from './components/Common/CEDrawer/CEDrawer';
|
|
4
5
|
export { default as CESnackBar } from './components/Common/CESnackBar/CESnackBar';
|
|
5
6
|
export { default as CEStepper } from './components/Common/CEStepper/CEStepper';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cecomponent",
|
|
3
3
|
"description": "A React component library for building modern UIs for Cleanearth",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.18",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|