@contember/react-utils 1.1.0-alpha.13 → 1.1.0-alpha.15

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.
Files changed (68) hide show
  1. package/dist/development/hooks/useAbortController.js +3 -1
  2. package/dist/development/hooks/useAbortController.js.map +1 -1
  3. package/dist/development/hooks/useArrayMapMemo.js +3 -1
  4. package/dist/development/hooks/useArrayMapMemo.js.map +1 -1
  5. package/dist/development/hooks/useConstantLengthInvariant.js +6 -2
  6. package/dist/development/hooks/useConstantLengthInvariant.js.map +1 -1
  7. package/dist/development/hooks/useConstantValueInvariant.js +6 -2
  8. package/dist/development/hooks/useConstantValueInvariant.js.map +1 -1
  9. package/dist/development/hooks/useDebounce.js +3 -1
  10. package/dist/development/hooks/useDebounce.js.map +1 -1
  11. package/dist/development/hooks/useForceRender.js +3 -1
  12. package/dist/development/hooks/useForceRender.js.map +1 -1
  13. package/dist/development/hooks/useIsMounted.js +9 -4
  14. package/dist/development/hooks/useIsMounted.js.map +1 -1
  15. package/dist/development/hooks/useObjectMemo.js +3 -1
  16. package/dist/development/hooks/useObjectMemo.js.map +1 -1
  17. package/dist/development/hooks/usePreviousValue.js +3 -1
  18. package/dist/development/hooks/usePreviousValue.js.map +1 -1
  19. package/dist/development/hooks/useStoredState.js +3 -1
  20. package/dist/development/hooks/useStoredState.js.map +1 -1
  21. package/dist/development/index.js +34 -16
  22. package/dist/development/referentiallyStable/emptyArray.js +3 -1
  23. package/dist/development/referentiallyStable/emptyArray.js.map +1 -1
  24. package/dist/development/referentiallyStable/emptyObject.js +3 -1
  25. package/dist/development/referentiallyStable/emptyObject.js.map +1 -1
  26. package/dist/development/referentiallyStable/identityFunction.js +3 -1
  27. package/dist/development/referentiallyStable/identityFunction.js.map +1 -1
  28. package/dist/development/referentiallyStable/noop.js +3 -1
  29. package/dist/development/referentiallyStable/noop.js.map +1 -1
  30. package/dist/development/referentiallyStable/returnFalse.js +3 -1
  31. package/dist/development/referentiallyStable/returnFalse.js.map +1 -1
  32. package/dist/development/referentiallyStable/returnTrue.js +3 -1
  33. package/dist/development/referentiallyStable/returnTrue.js.map +1 -1
  34. package/dist/production/hooks/useAbortController.js +3 -1
  35. package/dist/production/hooks/useAbortController.js.map +1 -1
  36. package/dist/production/hooks/useArrayMapMemo.js +3 -1
  37. package/dist/production/hooks/useArrayMapMemo.js.map +1 -1
  38. package/dist/production/hooks/useConstantLengthInvariant.js +3 -1
  39. package/dist/production/hooks/useConstantLengthInvariant.js.map +1 -1
  40. package/dist/production/hooks/useConstantValueInvariant.js +3 -1
  41. package/dist/production/hooks/useConstantValueInvariant.js.map +1 -1
  42. package/dist/production/hooks/useDebounce.js +3 -1
  43. package/dist/production/hooks/useDebounce.js.map +1 -1
  44. package/dist/production/hooks/useForceRender.js +3 -1
  45. package/dist/production/hooks/useForceRender.js.map +1 -1
  46. package/dist/production/hooks/useIsMounted.js +9 -4
  47. package/dist/production/hooks/useIsMounted.js.map +1 -1
  48. package/dist/production/hooks/useObjectMemo.js +3 -1
  49. package/dist/production/hooks/useObjectMemo.js.map +1 -1
  50. package/dist/production/hooks/usePreviousValue.js +3 -1
  51. package/dist/production/hooks/usePreviousValue.js.map +1 -1
  52. package/dist/production/hooks/useStoredState.js +3 -1
  53. package/dist/production/hooks/useStoredState.js.map +1 -1
  54. package/dist/production/index.js +34 -16
  55. package/dist/production/referentiallyStable/emptyArray.js +3 -1
  56. package/dist/production/referentiallyStable/emptyArray.js.map +1 -1
  57. package/dist/production/referentiallyStable/emptyObject.js +3 -1
  58. package/dist/production/referentiallyStable/emptyObject.js.map +1 -1
  59. package/dist/production/referentiallyStable/identityFunction.js +3 -1
  60. package/dist/production/referentiallyStable/identityFunction.js.map +1 -1
  61. package/dist/production/referentiallyStable/noop.js +3 -1
  62. package/dist/production/referentiallyStable/noop.js.map +1 -1
  63. package/dist/production/referentiallyStable/returnFalse.js +3 -1
  64. package/dist/production/referentiallyStable/returnFalse.js.map +1 -1
  65. package/dist/production/referentiallyStable/returnTrue.js +3 -1
  66. package/dist/production/referentiallyStable/returnTrue.js.map +1 -1
  67. package/dist/types/tsconfig.tsbuildinfo +1 -1
  68. package/package.json +1 -1
@@ -11,5 +11,7 @@ const useAbortController = () => {
11
11
  return newController.signal;
12
12
  }, []);
13
13
  };
14
- export { useAbortController };
14
+ export {
15
+ useAbortController
16
+ };
15
17
  //# sourceMappingURL=useAbortController.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useAbortController.js","sources":["../../../src/hooks/useAbortController.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useAbortController = () => {\n\tconst lastAbortControllerRef = useRef<AbortController | undefined>(undefined)\n\tuseEffect(() => () => {\n\t\tlastAbortControllerRef.current?.abort()\n\t}, [])\n\treturn useCallback((): AbortSignal => {\n\t\tlastAbortControllerRef.current?.abort()\n\n\t\tconst newController = new AbortController()\n\t\tlastAbortControllerRef.current = newController\n\t\treturn newController.signal\n\t}, [])\n}\n"],"names":[],"mappings":";AAEO,MAAM,qBAAqB,MAAM;AACjC,QAAA,yBAAyB,OAAoC,MAAS;AAC5E,YAAU,MAAM,MAAM;AACrB,2BAAuB,SAAS;EACjC,GAAG,CAAE,CAAA;AACL,SAAO,YAAY,MAAmB;AACrC,2BAAuB,SAAS;AAE1B,UAAA,gBAAgB,IAAI;AAC1B,2BAAuB,UAAU;AACjC,WAAO,cAAc;AAAA,EACtB,GAAG,CAAE,CAAA;AACN;;"}
1
+ {"version":3,"file":"useAbortController.js","sources":["../../../src/hooks/useAbortController.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useAbortController = () => {\n\tconst lastAbortControllerRef = useRef<AbortController | undefined>(undefined)\n\tuseEffect(() => () => {\n\t\tlastAbortControllerRef.current?.abort()\n\t}, [])\n\treturn useCallback((): AbortSignal => {\n\t\tlastAbortControllerRef.current?.abort()\n\n\t\tconst newController = new AbortController()\n\t\tlastAbortControllerRef.current = newController\n\t\treturn newController.signal\n\t}, [])\n}\n"],"names":[],"mappings":";AAEO,MAAM,qBAAqB,MAAM;AACjC,QAAA,yBAAyB,OAAoC,MAAS;AAC5E,YAAU,MAAM,MAAM;AACrB,2BAAuB,SAAS;EACjC,GAAG,CAAE,CAAA;AACL,SAAO,YAAY,MAAmB;AACrC,2BAAuB,SAAS;AAE1B,UAAA,gBAAgB,IAAI;AAC1B,2BAAuB,UAAU;AACjC,WAAO,cAAc;AAAA,EACtB,GAAG,CAAE,CAAA;AACN;"}
@@ -5,5 +5,7 @@ const useArrayMapMemo = (items, map) => {
5
5
  const mapped = useMemo(() => items.map(map), [map, ...items]);
6
6
  return useMemo(() => mapped, mapped);
7
7
  };
8
- export { useArrayMapMemo };
8
+ export {
9
+ useArrayMapMemo
10
+ };
9
11
  //# sourceMappingURL=useArrayMapMemo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useArrayMapMemo.js","sources":["../../../src/hooks/useArrayMapMemo.ts"],"sourcesContent":["import { useMemo } from 'react'\nimport { useConstantLengthInvariant } from './useConstantLengthInvariant'\n\n/**\n * ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️\n * ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠\n *\n * This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents\n * of the original array, and not its referential equality. That way, if we create a new array with identical items,\n * we get an array that is referentially equal to the previous one.\n */\nexport const useArrayMapMemo = <Item, OutputItem>(\n\titems: Item[],\n\tmap: (value: Item, index: number, array: Item[]) => OutputItem,\n): OutputItem[] => {\n\tuseConstantLengthInvariant(items)\n\n\t// This is tricky. We don't want to exclude the map function from the dependency list because if it changes but the\n\t// items array remains the same, we still want to re-compute the new array. However, if that yields the same array,\n\t// in the sense that the items are identical, albeit computed via a different map function, we still want to\n\t// preserve the referential equality of the original. Hence the second memo.\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\tconst mapped = useMemo(() => items.map(map), [map, ...items])\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\treturn useMemo(() => mapped, mapped) // This is deliberately not `[mapped]`\n}\n"],"names":[],"mappings":";;AAWa,MAAA,kBAAkB,CAC9B,OACA,QACkB;AAClB,6BAA2B,KAAK;AAQ1B,QAAA,SAAS,QAAQ,MAAM,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC;AAGrD,SAAA,QAAQ,MAAM,QAAQ,MAAM;AACpC;;"}
1
+ {"version":3,"file":"useArrayMapMemo.js","sources":["../../../src/hooks/useArrayMapMemo.ts"],"sourcesContent":["import { useMemo } from 'react'\nimport { useConstantLengthInvariant } from './useConstantLengthInvariant'\n\n/**\n * ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️\n * ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠\n *\n * This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents\n * of the original array, and not its referential equality. That way, if we create a new array with identical items,\n * we get an array that is referentially equal to the previous one.\n */\nexport const useArrayMapMemo = <Item, OutputItem>(\n\titems: Item[],\n\tmap: (value: Item, index: number, array: Item[]) => OutputItem,\n): OutputItem[] => {\n\tuseConstantLengthInvariant(items)\n\n\t// This is tricky. We don't want to exclude the map function from the dependency list because if it changes but the\n\t// items array remains the same, we still want to re-compute the new array. However, if that yields the same array,\n\t// in the sense that the items are identical, albeit computed via a different map function, we still want to\n\t// preserve the referential equality of the original. Hence the second memo.\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\tconst mapped = useMemo(() => items.map(map), [map, ...items])\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\treturn useMemo(() => mapped, mapped) // This is deliberately not `[mapped]`\n}\n"],"names":[],"mappings":";;AAWa,MAAA,kBAAkB,CAC9B,OACA,QACkB;AAClB,6BAA2B,KAAK;AAQ1B,QAAA,SAAS,QAAQ,MAAM,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC;AAGrD,SAAA,QAAQ,MAAM,QAAQ,MAAM;AACpC;"}
@@ -3,9 +3,13 @@ const useConstantLengthInvariant = (items, message) => {
3
3
  {
4
4
  const previous = usePreviousValue(items);
5
5
  if (previous.length !== items.length) {
6
- throw new Error(`Invariant violation: ${message || "Changing the length of an array whose length must remain constant between renders."}`);
6
+ throw new Error(
7
+ `Invariant violation: ${message || "Changing the length of an array whose length must remain constant between renders."}`
8
+ );
7
9
  }
8
10
  }
9
11
  };
10
- export { useConstantLengthInvariant };
12
+ export {
13
+ useConstantLengthInvariant
14
+ };
11
15
  //# sourceMappingURL=useConstantLengthInvariant.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item extends unknown>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${\n\t\t\t\t\tmessage || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,6BAA6B,CAAuB,OAAe,YAAqB;AAC3E;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACnC,QAAA,SAAS,WAAW,MAAM,QAAQ;AACrC,YAAM,IAAI,MACT,wBACC,WAAW,sFAEb;AAAA,IACD;AAAA,EACD;AACD;;"}
1
+ {"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item extends unknown>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${\n\t\t\t\t\tmessage || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,6BAA6B,CAAuB,OAAe,YAAqB;AAC3E;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACnC,QAAA,SAAS,WAAW,MAAM,QAAQ;AACrC,YAAM,IAAI;AAAA,QACT,wBACC,WAAW;AAAA,MAAA;AAAA,IAGd;AAAA,EACD;AACD;"}
@@ -3,9 +3,13 @@ const useConstantValueInvariant = (value, message) => {
3
3
  {
4
4
  const previous = usePreviousValue(value);
5
5
  if (previous !== value) {
6
- throw new Error(`Invariant violation: ${message || "Changing a value which must remain constant between renders."}`);
6
+ throw new Error(
7
+ `Invariant violation: ${message || "Changing a value which must remain constant between renders."}`
8
+ );
7
9
  }
8
10
  }
9
11
  };
10
- export { useConstantValueInvariant };
12
+ export {
13
+ useConstantValueInvariant
14
+ };
11
15
  //# sourceMappingURL=useConstantValueInvariant.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value extends unknown>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,4BAA4B,CAAwB,OAAc,YAAqB;AAC1E;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACvC,QAAI,aAAa,OAAO;AACvB,YAAM,IAAI,MACT,wBAAwB,WAAW,gEACpC;AAAA,IACD;AAAA,EACD;AACD;;"}
1
+ {"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value extends unknown>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,4BAA4B,CAAwB,OAAc,YAAqB;AAC1E;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACvC,QAAI,aAAa,OAAO;AACvB,YAAM,IAAI;AAAA,QACT,wBAAwB,WAAW;AAAA,MAAA;AAAA,IAErC;AAAA,EACD;AACD;"}
@@ -9,5 +9,7 @@ const useDebounce = (value, debounceMs) => {
9
9
  }, [value, debounceMs]);
10
10
  return debounced;
11
11
  };
12
- export { useDebounce };
12
+ export {
13
+ useDebounce
14
+ };
13
15
  //# sourceMappingURL=useDebounce.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useDebounce.js","sources":["../../../src/hooks/useDebounce.ts"],"sourcesContent":["import { useEffect, useState } from 'react'\n\nexport const useDebounce = <T>(value: T, debounceMs: number): T => {\n\tconst [debounced, setDebounced] = useState(value)\n\tuseEffect(() => {\n\t\tconst handle = window.setTimeout(() => setDebounced(value), debounceMs)\n\t\treturn () => {\n\t\t\twindow.clearTimeout(handle)\n\t\t}\n\t}, [value, debounceMs])\n\treturn debounced\n}\n"],"names":[],"mappings":";AAEa,MAAA,cAAc,CAAI,OAAU,eAA0B;AAClE,QAAM,CAAC,WAAW,gBAAgB,SAAS,KAAK;AAChD,YAAU,MAAM;AACf,UAAM,SAAS,OAAO,WAAW,MAAM,aAAa,KAAK,GAAG,UAAU;AACtE,WAAO,MAAM;AACZ,aAAO,aAAa,MAAM;AAAA,IAAA;AAAA,EAC3B,GACE,CAAC,OAAO,UAAU,CAAC;AACf,SAAA;AACR;;"}
1
+ {"version":3,"file":"useDebounce.js","sources":["../../../src/hooks/useDebounce.ts"],"sourcesContent":["import { useEffect, useState } from 'react'\n\nexport const useDebounce = <T>(value: T, debounceMs: number): T => {\n\tconst [debounced, setDebounced] = useState(value)\n\tuseEffect(() => {\n\t\tconst handle = window.setTimeout(() => setDebounced(value), debounceMs)\n\t\treturn () => {\n\t\t\twindow.clearTimeout(handle)\n\t\t}\n\t}, [value, debounceMs])\n\treturn debounced\n}\n"],"names":[],"mappings":";AAEa,MAAA,cAAc,CAAI,OAAU,eAA0B;AAClE,QAAM,CAAC,WAAW,YAAY,IAAI,SAAS,KAAK;AAChD,YAAU,MAAM;AACf,UAAM,SAAS,OAAO,WAAW,MAAM,aAAa,KAAK,GAAG,UAAU;AACtE,WAAO,MAAM;AACZ,aAAO,aAAa,MAAM;AAAA,IAAA;AAAA,EAC3B,GACE,CAAC,OAAO,UAAU,CAAC;AACf,SAAA;AACR;"}
@@ -3,5 +3,7 @@ const useForceRender = () => {
3
3
  const [, forceRender] = useReducer((s) => s + 1, 0);
4
4
  return forceRender;
5
5
  };
6
- export { useForceRender };
6
+ export {
7
+ useForceRender
8
+ };
7
9
  //# sourceMappingURL=useForceRender.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useForceRender.js","sources":["../../../src/hooks/useForceRender.ts"],"sourcesContent":["import { useReducer } from 'react'\n\nexport const useForceRender = () => {\n\tconst [, forceRender] = useReducer((s: number) => s + 1, 0)\n\treturn forceRender\n}\n"],"names":[],"mappings":";AAEO,MAAM,iBAAiB,MAAM;AAC7B,QAAA,CAAG,EAAA,eAAe,WAAW,CAAC,MAAc,IAAI,GAAG,CAAC;AACnD,SAAA;AACR;;"}
1
+ {"version":3,"file":"useForceRender.js","sources":["../../../src/hooks/useForceRender.ts"],"sourcesContent":["import { useReducer } from 'react'\n\nexport const useForceRender = () => {\n\tconst [, forceRender] = useReducer((s: number) => s + 1, 0)\n\treturn forceRender\n}\n"],"names":[],"mappings":";AAEO,MAAM,iBAAiB,MAAM;AAC7B,QAAA,CAAG,EAAA,WAAW,IAAI,WAAW,CAAC,MAAc,IAAI,GAAG,CAAC;AACnD,SAAA;AACR;"}
@@ -1,10 +1,15 @@
1
1
  import { useRef, useEffect } from "react";
2
2
  const useIsMounted = () => {
3
3
  const isMountedRef = useRef(true);
4
- useEffect(() => () => {
5
- isMountedRef.current = false;
6
- }, []);
4
+ useEffect(
5
+ () => () => {
6
+ isMountedRef.current = false;
7
+ },
8
+ []
9
+ );
7
10
  return isMountedRef;
8
11
  };
9
- export { useIsMounted };
12
+ export {
13
+ useIsMounted
14
+ };
10
15
  //# sourceMappingURL=useIsMounted.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useIsMounted.js","sources":["../../../src/hooks/useIsMounted.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const useIsMounted = () => {\n\tconst isMountedRef = useRef(true)\n\tuseEffect(\n\t\t() => () => {\n\t\t\tisMountedRef.current = false\n\t\t},\n\t\t[],\n\t)\n\treturn isMountedRef\n}\n"],"names":[],"mappings":";AAEO,MAAM,eAAe,MAAM;AAC3B,QAAA,eAAe,OAAO,IAAI;AAChC,YACC,MAAM,MAAM;AACX,iBAAa,UAAU;AAAA,EACxB,GACA,CACD,CAAA;AACO,SAAA;AACR;;"}
1
+ {"version":3,"file":"useIsMounted.js","sources":["../../../src/hooks/useIsMounted.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const useIsMounted = () => {\n\tconst isMountedRef = useRef(true)\n\tuseEffect(\n\t\t() => () => {\n\t\t\tisMountedRef.current = false\n\t\t},\n\t\t[],\n\t)\n\treturn isMountedRef\n}\n"],"names":[],"mappings":";AAEO,MAAM,eAAe,MAAM;AAC3B,QAAA,eAAe,OAAO,IAAI;AAChC;AAAA,IACC,MAAM,MAAM;AACX,mBAAa,UAAU;AAAA,IACxB;AAAA,IACA,CAAC;AAAA,EAAA;AAEK,SAAA;AACR;"}
@@ -21,5 +21,7 @@ const useObjectMemo = (value) => {
21
21
  }
22
22
  return valueRef.current;
23
23
  };
24
- export { useObjectMemo };
24
+ export {
25
+ useObjectMemo
26
+ };
25
27
  //# sourceMappingURL=useObjectMemo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useObjectMemo.js","sources":["../../../src/hooks/useObjectMemo.ts"],"sourcesContent":["import { useRef } from 'react'\n\nconst compareObjects = (a: object, b: object): boolean => {\n\tif (a === b) {\n\t\treturn true\n\t}\n\tconst aEntries = Object.entries(a)\n\tif (aEntries.length !== Object.keys(b).length) {\n\t\treturn false\n\t}\n\tfor (const [key, val] of aEntries) {\n\t\tif (!(key in b) || (b as any)[key] !== val) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nexport const useObjectMemo = <A extends object>(value: A): A => {\n\tconst valueRef = useRef(value)\n\tif (!compareObjects(valueRef.current, value)) {\n\t\tvalueRef.current = value\n\t}\n\treturn valueRef.current\n}\n"],"names":[],"mappings":";AAEA,MAAM,iBAAiB,CAAC,GAAW,MAAuB;AACzD,MAAI,MAAM,GAAG;AACL,WAAA;AAAA,EACR;AACM,QAAA,WAAW,OAAO,QAAQ,CAAC;AACjC,MAAI,SAAS,WAAW,OAAO,KAAK,CAAC,EAAE,QAAQ;AACvC,WAAA;AAAA,EACR;AACW,aAAA,CAAC,KAAK,QAAQ,UAAU;AAClC,QAAI,CAAE,QAAO,MAAO,EAAU,SAAS,KAAK;AACpC,aAAA;AAAA,IACR;AAAA,EACD;AACO,SAAA;AACR;AAEa,MAAA,gBAAgB,CAAmB,UAAgB;AACzD,QAAA,WAAW,OAAO,KAAK;AAC7B,MAAI,CAAC,eAAe,SAAS,SAAS,KAAK,GAAG;AAC7C,aAAS,UAAU;AAAA,EACpB;AACA,SAAO,SAAS;AACjB;;"}
1
+ {"version":3,"file":"useObjectMemo.js","sources":["../../../src/hooks/useObjectMemo.ts"],"sourcesContent":["import { useRef } from 'react'\n\nconst compareObjects = (a: object, b: object): boolean => {\n\tif (a === b) {\n\t\treturn true\n\t}\n\tconst aEntries = Object.entries(a)\n\tif (aEntries.length !== Object.keys(b).length) {\n\t\treturn false\n\t}\n\tfor (const [key, val] of aEntries) {\n\t\tif (!(key in b) || (b as any)[key] !== val) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nexport const useObjectMemo = <A extends object>(value: A): A => {\n\tconst valueRef = useRef(value)\n\tif (!compareObjects(valueRef.current, value)) {\n\t\tvalueRef.current = value\n\t}\n\treturn valueRef.current\n}\n"],"names":[],"mappings":";AAEA,MAAM,iBAAiB,CAAC,GAAW,MAAuB;AACzD,MAAI,MAAM,GAAG;AACL,WAAA;AAAA,EACR;AACM,QAAA,WAAW,OAAO,QAAQ,CAAC;AACjC,MAAI,SAAS,WAAW,OAAO,KAAK,CAAC,EAAE,QAAQ;AACvC,WAAA;AAAA,EACR;AACA,aAAW,CAAC,KAAK,GAAG,KAAK,UAAU;AAClC,QAAI,EAAE,OAAO,MAAO,EAAU,SAAS,KAAK;AACpC,aAAA;AAAA,IACR;AAAA,EACD;AACO,SAAA;AACR;AAEa,MAAA,gBAAgB,CAAmB,UAAgB;AACzD,QAAA,WAAW,OAAO,KAAK;AAC7B,MAAI,CAAC,eAAe,SAAS,SAAS,KAAK,GAAG;AAC7C,aAAS,UAAU;AAAA,EACpB;AACA,SAAO,SAAS;AACjB;"}
@@ -6,5 +6,7 @@ const usePreviousValue = (value) => {
6
6
  });
7
7
  return ref.current;
8
8
  };
9
- export { usePreviousValue };
9
+ export {
10
+ usePreviousValue
11
+ };
10
12
  //# sourceMappingURL=usePreviousValue.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"usePreviousValue.js","sources":["../../../src/hooks/usePreviousValue.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const usePreviousValue = <Value>(value: Value) => {\n\tconst ref = useRef<Value>(value)\n\tuseEffect(() => {\n\t\tref.current = value\n\t})\n\treturn ref.current\n}\n"],"names":[],"mappings":";AAEa,MAAA,mBAAmB,CAAQ,UAAiB;AAClD,QAAA,MAAM,OAAc,KAAK;AAC/B,YAAU,MAAM;AACf,QAAI,UAAU;AAAA,EAAA,CACd;AACD,SAAO,IAAI;AACZ;;"}
1
+ {"version":3,"file":"usePreviousValue.js","sources":["../../../src/hooks/usePreviousValue.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const usePreviousValue = <Value>(value: Value) => {\n\tconst ref = useRef<Value>(value)\n\tuseEffect(() => {\n\t\tref.current = value\n\t})\n\treturn ref.current\n}\n"],"names":[],"mappings":";AAEa,MAAA,mBAAmB,CAAQ,UAAiB;AAClD,QAAA,MAAM,OAAc,KAAK;AAC/B,YAAU,MAAM;AACf,QAAI,UAAU;AAAA,EAAA,CACd;AACD,SAAO,IAAI;AACZ;"}
@@ -17,5 +17,7 @@ const createStoredStateHook = (getStorage) => {
17
17
  };
18
18
  };
19
19
  const useSessionStorageState = createStoredStateHook(() => sessionStorage);
20
- export { useSessionStorageState };
20
+ export {
21
+ useSessionStorageState
22
+ };
21
23
  //# sourceMappingURL=useStoredState.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useStoredState.js","sources":["../../../src/hooks/useStoredState.ts"],"sourcesContent":["import { useCallback, useState } from 'react'\nimport { Serializable } from '../types'\n\ntype SetState<V extends Serializable> = (value: V | ((current: V) => V)) => void;\ntype ValueInitializer<V extends Serializable> = (storedValue: V | undefined) => V;\n\nconst createStoredStateHook = (getStorage: () => Storage) => {\n\treturn <V extends Serializable>(key: string, initializeValue: ValueInitializer<V>): [V, SetState<V>] => {\n\t\tconst storage = getStorage()\n\t\tconst [value, setValue] = useState<V>(() => {\n\t\t\tconst value = storage.getItem(key)\n\t\t\tconst parsedValue: V | undefined = value !== null ? JSON.parse(value) : undefined\n\t\t\treturn initializeValue(parsedValue)\n\t\t})\n\t\treturn [value, useCallback(value => {\n\t\t\tsetValue(current => {\n\t\t\t\tconst newValue = typeof value === 'function' ? (value as (current: V) => V)(current) : value\n\t\t\t\tstorage.setItem(key, JSON.stringify(newValue))\n\t\t\t\treturn newValue\n\t\t\t})\n\t\t}, [key, storage])]\n\t}\n\n}\n\nexport const useSessionStorageState = createStoredStateHook(() => sessionStorage)\n"],"names":[],"mappings":";AAMA,MAAM,wBAAwB,CAAC,eAA8B;AACrD,SAAA,CAAyB,KAAa,oBAA2D;AACvG,UAAM,UAAU;AAChB,UAAM,CAAC,OAAO,YAAY,SAAY,MAAM;AACrC,YAAA,SAAQ,QAAQ,QAAQ,GAAG;AACjC,YAAM,cAA6B,WAAU,OAAO,KAAK,MAAM,MAAK,IAAI;AACxE,aAAO,gBAAgB,WAAW;AAAA,IAAA,CAClC;AACM,WAAA,CAAC,OAAO,YAAY,CAAS,WAAA;AACnC,eAAS,CAAW,YAAA;AACnB,cAAM,WAAW,OAAO,WAAU,aAAc,OAA4B,OAAO,IAAI;AACvF,gBAAQ,QAAQ,KAAK,KAAK,UAAU,QAAQ,CAAC;AACtC,eAAA;AAAA,MAAA,CACP;AAAA,IACC,GAAA,CAAC,KAAK,OAAO,CAAC,CAAC;AAAA,EAAA;AAGpB;AAEa,MAAA,yBAAyB,sBAAsB,MAAM,cAAc;;"}
1
+ {"version":3,"file":"useStoredState.js","sources":["../../../src/hooks/useStoredState.ts"],"sourcesContent":["import { useCallback, useState } from 'react'\nimport { Serializable } from '../types'\n\ntype SetState<V extends Serializable> = (value: V | ((current: V) => V)) => void;\ntype ValueInitializer<V extends Serializable> = (storedValue: V | undefined) => V;\n\nconst createStoredStateHook = (getStorage: () => Storage) => {\n\treturn <V extends Serializable>(key: string, initializeValue: ValueInitializer<V>): [V, SetState<V>] => {\n\t\tconst storage = getStorage()\n\t\tconst [value, setValue] = useState<V>(() => {\n\t\t\tconst value = storage.getItem(key)\n\t\t\tconst parsedValue: V | undefined = value !== null ? JSON.parse(value) : undefined\n\t\t\treturn initializeValue(parsedValue)\n\t\t})\n\t\treturn [value, useCallback(value => {\n\t\t\tsetValue(current => {\n\t\t\t\tconst newValue = typeof value === 'function' ? (value as (current: V) => V)(current) : value\n\t\t\t\tstorage.setItem(key, JSON.stringify(newValue))\n\t\t\t\treturn newValue\n\t\t\t})\n\t\t}, [key, storage])]\n\t}\n\n}\n\nexport const useSessionStorageState = createStoredStateHook(() => sessionStorage)\n"],"names":["value"],"mappings":";AAMA,MAAM,wBAAwB,CAAC,eAA8B;AACrD,SAAA,CAAyB,KAAa,oBAA2D;AACvG,UAAM,UAAU;AAChB,UAAM,CAAC,OAAO,QAAQ,IAAI,SAAY,MAAM;AACrCA,YAAAA,SAAQ,QAAQ,QAAQ,GAAG;AACjC,YAAM,cAA6BA,WAAU,OAAO,KAAK,MAAMA,MAAK,IAAI;AACxE,aAAO,gBAAgB,WAAW;AAAA,IAAA,CAClC;AACD,WAAO,CAAC,OAAO,YAAY,CAAAA,WAAS;AACnC,eAAS,CAAW,YAAA;AACnB,cAAM,WAAW,OAAOA,WAAU,aAAcA,OAA4B,OAAO,IAAIA;AACvF,gBAAQ,QAAQ,KAAK,KAAK,UAAU,QAAQ,CAAC;AACtC,eAAA;AAAA,MAAA,CACP;AAAA,IACC,GAAA,CAAC,KAAK,OAAO,CAAC,CAAC;AAAA,EAAA;AAGpB;AAEa,MAAA,yBAAyB,sBAAsB,MAAM,cAAc;"}
@@ -1,17 +1,35 @@
1
- export { useAbortController } from "./hooks/useAbortController.js";
2
- export { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
3
- export { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
4
- export { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
5
- export { useDebounce } from "./hooks/useDebounce.js";
6
- export { useForceRender } from "./hooks/useForceRender.js";
7
- export { useIsMounted } from "./hooks/useIsMounted.js";
8
- export { useObjectMemo } from "./hooks/useObjectMemo.js";
9
- export { usePreviousValue } from "./hooks/usePreviousValue.js";
10
- export { useSessionStorageState } from "./hooks/useStoredState.js";
11
- export { emptyArray } from "./referentiallyStable/emptyArray.js";
12
- export { emptyObject } from "./referentiallyStable/emptyObject.js";
13
- export { identityFunction } from "./referentiallyStable/identityFunction.js";
14
- export { noop } from "./referentiallyStable/noop.js";
15
- export { returnFalse } from "./referentiallyStable/returnFalse.js";
16
- export { returnTrue } from "./referentiallyStable/returnTrue.js";
1
+ import { useAbortController } from "./hooks/useAbortController.js";
2
+ import { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
3
+ import { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
4
+ import { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
5
+ import { useDebounce } from "./hooks/useDebounce.js";
6
+ import { useForceRender } from "./hooks/useForceRender.js";
7
+ import { useIsMounted } from "./hooks/useIsMounted.js";
8
+ import { useObjectMemo } from "./hooks/useObjectMemo.js";
9
+ import { usePreviousValue } from "./hooks/usePreviousValue.js";
10
+ import { useSessionStorageState } from "./hooks/useStoredState.js";
11
+ import { emptyArray } from "./referentiallyStable/emptyArray.js";
12
+ import { emptyObject } from "./referentiallyStable/emptyObject.js";
13
+ import { identityFunction } from "./referentiallyStable/identityFunction.js";
14
+ import { noop } from "./referentiallyStable/noop.js";
15
+ import { returnFalse } from "./referentiallyStable/returnFalse.js";
16
+ import { returnTrue } from "./referentiallyStable/returnTrue.js";
17
+ export {
18
+ emptyArray,
19
+ emptyObject,
20
+ identityFunction,
21
+ noop,
22
+ returnFalse,
23
+ returnTrue,
24
+ useAbortController,
25
+ useArrayMapMemo,
26
+ useConstantLengthInvariant,
27
+ useConstantValueInvariant,
28
+ useDebounce,
29
+ useForceRender,
30
+ useIsMounted,
31
+ useObjectMemo,
32
+ usePreviousValue,
33
+ useSessionStorageState
34
+ };
17
35
  //# sourceMappingURL=index.js.map
@@ -1,3 +1,5 @@
1
1
  const emptyArray = Object.freeze([]);
2
- export { emptyArray };
2
+ export {
3
+ emptyArray
4
+ };
3
5
  //# sourceMappingURL=emptyArray.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"emptyArray.js","sources":["../../../src/referentiallyStable/emptyArray.ts"],"sourcesContent":["export const emptyArray = Object.freeze<any>([]) as any[]\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,OAAO,OAAY,CAAE,CAAA;;"}
1
+ {"version":3,"file":"emptyArray.js","sources":["../../../src/referentiallyStable/emptyArray.ts"],"sourcesContent":["export const emptyArray = Object.freeze<any>([]) as any[]\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,OAAO,OAAY,CAAE,CAAA;"}
@@ -1,3 +1,5 @@
1
1
  const emptyObject = Object.freeze({});
2
- export { emptyObject };
2
+ export {
3
+ emptyObject
4
+ };
3
5
  //# sourceMappingURL=emptyObject.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"emptyObject.js","sources":["../../../src/referentiallyStable/emptyObject.ts"],"sourcesContent":["export const emptyObject = Object.freeze({})\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,OAAO,OAAO,CAAE,CAAA;;"}
1
+ {"version":3,"file":"emptyObject.js","sources":["../../../src/referentiallyStable/emptyObject.ts"],"sourcesContent":["export const emptyObject = Object.freeze({})\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,OAAO,OAAO,CAAE,CAAA;"}
@@ -1,3 +1,5 @@
1
1
  const identityFunction = (value) => value;
2
- export { identityFunction };
2
+ export {
3
+ identityFunction
4
+ };
3
5
  //# sourceMappingURL=identityFunction.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"identityFunction.js","sources":["../../../src/referentiallyStable/identityFunction.ts"],"sourcesContent":["export const identityFunction = <Value>(value: Value) => value\n"],"names":[],"mappings":"AAAa,MAAA,mBAAmB,CAAQ,UAAiB;;"}
1
+ {"version":3,"file":"identityFunction.js","sources":["../../../src/referentiallyStable/identityFunction.ts"],"sourcesContent":["export const identityFunction = <Value>(value: Value) => value\n"],"names":[],"mappings":"AAAa,MAAA,mBAAmB,CAAQ,UAAiB;"}
@@ -1,3 +1,5 @@
1
1
  const noop = () => void 0;
2
- export { noop };
2
+ export {
3
+ noop
4
+ };
3
5
  //# sourceMappingURL=noop.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"noop.js","sources":["../../../src/referentiallyStable/noop.ts"],"sourcesContent":["export const noop = () => undefined\n"],"names":[],"mappings":"AAAO,MAAM,OAAO,MAAM;;"}
1
+ {"version":3,"file":"noop.js","sources":["../../../src/referentiallyStable/noop.ts"],"sourcesContent":["export const noop = () => undefined\n"],"names":[],"mappings":"AAAO,MAAM,OAAO,MAAM;"}
@@ -1,3 +1,5 @@
1
1
  const returnFalse = () => false;
2
- export { returnFalse };
2
+ export {
3
+ returnFalse
4
+ };
3
5
  //# sourceMappingURL=returnFalse.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"returnFalse.js","sources":["../../../src/referentiallyStable/returnFalse.ts"],"sourcesContent":["export const returnFalse = () => false\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,MAAM;;"}
1
+ {"version":3,"file":"returnFalse.js","sources":["../../../src/referentiallyStable/returnFalse.ts"],"sourcesContent":["export const returnFalse = () => false\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,MAAM;"}
@@ -1,3 +1,5 @@
1
1
  const returnTrue = () => true;
2
- export { returnTrue };
2
+ export {
3
+ returnTrue
4
+ };
3
5
  //# sourceMappingURL=returnTrue.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"returnTrue.js","sources":["../../../src/referentiallyStable/returnTrue.ts"],"sourcesContent":["export const returnTrue = () => true\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,MAAM;;"}
1
+ {"version":3,"file":"returnTrue.js","sources":["../../../src/referentiallyStable/returnTrue.ts"],"sourcesContent":["export const returnTrue = () => true\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,MAAM;"}
@@ -11,5 +11,7 @@ const useAbortController = () => {
11
11
  return newController.signal;
12
12
  }, []);
13
13
  };
14
- export { useAbortController };
14
+ export {
15
+ useAbortController
16
+ };
15
17
  //# sourceMappingURL=useAbortController.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useAbortController.js","sources":["../../../src/hooks/useAbortController.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useAbortController = () => {\n\tconst lastAbortControllerRef = useRef<AbortController | undefined>(undefined)\n\tuseEffect(() => () => {\n\t\tlastAbortControllerRef.current?.abort()\n\t}, [])\n\treturn useCallback((): AbortSignal => {\n\t\tlastAbortControllerRef.current?.abort()\n\n\t\tconst newController = new AbortController()\n\t\tlastAbortControllerRef.current = newController\n\t\treturn newController.signal\n\t}, [])\n}\n"],"names":[],"mappings":";AAEO,MAAM,qBAAqB,MAAM;AACjC,QAAA,yBAAyB,OAAoC,MAAS;AAC5E,YAAU,MAAM,MAAM;AACrB,2BAAuB,SAAS;EACjC,GAAG,CAAE,CAAA;AACL,SAAO,YAAY,MAAmB;AACrC,2BAAuB,SAAS;AAE1B,UAAA,gBAAgB,IAAI;AAC1B,2BAAuB,UAAU;AACjC,WAAO,cAAc;AAAA,EACtB,GAAG,CAAE,CAAA;AACN;;"}
1
+ {"version":3,"file":"useAbortController.js","sources":["../../../src/hooks/useAbortController.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useAbortController = () => {\n\tconst lastAbortControllerRef = useRef<AbortController | undefined>(undefined)\n\tuseEffect(() => () => {\n\t\tlastAbortControllerRef.current?.abort()\n\t}, [])\n\treturn useCallback((): AbortSignal => {\n\t\tlastAbortControllerRef.current?.abort()\n\n\t\tconst newController = new AbortController()\n\t\tlastAbortControllerRef.current = newController\n\t\treturn newController.signal\n\t}, [])\n}\n"],"names":[],"mappings":";AAEO,MAAM,qBAAqB,MAAM;AACjC,QAAA,yBAAyB,OAAoC,MAAS;AAC5E,YAAU,MAAM,MAAM;AACrB,2BAAuB,SAAS;EACjC,GAAG,CAAE,CAAA;AACL,SAAO,YAAY,MAAmB;AACrC,2BAAuB,SAAS;AAE1B,UAAA,gBAAgB,IAAI;AAC1B,2BAAuB,UAAU;AACjC,WAAO,cAAc;AAAA,EACtB,GAAG,CAAE,CAAA;AACN;"}
@@ -3,5 +3,7 @@ const useArrayMapMemo = (items, map) => {
3
3
  const mapped = useMemo(() => items.map(map), [map, ...items]);
4
4
  return useMemo(() => mapped, mapped);
5
5
  };
6
- export { useArrayMapMemo };
6
+ export {
7
+ useArrayMapMemo
8
+ };
7
9
  //# sourceMappingURL=useArrayMapMemo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useArrayMapMemo.js","sources":["../../../src/hooks/useArrayMapMemo.ts"],"sourcesContent":["import { useMemo } from 'react'\nimport { useConstantLengthInvariant } from './useConstantLengthInvariant'\n\n/**\n * ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️\n * ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠\n *\n * This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents\n * of the original array, and not its referential equality. That way, if we create a new array with identical items,\n * we get an array that is referentially equal to the previous one.\n */\nexport const useArrayMapMemo = <Item, OutputItem>(\n\titems: Item[],\n\tmap: (value: Item, index: number, array: Item[]) => OutputItem,\n): OutputItem[] => {\n\tuseConstantLengthInvariant(items)\n\n\t// This is tricky. We don't want to exclude the map function from the dependency list because if it changes but the\n\t// items array remains the same, we still want to re-compute the new array. However, if that yields the same array,\n\t// in the sense that the items are identical, albeit computed via a different map function, we still want to\n\t// preserve the referential equality of the original. Hence the second memo.\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\tconst mapped = useMemo(() => items.map(map), [map, ...items])\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\treturn useMemo(() => mapped, mapped) // This is deliberately not `[mapped]`\n}\n"],"names":[],"mappings":";AAWa,MAAA,kBAAkB,CAC9B,OACA,QACkB;AASZ,QAAA,SAAS,QAAQ,MAAM,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC;AAGrD,SAAA,QAAQ,MAAM,QAAQ,MAAM;AACpC;;"}
1
+ {"version":3,"file":"useArrayMapMemo.js","sources":["../../../src/hooks/useArrayMapMemo.ts"],"sourcesContent":["import { useMemo } from 'react'\nimport { useConstantLengthInvariant } from './useConstantLengthInvariant'\n\n/**\n * ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️\n * ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠\n *\n * This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents\n * of the original array, and not its referential equality. That way, if we create a new array with identical items,\n * we get an array that is referentially equal to the previous one.\n */\nexport const useArrayMapMemo = <Item, OutputItem>(\n\titems: Item[],\n\tmap: (value: Item, index: number, array: Item[]) => OutputItem,\n): OutputItem[] => {\n\tuseConstantLengthInvariant(items)\n\n\t// This is tricky. We don't want to exclude the map function from the dependency list because if it changes but the\n\t// items array remains the same, we still want to re-compute the new array. However, if that yields the same array,\n\t// in the sense that the items are identical, albeit computed via a different map function, we still want to\n\t// preserve the referential equality of the original. Hence the second memo.\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\tconst mapped = useMemo(() => items.map(map), [map, ...items])\n\n\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\treturn useMemo(() => mapped, mapped) // This is deliberately not `[mapped]`\n}\n"],"names":[],"mappings":";AAWa,MAAA,kBAAkB,CAC9B,OACA,QACkB;AASZ,QAAA,SAAS,QAAQ,MAAM,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC;AAGrD,SAAA,QAAQ,MAAM,QAAQ,MAAM;AACpC;"}
@@ -1,4 +1,6 @@
1
1
  const useConstantLengthInvariant = (items, message) => {
2
2
  };
3
- export { useConstantLengthInvariant };
3
+ export {
4
+ useConstantLengthInvariant
5
+ };
4
6
  //# sourceMappingURL=useConstantLengthInvariant.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item extends unknown>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${\n\t\t\t\t\tmessage || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,6BAA6B,CAAuB,OAAe,YAAqB;AAYrG;;"}
1
+ {"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item extends unknown>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${\n\t\t\t\t\tmessage || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,6BAA6B,CAAuB,OAAe,YAAqB;AAYrG;"}
@@ -1,4 +1,6 @@
1
1
  const useConstantValueInvariant = (value, message) => {
2
2
  };
3
- export { useConstantValueInvariant };
3
+ export {
4
+ useConstantValueInvariant
5
+ };
4
6
  //# sourceMappingURL=useConstantValueInvariant.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value extends unknown>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,4BAA4B,CAAwB,OAAc,YAAqB;AAUpG;;"}
1
+ {"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value extends unknown>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,4BAA4B,CAAwB,OAAc,YAAqB;AAUpG;"}
@@ -9,5 +9,7 @@ const useDebounce = (value, debounceMs) => {
9
9
  }, [value, debounceMs]);
10
10
  return debounced;
11
11
  };
12
- export { useDebounce };
12
+ export {
13
+ useDebounce
14
+ };
13
15
  //# sourceMappingURL=useDebounce.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useDebounce.js","sources":["../../../src/hooks/useDebounce.ts"],"sourcesContent":["import { useEffect, useState } from 'react'\n\nexport const useDebounce = <T>(value: T, debounceMs: number): T => {\n\tconst [debounced, setDebounced] = useState(value)\n\tuseEffect(() => {\n\t\tconst handle = window.setTimeout(() => setDebounced(value), debounceMs)\n\t\treturn () => {\n\t\t\twindow.clearTimeout(handle)\n\t\t}\n\t}, [value, debounceMs])\n\treturn debounced\n}\n"],"names":[],"mappings":";AAEa,MAAA,cAAc,CAAI,OAAU,eAA0B;AAClE,QAAM,CAAC,WAAW,gBAAgB,SAAS,KAAK;AAChD,YAAU,MAAM;AACf,UAAM,SAAS,OAAO,WAAW,MAAM,aAAa,KAAK,GAAG,UAAU;AACtE,WAAO,MAAM;AACZ,aAAO,aAAa,MAAM;AAAA,IAAA;AAAA,EAC3B,GACE,CAAC,OAAO,UAAU,CAAC;AACf,SAAA;AACR;;"}
1
+ {"version":3,"file":"useDebounce.js","sources":["../../../src/hooks/useDebounce.ts"],"sourcesContent":["import { useEffect, useState } from 'react'\n\nexport const useDebounce = <T>(value: T, debounceMs: number): T => {\n\tconst [debounced, setDebounced] = useState(value)\n\tuseEffect(() => {\n\t\tconst handle = window.setTimeout(() => setDebounced(value), debounceMs)\n\t\treturn () => {\n\t\t\twindow.clearTimeout(handle)\n\t\t}\n\t}, [value, debounceMs])\n\treturn debounced\n}\n"],"names":[],"mappings":";AAEa,MAAA,cAAc,CAAI,OAAU,eAA0B;AAClE,QAAM,CAAC,WAAW,YAAY,IAAI,SAAS,KAAK;AAChD,YAAU,MAAM;AACf,UAAM,SAAS,OAAO,WAAW,MAAM,aAAa,KAAK,GAAG,UAAU;AACtE,WAAO,MAAM;AACZ,aAAO,aAAa,MAAM;AAAA,IAAA;AAAA,EAC3B,GACE,CAAC,OAAO,UAAU,CAAC;AACf,SAAA;AACR;"}
@@ -3,5 +3,7 @@ const useForceRender = () => {
3
3
  const [, forceRender] = useReducer((s) => s + 1, 0);
4
4
  return forceRender;
5
5
  };
6
- export { useForceRender };
6
+ export {
7
+ useForceRender
8
+ };
7
9
  //# sourceMappingURL=useForceRender.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useForceRender.js","sources":["../../../src/hooks/useForceRender.ts"],"sourcesContent":["import { useReducer } from 'react'\n\nexport const useForceRender = () => {\n\tconst [, forceRender] = useReducer((s: number) => s + 1, 0)\n\treturn forceRender\n}\n"],"names":[],"mappings":";AAEO,MAAM,iBAAiB,MAAM;AAC7B,QAAA,CAAG,EAAA,eAAe,WAAW,CAAC,MAAc,IAAI,GAAG,CAAC;AACnD,SAAA;AACR;;"}
1
+ {"version":3,"file":"useForceRender.js","sources":["../../../src/hooks/useForceRender.ts"],"sourcesContent":["import { useReducer } from 'react'\n\nexport const useForceRender = () => {\n\tconst [, forceRender] = useReducer((s: number) => s + 1, 0)\n\treturn forceRender\n}\n"],"names":[],"mappings":";AAEO,MAAM,iBAAiB,MAAM;AAC7B,QAAA,CAAG,EAAA,WAAW,IAAI,WAAW,CAAC,MAAc,IAAI,GAAG,CAAC;AACnD,SAAA;AACR;"}
@@ -1,10 +1,15 @@
1
1
  import { useRef, useEffect } from "react";
2
2
  const useIsMounted = () => {
3
3
  const isMountedRef = useRef(true);
4
- useEffect(() => () => {
5
- isMountedRef.current = false;
6
- }, []);
4
+ useEffect(
5
+ () => () => {
6
+ isMountedRef.current = false;
7
+ },
8
+ []
9
+ );
7
10
  return isMountedRef;
8
11
  };
9
- export { useIsMounted };
12
+ export {
13
+ useIsMounted
14
+ };
10
15
  //# sourceMappingURL=useIsMounted.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useIsMounted.js","sources":["../../../src/hooks/useIsMounted.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const useIsMounted = () => {\n\tconst isMountedRef = useRef(true)\n\tuseEffect(\n\t\t() => () => {\n\t\t\tisMountedRef.current = false\n\t\t},\n\t\t[],\n\t)\n\treturn isMountedRef\n}\n"],"names":[],"mappings":";AAEO,MAAM,eAAe,MAAM;AAC3B,QAAA,eAAe,OAAO,IAAI;AAChC,YACC,MAAM,MAAM;AACX,iBAAa,UAAU;AAAA,EACxB,GACA,CACD,CAAA;AACO,SAAA;AACR;;"}
1
+ {"version":3,"file":"useIsMounted.js","sources":["../../../src/hooks/useIsMounted.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const useIsMounted = () => {\n\tconst isMountedRef = useRef(true)\n\tuseEffect(\n\t\t() => () => {\n\t\t\tisMountedRef.current = false\n\t\t},\n\t\t[],\n\t)\n\treturn isMountedRef\n}\n"],"names":[],"mappings":";AAEO,MAAM,eAAe,MAAM;AAC3B,QAAA,eAAe,OAAO,IAAI;AAChC;AAAA,IACC,MAAM,MAAM;AACX,mBAAa,UAAU;AAAA,IACxB;AAAA,IACA,CAAC;AAAA,EAAA;AAEK,SAAA;AACR;"}
@@ -21,5 +21,7 @@ const useObjectMemo = (value) => {
21
21
  }
22
22
  return valueRef.current;
23
23
  };
24
- export { useObjectMemo };
24
+ export {
25
+ useObjectMemo
26
+ };
25
27
  //# sourceMappingURL=useObjectMemo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useObjectMemo.js","sources":["../../../src/hooks/useObjectMemo.ts"],"sourcesContent":["import { useRef } from 'react'\n\nconst compareObjects = (a: object, b: object): boolean => {\n\tif (a === b) {\n\t\treturn true\n\t}\n\tconst aEntries = Object.entries(a)\n\tif (aEntries.length !== Object.keys(b).length) {\n\t\treturn false\n\t}\n\tfor (const [key, val] of aEntries) {\n\t\tif (!(key in b) || (b as any)[key] !== val) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nexport const useObjectMemo = <A extends object>(value: A): A => {\n\tconst valueRef = useRef(value)\n\tif (!compareObjects(valueRef.current, value)) {\n\t\tvalueRef.current = value\n\t}\n\treturn valueRef.current\n}\n"],"names":[],"mappings":";AAEA,MAAM,iBAAiB,CAAC,GAAW,MAAuB;AACzD,MAAI,MAAM,GAAG;AACL,WAAA;AAAA,EACR;AACM,QAAA,WAAW,OAAO,QAAQ,CAAC;AACjC,MAAI,SAAS,WAAW,OAAO,KAAK,CAAC,EAAE,QAAQ;AACvC,WAAA;AAAA,EACR;AACW,aAAA,CAAC,KAAK,QAAQ,UAAU;AAClC,QAAI,CAAE,QAAO,MAAO,EAAU,SAAS,KAAK;AACpC,aAAA;AAAA,IACR;AAAA,EACD;AACO,SAAA;AACR;AAEa,MAAA,gBAAgB,CAAmB,UAAgB;AACzD,QAAA,WAAW,OAAO,KAAK;AAC7B,MAAI,CAAC,eAAe,SAAS,SAAS,KAAK,GAAG;AAC7C,aAAS,UAAU;AAAA,EACpB;AACA,SAAO,SAAS;AACjB;;"}
1
+ {"version":3,"file":"useObjectMemo.js","sources":["../../../src/hooks/useObjectMemo.ts"],"sourcesContent":["import { useRef } from 'react'\n\nconst compareObjects = (a: object, b: object): boolean => {\n\tif (a === b) {\n\t\treturn true\n\t}\n\tconst aEntries = Object.entries(a)\n\tif (aEntries.length !== Object.keys(b).length) {\n\t\treturn false\n\t}\n\tfor (const [key, val] of aEntries) {\n\t\tif (!(key in b) || (b as any)[key] !== val) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nexport const useObjectMemo = <A extends object>(value: A): A => {\n\tconst valueRef = useRef(value)\n\tif (!compareObjects(valueRef.current, value)) {\n\t\tvalueRef.current = value\n\t}\n\treturn valueRef.current\n}\n"],"names":[],"mappings":";AAEA,MAAM,iBAAiB,CAAC,GAAW,MAAuB;AACzD,MAAI,MAAM,GAAG;AACL,WAAA;AAAA,EACR;AACM,QAAA,WAAW,OAAO,QAAQ,CAAC;AACjC,MAAI,SAAS,WAAW,OAAO,KAAK,CAAC,EAAE,QAAQ;AACvC,WAAA;AAAA,EACR;AACA,aAAW,CAAC,KAAK,GAAG,KAAK,UAAU;AAClC,QAAI,EAAE,OAAO,MAAO,EAAU,SAAS,KAAK;AACpC,aAAA;AAAA,IACR;AAAA,EACD;AACO,SAAA;AACR;AAEa,MAAA,gBAAgB,CAAmB,UAAgB;AACzD,QAAA,WAAW,OAAO,KAAK;AAC7B,MAAI,CAAC,eAAe,SAAS,SAAS,KAAK,GAAG;AAC7C,aAAS,UAAU;AAAA,EACpB;AACA,SAAO,SAAS;AACjB;"}
@@ -6,5 +6,7 @@ const usePreviousValue = (value) => {
6
6
  });
7
7
  return ref.current;
8
8
  };
9
- export { usePreviousValue };
9
+ export {
10
+ usePreviousValue
11
+ };
10
12
  //# sourceMappingURL=usePreviousValue.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"usePreviousValue.js","sources":["../../../src/hooks/usePreviousValue.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const usePreviousValue = <Value>(value: Value) => {\n\tconst ref = useRef<Value>(value)\n\tuseEffect(() => {\n\t\tref.current = value\n\t})\n\treturn ref.current\n}\n"],"names":[],"mappings":";AAEa,MAAA,mBAAmB,CAAQ,UAAiB;AAClD,QAAA,MAAM,OAAc,KAAK;AAC/B,YAAU,MAAM;AACf,QAAI,UAAU;AAAA,EAAA,CACd;AACD,SAAO,IAAI;AACZ;;"}
1
+ {"version":3,"file":"usePreviousValue.js","sources":["../../../src/hooks/usePreviousValue.ts"],"sourcesContent":["import { useEffect, useRef } from 'react'\n\nexport const usePreviousValue = <Value>(value: Value) => {\n\tconst ref = useRef<Value>(value)\n\tuseEffect(() => {\n\t\tref.current = value\n\t})\n\treturn ref.current\n}\n"],"names":[],"mappings":";AAEa,MAAA,mBAAmB,CAAQ,UAAiB;AAClD,QAAA,MAAM,OAAc,KAAK;AAC/B,YAAU,MAAM;AACf,QAAI,UAAU;AAAA,EAAA,CACd;AACD,SAAO,IAAI;AACZ;"}
@@ -17,5 +17,7 @@ const createStoredStateHook = (getStorage) => {
17
17
  };
18
18
  };
19
19
  const useSessionStorageState = createStoredStateHook(() => sessionStorage);
20
- export { useSessionStorageState };
20
+ export {
21
+ useSessionStorageState
22
+ };
21
23
  //# sourceMappingURL=useStoredState.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"useStoredState.js","sources":["../../../src/hooks/useStoredState.ts"],"sourcesContent":["import { useCallback, useState } from 'react'\nimport { Serializable } from '../types'\n\ntype SetState<V extends Serializable> = (value: V | ((current: V) => V)) => void;\ntype ValueInitializer<V extends Serializable> = (storedValue: V | undefined) => V;\n\nconst createStoredStateHook = (getStorage: () => Storage) => {\n\treturn <V extends Serializable>(key: string, initializeValue: ValueInitializer<V>): [V, SetState<V>] => {\n\t\tconst storage = getStorage()\n\t\tconst [value, setValue] = useState<V>(() => {\n\t\t\tconst value = storage.getItem(key)\n\t\t\tconst parsedValue: V | undefined = value !== null ? JSON.parse(value) : undefined\n\t\t\treturn initializeValue(parsedValue)\n\t\t})\n\t\treturn [value, useCallback(value => {\n\t\t\tsetValue(current => {\n\t\t\t\tconst newValue = typeof value === 'function' ? (value as (current: V) => V)(current) : value\n\t\t\t\tstorage.setItem(key, JSON.stringify(newValue))\n\t\t\t\treturn newValue\n\t\t\t})\n\t\t}, [key, storage])]\n\t}\n\n}\n\nexport const useSessionStorageState = createStoredStateHook(() => sessionStorage)\n"],"names":[],"mappings":";AAMA,MAAM,wBAAwB,CAAC,eAA8B;AACrD,SAAA,CAAyB,KAAa,oBAA2D;AACvG,UAAM,UAAU;AAChB,UAAM,CAAC,OAAO,YAAY,SAAY,MAAM;AACrC,YAAA,SAAQ,QAAQ,QAAQ,GAAG;AACjC,YAAM,cAA6B,WAAU,OAAO,KAAK,MAAM,MAAK,IAAI;AACxE,aAAO,gBAAgB,WAAW;AAAA,IAAA,CAClC;AACM,WAAA,CAAC,OAAO,YAAY,CAAS,WAAA;AACnC,eAAS,CAAW,YAAA;AACnB,cAAM,WAAW,OAAO,WAAU,aAAc,OAA4B,OAAO,IAAI;AACvF,gBAAQ,QAAQ,KAAK,KAAK,UAAU,QAAQ,CAAC;AACtC,eAAA;AAAA,MAAA,CACP;AAAA,IACC,GAAA,CAAC,KAAK,OAAO,CAAC,CAAC;AAAA,EAAA;AAGpB;AAEa,MAAA,yBAAyB,sBAAsB,MAAM,cAAc;;"}
1
+ {"version":3,"file":"useStoredState.js","sources":["../../../src/hooks/useStoredState.ts"],"sourcesContent":["import { useCallback, useState } from 'react'\nimport { Serializable } from '../types'\n\ntype SetState<V extends Serializable> = (value: V | ((current: V) => V)) => void;\ntype ValueInitializer<V extends Serializable> = (storedValue: V | undefined) => V;\n\nconst createStoredStateHook = (getStorage: () => Storage) => {\n\treturn <V extends Serializable>(key: string, initializeValue: ValueInitializer<V>): [V, SetState<V>] => {\n\t\tconst storage = getStorage()\n\t\tconst [value, setValue] = useState<V>(() => {\n\t\t\tconst value = storage.getItem(key)\n\t\t\tconst parsedValue: V | undefined = value !== null ? JSON.parse(value) : undefined\n\t\t\treturn initializeValue(parsedValue)\n\t\t})\n\t\treturn [value, useCallback(value => {\n\t\t\tsetValue(current => {\n\t\t\t\tconst newValue = typeof value === 'function' ? (value as (current: V) => V)(current) : value\n\t\t\t\tstorage.setItem(key, JSON.stringify(newValue))\n\t\t\t\treturn newValue\n\t\t\t})\n\t\t}, [key, storage])]\n\t}\n\n}\n\nexport const useSessionStorageState = createStoredStateHook(() => sessionStorage)\n"],"names":["value"],"mappings":";AAMA,MAAM,wBAAwB,CAAC,eAA8B;AACrD,SAAA,CAAyB,KAAa,oBAA2D;AACvG,UAAM,UAAU;AAChB,UAAM,CAAC,OAAO,QAAQ,IAAI,SAAY,MAAM;AACrCA,YAAAA,SAAQ,QAAQ,QAAQ,GAAG;AACjC,YAAM,cAA6BA,WAAU,OAAO,KAAK,MAAMA,MAAK,IAAI;AACxE,aAAO,gBAAgB,WAAW;AAAA,IAAA,CAClC;AACD,WAAO,CAAC,OAAO,YAAY,CAAAA,WAAS;AACnC,eAAS,CAAW,YAAA;AACnB,cAAM,WAAW,OAAOA,WAAU,aAAcA,OAA4B,OAAO,IAAIA;AACvF,gBAAQ,QAAQ,KAAK,KAAK,UAAU,QAAQ,CAAC;AACtC,eAAA;AAAA,MAAA,CACP;AAAA,IACC,GAAA,CAAC,KAAK,OAAO,CAAC,CAAC;AAAA,EAAA;AAGpB;AAEa,MAAA,yBAAyB,sBAAsB,MAAM,cAAc;"}
@@ -1,17 +1,35 @@
1
- export { useAbortController } from "./hooks/useAbortController.js";
2
- export { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
3
- export { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
4
- export { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
5
- export { useDebounce } from "./hooks/useDebounce.js";
6
- export { useForceRender } from "./hooks/useForceRender.js";
7
- export { useIsMounted } from "./hooks/useIsMounted.js";
8
- export { useObjectMemo } from "./hooks/useObjectMemo.js";
9
- export { usePreviousValue } from "./hooks/usePreviousValue.js";
10
- export { useSessionStorageState } from "./hooks/useStoredState.js";
11
- export { emptyArray } from "./referentiallyStable/emptyArray.js";
12
- export { emptyObject } from "./referentiallyStable/emptyObject.js";
13
- export { identityFunction } from "./referentiallyStable/identityFunction.js";
14
- export { noop } from "./referentiallyStable/noop.js";
15
- export { returnFalse } from "./referentiallyStable/returnFalse.js";
16
- export { returnTrue } from "./referentiallyStable/returnTrue.js";
1
+ import { useAbortController } from "./hooks/useAbortController.js";
2
+ import { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
3
+ import { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
4
+ import { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
5
+ import { useDebounce } from "./hooks/useDebounce.js";
6
+ import { useForceRender } from "./hooks/useForceRender.js";
7
+ import { useIsMounted } from "./hooks/useIsMounted.js";
8
+ import { useObjectMemo } from "./hooks/useObjectMemo.js";
9
+ import { usePreviousValue } from "./hooks/usePreviousValue.js";
10
+ import { useSessionStorageState } from "./hooks/useStoredState.js";
11
+ import { emptyArray } from "./referentiallyStable/emptyArray.js";
12
+ import { emptyObject } from "./referentiallyStable/emptyObject.js";
13
+ import { identityFunction } from "./referentiallyStable/identityFunction.js";
14
+ import { noop } from "./referentiallyStable/noop.js";
15
+ import { returnFalse } from "./referentiallyStable/returnFalse.js";
16
+ import { returnTrue } from "./referentiallyStable/returnTrue.js";
17
+ export {
18
+ emptyArray,
19
+ emptyObject,
20
+ identityFunction,
21
+ noop,
22
+ returnFalse,
23
+ returnTrue,
24
+ useAbortController,
25
+ useArrayMapMemo,
26
+ useConstantLengthInvariant,
27
+ useConstantValueInvariant,
28
+ useDebounce,
29
+ useForceRender,
30
+ useIsMounted,
31
+ useObjectMemo,
32
+ usePreviousValue,
33
+ useSessionStorageState
34
+ };
17
35
  //# sourceMappingURL=index.js.map
@@ -1,3 +1,5 @@
1
1
  const emptyArray = Object.freeze([]);
2
- export { emptyArray };
2
+ export {
3
+ emptyArray
4
+ };
3
5
  //# sourceMappingURL=emptyArray.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"emptyArray.js","sources":["../../../src/referentiallyStable/emptyArray.ts"],"sourcesContent":["export const emptyArray = Object.freeze<any>([]) as any[]\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,OAAO,OAAY,CAAE,CAAA;;"}
1
+ {"version":3,"file":"emptyArray.js","sources":["../../../src/referentiallyStable/emptyArray.ts"],"sourcesContent":["export const emptyArray = Object.freeze<any>([]) as any[]\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,OAAO,OAAY,CAAE,CAAA;"}
@@ -1,3 +1,5 @@
1
1
  const emptyObject = Object.freeze({});
2
- export { emptyObject };
2
+ export {
3
+ emptyObject
4
+ };
3
5
  //# sourceMappingURL=emptyObject.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"emptyObject.js","sources":["../../../src/referentiallyStable/emptyObject.ts"],"sourcesContent":["export const emptyObject = Object.freeze({})\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,OAAO,OAAO,CAAE,CAAA;;"}
1
+ {"version":3,"file":"emptyObject.js","sources":["../../../src/referentiallyStable/emptyObject.ts"],"sourcesContent":["export const emptyObject = Object.freeze({})\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,OAAO,OAAO,CAAE,CAAA;"}
@@ -1,3 +1,5 @@
1
1
  const identityFunction = (value) => value;
2
- export { identityFunction };
2
+ export {
3
+ identityFunction
4
+ };
3
5
  //# sourceMappingURL=identityFunction.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"identityFunction.js","sources":["../../../src/referentiallyStable/identityFunction.ts"],"sourcesContent":["export const identityFunction = <Value>(value: Value) => value\n"],"names":[],"mappings":"AAAa,MAAA,mBAAmB,CAAQ,UAAiB;;"}
1
+ {"version":3,"file":"identityFunction.js","sources":["../../../src/referentiallyStable/identityFunction.ts"],"sourcesContent":["export const identityFunction = <Value>(value: Value) => value\n"],"names":[],"mappings":"AAAa,MAAA,mBAAmB,CAAQ,UAAiB;"}
@@ -1,3 +1,5 @@
1
1
  const noop = () => void 0;
2
- export { noop };
2
+ export {
3
+ noop
4
+ };
3
5
  //# sourceMappingURL=noop.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"noop.js","sources":["../../../src/referentiallyStable/noop.ts"],"sourcesContent":["export const noop = () => undefined\n"],"names":[],"mappings":"AAAO,MAAM,OAAO,MAAM;;"}
1
+ {"version":3,"file":"noop.js","sources":["../../../src/referentiallyStable/noop.ts"],"sourcesContent":["export const noop = () => undefined\n"],"names":[],"mappings":"AAAO,MAAM,OAAO,MAAM;"}
@@ -1,3 +1,5 @@
1
1
  const returnFalse = () => false;
2
- export { returnFalse };
2
+ export {
3
+ returnFalse
4
+ };
3
5
  //# sourceMappingURL=returnFalse.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"returnFalse.js","sources":["../../../src/referentiallyStable/returnFalse.ts"],"sourcesContent":["export const returnFalse = () => false\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,MAAM;;"}
1
+ {"version":3,"file":"returnFalse.js","sources":["../../../src/referentiallyStable/returnFalse.ts"],"sourcesContent":["export const returnFalse = () => false\n"],"names":[],"mappings":"AAAO,MAAM,cAAc,MAAM;"}
@@ -1,3 +1,5 @@
1
1
  const returnTrue = () => true;
2
- export { returnTrue };
2
+ export {
3
+ returnTrue
4
+ };
3
5
  //# sourceMappingURL=returnTrue.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"returnTrue.js","sources":["../../../src/referentiallyStable/returnTrue.ts"],"sourcesContent":["export const returnTrue = () => true\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,MAAM;;"}
1
+ {"version":3,"file":"returnTrue.js","sources":["../../../src/referentiallyStable/returnTrue.ts"],"sourcesContent":["export const returnTrue = () => true\n"],"names":[],"mappings":"AAAO,MAAM,aAAa,MAAM;"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/vite@2.9.1_sass@1.49.11/node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/.pnpm/vite@2.9.1_sass@1.49.11/node_modules/vite/types/customEvent.d.ts","../../../../node_modules/.pnpm/vite@2.9.1_sass@1.49.11/node_modules/vite/types/hot.d.ts","../../../../node_modules/.pnpm/vite@2.9.1_sass@1.49.11/node_modules/vite/types/importMeta.d.ts","../../../../node_modules/.pnpm/vite@2.9.1_sass@1.49.11/node_modules/vite/client.d.ts","../../src/ambient.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/global.d.ts","../../../../node_modules/.pnpm/csstype@3.0.11/node_modules/csstype/index.d.ts","../../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/index.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/jsx-runtime.d.ts","../../src/hooks/useAbortController.ts","../../src/hooks/usePreviousValue.ts","../../src/hooks/useConstantLengthInvariant.ts","../../src/hooks/useArrayMapMemo.ts","../../src/hooks/useConstantValueInvariant.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useForceRender.ts","../../src/hooks/useIsMounted.ts","../../src/hooks/useObjectMemo.ts","../../src/types.ts","../../src/hooks/useStoredState.ts","../../src/hooks/index.ts","../../src/referentiallyStable/emptyArray.ts","../../src/referentiallyStable/emptyObject.ts","../../src/referentiallyStable/identityFunction.ts","../../src/referentiallyStable/noop.ts","../../src/referentiallyStable/returnFalse.ts","../../src/referentiallyStable/returnTrue.ts","../../src/referentiallyStable/index.ts","../../src/index.ts","../../../../node_modules/.pnpm/@types+argparse@1.0.38/node_modules/@types/argparse/index.d.ts","../../../../node_modules/.pnpm/@babel+types@7.15.6/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@types+babel__generator@7.6.3/node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/.pnpm/@babel+types@7.17.10/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@babel+parser@7.15.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/index.d.ts","../../../../node_modules/.pnpm/@types+babel__traverse@7.14.2/node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/.pnpm/@types+babel__core@7.1.16/node_modules/@types/babel__core/index.d.ts","../../../../node_modules/.pnpm/@types+blueimp-md5@2.18.0/node_modules/@types/blueimp-md5/index.d.ts","../../../../node_modules/.pnpm/@types+chai@4.3.0/node_modules/@types/chai/index.d.ts","../../../../node_modules/.pnpm/@types+chai-subset@1.3.3/node_modules/@types/chai-subset/index.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/types.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/index.d.ts","../../../../node_modules/.pnpm/@types+cookie@0.4.1/node_modules/@types/cookie/index.d.ts","../../../../node_modules/.pnpm/@types+debounce@1.2.0/node_modules/@types/debounce/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.2/node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.2/node_modules/@types/eslint/index.d.ts","../../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/.pnpm/@types+geojson@7946.0.8/node_modules/@types/geojson/index.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../../node_modules/.pnpm/@types+glob@7.2.0/node_modules/@types/glob/index.d.ts","../../../../node_modules/.pnpm/@types+graceful-fs@4.1.5/node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/.pnpm/@types+unist@2.0.6/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+hast@2.3.4/node_modules/@types/hast/index.d.ts","../../../../node_modules/.pnpm/@types+html-minifier-terser@5.1.2/node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/.pnpm/@types+is-function@1.0.1/node_modules/@types/is-function/index.d.ts","../../../../node_modules/.pnpm/@types+is-hotkey@0.1.5/node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.3/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.0/node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-reports@3.0.1/node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/.pnpm/@types+js-levenshtein@1.1.0/node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/.pnpm/@types+leaflet@1.7.5/node_modules/@types/leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@3.0.10/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/@types+mime@2.0.3/node_modules/@types/mime/index.d.ts","../../../../node_modules/.pnpm/form-data@3.0.1/node_modules/form-data/index.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/.pnpm/@types+npmlog@4.1.3/node_modules/@types/npmlog/index.d.ts","../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../../../node_modules/.pnpm/@types+parse5@5.0.3/node_modules/@types/parse5/index.d.ts","../../../../node_modules/.pnpm/pg-types@2.2.0/node_modules/pg-types/index.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/.pnpm/@types+pg@8.6.5/node_modules/@types/pg/index.d.ts","../../../../node_modules/.pnpm/@types+pretty-hrtime@1.0.1/node_modules/@types/pretty-hrtime/index.d.ts","../../../../node_modules/.pnpm/@types+qs@6.9.7/node_modules/@types/qs/index.d.ts","../../../../node_modules/.pnpm/@types+react-dom@17.0.9/node_modules/@types/react-dom/index.d.ts","../../../../node_modules/.pnpm/@types+react-leaflet@2.8.2/node_modules/@types/react-leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+react-syntax-highlighter@11.0.5/node_modules/@types/react-syntax-highlighter/index.d.ts","../../../../node_modules/.pnpm/@types+react-test-renderer@17.0.1/node_modules/@types/react-test-renderer/index.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/Transition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/config.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/index.d.ts","../../../../node_modules/.pnpm/@types+source-list-map@0.1.2/node_modules/@types/source-list-map/index.d.ts","../../../../node_modules/.pnpm/@types+stack-utils@2.0.1/node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/.pnpm/@types+tapable@1.0.8/node_modules/@types/tapable/index.d.ts","../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+uglify-js@3.13.1/node_modules/@types/uglify-js/index.d.ts","../../../../node_modules/.pnpm/@types+uuid@8.3.1/node_modules/@types/uuid/index.d.ts","../../../../node_modules/.pnpm/anymatch@3.1.2/node_modules/anymatch/index.d.ts","../../../../node_modules/.pnpm/source-map@0.7.3/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/Source.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/index.d.ts","../../../../node_modules/.pnpm/@types+webpack@4.41.31/node_modules/@types/webpack/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-env@1.16.3/node_modules/@types/webpack-env/index.d.ts","../../../../node_modules/.pnpm/@types+ws@8.2.0/node_modules/@types/ws/index.d.ts","../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/.pnpm/@types+yargs@16.0.4/node_modules/@types/yargs/index.d.ts","../../../../node_modules/.pnpm/@types+yauzl@2.9.2/node_modules/@types/yauzl/index.d.ts","../../../../node_modules/.pnpm/@types+node@15.0.2/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"774044ef136a0988fcf57b36fd0985caa98fe385b5f9ee68a1731b7340b6aff4","a0b0a059575ca62004fb85797f078a0a1d044da2d5c29993f11e7ce08a1ed3b4","6527fbb9e589f6c5b3e6f45d240284d044d5530205dd7662b4a514a3bad427ce",{"version":"a3bc4f28500d2f4f6e174cb5f6c98dc6ddccf9078ace1508d6a8cce49bfdd046","affectsGlobalScope":true},{"version":"a5189085a767ea0ba85994cd7551ebefc7564c670b67d2de4be1f44d1a85d462","affectsGlobalScope":true},"65996936fbb042915f7b74a200fcdde7e410f32a669b1ab9597cfaa4b0faddb5",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"414bfceec07e8d48af9dfdac2608a905ddcd1bfd44233907c218de7d4b48a1f1","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"1119fa53c926c20e281cb27ca310a053daee51ff4d4105fbec8c95cbc51deba8","signature":"76e9a763eef4a0ef8a4f50e387b9fad5266d471d8b0f62619f31bbd3d21b9814"},{"version":"8ce84c30ed8e4ff9217beacd12b12344fc733ba4d759e016a6c2df97a172cfda","signature":"2bc449b91944ffae1f59471da701908ff793787f257f23b4ef71759acc97939f"},{"version":"7eac90ef192b864045a6dd3b86335efa4936c760ad79bb59ded05698683f7719","signature":"2fdfd9bf4d96a48a91bd7000ca5f2dece538ac75cb02e3d775b1cab039e3202b"},{"version":"b1096d58f6517057f746012925a47ec2d066d0c4143337982dc7f15467ca747e","signature":"809cd2debef3870c93afe5ddf02db6f18f4e223163bf252af70241de431f4465"},{"version":"5c64002b61cd883d2539c80ff4f245384bf64c33b5d7af40accbfbfe405a6011","signature":"192f0a08bcde6af8d548580b989557cc83d8c80cb297d9e2c98210e2231ad918"},{"version":"e7a67060180f7a26df5eb50bc0d146a97ba95ff352e40053ee133acbb1ec54d2","signature":"19fc07b31d401c27075277ed71154ab13c74ef43ab20898e7ae24de8d16fb172"},{"version":"d0606fc9b7309eef1022f066b55be926544edc47e0b211c60a54367daa7f1320","signature":"2bd4625ce452e0f25677c4d07430710c57d424ec2d33391debae18ea9a67a56a"},{"version":"ca88f615e9371cca54a59131cbbd0e679a1b98596f2cf850758e2c7441fb4f15","signature":"b48798e7ef7f2e4f7bd9e6dbdcb037b24ea8f2effbb4bdd4a9a05930f01d9fc7"},{"version":"e3bac02b563a2ebfb9784935f4a039531c7341c565d1c0707e65623578555e83","signature":"9e9ed85ced77a7b59d07a821d69db8a8e780bcd1caeb5623e6ac04401cba31c4"},{"version":"1ff0b5a9de5dd2ab9af8f3b2b0827aa5d819e2de0ac22ff9e83a4c7dc6971a2d","signature":"5bb98124699923216d110a22b43d9e8b0c43e7ccb2ae1e02a09b6b1b5382fd18"},{"version":"008737134d625686e97c45ca486b4ed4e6c28868558d36f49dba7541a7c66fcb","signature":"8c9dcce22b1ca949060604626499648f0350cd3bc6109d203075e807ebf5e41d"},{"version":"a99c1077087b4abc85ca07dd50900303ec387afad10c5851f0afac8a55552795","signature":"a99512700b64e0f6a2c92c1e684cf086342a092e49939404a3eb9dfaeb7bac7d"},{"version":"6ed0434b66c265567ba50989270a2a406c1c7290de0ca0606424c5209f15c14b","signature":"944cd92c6b59feb32961d560267393f372b1dcff1d6cd71a6230ba03f91036b5"},{"version":"f9dccb27c442d882186eb81a6613368994304a1e19c581ab2d169e449f41a3ba","signature":"314e888c6a1a1cc4d30295ebacece510231e4e4ee7028434aee277abda977baf"},{"version":"ce96cdf4ec7233fd29eef8a8c8236c259997010527d25124c64760e645377271","signature":"f6e30e59f4a1f0d0e6b231c280322ce9b007ff9c54fdb13b707e870430341778"},{"version":"2f377947a423abcfb75b0e27d9986021be894b808ffa7cfcfde8d1e3b8214c90","signature":"58861fcc3db99d3761938fad76882bb93f726eaddbc3342cced707d00f94f5bd"},{"version":"194018367f7ed61f1bdbd2ce5c7ab2f16fb2f235dee82de70510ad132f6d5890","signature":"bda7d503a370f6aef217e2f68a326d4a5c2d4cae43f8131c084f509c8ccb83a7"},{"version":"9a2d06df39b9eb74e5d947dd74943894a9ad56a46c86bf0940e63a550233c376","signature":"6194964a45d631834d96f0c91ea7041d7e15f94db83b217e92466adf1646b894"},{"version":"8ed0aa43fcdb631f96d19eb2d5d13f76c4fe347350d16fae5340b2269a2fa508","signature":"d53878a952ebe4cc9bef9b45b2852a3f9d231f983045488c3b23e86a5ffb5033"},{"version":"72089c32eb9f710aa510a6e8515f6ce34fcc25072156430c7657af8d273130be","signature":"aeaf16b65ffc10aa25e02f0e46f01ef269ce6ebbe637ba4a5fb2bdc532500955"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","5ee005d57eb5b0e887f8451463ac412dc22e6868534f51f061166311f6c8baf5",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},"dc688638e386342faae164e68ac0205274b6731e70ac1a45921f3ce3aa083795","d22e870fef25a052477d24f34356470262881420c8b058c89d86392de6502c42","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","8dc552d17d8515805274740c4902367436a73295c4109bc29f897f35b0604da7",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","8c2e6e491e1a08855b8bf70820184ff66ae0d43f7cf0311fc680e6d860af211c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","fa9859478a480a6dfe625d204d5a3a38810b60933ac2b36ba77126cace1d44d3","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e704d7faa97765900963ac1ef5c675cb4c354f2a7fc9fbc104052e14bd65d614","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","077b139efd1a6318805a8b24f05e7af37946d9bf9426bcb4866b45b61e6aac90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","fc60dd4cc43dfcc885eb2928d7464a32c16b7f1ea89e4d0f02937c18b0a67737","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","fa5c2d3fcd8e227e180815df0a0903ed4b116400452af8a75ac5b68e5e1de9da","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a","1a37d640c94c0215e62511590bac215dd0b3bfcc287a567fc5fe87ab10894754",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"60aaac5fb1858fbd4c4eb40e01706eb227eed9eca5c665564bd146971280dbd3","30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","cd6a7c1c2a6461c6868601ca2144a41f8ee6d4a85d4b4cf1deb651e6c2ebc9e5",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"d7a041dfebb4e5ab34e9a6771436bd96e9ad7c42728f89a87a0d77dcab766f56","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useDefineForClassFields":true},"fileIdsList":[[90,151],[151],[88,89,91,92,93,151],[88,151],[88,91,151],[96,151],[98,151],[104,105,151],[102,103,104,151],[123,124,151,158,159],[124,151,158],[151,162],[151,167],[151,168],[107,151],[151,172,174,175,176,177,178,179,180,181,182,183,184],[151,172,173,175,176,177,178,179,180,181,182,183,184],[151,173,174,175,176,177,178,179,180,181,182,183,184],[151,172,173,174,176,177,178,179,180,181,182,183,184],[151,172,173,174,175,177,178,179,180,181,182,183,184],[151,172,173,174,175,176,178,179,180,181,182,183,184],[151,172,173,174,175,176,177,179,180,181,182,183,184],[151,172,173,174,175,176,177,178,180,181,182,183,184],[151,172,173,174,175,176,177,178,179,181,182,183,184],[151,172,173,174,175,176,177,178,179,180,182,183,184],[151,172,173,174,175,176,177,178,179,180,181,183,184],[151,172,173,174,175,176,177,178,179,180,181,182,184],[151,172,173,174,175,176,177,178,179,180,181,182,183],[126,150,151,187,188,239],[108,151],[111,151],[112,117,151],[113,123,124,131,140,150,151],[113,114,123,131,151],[115,151],[116,117,124,132,151],[117,140,147,151],[118,120,123,131,151],[119,151],[120,121,151],[122,123,151],[123,151],[123,124,125,140,150,151],[123,124,125,140,151],[126,131,140,150,151],[123,124,126,127,131,140,147,150,151],[126,128,140,147,150,151],[108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[123,129,151],[130,150,151],[120,123,131,140,151],[132,151],[133,151],[111,134,151],[135,149,151,155],[136,151],[137,151],[123,138,151],[138,139,151,153],[123,140,141,142,151],[140,142,151],[140,141,151],[143,151],[144,151],[123,145,146,151],[145,146,151],[117,131,147,151],[148,151],[131,149,151],[112,126,137,150,151],[117,151],[140,151,152],[151,153],[151,154],[112,117,123,125,134,140,150,151,153,155],[140,151,156],[123,140,147,151,158,194,195,198,199],[65,151],[65,151,171],[65,151,204],[65,151,206],[151,206,207,208,209,210],[61,62,63,64,151],[151,216],[151,158,221,222,223,224,225,226,227,228,229,230,231],[151,220,221,230],[151,221,230],[151,213,220,221,230],[151,221],[117,151,220,230],[151,220,221,222,223,224,225,226,227,228,229,231],[117,151,158,215,216,217,219,232],[123,126,128,131,140,147,150,151,156,158],[151,236],[123,140,151,158],[126,140,151,158],[151,158,195,196,197],[151,158],[140,151,158,195],[58,151],[55,151],[56,151],[57,151],[59,151],[66,67,68,69,70,71,72,73,74,75,77,151],[65,66,151],[65,66,69,151],[66,68,151],[65,66,76,151],[66,76,78,85,151],[66,151],[66,79,80,81,82,83,84,151],[67,68,69,70,71,72,73,74,75,77],[76],[76,78,85],[79,80,81,82,83,84]],"referencedMap":[[91,1],[88,2],[90,2],[87,2],[94,3],[89,4],[92,5],[93,4],[95,2],[97,6],[96,2],[99,7],[98,2],[100,2],[101,2],[106,8],[102,2],[105,9],[104,2],[107,2],[160,10],[161,11],[163,12],[164,2],[165,2],[166,2],[167,2],[168,13],[169,14],[170,2],[103,2],[171,15],[173,16],[174,17],[172,18],[175,19],[176,20],[177,21],[178,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,12],[186,2],[159,2],[188,2],[189,29],[108,30],[109,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,40],[122,41],[123,42],[124,43],[125,44],[110,2],[157,2],[126,45],[127,46],[128,47],[158,48],[129,49],[130,50],[131,51],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[142,61],[141,62],[143,63],[144,64],[145,65],[146,66],[147,67],[148,68],[149,69],[150,70],[151,71],[152,72],[153,73],[154,74],[155,75],[156,76],[190,2],[191,42],[192,2],[193,2],[199,77],[200,2],[63,2],[201,2],[202,78],[203,79],[204,80],[205,78],[207,81],[209,78],[206,78],[208,81],[210,2],[211,82],[61,2],[65,83],[66,78],[212,2],[64,2],[213,2],[214,2],[215,2],[217,84],[162,2],[218,2],[234,2],[232,85],[231,86],[222,87],[223,88],[224,88],[225,87],[226,87],[227,87],[228,89],[221,90],[229,86],[230,91],[233,92],[235,93],[236,2],[237,94],[238,95],[219,2],[62,2],[187,96],[198,97],[195,98],[197,99],[196,98],[194,2],[216,2],[220,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[59,100],[56,101],[55,2],[57,102],[58,103],[60,104],[78,105],[67,106],[70,107],[69,108],[71,108],[72,106],[73,106],[74,106],[75,106],[68,106],[77,109],[86,110],[79,111],[80,111],[81,111],[85,112],[82,111],[83,111],[84,111],[76,111]],"exportedModulesMap":[[91,1],[88,2],[90,2],[87,2],[94,3],[89,4],[92,5],[93,4],[95,2],[97,6],[96,2],[99,7],[98,2],[100,2],[101,2],[106,8],[102,2],[105,9],[104,2],[107,2],[160,10],[161,11],[163,12],[164,2],[165,2],[166,2],[167,2],[168,13],[169,14],[170,2],[103,2],[171,15],[173,16],[174,17],[172,18],[175,19],[176,20],[177,21],[178,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,12],[186,2],[159,2],[188,2],[189,29],[108,30],[109,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,40],[122,41],[123,42],[124,43],[125,44],[110,2],[157,2],[126,45],[127,46],[128,47],[158,48],[129,49],[130,50],[131,51],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[142,61],[141,62],[143,63],[144,64],[145,65],[146,66],[147,67],[148,68],[149,69],[150,70],[151,71],[152,72],[153,73],[154,74],[155,75],[156,76],[190,2],[191,42],[192,2],[193,2],[199,77],[200,2],[63,2],[201,2],[202,78],[203,79],[204,80],[205,78],[207,81],[209,78],[206,78],[208,81],[210,2],[211,82],[61,2],[65,83],[66,78],[212,2],[64,2],[213,2],[214,2],[215,2],[217,84],[162,2],[218,2],[234,2],[232,85],[231,86],[222,87],[223,88],[224,88],[225,87],[226,87],[227,87],[228,89],[221,90],[229,86],[230,91],[233,92],[235,93],[236,2],[237,94],[238,95],[219,2],[62,2],[187,96],[198,97],[195,98],[197,99],[196,98],[194,2],[216,2],[220,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[59,100],[56,101],[55,2],[57,102],[58,103],[60,104],[78,113],[77,114],[86,115],[85,116]],"semanticDiagnosticsPerFile":[91,88,90,87,94,89,92,93,95,97,96,99,98,100,101,106,102,105,104,107,160,161,163,164,165,166,167,168,169,170,103,171,173,174,172,175,176,177,178,179,180,181,182,183,184,185,186,159,188,189,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,110,157,126,127,128,158,129,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,190,191,192,193,199,200,63,201,202,203,204,205,207,209,206,208,210,211,61,65,66,212,64,213,214,215,217,162,218,234,232,231,222,223,224,225,226,227,228,221,229,230,233,235,236,237,238,219,62,187,198,195,197,196,194,216,220,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,1,10,54,59,56,55,57,58,60,78,67,70,69,71,72,73,74,75,68,77,86,79,80,81,85,82,83,84,76]},"version":"4.7.4"}
1
+ {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/customEvent.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/hot.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/importGlob.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/importMeta.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/client.d.ts","../../src/ambient.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/global.d.ts","../../../../node_modules/.pnpm/csstype@3.0.11/node_modules/csstype/index.d.ts","../../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/index.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/jsx-runtime.d.ts","../../src/hooks/useAbortController.ts","../../src/hooks/usePreviousValue.ts","../../src/hooks/useConstantLengthInvariant.ts","../../src/hooks/useArrayMapMemo.ts","../../src/hooks/useConstantValueInvariant.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useForceRender.ts","../../src/hooks/useIsMounted.ts","../../src/hooks/useObjectMemo.ts","../../src/types.ts","../../src/hooks/useStoredState.ts","../../src/hooks/index.ts","../../src/referentiallyStable/emptyArray.ts","../../src/referentiallyStable/emptyObject.ts","../../src/referentiallyStable/identityFunction.ts","../../src/referentiallyStable/noop.ts","../../src/referentiallyStable/returnFalse.ts","../../src/referentiallyStable/returnTrue.ts","../../src/referentiallyStable/index.ts","../../src/index.ts","../../../../node_modules/.pnpm/@types+argparse@1.0.38/node_modules/@types/argparse/index.d.ts","../../../../node_modules/.pnpm/@babel+types@7.15.6/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@types+babel__generator@7.6.3/node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/.pnpm/@babel+types@7.17.10/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@babel+parser@7.15.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/index.d.ts","../../../../node_modules/.pnpm/@types+babel__traverse@7.14.2/node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/.pnpm/@types+babel__core@7.1.16/node_modules/@types/babel__core/index.d.ts","../../../../node_modules/.pnpm/@types+blueimp-md5@2.18.0/node_modules/@types/blueimp-md5/index.d.ts","../../../../node_modules/.pnpm/@types+chai@4.3.3/node_modules/@types/chai/index.d.ts","../../../../node_modules/.pnpm/@types+chai-subset@1.3.3/node_modules/@types/chai-subset/index.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/types.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/index.d.ts","../../../../node_modules/.pnpm/@types+cookie@0.4.1/node_modules/@types/cookie/index.d.ts","../../../../node_modules/.pnpm/@types+debounce@1.2.0/node_modules/@types/debounce/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.2/node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.2/node_modules/@types/eslint/index.d.ts","../../../../node_modules/.pnpm/@types+eslint-scope@3.7.3/node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/.pnpm/@types+geojson@7946.0.8/node_modules/@types/geojson/index.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../../node_modules/.pnpm/@types+glob@7.2.0/node_modules/@types/glob/index.d.ts","../../../../node_modules/.pnpm/@types+graceful-fs@4.1.5/node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/.pnpm/@types+unist@2.0.6/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+hast@2.3.4/node_modules/@types/hast/index.d.ts","../../../../node_modules/.pnpm/@types+html-minifier-terser@5.1.2/node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/.pnpm/@types+is-function@1.0.1/node_modules/@types/is-function/index.d.ts","../../../../node_modules/.pnpm/@types+is-hotkey@0.1.5/node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.3/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.0/node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-reports@3.0.1/node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/.pnpm/@types+js-levenshtein@1.1.0/node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/.pnpm/@types+leaflet@1.7.5/node_modules/@types/leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@3.0.10/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/@types+mime@2.0.3/node_modules/@types/mime/index.d.ts","../../../../node_modules/.pnpm/form-data@3.0.1/node_modules/form-data/index.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/.pnpm/@types+npmlog@4.1.3/node_modules/@types/npmlog/index.d.ts","../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../../../node_modules/.pnpm/@types+parse5@5.0.3/node_modules/@types/parse5/index.d.ts","../../../../node_modules/.pnpm/pg-types@2.2.0/node_modules/pg-types/index.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/.pnpm/@types+pg@8.6.5/node_modules/@types/pg/index.d.ts","../../../../node_modules/.pnpm/@types+pretty-hrtime@1.0.1/node_modules/@types/pretty-hrtime/index.d.ts","../../../../node_modules/.pnpm/@types+qs@6.9.7/node_modules/@types/qs/index.d.ts","../../../../node_modules/.pnpm/@types+react-dom@17.0.9/node_modules/@types/react-dom/index.d.ts","../../../../node_modules/.pnpm/@types+react-leaflet@2.8.2/node_modules/@types/react-leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+react-syntax-highlighter@11.0.5/node_modules/@types/react-syntax-highlighter/index.d.ts","../../../../node_modules/.pnpm/@types+react-test-renderer@17.0.1/node_modules/@types/react-test-renderer/index.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/Transition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/config.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/index.d.ts","../../../../node_modules/.pnpm/@types+source-list-map@0.1.2/node_modules/@types/source-list-map/index.d.ts","../../../../node_modules/.pnpm/@types+stack-utils@2.0.1/node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/.pnpm/@types+tapable@1.0.8/node_modules/@types/tapable/index.d.ts","../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+uglify-js@3.13.1/node_modules/@types/uglify-js/index.d.ts","../../../../node_modules/.pnpm/@types+uuid@8.3.1/node_modules/@types/uuid/index.d.ts","../../../../node_modules/.pnpm/anymatch@3.1.2/node_modules/anymatch/index.d.ts","../../../../node_modules/.pnpm/source-map@0.7.3/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/Source.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/index.d.ts","../../../../node_modules/.pnpm/@types+webpack@4.41.31/node_modules/@types/webpack/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-env@1.16.3/node_modules/@types/webpack-env/index.d.ts","../../../../node_modules/.pnpm/@types+ws@8.2.0/node_modules/@types/ws/index.d.ts","../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/.pnpm/@types+yargs@16.0.4/node_modules/@types/yargs/index.d.ts","../../../../node_modules/.pnpm/@types+yauzl@2.9.2/node_modules/@types/yauzl/index.d.ts","../../../../node_modules/.pnpm/@types+node@15.0.2/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","a0b0a059575ca62004fb85797f078a0a1d044da2d5c29993f11e7ce08a1ed3b4","bd668758155705240608e67d5664e5a34f2ec38724c95272dc134ce3c150dfe1","3cead9ca29f12a4887d2000124caaabe24b8146578b8630890001e7a9cdaa735",{"version":"440b4cd1c4971816554d6f424ba4fa23505c25f321681be32f266f87c4583f4d","affectsGlobalScope":true},{"version":"28d6c4339ab97f4c9fa035bfe6e58b16d7367f2eeeba53c8ef159b904381d4e3","affectsGlobalScope":true},"65996936fbb042915f7b74a200fcdde7e410f32a669b1ab9597cfaa4b0faddb5",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"414bfceec07e8d48af9dfdac2608a905ddcd1bfd44233907c218de7d4b48a1f1","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"1119fa53c926c20e281cb27ca310a053daee51ff4d4105fbec8c95cbc51deba8","signature":"76e9a763eef4a0ef8a4f50e387b9fad5266d471d8b0f62619f31bbd3d21b9814"},{"version":"8ce84c30ed8e4ff9217beacd12b12344fc733ba4d759e016a6c2df97a172cfda","signature":"2bc449b91944ffae1f59471da701908ff793787f257f23b4ef71759acc97939f"},{"version":"7eac90ef192b864045a6dd3b86335efa4936c760ad79bb59ded05698683f7719","signature":"2fdfd9bf4d96a48a91bd7000ca5f2dece538ac75cb02e3d775b1cab039e3202b"},{"version":"b1096d58f6517057f746012925a47ec2d066d0c4143337982dc7f15467ca747e","signature":"809cd2debef3870c93afe5ddf02db6f18f4e223163bf252af70241de431f4465"},{"version":"5c64002b61cd883d2539c80ff4f245384bf64c33b5d7af40accbfbfe405a6011","signature":"192f0a08bcde6af8d548580b989557cc83d8c80cb297d9e2c98210e2231ad918"},{"version":"e7a67060180f7a26df5eb50bc0d146a97ba95ff352e40053ee133acbb1ec54d2","signature":"19fc07b31d401c27075277ed71154ab13c74ef43ab20898e7ae24de8d16fb172"},{"version":"d0606fc9b7309eef1022f066b55be926544edc47e0b211c60a54367daa7f1320","signature":"2bd4625ce452e0f25677c4d07430710c57d424ec2d33391debae18ea9a67a56a"},{"version":"ca88f615e9371cca54a59131cbbd0e679a1b98596f2cf850758e2c7441fb4f15","signature":"b48798e7ef7f2e4f7bd9e6dbdcb037b24ea8f2effbb4bdd4a9a05930f01d9fc7"},{"version":"e3bac02b563a2ebfb9784935f4a039531c7341c565d1c0707e65623578555e83","signature":"9e9ed85ced77a7b59d07a821d69db8a8e780bcd1caeb5623e6ac04401cba31c4"},{"version":"1ff0b5a9de5dd2ab9af8f3b2b0827aa5d819e2de0ac22ff9e83a4c7dc6971a2d","signature":"5bb98124699923216d110a22b43d9e8b0c43e7ccb2ae1e02a09b6b1b5382fd18"},{"version":"008737134d625686e97c45ca486b4ed4e6c28868558d36f49dba7541a7c66fcb","signature":"8c9dcce22b1ca949060604626499648f0350cd3bc6109d203075e807ebf5e41d"},{"version":"a99c1077087b4abc85ca07dd50900303ec387afad10c5851f0afac8a55552795","signature":"a99512700b64e0f6a2c92c1e684cf086342a092e49939404a3eb9dfaeb7bac7d"},{"version":"6ed0434b66c265567ba50989270a2a406c1c7290de0ca0606424c5209f15c14b","signature":"944cd92c6b59feb32961d560267393f372b1dcff1d6cd71a6230ba03f91036b5"},{"version":"f9dccb27c442d882186eb81a6613368994304a1e19c581ab2d169e449f41a3ba","signature":"314e888c6a1a1cc4d30295ebacece510231e4e4ee7028434aee277abda977baf"},{"version":"ce96cdf4ec7233fd29eef8a8c8236c259997010527d25124c64760e645377271","signature":"f6e30e59f4a1f0d0e6b231c280322ce9b007ff9c54fdb13b707e870430341778"},{"version":"2f377947a423abcfb75b0e27d9986021be894b808ffa7cfcfde8d1e3b8214c90","signature":"58861fcc3db99d3761938fad76882bb93f726eaddbc3342cced707d00f94f5bd"},{"version":"194018367f7ed61f1bdbd2ce5c7ab2f16fb2f235dee82de70510ad132f6d5890","signature":"bda7d503a370f6aef217e2f68a326d4a5c2d4cae43f8131c084f509c8ccb83a7"},{"version":"9a2d06df39b9eb74e5d947dd74943894a9ad56a46c86bf0940e63a550233c376","signature":"6194964a45d631834d96f0c91ea7041d7e15f94db83b217e92466adf1646b894"},{"version":"8ed0aa43fcdb631f96d19eb2d5d13f76c4fe347350d16fae5340b2269a2fa508","signature":"d53878a952ebe4cc9bef9b45b2852a3f9d231f983045488c3b23e86a5ffb5033"},{"version":"72089c32eb9f710aa510a6e8515f6ce34fcc25072156430c7657af8d273130be","signature":"aeaf16b65ffc10aa25e02f0e46f01ef269ce6ebbe637ba4a5fb2bdc532500955"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","5ee005d57eb5b0e887f8451463ac412dc22e6868534f51f061166311f6c8baf5",{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},"dc688638e386342faae164e68ac0205274b6731e70ac1a45921f3ce3aa083795","d22e870fef25a052477d24f34356470262881420c8b058c89d86392de6502c42","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","8dc552d17d8515805274740c4902367436a73295c4109bc29f897f35b0604da7",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","8c2e6e491e1a08855b8bf70820184ff66ae0d43f7cf0311fc680e6d860af211c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","fa9859478a480a6dfe625d204d5a3a38810b60933ac2b36ba77126cace1d44d3","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e704d7faa97765900963ac1ef5c675cb4c354f2a7fc9fbc104052e14bd65d614","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","077b139efd1a6318805a8b24f05e7af37946d9bf9426bcb4866b45b61e6aac90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","fc60dd4cc43dfcc885eb2928d7464a32c16b7f1ea89e4d0f02937c18b0a67737","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","fa5c2d3fcd8e227e180815df0a0903ed4b116400452af8a75ac5b68e5e1de9da","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a","1a37d640c94c0215e62511590bac215dd0b3bfcc287a567fc5fe87ab10894754",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"60aaac5fb1858fbd4c4eb40e01706eb227eed9eca5c665564bd146971280dbd3","30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","cd6a7c1c2a6461c6868601ca2144a41f8ee6d4a85d4b4cf1deb651e6c2ebc9e5",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"d7a041dfebb4e5ab34e9a6771436bd96e9ad7c42728f89a87a0d77dcab766f56","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useDefineForClassFields":true},"fileIdsList":[[91,152],[152],[89,90,92,93,94,152],[89,152],[89,92,152],[97,152],[99,152],[105,106,152],[103,104,105,152],[124,125,152,159,160],[125,152,159],[152,163],[152,168],[152,169],[108,152],[152,173,175,176,177,178,179,180,181,182,183,184,185],[152,173,174,176,177,178,179,180,181,182,183,184,185],[152,174,175,176,177,178,179,180,181,182,183,184,185],[152,173,174,175,177,178,179,180,181,182,183,184,185],[152,173,174,175,176,178,179,180,181,182,183,184,185],[152,173,174,175,176,177,179,180,181,182,183,184,185],[152,173,174,175,176,177,178,180,181,182,183,184,185],[152,173,174,175,176,177,178,179,181,182,183,184,185],[152,173,174,175,176,177,178,179,180,182,183,184,185],[152,173,174,175,176,177,178,179,180,181,183,184,185],[152,173,174,175,176,177,178,179,180,181,182,184,185],[152,173,174,175,176,177,178,179,180,181,182,183,185],[152,173,174,175,176,177,178,179,180,181,182,183,184],[127,151,152,188,189,240],[109,152],[112,152],[113,118,152],[114,124,125,132,141,151,152],[114,115,124,132,152],[116,152],[117,118,125,133,152],[118,141,148,152],[119,121,124,132,152],[120,152],[121,122,152],[123,124,152],[124,152],[124,125,126,141,151,152],[124,125,126,141,152],[127,132,141,151,152],[124,125,127,128,132,141,148,151,152],[127,129,141,148,151,152],[109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[124,130,152],[131,151,152],[121,124,132,141,152],[133,152],[134,152],[112,135,152],[136,150,152,156],[137,152],[138,152],[124,139,152],[139,140,152,154],[124,141,142,143,152],[141,143,152],[141,142,152],[144,152],[145,152],[124,146,147,152],[146,147,152],[118,132,148,152],[149,152],[132,150,152],[113,127,138,151,152],[118,152],[141,152,153],[152,154],[152,155],[113,118,124,126,135,141,151,152,154,156],[141,152,157],[124,141,148,152,159,195,196,199,200],[66,152],[66,152,172],[66,152,205],[66,152,207],[152,207,208,209,210,211],[62,63,64,65,152],[152,217],[152,159,222,223,224,225,226,227,228,229,230,231,232],[152,221,222,231],[152,222,231],[152,214,221,222,231],[152,222],[118,152,221,231],[152,221,222,223,224,225,226,227,228,229,230,232],[118,152,159,216,217,218,220,233],[124,127,129,132,141,148,151,152,157,159],[152,237],[124,141,152,159],[127,141,152,159],[152,159,196,197,198],[152,159],[141,152,159,196],[59,152],[55,152],[56,152],[57,58,152],[60,152],[67,68,69,70,71,72,73,74,75,76,78,152],[66,67,152],[66,67,70,152],[67,69,152],[66,67,77,152],[67,77,79,86,152],[67,152],[67,80,81,82,83,84,85,152],[68,69,70,71,72,73,74,75,76,78],[77],[77,79,86],[80,81,82,83,84,85]],"referencedMap":[[92,1],[89,2],[91,2],[88,2],[95,3],[90,4],[93,5],[94,4],[96,2],[98,6],[97,2],[100,7],[99,2],[101,2],[102,2],[107,8],[103,2],[106,9],[105,2],[108,2],[161,10],[162,11],[164,12],[165,2],[166,2],[167,2],[168,2],[169,13],[170,14],[171,2],[104,2],[172,15],[174,16],[175,17],[173,18],[176,19],[177,20],[178,21],[179,22],[180,23],[181,24],[182,25],[183,26],[184,27],[185,28],[186,12],[187,2],[160,2],[189,2],[190,29],[109,30],[110,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,39],[121,40],[122,40],[123,41],[124,42],[125,43],[126,44],[111,2],[158,2],[127,45],[128,46],[129,47],[159,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[139,58],[140,59],[141,60],[143,61],[142,62],[144,63],[145,64],[146,65],[147,66],[148,67],[149,68],[150,69],[151,70],[152,71],[153,72],[154,73],[155,74],[156,75],[157,76],[191,2],[192,42],[193,2],[194,2],[200,77],[201,2],[64,2],[202,2],[203,78],[204,79],[205,80],[206,78],[208,81],[210,78],[207,78],[209,81],[211,2],[212,82],[62,2],[66,83],[67,78],[213,2],[65,2],[214,2],[215,2],[216,2],[218,84],[163,2],[219,2],[235,2],[233,85],[232,86],[223,87],[224,88],[225,88],[226,87],[227,87],[228,87],[229,89],[222,90],[230,86],[231,91],[234,92],[236,93],[237,2],[238,94],[239,95],[220,2],[63,2],[188,96],[199,97],[196,98],[198,99],[197,98],[195,2],[217,2],[221,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[60,100],[56,101],[55,2],[57,102],[58,2],[59,103],[61,104],[79,105],[68,106],[71,107],[70,108],[72,108],[73,106],[74,106],[75,106],[76,106],[69,106],[78,109],[87,110],[80,111],[81,111],[82,111],[86,112],[83,111],[84,111],[85,111],[77,111]],"exportedModulesMap":[[92,1],[89,2],[91,2],[88,2],[95,3],[90,4],[93,5],[94,4],[96,2],[98,6],[97,2],[100,7],[99,2],[101,2],[102,2],[107,8],[103,2],[106,9],[105,2],[108,2],[161,10],[162,11],[164,12],[165,2],[166,2],[167,2],[168,2],[169,13],[170,14],[171,2],[104,2],[172,15],[174,16],[175,17],[173,18],[176,19],[177,20],[178,21],[179,22],[180,23],[181,24],[182,25],[183,26],[184,27],[185,28],[186,12],[187,2],[160,2],[189,2],[190,29],[109,30],[110,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,39],[121,40],[122,40],[123,41],[124,42],[125,43],[126,44],[111,2],[158,2],[127,45],[128,46],[129,47],[159,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[139,58],[140,59],[141,60],[143,61],[142,62],[144,63],[145,64],[146,65],[147,66],[148,67],[149,68],[150,69],[151,70],[152,71],[153,72],[154,73],[155,74],[156,75],[157,76],[191,2],[192,42],[193,2],[194,2],[200,77],[201,2],[64,2],[202,2],[203,78],[204,79],[205,80],[206,78],[208,81],[210,78],[207,78],[209,81],[211,2],[212,82],[62,2],[66,83],[67,78],[213,2],[65,2],[214,2],[215,2],[216,2],[218,84],[163,2],[219,2],[235,2],[233,85],[232,86],[223,87],[224,88],[225,88],[226,87],[227,87],[228,87],[229,89],[222,90],[230,86],[231,91],[234,92],[236,93],[237,2],[238,94],[239,95],[220,2],[63,2],[188,96],[199,97],[196,98],[198,99],[197,98],[195,2],[217,2],[221,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[60,100],[56,101],[55,2],[57,102],[58,2],[59,103],[61,104],[79,113],[78,114],[87,115],[86,116]],"semanticDiagnosticsPerFile":[92,89,91,88,95,90,93,94,96,98,97,100,99,101,102,107,103,106,105,108,161,162,164,165,166,167,168,169,170,171,104,172,174,175,173,176,177,178,179,180,181,182,183,184,185,186,187,160,189,190,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,111,158,127,128,129,159,130,131,132,133,134,135,136,137,138,139,140,141,143,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,191,192,193,194,200,201,64,202,203,204,205,206,208,210,207,209,211,212,62,66,67,213,65,214,215,216,218,163,219,235,233,232,223,224,225,226,227,228,229,222,230,231,234,236,237,238,239,220,63,188,199,196,198,197,195,217,221,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,1,10,54,60,56,55,57,58,59,61,79,68,71,70,72,73,74,75,76,69,78,87,80,81,82,86,83,84,85,77]},"version":"4.7.4"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@contember/react-utils",
3
3
  "license": "Apache-2.0",
4
- "version": "1.1.0-alpha.13",
4
+ "version": "1.1.0-alpha.15",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/production/index.js",