@khanacademy/wonder-blocks-clickable 2.4.4 → 2.4.6

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 (30) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/components/clickable-behavior.d.ts +248 -0
  3. package/dist/components/clickable-behavior.js.flow +296 -0
  4. package/dist/components/clickable.d.ts +150 -0
  5. package/dist/components/clickable.js.flow +176 -0
  6. package/dist/es/index.js +147 -147
  7. package/dist/index.d.ts +7 -0
  8. package/dist/index.js +169 -171
  9. package/dist/index.js.flow +18 -2
  10. package/dist/util/get-clickable-behavior.d.ts +25 -0
  11. package/dist/util/get-clickable-behavior.js.flow +19 -0
  12. package/dist/util/is-client-side-url.d.ts +7 -0
  13. package/dist/util/is-client-side-url.js.flow +14 -0
  14. package/package.json +5 -5
  15. package/src/components/__tests__/{clickable-behavior.test.js → clickable-behavior.test.tsx} +140 -84
  16. package/src/components/__tests__/{clickable.test.js → clickable.test.tsx} +28 -27
  17. package/src/components/{clickable-behavior.js → clickable-behavior.ts} +82 -104
  18. package/src/components/{clickable.js → clickable.tsx} +111 -168
  19. package/src/{index.js → index.ts} +5 -6
  20. package/src/util/__tests__/{get-clickable-behavior.test.js → get-clickable-behavior.test.tsx} +2 -3
  21. package/src/util/__tests__/{is-client-side-url.js.test.js → is-client-side-url.js.test.ts} +3 -4
  22. package/src/util/{get-clickable-behavior.js → get-clickable-behavior.ts} +11 -5
  23. package/src/util/{is-client-side-url.js → is-client-side-url.ts} +0 -1
  24. package/tsconfig.json +12 -0
  25. package/tsconfig.tsbuildinfo +1 -0
  26. package/src/components/__docs__/accessibility.stories.mdx +0 -152
  27. package/src/components/__docs__/clickable-behavior.argtypes.js +0 -64
  28. package/src/components/__docs__/clickable-behavior.stories.js +0 -178
  29. package/src/components/__docs__/clickable.argtypes.js +0 -237
  30. package/src/components/__docs__/clickable.stories.js +0 -307
@@ -1,4 +1,3 @@
1
- // @flow
2
1
  import * as React from "react";
3
2
  import {StyleSheet} from "aphrodite";
4
3
  import {Link} from "react-router-dom";
@@ -8,175 +7,117 @@ import {addStyle} from "@khanacademy/wonder-blocks-core";
8
7
  import type {AriaProps, StyleType} from "@khanacademy/wonder-blocks-core";
9
8
  import Color from "@khanacademy/wonder-blocks-color";
10
9
 
11
- import getClickableBehavior from "../util/get-clickable-behavior.js";
12
- import type {ClickableRole, ClickableState} from "./clickable-behavior.js";
13
- import {isClientSideUrl} from "../util/is-client-side-url.js";
10
+ import getClickableBehavior from "../util/get-clickable-behavior";
11
+ import type {ClickableRole, ClickableState} from "./clickable-behavior";
12
+ import {isClientSideUrl} from "../util/is-client-side-url";
14
13
 
15
- type CommonProps = {|
14
+ // TODO(FEI-5000): Convert back to conditional props after TS migration is complete.
15
+ type Props =
16
16
  /**
17
17
  * aria-label should be used when `spinner={true}` to let people using screen
18
18
  * readers that the action taken by clicking the button will take some
19
19
  * time to complete.
20
20
  */
21
- ...$Rest<AriaProps, {|"aria-disabled": "true" | "false" | void|}>,
22
-
23
- /**
24
- * The child of Clickable must be a function which returns the component
25
- * which should be made Clickable. The function is passed an object with
26
- * three boolean properties: hovered, focused, and pressed.
27
- */
28
- children: (ClickableState) => React.Node,
29
-
30
- /**
31
- * An onClick function which Clickable can execute when clicked
32
- */
33
- onClick?: (e: SyntheticEvent<>) => mixed,
34
-
35
- /**
36
- * Optional href which Clickable should direct to, uses client-side routing
37
- * by default if react-router is present
38
- */
39
- href?: string,
40
-
41
- /**
42
- * Styles to apply to the Clickable component
43
- */
44
- style?: StyleType,
45
-
46
- /**
47
- * Adds CSS classes to the Clickable.
48
- */
49
- className?: string,
50
-
51
- /**
52
- * Whether the Clickable is on a dark colored background.
53
- * Sets the default focus ring color to white, instead of blue.
54
- * Defaults to false.
55
- */
56
- light: boolean,
57
-
58
- /**
59
- * Disables or enables the child; defaults to false
60
- */
61
- disabled: boolean,
62
-
63
- /**
64
- * An optional id attribute.
65
- */
66
- id?: string,
67
-
68
- /**
69
- * Specifies the type of relationship between the current document and the
70
- * linked document. Should only be used when `href` is specified. This
71
- * defaults to "noopener noreferrer" when `target="_blank"`, but can be
72
- * overridden by setting this prop to something else.
73
- */
74
- rel?: string,
75
-
76
- /**
77
- * The role of the component, can be a role of type ClickableRole
78
- */
79
- role?: ClickableRole,
80
-
81
- /**
82
- * Avoids client-side routing in the presence of the href prop
83
- */
84
- skipClientNav?: boolean,
85
-
86
- /**
87
- * Test ID used for e2e testing.
88
- */
89
- testId?: string,
90
-
91
- /**
92
- * Respond to raw "keydown" event.
93
- */
94
- onKeyDown?: (e: SyntheticKeyboardEvent<>) => mixed,
95
-
96
- /**
97
- * Respond to raw "keyup" event.
98
- */
99
- onKeyUp?: (e: SyntheticKeyboardEvent<>) => mixed,
100
-
101
- /**
102
- * Don't show the default focus ring. This should be used when implementing
103
- * a custom focus ring within your own component that uses Clickable.
104
- */
105
- hideDefaultFocusRing?: boolean,
106
- |};
107
-
108
- type Props =
109
- | {|
110
- ...CommonProps,
111
-
112
- /**
113
- * A target destination window for a link to open in.
114
- *
115
- * TODO(WB-1262): only allow this prop when `href` is also set.t
116
- */
117
- target?: "_blank",
118
- |}
119
- | {|
120
- ...CommonProps,
121
-
122
- href: string,
123
-
124
- /**
125
- * Run async code before navigating. If the promise returned rejects then
126
- * navigation will not occur.
127
- *
128
- * If both safeWithNav and beforeNav are provided, beforeNav will be run
129
- * first and safeWithNav will only be run if beforeNav does not reject.
130
- */
131
- beforeNav: () => Promise<mixed>,
132
- |}
133
- | {|
134
- ...CommonProps,
135
-
136
- href: string,
137
-
138
- /**
139
- * Run async code in the background while client-side navigating. If the
140
- * browser does a full page load navigation, the callback promise must be
141
- * settled before the navigation will occur. Errors are ignored so that
142
- * navigation is guaranteed to succeed.
143
- */
144
- safeWithNav: () => Promise<mixed>,
145
-
146
- /**
147
- * A target destination window for a link to open in.
148
- *
149
- * TODO(WB-1262): only allow this prop when `href` is also set.t
150
- */
151
- target?: "_blank",
152
- |}
153
- | {|
154
- ...CommonProps,
155
-
156
- href: string,
157
-
158
- /**
159
- * Run async code before navigating. If the promise returned rejects then
160
- * navigation will not occur.
161
- *
162
- * If both safeWithNav and beforeNav are provided, beforeNav will be run
163
- * first and safeWithNav will only be run if beforeNav does not reject.
164
- */
165
- beforeNav: () => Promise<mixed>,
166
-
167
- /**
168
- * Run async code in the background while client-side navigating. If the
169
- * browser does a full page load navigation, the callback promise must be
170
- * settled before the navigation will occur. Errors are ignored so that
171
- * navigation is guaranteed to succeed.
172
- */
173
- safeWithNav: () => Promise<mixed>,
174
- |};
21
+ Partial<Omit<AriaProps, "aria-disabled">> & {
22
+ /**
23
+ * The child of Clickable must be a function which returns the component
24
+ * which should be made Clickable. The function is passed an object with
25
+ * three boolean properties: hovered, focused, and pressed.
26
+ */
27
+ children: (arg1: ClickableState) => React.ReactNode;
28
+ /**
29
+ * An onClick function which Clickable can execute when clicked
30
+ */
31
+ onClick?: (e: React.SyntheticEvent) => unknown;
32
+ /**
33
+ * Optional href which Clickable should direct to, uses client-side routing
34
+ * by default if react-router is present
35
+ */
36
+ href?: string;
37
+ /**
38
+ * Styles to apply to the Clickable component
39
+ */
40
+ style?: StyleType;
41
+ /**
42
+ * Adds CSS classes to the Clickable.
43
+ */
44
+ className?: string;
45
+ /**
46
+ * Whether the Clickable is on a dark colored background.
47
+ * Sets the default focus ring color to white, instead of blue.
48
+ * Defaults to false.
49
+ */
50
+ light: boolean;
51
+ /**
52
+ * Disables or enables the child; defaults to false
53
+ */
54
+ disabled: boolean;
55
+ /**
56
+ * An optional id attribute.
57
+ */
58
+ id?: string;
59
+ /**
60
+ * Specifies the type of relationship between the current document and the
61
+ * linked document. Should only be used when `href` is specified. This
62
+ * defaults to "noopener noreferrer" when `target="_blank"`, but can be
63
+ * overridden by setting this prop to something else.
64
+ */
65
+ rel?: string;
66
+ /**
67
+ * The role of the component, can be a role of type ClickableRole
68
+ */
69
+ role?: ClickableRole;
70
+ /**
71
+ * Avoids client-side routing in the presence of the href prop
72
+ */
73
+ skipClientNav?: boolean;
74
+ /**
75
+ * Test ID used for e2e testing.
76
+ */
77
+ testId?: string;
78
+ /**
79
+ * Respond to raw "keydown" event.
80
+ */
81
+ onKeyDown?: (e: React.KeyboardEvent) => unknown;
82
+ /**
83
+ * Respond to raw "keyup" event.
84
+ */
85
+ onKeyUp?: (e: React.KeyboardEvent) => unknown;
86
+ /**
87
+ * Don't show the default focus ring. This should be used when implementing
88
+ * a custom focus ring within your own component that uses Clickable.
89
+ */
90
+ hideDefaultFocusRing?: boolean;
91
+ /**
92
+ * A target destination window for a link to open in.
93
+ *
94
+ * TODO(WB-1262): only allow this prop when `href` is also set.t
95
+ */
96
+ target?: "_blank";
97
+ /**
98
+ * Run async code before navigating. If the promise returned rejects then
99
+ * navigation will not occur.
100
+ *
101
+ * If both safeWithNav and beforeNav are provided, beforeNav will be run
102
+ * first and safeWithNav will only be run if beforeNav does not reject.
103
+ *
104
+ * WARNING: This prop must be used with `href` and should not be used with
105
+ * `target="blank"`.
106
+ */
107
+ beforeNav?: () => Promise<unknown>;
108
+ /**
109
+ * Run async code in the background while client-side navigating. If the
110
+ * browser does a full page load navigation, the callback promise must be
111
+ * settled before the navigation will occur. Errors are ignored so that
112
+ * navigation is guaranteed to succeed.
113
+ */
114
+ safeWithNav?: () => Promise<unknown>;
115
+ };
175
116
 
176
- type DefaultProps = {|
177
- light: $PropertyType<Props, "light">,
178
- disabled: $PropertyType<Props, "disabled">,
179
- |};
117
+ type DefaultProps = {
118
+ light: Props["light"];
119
+ disabled: Props["disabled"];
120
+ };
180
121
 
181
122
  const StyledAnchor = addStyle<"a">("a");
182
123
  const StyledButton = addStyle<"button">("button");
@@ -224,15 +165,17 @@ export default class Clickable extends React.Component<Props> {
224
165
  getCorrectTag: (
225
166
  clickableState: ClickableState,
226
167
  router: any,
227
- commonProps: {[string]: any, ...},
228
- ) => React.Node = (clickableState, router, commonProps) => {
168
+ commonProps: {
169
+ [key: string]: any;
170
+ },
171
+ ) => React.ReactElement = (clickableState, router, commonProps) => {
229
172
  const activeHref = this.props.href && !this.props.disabled;
230
173
  const useClient =
231
174
  router &&
232
175
  !this.props.skipClientNav &&
233
176
  isClientSideUrl(this.props.href || "");
234
177
 
235
- // NOTE: checking this.props.href here is redundant, but flow
178
+ // NOTE: checking this.props.href here is redundant, but TypeScript
236
179
  // needs it to refine this.props.href to a string.
237
180
  if (activeHref && useClient && this.props.href) {
238
181
  return (
@@ -271,7 +214,7 @@ export default class Clickable extends React.Component<Props> {
271
214
  }
272
215
  };
273
216
 
274
- renderClickableBehavior(router: any): React.Node {
217
+ renderClickableBehavior(router: any): React.ReactNode {
275
218
  const {
276
219
  href,
277
220
  onClick,
@@ -349,7 +292,7 @@ export default class Clickable extends React.Component<Props> {
349
292
  }
350
293
  }
351
294
 
352
- render(): React.Node {
295
+ render(): React.ReactElement {
353
296
  return (
354
297
  <__RouterContext.Consumer>
355
298
  {(router) => this.renderClickableBehavior(router)}
@@ -1,14 +1,13 @@
1
- // @flow
2
1
  import type {
3
2
  ChildrenProps,
4
3
  ClickableState,
5
4
  ClickableRole,
6
- } from "./components/clickable-behavior.js";
7
- import Clickable from "./components/clickable.js";
5
+ } from "./components/clickable-behavior";
6
+ import Clickable from "./components/clickable";
8
7
 
9
- export {default as ClickableBehavior} from "./components/clickable-behavior.js";
10
- export {default as getClickableBehavior} from "./util/get-clickable-behavior.js";
11
- export {isClientSideUrl} from "./util/is-client-side-url.js";
8
+ export {default as ClickableBehavior} from "./components/clickable-behavior";
9
+ export {default as getClickableBehavior} from "./util/get-clickable-behavior";
10
+ export {isClientSideUrl} from "./util/is-client-side-url";
12
11
 
13
12
  export {Clickable as default};
14
13
 
@@ -1,8 +1,7 @@
1
- // @flow
2
1
  import * as React from "react";
3
2
  import {MemoryRouter} from "react-router-dom";
4
- import ClickableBehavior from "../../components/clickable-behavior.js";
5
- import getClickableBehavior from "../get-clickable-behavior.js";
3
+ import ClickableBehavior from "../../components/clickable-behavior";
4
+ import getClickableBehavior from "../get-clickable-behavior";
6
5
 
7
6
  describe("getClickableBehavior", () => {
8
7
  test("Without href, returns ClickableBehavior", () => {
@@ -1,5 +1,4 @@
1
- // @flow
2
- import {isClientSideUrl} from "../is-client-side-url.js";
1
+ import {isClientSideUrl} from "../is-client-side-url";
3
2
 
4
3
  describe("isClientSideUrl", () => {
5
4
  test("returns boolean based on the url", () => {
@@ -42,9 +41,9 @@ describe("isClientSideUrl", () => {
42
41
  });
43
42
 
44
43
  test("invalid values for 'href' should return false", () => {
45
- // $FlowIgnore: testing invalid input
44
+ // @ts-expect-error [FEI-5019] - TS2345 - Argument of type 'null' is not assignable to parameter of type 'string'.
46
45
  expect(isClientSideUrl(null)).toEqual(false);
47
- // $FlowIgnore: testing invalid input
46
+ // @ts-expect-error [FEI-5019] - TS2345 - Argument of type 'undefined' is not assignable to parameter of type 'string'.
48
47
  expect(isClientSideUrl(undefined)).toEqual(false);
49
48
  });
50
49
  });
@@ -1,4 +1,3 @@
1
- // @flow
2
1
  /**
3
2
  * Returns either the default ClickableBehavior or a react-router aware version.
4
3
  *
@@ -12,9 +11,10 @@
12
11
  import * as React from "react";
13
12
  import {withRouter} from "react-router-dom";
14
13
 
15
- import ClickableBehavior from "../components/clickable-behavior.js";
16
- import {isClientSideUrl} from "./is-client-side-url.js";
14
+ import ClickableBehavior from "../components/clickable-behavior";
15
+ import {isClientSideUrl} from "./is-client-side-url";
17
16
 
17
+ // @ts-expect-error [FEI-5019] - TS2345 - Argument of type 'typeof ClickableBehavior' is not assignable to parameter of type 'ComponentType<RouteComponentProps<any, StaticContext, unknown>>'.
18
18
  const ClickableBehaviorWithRouter = withRouter(ClickableBehavior);
19
19
 
20
20
  export default function getClickableBehavior(
@@ -30,14 +30,20 @@ export default function getClickableBehavior(
30
30
  * router object added to the React context object by react-router-dom.
31
31
  */
32
32
  router?: any,
33
- ): React.ComponentType<React.ElementConfig<typeof ClickableBehavior>> {
33
+ ): React.ComponentType<
34
+ JSX.LibraryManagedAttributes<
35
+ typeof ClickableBehavior,
36
+ React.ComponentProps<typeof ClickableBehavior>
37
+ >
38
+ > {
34
39
  if (router && skipClientNav !== true && href && isClientSideUrl(href)) {
35
40
  // We cast to `any` here since the type of ClickableBehaviorWithRouter
36
41
  // is slightly different from the return type of this function.
37
42
  // TODO(WB-1037): Always return the wrapped version once all routes have
38
43
  // been ported to the app-shell in webapp.
39
- return (ClickableBehaviorWithRouter: any);
44
+ return ClickableBehaviorWithRouter as any;
40
45
  }
41
46
 
47
+ // @ts-expect-error [FEI-5019] - TS2322 - Type 'typeof ClickableBehavior' is not assignable to type 'ComponentType<Pick<Props, "children" | "href" | "tabIndex" | "role" | "target" | "type" | "rel" | "onKeyDown" | "onKeyUp" | "onClick" | "history" | "skipClientNav" | "safeWithNav" | "beforeNav"> & InexactPartial<...> & InexactPartial<...>>'.
42
48
  return ClickableBehavior;
43
49
  }
@@ -1,4 +1,3 @@
1
- // @flow
2
1
  /**
3
2
  * Returns:
4
3
  * - false for hrefs staring with http://, https://, //.
package/tsconfig.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "exclude": ["dist"],
3
+ "extends": "../tsconfig-shared.json",
4
+ "compilerOptions": {
5
+ "outDir": "./dist",
6
+ "rootDir": "src",
7
+ },
8
+ "references": [
9
+ {"path": "../wonder-blocks-color"},
10
+ {"path": "../wonder-blocks-core"},
11
+ ]
12
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./src/components/clickable-behavior.ts","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../wonder-blocks-core/dist/util/types.d.ts","../wonder-blocks-core/dist/components/text.d.ts","../wonder-blocks-core/dist/components/view.d.ts","../wonder-blocks-core/dist/components/render-state-context.d.ts","../wonder-blocks-core/dist/components/with-ssr-placeholder.d.ts","../wonder-blocks-core/dist/components/id-provider.d.ts","../wonder-blocks-core/dist/components/unique-id-provider.d.ts","../wonder-blocks-core/dist/util/add-style.d.ts","../wonder-blocks-core/dist/util/server.d.ts","../wonder-blocks-core/dist/hooks/use-unique-id.d.ts","../wonder-blocks-core/dist/hooks/use-force-update.d.ts","../wonder-blocks-core/dist/hooks/use-is-mounted.d.ts","../wonder-blocks-core/dist/hooks/use-on-mount-effect.d.ts","../wonder-blocks-core/dist/hooks/use-online.d.ts","../wonder-blocks-core/dist/hooks/use-render-state.d.ts","../wonder-blocks-core/dist/components/render-state-root.d.ts","../wonder-blocks-core/dist/index.d.ts","../wonder-blocks-color/dist/util/utils.d.ts","../wonder-blocks-color/dist/index.d.ts","./src/util/is-client-side-url.ts","./src/util/get-clickable-behavior.ts","./src/components/clickable.tsx","./src/index.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@testing-library/dom/types/matches.d.ts","../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../node_modules/@testing-library/dom/types/queries.d.ts","../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../node_modules/@testing-library/dom/types/screen.d.ts","../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../node_modules/@testing-library/dom/types/events.d.ts","../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../node_modules/@testing-library/dom/types/config.d.ts","../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../node_modules/@testing-library/dom/types/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/test-utils/index.d.ts","../../node_modules/@testing-library/react/types/index.d.ts","../../node_modules/@testing-library/user-event/dist/utils/click/getMouseEventOptions.d.ts","../../node_modules/@testing-library/user-event/dist/utils/click/isClickableInput.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/buildTimeValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/calculateNewValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/cursorPosition.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/getValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/hasUnreliableEmptyValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/isContentEditable.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/isEditable.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/isValidDateValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/isValidInputTimeValue.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/maxLength.d.ts","../../node_modules/@testing-library/user-event/dist/utils/edit/selectionRange.d.ts","../../node_modules/@testing-library/user-event/dist/utils/focus/getActiveElement.d.ts","../../node_modules/@testing-library/user-event/dist/utils/focus/isFocusable.d.ts","../../node_modules/@testing-library/user-event/dist/utils/focus/selector.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/eventWrapper.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/isElementType.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/isLabelWithInternallyDisabledControl.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/isVisible.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/isDisabled.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/isDocument.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/wait.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/hasPointerEvents.d.ts","../../node_modules/@testing-library/user-event/dist/utils/misc/hasFormSubmit.d.ts","../../node_modules/@testing-library/user-event/dist/utils/index.d.ts","../../node_modules/@testing-library/user-event/dist/click.d.ts","../../node_modules/@testing-library/user-event/dist/type/typeImplementation.d.ts","../../node_modules/@testing-library/user-event/dist/type/index.d.ts","../../node_modules/@testing-library/user-event/dist/clear.d.ts","../../node_modules/@testing-library/user-event/dist/tab.d.ts","../../node_modules/@testing-library/user-event/dist/hover.d.ts","../../node_modules/@testing-library/user-event/dist/upload.d.ts","../../node_modules/@testing-library/user-event/dist/paste.d.ts","../../node_modules/@testing-library/user-event/dist/keyboard/getNextKeyDef.d.ts","../../node_modules/@testing-library/user-event/dist/keyboard/types.d.ts","../../node_modules/@testing-library/user-event/dist/keyboard/specialCharMap.d.ts","../../node_modules/@testing-library/user-event/dist/keyboard/index.d.ts","../../node_modules/@testing-library/user-event/dist/index.d.ts","./src/components/__tests__/clickable-behavior.test.tsx","./src/components/__tests__/clickable.test.tsx","./src/util/__tests__/get-clickable-behavior.test.tsx","./src/util/__tests__/is-client-side-url.js.test.ts","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/is-empty/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","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":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},{"version":"63b09dcac351ab5ce3476da3c31e4b1d809ae00216dc77d2619f2169fcc10ed7","signature":"513a60c9979c981bdd88633729ca0e5ab1063da96df24fcf33cd996b20866b4e"},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","1cb5a1761c7b7b96ab479acdc8054212c97639b11f12d902b13320853cd70040","7ebb976bd59fe5529e56d0b23be97f220a705e45ad38d556475f8428ef2917c6","2139f3918b597d5279454c2b5bae66674ccc96ac9dffb605452a92fd6e0a3bfa","f856ed3eee33667370b9c9fd80ef31ec21f9a43217c417ac7c8ef5666cb433e1","34b9a71308fa65d9d5bf816775537f42964328be0bc2fb144c85f90bc2293437","de76b973e659ff9d0cece9efc2507b897c7f50763617bc017b4a396134588647","2e40a1344fb0f0c3eb2a706ecd416fbd0acac2b8c489783f4a6eaacf531b2275","6c024c83ced4dfb1fc798be4649b996c24ecbd005e607c4ee2619ceec34f358d","15b4dcbf307452ab56bf665fc4fadeea11a8201ed23098cfb9bce145fccb7139","ee0fccc1e97251e3f3aa7d4a0682b2a28bd0bbf6fae3e169368eb01d74c4e4ec","e7391aed3af92e257fc4ea6784f84aa931026a92cf36472c1e89f4279858552c","f7147de5c8f9cb1143c3b43630f734fff707f1535addabb592f8e560209dd6a7","139e91432dc83fb89d35c9916757f6ec6f1ea589ff6eec6ef6de278271d05896","055e664e1288198c705162c24c89591e8f88c91a89821c5c528256b025779b26","398155e58de7e65e21c70d5d71c1fddb922681cd50477e6b62b0be5fa9bcf847","40ef81ea12c88f731137da2858c8fb2dc31b8299a114bbe82bbd2d102fd64132","132043ff06994187454edd164130dd4058bc8493d0b735003ee6f91132459a8a","3f5be0e5963e749265c6b99f392b38d342a52a6f94d5987e65c351dda76b4b31","0c03a180ada1c70ea75da5a37ce7d3c2c7a6e451426da82eaee74516d703eda7",{"version":"0c6b8d6b85a6544d5f722ba6ca0468493df4d94f807f37e935fb5f5248126044","signature":"4148b1322babaffa1ffe2874cf5cc791899b5da422e5373bba016d2683e203e9"},{"version":"caaa51273914d6ceb5cf62bf755df99af70a830efaaa6f42922419895ed4bf64","signature":"ccee169f4d02995f5fbf6205a8cb9f3e7b41f1ea34c12431895a1da4cd4c5e2d"},{"version":"1dd9f9da03474a52f39dd81d071adefa4dfd3be8f6dbe9cd63b185048a3fb370","signature":"5b5692c377b1203a44bb9fb110de01db2fc9a5f23f39266fb11857a974b5bafe"},{"version":"1b53528f7de3e9538774c45362c76d878f356855b572bd35c47364158b29e6a7","signature":"eb79fd4d321cdf364032524c2ed60b4b5ab00e3dc0572d3b8992107baf98ba87"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","b72fe4260471b06163a05df5228c09b76472b09ea315b7a2df52343181fe906f","852babd1fbe53723547566ba74312e48f9ecd05241a9266292e7058c34016ce8","8ce1e9b4003ec109e718726ec0b44db5761c822be09f5e3e0c50ac934e576944","dac0d28950807efe6a4a587bd97714a8196359a76725fab71bf25755a9ee4d0d","7daa94bb91458830c5a660f505e5c2ad45291c71c6972417b5da95eb290b12eb","78f1d9344d295b9589fea22bc1c256854819af4f39c765eff9d3d83f8c284976","0b9838f20da2f9987c256dd4144ca7bb6bd1d843ba2c3d1e33cdb16bd8e23ad4","b770bafb175a364286f602e6872bf89b35365ca7573296af30fb3772f78dbe13","f78d969e69ac3942fd6b6a02c96d774e4083ee14f5562197c7ffff37a1934e5a","48e1be68d48b72d899d53708c3f4b2ad1b77e86043478c57188100ae93ebd77f","6741d4e3fa029ef67aa18caf1d5f18675fc1d0923e6c2aba45cee5eeae3b30d9","44931a6bc3d4565cddff691559bb3db9055ea1ffed19ad9430e34cdc47f99525","e4817f342f3e1ad3a8f4ffcb077b9da975fa7b4866898324fafb0a5a075604e9","035676fae5c153268633fc252beb0d7928a8bacb8b28df59c0608f1d0a87410e","9473dbcd97afe360abc7f1b4a0ce6b3352e7741f7c3957b250dc46927d8c1f6f","d1f67e67675a7e122f0ca1daecb2304389997dc6ad23e46e150011b36dc221d9","da850b4fdbabdd528f8b9c2784c5ba3b3bedc4e2e1e34dcd08b6407f9ec61a25","ee56351989b0e6f31fd35c9048e222146ced0aac68c64ce2e034f7c881327d6d","d53218f7caf27f9e67a1df385c97277c98a89d002e2681369aa92459a9995384","48e3c30b91aac88fa1c489dc6feb4c22c5eb11c691e62cdd045dd347fb65a796","45732e03d1f7bfb2592dd270dcd4a70527db4c15f9e7644be5b191f99e239946","ed27d5ce258f069acf0036471d1fbb56b4cb3c16d7401b52a51297eca651db62","ec203a515afd88589bf1d384535024f5b90ebe6b5c416fb3dcca0abd428a8ba4","da32df541d6e7fd46638330ffd5e61e261c303c1e5a98e0e3883bdd2ee770400","82a8e458657569616fcf71a2246ad057af99ee5e5640f8bd19de18a79e2d0e09","c39c311712c52770babd4832cc764fe72fd570891a70a81097eb6e868273bb4b","13aa79332b10e562ae3c4127312c47da50e50c029ae2b256bce388c1aaff98d1","a2bdc1bfa62fe4435da4b0e603ed414ad8ff4e195748281406b5c1f858cac593","231d40e55ebf10513f0e7d675084824886575ba61b5ccfc7d4cec21826e5d7d5","5cdfd7ece2de1a4d639ed96c45684a410dc4c7e3bcf703126841f0f8d167e1fc","4e08fdfdc922d56b2026be6753789836ce743337b9addfc8904bf26e7563eef5","9d04022b9ca6bd7fb69c5f8e2e6fe70611041b40a97f758482ee5e45030c630d","dd93153104f5e7d80a6f05acb5f5463fe703fefc11b81b15571391ebd5db185c","657688c133281fca646eefd71146e9a0fb8a3448f6af39864608941e29776b77","aade1ce0f51f5999ca6ade38ffb76cd74c47fa582bfc49192e5649f741ee66f2","2b28c235f2ca53ce553676726533995a0b5fe08e9168f78c24570642e3a47ce2","6e5c373ece97252aba4e56a8651b38d214cb06feb39d11b60fb97229dab986f4","de420f590102752cee6fd66aa6eb8f7e8723afff24c6e70e7271c642e0cdc1f5","7a77468e7b0d4ad3865527930c08f6af38845a68764d03f3c8ca5a59d5b1946d","0fafef9609c651aafc9bef4110d1fcbf2e463149c50e2dba3da5a654ef92c397","cf122753f4dd89bbd9f5af8733efc9a1eb7294612123c68bda5e8f09ddc22d83",{"version":"1d614c049882c54f9d3b8cd1dd39f17c2a01cc9764f3c9c1968c544b8549505d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5af81298d465c28bf2058fd093d371d88c37f569741e507f379074d58d93d08e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fd46370a43a0c1663fdd3345fc9c56140be18725024ba53ae0c63506a241b36c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9898b29c9c6cc1c97397e703d5d7bc961882d840791bd4e156853c88dea34a3f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e5eded91d451a61471ff30c11e4df908f7eb1464689977f4702a562489db2c86",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"180f403b4facff38da095189726c3c3a5aa220be0793d4d862aa910887c7cb71","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","310a0cc92822ada13db096f9970a576de760b2f82a3782a24af62cb5a07e0aff","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"eb9e147dbb7289f09af3b161483c09a9175c3b222ed587f4a3c0112841e7d6ff","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","0d65b782b1a9b5891802ef2022c78481b19dfe133ba8d9f7596fe1320314342d","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bdc18dd47aea9977e419a8e03e7e5d04ed8cf8265e014d8788848b76b969cbba","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","7429e36c7e860a83e1166d6f0977fa4938b7a7a346255169a678939594394375","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[153,206,246,247,248],[206,246,247,248],[206,235,246,247,248],[91,206,246,247,248],[89,206,246,247,248],[86,87,88,89,90,93,94,95,96,97,98,99,100,206,246,247,248],[85,206,246,247,248],[92,206,246,247,248],[86,87,88,206,246,247,248],[86,87,206,246,247,248],[89,90,92,206,246,247,248],[87,206,246,247,248],[101,102,103,206,246,247,248],[130,206,246,247,248],[130,131,133,134,135,136,137,138,142,206,246,247,248],[140,206,246,247,248],[140,141,206,246,247,248],[139,206,246,247,248],[132,206,246,247,248],[112,206,246,247,248],[105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,206,246,247,248],[151,206,246,247,248],[153,154,155,156,157,206,246,247,248],[153,155,206,246,247,248],[194,206,213,246,247,248],[206,215,246,247,248],[151,206,219,246,247,248],[151,206,217,218,246,247,248],[176,206,213,222,246,247,248],[177,206,213,246,247,248],[206,225,246,247,248],[59,206,246,247,248],[53,59,206,246,247,248],[54,55,56,57,58,206,246,247,248],[206,230,246,247,248],[206,231,246,247,248],[206,237,240,246,247,248],[206,233,239,246,247,248],[206,237,246,247,248],[206,234,238,246,247,248],[176,206,208,213,244,245,247,248],[206,246,247],[206,246,248],[206,246,247,248,251,253,254,255,256,257,258,259,260,261,262,263],[206,246,247,248,251,252,254,255,256,257,258,259,260,261,262,263],[206,246,247,248,252,253,254,255,256,257,258,259,260,261,262,263],[206,246,247,248,251,252,253,255,256,257,258,259,260,261,262,263],[206,246,247,248,251,252,253,254,256,257,258,259,260,261,262,263],[206,246,247,248,251,252,253,254,255,257,258,259,260,261,262,263],[206,246,247,248,251,252,253,254,255,256,258,259,260,261,262,263],[206,246,247,248,251,252,253,254,255,256,257,259,260,261,262,263],[206,246,247,248,251,252,253,254,255,256,257,258,260,261,262,263],[206,246,247,248,251,252,253,254,255,256,257,258,259,261,262,263],[206,246,247,248,251,252,253,254,255,256,257,258,259,260,262,263],[206,246,247,248,251,252,253,254,255,256,257,258,259,260,261,263],[206,246,247,248,251,252,253,254,255,256,257,258,259,260,261,262],[179,205,206,213,246,247,248,267,268],[179,194,206,213,246,247,248],[160,206,246,247,248],[163,206,246,247,248],[164,169,197,206,246,247,248],[165,176,177,184,194,205,206,246,247,248],[165,166,176,184,206,246,247,248],[167,206,246,247,248],[168,169,177,185,206,246,247,248],[169,194,202,206,246,247,248],[170,172,176,184,206,246,247,248],[171,206,246,247,248],[172,173,206,246,247,248],[176,206,246,247,248],[174,176,206,246,247,248],[176,177,178,194,205,206,246,247,248],[176,177,178,191,194,197,206,246,247,248],[206,210,246,247,248],[172,179,184,194,205,206,246,247,248],[176,177,179,180,184,194,202,205,206,246,247,248],[179,181,194,202,205,206,246,247,248],[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,246,247,248],[176,182,206,246,247,248],[183,205,206,246,247,248],[172,176,184,194,206,246,247,248],[185,206,246,247,248],[186,206,246,247,248],[163,187,206,246,247,248],[188,204,206,210,246,247,248],[189,206,246,247,248],[190,206,246,247,248],[176,191,192,206,246,247,248],[191,193,206,208,246,247,248],[164,176,194,195,196,197,206,246,247,248],[164,194,196,206,246,247,248],[194,195,206,246,247,248],[197,206,246,247,248],[198,206,246,247,248],[176,200,201,206,246,247,248],[200,201,206,246,247,248],[169,184,194,202,206,246,247,248],[203,206,246,247,248],[184,204,206,246,247,248],[164,179,190,205,206,246,247,248],[169,206,246,247,248],[194,206,207,246,247,248],[206,208,246,247,248],[206,209,246,247,248],[164,169,176,178,187,194,205,206,208,210,246,247,248],[194,206,211,246,247,248],[206,243,246,247,248],[206,244,246,247,248],[51,206,246,247,248],[51,103,206,246,247,248],[51,59,60,206,246,247,248],[51,59,206,246,247,248],[47,48,49,50,206,246,247,248],[206,241,246,247,248],[206,246,247,248,286],[169,206,213,246,247,248,281,286],[169,206,213,246,247,248,284,286,287,288,289],[206,246,247,248,292],[206,236,246,247,248],[51,52,61,82,104,143,206,246,247,248],[51,61,78,83,104,143,206,246,247,248],[51,52,60,61,78,80,81,82,148,206,246,247,248],[52,81,82,83,206,246,247,248],[51,52,61,82,206,246,247,248],[81,206,246,247,248],[51,52,61,81,206,246,247,248],[79,206,246,247,248],[51,62,206,246,247,248],[51,65,206,246,247,248],[65,206,246,247,248],[62,206,246,247,248],[62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,206,246,247,248],[51,148,206,246,247,248],[51],[51,52,78],[52,81,82,83],[51,52]],"referencedMap":[[155,1],[153,2],[236,3],[235,2],[92,4],[91,2],[99,2],[96,2],[95,2],[90,5],[101,6],[86,7],[97,8],[89,9],[88,10],[98,2],[93,11],[100,2],[94,12],[87,2],[104,13],[134,2],[131,14],[136,14],[143,15],[139,16],[142,17],[141,2],[140,18],[138,2],[135,2],[133,19],[132,2],[137,2],[105,2],[106,2],[107,2],[108,2],[109,2],[110,2],[111,2],[112,2],[113,20],[114,2],[115,2],[116,2],[117,2],[118,2],[119,2],[120,2],[130,21],[121,2],[129,2],[128,2],[125,2],[126,2],[122,2],[123,2],[124,2],[127,2],[152,22],[85,2],[158,23],[154,1],[156,24],[157,1],[159,2],[214,25],[216,26],[220,27],[217,2],[219,28],[218,2],[221,22],[151,2],[223,29],[224,30],[226,31],[53,2],[57,32],[58,32],[54,33],[55,33],[56,33],[59,34],[227,2],[228,2],[229,2],[230,2],[231,35],[232,36],[241,37],[233,2],[240,38],[238,39],[239,40],[242,2],[246,41],[248,42],[247,43],[249,2],[250,2],[252,44],[253,45],[251,46],[254,47],[255,48],[256,49],[257,50],[258,51],[259,52],[260,53],[261,54],[262,55],[263,56],[264,31],[222,2],[265,2],[215,2],[266,31],[268,2],[269,57],[267,58],[160,59],[161,59],[163,60],[164,61],[165,62],[166,63],[167,64],[168,65],[169,66],[170,67],[171,68],[172,69],[173,69],[175,70],[174,71],[176,70],[177,72],[178,73],[162,74],[212,2],[179,75],[180,76],[181,77],[213,78],[182,79],[183,80],[184,81],[185,82],[186,83],[187,84],[188,85],[189,86],[190,87],[191,88],[192,88],[193,89],[194,90],[196,91],[195,92],[197,93],[198,94],[199,2],[200,95],[201,96],[202,97],[203,98],[204,99],[205,100],[206,101],[207,102],[208,103],[209,104],[210,105],[211,106],[270,2],[271,70],[272,2],[244,107],[243,108],[273,2],[274,2],[49,2],[275,2],[102,109],[103,110],[61,111],[60,112],[276,109],[277,109],[47,2],[51,113],[278,2],[279,2],[50,2],[280,2],[281,2],[282,2],[283,2],[284,2],[285,114],[245,2],[287,115],[225,2],[291,2],[289,116],[290,117],[292,2],[293,118],[288,2],[234,2],[48,2],[237,119],[286,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[144,120],[145,121],[52,109],[83,122],[84,123],[146,124],[147,125],[82,126],[81,2],[148,109],[149,2],[150,2],[80,127],[79,2],[67,128],[65,109],[77,109],[63,128],[68,128],[64,128],[66,129],[72,2],[73,2],[74,2],[75,2],[76,130],[71,131],[78,132],[69,128],[70,2],[62,133]],"exportedModulesMap":[[155,1],[153,2],[236,3],[235,2],[92,4],[91,2],[99,2],[96,2],[95,2],[90,5],[101,6],[86,7],[97,8],[89,9],[88,10],[98,2],[93,11],[100,2],[94,12],[87,2],[104,13],[134,2],[131,14],[136,14],[143,15],[139,16],[142,17],[141,2],[140,18],[138,2],[135,2],[133,19],[132,2],[137,2],[105,2],[106,2],[107,2],[108,2],[109,2],[110,2],[111,2],[112,2],[113,20],[114,2],[115,2],[116,2],[117,2],[118,2],[119,2],[120,2],[130,21],[121,2],[129,2],[128,2],[125,2],[126,2],[122,2],[123,2],[124,2],[127,2],[152,22],[85,2],[158,23],[154,1],[156,24],[157,1],[159,2],[214,25],[216,26],[220,27],[217,2],[219,28],[218,2],[221,22],[151,2],[223,29],[224,30],[226,31],[53,2],[57,32],[58,32],[54,33],[55,33],[56,33],[59,34],[227,2],[228,2],[229,2],[230,2],[231,35],[232,36],[241,37],[233,2],[240,38],[238,39],[239,40],[242,2],[246,41],[248,42],[247,43],[249,2],[250,2],[252,44],[253,45],[251,46],[254,47],[255,48],[256,49],[257,50],[258,51],[259,52],[260,53],[261,54],[262,55],[263,56],[264,31],[222,2],[265,2],[215,2],[266,31],[268,2],[269,57],[267,58],[160,59],[161,59],[163,60],[164,61],[165,62],[166,63],[167,64],[168,65],[169,66],[170,67],[171,68],[172,69],[173,69],[175,70],[174,71],[176,70],[177,72],[178,73],[162,74],[212,2],[179,75],[180,76],[181,77],[213,78],[182,79],[183,80],[184,81],[185,82],[186,83],[187,84],[188,85],[189,86],[190,87],[191,88],[192,88],[193,89],[194,90],[196,91],[195,92],[197,93],[198,94],[199,2],[200,95],[201,96],[202,97],[203,98],[204,99],[205,100],[206,101],[207,102],[208,103],[209,104],[210,105],[211,106],[270,2],[271,70],[272,2],[244,107],[243,108],[273,2],[274,2],[49,2],[275,2],[102,109],[103,110],[61,111],[60,112],[276,109],[277,109],[47,2],[51,113],[278,2],[279,2],[50,2],[280,2],[281,2],[282,2],[283,2],[284,2],[285,114],[245,2],[287,115],[225,2],[291,2],[289,116],[290,117],[292,2],[293,118],[288,2],[234,2],[48,2],[237,119],[286,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[52,134],[83,135],[84,136],[82,137],[148,109],[149,2],[150,2],[80,127],[79,2],[67,128],[65,109],[77,109],[63,128],[68,128],[64,128],[66,129],[72,2],[73,2],[74,2],[75,2],[76,130],[71,131],[78,132],[69,128],[70,2],[62,133]],"semanticDiagnosticsPerFile":[155,153,236,235,92,91,99,96,95,90,101,86,97,89,88,98,93,100,94,87,104,134,131,136,143,139,142,141,140,138,135,133,132,137,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,130,121,129,128,125,126,122,123,124,127,152,85,158,154,156,157,159,214,216,220,217,219,218,221,151,223,224,226,53,57,58,54,55,56,59,227,228,229,230,231,232,241,233,240,238,239,242,246,248,247,249,250,252,253,251,254,255,256,257,258,259,260,261,262,263,264,222,265,215,266,268,269,267,160,161,163,164,165,166,167,168,169,170,171,172,173,175,174,176,177,178,162,212,179,180,181,213,182,183,184,185,186,187,188,189,190,191,192,193,194,196,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,270,271,272,244,243,273,274,49,275,102,103,61,60,276,277,47,51,278,279,50,280,281,282,283,284,285,245,287,225,291,289,290,292,293,288,234,48,237,286,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,144,145,52,83,84,146,147,82,81,148,149,150,80,79,67,65,77,63,68,64,66,72,73,74,75,76,71,78,69,70,62],"latestChangedDtsFile":"./dist/util/__tests__/is-client-side-url.js.test.d.ts"},"version":"4.9.5"}