Skip to content

Commit ddd110d

Browse files
authored
Geomap: include sample geojson files (grafana#39057)
1 parent 0bb7d50 commit ddd110d

File tree

10 files changed

+376
-24
lines changed

10 files changed

+376
-24
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@
284284
"monaco-promql": "^1.7.2",
285285
"mousetrap": "1.6.5",
286286
"mousetrap-global-bind": "1.1.0",
287-
"ol": "^6.5.0",
287+
"ol": "6.7.0",
288288
"papaparse": "5.3.0",
289289
"pluralize": "^8.0.0",
290290
"prismjs": "1.24.0",

public/app/plugins/panel/geomap/GeomapPanel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class GeomapPanel extends Component<Props, State> {
170170
});
171171
};
172172

173-
pointerMoveListener = (evt: MapBrowserEvent) => {
173+
pointerMoveListener = (evt: MapBrowserEvent<UIEvent>) => {
174174
if (!this.map) {
175175
return;
176176
}

public/app/plugins/panel/geomap/event.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ import { FeatureLike } from 'ol/Feature';
22
import { SimpleGeometry } from 'ol/geom';
33
import { Layer } from 'ol/layer';
44
import { DataHoverPayload } from '@grafana/data';
5+
import { Source } from 'ol/source';
56

67
export interface GeomapHoverFeature {
78
feature: FeatureLike;
8-
layer: Layer;
9+
layer: Layer<Source>;
910
geo: SimpleGeometry;
1011
}
1112

public/app/plugins/panel/geomap/layers/data/geojsonMapper.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface GeoJSONMapperConfig {
1616
}
1717

1818
const defaultOptions: GeoJSONMapperConfig = {
19-
src: 'https://openlayers.org/en/latest/examples/data/geojson/countries.geojson',
19+
src: 'public/maps/countries.geojson',
2020
};
2121

2222
export const geojsonMapper: MapLayerRegistryItem<GeoJSONMapperConfig> = {
@@ -55,6 +55,22 @@ export const geojsonMapper: MapLayerRegistryItem<GeoJSONMapperConfig> = {
5555
};
5656
},
5757

58+
// Geojson source url
59+
registerOptionsUI: (builder) => {
60+
builder.addSelect({
61+
path: 'config.src',
62+
name: 'GeoJSON URL',
63+
settings: {
64+
options: [
65+
{ label: 'public/maps/countries.geojson', value: 'public/maps/countries.geojson' },
66+
{ label: 'public/maps/usa-states.geojson', value: 'public/maps/usa-states.geojson' },
67+
],
68+
allowCustomValue: true,
69+
},
70+
defaultValue: defaultOptions.src,
71+
});
72+
},
73+
5874
// fill in the default values
5975
defaultOptions,
6076
};

public/app/plugins/panel/geomap/layers/data/markersLayer.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
} from '@grafana/data';
99
import Map from 'ol/Map';
1010
import Feature from 'ol/Feature';
11+
import { Point } from 'ol/geom';
1112
import * as layer from 'ol/layer';
1213
import * as source from 'ol/source';
1314

@@ -97,7 +98,7 @@ export const markersLayer: MapLayerRegistryItem<MarkersConfig> = {
9798
return; // ignore empty
9899
}
99100

100-
const features: Feature[] = [];
101+
const features: Feature<Point>[] = [];
101102

102103
for (const frame of data.series) {
103104
const info = dataFrameToPoints(frame, matchers);

public/app/plugins/panel/geomap/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { MapLayerOptions } from '@grafana/data';
2-
import Units from 'ol/proj/Units';
2+
import { Units } from 'ol/proj/Units';
33
import { MapCenterID } from './view';
44

55
export interface ControlsOptions {

public/maps/countries.geojson

+181
Large diffs are not rendered by default.

public/maps/usa-states.geojson

+54
Large diffs are not rendered by default.

scripts/webpack/webpack.common.js

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ module.exports = {
5151
fallback: {
5252
fs: false,
5353
stream: false,
54+
http: false,
55+
https: false,
5456
},
5557
},
5658
ignoreWarnings: [/export .* was not found in/],

yarn.lock

+115-18
Original file line numberDiff line numberDiff line change
@@ -2717,10 +2717,10 @@
27172717
resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234"
27182718
integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=
27192719

2720-
"@mapbox/mapbox-gl-style-spec@^13.14.0":
2721-
version "13.20.1"
2722-
resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-style-spec/-/mapbox-gl-style-spec-13.20.1.tgz#bcf7c42836025a831a76a1e1348ea549c36daf55"
2723-
integrity sha512-xVCJ3IbKoPwcPrxxtGAxUqHEVxXi1hnJtLIFqgkuZfnzj0KeRbk3dZlDr/KNo1/doJjIoFgPFUO/HMOT+wXGPA==
2720+
"@mapbox/mapbox-gl-style-spec@^13.20.1":
2721+
version "13.21.0"
2722+
resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-style-spec/-/mapbox-gl-style-spec-13.21.0.tgz#ab71372aa3f1465408685482448e9d21099c2c6f"
2723+
integrity sha512-qGRAZEHQfhjknjd9eCsNmKclXG5zK62DRdbgUiqAnrdkjjXrFNbs0KFaeyY8RzbdXzKRkwge6nqeKJfjYoD3vw==
27242724
dependencies:
27252725
"@mapbox/jsonlint-lines-primitives" "~2.0.2"
27262726
"@mapbox/point-geometry" "^0.1.0"
@@ -3085,6 +3085,14 @@
30853085
"@opentelemetry/semantic-conventions" "0.23.0"
30863086
lodash.merge "^4.6.2"
30873087

3088+
"@petamoriken/float16@^1.0.7":
3089+
version "1.1.1"
3090+
resolved "https://registry.yarnpkg.com/@petamoriken/float16/-/float16-1.1.1.tgz#faffb09ac1df7c93822687af4d59b6e1faadef9e"
3091+
integrity sha512-0r8nE5Q60tj3FbWWYLjAdGnWZgP7CMWXNaI5UsNzypRyxLDb/uvOl5SDw8GcPNu6pSTOt+KSI+0oL6fhSpNOFQ==
3092+
dependencies:
3093+
lodash ">=4.17.5 <5.0.0"
3094+
lodash-es ">=4.17.5 <5.0.0"
3095+
30883096
"@pmmmwh/react-refresh-webpack-plugin@^0.4.3":
30893097
version "0.4.3"
30903098
resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766"
@@ -7824,7 +7832,7 @@ callsites@^2.0.0:
78247832
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
78257833
integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
78267834

7827-
callsites@^3.0.0:
7835+
callsites@^3.0.0, callsites@^3.1.0:
78287836
version "3.1.0"
78297837
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
78307838
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
@@ -8648,6 +8656,11 @@ [email protected]:
86488656
dependencies:
86498657
safe-buffer "5.1.2"
86508658

8659+
content-type-parser@^1.0.2:
8660+
version "1.0.2"
8661+
resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
8662+
integrity sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ==
8663+
86518664
content-type@~1.0.4:
86528665
version "1.0.4"
86538666
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
@@ -9881,7 +9894,7 @@ [email protected]:
98819894
dependencies:
98829895
ms "^2.1.1"
98839896

9884-
debug@4, [email protected], debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
9897+
debug@4, [email protected], debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1:
98859898
version "4.3.2"
98869899
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
98879900
integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
@@ -11113,6 +11126,11 @@ eslint@^2.7.0:
1111311126
text-table "~0.2.0"
1111411127
user-home "^2.0.0"
1111511128

11129+
esm@^3.2.25:
11130+
version "3.2.25"
11131+
resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
11132+
integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
11133+
1111611134
espree@^3.1.6:
1111711135
version "3.5.4"
1111811136
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
@@ -12188,6 +12206,20 @@ gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2:
1218812206
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1218912207
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1219012208

12209+
geotiff@^1.0.5:
12210+
version "1.0.5"
12211+
resolved "https://registry.yarnpkg.com/geotiff/-/geotiff-1.0.5.tgz#b33b6e20432c1fdccefcd6d1ad12ead5ffbe351e"
12212+
integrity sha512-PK1dA22HJrgSjpDKXCcmihi/3NOTvAwZRV93pDCAI/bu3JYhgealCPMmzRQ6zJ/osfrrd9U4WXl3IHrwA9hqfg==
12213+
dependencies:
12214+
"@petamoriken/float16" "^1.0.7"
12215+
content-type-parser "^1.0.2"
12216+
lerc "^3.0.0"
12217+
lru-cache "^6.0.0"
12218+
pako "^1.0.11"
12219+
parse-headers "^2.0.2"
12220+
threads "^1.3.1"
12221+
txml "^3.1.2"
12222+
1219112223
get-caller-file@^1.0.1:
1219212224
version "1.0.3"
1219312225
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
@@ -14017,6 +14049,11 @@ is-observable@^1.1.0:
1401714049
dependencies:
1401814050
symbol-observable "^1.1.0"
1401914051

14052+
is-observable@^2.1.0:
14053+
version "2.1.0"
14054+
resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-2.1.0.tgz#5c8d733a0b201c80dff7bb7c0df58c6a255c7c69"
14055+
integrity sha512-DailKdLb0WU+xX8K5w7VsJhapwHLZ9jjmazqCJq4X12CTgqq73TKnbRcnSLuXYPOoLQgV5IrD7ePiX/h1vnkBw==
14056+
1402014057
is-path-cwd@^2.2.0:
1402114058
version "2.2.0"
1402214059
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
@@ -15249,6 +15286,11 @@ lcid@^2.0.0:
1524915286
dependencies:
1525015287
invert-kv "^2.0.0"
1525115288

15289+
lerc@^3.0.0:
15290+
version "3.0.0"
15291+
resolved "https://registry.yarnpkg.com/lerc/-/lerc-3.0.0.tgz#36f36fbd4ba46f0abf4833799fff2e7d6865f5cb"
15292+
integrity sha512-Rm4J/WaHhRa93nCN2mwWDZFoRVF18G1f47C+kvQWyHGEZxFpTUi73p7lMVSAndyxGt6lJ2/CFbOcf9ra5p8aww==
15293+
1525215294
lerna@^4.0.0:
1525315295
version "4.0.0"
1525415296
resolved "https://registry.yarnpkg.com/lerna/-/lerna-4.0.0.tgz#b139d685d50ea0ca1be87713a7c2f44a5b678e9e"
@@ -15532,6 +15574,11 @@ locate-path@^6.0.0:
1553215574
dependencies:
1553315575
p-locate "^5.0.0"
1553415576

15577+
"lodash-es@>=4.17.5 <5.0.0":
15578+
version "4.17.21"
15579+
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
15580+
integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
15581+
1553515582
lodash._reinterpolate@^3.0.0:
1553615583
version "3.0.0"
1553715584
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
@@ -15642,7 +15689,7 @@ [email protected], lodash.uniq@^4.5.0:
1564215689
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
1564315690
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
1564415691

15645-
[email protected], lodash@>=4, lodash@^4, lodash@^4.0.0, lodash@^4.1.1, lodash@^4.17.10, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.7.0, lodash@~4.17.10, lodash@~4.17.15, lodash@~4.17.20:
15692+
[email protected], lodash@>=4, "lodash@>=4.17.5 <5.0.0", lodash@^4, lodash@^4.0.0, lodash@^4.1.1, lodash@^4.17.10, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.7.0, lodash@~4.17.10, lodash@~4.17.15, lodash@~4.17.20:
1564615693
version "4.17.21"
1564715694
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1564815695
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -17247,26 +17294,32 @@ objectorarray@^1.0.5:
1724717294
resolved "https://registry.yarnpkg.com/objectorarray/-/objectorarray-1.0.5.tgz#2c05248bbefabd8f43ad13b41085951aac5e68a5"
1724817295
integrity sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==
1724917296

17297+
observable-fns@^0.6.1:
17298+
version "0.6.1"
17299+
resolved "https://registry.yarnpkg.com/observable-fns/-/observable-fns-0.6.1.tgz#636eae4fdd1132e88c0faf38d33658cc79d87e37"
17300+
integrity sha512-9gRK4+sRWzeN6AOewNBTLXir7Zl/i3GB6Yl26gK4flxz8BXVpD3kt8amREmWNb0mxYOGDotvE5a4N+PtGGKdkg==
17301+
1725017302
obuf@^1.0.0, obuf@^1.1.2:
1725117303
version "1.1.2"
1725217304
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
1725317305
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
1725417306

17255-
ol-mapbox-style@^6.1.1:
17256-
version "6.3.2"
17257-
resolved "https://registry.yarnpkg.com/ol-mapbox-style/-/ol-mapbox-style-6.3.2.tgz#5cd1cbb41ecd697d3488fd928976def108a41d3b"
17258-
integrity sha512-itWZuwZHilztRM9983WmJ+ounaXIS0PdXF8h5xJd7cJhSv02M27w4RQkhiUw35/VLlUdTT/ei3KYi0w2TGDw2A==
17307+
ol-mapbox-style@^6.4.1:
17308+
version "6.4.2"
17309+
resolved "https://registry.yarnpkg.com/ol-mapbox-style/-/ol-mapbox-style-6.4.2.tgz#08123df872d43224ef0605ed468edeb1b4517ac9"
17310+
integrity sha512-iQyl5zBC1UiZIB7t4/7NpQruNS2Sk30jKecZuzyTFOksqRSrjVVkPaVmnUOrMAao0bWcOCrcb2zBTb+DQVMfAw==
1725917311
dependencies:
17260-
"@mapbox/mapbox-gl-style-spec" "^13.14.0"
17312+
"@mapbox/mapbox-gl-style-spec" "^13.20.1"
1726117313
mapbox-to-css-font "^2.4.0"
1726217314
webfont-matcher "^1.1.0"
1726317315

17264-
ol@^6.5.0:
17265-
version "6.5.0"
17266-
resolved "https://registry.yarnpkg.com/ol/-/ol-6.5.0.tgz#d9cd59081ac34dc4caf0509c3f667748a8207a21"
17267-
integrity sha512-a5ebahrjF5yCPFle1rc0aHzKp/9A4LlUnjh+S3I+x4EgcvcddDhpOX3WDOs0Pg9/wEElrikHSGEvbeej2Hh4Ug==
17316+
ol@6.7.0:
17317+
version "6.7.0"
17318+
resolved "https://registry.yarnpkg.com/ol/-/ol-6.7.0.tgz#5d85e33c652d2332074a20da2150d246a2260e71"
17319+
integrity sha512-MEdU3MQCT1KUb0Tt2/9oemUze9qi/O+1IsXCWivSaEIzf9sIbYe2UcKwJzjmmrQpe87em+T3gk9SICSF/p3z7Q==
1726817320
dependencies:
17269-
ol-mapbox-style "^6.1.1"
17321+
geotiff "^1.0.5"
17322+
ol-mapbox-style "^6.4.1"
1727017323
pbf "3.2.1"
1727117324
rbush "^3.0.1"
1727217325

@@ -17705,6 +17758,11 @@ pako@^0.2.6:
1770517758
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
1770617759
integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=
1770717760

17761+
pako@^1.0.11:
17762+
version "1.0.11"
17763+
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
17764+
integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
17765+
1770817766
pako@~1.0.5:
1770917767
version "1.0.10"
1771017768
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732"
@@ -17770,6 +17828,11 @@ parse-entities@^2.0.0:
1777017828
is-decimal "^1.0.0"
1777117829
is-hexadecimal "^1.0.0"
1777217830

17831+
parse-headers@^2.0.2:
17832+
version "2.0.4"
17833+
resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.4.tgz#9eaf2d02bed2d1eff494331ce3df36d7924760bf"
17834+
integrity sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw==
17835+
1777317836
parse-json@^4.0.0:
1777417837
version "4.0.0"
1777517838
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
@@ -20485,7 +20548,7 @@ read@1, read@~1.0.1:
2048520548
string_decoder "~1.1.1"
2048620549
util-deprecate "~1.0.1"
2048720550

20488-
readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.0.6:
20551+
"readable-stream@2 || 3", readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.0.6:
2048920552
version "3.6.0"
2049020553
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
2049120554
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
@@ -22933,6 +22996,18 @@ [email protected], text-table@^0.2.0, text-table@~0.2.0:
2293322996
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2293422997
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
2293522998

22999+
threads@^1.3.1:
23000+
version "1.6.5"
23001+
resolved "https://registry.yarnpkg.com/threads/-/threads-1.6.5.tgz#5cee7f139e3e147c5a64f0134844ee92469932a5"
23002+
integrity sha512-yL1NN4qZ25crW8wDoGn7TqbENJ69w3zCEjIGXpbqmQ4I+QHrG8+DLaZVKoX74OQUXWCI2lbbrUxDxAbr1xjDGQ==
23003+
dependencies:
23004+
callsites "^3.1.0"
23005+
debug "^4.2.0"
23006+
is-observable "^2.1.0"
23007+
observable-fns "^0.6.1"
23008+
optionalDependencies:
23009+
tiny-worker ">= 2"
23010+
2293623011
throat@^5.0.0:
2293723012
version "5.0.0"
2293823013
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
@@ -22956,6 +23031,14 @@ through2@^2.0.0:
2295623031
readable-stream "~2.3.6"
2295723032
xtend "~4.0.1"
2295823033

23034+
through2@^3.0.1:
23035+
version "3.0.2"
23036+
resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4"
23037+
integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==
23038+
dependencies:
23039+
inherits "^2.0.4"
23040+
readable-stream "2 || 3"
23041+
2295923042
through2@^4.0.0:
2296023043
version "4.0.2"
2296123044
resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764"
@@ -23010,6 +23093,13 @@ tiny-warning@^1.0.0, tiny-warning@^1.0.3:
2301023093
resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
2301123094
integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
2301223095

23096+
"tiny-worker@>= 2":
23097+
version "2.3.0"
23098+
resolved "https://registry.yarnpkg.com/tiny-worker/-/tiny-worker-2.3.0.tgz#715ae34304c757a9af573ae9a8e3967177e6011e"
23099+
integrity sha512-pJ70wq5EAqTAEl9IkGzA+fN0836rycEuz2Cn6yeZ6FRzlVS5IDOkFHpIoEsksPRQV34GDqXm65+OlnZqUSyK2g==
23100+
dependencies:
23101+
esm "^3.2.25"
23102+
2301323103
2301423104
version "1.4.1"
2301523105
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
@@ -23317,6 +23407,13 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2331723407
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2331823408
integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
2331923409

23410+
txml@^3.1.2:
23411+
version "3.2.5"
23412+
resolved "https://registry.yarnpkg.com/txml/-/txml-3.2.5.tgz#607eeef7e021dba8c6dd173b3971b12443deb9ec"
23413+
integrity sha512-AtN8AgJLiDanttIXJaQlxH8/R0NOCNwto8kcO7BaxdLgsN9b7itM9lnTD7c2O3TadP+hHB9j7ra5XGFRPNnk/g==
23414+
dependencies:
23415+
through2 "^3.0.1"
23416+
2332023417
type-check@^0.4.0, type-check@~0.4.0:
2332123418
version "0.4.0"
2332223419
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"

0 commit comments

Comments
 (0)