@feature-hub/react-router-v7-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-v7-adapter
14
+ ```
15
+
16
+ ### Using npm
17
+
18
+ ```sh
19
+ npm install @feature-hub/react-router-v7-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-v7-adapter/
28
+ [api-badge]:
29
+ https://img.shields.io/badge/API-%40feature--hub%2Freact-router-v7-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-v7-adapter.svg
33
+ [package-npm]:
34
+ https://www.npmjs.com/package/@feature-hub/react-router-v7-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,6 @@
1
+ import type { HistoryRouterProps } from 'react-router';
2
+ import { type History } from 'history';
3
+ type HistoryV7 = HistoryRouterProps['history'];
4
+ export declare function adaptV7History(history: History): HistoryV7;
5
+ export {};
6
+ //# sourceMappingURL=adaptV7History.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.d.ts","sourceRoot":"","sources":["../../src/adaptV7History.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,kBAAkB,EAInB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAS,KAAK,OAAO,EAAC,MAAM,SAAS,CAAC;AAE7C,KAAK,SAAS,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAqC/C,wBAAgB,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAoD1D"}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.adaptV7History = adaptV7History;
4
+ const history_1 = require("history");
5
+ function mapAction(action) {
6
+ return action === 'PUSH'
7
+ ? history_1.Action.Push
8
+ : action === 'REPLACE'
9
+ ? history_1.Action.Replace
10
+ : history_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 adaptV7History(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=adaptV7History.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.js","sourceRoot":"","sources":["../../src/adaptV7History.tsx"],"names":[],"mappings":"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","sourcesContent":["import type {\n HistoryRouterProps,\n Path as PathV7,\n To as ToV7,\n Location as LocationV7,\n} from 'react-router';\nimport {Action, type History} from 'history';\n\ntype HistoryV7 = HistoryRouterProps['history'];\n\nfunction mapAction(action: string): Action {\n return action === 'PUSH'\n ? Action.Push\n : action === 'REPLACE'\n ? Action.Replace\n : Action.Pop;\n}\n\nfunction toPathname(to: ToV7): string {\n return typeof to === 'string'\n ? to\n : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';\n}\n\nfunction toPath(to: ToV7): PathV7 {\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 UpdateV7 {\n /**\n * The action that triggered the change.\n */\n action: Action;\n /**\n * The new location.\n */\n location: LocationV7;\n /**\n * The delta between this location and the former location in the history stack\n */\n delta: number | null;\n}\n\nexport function adaptV7History(history: History): HistoryV7 {\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: ToV7) {\n return toPathname(to);\n },\n createURL(to: ToV7) {\n const href = this.createHref(to);\n return new URL(href, window.location.href);\n },\n encodeLocation(to: ToV7): PathV7 {\n return toPath(to);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n push(to: ToV7, state?: any) {\n history.push(toPathname(to), state);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n replace(to: ToV7, state?: any) {\n history.replace(toPathname(to), state);\n },\n go(delta: number) {\n history.go(delta);\n },\n listen(listener: (update: UpdateV7) => 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=adaptV7History.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.test.d.ts","sourceRoot":"","sources":["../../src/adaptV7History.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,184 @@
1
+ "use strict";
2
+ /* @jest-environment node */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const history_1 = require("history");
5
+ const adaptV7History_1 = require("./adaptV7History");
6
+ describe('adaptV7History', () => {
7
+ let history;
8
+ let adaptedHistory;
9
+ let listenCallback;
10
+ const originalWindow = global.window;
11
+ beforeEach(() => {
12
+ listenCallback = undefined;
13
+ history = {
14
+ action: 'PUSH',
15
+ location: {
16
+ pathname: '/initial',
17
+ search: '?q=1',
18
+ hash: '#top',
19
+ state: { from: 'test' },
20
+ key: 'history-key',
21
+ },
22
+ push: jest.fn(),
23
+ replace: jest.fn(),
24
+ go: jest.fn(),
25
+ back: jest.fn(),
26
+ forward: jest.fn(),
27
+ listen: jest.fn((listener) => {
28
+ listenCallback = listener;
29
+ return jest.fn();
30
+ }),
31
+ block: jest.fn(),
32
+ createHref: jest.fn(),
33
+ length: 1,
34
+ };
35
+ adaptedHistory = (0, adaptV7History_1.adaptV7History)(history);
36
+ });
37
+ afterEach(() => {
38
+ if (originalWindow === undefined) {
39
+ delete global.window;
40
+ }
41
+ else {
42
+ global.window = originalWindow;
43
+ }
44
+ });
45
+ it('maps action values', () => {
46
+ expect(adaptedHistory.action).toBe(history_1.Action.Push);
47
+ history.action = history_1.Action.Replace;
48
+ expect(adaptedHistory.action).toBe(history_1.Action.Replace);
49
+ history.action = history_1.Action.Pop;
50
+ expect(adaptedHistory.action).toBe(history_1.Action.Pop);
51
+ });
52
+ it('exposes current location and defaults missing key', () => {
53
+ expect(adaptedHistory.location).toEqual({
54
+ pathname: '/initial',
55
+ search: '?q=1',
56
+ hash: '#top',
57
+ state: { from: 'test' },
58
+ key: 'history-key',
59
+ });
60
+ history.location = Object.assign(Object.assign({}, history.location), { key: undefined });
61
+ expect(adaptedHistory.location.key).toBe('default');
62
+ });
63
+ it('creates hrefs from strings and path objects', () => {
64
+ expect(adaptedHistory.createHref('/path')).toBe('/path');
65
+ expect(adaptedHistory.createHref({
66
+ pathname: '/path',
67
+ search: '?a=1',
68
+ hash: '#b',
69
+ })).toBe('/path?a=1#b');
70
+ expect(adaptedHistory.createHref({ search: '?only=1' })).toBe('/?only=1');
71
+ });
72
+ it('creates URLs using window.location.href as base', () => {
73
+ Object.defineProperty(global, 'window', {
74
+ configurable: true,
75
+ value: { location: { href: 'http://localhost/base?x=1#hash' } },
76
+ });
77
+ expect(adaptedHistory.createURL('/path').toString()).toBe('http://localhost/path');
78
+ expect(adaptedHistory.createURL({ pathname: '/path', search: '?a=1' }).toString()).toBe('http://localhost/path?a=1');
79
+ });
80
+ it('encodes locations as path objects', () => {
81
+ expect(adaptedHistory.encodeLocation('/path')).toEqual({
82
+ pathname: '/path',
83
+ search: '',
84
+ hash: '',
85
+ });
86
+ expect(adaptedHistory.encodeLocation({
87
+ pathname: '/path',
88
+ search: '?a=1',
89
+ hash: '#b',
90
+ })).toEqual({
91
+ pathname: '/path',
92
+ search: '?a=1',
93
+ hash: '#b',
94
+ });
95
+ });
96
+ it('delegates navigation methods', () => {
97
+ adaptedHistory.push('/push', { from: 'push' });
98
+ adaptedHistory.replace('/replace', { from: 'replace' });
99
+ adaptedHistory.go(-2);
100
+ expect(history.push).toHaveBeenCalledWith('/push', { from: 'push' });
101
+ expect(history.replace).toHaveBeenCalledWith('/replace', { from: 'replace' });
102
+ expect(history.go).toHaveBeenCalledWith(-2);
103
+ });
104
+ it('adapts listen callbacks and returns unsubscribe', () => {
105
+ const unsubscribe = jest.fn();
106
+ history.listen.mockImplementation((listener) => {
107
+ listenCallback = listener;
108
+ return unsubscribe;
109
+ });
110
+ const listener = jest.fn();
111
+ const returnedUnsubscribe = adaptedHistory.listen(listener);
112
+ expect(history.listen).toHaveBeenCalledTimes(1);
113
+ expect(returnedUnsubscribe).toBe(unsubscribe);
114
+ expect(listenCallback).toBeDefined();
115
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
116
+ action: 'PUSH',
117
+ location: {
118
+ pathname: '/next',
119
+ search: '',
120
+ hash: '',
121
+ state: { id: 1 },
122
+ key: 'next-key',
123
+ },
124
+ });
125
+ expect(listener).toHaveBeenCalledWith({
126
+ action: history_1.Action.Push,
127
+ location: {
128
+ pathname: '/next',
129
+ search: '',
130
+ hash: '',
131
+ state: { id: 1 },
132
+ key: 'next-key',
133
+ },
134
+ delta: null,
135
+ });
136
+ });
137
+ it('maps replace and pop updates in listener callbacks', () => {
138
+ const listener = jest.fn();
139
+ adaptedHistory.listen(listener);
140
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
141
+ action: 'REPLACE',
142
+ location: {
143
+ pathname: '/replaced',
144
+ search: '',
145
+ hash: '',
146
+ state: null,
147
+ key: 'replace-key',
148
+ },
149
+ });
150
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
151
+ action: 'POP',
152
+ location: {
153
+ pathname: '/popped',
154
+ search: '',
155
+ hash: '',
156
+ state: null,
157
+ key: 'pop-key',
158
+ },
159
+ });
160
+ expect(listener).toHaveBeenNthCalledWith(1, {
161
+ action: history_1.Action.Replace,
162
+ location: {
163
+ pathname: '/replaced',
164
+ search: '',
165
+ hash: '',
166
+ state: null,
167
+ key: 'replace-key',
168
+ },
169
+ delta: null,
170
+ });
171
+ expect(listener).toHaveBeenNthCalledWith(2, {
172
+ action: history_1.Action.Pop,
173
+ location: {
174
+ pathname: '/popped',
175
+ search: '',
176
+ hash: '',
177
+ state: null,
178
+ key: 'pop-key',
179
+ },
180
+ delta: null,
181
+ });
182
+ });
183
+ });
184
+ //# sourceMappingURL=adaptV7History.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.test.js","sourceRoot":"","sources":["../../src/adaptV7History.test.ts"],"names":[],"mappings":"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","sourcesContent":["/* @jest-environment node */\n\nimport {Action, type History} from 'history';\nimport {adaptV7History} from './adaptV7History';\n\ntype ChangeableHistory = History & {\n set action(value: Action);\n set location(value: History['location']);\n};\n\ndescribe('adaptV7History', () => {\n let history: ChangeableHistory;\n let adaptedHistory: ReturnType<typeof adaptV7History>;\n let listenCallback: ((update: any) => void) | undefined;\n const originalWindow = global.window;\n\n beforeEach(() => {\n listenCallback = undefined;\n\n history = {\n action: '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 = adaptV7History(history);\n });\n\n afterEach(() => {\n if (originalWindow === undefined) {\n delete (global as any).window;\n } else {\n global.window = originalWindow;\n }\n });\n\n it('maps action values', () => {\n expect(adaptedHistory.action).toBe(Action.Push);\n\n history.action = Action.Replace;\n expect(adaptedHistory.action).toBe(Action.Replace);\n\n history.action = Action.Pop;\n expect(adaptedHistory.action).toBe(Action.Pop);\n });\n\n it('exposes current location and defaults missing key', () => {\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 history.location = {...history.location, key: undefined} as any;\n expect(adaptedHistory.location.key).toBe('default');\n });\n\n it('creates hrefs from strings 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: '?only=1'})).toBe('/?only=1');\n });\n\n it('creates URLs using window.location.href as base', () => {\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 unsubscribe', () => {\n const unsubscribe = jest.fn();\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: Action.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: Action.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: Action.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 './adaptV7History';
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,kBAAkB,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("./adaptV7History"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC","sourcesContent":["export * from './adaptV7History';\n"]}
@@ -0,0 +1,6 @@
1
+ import type { HistoryRouterProps } from 'react-router';
2
+ import { type History } from 'history';
3
+ type HistoryV7 = HistoryRouterProps['history'];
4
+ export declare function adaptV7History(history: History): HistoryV7;
5
+ export {};
6
+ //# sourceMappingURL=adaptV7History.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.d.ts","sourceRoot":"","sources":["../../src/adaptV7History.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,kBAAkB,EAInB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAS,KAAK,OAAO,EAAC,MAAM,SAAS,CAAC;AAE7C,KAAK,SAAS,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAqC/C,wBAAgB,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAoD1D"}
@@ -0,0 +1,73 @@
1
+ import { Action } from 'history';
2
+ function mapAction(action) {
3
+ return action === 'PUSH'
4
+ ? Action.Push
5
+ : action === 'REPLACE'
6
+ ? Action.Replace
7
+ : Action.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 adaptV7History(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=adaptV7History.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.js","sourceRoot":"","sources":["../../src/adaptV7History.tsx"],"names":[],"mappings":"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","sourcesContent":["import type {\n HistoryRouterProps,\n Path as PathV7,\n To as ToV7,\n Location as LocationV7,\n} from 'react-router';\nimport {Action, type History} from 'history';\n\ntype HistoryV7 = HistoryRouterProps['history'];\n\nfunction mapAction(action: string): Action {\n return action === 'PUSH'\n ? Action.Push\n : action === 'REPLACE'\n ? Action.Replace\n : Action.Pop;\n}\n\nfunction toPathname(to: ToV7): string {\n return typeof to === 'string'\n ? to\n : `${to.pathname || '/'}${to.search || ''}${to.hash || ''}` || '/';\n}\n\nfunction toPath(to: ToV7): PathV7 {\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 UpdateV7 {\n /**\n * The action that triggered the change.\n */\n action: Action;\n /**\n * The new location.\n */\n location: LocationV7;\n /**\n * The delta between this location and the former location in the history stack\n */\n delta: number | null;\n}\n\nexport function adaptV7History(history: History): HistoryV7 {\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: ToV7) {\n return toPathname(to);\n },\n createURL(to: ToV7) {\n const href = this.createHref(to);\n return new URL(href, window.location.href);\n },\n encodeLocation(to: ToV7): PathV7 {\n return toPath(to);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n push(to: ToV7, state?: any) {\n history.push(toPathname(to), state);\n },\n // biome-ignore lint/suspicious/noExplicitAny: test case\n replace(to: ToV7, state?: any) {\n history.replace(toPathname(to), state);\n },\n go(delta: number) {\n history.go(delta);\n },\n listen(listener: (update: UpdateV7) => 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=adaptV7History.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.test.d.ts","sourceRoot":"","sources":["../../src/adaptV7History.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,182 @@
1
+ /* @jest-environment node */
2
+ import { Action } from 'history';
3
+ import { adaptV7History } from './adaptV7History';
4
+ describe('adaptV7History', () => {
5
+ let history;
6
+ let adaptedHistory;
7
+ let listenCallback;
8
+ const originalWindow = global.window;
9
+ beforeEach(() => {
10
+ listenCallback = undefined;
11
+ history = {
12
+ action: 'PUSH',
13
+ location: {
14
+ pathname: '/initial',
15
+ search: '?q=1',
16
+ hash: '#top',
17
+ state: { from: 'test' },
18
+ key: 'history-key',
19
+ },
20
+ push: jest.fn(),
21
+ replace: jest.fn(),
22
+ go: jest.fn(),
23
+ back: jest.fn(),
24
+ forward: jest.fn(),
25
+ listen: jest.fn((listener) => {
26
+ listenCallback = listener;
27
+ return jest.fn();
28
+ }),
29
+ block: jest.fn(),
30
+ createHref: jest.fn(),
31
+ length: 1,
32
+ };
33
+ adaptedHistory = adaptV7History(history);
34
+ });
35
+ afterEach(() => {
36
+ if (originalWindow === undefined) {
37
+ delete global.window;
38
+ }
39
+ else {
40
+ global.window = originalWindow;
41
+ }
42
+ });
43
+ it('maps action values', () => {
44
+ expect(adaptedHistory.action).toBe(Action.Push);
45
+ history.action = Action.Replace;
46
+ expect(adaptedHistory.action).toBe(Action.Replace);
47
+ history.action = Action.Pop;
48
+ expect(adaptedHistory.action).toBe(Action.Pop);
49
+ });
50
+ it('exposes current location and defaults missing key', () => {
51
+ expect(adaptedHistory.location).toEqual({
52
+ pathname: '/initial',
53
+ search: '?q=1',
54
+ hash: '#top',
55
+ state: { from: 'test' },
56
+ key: 'history-key',
57
+ });
58
+ history.location = Object.assign(Object.assign({}, history.location), { key: undefined });
59
+ expect(adaptedHistory.location.key).toBe('default');
60
+ });
61
+ it('creates hrefs from strings and path objects', () => {
62
+ expect(adaptedHistory.createHref('/path')).toBe('/path');
63
+ expect(adaptedHistory.createHref({
64
+ pathname: '/path',
65
+ search: '?a=1',
66
+ hash: '#b',
67
+ })).toBe('/path?a=1#b');
68
+ expect(adaptedHistory.createHref({ search: '?only=1' })).toBe('/?only=1');
69
+ });
70
+ it('creates URLs using window.location.href as base', () => {
71
+ Object.defineProperty(global, 'window', {
72
+ configurable: true,
73
+ value: { location: { href: 'http://localhost/base?x=1#hash' } },
74
+ });
75
+ expect(adaptedHistory.createURL('/path').toString()).toBe('http://localhost/path');
76
+ expect(adaptedHistory.createURL({ pathname: '/path', search: '?a=1' }).toString()).toBe('http://localhost/path?a=1');
77
+ });
78
+ it('encodes locations as path objects', () => {
79
+ expect(adaptedHistory.encodeLocation('/path')).toEqual({
80
+ pathname: '/path',
81
+ search: '',
82
+ hash: '',
83
+ });
84
+ expect(adaptedHistory.encodeLocation({
85
+ pathname: '/path',
86
+ search: '?a=1',
87
+ hash: '#b',
88
+ })).toEqual({
89
+ pathname: '/path',
90
+ search: '?a=1',
91
+ hash: '#b',
92
+ });
93
+ });
94
+ it('delegates navigation methods', () => {
95
+ adaptedHistory.push('/push', { from: 'push' });
96
+ adaptedHistory.replace('/replace', { from: 'replace' });
97
+ adaptedHistory.go(-2);
98
+ expect(history.push).toHaveBeenCalledWith('/push', { from: 'push' });
99
+ expect(history.replace).toHaveBeenCalledWith('/replace', { from: 'replace' });
100
+ expect(history.go).toHaveBeenCalledWith(-2);
101
+ });
102
+ it('adapts listen callbacks and returns unsubscribe', () => {
103
+ const unsubscribe = jest.fn();
104
+ history.listen.mockImplementation((listener) => {
105
+ listenCallback = listener;
106
+ return unsubscribe;
107
+ });
108
+ const listener = jest.fn();
109
+ const returnedUnsubscribe = adaptedHistory.listen(listener);
110
+ expect(history.listen).toHaveBeenCalledTimes(1);
111
+ expect(returnedUnsubscribe).toBe(unsubscribe);
112
+ expect(listenCallback).toBeDefined();
113
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
114
+ action: 'PUSH',
115
+ location: {
116
+ pathname: '/next',
117
+ search: '',
118
+ hash: '',
119
+ state: { id: 1 },
120
+ key: 'next-key',
121
+ },
122
+ });
123
+ expect(listener).toHaveBeenCalledWith({
124
+ action: Action.Push,
125
+ location: {
126
+ pathname: '/next',
127
+ search: '',
128
+ hash: '',
129
+ state: { id: 1 },
130
+ key: 'next-key',
131
+ },
132
+ delta: null,
133
+ });
134
+ });
135
+ it('maps replace and pop updates in listener callbacks', () => {
136
+ const listener = jest.fn();
137
+ adaptedHistory.listen(listener);
138
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
139
+ action: 'REPLACE',
140
+ location: {
141
+ pathname: '/replaced',
142
+ search: '',
143
+ hash: '',
144
+ state: null,
145
+ key: 'replace-key',
146
+ },
147
+ });
148
+ listenCallback === null || listenCallback === void 0 ? void 0 : listenCallback({
149
+ action: 'POP',
150
+ location: {
151
+ pathname: '/popped',
152
+ search: '',
153
+ hash: '',
154
+ state: null,
155
+ key: 'pop-key',
156
+ },
157
+ });
158
+ expect(listener).toHaveBeenNthCalledWith(1, {
159
+ action: Action.Replace,
160
+ location: {
161
+ pathname: '/replaced',
162
+ search: '',
163
+ hash: '',
164
+ state: null,
165
+ key: 'replace-key',
166
+ },
167
+ delta: null,
168
+ });
169
+ expect(listener).toHaveBeenNthCalledWith(2, {
170
+ action: Action.Pop,
171
+ location: {
172
+ pathname: '/popped',
173
+ search: '',
174
+ hash: '',
175
+ state: null,
176
+ key: 'pop-key',
177
+ },
178
+ delta: null,
179
+ });
180
+ });
181
+ });
182
+ //# sourceMappingURL=adaptV7History.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adaptV7History.test.js","sourceRoot":"","sources":["../../src/adaptV7History.test.ts"],"names":[],"mappings":"AAAA,4BAA4B;AAE5B,OAAO,EAAC,MAAM,EAAe,MAAM,SAAS,CAAC;AAC7C,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAOhD,QAAQ,CAAC,gBAAgB,EAAE,GAAG,EAAE;IAC9B,IAAI,OAA0B,CAAC;IAC/B,IAAI,cAAiD,CAAC;IACtD,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,MAAM;YACd,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,cAAc,CAAC,OAAO,CAAC,CAAC;IAC3C,CAAC,CAAC,CAAC;IAEH,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;YACjC,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,oBAAoB,EAAE,GAAG,EAAE;QAC5B,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEhD,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC;QAChC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAEnD,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC;QAC5B,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IACjD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE;QAC3D,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;QAEH,OAAO,CAAC,QAAQ,GAAG,gCAAI,OAAO,CAAC,QAAQ,KAAE,GAAG,EAAE,SAAS,GAAQ,CAAC;QAChE,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IACtD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;QACrD,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,SAAS,EAAC,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC1E,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,iDAAiD,EAAE,GAAG,EAAE;QACzD,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,iDAAiD,EAAE,GAAG,EAAE;QACzD,MAAM,WAAW,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAC7B,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,MAAM,CAAC,IAAI;YACnB,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,MAAM,CAAC,OAAO;YACtB,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,MAAM,CAAC,GAAG;YAClB,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 {Action, type History} from 'history';\nimport {adaptV7History} from './adaptV7History';\n\ntype ChangeableHistory = History & {\n set action(value: Action);\n set location(value: History['location']);\n};\n\ndescribe('adaptV7History', () => {\n let history: ChangeableHistory;\n let adaptedHistory: ReturnType<typeof adaptV7History>;\n let listenCallback: ((update: any) => void) | undefined;\n const originalWindow = global.window;\n\n beforeEach(() => {\n listenCallback = undefined;\n\n history = {\n action: '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 = adaptV7History(history);\n });\n\n afterEach(() => {\n if (originalWindow === undefined) {\n delete (global as any).window;\n } else {\n global.window = originalWindow;\n }\n });\n\n it('maps action values', () => {\n expect(adaptedHistory.action).toBe(Action.Push);\n\n history.action = Action.Replace;\n expect(adaptedHistory.action).toBe(Action.Replace);\n\n history.action = Action.Pop;\n expect(adaptedHistory.action).toBe(Action.Pop);\n });\n\n it('exposes current location and defaults missing key', () => {\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 history.location = {...history.location, key: undefined} as any;\n expect(adaptedHistory.location.key).toBe('default');\n });\n\n it('creates hrefs from strings 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: '?only=1'})).toBe('/?only=1');\n });\n\n it('creates URLs using window.location.href as base', () => {\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 unsubscribe', () => {\n const unsubscribe = jest.fn();\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: Action.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: Action.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: Action.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 './adaptV7History';
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,kBAAkB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './adaptV7History';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC","sourcesContent":["export * from './adaptV7History';\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/@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/react-router/dist/development/data-CjO11-hU.d.ts","../node_modules/react-router/dist/development/instrumentation-Dkmpzd13.d.ts","../node_modules/react-router/dist/development/index-react-server-client-3ykjivgQ.d.ts","../node_modules/react-router/dist/development/register-roq_0qYo.d.ts","../node_modules/cookie/dist/index.d.ts","../node_modules/react-router/dist/development/browser-B2PdsXXH.d.ts","../node_modules/react-router/dist/development/index.d.ts","../src/adaptV7History.tsx","../src/adaptV7History.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/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",{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"a55766d89a9d135cb37f8fc24551599a6bbf561440d246840b933036109f45a8","467f221490e2cf3d6f45ac1b9e0ef077ee1a79af99aae5709c5bb183539bbd14","162126805f95159401e0be43710ce9b90906ba919c18062536bb3cd7ebed1a1b","65917edc4e8da71e5112257db643ddcb681b0a3afb008ca31ebb4390a908b9d2","79c164aa4f8a8418df7717206ea52508f72743224a6b9c705f10724c6dbb5548","8bd93f3f9f023dbc7d1cb3e0054d5ac3dbb35426ff582666c9ca7de94631fcf4","d29e4e10234f57edee15a57dc88d4aac77cd06317f5576f6c299db350de7c2d3",{"version":"794079269ecbfd1279fd355b3cf4bfbef8b4984d70d4500ad4cb06b7d5905181","signature":"ab50ce9178be7e16d5fc8551db3e65a952ccea423e1dde96436646d25d2fb9d7"},{"version":"82e404f8f3b4462b79649cc8a877d508cfdfd8bfaa4873d06c15a617e81f8777","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b0af3117a2ec723732bb11c42f969985df1b2beb9fdec15fd4e2d1644a51dbf5","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","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":[[60,62]],"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":[[63],[196],[63,64,65,66,67],[63,65],[122,157,158],[113,157],[157],[149,157,166],[122,157],[168],[170,171],[119,122,157,163,164,165],[159,164,166,173],[120,157],[178],[186],[180,186],[181,182,183,184,185],[52],[119,122,124,127,138,149,157],[191],[192],[152,219,230],[152,157,210,214,217],[215,216],[213,214],[213],[157,203],[193,195,206],[203,204,207,208,209],[205],[152,157,210,214,217,218],[210,212],[211],[198,201],[119,152,157,249,250,252],[251],[255,256],[122,149,157,258,259],[69],[106],[107,112,141],[108,113,119,120,127,138,149],[108,109,119,127],[110,150],[111,112,120,128],[112,138,146],[113,115,119,127],[106,114],[115,116],[119],[117,119],[106,119],[119,120,121,138,149],[119,120,121,134,138,141],[104,107,154],[115,119,122,127,138,149],[119,120,122,123,127,138,146,149],[122,124,138,146,149],[69,70,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,150,151,152,153,154,155,156],[119,125],[126,149,154],[115,119,127,138],[128],[129],[106,130],[127,128,131,148,154],[132],[133],[119,134,135],[134,136,150,152],[107,119,138,139,140,141],[107,138,140],[138,139],[141],[142],[138],[119,144,145],[144,145],[112,127,138,146],[147],[127,148],[107,122,133,149],[112,150],[138,151],[126,152],[153],[107,112,119,121,130,138,149,152,154],[138,155],[119,122,138,157],[108,157],[52,186,266],[52,186],[49,50,51],[138,157],[271,310],[271,295,310],[310],[271],[271,296,310],[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,307,308,309],[296,310],[120,138,157,162],[120,174],[122,157,163,172],[50,52,187],[119,122,124,127,138,146,149,155,157],[220],[194,200],[122,138,157],[195,199],[198],[233],[232,233],[232],[232,233,234,241,242,245,246,247,248],[233,242],[232,233,234,241,242,243,244],[232,242],[242,246],[233,234,235,240],[234],[232,233,242],[239],[236,237,238],[197],[108,138,157,220,221,222,228],[229],[81,85,149],[81,138,149],[76],[78,81,146,149],[127,146],[76,157],[78,81,127,149],[73,74,77,80,107,119,138,149],[73,79],[77,81,107,141,149,157],[107,157],[97,107,157],[75,76,157],[81],[75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103],[81,88,89],[79,81,89,90],[80],[73,76,81],[81,85,89,90],[85],[79,81,84,149],[73,78,79,81,85,88],[107,138],[76,81,97,107,154,157],[223,224,225,226],[223,224,225,226,227],[52,53,54],[52,53,54,55,56,57,58],[53],[48,60],[48,59],[60]],"referencedMap":[[65,1],[197,2],[68,3],[64,1],[66,4],[67,1],[159,5],[160,6],[161,7],[167,8],[158,9],[169,10],[171,11],[166,12],[174,13],[176,14],[179,15],[184,16],[185,16],[181,17],[182,17],[183,17],[186,18],[187,19],[190,20],[192,21],[193,22],[231,23],[218,24],[217,25],[215,26],[216,27],[204,28],[207,29],[203,21],[210,30],[206,31],[219,32],[213,33],[212,34],[202,35],[251,36],[252,37],[254,15],[256,38],[260,39],[69,40],[70,40],[106,41],[107,42],[108,43],[109,44],[110,45],[111,46],[112,47],[113,48],[114,49],[115,50],[116,50],[118,51],[117,52],[119,53],[120,54],[121,55],[105,56],[122,57],[123,58],[124,59],[157,60],[125,61],[126,62],[127,63],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,70],[135,70],[136,71],[138,72],[140,73],[139,74],[141,75],[142,76],[143,77],[144,78],[145,79],[146,80],[147,81],[148,82],[149,83],[150,84],[151,85],[152,86],[153,87],[154,88],[155,89],[262,90],[264,91],[265,19],[267,92],[268,92],[266,93],[52,94],[270,95],[295,96],[296,97],[271,98],[274,98],[293,96],[294,96],[284,96],[283,99],[281,96],[276,96],[289,96],[287,96],[291,96],[275,96],[288,96],[292,96],[277,96],[278,96],[290,96],[272,96],[279,96],[280,96],[282,96],[286,96],[297,100],[285,96],[273,96],[310,101],[304,100],[306,102],[305,100],[298,100],[299,100],[301,100],[303,100],[307,102],[308,102],[300,102],[302,102],[163,103],[311,104],[173,105],[312,9],[313,106],[319,107],[320,31],[221,108],[201,109],[258,110],[200,111],[199,112],[234,113],[248,114],[233,115],[249,116],[244,117],[245,118],[243,119],[247,120],[241,121],[235,122],[246,123],[242,114],[240,124],[239,125],[198,126],[229,127],[230,128],[88,129],[95,130],[87,129],[102,131],[79,132],[78,133],[101,7],[96,134],[99,135],[81,136],[80,137],[76,138],[75,139],[98,140],[77,141],[82,142],[86,142],[104,143],[103,142],[90,144],[91,145],[93,146],[89,147],[92,148],[97,7],[84,149],[85,150],[94,151],[74,152],[100,153],[227,154],[228,155],[58,156],[53,19],[55,156],[59,157],[54,158],[56,158],[61,159],[60,160],[62,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/@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/react-router/dist/development/data-CjO11-hU.d.ts","../node_modules/react-router/dist/development/instrumentation-Dkmpzd13.d.ts","../node_modules/react-router/dist/development/index-react-server-client-3ykjivgQ.d.ts","../node_modules/react-router/dist/development/register-roq_0qYo.d.ts","../node_modules/cookie/dist/index.d.ts","../node_modules/react-router/dist/development/browser-B2PdsXXH.d.ts","../node_modules/react-router/dist/development/index.d.ts","../src/adaptV7History.tsx","../src/adaptV7History.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/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",{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"a55766d89a9d135cb37f8fc24551599a6bbf561440d246840b933036109f45a8","467f221490e2cf3d6f45ac1b9e0ef077ee1a79af99aae5709c5bb183539bbd14","162126805f95159401e0be43710ce9b90906ba919c18062536bb3cd7ebed1a1b","65917edc4e8da71e5112257db643ddcb681b0a3afb008ca31ebb4390a908b9d2","79c164aa4f8a8418df7717206ea52508f72743224a6b9c705f10724c6dbb5548","8bd93f3f9f023dbc7d1cb3e0054d5ac3dbb35426ff582666c9ca7de94631fcf4","d29e4e10234f57edee15a57dc88d4aac77cd06317f5576f6c299db350de7c2d3",{"version":"794079269ecbfd1279fd355b3cf4bfbef8b4984d70d4500ad4cb06b7d5905181","signature":"ab50ce9178be7e16d5fc8551db3e65a952ccea423e1dde96436646d25d2fb9d7"},{"version":"82e404f8f3b4462b79649cc8a877d508cfdfd8bfaa4873d06c15a617e81f8777","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b0af3117a2ec723732bb11c42f969985df1b2beb9fdec15fd4e2d1644a51dbf5","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","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":[[60,62]],"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":[[63],[196],[63,64,65,66,67],[63,65],[122,157,158],[113,157],[157],[149,157,166],[122,157],[168],[170,171],[119,122,157,163,164,165],[159,164,166,173],[120,157],[178],[186],[180,186],[181,182,183,184,185],[52],[119,122,124,127,138,149,157],[191],[192],[152,219,230],[152,157,210,214,217],[215,216],[213,214],[213],[157,203],[193,195,206],[203,204,207,208,209],[205],[152,157,210,214,217,218],[210,212],[211],[198,201],[119,152,157,249,250,252],[251],[255,256],[122,149,157,258,259],[69],[106],[107,112,141],[108,113,119,120,127,138,149],[108,109,119,127],[110,150],[111,112,120,128],[112,138,146],[113,115,119,127],[106,114],[115,116],[119],[117,119],[106,119],[119,120,121,138,149],[119,120,121,134,138,141],[104,107,154],[115,119,122,127,138,149],[119,120,122,123,127,138,146,149],[122,124,138,146,149],[69,70,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,150,151,152,153,154,155,156],[119,125],[126,149,154],[115,119,127,138],[128],[129],[106,130],[127,128,131,148,154],[132],[133],[119,134,135],[134,136,150,152],[107,119,138,139,140,141],[107,138,140],[138,139],[141],[142],[138],[119,144,145],[144,145],[112,127,138,146],[147],[127,148],[107,122,133,149],[112,150],[138,151],[126,152],[153],[107,112,119,121,130,138,149,152,154],[138,155],[119,122,138,157],[108,157],[52,186,266],[52,186],[49,50,51],[138,157],[271,310],[271,295,310],[310],[271],[271,296,310],[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,307,308,309],[296,310],[120,138,157,162],[120,174],[122,157,163,172],[50,52,187],[119,122,124,127,138,146,149,155,157],[220],[194,200],[122,138,157],[195,199],[198],[233],[232,233],[232],[232,233,234,241,242,245,246,247,248],[233,242],[232,233,234,241,242,243,244],[232,242],[242,246],[233,234,235,240],[234],[232,233,242],[239],[236,237,238],[197],[108,138,157,220,221,222,228],[229],[81,85,149],[81,138,149],[76],[78,81,146,149],[127,146],[76,157],[78,81,127,149],[73,74,77,80,107,119,138,149],[73,79],[77,81,107,141,149,157],[107,157],[97,107,157],[75,76,157],[81],[75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103],[81,88,89],[79,81,89,90],[80],[73,76,81],[81,85,89,90],[85],[79,81,84,149],[73,78,79,81,85,88],[107,138],[76,81,97,107,154,157],[223,224,225,226],[223,224,225,226,227],[52,53,54],[52,53,54,55,56,57,58],[53],[48,60],[48,59],[60]],"referencedMap":[[65,1],[197,2],[68,3],[64,1],[66,4],[67,1],[159,5],[160,6],[161,7],[167,8],[158,9],[169,10],[171,11],[166,12],[174,13],[176,14],[179,15],[184,16],[185,16],[181,17],[182,17],[183,17],[186,18],[187,19],[190,20],[192,21],[193,22],[231,23],[218,24],[217,25],[215,26],[216,27],[204,28],[207,29],[203,21],[210,30],[206,31],[219,32],[213,33],[212,34],[202,35],[251,36],[252,37],[254,15],[256,38],[260,39],[69,40],[70,40],[106,41],[107,42],[108,43],[109,44],[110,45],[111,46],[112,47],[113,48],[114,49],[115,50],[116,50],[118,51],[117,52],[119,53],[120,54],[121,55],[105,56],[122,57],[123,58],[124,59],[157,60],[125,61],[126,62],[127,63],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,70],[135,70],[136,71],[138,72],[140,73],[139,74],[141,75],[142,76],[143,77],[144,78],[145,79],[146,80],[147,81],[148,82],[149,83],[150,84],[151,85],[152,86],[153,87],[154,88],[155,89],[262,90],[264,91],[265,19],[267,92],[268,92],[266,93],[52,94],[270,95],[295,96],[296,97],[271,98],[274,98],[293,96],[294,96],[284,96],[283,99],[281,96],[276,96],[289,96],[287,96],[291,96],[275,96],[288,96],[292,96],[277,96],[278,96],[290,96],[272,96],[279,96],[280,96],[282,96],[286,96],[297,100],[285,96],[273,96],[310,101],[304,100],[306,102],[305,100],[298,100],[299,100],[301,100],[303,100],[307,102],[308,102],[300,102],[302,102],[163,103],[311,104],[173,105],[312,9],[313,106],[319,107],[320,31],[221,108],[201,109],[258,110],[200,111],[199,112],[234,113],[248,114],[233,115],[249,116],[244,117],[245,118],[243,119],[247,120],[241,121],[235,122],[246,123],[242,114],[240,124],[239,125],[198,126],[229,127],[230,128],[88,129],[95,130],[87,129],[102,131],[79,132],[78,133],[101,7],[96,134],[99,135],[81,136],[80,137],[76,138],[75,139],[98,140],[77,141],[82,142],[86,142],[104,143],[103,142],[90,144],[91,145],[93,146],[89,147],[92,148],[97,7],[84,149],[85,150],[94,151],[74,152],[100,153],[227,154],[228,155],[58,156],[53,19],[55,156],[59,157],[54,158],[56,158],[61,159],[60,160],[62,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-v7-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": "^7.18.0"
33
+ },
34
+ "peerDependencies": {
35
+ "history": "^5.2.0",
36
+ "react-router": "^7.18.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
+ }