@feature-hub/react-router-v6-30-adapter 3.9.0-react-router.fb43eeb0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018-2026 Accenture Song Build Germany GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # @feature-hub/history-service
2
+
3
+ [![Package Version][package-badge]][package-npm]
4
+ [![Website][website-badge]][website] [![API][api-badge]][api]
5
+
6
+ A history facade guaranteeing safe access for multiple consumers.
7
+
8
+ ## Installation
9
+
10
+ ### Using Yarn
11
+
12
+ ```sh
13
+ yarn add @feature-hub/react-router-v6-30-adapter
14
+ ```
15
+
16
+ ### Using npm
17
+
18
+ ```sh
19
+ npm install @feature-hub/react-router-v6-30-adapter
20
+ ```
21
+
22
+ ---
23
+
24
+ Copyright (c) 2018-2026 Accenture Song Build Germany GmbH. Released under the
25
+ terms of the [MIT License][license].
26
+
27
+ [api]: https://feature-hub.io/@feature-hub/react-router-v6-30-adapter/
28
+ [api-badge]:
29
+ https://img.shields.io/badge/API-%40feature--hub%2Freact-router-v6-30-adapter-%23ea3458.svg
30
+ [license]: https://github.com/feature-hub/feature-hub/blob/main/LICENSE
31
+ [package-badge]:
32
+ https://img.shields.io/npm/v/@feature-hub/react-router-v6-30-adapter.svg
33
+ [package-npm]:
34
+ https://www.npmjs.com/package/@feature-hub/react-router-v6-30-adapter
35
+ [website]: https://feature-hub.io/
36
+ [website-badge]:
37
+ https://img.shields.io/badge/Website-feature--hub.io-%23500dc5.svg
@@ -0,0 +1,4 @@
1
+ import { type History as RemixHistory } from '@remix-run/router';
2
+ import type { History } from 'history';
3
+ export declare function adaptV6_30History(history: History): RemixHistory;
4
+ //# sourceMappingURL=adaptV6_30History.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.d.ts","sourceRoot":"","sources":["../../src/adaptV6_30History.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,OAAO,IAAI,YAAY,EAK7B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,SAAS,CAAC;AAqCrC,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,YAAY,CAoDhE"}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.adaptV6_30History = adaptV6_30History;
4
+ const router_1 = require("@remix-run/router");
5
+ function mapAction(action) {
6
+ return action === 'PUSH'
7
+ ? router_1.Action.Push
8
+ : action === 'REPLACE'
9
+ ? router_1.Action.Replace
10
+ : router_1.Action.Pop;
11
+ }
12
+ function toPathname(to) {
13
+ return typeof to === 'string'
14
+ ? to
15
+ : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';
16
+ }
17
+ function toPath(to) {
18
+ const pathname = typeof to === 'string' ? to : to.pathname || '/';
19
+ const search = typeof to === 'string' ? '' : to.search || '';
20
+ const hash = typeof to === 'string' ? '' : to.hash || '';
21
+ return { pathname, search, hash };
22
+ }
23
+ function adaptV6_30History(history) {
24
+ return {
25
+ get action() {
26
+ return mapAction(history.action);
27
+ },
28
+ get location() {
29
+ const loc = history.location;
30
+ return {
31
+ pathname: loc.pathname,
32
+ search: loc.search,
33
+ hash: loc.hash,
34
+ state: loc.state,
35
+ key: loc.key || 'default',
36
+ };
37
+ },
38
+ createHref(to) {
39
+ return toPathname(to);
40
+ },
41
+ createURL(to) {
42
+ const href = this.createHref(to);
43
+ return new URL(href, window.location.href);
44
+ },
45
+ encodeLocation(to) {
46
+ return toPath(to);
47
+ },
48
+ // biome-ignore lint/suspicious/noExplicitAny: test case
49
+ push(to, state) {
50
+ history.push(toPathname(to), state);
51
+ },
52
+ // biome-ignore lint/suspicious/noExplicitAny: test case
53
+ replace(to, state) {
54
+ history.replace(toPathname(to), state);
55
+ },
56
+ go(delta) {
57
+ history.go(delta);
58
+ },
59
+ listen(listener) {
60
+ return history.listen(({ location, action }) => {
61
+ listener({
62
+ action: mapAction(action),
63
+ location: {
64
+ pathname: location.pathname,
65
+ search: location.search,
66
+ hash: location.hash,
67
+ state: location.state,
68
+ key: location.key || 'default',
69
+ },
70
+ delta: null,
71
+ });
72
+ });
73
+ },
74
+ };
75
+ }
76
+ //# sourceMappingURL=adaptV6_30History.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.js","sourceRoot":"","sources":["../../src/adaptV6_30History.tsx"],"names":[],"mappings":"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","sourcesContent":["import {\n type History as RemixHistory,\n Action as RemixAction,\n type Path as RemixPath,\n type To as RemixTo,\n type Location as RemixLocation,\n} from '@remix-run/router';\nimport type {History} from 'history';\n\nfunction mapAction(action: string): RemixAction {\n return action === 'PUSH'\n ? RemixAction.Push\n : action === 'REPLACE'\n ? RemixAction.Replace\n : RemixAction.Pop;\n}\n\nfunction toPathname(to: RemixTo): string {\n return typeof to === 'string'\n ? to\n : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';\n}\n\nfunction toPath(to: RemixTo): RemixPath {\n const pathname = typeof to === 'string' ? to : to.pathname || '/';\n const search = typeof to === 'string' ? '' : to.search || '';\n const hash = typeof to === 'string' ? '' : to.hash || '';\n return {pathname, search, hash};\n}\ninterface RemixUpdate {\n /**\n * The action that triggered the change.\n */\n action: RemixAction;\n /**\n * The new location.\n */\n location: RemixLocation;\n /**\n * The delta between this location and the former location in the history stack\n */\n delta: number | null;\n}\n\nexport function adaptV6_30History(history: History): RemixHistory {\n return {\n get action() {\n return mapAction(history.action);\n },\n get location() {\n const loc = history.location;\n return {\n pathname: loc.pathname,\n search: loc.search,\n hash: loc.hash,\n state: loc.state,\n key: loc.key || 'default',\n };\n },\n createHref(to: RemixTo) {\n return toPathname(to);\n },\n createURL(to: RemixTo) {\n const href = this.createHref(to);\n return new URL(href, window.location.href);\n },\n encodeLocation(to: RemixTo): RemixPath {\n return toPath(to);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n push(to: RemixTo, state?: any) {\n history.push(toPathname(to), state);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n replace(to: RemixTo, state?: any) {\n history.replace(toPathname(to), state);\n },\n go(delta: number) {\n history.go(delta);\n },\n listen(listener: (update: RemixUpdate) => void): () => void {\n return history.listen(({location, action}) => {\n listener({\n action: mapAction(action),\n location: {\n pathname: location.pathname,\n search: location.search,\n hash: location.hash,\n state: location.state,\n key: location.key || 'default',\n },\n delta: null,\n });\n });\n },\n };\n}\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=adaptV6_30History.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.test.d.ts","sourceRoot":"","sources":["../../src/adaptV6_30History.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+ /* @jest-environment node */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const router_1 = require("@remix-run/router");
5
+ const adaptV6_30History_1 = require("./adaptV6_30History");
6
+ describe('adaptV6_30History', () => {
7
+ let history;
8
+ let adaptedHistory;
9
+ // biome-ignore lint/suspicious/noExplicitAny: test case
10
+ let listenCallback;
11
+ const originalWindow = global.window;
12
+ beforeEach(() => {
13
+ listenCallback = undefined;
14
+ history = {
15
+ action: router_1.Action.Push,
16
+ location: {
17
+ pathname: '/initial',
18
+ search: '?q=1',
19
+ hash: '#top',
20
+ state: { from: 'test' },
21
+ key: 'history-key',
22
+ },
23
+ push: jest.fn(),
24
+ replace: jest.fn(),
25
+ go: jest.fn(),
26
+ back: jest.fn(),
27
+ forward: jest.fn(),
28
+ listen: jest.fn((listener) => {
29
+ listenCallback = listener;
30
+ return jest.fn();
31
+ }),
32
+ block: jest.fn(),
33
+ createHref: jest.fn(),
34
+ length: 1,
35
+ };
36
+ adaptedHistory = (0, adaptV6_30History_1.adaptV6_30History)(history);
37
+ });
38
+ afterEach(() => {
39
+ jest.clearAllMocks();
40
+ if (originalWindow === undefined) {
41
+ // biome-ignore lint/suspicious/noExplicitAny: test case
42
+ delete global.window;
43
+ }
44
+ else {
45
+ global.window = originalWindow;
46
+ }
47
+ });
48
+ it('maps the action value', () => {
49
+ expect(adaptedHistory.action).toBe(router_1.Action.Push);
50
+ history.action = router_1.Action.Replace;
51
+ expect(adaptedHistory.action).toBe(router_1.Action.Replace);
52
+ history.action = router_1.Action.Pop;
53
+ expect(adaptedHistory.action).toBe(router_1.Action.Pop);
54
+ });
55
+ it('exposes the current location', () => {
56
+ expect(adaptedHistory.location).toEqual({
57
+ pathname: '/initial',
58
+ search: '?q=1',
59
+ hash: '#top',
60
+ state: { from: 'test' },
61
+ key: 'history-key',
62
+ });
63
+ });
64
+ it('defaults the location key to default when missing', () => {
65
+ history.location = Object.assign(Object.assign({}, history.location), { key: undefined });
66
+ expect(adaptedHistory.location.key).toBe('default');
67
+ });
68
+ it('creates hrefs from string and path objects', () => {
69
+ expect(adaptedHistory.createHref('/path')).toBe('/path');
70
+ expect(adaptedHistory.createHref({
71
+ pathname: '/path',
72
+ search: '?a=1',
73
+ hash: '#b',
74
+ })).toBe('/path?a=1#b');
75
+ expect(adaptedHistory.createHref({ search: '?a=1' })).toBe('/?a=1');
76
+ });
77
+ it('creates urls using the current window location', () => {
78
+ Object.defineProperty(global, 'window', {
79
+ configurable: true,
80
+ value: { location: { href: 'http://localhost/base?x=1#hash' } },
81
+ });
82
+ expect(adaptedHistory.createURL('/path').toString()).toBe('http://localhost/path');
83
+ expect(adaptedHistory.createURL({ pathname: '/path', search: '?a=1' }).toString()).toBe('http://localhost/path?a=1');
84
+ });
85
+ it('encodes locations as path objects', () => {
86
+ expect(adaptedHistory.encodeLocation('/path')).toEqual({
87
+ pathname: '/path',
88
+ search: '',
89
+ hash: '',
90
+ });
91
+ expect(adaptedHistory.encodeLocation({
92
+ pathname: '/path',
93
+ search: '?a=1',
94
+ hash: '#b',
95
+ })).toEqual({
96
+ pathname: '/path',
97
+ search: '?a=1',
98
+ hash: '#b',
99
+ });
100
+ });
101
+ it('delegates navigation methods', () => {
102
+ adaptedHistory.push('/push', { from: 'push' });
103
+ adaptedHistory.replace('/replace', { from: 'replace' });
104
+ adaptedHistory.go(-2);
105
+ expect(history.push).toHaveBeenCalledWith('/push', { from: 'push' });
106
+ expect(history.replace).toHaveBeenCalledWith('/replace', { from: 'replace' });
107
+ expect(history.go).toHaveBeenCalledWith(-2);
108
+ });
109
+ it('adapts listen callbacks and returns the unsubscribe function', () => {
110
+ const unsubscribe = jest.fn();
111
+ history.listen.mockImplementation((listener) => {
112
+ listenCallback = listener;
113
+ return unsubscribe;
114
+ });
115
+ const listener = jest.fn();
116
+ const returnedUnsubscribe = adaptedHistory.listen(listener);
117
+ expect(history.listen).toHaveBeenCalledTimes(1);
118
+ expect(returnedUnsubscribe).toBe(unsubscribe);
119
+ expect(listenCallback).toBeDefined();
120
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
121
+ action: 'PUSH',
122
+ location: {
123
+ pathname: '/next',
124
+ search: '',
125
+ hash: '',
126
+ state: { id: 1 },
127
+ key: 'next-key',
128
+ },
129
+ });
130
+ expect(listener).toHaveBeenCalledWith({
131
+ action: router_1.Action.Push,
132
+ location: {
133
+ pathname: '/next',
134
+ search: '',
135
+ hash: '',
136
+ state: { id: 1 },
137
+ key: 'next-key',
138
+ },
139
+ delta: null,
140
+ });
141
+ });
142
+ it('maps replace and pop updates in listener callbacks', () => {
143
+ const listener = jest.fn();
144
+ adaptedHistory.listen(listener);
145
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
146
+ action: 'REPLACE',
147
+ location: {
148
+ pathname: '/replaced',
149
+ search: '',
150
+ hash: '',
151
+ state: null,
152
+ key: 'replace-key',
153
+ },
154
+ });
155
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
156
+ action: 'POP',
157
+ location: {
158
+ pathname: '/popped',
159
+ search: '',
160
+ hash: '',
161
+ state: null,
162
+ key: 'pop-key',
163
+ },
164
+ });
165
+ expect(listener).toHaveBeenNthCalledWith(1, {
166
+ action: router_1.Action.Replace,
167
+ location: {
168
+ pathname: '/replaced',
169
+ search: '',
170
+ hash: '',
171
+ state: null,
172
+ key: 'replace-key',
173
+ },
174
+ delta: null,
175
+ });
176
+ expect(listener).toHaveBeenNthCalledWith(2, {
177
+ action: router_1.Action.Pop,
178
+ location: {
179
+ pathname: '/popped',
180
+ search: '',
181
+ hash: '',
182
+ state: null,
183
+ key: 'pop-key',
184
+ },
185
+ delta: null,
186
+ });
187
+ });
188
+ });
189
+ //# sourceMappingURL=adaptV6_30History.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.test.js","sourceRoot":"","sources":["../../src/adaptV6_30History.test.ts"],"names":[],"mappings":"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","sourcesContent":["/* @jest-environment node */\n\nimport type {History} from 'history';\nimport {Action as RemixAction} from '@remix-run/router';\nimport {adaptV6_30History} from './adaptV6_30History';\n\ntype ChangeableHistory = History & {\n set action(value: string);\n set location(value: History['location']);\n};\n\ndescribe('adaptV6_30History', () => {\n let history: ChangeableHistory;\n let adaptedHistory: ReturnType<typeof adaptV6_30History>;\n // biome-ignore lint/suspicious/noExplicitAny: test case\n let listenCallback: ((update: any) => void) | undefined;\n const originalWindow = global.window;\n\n beforeEach(() => {\n listenCallback = undefined;\n\n history = {\n action: RemixAction.Push,\n location: {\n pathname: '/initial',\n search: '?q=1',\n hash: '#top',\n state: {from: 'test'},\n key: 'history-key',\n },\n push: jest.fn(),\n replace: jest.fn(),\n go: jest.fn(),\n back: jest.fn(),\n forward: jest.fn(),\n listen: jest.fn((listener) => {\n listenCallback = listener;\n return jest.fn();\n }),\n block: jest.fn(),\n createHref: jest.fn(),\n length: 1,\n } as ChangeableHistory;\n\n adaptedHistory = adaptV6_30History(history);\n });\n\n afterEach(() => {\n jest.clearAllMocks();\n if (originalWindow === undefined) {\n // biome-ignore lint/suspicious/noExplicitAny: test case\n delete (global as any).window;\n } else {\n global.window = originalWindow;\n }\n });\n\n it('maps the action value', () => {\n expect(adaptedHistory.action).toBe(RemixAction.Push);\n\n history.action = RemixAction.Replace;\n expect(adaptedHistory.action).toBe(RemixAction.Replace);\n\n history.action = RemixAction.Pop;\n expect(adaptedHistory.action).toBe(RemixAction.Pop);\n });\n\n it('exposes the current location', () => {\n expect(adaptedHistory.location).toEqual({\n pathname: '/initial',\n search: '?q=1',\n hash: '#top',\n state: {from: 'test'},\n key: 'history-key',\n });\n });\n\n it('defaults the location key to default when missing', () => {\n history.location = {\n ...history.location,\n key: undefined,\n // biome-ignore lint/suspicious/noExplicitAny: test case\n } as any;\n\n expect(adaptedHistory.location.key).toBe('default');\n });\n\n it('creates hrefs from string and path objects', () => {\n expect(adaptedHistory.createHref('/path')).toBe('/path');\n expect(\n adaptedHistory.createHref({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n }),\n ).toBe('/path?a=1#b');\n expect(adaptedHistory.createHref({search: '?a=1'})).toBe('/?a=1');\n });\n\n it('creates urls using the current window location', () => {\n Object.defineProperty(global, 'window', {\n configurable: true,\n value: {location: {href: 'http://localhost/base?x=1#hash'}},\n });\n\n expect(adaptedHistory.createURL('/path').toString()).toBe(\n 'http://localhost/path',\n );\n expect(\n adaptedHistory.createURL({pathname: '/path', search: '?a=1'}).toString(),\n ).toBe('http://localhost/path?a=1');\n });\n\n it('encodes locations as path objects', () => {\n expect(adaptedHistory.encodeLocation('/path')).toEqual({\n pathname: '/path',\n search: '',\n hash: '',\n });\n\n expect(\n adaptedHistory.encodeLocation({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n }),\n ).toEqual({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n });\n });\n\n it('delegates navigation methods', () => {\n adaptedHistory.push('/push', {from: 'push'});\n adaptedHistory.replace('/replace', {from: 'replace'});\n adaptedHistory.go(-2);\n\n expect(history.push).toHaveBeenCalledWith('/push', {from: 'push'});\n expect(history.replace).toHaveBeenCalledWith('/replace', {from: 'replace'});\n expect(history.go).toHaveBeenCalledWith(-2);\n });\n\n it('adapts listen callbacks and returns the unsubscribe function', () => {\n const unsubscribe = jest.fn();\n\n (history.listen as jest.Mock).mockImplementation((listener) => {\n listenCallback = listener;\n return unsubscribe;\n });\n\n const listener = jest.fn();\n const returnedUnsubscribe = adaptedHistory.listen(listener);\n\n expect(history.listen).toHaveBeenCalledTimes(1);\n expect(returnedUnsubscribe).toBe(unsubscribe);\n expect(listenCallback).toBeDefined();\n\n listenCallback?.({\n action: 'PUSH',\n location: {\n pathname: '/next',\n search: '',\n hash: '',\n state: {id: 1},\n key: 'next-key',\n },\n });\n\n expect(listener).toHaveBeenCalledWith({\n action: RemixAction.Push,\n location: {\n pathname: '/next',\n search: '',\n hash: '',\n state: {id: 1},\n key: 'next-key',\n },\n delta: null,\n });\n });\n\n it('maps replace and pop updates in listener callbacks', () => {\n const listener = jest.fn();\n adaptedHistory.listen(listener);\n\n listenCallback?.({\n action: 'REPLACE',\n location: {\n pathname: '/replaced',\n search: '',\n hash: '',\n state: null,\n key: 'replace-key',\n },\n });\n\n listenCallback?.({\n action: 'POP',\n location: {\n pathname: '/popped',\n search: '',\n hash: '',\n state: null,\n key: 'pop-key',\n },\n });\n\n expect(listener).toHaveBeenNthCalledWith(1, {\n action: RemixAction.Replace,\n location: {\n pathname: '/replaced',\n search: '',\n hash: '',\n state: null,\n key: 'replace-key',\n },\n delta: null,\n });\n\n expect(listener).toHaveBeenNthCalledWith(2, {\n action: RemixAction.Pop,\n location: {\n pathname: '/popped',\n search: '',\n hash: '',\n state: null,\n key: 'pop-key',\n },\n delta: null,\n });\n });\n});\n"]}
@@ -0,0 +1,2 @@
1
+ export * from './adaptV6_30History';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./adaptV6_30History"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC","sourcesContent":["export * from './adaptV6_30History';\n"]}
@@ -0,0 +1,4 @@
1
+ import { type History as RemixHistory } from '@remix-run/router';
2
+ import type { History } from 'history';
3
+ export declare function adaptV6_30History(history: History): RemixHistory;
4
+ //# sourceMappingURL=adaptV6_30History.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.d.ts","sourceRoot":"","sources":["../../src/adaptV6_30History.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,OAAO,IAAI,YAAY,EAK7B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,SAAS,CAAC;AAqCrC,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,YAAY,CAoDhE"}
@@ -0,0 +1,73 @@
1
+ import { Action as RemixAction, } from '@remix-run/router';
2
+ function mapAction(action) {
3
+ return action === 'PUSH'
4
+ ? RemixAction.Push
5
+ : action === 'REPLACE'
6
+ ? RemixAction.Replace
7
+ : RemixAction.Pop;
8
+ }
9
+ function toPathname(to) {
10
+ return typeof to === 'string'
11
+ ? to
12
+ : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';
13
+ }
14
+ function toPath(to) {
15
+ const pathname = typeof to === 'string' ? to : to.pathname || '/';
16
+ const search = typeof to === 'string' ? '' : to.search || '';
17
+ const hash = typeof to === 'string' ? '' : to.hash || '';
18
+ return { pathname, search, hash };
19
+ }
20
+ export function adaptV6_30History(history) {
21
+ return {
22
+ get action() {
23
+ return mapAction(history.action);
24
+ },
25
+ get location() {
26
+ const loc = history.location;
27
+ return {
28
+ pathname: loc.pathname,
29
+ search: loc.search,
30
+ hash: loc.hash,
31
+ state: loc.state,
32
+ key: loc.key || 'default',
33
+ };
34
+ },
35
+ createHref(to) {
36
+ return toPathname(to);
37
+ },
38
+ createURL(to) {
39
+ const href = this.createHref(to);
40
+ return new URL(href, window.location.href);
41
+ },
42
+ encodeLocation(to) {
43
+ return toPath(to);
44
+ },
45
+ // biome-ignore lint/suspicious/noExplicitAny: test case
46
+ push(to, state) {
47
+ history.push(toPathname(to), state);
48
+ },
49
+ // biome-ignore lint/suspicious/noExplicitAny: test case
50
+ replace(to, state) {
51
+ history.replace(toPathname(to), state);
52
+ },
53
+ go(delta) {
54
+ history.go(delta);
55
+ },
56
+ listen(listener) {
57
+ return history.listen(({ location, action }) => {
58
+ listener({
59
+ action: mapAction(action),
60
+ location: {
61
+ pathname: location.pathname,
62
+ search: location.search,
63
+ hash: location.hash,
64
+ state: location.state,
65
+ key: location.key || 'default',
66
+ },
67
+ delta: null,
68
+ });
69
+ });
70
+ },
71
+ };
72
+ }
73
+ //# sourceMappingURL=adaptV6_30History.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.js","sourceRoot":"","sources":["../../src/adaptV6_30History.tsx"],"names":[],"mappings":"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","sourcesContent":["import {\n type History as RemixHistory,\n Action as RemixAction,\n type Path as RemixPath,\n type To as RemixTo,\n type Location as RemixLocation,\n} from '@remix-run/router';\nimport type {History} from 'history';\n\nfunction mapAction(action: string): RemixAction {\n return action === 'PUSH'\n ? RemixAction.Push\n : action === 'REPLACE'\n ? RemixAction.Replace\n : RemixAction.Pop;\n}\n\nfunction toPathname(to: RemixTo): string {\n return typeof to === 'string'\n ? to\n : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';\n}\n\nfunction toPath(to: RemixTo): RemixPath {\n const pathname = typeof to === 'string' ? to : to.pathname || '/';\n const search = typeof to === 'string' ? '' : to.search || '';\n const hash = typeof to === 'string' ? '' : to.hash || '';\n return {pathname, search, hash};\n}\ninterface RemixUpdate {\n /**\n * The action that triggered the change.\n */\n action: RemixAction;\n /**\n * The new location.\n */\n location: RemixLocation;\n /**\n * The delta between this location and the former location in the history stack\n */\n delta: number | null;\n}\n\nexport function adaptV6_30History(history: History): RemixHistory {\n return {\n get action() {\n return mapAction(history.action);\n },\n get location() {\n const loc = history.location;\n return {\n pathname: loc.pathname,\n search: loc.search,\n hash: loc.hash,\n state: loc.state,\n key: loc.key || 'default',\n };\n },\n createHref(to: RemixTo) {\n return toPathname(to);\n },\n createURL(to: RemixTo) {\n const href = this.createHref(to);\n return new URL(href, window.location.href);\n },\n encodeLocation(to: RemixTo): RemixPath {\n return toPath(to);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n push(to: RemixTo, state?: any) {\n history.push(toPathname(to), state);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n replace(to: RemixTo, state?: any) {\n history.replace(toPathname(to), state);\n },\n go(delta: number) {\n history.go(delta);\n },\n listen(listener: (update: RemixUpdate) => void): () => void {\n return history.listen(({location, action}) => {\n listener({\n action: mapAction(action),\n location: {\n pathname: location.pathname,\n search: location.search,\n hash: location.hash,\n state: location.state,\n key: location.key || 'default',\n },\n delta: null,\n });\n });\n },\n };\n}\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=adaptV6_30History.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.test.d.ts","sourceRoot":"","sources":["../../src/adaptV6_30History.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,187 @@
1
+ /* @jest-environment node */
2
+ import { Action as RemixAction } from '@remix-run/router';
3
+ import { adaptV6_30History } from './adaptV6_30History';
4
+ describe('adaptV6_30History', () => {
5
+ let history;
6
+ let adaptedHistory;
7
+ // biome-ignore lint/suspicious/noExplicitAny: test case
8
+ let listenCallback;
9
+ const originalWindow = global.window;
10
+ beforeEach(() => {
11
+ listenCallback = undefined;
12
+ history = {
13
+ action: RemixAction.Push,
14
+ location: {
15
+ pathname: '/initial',
16
+ search: '?q=1',
17
+ hash: '#top',
18
+ state: { from: 'test' },
19
+ key: 'history-key',
20
+ },
21
+ push: jest.fn(),
22
+ replace: jest.fn(),
23
+ go: jest.fn(),
24
+ back: jest.fn(),
25
+ forward: jest.fn(),
26
+ listen: jest.fn((listener) => {
27
+ listenCallback = listener;
28
+ return jest.fn();
29
+ }),
30
+ block: jest.fn(),
31
+ createHref: jest.fn(),
32
+ length: 1,
33
+ };
34
+ adaptedHistory = adaptV6_30History(history);
35
+ });
36
+ afterEach(() => {
37
+ jest.clearAllMocks();
38
+ if (originalWindow === undefined) {
39
+ // biome-ignore lint/suspicious/noExplicitAny: test case
40
+ delete global.window;
41
+ }
42
+ else {
43
+ global.window = originalWindow;
44
+ }
45
+ });
46
+ it('maps the action value', () => {
47
+ expect(adaptedHistory.action).toBe(RemixAction.Push);
48
+ history.action = RemixAction.Replace;
49
+ expect(adaptedHistory.action).toBe(RemixAction.Replace);
50
+ history.action = RemixAction.Pop;
51
+ expect(adaptedHistory.action).toBe(RemixAction.Pop);
52
+ });
53
+ it('exposes the current location', () => {
54
+ expect(adaptedHistory.location).toEqual({
55
+ pathname: '/initial',
56
+ search: '?q=1',
57
+ hash: '#top',
58
+ state: { from: 'test' },
59
+ key: 'history-key',
60
+ });
61
+ });
62
+ it('defaults the location key to default when missing', () => {
63
+ history.location = Object.assign(Object.assign({}, history.location), { key: undefined });
64
+ expect(adaptedHistory.location.key).toBe('default');
65
+ });
66
+ it('creates hrefs from string and path objects', () => {
67
+ expect(adaptedHistory.createHref('/path')).toBe('/path');
68
+ expect(adaptedHistory.createHref({
69
+ pathname: '/path',
70
+ search: '?a=1',
71
+ hash: '#b',
72
+ })).toBe('/path?a=1#b');
73
+ expect(adaptedHistory.createHref({ search: '?a=1' })).toBe('/?a=1');
74
+ });
75
+ it('creates urls using the current window location', () => {
76
+ Object.defineProperty(global, 'window', {
77
+ configurable: true,
78
+ value: { location: { href: 'http://localhost/base?x=1#hash' } },
79
+ });
80
+ expect(adaptedHistory.createURL('/path').toString()).toBe('http://localhost/path');
81
+ expect(adaptedHistory.createURL({ pathname: '/path', search: '?a=1' }).toString()).toBe('http://localhost/path?a=1');
82
+ });
83
+ it('encodes locations as path objects', () => {
84
+ expect(adaptedHistory.encodeLocation('/path')).toEqual({
85
+ pathname: '/path',
86
+ search: '',
87
+ hash: '',
88
+ });
89
+ expect(adaptedHistory.encodeLocation({
90
+ pathname: '/path',
91
+ search: '?a=1',
92
+ hash: '#b',
93
+ })).toEqual({
94
+ pathname: '/path',
95
+ search: '?a=1',
96
+ hash: '#b',
97
+ });
98
+ });
99
+ it('delegates navigation methods', () => {
100
+ adaptedHistory.push('/push', { from: 'push' });
101
+ adaptedHistory.replace('/replace', { from: 'replace' });
102
+ adaptedHistory.go(-2);
103
+ expect(history.push).toHaveBeenCalledWith('/push', { from: 'push' });
104
+ expect(history.replace).toHaveBeenCalledWith('/replace', { from: 'replace' });
105
+ expect(history.go).toHaveBeenCalledWith(-2);
106
+ });
107
+ it('adapts listen callbacks and returns the unsubscribe function', () => {
108
+ const unsubscribe = jest.fn();
109
+ history.listen.mockImplementation((listener) => {
110
+ listenCallback = listener;
111
+ return unsubscribe;
112
+ });
113
+ const listener = jest.fn();
114
+ const returnedUnsubscribe = adaptedHistory.listen(listener);
115
+ expect(history.listen).toHaveBeenCalledTimes(1);
116
+ expect(returnedUnsubscribe).toBe(unsubscribe);
117
+ expect(listenCallback).toBeDefined();
118
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
119
+ action: 'PUSH',
120
+ location: {
121
+ pathname: '/next',
122
+ search: '',
123
+ hash: '',
124
+ state: { id: 1 },
125
+ key: 'next-key',
126
+ },
127
+ });
128
+ expect(listener).toHaveBeenCalledWith({
129
+ action: RemixAction.Push,
130
+ location: {
131
+ pathname: '/next',
132
+ search: '',
133
+ hash: '',
134
+ state: { id: 1 },
135
+ key: 'next-key',
136
+ },
137
+ delta: null,
138
+ });
139
+ });
140
+ it('maps replace and pop updates in listener callbacks', () => {
141
+ const listener = jest.fn();
142
+ adaptedHistory.listen(listener);
143
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
144
+ action: 'REPLACE',
145
+ location: {
146
+ pathname: '/replaced',
147
+ search: '',
148
+ hash: '',
149
+ state: null,
150
+ key: 'replace-key',
151
+ },
152
+ });
153
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
154
+ action: 'POP',
155
+ location: {
156
+ pathname: '/popped',
157
+ search: '',
158
+ hash: '',
159
+ state: null,
160
+ key: 'pop-key',
161
+ },
162
+ });
163
+ expect(listener).toHaveBeenNthCalledWith(1, {
164
+ action: RemixAction.Replace,
165
+ location: {
166
+ pathname: '/replaced',
167
+ search: '',
168
+ hash: '',
169
+ state: null,
170
+ key: 'replace-key',
171
+ },
172
+ delta: null,
173
+ });
174
+ expect(listener).toHaveBeenNthCalledWith(2, {
175
+ action: RemixAction.Pop,
176
+ location: {
177
+ pathname: '/popped',
178
+ search: '',
179
+ hash: '',
180
+ state: null,
181
+ key: 'pop-key',
182
+ },
183
+ delta: null,
184
+ });
185
+ });
186
+ });
187
+ //# sourceMappingURL=adaptV6_30History.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV6_30History.test.js","sourceRoot":"","sources":["../../src/adaptV6_30History.test.ts"],"names":[],"mappings":"AAAA,4BAA4B;AAG5B,OAAO,EAAC,MAAM,IAAI,WAAW,EAAC,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAOtD,QAAQ,CAAC,mBAAmB,EAAE,GAAG,EAAE;IACjC,IAAI,OAA0B,CAAC;IAC/B,IAAI,cAAoD,CAAC;IACzD,wDAAwD;IACxD,IAAI,cAAmD,CAAC;IACxD,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,CAAC;IAErC,UAAU,CAAC,GAAG,EAAE;QACd,cAAc,GAAG,SAAS,CAAC;QAE3B,OAAO,GAAG;YACR,MAAM,EAAE,WAAW,CAAC,IAAI;YACxB,QAAQ,EAAE;gBACR,QAAQ,EAAE,UAAU;gBACpB,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAC,IAAI,EAAE,MAAM,EAAC;gBACrB,GAAG,EAAE,aAAa;aACnB;YACD,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE;YACf,OAAO,EAAE,IAAI,CAAC,EAAE,EAAE;YAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EAAE;YACb,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE;YACf,OAAO,EAAE,IAAI,CAAC,EAAE,EAAE;YAClB,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,EAAE;gBAC3B,cAAc,GAAG,QAAQ,CAAC;gBAC1B,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC;YACnB,CAAC,CAAC;YACF,KAAK,EAAE,IAAI,CAAC,EAAE,EAAE;YAChB,UAAU,EAAE,IAAI,CAAC,EAAE,EAAE;YACrB,MAAM,EAAE,CAAC;SACW,CAAC;QAEvB,cAAc,GAAG,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;YACjC,wDAAwD;YACxD,OAAQ,MAAc,CAAC,MAAM,CAAC;QAChC,CAAC;aAAM,CAAC;YACN,MAAM,CAAC,MAAM,GAAG,cAAc,CAAC;QACjC,CAAC;IACH,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,uBAAuB,EAAE,GAAG,EAAE;QAC/B,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAErD,OAAO,CAAC,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;QACrC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QAExD,OAAO,CAAC,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC;QACjC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;IACtD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,8BAA8B,EAAE,GAAG,EAAE;QACtC,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC;YACtC,QAAQ,EAAE,UAAU;YACpB,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,EAAC,IAAI,EAAE,MAAM,EAAC;YACrB,GAAG,EAAE,aAAa;SACnB,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE;QAC3D,OAAO,CAAC,QAAQ,GAAG,gCACd,OAAO,CAAC,QAAQ,KACnB,GAAG,EAAE,SAAS,GAER,CAAC;QAET,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IACtD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE;QACpD,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACzD,MAAM,CACJ,cAAc,CAAC,UAAU,CAAC;YACxB,QAAQ,EAAE,OAAO;YACjB,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,IAAI;SACX,CAAC,CACH,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QACtB,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,EAAC,MAAM,EAAE,MAAM,EAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACpE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,gDAAgD,EAAE,GAAG,EAAE;QACxD,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,EAAE;YACtC,YAAY,EAAE,IAAI;YAClB,KAAK,EAAE,EAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,gCAAgC,EAAC,EAAC;SAC5D,CAAC,CAAC;QAEH,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,IAAI,CACvD,uBAAuB,CACxB,CAAC;QACF,MAAM,CACJ,cAAc,CAAC,SAAS,CAAC,EAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAC,CAAC,CAAC,QAAQ,EAAE,CACzE,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC;IACtC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;QAC3C,MAAM,CAAC,cAAc,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC;YACrD,QAAQ,EAAE,OAAO;YACjB,MAAM,EAAE,EAAE;YACV,IAAI,EAAE,EAAE;SACT,CAAC,CAAC;QAEH,MAAM,CACJ,cAAc,CAAC,cAAc,CAAC;YAC5B,QAAQ,EAAE,OAAO;YACjB,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,IAAI;SACX,CAAC,CACH,CAAC,OAAO,CAAC;YACR,QAAQ,EAAE,OAAO;YACjB,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,IAAI;SACX,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,8BAA8B,EAAE,GAAG,EAAE;QACtC,cAAc,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,IAAI,EAAE,MAAM,EAAC,CAAC,CAAC;QAC7C,cAAc,CAAC,OAAO,CAAC,UAAU,EAAE,EAAC,IAAI,EAAE,SAAS,EAAC,CAAC,CAAC;QACtD,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAEtB,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,oBAAoB,CAAC,OAAO,EAAE,EAAC,IAAI,EAAE,MAAM,EAAC,CAAC,CAAC;QACnE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,oBAAoB,CAAC,UAAU,EAAE,EAAC,IAAI,EAAE,SAAS,EAAC,CAAC,CAAC;QAC5E,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,8DAA8D,EAAE,GAAG,EAAE;QACtE,MAAM,WAAW,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAE7B,OAAO,CAAC,MAAoB,CAAC,kBAAkB,CAAC,CAAC,QAAQ,EAAE,EAAE;YAC5D,cAAc,GAAG,QAAQ,CAAC;YAC1B,OAAO,WAAW,CAAC;QACrB,CAAC,CAAC,CAAC;QAEH,MAAM,QAAQ,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAC3B,MAAM,mBAAmB,GAAG,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAE5D,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;QAChD,MAAM,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC9C,MAAM,CAAC,cAAc,CAAC,CAAC,WAAW,EAAE,CAAC;QAErC,cAAc,aAAd,cAAc,uBAAd,cAAc,CAAG;YACf,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE;gBACR,QAAQ,EAAE,OAAO;gBACjB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,EAAC,EAAE,EAAE,CAAC,EAAC;gBACd,GAAG,EAAE,UAAU;aAChB;SACF,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ,CAAC,CAAC,oBAAoB,CAAC;YACpC,MAAM,EAAE,WAAW,CAAC,IAAI;YACxB,QAAQ,EAAE;gBACR,QAAQ,EAAE,OAAO;gBACjB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,EAAC,EAAE,EAAE,CAAC,EAAC;gBACd,GAAG,EAAE,UAAU;aAChB;YACD,KAAK,EAAE,IAAI;SACZ,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,oDAAoD,EAAE,GAAG,EAAE;QAC5D,MAAM,QAAQ,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAC3B,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEhC,cAAc,aAAd,cAAc,uBAAd,cAAc,CAAG;YACf,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE;gBACR,QAAQ,EAAE,WAAW;gBACrB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,IAAI;gBACX,GAAG,EAAE,aAAa;aACnB;SACF,CAAC,CAAC;QAEH,cAAc,aAAd,cAAc,uBAAd,cAAc,CAAG;YACf,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE;gBACR,QAAQ,EAAE,SAAS;gBACnB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,IAAI;gBACX,GAAG,EAAE,SAAS;aACf;SACF,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ,CAAC,CAAC,uBAAuB,CAAC,CAAC,EAAE;YAC1C,MAAM,EAAE,WAAW,CAAC,OAAO;YAC3B,QAAQ,EAAE;gBACR,QAAQ,EAAE,WAAW;gBACrB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,IAAI;gBACX,GAAG,EAAE,aAAa;aACnB;YACD,KAAK,EAAE,IAAI;SACZ,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ,CAAC,CAAC,uBAAuB,CAAC,CAAC,EAAE;YAC1C,MAAM,EAAE,WAAW,CAAC,GAAG;YACvB,QAAQ,EAAE;gBACR,QAAQ,EAAE,SAAS;gBACnB,MAAM,EAAE,EAAE;gBACV,IAAI,EAAE,EAAE;gBACR,KAAK,EAAE,IAAI;gBACX,GAAG,EAAE,SAAS;aACf;YACD,KAAK,EAAE,IAAI;SACZ,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","sourcesContent":["/* @jest-environment node */\n\nimport type {History} from 'history';\nimport {Action as RemixAction} from '@remix-run/router';\nimport {adaptV6_30History} from './adaptV6_30History';\n\ntype ChangeableHistory = History & {\n set action(value: string);\n set location(value: History['location']);\n};\n\ndescribe('adaptV6_30History', () => {\n let history: ChangeableHistory;\n let adaptedHistory: ReturnType<typeof adaptV6_30History>;\n // biome-ignore lint/suspicious/noExplicitAny: test case\n let listenCallback: ((update: any) => void) | undefined;\n const originalWindow = global.window;\n\n beforeEach(() => {\n listenCallback = undefined;\n\n history = {\n action: RemixAction.Push,\n location: {\n pathname: '/initial',\n search: '?q=1',\n hash: '#top',\n state: {from: 'test'},\n key: 'history-key',\n },\n push: jest.fn(),\n replace: jest.fn(),\n go: jest.fn(),\n back: jest.fn(),\n forward: jest.fn(),\n listen: jest.fn((listener) => {\n listenCallback = listener;\n return jest.fn();\n }),\n block: jest.fn(),\n createHref: jest.fn(),\n length: 1,\n } as ChangeableHistory;\n\n adaptedHistory = adaptV6_30History(history);\n });\n\n afterEach(() => {\n jest.clearAllMocks();\n if (originalWindow === undefined) {\n // biome-ignore lint/suspicious/noExplicitAny: test case\n delete (global as any).window;\n } else {\n global.window = originalWindow;\n }\n });\n\n it('maps the action value', () => {\n expect(adaptedHistory.action).toBe(RemixAction.Push);\n\n history.action = RemixAction.Replace;\n expect(adaptedHistory.action).toBe(RemixAction.Replace);\n\n history.action = RemixAction.Pop;\n expect(adaptedHistory.action).toBe(RemixAction.Pop);\n });\n\n it('exposes the current location', () => {\n expect(adaptedHistory.location).toEqual({\n pathname: '/initial',\n search: '?q=1',\n hash: '#top',\n state: {from: 'test'},\n key: 'history-key',\n });\n });\n\n it('defaults the location key to default when missing', () => {\n history.location = {\n ...history.location,\n key: undefined,\n // biome-ignore lint/suspicious/noExplicitAny: test case\n } as any;\n\n expect(adaptedHistory.location.key).toBe('default');\n });\n\n it('creates hrefs from string and path objects', () => {\n expect(adaptedHistory.createHref('/path')).toBe('/path');\n expect(\n adaptedHistory.createHref({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n }),\n ).toBe('/path?a=1#b');\n expect(adaptedHistory.createHref({search: '?a=1'})).toBe('/?a=1');\n });\n\n it('creates urls using the current window location', () => {\n Object.defineProperty(global, 'window', {\n configurable: true,\n value: {location: {href: 'http://localhost/base?x=1#hash'}},\n });\n\n expect(adaptedHistory.createURL('/path').toString()).toBe(\n 'http://localhost/path',\n );\n expect(\n adaptedHistory.createURL({pathname: '/path', search: '?a=1'}).toString(),\n ).toBe('http://localhost/path?a=1');\n });\n\n it('encodes locations as path objects', () => {\n expect(adaptedHistory.encodeLocation('/path')).toEqual({\n pathname: '/path',\n search: '',\n hash: '',\n });\n\n expect(\n adaptedHistory.encodeLocation({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n }),\n ).toEqual({\n pathname: '/path',\n search: '?a=1',\n hash: '#b',\n });\n });\n\n it('delegates navigation methods', () => {\n adaptedHistory.push('/push', {from: 'push'});\n adaptedHistory.replace('/replace', {from: 'replace'});\n adaptedHistory.go(-2);\n\n expect(history.push).toHaveBeenCalledWith('/push', {from: 'push'});\n expect(history.replace).toHaveBeenCalledWith('/replace', {from: 'replace'});\n expect(history.go).toHaveBeenCalledWith(-2);\n });\n\n it('adapts listen callbacks and returns the unsubscribe function', () => {\n const unsubscribe = jest.fn();\n\n (history.listen as jest.Mock).mockImplementation((listener) => {\n listenCallback = listener;\n return unsubscribe;\n });\n\n const listener = jest.fn();\n const returnedUnsubscribe = adaptedHistory.listen(listener);\n\n expect(history.listen).toHaveBeenCalledTimes(1);\n expect(returnedUnsubscribe).toBe(unsubscribe);\n expect(listenCallback).toBeDefined();\n\n listenCallback?.({\n action: 'PUSH',\n location: {\n pathname: '/next',\n search: '',\n hash: '',\n state: {id: 1},\n key: 'next-key',\n },\n });\n\n expect(listener).toHaveBeenCalledWith({\n action: RemixAction.Push,\n location: {\n pathname: '/next',\n search: '',\n hash: '',\n state: {id: 1},\n key: 'next-key',\n },\n delta: null,\n });\n });\n\n it('maps replace and pop updates in listener callbacks', () => {\n const listener = jest.fn();\n adaptedHistory.listen(listener);\n\n listenCallback?.({\n action: 'REPLACE',\n location: {\n pathname: '/replaced',\n search: '',\n hash: '',\n state: null,\n key: 'replace-key',\n },\n });\n\n listenCallback?.({\n action: 'POP',\n location: {\n pathname: '/popped',\n search: '',\n hash: '',\n state: null,\n key: 'pop-key',\n },\n });\n\n expect(listener).toHaveBeenNthCalledWith(1, {\n action: RemixAction.Replace,\n location: {\n pathname: '/replaced',\n search: '',\n hash: '',\n state: null,\n key: 'replace-key',\n },\n delta: null,\n });\n\n expect(listener).toHaveBeenNthCalledWith(2, {\n action: RemixAction.Pop,\n location: {\n pathname: '/popped',\n search: '',\n hash: '',\n state: null,\n key: 'pop-key',\n },\n delta: null,\n });\n });\n});\n"]}
@@ -0,0 +1,2 @@
1
+ export * from './adaptV6_30History';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './adaptV6_30History';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC","sourcesContent":["export * from './adaptV6_30History';\n"]}
@@ -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.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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.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.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/history/index.d.ts","../../../node_modules/@remix-run/router/dist/history.d.ts","../../../node_modules/@remix-run/router/dist/utils.d.ts","../../../node_modules/@remix-run/router/dist/router.d.ts","../../../node_modules/@remix-run/router/dist/index.d.ts","../src/adaptV6_30History.tsx","../src/adaptV6_30History.test.ts","../src/index.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/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/sea.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/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/estree-jsx/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/git-rev-sync/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/gtag.js/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.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/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/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/@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/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Global.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Circus.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Config.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/TestResult.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Transform.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-message-util/build/types.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-message-util/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-mock/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/legacyFakeTimers.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/modernFakeTimers.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-environment-node/build/index.d.ts","../../../node_modules/devtools-protocol/types/protocol.d.ts","../../../node_modules/devtools-protocol/types/protocol-mapping.d.ts","../../../node_modules/typed-query-selector/parser.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/main.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/permissions.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/web-bluetooth.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/ua-client-hints.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/mapping.d.ts","../../../node_modules/webdriver-bidi-protocol/out/index.d.ts","../../../node_modules/puppeteer-core/lib/types.d.ts","../../../node_modules/puppeteer/lib/types.d.ts","../../../node_modules/@types/jest-environment-puppeteer/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts","../../../node_modules/parse5/node_modules/entities/decode.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/mdx/types.d.ts","../../../node_modules/@types/mdx/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../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/pino/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/puppeteer/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-config/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sax/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/styled-components/index.d.ts","../../../node_modules/@types/stylis/index.d.ts","../../../node_modules/@types/systemjs/index.d.ts","../../../node_modules/@types/toposort/index.d.ts","../../../node_modules/@types/triple-beam/index.d.ts","../../../node_modules/@types/url-join/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"50001cd4550147fb62c68902f6e0c1856d42c575f0f5f43efe8639f931838a50","5af7c35a9c5c4760fd084fedb6ba4c7059ac9598b410093e5312ac10616bf17b","503cdeeaeca0f08ff204ea818f2b3fe711b5e98ac574b6cded51495c943f2c34","3c8c1edb7ed8a842cb14d9f2ba6863183168a9fc8d6aa15dec221ebf8b946393","0a6e1a3f199d6cc3df0410b4df05a914987b1e152c4beacfd0c5142e15302cac",{"version":"f5e2deb6c54c01ab8ae6be4bc9d737362cca4fdb4fabfb9db43f87f8c7d74db9","signature":"b7d85fdc8c226f8bfb8a875db88d057e03638f59215d331fb430fe08cd99af3f"},{"version":"7c369d95effd308f6d1d86b1a61d8a84dbe8d0cbfb3dce92b7db1fc2cf014ee8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"c7df469b5f303d5d9076ea4403ca6bf4ea4f214d3ee1dd7b1e5c8dd63ec2aa94","556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"dd78bfe9dfcadb2c4cd3a3a36df38fb3ef8ed2c601b57f6ad9a29e38a17ff39c","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"257ff9424de2bf36ba29f928e268cf6075fb7a0c2acd339c9ad7ac64653081d2","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","f9e22729fa06ed20f8b1fe60670b7c74933fdfd44d869ddfb1919c15a5cf12fb",{"version":"b8d8a69d95a2a0c585b6c0d4661d625d2449149525c22ff0bc1f58a8238f5bc1","affectsGlobalScope":true},"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"689be50b735f145624c6f391042155ae2ff6b90a93bac11ca5712bc866f6010c","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","751764bb94219b4ce8f5475dc35d3de2e432fea01a0c9610cd7f69ad05e398c6","5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","232f118ae64ab84dcd26ddb60eaed5a6e44302d36249abf05e9e3fc2cbb701a2","0871f82b0862fe5e80ea91c48fcc7f7702d212c25f5126a3cb2154fadc6331a2","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"ce210da7eb15eab9b8b28c01ecacd63f4e9bfea3ecf6d4ebfb8057ef0674d13b","affectsGlobalScope":true},"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b",{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"a7ca2a9e61286d74bc37fe64e5dcd7da04607f7f5432f7c651b47b573fc76cef","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","4f6ae308c5f2901f2988c817e1511520619e9025b9b12cc7cce2ab2e6ffed78a","26b7d0cd4b41ab557ef9e3bfeec42dcf24252843633e3d29f38d2c0b13aaa528","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true},"caac4c00061a947d2b1010bb6464f06197f2671bdf948fa1aa40bf1e244ee2a0","95b6c669e7ed7c5358c03f8aa24986640f6125ee81bb99e70e9155974f7fd253","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","c3e5b75e1af87b8e67e12e21332e708f7eccee6aac6261cfe98ca36652cdcb53","f7dd7280ee4f0420865e6423fe199aeac63d1d66203a8b631077cdc15501ef1f","ef62b4aa372f77458d84c26614b44129f929e263c81b5cd1034f5828a5530412","8610558ae88a43ad794c4ab1da4f0e8e174e0357c88f6cbb21f523e67414e9a9","0b0feb9837c561c0a67b61024328045bb16bac6e4b10f7b0b217d3b8b43b0b12","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","d1c6c35d174dbe63a76ed8ac6621cca8dbe8794961a2121feb5f0239747d1b7e","051c1bc0efd3690031a97ac49133c9486c22bd07852e75a11ed4b40ceb722569","0671e90198a35ffd8e5dd35c5ce0fd4839305f6fe9878ca9851a25c097a7874a","a3d9df9d57f7e47f70e013a46cf1c38177579dbb2c5b567bde24c7a67ed1303d","b4ac0ae1e7ed09d2ab8496d65c04643742a1811c6c5f34d9f9504a3868bc02e8","b63b8dfe391e40354edfb991062b8e8e28ef36a28644a7904f6a38f51a8a2386","375ecb9cebdd43c6fd230cfc02c6640344aadf920319b73a3c8514f45f23167c","018eed21a72df22481e3963815c40a14c070bd55481675b9ca513ce3c636e5a5","61f3487013ddc4b5c67a00a1919fab961ecb56fea322eb88fd30f492f9b307b8","48a92a011a5a04a49b1a378b4169c4c32e1ba793879f6f75fa23254f08326b13","6fc329e7ba09a2a03014076561621dcadd57cc25d8e2d92fb96c59e26739e47d","2e01ab648ec88951c1b04b98f692eaa77da914bcfa6346b8f298e78f10a19899","a081114975823082bd7f2a7743f2634e8669b00c2bd41eaf75ff4d7825dd2e4d","b1fc7cad221e8d71166e2109224e6a98894b78325138ce2f423d6eab3ee53d63","7854c65e65559b79ea904321c842c618a7b7719703746e7165050a006e50992b","6745d6da8a068e8abe19ff5af0c6f97e249297edfdf135d255142060b9ffeeea","fc649a6e398a6b17ca3c5311c3ac787ad306142e95735a86362f5adf75e44546","5ab8b2d709fa6f28b85746a56bcc1a4fd227f3ac37148a920f33853cb71937d2","44aa57dded46deaa11565b840954a4008f4b9adf4ba99ea1ef64a9dca0859b6a",{"version":"6ca9967bc66b8999a1c3ff792330c2d81b9caad63e1aeb80b60241ef2ac0cd9b","affectsGlobalScope":true},"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","9462ab013df86c16a2a69ca0a3b6f31d4fd86dd29a947e14b590eb20806f220b","b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","3b6858becfc9d48f9d40620b87c4618ca8c07055a9ad807fc1094101fc4e63e8","e85d04f57b46201ddc8ba238a84322432a4803a5d65e0bbd8b3b4f05345edd51","d81d85c49cb39a0cbe2ba467864076c88675a883be767a08b0595bf4cdf4eeda","adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","1cfafc077fd4b420e5e1c5f3e0e6b086f6ea424bf96a6c7af0d6d2ef2b008a81","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","510616459e6edd01acbce333fb256e06bdffdad43ca233a9090164bf8bb83912","c73834a2aee5e08dea83bd8d347f131bc52f9ec5b06959165c55ef7a544cae82","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ddef25f825320de051dcb0e62ffce621b41c67712b5b4105740c32fd83f4c449","1b3dffaa4ca8e38ac434856843505af767a614d187fb3a5ef4fcebb023c355aa",{"version":"cfb95dbcdee02402fb9373c62ec4ba735b5479e5d879f39e7c23fe1d58186e31","affectsGlobalScope":true},"480ffa66827143d60025514f0d979f7bc790024821e5ecc12967ce13a7e3e08a",{"version":"3fe70cdd5fb74b3d40491d0ac1341fff210ad971f26cece40f9644740556ae8d","affectsGlobalScope":true},"94b5559e2611f20b265cd60af2387942f046b07f3aa37754c38d1edf82e52f2c","908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","049ee1188087c6aedf78057e3dc077fd937c07d30c6a17fb6996c11e57ebe127","1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"root":[[53,55]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","sourceMap":true,"strict":true,"target":4},"fileIdsList":[[56],[193],[49,50,51],[49,50],[49],[56,57,58,59,60],[56,58],[115,150,151],[106,150],[150],[142,150,159],[115,150],[161],[163,164],[112,115,150,156,157,158],[152,157,159,166],[113,150],[171],[179],[173,179],[174,175,176,177,178],[183],[112,115,117,120,131,142,150],[188],[189],[145,216,227],[145,150,207,211,214],[212,213],[210,211],[210],[150,200],[190,192,203],[200,201,204,205,206],[202],[145,150,207,211,214,215],[207,209],[208],[195,198],[112,145,150,246,247,249],[248],[252,253],[115,142,150,255,256],[62],[99],[100,105,134],[101,106,112,113,120,131,142],[101,102,112,120],[103,143],[104,105,113,121],[105,131,139],[106,108,112,120],[99,107],[108,109],[112],[110,112],[99,112],[112,113,114,131,142],[112,113,114,127,131,134],[97,100,147],[108,112,115,120,131,142],[112,113,115,116,120,131,139,142],[115,117,131,139,142],[62,63,98,99,100,101,102,103,104,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,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[112,118],[119,142,147],[108,112,120,131],[121],[122],[99,123],[120,121,124,141,147],[125],[126],[112,127,128],[127,129,143,145],[100,112,131,132,133,134],[100,131,133],[131,132],[134],[135],[131],[112,137,138],[137,138],[105,120,131,139],[140],[120,141],[100,115,126,142],[105,143],[131,144],[119,145],[146],[100,105,112,114,123,131,142,145,147],[131,148],[112,115,131,150],[101,150],[179,183,263],[179,183],[180,181,182],[131,150],[268,307],[268,292,307],[307],[268],[268,293,307],[268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306],[293,307],[113,131,150,155],[113,167],[115,150,156,165],[181,183,184],[112,115,117,120,131,139,142,148,150],[217],[191,197],[115,131,150],[192,196],[195],[230],[229,230],[229],[229,230,231,238,239,242,243,244,245],[230,239],[229,230,231,238,239,240,241],[229,239],[239,243],[230,231,232,237],[231],[229,230,239],[236],[233,234,235],[194],[101,131,150,217,218,219,225],[226],[74,78,142],[74,131,142],[69],[71,74,139,142],[120,139],[69,150],[71,74,120,142],[66,67,70,73,100,112,131,142],[66,72],[70,74,100,134,142,150],[100,150],[90,100,150],[68,69,150],[74],[68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96],[74,81,82],[72,74,82,83],[73],[66,69,74],[74,78,82,83],[78],[72,74,77,142],[66,71,72,74,78,81],[100,131],[69,74,90,100,147,150],[220,221,222,223],[220,221,222,223,224],[48,52,53],[48,52],[53]],"referencedMap":[[58,1],[194,2],[52,3],[51,4],[50,5],[61,6],[57,1],[59,7],[60,1],[152,8],[153,9],[154,10],[160,11],[151,12],[162,13],[164,14],[159,15],[167,16],[169,17],[172,18],[177,19],[178,19],[174,20],[175,20],[176,20],[179,21],[184,22],[187,23],[189,24],[190,25],[228,26],[215,27],[214,28],[212,29],[213,30],[201,31],[204,32],[200,24],[207,33],[203,34],[216,35],[210,36],[209,37],[199,38],[248,39],[249,40],[251,18],[253,41],[257,42],[62,43],[63,43],[99,44],[100,45],[101,46],[102,47],[103,48],[104,49],[105,50],[106,51],[107,52],[108,53],[109,53],[111,54],[110,55],[112,56],[113,57],[114,58],[98,59],[115,60],[116,61],[117,62],[150,63],[118,64],[119,65],[120,66],[121,67],[122,68],[123,69],[124,70],[125,71],[126,72],[127,73],[128,73],[129,74],[131,75],[133,76],[132,77],[134,78],[135,79],[136,80],[137,81],[138,82],[139,83],[140,84],[141,85],[142,86],[143,87],[144,88],[145,89],[146,90],[147,91],[148,92],[259,93],[261,94],[262,22],[264,95],[265,95],[263,96],[183,97],[267,98],[292,99],[293,100],[268,101],[271,101],[290,99],[291,99],[281,99],[280,102],[278,99],[273,99],[286,99],[284,99],[288,99],[272,99],[285,99],[289,99],[274,99],[275,99],[287,99],[269,99],[276,99],[277,99],[279,99],[283,99],[294,103],[282,99],[270,99],[307,104],[301,103],[303,105],[302,103],[295,103],[296,103],[298,103],[300,103],[304,105],[305,105],[297,105],[299,105],[156,106],[308,107],[166,108],[309,12],[310,109],[316,110],[317,34],[218,111],[198,112],[255,113],[197,114],[196,115],[231,116],[245,117],[230,118],[246,119],[241,120],[242,121],[240,122],[244,123],[238,124],[232,125],[243,126],[239,117],[237,127],[236,128],[195,129],[226,130],[227,131],[81,132],[88,133],[80,132],[95,134],[72,135],[71,136],[94,10],[89,137],[92,138],[74,139],[73,140],[69,141],[68,142],[91,143],[70,144],[75,145],[79,145],[97,146],[96,145],[83,147],[84,148],[86,149],[82,150],[85,151],[90,10],[77,152],[78,153],[87,154],[67,155],[93,156],[224,157],[225,158],[54,159],[53,160],[55,161]],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"5.5.4"}
@@ -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.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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.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.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/history/index.d.ts","../../../node_modules/@remix-run/router/dist/history.d.ts","../../../node_modules/@remix-run/router/dist/utils.d.ts","../../../node_modules/@remix-run/router/dist/router.d.ts","../../../node_modules/@remix-run/router/dist/index.d.ts","../src/adaptV6_30History.tsx","../src/adaptV6_30History.test.ts","../src/index.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/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/sea.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/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/estree-jsx/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/git-rev-sync/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/gtag.js/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.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/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/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/@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/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Global.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Circus.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Config.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/TestResult.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/Transform.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/types/build/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-message-util/build/types.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-message-util/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-mock/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/legacyFakeTimers.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/modernFakeTimers.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/fake-timers/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts","../../../node_modules/@types/jest-environment-puppeteer/node_modules/jest-environment-node/build/index.d.ts","../../../node_modules/devtools-protocol/types/protocol.d.ts","../../../node_modules/devtools-protocol/types/protocol-mapping.d.ts","../../../node_modules/typed-query-selector/parser.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/main.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/permissions.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/web-bluetooth.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/ua-client-hints.d.ts","../../../node_modules/webdriver-bidi-protocol/out/gen/mapping.d.ts","../../../node_modules/webdriver-bidi-protocol/out/index.d.ts","../../../node_modules/puppeteer-core/lib/types.d.ts","../../../node_modules/puppeteer/lib/types.d.ts","../../../node_modules/@types/jest-environment-puppeteer/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts","../../../node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts","../../../node_modules/parse5/node_modules/entities/decode.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/mdx/types.d.ts","../../../node_modules/@types/mdx/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../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/pino/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/puppeteer/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-config/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sax/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/styled-components/index.d.ts","../../../node_modules/@types/stylis/index.d.ts","../../../node_modules/@types/systemjs/index.d.ts","../../../node_modules/@types/toposort/index.d.ts","../../../node_modules/@types/triple-beam/index.d.ts","../../../node_modules/@types/url-join/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"50001cd4550147fb62c68902f6e0c1856d42c575f0f5f43efe8639f931838a50","5af7c35a9c5c4760fd084fedb6ba4c7059ac9598b410093e5312ac10616bf17b","503cdeeaeca0f08ff204ea818f2b3fe711b5e98ac574b6cded51495c943f2c34","3c8c1edb7ed8a842cb14d9f2ba6863183168a9fc8d6aa15dec221ebf8b946393","0a6e1a3f199d6cc3df0410b4df05a914987b1e152c4beacfd0c5142e15302cac",{"version":"f5e2deb6c54c01ab8ae6be4bc9d737362cca4fdb4fabfb9db43f87f8c7d74db9","signature":"b7d85fdc8c226f8bfb8a875db88d057e03638f59215d331fb430fe08cd99af3f"},{"version":"7c369d95effd308f6d1d86b1a61d8a84dbe8d0cbfb3dce92b7db1fc2cf014ee8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"c7df469b5f303d5d9076ea4403ca6bf4ea4f214d3ee1dd7b1e5c8dd63ec2aa94","556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"dd78bfe9dfcadb2c4cd3a3a36df38fb3ef8ed2c601b57f6ad9a29e38a17ff39c","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"257ff9424de2bf36ba29f928e268cf6075fb7a0c2acd339c9ad7ac64653081d2","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","f9e22729fa06ed20f8b1fe60670b7c74933fdfd44d869ddfb1919c15a5cf12fb",{"version":"b8d8a69d95a2a0c585b6c0d4661d625d2449149525c22ff0bc1f58a8238f5bc1","affectsGlobalScope":true},"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"689be50b735f145624c6f391042155ae2ff6b90a93bac11ca5712bc866f6010c","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","751764bb94219b4ce8f5475dc35d3de2e432fea01a0c9610cd7f69ad05e398c6","5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","232f118ae64ab84dcd26ddb60eaed5a6e44302d36249abf05e9e3fc2cbb701a2","0871f82b0862fe5e80ea91c48fcc7f7702d212c25f5126a3cb2154fadc6331a2","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"ce210da7eb15eab9b8b28c01ecacd63f4e9bfea3ecf6d4ebfb8057ef0674d13b","affectsGlobalScope":true},"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b",{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"a7ca2a9e61286d74bc37fe64e5dcd7da04607f7f5432f7c651b47b573fc76cef","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","4f6ae308c5f2901f2988c817e1511520619e9025b9b12cc7cce2ab2e6ffed78a","26b7d0cd4b41ab557ef9e3bfeec42dcf24252843633e3d29f38d2c0b13aaa528","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true},"caac4c00061a947d2b1010bb6464f06197f2671bdf948fa1aa40bf1e244ee2a0","95b6c669e7ed7c5358c03f8aa24986640f6125ee81bb99e70e9155974f7fd253","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","c3e5b75e1af87b8e67e12e21332e708f7eccee6aac6261cfe98ca36652cdcb53","f7dd7280ee4f0420865e6423fe199aeac63d1d66203a8b631077cdc15501ef1f","ef62b4aa372f77458d84c26614b44129f929e263c81b5cd1034f5828a5530412","8610558ae88a43ad794c4ab1da4f0e8e174e0357c88f6cbb21f523e67414e9a9","0b0feb9837c561c0a67b61024328045bb16bac6e4b10f7b0b217d3b8b43b0b12","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","d1c6c35d174dbe63a76ed8ac6621cca8dbe8794961a2121feb5f0239747d1b7e","051c1bc0efd3690031a97ac49133c9486c22bd07852e75a11ed4b40ceb722569","0671e90198a35ffd8e5dd35c5ce0fd4839305f6fe9878ca9851a25c097a7874a","a3d9df9d57f7e47f70e013a46cf1c38177579dbb2c5b567bde24c7a67ed1303d","b4ac0ae1e7ed09d2ab8496d65c04643742a1811c6c5f34d9f9504a3868bc02e8","b63b8dfe391e40354edfb991062b8e8e28ef36a28644a7904f6a38f51a8a2386","375ecb9cebdd43c6fd230cfc02c6640344aadf920319b73a3c8514f45f23167c","018eed21a72df22481e3963815c40a14c070bd55481675b9ca513ce3c636e5a5","61f3487013ddc4b5c67a00a1919fab961ecb56fea322eb88fd30f492f9b307b8","48a92a011a5a04a49b1a378b4169c4c32e1ba793879f6f75fa23254f08326b13","6fc329e7ba09a2a03014076561621dcadd57cc25d8e2d92fb96c59e26739e47d","2e01ab648ec88951c1b04b98f692eaa77da914bcfa6346b8f298e78f10a19899","a081114975823082bd7f2a7743f2634e8669b00c2bd41eaf75ff4d7825dd2e4d","b1fc7cad221e8d71166e2109224e6a98894b78325138ce2f423d6eab3ee53d63","7854c65e65559b79ea904321c842c618a7b7719703746e7165050a006e50992b","6745d6da8a068e8abe19ff5af0c6f97e249297edfdf135d255142060b9ffeeea","fc649a6e398a6b17ca3c5311c3ac787ad306142e95735a86362f5adf75e44546","5ab8b2d709fa6f28b85746a56bcc1a4fd227f3ac37148a920f33853cb71937d2","44aa57dded46deaa11565b840954a4008f4b9adf4ba99ea1ef64a9dca0859b6a",{"version":"6ca9967bc66b8999a1c3ff792330c2d81b9caad63e1aeb80b60241ef2ac0cd9b","affectsGlobalScope":true},"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","9462ab013df86c16a2a69ca0a3b6f31d4fd86dd29a947e14b590eb20806f220b","b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","3b6858becfc9d48f9d40620b87c4618ca8c07055a9ad807fc1094101fc4e63e8","e85d04f57b46201ddc8ba238a84322432a4803a5d65e0bbd8b3b4f05345edd51","d81d85c49cb39a0cbe2ba467864076c88675a883be767a08b0595bf4cdf4eeda","adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","1cfafc077fd4b420e5e1c5f3e0e6b086f6ea424bf96a6c7af0d6d2ef2b008a81","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","510616459e6edd01acbce333fb256e06bdffdad43ca233a9090164bf8bb83912","c73834a2aee5e08dea83bd8d347f131bc52f9ec5b06959165c55ef7a544cae82","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ddef25f825320de051dcb0e62ffce621b41c67712b5b4105740c32fd83f4c449","1b3dffaa4ca8e38ac434856843505af767a614d187fb3a5ef4fcebb023c355aa",{"version":"cfb95dbcdee02402fb9373c62ec4ba735b5479e5d879f39e7c23fe1d58186e31","affectsGlobalScope":true},"480ffa66827143d60025514f0d979f7bc790024821e5ecc12967ce13a7e3e08a",{"version":"3fe70cdd5fb74b3d40491d0ac1341fff210ad971f26cece40f9644740556ae8d","affectsGlobalScope":true},"94b5559e2611f20b265cd60af2387942f046b07f3aa37754c38d1edf82e52f2c","908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","049ee1188087c6aedf78057e3dc077fd937c07d30c6a17fb6996c11e57ebe127","1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"root":[[53,55]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"jsx":2,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","rootDir":"../src","sourceMap":true,"strict":true,"target":4},"fileIdsList":[[56],[193],[49,50,51],[49,50],[49],[56,57,58,59,60],[56,58],[115,150,151],[106,150],[150],[142,150,159],[115,150],[161],[163,164],[112,115,150,156,157,158],[152,157,159,166],[113,150],[171],[179],[173,179],[174,175,176,177,178],[183],[112,115,117,120,131,142,150],[188],[189],[145,216,227],[145,150,207,211,214],[212,213],[210,211],[210],[150,200],[190,192,203],[200,201,204,205,206],[202],[145,150,207,211,214,215],[207,209],[208],[195,198],[112,145,150,246,247,249],[248],[252,253],[115,142,150,255,256],[62],[99],[100,105,134],[101,106,112,113,120,131,142],[101,102,112,120],[103,143],[104,105,113,121],[105,131,139],[106,108,112,120],[99,107],[108,109],[112],[110,112],[99,112],[112,113,114,131,142],[112,113,114,127,131,134],[97,100,147],[108,112,115,120,131,142],[112,113,115,116,120,131,139,142],[115,117,131,139,142],[62,63,98,99,100,101,102,103,104,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,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[112,118],[119,142,147],[108,112,120,131],[121],[122],[99,123],[120,121,124,141,147],[125],[126],[112,127,128],[127,129,143,145],[100,112,131,132,133,134],[100,131,133],[131,132],[134],[135],[131],[112,137,138],[137,138],[105,120,131,139],[140],[120,141],[100,115,126,142],[105,143],[131,144],[119,145],[146],[100,105,112,114,123,131,142,145,147],[131,148],[112,115,131,150],[101,150],[179,183,263],[179,183],[180,181,182],[131,150],[268,307],[268,292,307],[307],[268],[268,293,307],[268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306],[293,307],[113,131,150,155],[113,167],[115,150,156,165],[181,183,184],[112,115,117,120,131,139,142,148,150],[217],[191,197],[115,131,150],[192,196],[195],[230],[229,230],[229],[229,230,231,238,239,242,243,244,245],[230,239],[229,230,231,238,239,240,241],[229,239],[239,243],[230,231,232,237],[231],[229,230,239],[236],[233,234,235],[194],[101,131,150,217,218,219,225],[226],[74,78,142],[74,131,142],[69],[71,74,139,142],[120,139],[69,150],[71,74,120,142],[66,67,70,73,100,112,131,142],[66,72],[70,74,100,134,142,150],[100,150],[90,100,150],[68,69,150],[74],[68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96],[74,81,82],[72,74,82,83],[73],[66,69,74],[74,78,82,83],[78],[72,74,77,142],[66,71,72,74,78,81],[100,131],[69,74,90,100,147,150],[220,221,222,223],[220,221,222,223,224],[48,52,53],[48,52],[53]],"referencedMap":[[58,1],[194,2],[52,3],[51,4],[50,5],[61,6],[57,1],[59,7],[60,1],[152,8],[153,9],[154,10],[160,11],[151,12],[162,13],[164,14],[159,15],[167,16],[169,17],[172,18],[177,19],[178,19],[174,20],[175,20],[176,20],[179,21],[184,22],[187,23],[189,24],[190,25],[228,26],[215,27],[214,28],[212,29],[213,30],[201,31],[204,32],[200,24],[207,33],[203,34],[216,35],[210,36],[209,37],[199,38],[248,39],[249,40],[251,18],[253,41],[257,42],[62,43],[63,43],[99,44],[100,45],[101,46],[102,47],[103,48],[104,49],[105,50],[106,51],[107,52],[108,53],[109,53],[111,54],[110,55],[112,56],[113,57],[114,58],[98,59],[115,60],[116,61],[117,62],[150,63],[118,64],[119,65],[120,66],[121,67],[122,68],[123,69],[124,70],[125,71],[126,72],[127,73],[128,73],[129,74],[131,75],[133,76],[132,77],[134,78],[135,79],[136,80],[137,81],[138,82],[139,83],[140,84],[141,85],[142,86],[143,87],[144,88],[145,89],[146,90],[147,91],[148,92],[259,93],[261,94],[262,22],[264,95],[265,95],[263,96],[183,97],[267,98],[292,99],[293,100],[268,101],[271,101],[290,99],[291,99],[281,99],[280,102],[278,99],[273,99],[286,99],[284,99],[288,99],[272,99],[285,99],[289,99],[274,99],[275,99],[287,99],[269,99],[276,99],[277,99],[279,99],[283,99],[294,103],[282,99],[270,99],[307,104],[301,103],[303,105],[302,103],[295,103],[296,103],[298,103],[300,103],[304,105],[305,105],[297,105],[299,105],[156,106],[308,107],[166,108],[309,12],[310,109],[316,110],[317,34],[218,111],[198,112],[255,113],[197,114],[196,115],[231,116],[245,117],[230,118],[246,119],[241,120],[242,121],[240,122],[244,123],[238,124],[232,125],[243,126],[239,117],[237,127],[236,128],[195,129],[226,130],[227,131],[81,132],[88,133],[80,132],[95,134],[72,135],[71,136],[94,10],[89,137],[92,138],[74,139],[73,140],[69,141],[68,142],[91,143],[70,144],[75,145],[79,145],[97,146],[96,145],[83,147],[84,148],[86,149],[82,150],[85,151],[90,10],[77,152],[78,153],[87,154],[67,155],[93,156],[224,157],[225,158],[54,159],[53,160],[55,161]],"latestChangedDtsFile":"./cjs/index.d.ts"},"version":"5.5.4"}
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@feature-hub/react-router-v6-30-adapter",
3
+ "version": "3.9.0-react-router.fb43eeb0.0",
4
+ "description": "A history facade guaranteeing safe access for multiple consumers.",
5
+ "homepage": "https://feature-hub.io/",
6
+ "bugs": {
7
+ "url": "https://github.com/feature-hub/feature-hub/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/feature-hub/feature-hub.git"
12
+ },
13
+ "license": "MIT",
14
+ "author": "Accenture Song Build Germany GmbH",
15
+ "sideEffects": false,
16
+ "exports": {
17
+ ".": {
18
+ "@feature-hub:bundler": "./src/index.ts",
19
+ "import": "./lib/esm/index.js",
20
+ "require": "./lib/cjs/index.js"
21
+ }
22
+ },
23
+ "main": "lib/cjs/index.js",
24
+ "module": "lib/esm/index.js",
25
+ "typings": "lib/cjs/index.d.ts",
26
+ "files": [
27
+ "lib",
28
+ "!__tests__"
29
+ ],
30
+ "devDependencies": {
31
+ "history": "^5.3.0",
32
+ "react-router": "^6.30.0"
33
+ },
34
+ "peerDependencies": {
35
+ "history": "^5.2.0",
36
+ "react-router": "^6.30.0"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "typedoc": {
42
+ "entryPoint": "./src/index.ts",
43
+ "readmeFile": "./README.md",
44
+ "displayName": "history-service"
45
+ },
46
+ "gitHead": "fb43eeb0da6e9ba06649724ab906ffc36243e547"
47
+ }