@lightningtv/solid 1.0.3 → 1.1.1
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/dist/src/primitives/useFocusManager.d.ts +25 -9
- package/dist/src/primitives/useFocusManager.js +98 -28
- package/dist/src/primitives/useFocusManager.js.map +1 -1
- package/dist/src/primitives/useMouse.js +5 -4
- package/dist/src/primitives/useMouse.js.map +1 -1
- package/dist/src/render.d.ts +1 -1
- package/dist/src/solidOpts.d.ts +2 -2
- package/dist/src/solidOpts.js.map +1 -1
- package/dist/src/types.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/src/primitives/useFocusManager.ts +160 -52
- package/src/primitives/useMouse.ts +13 -4
- package/src/render.ts +1 -1
- package/src/solidOpts.ts +2 -2
- package/src/types.ts +2 -2
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
import { type Accessor } from 'solid-js';
|
|
2
1
|
import { ElementNode } from '@lightningtv/solid';
|
|
2
|
+
import { type Accessor } from 'solid-js';
|
|
3
|
+
export type KeyNameOrKeyCode = string | number;
|
|
3
4
|
export interface DefaultKeyMap {
|
|
4
|
-
Left:
|
|
5
|
-
Right:
|
|
6
|
-
Up:
|
|
7
|
-
Down:
|
|
8
|
-
Enter:
|
|
9
|
-
Last:
|
|
5
|
+
Left: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
6
|
+
Right: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
7
|
+
Up: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
8
|
+
Down: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
9
|
+
Enter: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
10
|
+
Last: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
11
|
+
}
|
|
12
|
+
export interface DefaultKeyHoldMap {
|
|
13
|
+
EnterHold: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
10
14
|
}
|
|
11
15
|
export interface KeyMap extends DefaultKeyMap {
|
|
12
16
|
}
|
|
17
|
+
export interface KeyHoldMap extends DefaultKeyHoldMap {
|
|
18
|
+
}
|
|
13
19
|
export type KeyHandlerReturn = boolean | void;
|
|
14
20
|
export type KeyHandler = (this: ElementNode, e: KeyboardEvent, target: ElementNode, handlerElm: ElementNode) => KeyHandlerReturn;
|
|
15
21
|
/**
|
|
@@ -18,12 +24,15 @@ export type KeyHandler = (this: ElementNode, e: KeyboardEvent, target: ElementNo
|
|
|
18
24
|
type KeyMapEventHandlers = {
|
|
19
25
|
[K in keyof KeyMap as `on${Capitalize<K>}`]?: KeyHandler;
|
|
20
26
|
};
|
|
27
|
+
type KeyHoldMapEventHandlers = {
|
|
28
|
+
[K in keyof KeyHoldMap as `on${Capitalize<K>}`]?: KeyHandler;
|
|
29
|
+
};
|
|
21
30
|
declare module '@lightningtv/solid' {
|
|
22
31
|
/**
|
|
23
32
|
* Augment the existing IntrinsicCommonProps interface with our own
|
|
24
33
|
* FocusManager-specific properties.
|
|
25
34
|
*/
|
|
26
|
-
interface IntrinsicCommonProps extends KeyMapEventHandlers {
|
|
35
|
+
interface IntrinsicCommonProps extends KeyMapEventHandlers, KeyHoldMapEventHandlers {
|
|
27
36
|
onFocus?: (currentFocusedElm: ElementNode | undefined, prevFocusedElm: ElementNode | undefined) => void;
|
|
28
37
|
onFocusChanged?: (hasFocus: boolean, currentFocusedElm: ElementNode | undefined, prevFocusedElm: ElementNode | undefined) => void;
|
|
29
38
|
onBlur?: (currentFocusedElm: ElementNode | undefined, prevFocusedElm: ElementNode | undefined) => void;
|
|
@@ -43,6 +52,13 @@ declare module '@lightningtv/solid' {
|
|
|
43
52
|
skipFocus?: undefined;
|
|
44
53
|
}
|
|
45
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* holdThreshold is in milliseconds.
|
|
57
|
+
*/
|
|
58
|
+
export type KeyHoldOptions = {
|
|
59
|
+
userKeyHoldMap: Partial<KeyHoldMap>;
|
|
60
|
+
holdThreshold?: number;
|
|
61
|
+
};
|
|
46
62
|
declare const focusPath: Accessor<ElementNode[]>;
|
|
47
63
|
export { focusPath };
|
|
48
|
-
export declare const useFocusManager: (userKeyMap?: Partial<KeyMap
|
|
64
|
+
export declare const useFocusManager: (userKeyMap?: Partial<KeyMap>, keyHoldOptions?: KeyHoldOptions) => Accessor<ElementNode[]>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { createEffect, on, createSignal, untrack, } from 'solid-js';
|
|
2
|
-
import { useKeyDownEvent } from '@solid-primitives/keyboard';
|
|
3
1
|
import { activeElement, isFunc, isArray, } from '@lightningtv/solid';
|
|
2
|
+
import { createEffect, createSignal, on, onCleanup, untrack } from 'solid-js';
|
|
3
|
+
import { makeEventListener } from '@solid-primitives/event-listener';
|
|
4
|
+
import { useKeyDownEvent } from '@solid-primitives/keyboard';
|
|
5
|
+
import { createSingletonRoot } from '@solid-primitives/rootless';
|
|
4
6
|
const keyMapEntries = {
|
|
5
7
|
ArrowLeft: 'Left',
|
|
6
8
|
ArrowRight: 'Right',
|
|
@@ -12,10 +14,32 @@ const keyMapEntries = {
|
|
|
12
14
|
Backspace: 'Back',
|
|
13
15
|
Escape: 'Escape',
|
|
14
16
|
};
|
|
17
|
+
const keyHoldMapEntries = {
|
|
18
|
+
Enter: 'EnterHold',
|
|
19
|
+
};
|
|
20
|
+
const DEFAULT_KEY_HOLD_THRESHOLD = 150; // ms
|
|
15
21
|
const [focusPath, setFocusPath] = createSignal([]);
|
|
16
22
|
export { focusPath };
|
|
17
|
-
|
|
23
|
+
// copy of useKeyDownEvent but for keyup
|
|
24
|
+
const useKeyUpEvent = /*#__PURE__*/ createSingletonRoot(() => {
|
|
25
|
+
const [event, setEvent] = createSignal(null);
|
|
26
|
+
makeEventListener(window, 'keyup', (e) => {
|
|
27
|
+
setEvent(e);
|
|
28
|
+
setTimeout(() => setEvent(null));
|
|
29
|
+
});
|
|
30
|
+
return event;
|
|
31
|
+
});
|
|
32
|
+
export const useFocusManager = (userKeyMap, keyHoldOptions) => {
|
|
18
33
|
const keypressEvent = useKeyDownEvent();
|
|
34
|
+
const keyupEvent = useKeyUpEvent();
|
|
35
|
+
const keyHoldTimeouts = {};
|
|
36
|
+
// clear out any leftover timeouts
|
|
37
|
+
onCleanup(() => {
|
|
38
|
+
for (const [_, timeout] of Object.entries(keyHoldTimeouts)) {
|
|
39
|
+
if (timeout)
|
|
40
|
+
clearTimeout(timeout);
|
|
41
|
+
}
|
|
42
|
+
});
|
|
19
43
|
if (userKeyMap) {
|
|
20
44
|
// Flatten the userKeyMap to a hash
|
|
21
45
|
for (const [key, value] of Object.entries(userKeyMap)) {
|
|
@@ -29,6 +53,22 @@ export const useFocusManager = (userKeyMap) => {
|
|
|
29
53
|
}
|
|
30
54
|
}
|
|
31
55
|
}
|
|
56
|
+
if (keyHoldOptions?.userKeyHoldMap) {
|
|
57
|
+
// same as above
|
|
58
|
+
for (const [key, value] of Object.entries(keyHoldOptions?.userKeyHoldMap)) {
|
|
59
|
+
if (value === undefined || value === null) {
|
|
60
|
+
continue;
|
|
61
|
+
}
|
|
62
|
+
if (isArray(value)) {
|
|
63
|
+
for (const v of value) {
|
|
64
|
+
keyHoldMapEntries[v] = key;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
keyHoldMapEntries[value] = key;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
32
72
|
createEffect(on(activeElement, (currentFocusedElm, prevFocusedElm, prevFocusPath = []) => {
|
|
33
73
|
let current = currentFocusedElm;
|
|
34
74
|
const fp = [];
|
|
@@ -57,35 +97,65 @@ export const useFocusManager = (userKeyMap) => {
|
|
|
57
97
|
setFocusPath(fp);
|
|
58
98
|
return fp;
|
|
59
99
|
}, { defer: true }));
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
const
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
if (mappedKeyEvent) {
|
|
71
|
-
const onKeyHandler = elm[`on${mappedKeyEvent}`];
|
|
72
|
-
if (isFunc(onKeyHandler)) {
|
|
73
|
-
if (onKeyHandler.call(elm, e, elm, finalFocusElm) === true) {
|
|
74
|
-
break;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
else {
|
|
79
|
-
console.log(`Unhandled key event: ${e.key || e.keyCode}`);
|
|
80
|
-
}
|
|
81
|
-
if (isFunc(elm.onKeyPress)) {
|
|
82
|
-
if (elm.onKeyPress.call(elm, e, mappedKeyEvent, elm, finalFocusElm) === true) {
|
|
100
|
+
const propagateKeyDown = (e, mappedEvent, isHold = false) => {
|
|
101
|
+
untrack(() => {
|
|
102
|
+
const fp = focusPath();
|
|
103
|
+
let finalFocusElm = undefined;
|
|
104
|
+
for (const elm of fp) {
|
|
105
|
+
finalFocusElm = finalFocusElm || elm;
|
|
106
|
+
if (mappedEvent) {
|
|
107
|
+
const onKeyHandler = elm[`on${mappedEvent}`];
|
|
108
|
+
if (isFunc(onKeyHandler)) {
|
|
109
|
+
if (onKeyHandler.call(elm, e, elm, finalFocusElm) === true) {
|
|
83
110
|
break;
|
|
84
111
|
}
|
|
85
112
|
}
|
|
86
113
|
}
|
|
87
|
-
|
|
88
|
-
|
|
114
|
+
else {
|
|
115
|
+
console.log(`Unhandled key event: ${e.key || e.keyCode}`);
|
|
116
|
+
}
|
|
117
|
+
const fallbackFunction = isHold ? elm.onKeyPress : elm.onKeyHold;
|
|
118
|
+
if (isFunc(fallbackFunction)) {
|
|
119
|
+
if (fallbackFunction.call(elm, e, mappedEvent, elm, finalFocusElm) === true) {
|
|
120
|
+
break;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return false;
|
|
125
|
+
});
|
|
126
|
+
};
|
|
127
|
+
const keyHoldCallback = (e, mappedKeyHoldEvent) => {
|
|
128
|
+
delete keyHoldTimeouts[e.key || e.keyCode];
|
|
129
|
+
propagateKeyDown(e, mappedKeyHoldEvent, true);
|
|
130
|
+
};
|
|
131
|
+
createEffect(() => {
|
|
132
|
+
const keypress = keypressEvent();
|
|
133
|
+
const keyup = keyupEvent();
|
|
134
|
+
if (keypress) {
|
|
135
|
+
const key = keypress.key || keypress.keyCode;
|
|
136
|
+
const mappedKeyHoldEvent = keyHoldMapEntries[key];
|
|
137
|
+
const mappedKeyEvent = keyMapEntries[key];
|
|
138
|
+
if (!mappedKeyHoldEvent) {
|
|
139
|
+
// just a regular key press
|
|
140
|
+
propagateKeyDown(keypress, mappedKeyEvent, false);
|
|
141
|
+
}
|
|
142
|
+
else {
|
|
143
|
+
const delay = keyHoldOptions?.holdThreshold || DEFAULT_KEY_HOLD_THRESHOLD;
|
|
144
|
+
if (keyHoldTimeouts[key]) {
|
|
145
|
+
// recieved two keydown events without a keyup in between
|
|
146
|
+
clearTimeout(keyHoldTimeouts[key]);
|
|
147
|
+
}
|
|
148
|
+
keyHoldTimeouts[key] = setTimeout(() => keyHoldCallback(keypress, mappedKeyHoldEvent), delay);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
if (keyup) {
|
|
152
|
+
const key = keyup.key || keyup.keyCode;
|
|
153
|
+
const mappedKeyEvent = keyMapEntries[key];
|
|
154
|
+
if (keyHoldTimeouts[key]) {
|
|
155
|
+
clearTimeout(keyHoldTimeouts[key]);
|
|
156
|
+
delete keyHoldTimeouts[key];
|
|
157
|
+
propagateKeyDown(keyup, mappedKeyEvent, false);
|
|
158
|
+
}
|
|
89
159
|
}
|
|
90
160
|
});
|
|
91
161
|
return focusPath;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useFocusManager.js","sourceRoot":"","sources":["../../../src/primitives/useFocusManager.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"useFocusManager.js","sourceRoot":"","sources":["../../../src/primitives/useFocusManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,8 +3,8 @@ import { makeEventListener } from '@solid-primitives/event-listener';
|
|
|
3
3
|
import { useMousePosition } from '@solid-primitives/mouse';
|
|
4
4
|
import { createScheduled, throttle } from '@solid-primitives/scheduled';
|
|
5
5
|
import { createEffect } from 'solid-js';
|
|
6
|
-
function createKeyboardEvent(key, keyCode) {
|
|
7
|
-
return new KeyboardEvent(
|
|
6
|
+
function createKeyboardEvent(key, keyCode, eventName = 'keydown') {
|
|
7
|
+
return new KeyboardEvent(eventName, {
|
|
8
8
|
key,
|
|
9
9
|
keyCode,
|
|
10
10
|
which: keyCode,
|
|
@@ -18,10 +18,10 @@ function createKeyboardEvent(key, keyCode) {
|
|
|
18
18
|
const handleScroll = throttle((e) => {
|
|
19
19
|
const deltaY = e.deltaY;
|
|
20
20
|
if (deltaY < 0) {
|
|
21
|
-
document.dispatchEvent(createKeyboardEvent('ArrowUp', 38));
|
|
21
|
+
document.body.dispatchEvent(createKeyboardEvent('ArrowUp', 38));
|
|
22
22
|
}
|
|
23
23
|
else if (deltaY > 0) {
|
|
24
|
-
document.dispatchEvent(createKeyboardEvent('ArrowDown', 40));
|
|
24
|
+
document.body.dispatchEvent(createKeyboardEvent('ArrowDown', 40));
|
|
25
25
|
}
|
|
26
26
|
}, 250);
|
|
27
27
|
const handleClick = (e) => {
|
|
@@ -30,6 +30,7 @@ const handleClick = (e) => {
|
|
|
30
30
|
if (active &&
|
|
31
31
|
testCollision(e.clientX, e.clientY, active.lng.absX * precision, active.lng.absY * precision, active.width * precision, active.height * precision)) {
|
|
32
32
|
document.dispatchEvent(createKeyboardEvent('Enter', 13));
|
|
33
|
+
setTimeout(() => document.body.dispatchEvent(createKeyboardEvent('Enter', 13, 'keyup')), 1);
|
|
33
34
|
}
|
|
34
35
|
};
|
|
35
36
|
function testCollision(px, py, cx, cy, cw = 0, ch = 0) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useMouse.js","sourceRoot":"","sources":["../../../src/primitives/useMouse.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,aAAa,EACb,gBAAgB,EAChB,QAAQ,EACR,MAAM,GACP,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,SAAS,mBAAmB,
|
|
1
|
+
{"version":3,"file":"useMouse.js","sourceRoot":"","sources":["../../../src/primitives/useMouse.ts"],"names":[],"mappings":"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"}
|
package/dist/src/render.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IntrinsicNodeProps, type IntrinsicTextProps } from '@lightningtv/core';
|
|
2
2
|
import { type JSXElement, type ValidComponent } from 'solid-js';
|
|
3
3
|
import type { RendererMain, RendererMainSettings } from '@lightningjs/renderer';
|
|
4
|
-
import { SolidNode } from './types.js';
|
|
4
|
+
import type { SolidNode } from './types.js';
|
|
5
5
|
export declare const rootNode: import("@lightningtv/core").ElementNode;
|
|
6
6
|
export declare function createRenderer(rendererOptions?: RendererMainSettings | undefined, node?: HTMLElement | string): {
|
|
7
7
|
renderer: RendererMain;
|
package/dist/src/solidOpts.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ElementNode, ElementText } from '@lightningtv/core';
|
|
2
|
-
import { SolidNode } from './types.js';
|
|
1
|
+
import { ElementNode, type ElementText } from '@lightningtv/core';
|
|
2
|
+
import type { SolidNode } from './types.js';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
createElement(name: string): ElementNode;
|
|
5
5
|
createTextNode(text: string): ElementText;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"solidOpts.js","sourceRoot":"","sources":["../../src/solidOpts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,
|
|
1
|
+
{"version":3,"file":"solidOpts.js","sourceRoot":"","sources":["../../src/solidOpts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAoB,MAAM,mBAAmB,CAAC;AAGjF,eAAe;IACb,aAAa,CAAC,IAAY;QACxB,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;IAC/B,CAAC;IACD,cAAc,CAAC,IAAY;QACzB,qDAAqD;QACrD,OAAO,EAAE,KAAK,EAAE,QAAQ,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC;IAC3D,CAAC;IACD,WAAW,CAAC,IAAiB,EAAE,KAAa;QAC1C,GAAG,CAAC,gBAAgB,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC;QAClB,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC3B,YAAY,CAAC,MAAM,CAAC,CAAC;QACrB,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,OAAO,EAAE,CAAC;IACjC,CAAC;IACD,WAAW,CAAC,IAAiB,EAAE,IAAY,EAAE,QAAa,IAAI;QAC5D,IAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;IACrB,CAAC;IACD,UAAU,CAAC,MAAmB,EAAE,IAAe,EAAE,MAAiB;QAChE,GAAG,CAAC,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;QAEtC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAE1B,IAAI,IAAI,YAAY,WAAW,EAAE,CAAC;YAChC,MAAM,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC;QACnC,CAAC;aAAM,IAAI,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC;YAC/B,qFAAqF;YACrF,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,OAAO,EAAE,CAAC;QACjC,CAAC;IACH,CAAC;IACD,UAAU,CAAC,IAAiB;QAC1B,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC;IAC3B,CAAC;IACD,UAAU,CAAC,MAAmB,EAAE,IAAe;QAC7C,GAAG,CAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;QAC9B,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAC7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,IAAI,YAAY,WAAW,EAAE,CAAC;YAChC,4DAA4D;YAC5D,gEAAgE;YAChE,qCAAqC;YACrC,cAAc,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;QACvC,CAAC;IACH,CAAC;IACD,aAAa,CAAC,IAAe;QAC3B,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IACD,aAAa,CAAC,IAAiB;QAC7B,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IAC1B,CAAC;IACD,cAAc,CAAC,IAAe;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,MAAO,CAAC,QAAQ,IAAI,EAAE,CAAC;QAC7C,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACzC,IAAI,KAAK,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC;YAC5B,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC;QACzB,CAAC;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;CAC6B,CAAC"}
|
package/dist/src/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ElementNode, Styles, ElementText } from '@lightningtv/core';
|
|
2
|
-
import { JSXElement } from 'solid-js';
|
|
1
|
+
import { ElementNode, type Styles, type ElementText } from '@lightningtv/core';
|
|
2
|
+
import type { JSXElement } from 'solid-js';
|
|
3
3
|
import { createRenderer } from 'solid-js/universal';
|
|
4
4
|
export type SolidRendererOptions = Parameters<typeof createRenderer<SolidNode>>[0];
|
|
5
5
|
export type SolidNode = ElementNode | ElementText;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/jsx.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/scheduler.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/component.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/flow.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/suspense.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/hydration.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/index.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/signal.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/observable.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/array.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/index.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/ieventemitter.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/bufferstruct.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/sharedobject.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/threadx.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/buffer-struct-utils.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/index.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/ianimationcontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/subtexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/commontypes.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/eventemitter.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/animations/coreanimation.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/animations/animationmanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/trfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corerenderop.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/coreshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/webglcontextwrapper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorectxtexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/shaderutils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/buffercollection.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcoreshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/utils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorerenderop.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/rendererutils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/defaultshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/defaultshaderbatched.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/shadereffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/dynamicshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/roundedrectangle.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/sdfshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radiuseffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/bordereffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/lineargradienteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/grayscaleeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderrighteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/bordertopeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderbottomeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderlefteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/glitcheffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/fadeouteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radialgradienteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radialprogresseffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/holepuncheffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/canvas/shaders/unsupportedshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/dynamicshadercontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coreshadermanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/shadercontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/contextspy.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/rendercoords.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coretextnode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/matrix3d.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/webtrfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/lightningtexttexturerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/textrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/trfontmanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/stage.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/texturememorymanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corecontexttexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/texture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/imageworker.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/colortexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/imagetexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/noisetexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/rendertexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coretexturemanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/corenode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/inode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/renderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/canvastextrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/internal/peekablegenerator.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/internal/fontshaper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/internal/sdffontshaper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/sdftrfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/internal/setrenderwindow.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/sdftextrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/exports/index.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/lightninginit.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/states.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/intrinsictypes.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/children.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/elementnode.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/nodetypes.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/utils.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/config.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.3_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/index.d.ts","../src/activeelement.ts","../src/jsx-runtime.ts","../src/utils.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/universal/types/universal.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/universal/types/index.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/utils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/exports/utils.d.ts","../src/types.ts","../src/solidopts.ts","../src/render.ts","../src/index.ts","../src/primitives/lazyup.tsx","../src/primitives/createinfiniteitems.ts","../node_modules/.pnpm/@solid-primitives+keyboard@1.2.8_solid-js@1.8.17/node_modules/@solid-primitives/keyboard/dist/index.d.ts","../src/primitives/usefocusmanager.ts","../src/primitives/announcer/speech.ts","../node_modules/.pnpm/@solid-primitives+scheduled@1.4.3_solid-js@1.8.17/node_modules/@solid-primitives/scheduled/dist/index.d.ts","../src/primitives/announcer/announcer.ts","../src/primitives/announcer/index.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/jsx.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/client.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/server-mock.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/index.d.ts","../node_modules/.pnpm/@solid-primitives+utils@6.2.3_solid-js@1.8.17/node_modules/@solid-primitives/utils/dist/types-d58cbe2f.d.ts","../node_modules/.pnpm/@solid-primitives+utils@6.2.3_solid-js@1.8.17/node_modules/@solid-primitives/utils/dist/index/index.d.ts","../node_modules/.pnpm/@solid-primitives+event-listener@2.3.3_solid-js@1.8.17/node_modules/@solid-primitives/event-listener/dist/index.d.ts","../node_modules/.pnpm/@solid-primitives+mouse@2.0.19_solid-js@1.8.17/node_modules/@solid-primitives/mouse/dist/index.d.ts","../src/primitives/usemouse.ts","../src/primitives/portal.tsx","../src/primitives/index.ts","../src/primitives/jsx-runtime.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5","impliedFormat":1},{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"af5eff05ef7226f645df18d069dcf4a613628cf0dee6e7243c3ec44f29ff2105","impliedFormat":99},{"version":"720bf77517347f46aac4631ef8f774e94e7fa76c8f8bfaa7c47896b6c28b0ca3","impliedFormat":99},{"version":"502198db65d715d60602e7fe07c9ea71556de219fd5ed55cb2e5c2635d2ee7d0","impliedFormat":99},{"version":"693980c4667c33fb58535858f587f2766535e0e0f481ef7572958f892d235ab8","impliedFormat":99},{"version":"bd44db74aff2e55edb5b85426f863cac7cafcad0c992f319504b8e7f14e91947","impliedFormat":99},{"version":"51704f07eb94497105cd7a03ebed7143e3e5cf2bc8c864072288dfaa790ded18","impliedFormat":99},{"version":"b642b6a4b9b670338bc50281a6dd192fb7cc0b2f9d63d38c250bb1f02e828bbc","impliedFormat":99},{"version":"14857b2bccf2ced466e5b6d23edd367817296446f21ef879485a9bdc70a20a63","impliedFormat":99},{"version":"95f5b2e5c985fa861d29acc0e1395f1948118b5d48742212ecc07f8e5d7cd771","affectsGlobalScope":true,"impliedFormat":99},{"version":"f17290a24f50d4568d931f6a3f8cb3b9e917adb78f3ad4ac3253a8e002c09672","impliedFormat":99},{"version":"815daaec8473224f921a467616e52e18bba3267800c57d6e83177d33cc666690","affectsGlobalScope":true,"impliedFormat":99},{"version":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"07d9fd4c7d1efe78fa4d7bb6a2203bd6249c8f92ed706e6afc088ac9623f6d67","impliedFormat":99},{"version":"d90b76ce2694df21e1061f5f353ae561792c03791f3cccc8ff16e818fbde9e06","impliedFormat":99},{"version":"4695dca96c4e3ba7b0e1d3381c6c5ab1f434395cb9f20d7b021338223a906959","affectsGlobalScope":true,"impliedFormat":99},{"version":"0af862bd95a0ba9f05c35a91c6881311a8bf0a3b048bbe0afd5d1a9a8f82e7f6","impliedFormat":99},{"version":"d1d22599d75b5ce46d3d235fa8a0ab53fd29a410a9025c136196b08e56e25147","impliedFormat":99},{"version":"71b3c678e4396d59e0db8a66bae9c1d42e56877be5a2f6d4bd17603f6119fc07","impliedFormat":99},{"version":"0897e0c418de7dd7acfceb85fd00594140ff781b5f1b28d24da0de44a8be9580","impliedFormat":99},{"version":"54cdfdc127ce1e902fcd9687ef6c6a6f14c9c3143d697d831afdcf3497b7076d","impliedFormat":99},{"version":"58898cc3aeb7531de5f0dd27d64df82c96e470afabeffe0d14fff380e9a686d7","impliedFormat":99},{"version":"15a72b2fb6480bd7e1b363644fe6b1da001762701fd6d6ed56a449a4fa598210","impliedFormat":99},{"version":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"551c61b20bd72a80795fc054d3ac21b474a09c8636d59b98a6107ec0ba7044a4","impliedFormat":99},{"version":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"2c608878583a5c619e39dd010879fef01147b6f4dfe0fc1b0adaa1cc3d6781b7","impliedFormat":99},{"version":"56d7dd5eb8133237678eab460eb2048cfc35e34d42d2ad4e7eac395fdc034a38","impliedFormat":99},{"version":"ed4d3cd22d3564808f4776c0f46fe7a9e7242538ca6f2bae9a5479b29803cacb","impliedFormat":99},{"version":"0106bd890bbdc6774fc2ffa56b44ebcf72c70379bc613aa46db697ffae5136f9","impliedFormat":99},{"version":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"0fe8ef15dd55f44941a09f24c80b0208a9339530c90bc95c6477535803e0f21d","impliedFormat":99},{"version":"4564bfb4156c89199ef4e2a2ac47e69057ce339672950d96d3481ca7d63e382f","impliedFormat":99},{"version":"bc7ac1bc274f2d4018c301f538ac470a49ef9b7614e2b592a09134fa22626e45","impliedFormat":99},{"version":"92940b610d6ba0bd02a2b66ac4bda3a4b6929dede547d5aef9e27f03a4be0ea6","impliedFormat":99},{"version":"b023e7a03f6616f135a9f3049a0fd41271ef53ff9ef6f070f55d1b78b6fa9cb8","impliedFormat":99},{"version":"0e84fe255776ae5379c1cac863a5938c19489314e535cb344fd21842608b1784","impliedFormat":99},{"version":"e69c8aae6eb25b1f5f596d1925a3718c019a1244040824ef9285fd5ba78d89b1","impliedFormat":99},{"version":"2747e8c799545d9224500ba477a0352c626c3c101283407a5fc403505ddceb2f","impliedFormat":99},{"version":"c89494ec9982b7bb4126fe1de49635ae892606f8c03391ce4392694c854b026c","impliedFormat":99},{"version":"3777053409ca71051e867f5ba2b8c281a46f64ae5e4a39502fe0f2f2dfa5e1bb","impliedFormat":99},{"version":"472e7a03e0b6e86a1d63a2733082151390439b19e1c86e8b97aef34fcf9c1431","impliedFormat":99},{"version":"938ff90af916541a327286f1506a5180b910248ebb0b8122d90c5de8fc034e53","impliedFormat":99},{"version":"2938fdd3c2f3626344fc253ee2b3dd6e4a59180477ac36cf2a6cbfa8878e5b20","impliedFormat":99},{"version":"f9a09a3ae4618346cf8f9df7860a4be93c36efd9a508736325a76e694225e190","impliedFormat":99},{"version":"5fe987b10f73fd6ce5bfeb80db6f791a18ae48c776053102ce61d82db2a6f36e","impliedFormat":99},{"version":"e1abcf4a600bcd4b8e69fcd03e767f5019c7f65b94cccafbfa1655f106e453c7","impliedFormat":99},{"version":"c6dffb4a7da1ade0ed4d821fcac59688c93e327d3d8d41e61abcca107a506225","impliedFormat":99},{"version":"a0757e2827c3485f4ec357e733e930d1024cee02bafde0ec31a0e65544645441","impliedFormat":99},{"version":"83e2c88379c4e7be10c2a2396e8a9d065517925ab03b5052498f371550cf79ec","impliedFormat":99},{"version":"9ef32c5ea6950e752a2ca6e10dc9229a021b810bb413f6bfc95628e394884430","impliedFormat":99},{"version":"ee41693b20263c8b58521744a88b5da072b7328a221860558f708aff6604bcf5","impliedFormat":99},{"version":"19aafdc3c7b502910c9a416266f4cafd5d72744e4704344b94b600b6c09e61fe","impliedFormat":99},{"version":"655224934f23cd23eb1eab46e531119efb8b9d4537dc9cc46fa5980f47f3ece4","impliedFormat":99},{"version":"0af4c2cca0fd511c04baca62ac84b209100926ed7e7fadd7261c40125b518ee3","impliedFormat":99},{"version":"cd41c572490c5c4739dd50fe976f5ab393ee523bdc274e66c7db7bad2b580aa3","impliedFormat":99},{"version":"130877bf6f69f1cf26d465df5c7b5ab4eb72600c4ec30083c7af6675dea42ee3","impliedFormat":99},{"version":"5b2095b639feecb36f10a973d06bd548f9f3e9821cdc8722618afc574920329f","impliedFormat":99},{"version":"d0d75abf3e3c014b03cd652b915846739b908a3f8606a35a77ba14e17bead2d3","impliedFormat":99},{"version":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"855e81e7725ab35c3ac522af65c6b4b6c5e0ec84d661bc3d91ddebc93229fd84","impliedFormat":99},{"version":"741329f401149e1caa32a6fca2ca4bc66279e2eca17f8dd53bee3edba2a4472b","impliedFormat":99},{"version":"8cf4d4233c095b59f584b2fb5259e295feacb3ed8b1fc0ec0a4a4869865b591f","impliedFormat":99},{"version":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"75ea12223b074b5c4aea501797340b91380461620c22aafc7013bb99c9cace3e","impliedFormat":99},{"version":"6b672ae185588a21778092c09c97d34753f41e9c7601bed83c0dc5b27c91a766","impliedFormat":99},{"version":"82aa674558d37da0c3262e4ffb7eed8f025e795415c622be39517aa2f391b6ad","impliedFormat":99},{"version":"af356f5bcfec8772205f73bb185972c8f31e61fb4c3a7ff56ca0fca0522a08ee","impliedFormat":99},{"version":"a01df4d503f97a4dc5b47885d82641dc21e098075cf38268ad96bc30b5be6e6f","impliedFormat":99},{"version":"0de9d854b28e82b419ec0046e1c24a23b3550fe4ce2ecccf44ec1886ed67efed","impliedFormat":99},{"version":"450876e1e9ba31ca00982b263feb444a4248b4111eb706a69b63dfc84f8e4150","impliedFormat":99},{"version":"ce98411afe3c0b621a17be353dc3220c5283c9691a21da67cfc31e078feea948","impliedFormat":99},{"version":"42f52804326e3fd8dabad0256969f3ff53470f9b6284482681b34b6123143fde","impliedFormat":99},{"version":"675fd4392738a45b3ba48d1382e5cd9b865953c04337ee83a552de9c6ba3f249","impliedFormat":99},{"version":"2f66ef1feb36fdbb017b3e71c1802776f1c04c85a120d9ebd2e192b527e66ed2","impliedFormat":99},{"version":"a6adb92c3d8c9f03f6a8fbb81b7b36a4453624eca12b3106e64f3c024d7277a2","impliedFormat":99},{"version":"a730f270ac0e5e6531314fb8ce6886866c7ad301fa069947774fc1276bdcfa34","impliedFormat":99},{"version":"604dfb0df00723b24b85e47c2e641c030e48b9d9af398a910d1bb70c27bf657a","impliedFormat":99},{"version":"51465f3a7ced2ecf75938151747d581198b0e86b49b92e6db908b55cab56d04f","impliedFormat":99},{"version":"0a85e37588e35098c2f44fe52ce1f92b55a1a18d2726ed0c1b4157603a47b62f","impliedFormat":99},{"version":"ac491c1b1fcd090c1dc7182bd8b90e2e6e57ba5f9c09fa34988d4cfb4d28f03d","impliedFormat":99},{"version":"9bf9fda3f287ad47f4709c1556ce361a759fdeaaafe084001e5060cecdc3f388","impliedFormat":99},{"version":"8c2b43fffaf9f683998ec697f7018fdebb028662f6f8a6630ed5157b3e48cc66","impliedFormat":99},{"version":"7a26ecdc665e9c6a77f5e2b3d25477c54d46f18775d6c0526fa334dff654af18","impliedFormat":99},{"version":"77bdcd96a3265ca547318a5af3ee8ad2ee5cb272525d7023d7a46f54c60ced53","impliedFormat":99},{"version":"421046da44aec7e8cb919183007176566ed66409dfb4246e7fbe572e6448cdc1","impliedFormat":99},{"version":"8a407499aa707eea4802f13414c0efc136b71bc13a00db0e34ce924d4e604dd0","impliedFormat":99},{"version":"72d7cdb02398ac79589fcb3f3481f40c75cdef917f9d722d9ee53e996a4f77e5","impliedFormat":99},{"version":"efb3fe01a8a3a150378437a3911994ad0c791aec643fa5f1d71e26561234eeb7","impliedFormat":99},{"version":"a768afb5867684c07f7b1ae253faf9ad9c60ec681b2cb648fb1764bf3e20b764","impliedFormat":99},{"version":"48694e6dab1ef6080aab5791fcd1cb3579904dde719ad761f562d0d00b1adc95","impliedFormat":99},{"version":"d7ae4a1ed386b540d29524d2e196fcbf07114508bca9ccd3fc73f3fa07223900","impliedFormat":99},{"version":"0ca34eb7423e3c8ad96d33a6108bfceca3f7e1097191ee9b907bba69dd43cc79","impliedFormat":99},{"version":"d9758091a50ea1a209ad5034ab1d2bc176768ff9799d252a934851e330c0aec4","impliedFormat":99},{"version":"6269aff87d7249c85c87f8d277f6617b17680ef2eea9fa6b8fb6a7a223eeba35","impliedFormat":99},{"version":"badf52a6459427265b61dca12ad232490b9dedf7f673c7549d070fcacd9b2a3f","impliedFormat":99},{"version":"68c4298225d11e8cd6f8954fc22f6db735ac2a2b9cbf2e6757f535cd74a82150","impliedFormat":99},{"version":"d30aecd1b1dcc91951a06da8eb689953c8e3262a34beba3eab5a15ee1ec2b61b","impliedFormat":99},{"version":"97dadf6187c7d08bc4a514e5b7078ff58d5404bb6b399b82292a69603aae676b","signature":"2eea91c295fd31839c8ae178b391034c0f5bffd9d402a7c96d7b915b4bc03130","impliedFormat":99},{"version":"db90cca276c085e76c814ef0c285b84e55bfbb0cd7ad9c12d1e1ce48492bb274","signature":"60c2d0bf1c262fd2f1ee1b7fa06b6153d445ffbca332f286d9eeea70d26fbb93","impliedFormat":99},{"version":"f6311b7d394645e1684d761f1cfb984be25a0ec6052974c678bbb79d4ff7017f","signature":"30fd0905841893b6e14ea733561137d718d4cf49656539d94acdbb6146fc1e3f","impliedFormat":99},{"version":"216b68433199290353fd2d1542487d79b7c10be0922633ccd2d91f7c6ef0b18b","impliedFormat":99},{"version":"ac3f4dbc3be4efc24e113cf3987b25df7ef4c6d21ec902d426a7d8d6121da4d9","impliedFormat":99},{"version":"caf5273974387a02efdc63d51ec428ee8212d5e5fd8690d238f48f29b9ee45d5","impliedFormat":99},{"version":"c915607ee544a0eb31bf674c5133a541a20ac66113d9ea0cc36c5e59db638a97","impliedFormat":99},{"version":"618ad3be6dcbf439623c5c5c1bfc5ce1699642e96cda2b068ad75d10906a3ca6","signature":"b0dd62598fdf3a0ccbaa9a7a6ce37274ea9d5cc5fb7c185542630a316663d1d2","impliedFormat":99},{"version":"c15452aafe645f68246eb43bf8fdc1e184b0e51929fc8065d598c797de082ddf","signature":"02787d165e65e3f41e7648bc4217affa7df1275013767ad64022ba229c33062f","impliedFormat":99},{"version":"9828a149bae67c6d7ffcf7cf0f62c5a65ea2dd6dd22f01a001fcb2fb12a94db2","signature":"cd588e96f93fb0d60be4ca0fec988c35922a1a5c0bab18f92976968f5de88a5b","impliedFormat":99},{"version":"940c0bf142ddd8d1f08e20fb8111f5ad74da212ac0cd44f148b2244e8e5ca0d0","signature":"b76b035d0d073fbd640601faba6090d9b82aa98f110c66af89e4aa5fe0e64d7a","impliedFormat":99},{"version":"66ce34a92ef353a17440e5b5134b16fca7447267be728d4a433491ffbdf64be2","signature":"aec375915d61228ed812969074b6403651aebbbfcb41d41b22a65f0c45227efd","impliedFormat":99},{"version":"1cde0a96fd2db7aab74446e3bd84d3e4b47e0ea72d08473ad576d16fbbed3d83","signature":"3a9cfe276a3e9d97dc01d3725092d6f61d734327335e5136279642069bc27502","impliedFormat":99},{"version":"62f1743b1d8afabce02f1f70605bf68072a6d9ebaf2ef3aeeafabdb9da4105d2","impliedFormat":99},{"version":"c69c6380937040973f62356fc0cfb1dfa312436ae18d6f575946e1aa4f6d63f4","signature":"769671edb690bc9e5ebd94de4a504d7bda08ee221573897507c4335bcec00440","impliedFormat":99},{"version":"b2c588f47a3d7a7038d5cd7235a402d539260b1caa0074a2757fda4115cd8345","signature":"863c271c7c826761f936ba8a39129d1c74bc1bc321102654dd098fd17280459c","impliedFormat":99},{"version":"c577cec54f8413b4d28da6ad286b5da8ee0d1e2c23bb0661978f2680cbe9f084","impliedFormat":99},{"version":"23722a25fa66090368788261837e43625befd2d85f18795b3e80c2bfc4bc5c4c","signature":"462f0dc7bdeada426616f94d5010b46f685f58b3f57bdb6d26df983dddc34084","impliedFormat":99},{"version":"00ed1aeee37d5245e0f16030eabc21bd7b360936e0767d58aad8f5977d9389cd","signature":"f61bb8ac45b051586186a7b07bbc877f8a60f5673ca2f391cb1765d9f8af5a64","impliedFormat":99},{"version":"601520abcca03c5fa2dc578075b1c0b560d6de0859832aabb7a567118034969d","impliedFormat":99},{"version":"e5e4a29928e63c610def1ddba1554b6c9b8defc0017cd76889b5518311ca03ce","impliedFormat":99},{"version":"ac0f42c6459b4a14e031e26ddf10d284cfac423996230a33b580855f078a5e52","impliedFormat":99},{"version":"8ff4d11abea4398aa357da45cb79b62feca9b4741633609785b4516e0424c2c0","impliedFormat":99},{"version":"195ec2d1d3db4b4c57d341377c3e61b58a13924b64e19cf6056e3953f0815f29","impliedFormat":99},{"version":"1816253d08a1ec17c5a488856d174ed276417e1441e8d8ff6205a3f506907cc8","impliedFormat":99},{"version":"bdc0c5130cd1b8cb32b42120d5c1c95cab5dc56109697b9b72d7d1e883423350","impliedFormat":99},{"version":"174f87d34d42b820aca319ade978bb371408ab7f8d8de25d52e196fcb1e7b461","impliedFormat":99},{"version":"5d07cefa72b30e052c5d0f724b07303c6a5397d192a35bf79f26f3dc0fbdca67","signature":"a2b71330425fcc571a9c07f50ad3d8963fc1cd1b2deccdb7206a3c8b60aefebf","impliedFormat":99},{"version":"f1e6427b5674d073f27b008b522dd83f4cc0036f32fd47d35fb307ac85982570","signature":"c95788b8980605f07efb7b9ad4b0603ae42f9578b059b63801d31b7738a70639","impliedFormat":99},{"version":"5ab4d35fe2ac342932a36aea36367e760d6434b4794e4be0c542b0c9b0492158","impliedFormat":99},{"version":"c2a9f4929b40e91db4ed27a2529859ad7814d3b6e6eac5e9fffe1876c3929148","impliedFormat":99}],"root":[[171,173],[178,183],185,186,188,189,[198,201]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"jsx":1,"jsxImportSource":"solid-js","module":199,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[91,93,95,97,101,102,104,108,111,114,129,130,131,137,139,141,142,144,150,152,153,154,158,160],[94,105,176],[151],[90],[95],[94,151],[91,93,94,95,105,131,133,134,136,141,144,150],[99,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,134,150],[105,134,139,141,151,154,160],[92,134,144,145,146,147,148,149],[144],[99],[142,144],[93,99,105,114,130,131,132,133,141,142,143,144,150,151],[98],[102],[100],[100,108],[101,102,104,108],[101,102,104,108,111,114,130],[111],[102,104,114,130,150],[101,102,104,108,130],[93,100,142,143,144],[100,103,104,106,107,114,130,131,134,143,144,151],[93,98,100,101,103,104,105,108],[93,99,100,101,102,103,106,108],[93,94,96,114,130,131,132,134,135,139,140,142,150,151,154,160],[155],[97,137,155,156,158],[97,137,141,147,156,157,158],[94],[97,137,158],[97,135,137,138,139,141,151,154,158,160],[97,105,137,158],[105,139,154,160],[93,97,103,105,136,137,139,141,154,158,159,160],[93,94,97,105,135,136,137,138,141,158],[97,137,139,154,158,160],[141,144],[144,150],[92,93,94,143,150],[111,112,114,130,131,150],[91,95,131,135,151],[94,111,114,129,130,131,134,141,142,150,151,152],[99,114,130,141,150],[132],[85,86,87,88,89],[85,86],[87],[166],[161,164,166],[161,162,163,164,165],[162,164,166,167,168,169],[161,163,166],[161],[161,166],[84,172,195,196,201],[84,172,196,201],[81,84,172,193,194,196,201],[74,75,80,81,82,83],[73],[81],[74,75,80],[74],[74,81],[76,77,78,79],[174],[190],[84,172,191,192,196,201],[74,84,170,172,178,196,201],[74,84,170,171,172,173,178,180,196,201],[74,84,170,178,196,201],[74,84,172,181,185,186,187,188,196,201],[74,84,172,185,188,196,201],[74,84,172,196,201],[74,182,183,185,189,198,199],[74,84,172,181,185,188,196,201],[74,84,172,181,184,185,188,196,201],[74,84,161,172,181,185,187,188,196,197,201],[74,84,161,170,172,175,178,179,196,201],[74,170,177,178],[74,84,170,172,175,178,196,201],[74,170,178]],"referencedMap":[[161,1],[177,2],[93,3],[94,4],[91,4],[96,5],[95,6],[151,7],[130,8],[135,9],[150,10],[145,11],[128,12],[143,13],[134,14],[99,15],[103,16],[107,17],[102,18],[109,19],[110,19],[112,20],[121,21],[116,21],[122,21],[119,21],[120,21],[124,21],[123,21],[118,21],[127,21],[117,21],[125,21],[126,21],[115,21],[111,22],[113,19],[114,23],[101,24],[108,25],[106,26],[104,27],[141,28],[156,29],[157,30],[158,31],[97,32],[137,33],[154,34],[138,35],[159,36],[160,37],[139,38],[140,39],[142,40],[146,41],[147,41],[148,41],[149,41],[92,41],[144,42],[129,43],[152,44],[153,45],[131,46],[176,47],[90,48],[87,49],[88,50],[165,51],[169,52],[166,53],[170,54],[164,55],[162,56],[168,57],[196,58],[184,59],[197,58],[187,59],[195,60],[194,59],[84,61],[74,62],[83,63],[82,63],[81,64],[76,65],[77,66],[79,63],[80,67],[78,65],[175,68],[191,69],[193,70],[190,65],[171,71],[181,72],[172,73],[188,74],[189,75],[186,65],[183,76],[200,77],[201,59],[182,78],[199,78],[185,79],[198,80],[180,81],[179,82],[178,83],[173,84]],"latestChangedDtsFile":"./src/render.d.ts"},"version":"5.5.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.string.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/jsx.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/scheduler.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/component.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/flow.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/suspense.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/hydration.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/render/index.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/signal.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/observable.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/reactive/array.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/types/index.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/ieventemitter.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/bufferstruct.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/sharedobject.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/threadx.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/buffer-struct-utils.d.ts","../node_modules/.pnpm/@lightningjs+threadx@0.3.5/node_modules/@lightningjs/threadx/dist/index.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/ianimationcontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/subtexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/commontypes.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/common/eventemitter.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/animations/coreanimation.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/animations/animationmanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/trfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corerenderop.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/coreshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/webglcontextwrapper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorectxtexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/shaderutils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/buffercollection.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcoreshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/utils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorerenderop.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/internal/rendererutils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/webglcorerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/defaultshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/defaultshaderbatched.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/shadereffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/dynamicshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/roundedrectangle.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/sdfshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radiuseffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/bordereffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/lineargradienteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/grayscaleeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderrighteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/bordertopeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderbottomeffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/borderlefteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/glitcheffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/fadeouteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radialgradienteffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/radialprogresseffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/webgl/shaders/effects/holepuncheffect.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/canvas/shaders/unsupportedshader.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/dynamicshadercontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coreshadermanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/shadercontroller.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/contextspy.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/rendercoords.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coretextnode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/matrix3d.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/webtrfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/lightningtexttexturerenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/textrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/trfontmanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/stage.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/texturememorymanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/renderers/corecontexttexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/texture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/lib/imageworker.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/colortexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/imagetexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/noisetexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/textures/rendertexture.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/coretexturemanager.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/corenode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/inode.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/main-api/renderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/canvastextrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/internal/peekablegenerator.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/internal/fontshaper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/internal/sdffontshaper.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/font-face-types/sdftrfontface/sdftrfontface.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/internal/setrenderwindow.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/core/text-rendering/renderers/sdftextrenderer/sdftextrenderer.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/exports/index.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/lightninginit.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/states.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/intrinsictypes.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/children.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/elementnode.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/nodetypes.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/utils.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/config.d.ts","../node_modules/.pnpm/@lightningtv+core@1.0.5_@lightningjs+renderer@1.0.0/node_modules/@lightningtv/core/dist/src/index.d.ts","../src/activeelement.ts","../src/jsx-runtime.ts","../src/utils.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/universal/types/universal.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/universal/types/index.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/src/utils.d.ts","../node_modules/.pnpm/@lightningjs+renderer@1.0.0/node_modules/@lightningjs/renderer/dist/exports/utils.d.ts","../src/types.ts","../src/solidopts.ts","../src/render.ts","../src/index.ts","../src/primitives/lazyup.tsx","../src/primitives/createinfiniteitems.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/jsx.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/client.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/server-mock.d.ts","../node_modules/.pnpm/solid-js@1.8.17/node_modules/solid-js/web/types/index.d.ts","../node_modules/.pnpm/@solid-primitives+utils@6.2.3_solid-js@1.8.17/node_modules/@solid-primitives/utils/dist/types-d58cbe2f.d.ts","../node_modules/.pnpm/@solid-primitives+utils@6.2.3_solid-js@1.8.17/node_modules/@solid-primitives/utils/dist/index/index.d.ts","../node_modules/.pnpm/@solid-primitives+event-listener@2.3.3_solid-js@1.8.17/node_modules/@solid-primitives/event-listener/dist/index.d.ts","../node_modules/.pnpm/@solid-primitives+keyboard@1.2.8_solid-js@1.8.17/node_modules/@solid-primitives/keyboard/dist/index.d.ts","../node_modules/.pnpm/@solid-primitives+rootless@1.4.5_solid-js@1.8.17/node_modules/@solid-primitives/rootless/dist/index.d.ts","../src/primitives/usefocusmanager.ts","../src/primitives/announcer/speech.ts","../node_modules/.pnpm/@solid-primitives+scheduled@1.4.3_solid-js@1.8.17/node_modules/@solid-primitives/scheduled/dist/index.d.ts","../src/primitives/announcer/announcer.ts","../src/primitives/announcer/index.ts","../node_modules/.pnpm/@solid-primitives+mouse@2.0.19_solid-js@1.8.17/node_modules/@solid-primitives/mouse/dist/index.d.ts","../src/primitives/usemouse.ts","../src/primitives/portal.tsx","../src/primitives/index.ts","../src/primitives/jsx-runtime.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5","impliedFormat":1},{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"af5eff05ef7226f645df18d069dcf4a613628cf0dee6e7243c3ec44f29ff2105","impliedFormat":99},{"version":"720bf77517347f46aac4631ef8f774e94e7fa76c8f8bfaa7c47896b6c28b0ca3","impliedFormat":99},{"version":"502198db65d715d60602e7fe07c9ea71556de219fd5ed55cb2e5c2635d2ee7d0","impliedFormat":99},{"version":"693980c4667c33fb58535858f587f2766535e0e0f481ef7572958f892d235ab8","impliedFormat":99},{"version":"bd44db74aff2e55edb5b85426f863cac7cafcad0c992f319504b8e7f14e91947","impliedFormat":99},{"version":"51704f07eb94497105cd7a03ebed7143e3e5cf2bc8c864072288dfaa790ded18","impliedFormat":99},{"version":"b642b6a4b9b670338bc50281a6dd192fb7cc0b2f9d63d38c250bb1f02e828bbc","impliedFormat":99},{"version":"14857b2bccf2ced466e5b6d23edd367817296446f21ef879485a9bdc70a20a63","impliedFormat":99},{"version":"95f5b2e5c985fa861d29acc0e1395f1948118b5d48742212ecc07f8e5d7cd771","affectsGlobalScope":true,"impliedFormat":99},{"version":"f17290a24f50d4568d931f6a3f8cb3b9e917adb78f3ad4ac3253a8e002c09672","impliedFormat":99},{"version":"815daaec8473224f921a467616e52e18bba3267800c57d6e83177d33cc666690","affectsGlobalScope":true,"impliedFormat":99},{"version":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"07d9fd4c7d1efe78fa4d7bb6a2203bd6249c8f92ed706e6afc088ac9623f6d67","impliedFormat":99},{"version":"d90b76ce2694df21e1061f5f353ae561792c03791f3cccc8ff16e818fbde9e06","impliedFormat":99},{"version":"4695dca96c4e3ba7b0e1d3381c6c5ab1f434395cb9f20d7b021338223a906959","affectsGlobalScope":true,"impliedFormat":99},{"version":"0af862bd95a0ba9f05c35a91c6881311a8bf0a3b048bbe0afd5d1a9a8f82e7f6","impliedFormat":99},{"version":"d1d22599d75b5ce46d3d235fa8a0ab53fd29a410a9025c136196b08e56e25147","impliedFormat":99},{"version":"71b3c678e4396d59e0db8a66bae9c1d42e56877be5a2f6d4bd17603f6119fc07","impliedFormat":99},{"version":"0897e0c418de7dd7acfceb85fd00594140ff781b5f1b28d24da0de44a8be9580","impliedFormat":99},{"version":"54cdfdc127ce1e902fcd9687ef6c6a6f14c9c3143d697d831afdcf3497b7076d","impliedFormat":99},{"version":"58898cc3aeb7531de5f0dd27d64df82c96e470afabeffe0d14fff380e9a686d7","impliedFormat":99},{"version":"15a72b2fb6480bd7e1b363644fe6b1da001762701fd6d6ed56a449a4fa598210","impliedFormat":99},{"version":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"551c61b20bd72a80795fc054d3ac21b474a09c8636d59b98a6107ec0ba7044a4","impliedFormat":99},{"version":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"2c608878583a5c619e39dd010879fef01147b6f4dfe0fc1b0adaa1cc3d6781b7","impliedFormat":99},{"version":"56d7dd5eb8133237678eab460eb2048cfc35e34d42d2ad4e7eac395fdc034a38","impliedFormat":99},{"version":"ed4d3cd22d3564808f4776c0f46fe7a9e7242538ca6f2bae9a5479b29803cacb","impliedFormat":99},{"version":"0106bd890bbdc6774fc2ffa56b44ebcf72c70379bc613aa46db697ffae5136f9","impliedFormat":99},{"version":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"0fe8ef15dd55f44941a09f24c80b0208a9339530c90bc95c6477535803e0f21d","impliedFormat":99},{"version":"4564bfb4156c89199ef4e2a2ac47e69057ce339672950d96d3481ca7d63e382f","impliedFormat":99},{"version":"bc7ac1bc274f2d4018c301f538ac470a49ef9b7614e2b592a09134fa22626e45","impliedFormat":99},{"version":"92940b610d6ba0bd02a2b66ac4bda3a4b6929dede547d5aef9e27f03a4be0ea6","impliedFormat":99},{"version":"b023e7a03f6616f135a9f3049a0fd41271ef53ff9ef6f070f55d1b78b6fa9cb8","impliedFormat":99},{"version":"0e84fe255776ae5379c1cac863a5938c19489314e535cb344fd21842608b1784","impliedFormat":99},{"version":"e69c8aae6eb25b1f5f596d1925a3718c019a1244040824ef9285fd5ba78d89b1","impliedFormat":99},{"version":"2747e8c799545d9224500ba477a0352c626c3c101283407a5fc403505ddceb2f","impliedFormat":99},{"version":"c89494ec9982b7bb4126fe1de49635ae892606f8c03391ce4392694c854b026c","impliedFormat":99},{"version":"3777053409ca71051e867f5ba2b8c281a46f64ae5e4a39502fe0f2f2dfa5e1bb","impliedFormat":99},{"version":"472e7a03e0b6e86a1d63a2733082151390439b19e1c86e8b97aef34fcf9c1431","impliedFormat":99},{"version":"938ff90af916541a327286f1506a5180b910248ebb0b8122d90c5de8fc034e53","impliedFormat":99},{"version":"2938fdd3c2f3626344fc253ee2b3dd6e4a59180477ac36cf2a6cbfa8878e5b20","impliedFormat":99},{"version":"f9a09a3ae4618346cf8f9df7860a4be93c36efd9a508736325a76e694225e190","impliedFormat":99},{"version":"5fe987b10f73fd6ce5bfeb80db6f791a18ae48c776053102ce61d82db2a6f36e","impliedFormat":99},{"version":"e1abcf4a600bcd4b8e69fcd03e767f5019c7f65b94cccafbfa1655f106e453c7","impliedFormat":99},{"version":"c6dffb4a7da1ade0ed4d821fcac59688c93e327d3d8d41e61abcca107a506225","impliedFormat":99},{"version":"a0757e2827c3485f4ec357e733e930d1024cee02bafde0ec31a0e65544645441","impliedFormat":99},{"version":"83e2c88379c4e7be10c2a2396e8a9d065517925ab03b5052498f371550cf79ec","impliedFormat":99},{"version":"9ef32c5ea6950e752a2ca6e10dc9229a021b810bb413f6bfc95628e394884430","impliedFormat":99},{"version":"ee41693b20263c8b58521744a88b5da072b7328a221860558f708aff6604bcf5","impliedFormat":99},{"version":"19aafdc3c7b502910c9a416266f4cafd5d72744e4704344b94b600b6c09e61fe","impliedFormat":99},{"version":"655224934f23cd23eb1eab46e531119efb8b9d4537dc9cc46fa5980f47f3ece4","impliedFormat":99},{"version":"0af4c2cca0fd511c04baca62ac84b209100926ed7e7fadd7261c40125b518ee3","impliedFormat":99},{"version":"cd41c572490c5c4739dd50fe976f5ab393ee523bdc274e66c7db7bad2b580aa3","impliedFormat":99},{"version":"130877bf6f69f1cf26d465df5c7b5ab4eb72600c4ec30083c7af6675dea42ee3","impliedFormat":99},{"version":"5b2095b639feecb36f10a973d06bd548f9f3e9821cdc8722618afc574920329f","impliedFormat":99},{"version":"d0d75abf3e3c014b03cd652b915846739b908a3f8606a35a77ba14e17bead2d3","impliedFormat":99},{"version":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"855e81e7725ab35c3ac522af65c6b4b6c5e0ec84d661bc3d91ddebc93229fd84","impliedFormat":99},{"version":"741329f401149e1caa32a6fca2ca4bc66279e2eca17f8dd53bee3edba2a4472b","impliedFormat":99},{"version":"8cf4d4233c095b59f584b2fb5259e295feacb3ed8b1fc0ec0a4a4869865b591f","impliedFormat":99},{"version":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"75ea12223b074b5c4aea501797340b91380461620c22aafc7013bb99c9cace3e","impliedFormat":99},{"version":"6b672ae185588a21778092c09c97d34753f41e9c7601bed83c0dc5b27c91a766","impliedFormat":99},{"version":"82aa674558d37da0c3262e4ffb7eed8f025e795415c622be39517aa2f391b6ad","impliedFormat":99},{"version":"af356f5bcfec8772205f73bb185972c8f31e61fb4c3a7ff56ca0fca0522a08ee","impliedFormat":99},{"version":"a01df4d503f97a4dc5b47885d82641dc21e098075cf38268ad96bc30b5be6e6f","impliedFormat":99},{"version":"0de9d854b28e82b419ec0046e1c24a23b3550fe4ce2ecccf44ec1886ed67efed","impliedFormat":99},{"version":"450876e1e9ba31ca00982b263feb444a4248b4111eb706a69b63dfc84f8e4150","impliedFormat":99},{"version":"ce98411afe3c0b621a17be353dc3220c5283c9691a21da67cfc31e078feea948","impliedFormat":99},{"version":"42f52804326e3fd8dabad0256969f3ff53470f9b6284482681b34b6123143fde","impliedFormat":99},{"version":"675fd4392738a45b3ba48d1382e5cd9b865953c04337ee83a552de9c6ba3f249","impliedFormat":99},{"version":"2f66ef1feb36fdbb017b3e71c1802776f1c04c85a120d9ebd2e192b527e66ed2","impliedFormat":99},{"version":"a6adb92c3d8c9f03f6a8fbb81b7b36a4453624eca12b3106e64f3c024d7277a2","impliedFormat":99},{"version":"a730f270ac0e5e6531314fb8ce6886866c7ad301fa069947774fc1276bdcfa34","impliedFormat":99},{"version":"604dfb0df00723b24b85e47c2e641c030e48b9d9af398a910d1bb70c27bf657a","impliedFormat":99},{"version":"51465f3a7ced2ecf75938151747d581198b0e86b49b92e6db908b55cab56d04f","impliedFormat":99},{"version":"0a85e37588e35098c2f44fe52ce1f92b55a1a18d2726ed0c1b4157603a47b62f","impliedFormat":99},{"version":"ac491c1b1fcd090c1dc7182bd8b90e2e6e57ba5f9c09fa34988d4cfb4d28f03d","impliedFormat":99},{"version":"9bf9fda3f287ad47f4709c1556ce361a759fdeaaafe084001e5060cecdc3f388","impliedFormat":99},{"version":"8c2b43fffaf9f683998ec697f7018fdebb028662f6f8a6630ed5157b3e48cc66","impliedFormat":99},{"version":"7a26ecdc665e9c6a77f5e2b3d25477c54d46f18775d6c0526fa334dff654af18","impliedFormat":99},{"version":"77bdcd96a3265ca547318a5af3ee8ad2ee5cb272525d7023d7a46f54c60ced53","impliedFormat":99},{"version":"421046da44aec7e8cb919183007176566ed66409dfb4246e7fbe572e6448cdc1","impliedFormat":99},{"version":"8a407499aa707eea4802f13414c0efc136b71bc13a00db0e34ce924d4e604dd0","impliedFormat":99},{"version":"72d7cdb02398ac79589fcb3f3481f40c75cdef917f9d722d9ee53e996a4f77e5","impliedFormat":99},{"version":"efb3fe01a8a3a150378437a3911994ad0c791aec643fa5f1d71e26561234eeb7","impliedFormat":99},{"version":"a768afb5867684c07f7b1ae253faf9ad9c60ec681b2cb648fb1764bf3e20b764","impliedFormat":99},{"version":"48694e6dab1ef6080aab5791fcd1cb3579904dde719ad761f562d0d00b1adc95","impliedFormat":99},{"version":"d7ae4a1ed386b540d29524d2e196fcbf07114508bca9ccd3fc73f3fa07223900","impliedFormat":99},{"version":"0ca34eb7423e3c8ad96d33a6108bfceca3f7e1097191ee9b907bba69dd43cc79","impliedFormat":99},{"version":"a10de15dac4e8d71dddffbb0f1ec54043bf63d1cfce52a76170a3c54769916ae","impliedFormat":99},{"version":"6269aff87d7249c85c87f8d277f6617b17680ef2eea9fa6b8fb6a7a223eeba35","impliedFormat":99},{"version":"badf52a6459427265b61dca12ad232490b9dedf7f673c7549d070fcacd9b2a3f","impliedFormat":99},{"version":"68c4298225d11e8cd6f8954fc22f6db735ac2a2b9cbf2e6757f535cd74a82150","impliedFormat":99},{"version":"d30aecd1b1dcc91951a06da8eb689953c8e3262a34beba3eab5a15ee1ec2b61b","impliedFormat":99},{"version":"97dadf6187c7d08bc4a514e5b7078ff58d5404bb6b399b82292a69603aae676b","signature":"2eea91c295fd31839c8ae178b391034c0f5bffd9d402a7c96d7b915b4bc03130","impliedFormat":99},{"version":"db90cca276c085e76c814ef0c285b84e55bfbb0cd7ad9c12d1e1ce48492bb274","signature":"60c2d0bf1c262fd2f1ee1b7fa06b6153d445ffbca332f286d9eeea70d26fbb93","impliedFormat":99},{"version":"f6311b7d394645e1684d761f1cfb984be25a0ec6052974c678bbb79d4ff7017f","signature":"30fd0905841893b6e14ea733561137d718d4cf49656539d94acdbb6146fc1e3f","impliedFormat":99},{"version":"216b68433199290353fd2d1542487d79b7c10be0922633ccd2d91f7c6ef0b18b","impliedFormat":99},{"version":"ac3f4dbc3be4efc24e113cf3987b25df7ef4c6d21ec902d426a7d8d6121da4d9","impliedFormat":99},{"version":"caf5273974387a02efdc63d51ec428ee8212d5e5fd8690d238f48f29b9ee45d5","impliedFormat":99},{"version":"c915607ee544a0eb31bf674c5133a541a20ac66113d9ea0cc36c5e59db638a97","impliedFormat":99},{"version":"49096a57d3c7defb298703f34f0fcbb405453ba93c2bf5f29556847af668489a","signature":"577dffe54f442b8dca9f12e9c6d331cff78ba14ab953ca408e8c6b59ddca9265","impliedFormat":99},{"version":"ddcd0e11a4a9a7e9aef523160940aa9d8013b736d739640ccf44238f0e46a077","signature":"caa5b38368b0b7e39132be55bf67c4be858c6d2d9dbd136f500e12841c19e175","impliedFormat":99},{"version":"639838ea7944c1e710ff862de813d08ffdb230af03004922ddb518ab0978f35b","signature":"baf73850c89b1dbbba5de3cf50d28e6abaf149a5241c0bb286d7307fa4d8c092","impliedFormat":99},{"version":"940c0bf142ddd8d1f08e20fb8111f5ad74da212ac0cd44f148b2244e8e5ca0d0","signature":"b76b035d0d073fbd640601faba6090d9b82aa98f110c66af89e4aa5fe0e64d7a","impliedFormat":99},{"version":"66ce34a92ef353a17440e5b5134b16fca7447267be728d4a433491ffbdf64be2","signature":"aec375915d61228ed812969074b6403651aebbbfcb41d41b22a65f0c45227efd","impliedFormat":99},{"version":"1cde0a96fd2db7aab74446e3bd84d3e4b47e0ea72d08473ad576d16fbbed3d83","signature":"3a9cfe276a3e9d97dc01d3725092d6f61d734327335e5136279642069bc27502","impliedFormat":99},{"version":"601520abcca03c5fa2dc578075b1c0b560d6de0859832aabb7a567118034969d","impliedFormat":99},{"version":"e5e4a29928e63c610def1ddba1554b6c9b8defc0017cd76889b5518311ca03ce","impliedFormat":99},{"version":"ac0f42c6459b4a14e031e26ddf10d284cfac423996230a33b580855f078a5e52","impliedFormat":99},{"version":"8ff4d11abea4398aa357da45cb79b62feca9b4741633609785b4516e0424c2c0","impliedFormat":99},{"version":"195ec2d1d3db4b4c57d341377c3e61b58a13924b64e19cf6056e3953f0815f29","impliedFormat":99},{"version":"1816253d08a1ec17c5a488856d174ed276417e1441e8d8ff6205a3f506907cc8","impliedFormat":99},{"version":"bdc0c5130cd1b8cb32b42120d5c1c95cab5dc56109697b9b72d7d1e883423350","impliedFormat":99},{"version":"62f1743b1d8afabce02f1f70605bf68072a6d9ebaf2ef3aeeafabdb9da4105d2","impliedFormat":99},{"version":"5af174a0aa60e84bc047c15238285d2b8d29c1038bbbcb933ab236f63d6c2928","impliedFormat":99},{"version":"cfc25e2f17d387ee21ae153f6e6d14a2f0b056583f4560335cc77d05cce698f3","signature":"8ecb1d9244dadddfcf5fc1146655e6b991600d50341c97df6a4a2e1f81a0f958","impliedFormat":99},{"version":"b2c588f47a3d7a7038d5cd7235a402d539260b1caa0074a2757fda4115cd8345","signature":"863c271c7c826761f936ba8a39129d1c74bc1bc321102654dd098fd17280459c","impliedFormat":99},{"version":"c577cec54f8413b4d28da6ad286b5da8ee0d1e2c23bb0661978f2680cbe9f084","impliedFormat":99},{"version":"23722a25fa66090368788261837e43625befd2d85f18795b3e80c2bfc4bc5c4c","signature":"462f0dc7bdeada426616f94d5010b46f685f58b3f57bdb6d26df983dddc34084","impliedFormat":99},{"version":"00ed1aeee37d5245e0f16030eabc21bd7b360936e0767d58aad8f5977d9389cd","signature":"f61bb8ac45b051586186a7b07bbc877f8a60f5673ca2f391cb1765d9f8af5a64","impliedFormat":99},{"version":"174f87d34d42b820aca319ade978bb371408ab7f8d8de25d52e196fcb1e7b461","impliedFormat":99},{"version":"51eebbbd93809a1f44bd03f80c017962bc65600a3fb23f37fe0a367de7821c62","signature":"a2b71330425fcc571a9c07f50ad3d8963fc1cd1b2deccdb7206a3c8b60aefebf","impliedFormat":99},{"version":"f1e6427b5674d073f27b008b522dd83f4cc0036f32fd47d35fb307ac85982570","signature":"c95788b8980605f07efb7b9ad4b0603ae42f9578b059b63801d31b7738a70639","impliedFormat":99},{"version":"5ab4d35fe2ac342932a36aea36367e760d6434b4794e4be0c542b0c9b0492158","impliedFormat":99},{"version":"c2a9f4929b40e91db4ed27a2529859ad7814d3b6e6eac5e9fffe1876c3929148","impliedFormat":99}],"root":[[171,173],[178,183],193,194,196,197,[199,202]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"jsx":1,"jsxImportSource":"solid-js","module":199,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[91,93,95,97,101,102,104,108,111,114,129,130,131,137,139,141,142,144,150,152,153,154,158,160],[94,105,176],[151],[90],[95],[94,151],[91,93,94,95,105,131,133,134,136,141,144,150],[99,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,134,150],[105,134,139,141,151,154,160],[92,134,144,145,146,147,148,149],[144],[99],[142,144],[93,99,105,114,130,131,132,133,141,142,143,144,150,151],[98],[102],[100],[100,108],[101,102,104,108],[101,102,104,108,111,114,130],[111],[102,104,114,130,150],[101,102,104,108,130],[93,100,142,143,144],[100,103,104,106,107,114,130,131,134,143,144,151],[93,98,100,101,103,104,105,108],[93,99,100,101,102,103,106,108],[93,94,96,114,130,131,132,134,135,139,140,142,150,151,154,160],[155],[97,137,155,156,158],[97,137,141,147,156,157,158],[94],[97,137,158],[97,135,137,138,139,141,151,154,158,160],[97,105,137,158],[105,139,154,160],[93,97,103,105,136,137,139,141,154,158,159,160],[93,94,97,105,135,136,137,138,141,158],[97,137,139,154,158,160],[141,144],[144,150],[92,93,94,143,150],[111,112,114,130,131,150],[91,95,131,135,151],[94,111,114,129,130,131,134,141,142,150,151,152],[99,114,130,141,150],[132],[85,86,87,88,89],[85,86],[87],[166],[161,164,166],[161,162,163,164,165],[162,164,166,167,168,169],[161,163,166],[161],[161,166],[84,172,189,190,202],[84,172,190,202],[81,84,172,187,188,190,202],[74,75,80,81,82,83],[73],[81],[74,75,80],[74],[74,81],[76,77,78,79],[174],[184],[84,172,185,186,190,202],[74,84,170,172,178,190,202],[74,84,170,171,172,173,178,180,190,202],[74,84,170,178,190,202],[74,84,172,181,190,193,194,195,196,202],[74,84,172,190,193,196,202],[74,84,172,190,202],[74,182,183,193,197,199,200],[74,84,172,181,190,193,196,202],[74,84,172,181,190,191,192,193,196,202],[74,84,161,172,181,190,193,195,196,198,202],[74,84,161,170,172,175,178,179,190,202],[74,170,177,178],[74,84,170,172,175,178,190,202],[74,170,178]],"referencedMap":[[161,1],[177,2],[93,3],[94,4],[91,4],[96,5],[95,6],[151,7],[130,8],[135,9],[150,10],[145,11],[128,12],[143,13],[134,14],[99,15],[103,16],[107,17],[102,18],[109,19],[110,19],[112,20],[121,21],[116,21],[122,21],[119,21],[120,21],[124,21],[123,21],[118,21],[127,21],[117,21],[125,21],[126,21],[115,21],[111,22],[113,19],[114,23],[101,24],[108,25],[106,26],[104,27],[141,28],[156,29],[157,30],[158,31],[97,32],[137,33],[154,34],[138,35],[159,36],[160,37],[139,38],[140,39],[142,40],[146,41],[147,41],[148,41],[149,41],[92,41],[144,42],[129,43],[152,44],[153,45],[131,46],[176,47],[90,48],[87,49],[88,50],[165,51],[169,52],[166,53],[170,54],[164,55],[162,56],[168,57],[190,58],[191,59],[198,58],[192,58],[195,59],[189,60],[188,59],[84,61],[74,62],[83,63],[82,63],[81,64],[76,65],[77,66],[79,63],[80,67],[78,65],[175,68],[185,69],[187,70],[184,65],[171,71],[181,72],[172,73],[196,74],[197,75],[194,65],[183,76],[201,77],[202,59],[182,78],[200,78],[193,79],[199,80],[180,81],[179,82],[178,83],[173,84]],"latestChangedDtsFile":"./src/render.d.ts"},"version":"5.5.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightningtv/solid",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Lightning Renderer for Solid Universal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -42,10 +42,11 @@
|
|
|
42
42
|
"author": "Chris Lorenzo",
|
|
43
43
|
"license": "Apache-2.0",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lightningtv/core": "^1.0.
|
|
45
|
+
"@lightningtv/core": "^1.0.5",
|
|
46
46
|
"@solid-primitives/event-listener": "^2.3.3",
|
|
47
47
|
"@solid-primitives/keyboard": "^1.2.8",
|
|
48
48
|
"@solid-primitives/mouse": "^2.0.19",
|
|
49
|
+
"@solid-primitives/rootless": "^1.4.5",
|
|
49
50
|
"@solid-primitives/scheduled": "^1.4.3"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
createEffect,
|
|
3
|
-
on,
|
|
4
|
-
createSignal,
|
|
5
|
-
untrack,
|
|
6
|
-
type Accessor,
|
|
7
|
-
} from 'solid-js';
|
|
8
|
-
import { useKeyDownEvent } from '@solid-primitives/keyboard';
|
|
9
1
|
import {
|
|
10
2
|
activeElement,
|
|
11
3
|
ElementNode,
|
|
12
4
|
isFunc,
|
|
13
5
|
isArray,
|
|
14
6
|
} from '@lightningtv/solid';
|
|
7
|
+
import { createEffect, createSignal, on, onCleanup, untrack } from 'solid-js';
|
|
8
|
+
import { type Accessor } from 'solid-js';
|
|
9
|
+
import { makeEventListener } from '@solid-primitives/event-listener';
|
|
10
|
+
import { useKeyDownEvent } from '@solid-primitives/keyboard';
|
|
11
|
+
import { createSingletonRoot } from '@solid-primitives/rootless';
|
|
12
|
+
|
|
13
|
+
export type KeyNameOrKeyCode = string | number;
|
|
15
14
|
|
|
16
15
|
export interface DefaultKeyMap {
|
|
17
|
-
Left:
|
|
18
|
-
Right:
|
|
19
|
-
Up:
|
|
20
|
-
Down:
|
|
21
|
-
Enter:
|
|
22
|
-
Last:
|
|
16
|
+
Left: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
17
|
+
Right: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
18
|
+
Up: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
19
|
+
Down: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
20
|
+
Enter: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
21
|
+
Last: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface DefaultKeyHoldMap {
|
|
25
|
+
EnterHold: KeyNameOrKeyCode | KeyNameOrKeyCode[];
|
|
23
26
|
}
|
|
24
27
|
|
|
25
28
|
export interface KeyMap extends DefaultKeyMap {}
|
|
26
29
|
|
|
30
|
+
export interface KeyHoldMap extends DefaultKeyHoldMap {}
|
|
31
|
+
|
|
27
32
|
export type KeyHandlerReturn = boolean | void;
|
|
28
33
|
|
|
29
34
|
export type KeyHandler = (
|
|
@@ -39,13 +44,18 @@ export type KeyHandler = (
|
|
|
39
44
|
type KeyMapEventHandlers = {
|
|
40
45
|
[K in keyof KeyMap as `on${Capitalize<K>}`]?: KeyHandler;
|
|
41
46
|
};
|
|
47
|
+
type KeyHoldMapEventHandlers = {
|
|
48
|
+
[K in keyof KeyHoldMap as `on${Capitalize<K>}`]?: KeyHandler;
|
|
49
|
+
};
|
|
42
50
|
|
|
43
51
|
declare module '@lightningtv/solid' {
|
|
44
52
|
/**
|
|
45
53
|
* Augment the existing IntrinsicCommonProps interface with our own
|
|
46
54
|
* FocusManager-specific properties.
|
|
47
55
|
*/
|
|
48
|
-
interface IntrinsicCommonProps
|
|
56
|
+
interface IntrinsicCommonProps
|
|
57
|
+
extends KeyMapEventHandlers,
|
|
58
|
+
KeyHoldMapEventHandlers {
|
|
49
59
|
onFocus?: (
|
|
50
60
|
currentFocusedElm: ElementNode | undefined,
|
|
51
61
|
prevFocusedElm: ElementNode | undefined,
|
|
@@ -92,7 +102,7 @@ declare module '@lightningtv/solid' {
|
|
|
92
102
|
}
|
|
93
103
|
}
|
|
94
104
|
|
|
95
|
-
const keyMapEntries: Record<
|
|
105
|
+
const keyMapEntries: Record<KeyNameOrKeyCode, string> = {
|
|
96
106
|
ArrowLeft: 'Left',
|
|
97
107
|
ArrowRight: 'Right',
|
|
98
108
|
ArrowUp: 'Up',
|
|
@@ -104,10 +114,52 @@ const keyMapEntries: Record<string | number, string> = {
|
|
|
104
114
|
Escape: 'Escape',
|
|
105
115
|
};
|
|
106
116
|
|
|
117
|
+
const keyHoldMapEntries: Record<KeyNameOrKeyCode, string> = {
|
|
118
|
+
Enter: 'EnterHold',
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
const DEFAULT_KEY_HOLD_THRESHOLD = 150; // ms
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* holdThreshold is in milliseconds.
|
|
125
|
+
*/
|
|
126
|
+
export type KeyHoldOptions = {
|
|
127
|
+
userKeyHoldMap: Partial<KeyHoldMap>;
|
|
128
|
+
holdThreshold?: number;
|
|
129
|
+
};
|
|
130
|
+
|
|
107
131
|
const [focusPath, setFocusPath] = createSignal<ElementNode[]>([]);
|
|
108
132
|
export { focusPath };
|
|
109
|
-
|
|
133
|
+
|
|
134
|
+
// copy of useKeyDownEvent but for keyup
|
|
135
|
+
const useKeyUpEvent = /*#__PURE__*/ createSingletonRoot<
|
|
136
|
+
Accessor<KeyboardEvent | null>
|
|
137
|
+
>(() => {
|
|
138
|
+
const [event, setEvent] = createSignal<KeyboardEvent | null>(null);
|
|
139
|
+
|
|
140
|
+
makeEventListener(window, 'keyup', (e) => {
|
|
141
|
+
setEvent(e);
|
|
142
|
+
setTimeout(() => setEvent(null));
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
return event;
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
export const useFocusManager = (
|
|
149
|
+
userKeyMap?: Partial<KeyMap>,
|
|
150
|
+
keyHoldOptions?: KeyHoldOptions,
|
|
151
|
+
) => {
|
|
110
152
|
const keypressEvent = useKeyDownEvent();
|
|
153
|
+
const keyupEvent = useKeyUpEvent();
|
|
154
|
+
const keyHoldTimeouts: { [key: KeyNameOrKeyCode]: number } = {};
|
|
155
|
+
|
|
156
|
+
// clear out any leftover timeouts
|
|
157
|
+
onCleanup(() => {
|
|
158
|
+
for (const [_, timeout] of Object.entries(keyHoldTimeouts)) {
|
|
159
|
+
if (timeout) clearTimeout(timeout);
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
|
|
111
163
|
if (userKeyMap) {
|
|
112
164
|
// Flatten the userKeyMap to a hash
|
|
113
165
|
for (const [key, value] of Object.entries(userKeyMap)) {
|
|
@@ -120,6 +172,21 @@ export const useFocusManager = (userKeyMap?: Partial<KeyMap>) => {
|
|
|
120
172
|
}
|
|
121
173
|
}
|
|
122
174
|
}
|
|
175
|
+
if (keyHoldOptions?.userKeyHoldMap) {
|
|
176
|
+
// same as above
|
|
177
|
+
for (const [key, value] of Object.entries(keyHoldOptions?.userKeyHoldMap)) {
|
|
178
|
+
if (value === undefined || value === null) {
|
|
179
|
+
continue;
|
|
180
|
+
}
|
|
181
|
+
if (isArray(value)) {
|
|
182
|
+
for (const v of value) {
|
|
183
|
+
keyHoldMapEntries[v] = key;
|
|
184
|
+
}
|
|
185
|
+
} else {
|
|
186
|
+
keyHoldMapEntries[value] = key;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
123
190
|
createEffect(
|
|
124
191
|
on(
|
|
125
192
|
activeElement as Accessor<ElementNode>,
|
|
@@ -172,45 +239,86 @@ export const useFocusManager = (userKeyMap?: Partial<KeyMap>) => {
|
|
|
172
239
|
),
|
|
173
240
|
);
|
|
174
241
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
if (
|
|
190
|
-
if (onKeyHandler.call(elm, e, elm, finalFocusElm) === true) {
|
|
191
|
-
break;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
} else {
|
|
195
|
-
console.log(`Unhandled key event: ${e.key || e.keyCode}`);
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
if (isFunc(elm.onKeyPress)) {
|
|
199
|
-
if (
|
|
200
|
-
elm.onKeyPress.call(
|
|
201
|
-
elm,
|
|
202
|
-
e,
|
|
203
|
-
mappedKeyEvent,
|
|
204
|
-
elm,
|
|
205
|
-
finalFocusElm,
|
|
206
|
-
) === true
|
|
207
|
-
) {
|
|
242
|
+
const propagateKeyDown = (
|
|
243
|
+
e: KeyboardEvent,
|
|
244
|
+
mappedEvent: string | undefined,
|
|
245
|
+
isHold = false,
|
|
246
|
+
) => {
|
|
247
|
+
untrack(() => {
|
|
248
|
+
const fp = focusPath();
|
|
249
|
+
let finalFocusElm: ElementNode | undefined = undefined;
|
|
250
|
+
for (const elm of fp) {
|
|
251
|
+
finalFocusElm = finalFocusElm || elm;
|
|
252
|
+
if (mappedEvent) {
|
|
253
|
+
const onKeyHandler =
|
|
254
|
+
elm[`on${mappedEvent}` as keyof KeyMapEventHandlers];
|
|
255
|
+
if (isFunc(onKeyHandler)) {
|
|
256
|
+
if (onKeyHandler.call(elm, e, elm, finalFocusElm) === true) {
|
|
208
257
|
break;
|
|
209
258
|
}
|
|
210
259
|
}
|
|
260
|
+
} else {
|
|
261
|
+
console.log(`Unhandled key event: ${e.key || e.keyCode}`);
|
|
211
262
|
}
|
|
212
|
-
|
|
213
|
-
|
|
263
|
+
const fallbackFunction = isHold ? elm.onKeyPress : elm.onKeyHold;
|
|
264
|
+
if (isFunc(fallbackFunction)) {
|
|
265
|
+
if (
|
|
266
|
+
(fallbackFunction as any).call(
|
|
267
|
+
elm,
|
|
268
|
+
e,
|
|
269
|
+
mappedEvent,
|
|
270
|
+
elm,
|
|
271
|
+
finalFocusElm,
|
|
272
|
+
) === true
|
|
273
|
+
) {
|
|
274
|
+
break;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
return false;
|
|
279
|
+
});
|
|
280
|
+
};
|
|
281
|
+
|
|
282
|
+
const keyHoldCallback = (
|
|
283
|
+
e: KeyboardEvent,
|
|
284
|
+
mappedKeyHoldEvent: string | undefined,
|
|
285
|
+
) => {
|
|
286
|
+
delete keyHoldTimeouts[e.key || e.keyCode];
|
|
287
|
+
propagateKeyDown(e, mappedKeyHoldEvent, true);
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
createEffect(() => {
|
|
291
|
+
const keypress = keypressEvent();
|
|
292
|
+
const keyup = keyupEvent();
|
|
293
|
+
|
|
294
|
+
if (keypress) {
|
|
295
|
+
const key: KeyNameOrKeyCode = keypress.key || keypress.keyCode;
|
|
296
|
+
const mappedKeyHoldEvent = keyHoldMapEntries[key];
|
|
297
|
+
const mappedKeyEvent = keyMapEntries[key];
|
|
298
|
+
if (!mappedKeyHoldEvent) {
|
|
299
|
+
// just a regular key press
|
|
300
|
+
propagateKeyDown(keypress, mappedKeyEvent, false);
|
|
301
|
+
} else {
|
|
302
|
+
const delay =
|
|
303
|
+
keyHoldOptions?.holdThreshold || DEFAULT_KEY_HOLD_THRESHOLD;
|
|
304
|
+
if (keyHoldTimeouts[key]) {
|
|
305
|
+
// recieved two keydown events without a keyup in between
|
|
306
|
+
clearTimeout(keyHoldTimeouts[key]);
|
|
307
|
+
}
|
|
308
|
+
keyHoldTimeouts[key] = setTimeout(
|
|
309
|
+
() => keyHoldCallback(keypress, mappedKeyHoldEvent),
|
|
310
|
+
delay,
|
|
311
|
+
);
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
if (keyup) {
|
|
315
|
+
const key: KeyNameOrKeyCode = keyup.key || keyup.keyCode;
|
|
316
|
+
const mappedKeyEvent = keyMapEntries[key];
|
|
317
|
+
if (keyHoldTimeouts[key]) {
|
|
318
|
+
clearTimeout(keyHoldTimeouts[key]);
|
|
319
|
+
delete keyHoldTimeouts[key];
|
|
320
|
+
propagateKeyDown(keyup, mappedKeyEvent, false);
|
|
321
|
+
}
|
|
214
322
|
}
|
|
215
323
|
});
|
|
216
324
|
|
|
@@ -11,8 +11,12 @@ import { useMousePosition } from '@solid-primitives/mouse';
|
|
|
11
11
|
import { createScheduled, throttle } from '@solid-primitives/scheduled';
|
|
12
12
|
import { createEffect } from 'solid-js';
|
|
13
13
|
|
|
14
|
-
function createKeyboardEvent(
|
|
15
|
-
|
|
14
|
+
function createKeyboardEvent(
|
|
15
|
+
key: string,
|
|
16
|
+
keyCode: number,
|
|
17
|
+
eventName: string = 'keydown',
|
|
18
|
+
): KeyboardEvent {
|
|
19
|
+
return new KeyboardEvent(eventName, {
|
|
16
20
|
key,
|
|
17
21
|
keyCode,
|
|
18
22
|
which: keyCode,
|
|
@@ -27,9 +31,9 @@ function createKeyboardEvent(key: string, keyCode: number): KeyboardEvent {
|
|
|
27
31
|
const handleScroll = throttle((e: WheelEvent): void => {
|
|
28
32
|
const deltaY = e.deltaY;
|
|
29
33
|
if (deltaY < 0) {
|
|
30
|
-
document.dispatchEvent(createKeyboardEvent('ArrowUp', 38));
|
|
34
|
+
document.body.dispatchEvent(createKeyboardEvent('ArrowUp', 38));
|
|
31
35
|
} else if (deltaY > 0) {
|
|
32
|
-
document.dispatchEvent(createKeyboardEvent('ArrowDown', 40));
|
|
36
|
+
document.body.dispatchEvent(createKeyboardEvent('ArrowDown', 40));
|
|
33
37
|
}
|
|
34
38
|
}, 250);
|
|
35
39
|
|
|
@@ -48,6 +52,11 @@ const handleClick = (e: MouseEvent): void => {
|
|
|
48
52
|
)
|
|
49
53
|
) {
|
|
50
54
|
document.dispatchEvent(createKeyboardEvent('Enter', 13));
|
|
55
|
+
setTimeout(
|
|
56
|
+
() =>
|
|
57
|
+
document.body.dispatchEvent(createKeyboardEvent('Enter', 13, 'keyup')),
|
|
58
|
+
1,
|
|
59
|
+
);
|
|
51
60
|
}
|
|
52
61
|
};
|
|
53
62
|
|
package/src/render.ts
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
type ValidComponent,
|
|
15
15
|
} from 'solid-js';
|
|
16
16
|
import type { RendererMain, RendererMainSettings } from '@lightningjs/renderer';
|
|
17
|
-
import { SolidNode } from './types.js';
|
|
17
|
+
import type { SolidNode } from './types.js';
|
|
18
18
|
|
|
19
19
|
const solidRenderer = solidCreateRenderer<SolidNode>(nodeOpts);
|
|
20
20
|
|
package/src/solidOpts.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { assertTruthy } from '@lightningjs/renderer/utils';
|
|
2
|
-
import { ElementNode, NodeType, log, ElementText } from '@lightningtv/core';
|
|
3
|
-
import { SolidNode, SolidRendererOptions } from './types.js';
|
|
2
|
+
import { ElementNode, NodeType, log, type ElementText } from '@lightningtv/core';
|
|
3
|
+
import type { SolidNode, SolidRendererOptions } from './types.js';
|
|
4
4
|
|
|
5
5
|
export default {
|
|
6
6
|
createElement(name: string): ElementNode {
|
package/src/types.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ElementNode, Styles, ElementText } from '@lightningtv/core';
|
|
2
|
-
import { JSXElement } from 'solid-js';
|
|
1
|
+
import { ElementNode, type Styles, type ElementText } from '@lightningtv/core';
|
|
2
|
+
import type { JSXElement } from 'solid-js';
|
|
3
3
|
import { createRenderer } from 'solid-js/universal';
|
|
4
4
|
|
|
5
5
|
export type SolidRendererOptions = Parameters<
|