@elliemae/ds-zipcode-search 2.3.0-alpha.1 → 2.3.0-alpha.10

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -94,7 +94,7 @@ declare const DSZipCodeSearch: {
94
94
  disabled: boolean;
95
95
  value: string;
96
96
  placeholder: string;
97
- mask: string;
97
+ mask: any;
98
98
  onBlur: () => null;
99
99
  onChange: () => null;
100
100
  onSearch: () => null;
File without changes
File without changes
File without changes
@@ -91,7 +91,7 @@ export declare const defaultProps: {
91
91
  disabled: boolean;
92
92
  value: string;
93
93
  placeholder: string;
94
- mask: string;
94
+ mask: any;
95
95
  onBlur: () => null;
96
96
  onChange: () => null;
97
97
  onSearch: () => null;
package/package.json CHANGED
@@ -1,31 +1,34 @@
1
1
  {
2
2
  "name": "@elliemae/ds-zipcode-search",
3
- "version": "2.3.0-alpha.1",
3
+ "version": "2.3.0-alpha.10",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Zipcode Search",
6
- "module": "./esm/index.js",
7
- "main": "./cjs/index.js",
8
- "types": "./types/index.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/esm/index.js",
10
+ "main": "./dist/cjs/index.js",
11
+ "types": "./dist/types/index.d.ts",
9
12
  "exports": {
10
13
  ".": {
11
- "import": "./esm/index.js",
12
- "require": "./cjs/index.js"
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.js"
13
16
  },
14
17
  "./props": {
15
- "import": "./esm/props.js",
16
- "require": "./cjs/props.js"
18
+ "import": "./dist/esm/props.js",
19
+ "require": "./dist/cjs/props.js"
17
20
  },
18
21
  "./DSZipCodeSearch": {
19
- "import": "./esm/DSZipCodeSearch.js",
20
- "require": "./cjs/DSZipCodeSearch.js"
22
+ "import": "./dist/esm/DSZipCodeSearch.js",
23
+ "require": "./dist/cjs/DSZipCodeSearch.js"
21
24
  },
22
25
  "./components/helper": {
23
- "import": "./esm/components/helper.js",
24
- "require": "./cjs/components/helper.js"
26
+ "import": "./dist/esm/components/helper.js",
27
+ "require": "./dist/cjs/components/helper.js"
25
28
  },
26
29
  "./components/blocks": {
27
- "import": "./esm/components/blocks.js",
28
- "require": "./cjs/components/blocks.js"
30
+ "import": "./dist/esm/components/blocks.js",
31
+ "require": "./dist/cjs/components/blocks.js"
29
32
  }
30
33
  },
31
34
  "sideEffects": [
@@ -37,24 +40,18 @@
37
40
  "url": "https://git.elliemae.io/platform-ui/dimsum.git"
38
41
  },
39
42
  "engines": {
40
- "npm": ">=7",
41
- "node": ">=14"
43
+ "pnpm": ">=6",
44
+ "node": ">=16"
42
45
  },
43
46
  "author": "ICE MT",
44
- "scripts": {
45
- "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
46
- "prebuild": "exit 0",
47
- "predev": "exit 0",
48
- "build": "node ../../scripts/build/build.js"
49
- },
50
47
  "dependencies": {
51
- "@elliemae/ds-classnames": "2.3.0-alpha.1",
52
- "@elliemae/ds-dropdownmenu": "2.3.0-alpha.1",
53
- "@elliemae/ds-form": "2.3.0-alpha.1",
48
+ "@elliemae/ds-classnames": "2.3.0-alpha.10",
49
+ "@elliemae/ds-dropdownmenu": "2.3.0-alpha.10",
50
+ "@elliemae/ds-form": "2.3.0-alpha.10",
54
51
  "react-desc": "~4.1.3"
55
52
  },
56
53
  "devDependencies": {
57
- "@testing-library/jest-dom": "~5.15.0",
54
+ "@testing-library/jest-dom": "~5.15.1",
58
55
  "@testing-library/react": "~12.1.2",
59
56
  "@testing-library/user-event": "~13.5.0"
60
57
  },
@@ -64,7 +61,12 @@
64
61
  },
65
62
  "publishConfig": {
66
63
  "access": "public",
67
- "directory": "dist",
68
- "generateSubmodules": true
64
+ "typeSafety": false
65
+ },
66
+ "scripts": {
67
+ "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
68
+ "prebuild": "exit 0",
69
+ "predev": "exit 0",
70
+ "build": "node ../../scripts/build/build.js"
69
71
  }
70
72
  }