@elliemae/ds-zipcode-search 3.13.1-rc.1 → 3.13.1
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/types/DSZipCodeSearch.d.ts +61 -0
- package/dist/types/components/blocks.d.ts +2 -0
- package/dist/types/components/helper.d.ts +10 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/props.d.ts +41 -0
- package/dist/types/tests/DSZipCodeSearch.test.d.ts +1 -0
- package/package.json +6 -6
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const DSZipCodeSearch: {
|
|
2
|
+
({ disabled, value, placeholder, mask, onBlur, onChange, onSearch, containerProps, selectRightOptions, activeCount, options, tabIndex, }: {
|
|
3
|
+
disabled: any;
|
|
4
|
+
value: any;
|
|
5
|
+
placeholder: any;
|
|
6
|
+
mask: any;
|
|
7
|
+
onBlur: any;
|
|
8
|
+
onChange: any;
|
|
9
|
+
onSearch: any;
|
|
10
|
+
containerProps: any;
|
|
11
|
+
selectRightOptions: any;
|
|
12
|
+
activeCount: any;
|
|
13
|
+
options: any;
|
|
14
|
+
tabIndex: any;
|
|
15
|
+
}): JSX.Element;
|
|
16
|
+
propTypes: {
|
|
17
|
+
className: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
18
|
+
containerProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
19
|
+
tabIndex: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
20
|
+
disabled: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
21
|
+
value: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
22
|
+
onBlur: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
23
|
+
onChange: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
24
|
+
options: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
25
|
+
placeholder: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
26
|
+
mask: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
27
|
+
onSearch: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
28
|
+
selectRightOptions: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
29
|
+
activeCount: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
30
|
+
};
|
|
31
|
+
defaultProps: {
|
|
32
|
+
disabled: boolean;
|
|
33
|
+
value: string;
|
|
34
|
+
placeholder: string;
|
|
35
|
+
mask: string;
|
|
36
|
+
onBlur: () => null;
|
|
37
|
+
onChange: () => null;
|
|
38
|
+
onSearch: () => null;
|
|
39
|
+
containerProps: {};
|
|
40
|
+
selectRightOptions: string;
|
|
41
|
+
activeCount: number;
|
|
42
|
+
options: never[];
|
|
43
|
+
};
|
|
44
|
+
displayName: string;
|
|
45
|
+
};
|
|
46
|
+
declare const ZipCodeSearchWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
|
|
47
|
+
disabled: any;
|
|
48
|
+
value: any;
|
|
49
|
+
placeholder: any;
|
|
50
|
+
mask: any;
|
|
51
|
+
onBlur: any;
|
|
52
|
+
onChange: any;
|
|
53
|
+
onSearch: any;
|
|
54
|
+
containerProps: any;
|
|
55
|
+
selectRightOptions: any;
|
|
56
|
+
activeCount: any;
|
|
57
|
+
options: any;
|
|
58
|
+
tabIndex: any;
|
|
59
|
+
}>;
|
|
60
|
+
export { DSZipCodeSearch, ZipCodeSearchWithSchema };
|
|
61
|
+
export default DSZipCodeSearch;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const zipcodeSearchProps: {
|
|
2
|
+
/** html class attribute */
|
|
3
|
+
className: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
4
|
+
/** Set of Properties attached to the main container */
|
|
5
|
+
containerProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
6
|
+
/** native tabindex property to handle focus order */
|
|
7
|
+
tabIndex: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
8
|
+
/** disable component */
|
|
9
|
+
disabled: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
10
|
+
/** input value */
|
|
11
|
+
value: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
12
|
+
/** function called on blur */
|
|
13
|
+
onBlur: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
14
|
+
/** function called on change */
|
|
15
|
+
onChange: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
16
|
+
/** options to display */
|
|
17
|
+
options: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
18
|
+
/** placeholder value */
|
|
19
|
+
placeholder: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
20
|
+
/** format mask to apply */
|
|
21
|
+
mask: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
22
|
+
/** function called onsearch */
|
|
23
|
+
onSearch: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
24
|
+
/** Correction messange */
|
|
25
|
+
selectRightOptions: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
26
|
+
/** current amount */
|
|
27
|
+
activeCount: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
28
|
+
};
|
|
29
|
+
export declare const defaultProps: {
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
value: string;
|
|
32
|
+
placeholder: string;
|
|
33
|
+
mask: string;
|
|
34
|
+
onBlur: () => null;
|
|
35
|
+
onChange: () => null;
|
|
36
|
+
onSearch: () => null;
|
|
37
|
+
containerProps: {};
|
|
38
|
+
selectRightOptions: string;
|
|
39
|
+
activeCount: number;
|
|
40
|
+
options: never[];
|
|
41
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-zipcode-search",
|
|
3
|
-
"version": "3.13.1
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Zipcode Search",
|
|
6
6
|
"files": [
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"indent": 4
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@elliemae/ds-classnames": "3.13.1
|
|
55
|
-
"@elliemae/ds-dropdownmenu": "3.13.1
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-utilities": "3.13.1
|
|
54
|
+
"@elliemae/ds-classnames": "3.13.1",
|
|
55
|
+
"@elliemae/ds-dropdownmenu": "3.13.1",
|
|
56
|
+
"@elliemae/ds-form": "3.13.1",
|
|
57
|
+
"@elliemae/ds-system": "3.13.1",
|
|
58
|
+
"@elliemae/ds-utilities": "3.13.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@testing-library/jest-dom": "~5.16.4",
|