@cdc/map 4.26.2 → 4.26.4
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/CONFIG.md +235 -0
- package/README.md +70 -24
- package/dist/cdcmap-CY9IcPSi.es.js +6 -0
- package/dist/cdcmap-DlpiY3fQ.es.js +4 -0
- package/dist/cdcmap.js +31260 -27946
- package/examples/{testing-layer-2.json → __data__/testing-layer-2.json} +1 -1
- package/examples/{testing-layer.json → __data__/testing-layer.json} +1 -1
- package/examples/county-hsa-toggle.json +51993 -0
- package/examples/custom-map-layers.json +2 -2
- package/examples/default-county.json +3 -3
- package/examples/minimal-example.json +69 -0
- package/examples/private/annotation-bug.json +642 -0
- package/examples/private/css-issue.json +314 -0
- package/examples/private/region-breaking.json +1639 -0
- package/examples/private/test1.json +27247 -0
- package/package.json +4 -4
- package/src/CdcMap.tsx +3 -14
- package/src/CdcMapComponent.tsx +302 -164
- package/src/_stories/CdcMap.Defaults.smoke.stories.tsx +76 -0
- package/src/_stories/CdcMap.Editor.ColumnsSectionTests.stories.tsx +601 -0
- package/src/_stories/CdcMap.Editor.DataTableSectionTests.stories.tsx +404 -0
- package/src/_stories/CdcMap.Editor.FiltersSectionTests.stories.tsx +229 -0
- package/src/_stories/CdcMap.Editor.GeneralSectionTests.stories.tsx +262 -0
- package/src/_stories/CdcMap.Editor.LegendSectionTests.stories.tsx +541 -0
- package/src/_stories/CdcMap.Editor.MultiCountryWorldMapTests.stories.tsx +359 -0
- package/src/_stories/CdcMap.Editor.PatternSettingsSectionTests.stories.tsx +516 -0
- package/src/_stories/CdcMap.Editor.SmallMultiplesSectionTests.stories.tsx +165 -0
- package/src/_stories/CdcMap.Editor.TextAnnotationsSectionTests.stories.tsx +145 -0
- package/src/_stories/CdcMap.Editor.TypeSectionTests.stories.tsx +312 -0
- package/src/_stories/CdcMap.Editor.VisualSectionTests.stories.tsx +359 -0
- package/src/_stories/CdcMap.Editor.ZoomControlsTests.stories.tsx +88 -0
- package/src/_stories/{CdcMap.stories.tsx → CdcMap.smoke.stories.tsx} +23 -1
- package/src/_stories/Map.HTMLInDataTable.stories.tsx +385 -0
- package/src/_stories/_mock/legends/legend-tests.json +3 -3
- package/src/_stories/_mock/multi-state-show-unselected.json +82 -0
- package/src/cdcMapComponent.styles.css +2 -2
- package/src/components/Annotation/Annotation.Draggable.styles.css +4 -4
- package/src/components/Annotation/AnnotationDropdown.styles.css +1 -1
- package/src/components/Annotation/AnnotationList.styles.css +13 -13
- package/src/components/Annotation/AnnotationList.tsx +1 -1
- package/src/components/EditorPanel/components/EditorPanel.tsx +905 -416
- package/src/components/EditorPanel/components/HexShapeSettings.tsx +1 -1
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +112 -117
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings-style.css +1 -1
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +31 -15
- package/src/components/EditorPanel/components/editorPanel.styles.css +55 -25
- package/src/components/Legend/components/Legend.tsx +12 -7
- package/src/components/Legend/components/LegendGroup/legend.group.css +5 -5
- package/src/components/Legend/components/LegendItem.Hex.tsx +4 -2
- package/src/components/Legend/components/index.scss +2 -3
- package/src/components/NavigationMenu.tsx +2 -1
- package/src/components/SmallMultiples/SmallMultiples.css +5 -5
- package/src/components/SmallMultiples/SynchronizedTooltip.tsx +1 -1
- package/src/components/UsaMap/components/SingleState/SingleState.StateOutput.tsx +32 -17
- package/src/components/UsaMap/components/TerritoriesSection.tsx +3 -2
- package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +13 -8
- package/src/components/UsaMap/components/UsaMap.County.tsx +629 -231
- package/src/components/UsaMap/components/UsaMap.Region.styles.css +1 -1
- package/src/components/UsaMap/components/UsaMap.SingleState.styles.css +2 -2
- package/src/components/UsaMap/components/UsaMap.State.tsx +14 -9
- package/src/components/UsaMap/data/cb_2019_us_county_20m.json +75817 -1
- package/src/components/UsaMap/data/hsa_fips_mapping.json +3144 -0
- package/src/components/WorldMap/WorldMap.tsx +10 -13
- package/src/components/WorldMap/data/world-topo-updated.json +1 -0
- package/src/components/WorldMap/data/world-topo.json +1 -1
- package/src/components/WorldMap/worldMap.styles.css +1 -1
- package/src/components/ZoomControls.tsx +49 -18
- package/src/components/zoomControls.styles.css +27 -11
- package/src/data/initial-state.js +15 -5
- package/src/data/legacy-defaults.ts +8 -0
- package/src/data/supported-counties.json +1 -1
- package/src/data/supported-geos.js +19 -0
- package/src/helpers/colors.ts +2 -1
- package/src/helpers/countyTerritories.ts +38 -0
- package/src/helpers/dataTableHelpers.ts +85 -0
- package/src/helpers/displayGeoName.ts +19 -11
- package/src/helpers/getMapContainerClasses.ts +8 -2
- package/src/helpers/getMatchingPatternForRow.ts +67 -0
- package/src/helpers/getPatternForRow.ts +11 -18
- package/src/helpers/tests/countyTerritories.test.ts +87 -0
- package/src/helpers/tests/dataTableHelpers.test.ts +78 -0
- package/src/helpers/tests/displayGeoName.test.ts +17 -0
- package/src/helpers/tests/getMatchingPatternForRow.test.ts +150 -0
- package/src/helpers/tests/getPatternForRow.test.ts +140 -2
- package/src/helpers/urlDataHelpers.ts +7 -1
- package/src/hooks/useApplyTooltipsToGeo.tsx +7 -4
- package/src/hooks/useMapLayers.tsx +1 -1
- package/src/hooks/useResizeObserver.ts +36 -22
- package/src/hooks/useTooltip.test.tsx +64 -0
- package/src/hooks/useTooltip.ts +46 -15
- package/src/scss/editor-panel.scss +1 -1
- package/src/scss/main.scss +140 -6
- package/src/scss/map.scss +9 -4
- package/src/store/map.actions.ts +5 -0
- package/src/store/map.reducer.ts +13 -0
- package/src/test/CdcMap.test.jsx +26 -2
- package/src/types/MapConfig.ts +28 -4
- package/src/types/MapContext.ts +5 -1
- package/topojson-updater/README.txt +1 -1
- package/dist/cdcmap-Cf9_fbQf.es.js +0 -6
- package/examples/__data__/city-state-data.json +0 -668
- package/examples/city-state.json +0 -434
- package/examples/default-world-data.json +0 -1450
- package/examples/new-cities.json +0 -656
- package/src/_stories/CdcMap.Editor.stories.tsx +0 -3475
- package/src/helpers/componentHelpers.ts +0 -8
- package/topojson-updater/package-lock.json +0 -223
- /package/src/_stories/{CdcMap.ColumnWrap.stories.tsx → CdcMap.ColumnWrap.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.DistrictOfColumbia.stories.tsx → CdcMap.DistrictOfColumbia.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.Filters.stories.tsx → CdcMap.Filters.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.Legend.Gradient.stories.tsx → CdcMap.Legend.Gradient.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.Legend.stories.tsx → CdcMap.Legend.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.Patterns.stories.tsx → CdcMap.Patterns.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.SmallMultiples.stories.tsx → CdcMap.SmallMultiples.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.Table.stories.tsx → CdcMap.Table.smoke.stories.tsx} +0 -0
- /package/src/_stories/{CdcMap.ZeroColor.stories.tsx → CdcMap.ZeroColor.smoke.stories.tsx} +0 -0
- /package/src/_stories/{GoogleMap.stories.tsx → GoogleMap.smoke.stories.tsx} +0 -0
- /package/src/_stories/{UsaMap.NoData.stories.tsx → UsaMap.NoData.smoke.stories.tsx} +0 -0
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Builds CSS class names for the main map section container
|
|
3
|
-
*/
|
|
4
|
-
export const buildSectionClassNames = (viewport: string, headerColor: string, hasError: boolean): string => {
|
|
5
|
-
const classes = ['cove-component__content', 'cdc-map-inner-container', viewport, headerColor]
|
|
6
|
-
if (hasError) classes.push('type-map--has-error')
|
|
7
|
-
return classes.join(' ')
|
|
8
|
-
}
|
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "topojson-updater",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"lockfileVersion": 2,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "topojson-updater",
|
|
9
|
-
"version": "0.0.1",
|
|
10
|
-
"license": "Apache-2.0",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"shapefile": "^0.6.6",
|
|
13
|
-
"topojson": "^3.0.2"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"node_modules/array-source": {
|
|
17
|
-
"version": "0.0.4",
|
|
18
|
-
"resolved": "https://registry.npmjs.org/array-source/-/array-source-0.0.4.tgz",
|
|
19
|
-
"integrity": "sha512-frNdc+zBn80vipY+GdcJkLEbMWj3xmzArYApmUGxoiV8uAu/ygcs9icPdsGdA26h0MkHUMW6EN2piIvVx+M5Mw=="
|
|
20
|
-
},
|
|
21
|
-
"node_modules/commander": {
|
|
22
|
-
"version": "2.20.3",
|
|
23
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
|
24
|
-
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
|
|
25
|
-
},
|
|
26
|
-
"node_modules/file-source": {
|
|
27
|
-
"version": "0.6.1",
|
|
28
|
-
"resolved": "https://registry.npmjs.org/file-source/-/file-source-0.6.1.tgz",
|
|
29
|
-
"integrity": "sha512-1R1KneL7eTXmXfKxC10V/9NeGOdbsAXJ+lQ//fvvcHUgtaZcZDWNJNblxAoVOyV1cj45pOtUrR3vZTBwqcW8XA==",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"stream-source": "0.3"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"node_modules/path-source": {
|
|
35
|
-
"version": "0.1.3",
|
|
36
|
-
"resolved": "https://registry.npmjs.org/path-source/-/path-source-0.1.3.tgz",
|
|
37
|
-
"integrity": "sha512-dWRHm5mIw5kw0cs3QZLNmpUWty48f5+5v9nWD2dw3Y0Hf+s01Ag8iJEWV0Sm0kocE8kK27DrIowha03e1YR+Qw==",
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"array-source": "0.0",
|
|
40
|
-
"file-source": "0.6"
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"node_modules/shapefile": {
|
|
44
|
-
"version": "0.6.6",
|
|
45
|
-
"resolved": "https://registry.npmjs.org/shapefile/-/shapefile-0.6.6.tgz",
|
|
46
|
-
"integrity": "sha512-rLGSWeK2ufzCVx05wYd+xrWnOOdSV7xNUW5/XFgx3Bc02hBkpMlrd2F1dDII7/jhWzv0MSyBFh5uJIy9hLdfuw==",
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"array-source": "0.0",
|
|
49
|
-
"commander": "2",
|
|
50
|
-
"path-source": "0.1",
|
|
51
|
-
"slice-source": "0.4",
|
|
52
|
-
"stream-source": "0.3",
|
|
53
|
-
"text-encoding": "^0.6.4"
|
|
54
|
-
},
|
|
55
|
-
"bin": {
|
|
56
|
-
"dbf2json": "bin/dbf2json",
|
|
57
|
-
"shp2json": "bin/shp2json"
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"node_modules/slice-source": {
|
|
61
|
-
"version": "0.4.1",
|
|
62
|
-
"resolved": "https://registry.npmjs.org/slice-source/-/slice-source-0.4.1.tgz",
|
|
63
|
-
"integrity": "sha512-YiuPbxpCj4hD9Qs06hGAz/OZhQ0eDuALN0lRWJez0eD/RevzKqGdUx1IOMUnXgpr+sXZLq3g8ERwbAH0bCb8vg=="
|
|
64
|
-
},
|
|
65
|
-
"node_modules/stream-source": {
|
|
66
|
-
"version": "0.3.5",
|
|
67
|
-
"resolved": "https://registry.npmjs.org/stream-source/-/stream-source-0.3.5.tgz",
|
|
68
|
-
"integrity": "sha512-ZuEDP9sgjiAwUVoDModftG0JtYiLUV8K4ljYD1VyUMRWtbVf92474o4kuuul43iZ8t/hRuiDAx1dIJSvirrK/g=="
|
|
69
|
-
},
|
|
70
|
-
"node_modules/text-encoding": {
|
|
71
|
-
"version": "0.6.4",
|
|
72
|
-
"resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.6.4.tgz",
|
|
73
|
-
"integrity": "sha512-hJnc6Qg3dWoOMkqP53F0dzRIgtmsAge09kxUIqGrEUS4qr5rWLckGYaQAVr+opBrIMRErGgy6f5aPnyPpyGRfg==",
|
|
74
|
-
"deprecated": "no longer maintained"
|
|
75
|
-
},
|
|
76
|
-
"node_modules/topojson": {
|
|
77
|
-
"version": "3.0.2",
|
|
78
|
-
"resolved": "https://registry.npmjs.org/topojson/-/topojson-3.0.2.tgz",
|
|
79
|
-
"integrity": "sha512-u3zeuL6WEVL0dmsRn7uHZKc4Ao4gpW3sORUv+N3ezLTvY3JdCuyg0hvpWiIfFw8p/JwVN++SvAsFgcFEeR15rQ==",
|
|
80
|
-
"deprecated": "Use topojson-client, topojson-server or topojson-simplify directly.",
|
|
81
|
-
"dependencies": {
|
|
82
|
-
"topojson-client": "3.0.0",
|
|
83
|
-
"topojson-server": "3.0.0",
|
|
84
|
-
"topojson-simplify": "3.0.2"
|
|
85
|
-
},
|
|
86
|
-
"bin": {
|
|
87
|
-
"geo2topo": "node_modules/topojson-server/bin/geo2topo",
|
|
88
|
-
"topo2geo": "node_modules/topojson-client/bin/topo2geo",
|
|
89
|
-
"topomerge": "node_modules/topojson-client/bin/topomerge",
|
|
90
|
-
"topoquantize": "node_modules/topojson-client/bin/topoquantize",
|
|
91
|
-
"toposimplify": "node_modules/topojson-simplify/bin/toposimplify"
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
"node_modules/topojson-client": {
|
|
95
|
-
"version": "3.0.0",
|
|
96
|
-
"resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.0.tgz",
|
|
97
|
-
"integrity": "sha512-2phZ98wg/iKvsWxbB6JQcq0/N0f+sRx8ZogdvjCg+CjaJdmV0knP0OQwK5XbgnytAPx5lPZk41kiWpgH2w9FHg==",
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"commander": "2"
|
|
100
|
-
},
|
|
101
|
-
"bin": {
|
|
102
|
-
"topo2geo": "bin/topo2geo",
|
|
103
|
-
"topomerge": "bin/topomerge",
|
|
104
|
-
"topoquantize": "bin/topoquantize"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"node_modules/topojson-server": {
|
|
108
|
-
"version": "3.0.0",
|
|
109
|
-
"resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.0.tgz",
|
|
110
|
-
"integrity": "sha512-UhhwQk4e2+lwhAVYkja3J5nQHQmKwORDuIQPkMnFFZFcLqWKLQWI3u7fZWtNIXTElBjTYdBUL1kzi1+oS/qDQw==",
|
|
111
|
-
"dependencies": {
|
|
112
|
-
"commander": "2"
|
|
113
|
-
},
|
|
114
|
-
"bin": {
|
|
115
|
-
"geo2topo": "bin/geo2topo"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"node_modules/topojson-simplify": {
|
|
119
|
-
"version": "3.0.2",
|
|
120
|
-
"resolved": "https://registry.npmjs.org/topojson-simplify/-/topojson-simplify-3.0.2.tgz",
|
|
121
|
-
"integrity": "sha512-gyYSVRt4jO/0RJXKZQPzTDQRWV+D/nOfiljNUv0HBXslFLtq3yxRHrl7jbrjdbda5Ytdr7M8BZUI4OxU7tnbRQ==",
|
|
122
|
-
"dependencies": {
|
|
123
|
-
"commander": "2",
|
|
124
|
-
"topojson-client": "3"
|
|
125
|
-
},
|
|
126
|
-
"bin": {
|
|
127
|
-
"toposimplify": "bin/toposimplify"
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
"dependencies": {
|
|
132
|
-
"array-source": {
|
|
133
|
-
"version": "0.0.4",
|
|
134
|
-
"resolved": "https://registry.npmjs.org/array-source/-/array-source-0.0.4.tgz",
|
|
135
|
-
"integrity": "sha512-frNdc+zBn80vipY+GdcJkLEbMWj3xmzArYApmUGxoiV8uAu/ygcs9icPdsGdA26h0MkHUMW6EN2piIvVx+M5Mw=="
|
|
136
|
-
},
|
|
137
|
-
"commander": {
|
|
138
|
-
"version": "2.20.3",
|
|
139
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
|
140
|
-
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
|
|
141
|
-
},
|
|
142
|
-
"file-source": {
|
|
143
|
-
"version": "0.6.1",
|
|
144
|
-
"resolved": "https://registry.npmjs.org/file-source/-/file-source-0.6.1.tgz",
|
|
145
|
-
"integrity": "sha512-1R1KneL7eTXmXfKxC10V/9NeGOdbsAXJ+lQ//fvvcHUgtaZcZDWNJNblxAoVOyV1cj45pOtUrR3vZTBwqcW8XA==",
|
|
146
|
-
"requires": {
|
|
147
|
-
"stream-source": "0.3"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"path-source": {
|
|
151
|
-
"version": "0.1.3",
|
|
152
|
-
"resolved": "https://registry.npmjs.org/path-source/-/path-source-0.1.3.tgz",
|
|
153
|
-
"integrity": "sha512-dWRHm5mIw5kw0cs3QZLNmpUWty48f5+5v9nWD2dw3Y0Hf+s01Ag8iJEWV0Sm0kocE8kK27DrIowha03e1YR+Qw==",
|
|
154
|
-
"requires": {
|
|
155
|
-
"array-source": "0.0",
|
|
156
|
-
"file-source": "0.6"
|
|
157
|
-
}
|
|
158
|
-
},
|
|
159
|
-
"shapefile": {
|
|
160
|
-
"version": "0.6.6",
|
|
161
|
-
"resolved": "https://registry.npmjs.org/shapefile/-/shapefile-0.6.6.tgz",
|
|
162
|
-
"integrity": "sha512-rLGSWeK2ufzCVx05wYd+xrWnOOdSV7xNUW5/XFgx3Bc02hBkpMlrd2F1dDII7/jhWzv0MSyBFh5uJIy9hLdfuw==",
|
|
163
|
-
"requires": {
|
|
164
|
-
"array-source": "0.0",
|
|
165
|
-
"commander": "2",
|
|
166
|
-
"path-source": "0.1",
|
|
167
|
-
"slice-source": "0.4",
|
|
168
|
-
"stream-source": "0.3",
|
|
169
|
-
"text-encoding": "^0.6.4"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"slice-source": {
|
|
173
|
-
"version": "0.4.1",
|
|
174
|
-
"resolved": "https://registry.npmjs.org/slice-source/-/slice-source-0.4.1.tgz",
|
|
175
|
-
"integrity": "sha512-YiuPbxpCj4hD9Qs06hGAz/OZhQ0eDuALN0lRWJez0eD/RevzKqGdUx1IOMUnXgpr+sXZLq3g8ERwbAH0bCb8vg=="
|
|
176
|
-
},
|
|
177
|
-
"stream-source": {
|
|
178
|
-
"version": "0.3.5",
|
|
179
|
-
"resolved": "https://registry.npmjs.org/stream-source/-/stream-source-0.3.5.tgz",
|
|
180
|
-
"integrity": "sha512-ZuEDP9sgjiAwUVoDModftG0JtYiLUV8K4ljYD1VyUMRWtbVf92474o4kuuul43iZ8t/hRuiDAx1dIJSvirrK/g=="
|
|
181
|
-
},
|
|
182
|
-
"text-encoding": {
|
|
183
|
-
"version": "0.6.4",
|
|
184
|
-
"resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.6.4.tgz",
|
|
185
|
-
"integrity": "sha512-hJnc6Qg3dWoOMkqP53F0dzRIgtmsAge09kxUIqGrEUS4qr5rWLckGYaQAVr+opBrIMRErGgy6f5aPnyPpyGRfg=="
|
|
186
|
-
},
|
|
187
|
-
"topojson": {
|
|
188
|
-
"version": "3.0.2",
|
|
189
|
-
"resolved": "https://registry.npmjs.org/topojson/-/topojson-3.0.2.tgz",
|
|
190
|
-
"integrity": "sha512-u3zeuL6WEVL0dmsRn7uHZKc4Ao4gpW3sORUv+N3ezLTvY3JdCuyg0hvpWiIfFw8p/JwVN++SvAsFgcFEeR15rQ==",
|
|
191
|
-
"requires": {
|
|
192
|
-
"topojson-client": "3.0.0",
|
|
193
|
-
"topojson-server": "3.0.0",
|
|
194
|
-
"topojson-simplify": "3.0.2"
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"topojson-client": {
|
|
198
|
-
"version": "3.0.0",
|
|
199
|
-
"resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.0.tgz",
|
|
200
|
-
"integrity": "sha512-2phZ98wg/iKvsWxbB6JQcq0/N0f+sRx8ZogdvjCg+CjaJdmV0knP0OQwK5XbgnytAPx5lPZk41kiWpgH2w9FHg==",
|
|
201
|
-
"requires": {
|
|
202
|
-
"commander": "2"
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
"topojson-server": {
|
|
206
|
-
"version": "3.0.0",
|
|
207
|
-
"resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.0.tgz",
|
|
208
|
-
"integrity": "sha512-UhhwQk4e2+lwhAVYkja3J5nQHQmKwORDuIQPkMnFFZFcLqWKLQWI3u7fZWtNIXTElBjTYdBUL1kzi1+oS/qDQw==",
|
|
209
|
-
"requires": {
|
|
210
|
-
"commander": "2"
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"topojson-simplify": {
|
|
214
|
-
"version": "3.0.2",
|
|
215
|
-
"resolved": "https://registry.npmjs.org/topojson-simplify/-/topojson-simplify-3.0.2.tgz",
|
|
216
|
-
"integrity": "sha512-gyYSVRt4jO/0RJXKZQPzTDQRWV+D/nOfiljNUv0HBXslFLtq3yxRHrl7jbrjdbda5Ytdr7M8BZUI4OxU7tnbRQ==",
|
|
217
|
-
"requires": {
|
|
218
|
-
"commander": "2",
|
|
219
|
-
"topojson-client": "3"
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/_stories/{CdcMap.SmallMultiples.stories.tsx → CdcMap.SmallMultiples.smoke.stories.tsx}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|