@clipboard-health/usa-states 1.0.0
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/README.md +32 -0
- package/package.json +24 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +6 -0
- package/src/index.js.map +1 -0
- package/src/lib/isStateCode.d.ts +2 -0
- package/src/lib/isStateCode.js +9 -0
- package/src/lib/isStateCode.js.map +1 -0
- package/src/lib/usStates.d.ts +183 -0
- package/src/lib/usStates.js +68 -0
- package/src/lib/usStates.js.map +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @clipboard-health/usa-states <!-- omit from toc -->
|
|
2
|
+
|
|
3
|
+
Canonical US state and territory list and `StateCode` type.
|
|
4
|
+
|
|
5
|
+
## Table of contents <!-- omit from toc -->
|
|
6
|
+
|
|
7
|
+
- [Install](#install)
|
|
8
|
+
- [Usage](#usage)
|
|
9
|
+
- [Local development commands](#local-development-commands)
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @clipboard-health/usa-states
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import { isStateCode, type StateCode, US_STATES } from "@clipboard-health/usa-states";
|
|
21
|
+
|
|
22
|
+
US_STATES.find((state) => state.code === "CA");
|
|
23
|
+
// => { name: "California", code: "CA" }
|
|
24
|
+
|
|
25
|
+
function parseStateCode(value: string): StateCode | undefined {
|
|
26
|
+
return isStateCode(value) ? value : undefined;
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Local development commands
|
|
31
|
+
|
|
32
|
+
See [`package.json`](./package.json) `scripts` for a list of commands.
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clipboard-health/usa-states",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Canonical US state and territory list and StateCode type.",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"bugs": "https://github.com/ClipboardHealth/core-utils/issues",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/ClipboardHealth/core-utils.git",
|
|
11
|
+
"directory": "packages/usa-states"
|
|
12
|
+
},
|
|
13
|
+
"type": "commonjs",
|
|
14
|
+
"main": "./src/index.js",
|
|
15
|
+
"typings": "./src/index.d.ts",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@clipboard-health/util-ts": "5.14.1",
|
|
21
|
+
"tslib": "2.8.1"
|
|
22
|
+
},
|
|
23
|
+
"types": "./src/index.d.ts"
|
|
24
|
+
}
|
package/src/index.d.ts
ADDED
package/src/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./lib/isStateCode"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./lib/usStates"), exports);
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/usa-states/src/index.ts"],"names":[],"mappings":";;;AAAA,4DAAkC;AAClC,yDAA+B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isStateCode = isStateCode;
|
|
4
|
+
const usStates_1 = require("./usStates");
|
|
5
|
+
const STATE_CODES = new Set(usStates_1.US_STATES.map((state) => state.code));
|
|
6
|
+
function isStateCode(value) {
|
|
7
|
+
return STATE_CODES.has(value);
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=isStateCode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isStateCode.js","sourceRoot":"","sources":["../../../../../packages/usa-states/src/lib/isStateCode.ts"],"names":[],"mappings":";;;AAAA,yCAAuD;AAEvD,MAAM,WAAW,GAAwB,IAAI,GAAG,CAAC,oBAAS,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;AAEvF,qBAA4B,KAAa;IACvC,OAAO,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;AAChC,CAAC"}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
export declare const US_STATES: readonly [{
|
|
2
|
+
readonly name: "Alabama";
|
|
3
|
+
readonly code: "AL";
|
|
4
|
+
}, {
|
|
5
|
+
readonly name: "Alaska";
|
|
6
|
+
readonly code: "AK";
|
|
7
|
+
}, {
|
|
8
|
+
readonly name: "American Samoa";
|
|
9
|
+
readonly code: "AS";
|
|
10
|
+
}, {
|
|
11
|
+
readonly name: "Arizona";
|
|
12
|
+
readonly code: "AZ";
|
|
13
|
+
}, {
|
|
14
|
+
readonly name: "Arkansas";
|
|
15
|
+
readonly code: "AR";
|
|
16
|
+
}, {
|
|
17
|
+
readonly name: "California";
|
|
18
|
+
readonly code: "CA";
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "Colorado";
|
|
21
|
+
readonly code: "CO";
|
|
22
|
+
}, {
|
|
23
|
+
readonly name: "Connecticut";
|
|
24
|
+
readonly code: "CT";
|
|
25
|
+
}, {
|
|
26
|
+
readonly name: "Delaware";
|
|
27
|
+
readonly code: "DE";
|
|
28
|
+
}, {
|
|
29
|
+
readonly name: "District of Columbia";
|
|
30
|
+
readonly code: "DC";
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "Federated States of Micronesia";
|
|
33
|
+
readonly code: "FM";
|
|
34
|
+
}, {
|
|
35
|
+
readonly name: "Florida";
|
|
36
|
+
readonly code: "FL";
|
|
37
|
+
}, {
|
|
38
|
+
readonly name: "Georgia";
|
|
39
|
+
readonly code: "GA";
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "Guam";
|
|
42
|
+
readonly code: "GU";
|
|
43
|
+
}, {
|
|
44
|
+
readonly name: "Hawaii";
|
|
45
|
+
readonly code: "HI";
|
|
46
|
+
}, {
|
|
47
|
+
readonly name: "Idaho";
|
|
48
|
+
readonly code: "ID";
|
|
49
|
+
}, {
|
|
50
|
+
readonly name: "Illinois";
|
|
51
|
+
readonly code: "IL";
|
|
52
|
+
}, {
|
|
53
|
+
readonly name: "Indiana";
|
|
54
|
+
readonly code: "IN";
|
|
55
|
+
}, {
|
|
56
|
+
readonly name: "Iowa";
|
|
57
|
+
readonly code: "IA";
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "Kansas";
|
|
60
|
+
readonly code: "KS";
|
|
61
|
+
}, {
|
|
62
|
+
readonly name: "Kentucky";
|
|
63
|
+
readonly code: "KY";
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "Louisiana";
|
|
66
|
+
readonly code: "LA";
|
|
67
|
+
}, {
|
|
68
|
+
readonly name: "Maine";
|
|
69
|
+
readonly code: "ME";
|
|
70
|
+
}, {
|
|
71
|
+
readonly name: "Marshall Islands";
|
|
72
|
+
readonly code: "MH";
|
|
73
|
+
}, {
|
|
74
|
+
readonly name: "Maryland";
|
|
75
|
+
readonly code: "MD";
|
|
76
|
+
}, {
|
|
77
|
+
readonly name: "Massachusetts";
|
|
78
|
+
readonly code: "MA";
|
|
79
|
+
}, {
|
|
80
|
+
readonly name: "Michigan";
|
|
81
|
+
readonly code: "MI";
|
|
82
|
+
}, {
|
|
83
|
+
readonly name: "Minnesota";
|
|
84
|
+
readonly code: "MN";
|
|
85
|
+
}, {
|
|
86
|
+
readonly name: "Mississippi";
|
|
87
|
+
readonly code: "MS";
|
|
88
|
+
}, {
|
|
89
|
+
readonly name: "Missouri";
|
|
90
|
+
readonly code: "MO";
|
|
91
|
+
}, {
|
|
92
|
+
readonly name: "Montana";
|
|
93
|
+
readonly code: "MT";
|
|
94
|
+
}, {
|
|
95
|
+
readonly name: "Nebraska";
|
|
96
|
+
readonly code: "NE";
|
|
97
|
+
}, {
|
|
98
|
+
readonly name: "Nevada";
|
|
99
|
+
readonly code: "NV";
|
|
100
|
+
}, {
|
|
101
|
+
readonly name: "New Hampshire";
|
|
102
|
+
readonly code: "NH";
|
|
103
|
+
}, {
|
|
104
|
+
readonly name: "New Jersey";
|
|
105
|
+
readonly code: "NJ";
|
|
106
|
+
}, {
|
|
107
|
+
readonly name: "New Mexico";
|
|
108
|
+
readonly code: "NM";
|
|
109
|
+
}, {
|
|
110
|
+
readonly name: "New York";
|
|
111
|
+
readonly code: "NY";
|
|
112
|
+
}, {
|
|
113
|
+
readonly name: "North Carolina";
|
|
114
|
+
readonly code: "NC";
|
|
115
|
+
}, {
|
|
116
|
+
readonly name: "North Dakota";
|
|
117
|
+
readonly code: "ND";
|
|
118
|
+
}, {
|
|
119
|
+
readonly name: "Northern Mariana Islands";
|
|
120
|
+
readonly code: "MP";
|
|
121
|
+
}, {
|
|
122
|
+
readonly name: "Ohio";
|
|
123
|
+
readonly code: "OH";
|
|
124
|
+
}, {
|
|
125
|
+
readonly name: "Oklahoma";
|
|
126
|
+
readonly code: "OK";
|
|
127
|
+
}, {
|
|
128
|
+
readonly name: "Oregon";
|
|
129
|
+
readonly code: "OR";
|
|
130
|
+
}, {
|
|
131
|
+
readonly name: "Palau";
|
|
132
|
+
readonly code: "PW";
|
|
133
|
+
}, {
|
|
134
|
+
readonly name: "Pennsylvania";
|
|
135
|
+
readonly code: "PA";
|
|
136
|
+
}, {
|
|
137
|
+
readonly name: "Puerto Rico";
|
|
138
|
+
readonly code: "PR";
|
|
139
|
+
}, {
|
|
140
|
+
readonly name: "Rhode Island";
|
|
141
|
+
readonly code: "RI";
|
|
142
|
+
}, {
|
|
143
|
+
readonly name: "South Carolina";
|
|
144
|
+
readonly code: "SC";
|
|
145
|
+
}, {
|
|
146
|
+
readonly name: "South Dakota";
|
|
147
|
+
readonly code: "SD";
|
|
148
|
+
}, {
|
|
149
|
+
readonly name: "Tennessee";
|
|
150
|
+
readonly code: "TN";
|
|
151
|
+
}, {
|
|
152
|
+
readonly name: "Texas";
|
|
153
|
+
readonly code: "TX";
|
|
154
|
+
}, {
|
|
155
|
+
readonly name: "Utah";
|
|
156
|
+
readonly code: "UT";
|
|
157
|
+
}, {
|
|
158
|
+
readonly name: "Vermont";
|
|
159
|
+
readonly code: "VT";
|
|
160
|
+
}, {
|
|
161
|
+
readonly name: "Virgin Islands";
|
|
162
|
+
readonly code: "VI";
|
|
163
|
+
}, {
|
|
164
|
+
readonly name: "Virginia";
|
|
165
|
+
readonly code: "VA";
|
|
166
|
+
}, {
|
|
167
|
+
readonly name: "Washington";
|
|
168
|
+
readonly code: "WA";
|
|
169
|
+
}, {
|
|
170
|
+
readonly name: "West Virginia";
|
|
171
|
+
readonly code: "WV";
|
|
172
|
+
}, {
|
|
173
|
+
readonly name: "Wisconsin";
|
|
174
|
+
readonly code: "WI";
|
|
175
|
+
}, {
|
|
176
|
+
readonly name: "Wyoming";
|
|
177
|
+
readonly code: "WY";
|
|
178
|
+
}];
|
|
179
|
+
export type StateCode = (typeof US_STATES)[number]["code"];
|
|
180
|
+
export interface UsState {
|
|
181
|
+
name: string;
|
|
182
|
+
code: StateCode;
|
|
183
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.US_STATES = void 0;
|
|
4
|
+
const util_ts_1 = require("@clipboard-health/util-ts");
|
|
5
|
+
const RAW_US_STATES = [
|
|
6
|
+
{ name: "Alabama", code: "AL" },
|
|
7
|
+
{ name: "Alaska", code: "AK" },
|
|
8
|
+
{ name: "American Samoa", code: "AS" },
|
|
9
|
+
{ name: "Arizona", code: "AZ" },
|
|
10
|
+
{ name: "Arkansas", code: "AR" },
|
|
11
|
+
{ name: "California", code: "CA" },
|
|
12
|
+
{ name: "Colorado", code: "CO" },
|
|
13
|
+
{ name: "Connecticut", code: "CT" },
|
|
14
|
+
{ name: "Delaware", code: "DE" },
|
|
15
|
+
{ name: "District of Columbia", code: "DC" },
|
|
16
|
+
// Lowercase "of" matches cbh-mobile-app and documents-service-backend; don't "correct" to cbh-admin-frontend's capitalized variant, which is the outlier.
|
|
17
|
+
{ name: "Federated States of Micronesia", code: "FM" },
|
|
18
|
+
{ name: "Florida", code: "FL" },
|
|
19
|
+
{ name: "Georgia", code: "GA" },
|
|
20
|
+
{ name: "Guam", code: "GU" },
|
|
21
|
+
{ name: "Hawaii", code: "HI" },
|
|
22
|
+
{ name: "Idaho", code: "ID" },
|
|
23
|
+
{ name: "Illinois", code: "IL" },
|
|
24
|
+
{ name: "Indiana", code: "IN" },
|
|
25
|
+
{ name: "Iowa", code: "IA" },
|
|
26
|
+
{ name: "Kansas", code: "KS" },
|
|
27
|
+
{ name: "Kentucky", code: "KY" },
|
|
28
|
+
{ name: "Louisiana", code: "LA" },
|
|
29
|
+
{ name: "Maine", code: "ME" },
|
|
30
|
+
{ name: "Marshall Islands", code: "MH" },
|
|
31
|
+
{ name: "Maryland", code: "MD" },
|
|
32
|
+
{ name: "Massachusetts", code: "MA" },
|
|
33
|
+
{ name: "Michigan", code: "MI" },
|
|
34
|
+
{ name: "Minnesota", code: "MN" },
|
|
35
|
+
{ name: "Mississippi", code: "MS" },
|
|
36
|
+
{ name: "Missouri", code: "MO" },
|
|
37
|
+
{ name: "Montana", code: "MT" },
|
|
38
|
+
{ name: "Nebraska", code: "NE" },
|
|
39
|
+
{ name: "Nevada", code: "NV" },
|
|
40
|
+
{ name: "New Hampshire", code: "NH" },
|
|
41
|
+
{ name: "New Jersey", code: "NJ" },
|
|
42
|
+
{ name: "New Mexico", code: "NM" },
|
|
43
|
+
{ name: "New York", code: "NY" },
|
|
44
|
+
{ name: "North Carolina", code: "NC" },
|
|
45
|
+
{ name: "North Dakota", code: "ND" },
|
|
46
|
+
{ name: "Northern Mariana Islands", code: "MP" },
|
|
47
|
+
{ name: "Ohio", code: "OH" },
|
|
48
|
+
{ name: "Oklahoma", code: "OK" },
|
|
49
|
+
{ name: "Oregon", code: "OR" },
|
|
50
|
+
{ name: "Palau", code: "PW" },
|
|
51
|
+
{ name: "Pennsylvania", code: "PA" },
|
|
52
|
+
{ name: "Puerto Rico", code: "PR" },
|
|
53
|
+
{ name: "Rhode Island", code: "RI" },
|
|
54
|
+
{ name: "South Carolina", code: "SC" },
|
|
55
|
+
{ name: "South Dakota", code: "SD" },
|
|
56
|
+
{ name: "Tennessee", code: "TN" },
|
|
57
|
+
{ name: "Texas", code: "TX" },
|
|
58
|
+
{ name: "Utah", code: "UT" },
|
|
59
|
+
{ name: "Vermont", code: "VT" },
|
|
60
|
+
{ name: "Virgin Islands", code: "VI" },
|
|
61
|
+
{ name: "Virginia", code: "VA" },
|
|
62
|
+
{ name: "Washington", code: "WA" },
|
|
63
|
+
{ name: "West Virginia", code: "WV" },
|
|
64
|
+
{ name: "Wisconsin", code: "WI" },
|
|
65
|
+
{ name: "Wyoming", code: "WY" },
|
|
66
|
+
];
|
|
67
|
+
exports.US_STATES = (0, util_ts_1.deepFreeze)(RAW_US_STATES);
|
|
68
|
+
//# sourceMappingURL=usStates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usStates.js","sourceRoot":"","sources":["../../../../../packages/usa-states/src/lib/usStates.ts"],"names":[],"mappings":"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"}
|