cecomponent 1.0.131 → 1.0.134
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,16 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface Option {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}
|
|
6
|
+
interface CEAutoCompleteSelectProps {
|
|
7
|
+
label: string;
|
|
8
|
+
options: Option[];
|
|
9
|
+
value: string[];
|
|
10
|
+
onChange: (val: string[]) => void;
|
|
11
|
+
multiple?: boolean;
|
|
12
|
+
showCheckboxes?: boolean;
|
|
13
|
+
id?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const CEAutoCompleteSelect: React.FC<CEAutoCompleteSelectProps>;
|
|
16
|
+
export default CEAutoCompleteSelect;
|
package/dist/index.d.ts
CHANGED
|
@@ -57,3 +57,5 @@ export { CEAccordion } from './components/Common/CEAccordion/CEAccordion';
|
|
|
57
57
|
export { CEAccordionItem } from './components/Common/CEAccordion/CEAccordionItem';
|
|
58
58
|
export { default as CEToggleSlider } from './components/Common/CEToggleSlider/CEToggleSlide';
|
|
59
59
|
export { default as CEAdvancedMultiSelectDropdown } from './components/Common/Multiselection/CEAdvancedMultiSelectDropdown';
|
|
60
|
+
export { default as CEAutoCompleteInput } from './components/Common/CEAutoComplete/AutoCompleteInput';
|
|
61
|
+
export { default as CEAutoCompleteSelect } from './components/Common/CEAutoComplete/CEAutoCompleteSelect';
|
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.134",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|