lilact 0.4.0 → 0.5.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/README.md +2 -2
- package/bin/transpile-dir.js +2 -2
- package/bin/transpile.js +5 -5
- package/dist/lilact.development.min.js +1 -1
- package/dist/lilact.development.min.js.LICENSE.txt +1 -1
- package/dist/lilact.development.min.js.map +1 -1
- package/dist/lilact.production.min.js +1 -1
- package/dist/lilact.production.min.js.map +1 -1
- package/docs/assets/highlight.css +42 -0
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/accessories.ErrorBoundary.html +8 -8
- package/docs/classes/accessories.Suspense.html +7 -7
- package/docs/classes/components.Component.html +10 -10
- package/docs/classes/components.HTMLComponent.html +10 -10
- package/docs/classes/components.RootComponent.html +10 -10
- package/docs/functions/components.createComponent.html +1 -1
- package/docs/functions/components.createRoot.html +1 -1
- package/docs/functions/components.render.html +1 -1
- package/docs/functions/errors.globalErrorHandler.html +7 -0
- package/docs/functions/errors.traceError.html +6 -0
- package/docs/functions/jsx.transpileJSX.html +3 -3
- package/docs/functions/misc.classNames.html +1 -1
- package/docs/functions/misc.deepEqual.html +1 -1
- package/docs/functions/misc.getComponentByPointer.html +1 -1
- package/docs/functions/misc.isAsync.html +1 -1
- package/docs/functions/misc.isClass.html +1 -1
- package/docs/functions/misc.isEmpty.html +1 -1
- package/docs/functions/misc.isError.html +1 -1
- package/docs/functions/misc.isThenable.html +1 -1
- package/docs/functions/misc.shallowEqual.html +1 -1
- package/docs/functions/misc.toBool.html +1 -1
- package/docs/functions/run.lazy.html +1 -1
- package/docs/functions/run.require.html +1 -1
- package/docs/functions/run.runScripts.html +1 -1
- package/docs/functions/transition.Transition.html +3 -3
- package/docs/index.html +2 -2
- package/docs/modules/errors.html +1 -0
- package/docs/modules/pane.html +1 -0
- package/docs/modules/run.html +1 -1
- package/docs/modules.html +1 -1
- package/docs/static/demos/error-1.jsx +10 -0
- package/docs/static/demos/error-2.jsx +7 -0
- package/docs/static/demos/error-3.jsx +20 -0
- package/docs/static/demos/error-4.jsx +7 -0
- package/docs/static/index.html +8 -4
- package/docs/static/lilact.development.min.js +1 -1
- package/docs/static/lilact.production.min.js +1 -1
- package/docs/variables/pane.ResizablePane.html +48 -0
- package/package.json +5 -2
- package/root/demos/error-1.jsx +10 -0
- package/root/demos/error-2.jsx +7 -0
- package/root/demos/error-3.jsx +20 -0
- package/root/demos/error-4.jsx +7 -0
- package/root/index.html +8 -4
- package/root/lilact.development.min.js +1 -1
- package/root/lilact.production.min.js +1 -1
- package/src/components.jsx +14 -12
- package/src/errors.jsx +231 -0
- package/src/events.jsx +4 -14
- package/src/jsx.js +35 -47
- package/src/lilact.jsx +15 -5
- package/src/misc.jsx +3 -59
- package/src/pane.jsx +52 -9
- package/src/run.jsx +22 -96
- package/typedoc.json +2 -0
- package/docs/functions/run.traceError.html +0 -6
- /package/docs/static/demos/{boundary.jsx → error-boundary.jsx} +0 -0
- /package/root/demos/{boundary.jsx → error-boundary.jsx} +0 -0
package/src/pane.jsx
CHANGED
|
@@ -8,16 +8,59 @@ const clamp = (n, min, max) => {
|
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* A split-pane container with a draggable splitter, supporting both horizontal and vertical layouts.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
|
-
* -
|
|
15
|
-
* -
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
* -
|
|
20
|
-
*
|
|
13
|
+
* The pane can be either:
|
|
14
|
+
* - **Controlled** via the `position` prop (number between `min` and `max`), or
|
|
15
|
+
* - **Uncontrolled** via `defaultPosition` (used as the initial position).
|
|
16
|
+
*
|
|
17
|
+
* Layout behavior:
|
|
18
|
+
* - `mode="horizontal"`: the `position` controls the width of the **left** pane.
|
|
19
|
+
* - `mode="vertical"`: the `position` controls the height of the **top** pane.
|
|
20
|
+
*
|
|
21
|
+
* Ref API:
|
|
22
|
+
* - Exposes imperative methods on `ref.current`:
|
|
23
|
+
* - `getMode()` to get the current mode
|
|
24
|
+
* - `setMode(mode)` to switch between `"horizontal"` and `"vertical"`
|
|
25
|
+
* - `getPosition()` to get the current splitter position
|
|
26
|
+
* - `setPosition(position)` to update the splitter position
|
|
27
|
+
*
|
|
28
|
+
* Events:
|
|
29
|
+
* - Calls `onSizeChange(position)` whenever the pane size/position changes (e.g., via dragging).
|
|
30
|
+
*
|
|
31
|
+
* Rendering:
|
|
32
|
+
* - Renders `children` into two separate containers (no portals).
|
|
33
|
+
*
|
|
34
|
+
* @param mode - Split direction: `"horizontal"` or `"vertical"`. Defaults to `"horizontal"`.
|
|
35
|
+
* @param position - Controlled splitter position. Normalized value within `[min, max]`.
|
|
36
|
+
* If provided, the component uses this value instead of internal state.
|
|
37
|
+
* @param defaultPosition - Initial splitter position for uncontrolled usage. Defaults to `0.5`.
|
|
38
|
+
* @param min - Minimum allowed position. Defaults to `0.1`.
|
|
39
|
+
* @param max - Maximum allowed position. Defaults to `0.9`.
|
|
40
|
+
* @param splitterSize - Thickness of the draggable splitter in pixels. Defaults to `8`.
|
|
41
|
+
* @param onSizeChange - Callback invoked when the position changes. Receives the new normalized position.
|
|
42
|
+
* @param style - Optional root container styles.
|
|
43
|
+
* @param className - Optional root container CSS class.
|
|
44
|
+
* @param leftPaneStyle - Optional styles applied to the left pane (or top pane in vertical mode).
|
|
45
|
+
* @param rightPaneStyle - Optional styles applied to the right pane (or bottom pane in vertical mode).
|
|
46
|
+
* @param splitterStyle - Optional styles applied to the splitter element.
|
|
47
|
+
* @param children - React children to be rendered into the two pane containers.
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* ```tsx
|
|
51
|
+
* const ref = useRef<ResizablePaneHandle>(null);
|
|
52
|
+
*
|
|
53
|
+
* <ResizablePane
|
|
54
|
+
* ref={ref}
|
|
55
|
+
* mode="horizontal"
|
|
56
|
+
* defaultPosition={0.5}
|
|
57
|
+
* min={0.1}
|
|
58
|
+
* max={0.9}
|
|
59
|
+
* onSizeChange={(pos) => console.log(pos)}
|
|
60
|
+
* >
|
|
61
|
+
* <div /> <div />
|
|
62
|
+
* </ResizablePane>
|
|
63
|
+
* ```
|
|
21
64
|
*/
|
|
22
65
|
export const ResizablePane = forwardRef(function ResizablePane(
|
|
23
66
|
{
|
package/src/run.jsx
CHANGED
|
@@ -50,12 +50,19 @@ import Lilact from './lilact.jsx';
|
|
|
50
50
|
*/
|
|
51
51
|
export function run(jsx, path=`<string input ${++Lilact.eval_num}>`, is_inline=true)
|
|
52
52
|
{
|
|
53
|
-
if(Lilact.checkTraceErrors) Lilact.checkTraceErrors;
|
|
54
|
-
|
|
55
53
|
const mappings = [];
|
|
56
|
-
|
|
54
|
+
const module = {};
|
|
57
55
|
let processed;
|
|
58
56
|
|
|
57
|
+
Lilact.required_scripts[path] = {
|
|
58
|
+
mappings,
|
|
59
|
+
module,
|
|
60
|
+
is_inline,
|
|
61
|
+
path,
|
|
62
|
+
code: jsx,
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
|
|
59
66
|
try {
|
|
60
67
|
processed = Lilact.transpileJSX( jsx,
|
|
61
68
|
{
|
|
@@ -63,37 +70,23 @@ export function run(jsx, path=`<string input ${++Lilact.eval_num}>`, is_inline=t
|
|
|
63
70
|
mappings,
|
|
64
71
|
factory: "Lilact.createComponent",
|
|
65
72
|
append_sourcemap: !is_inline,
|
|
66
|
-
|
|
73
|
+
blocks_info: Lilact.blocks_info,
|
|
74
|
+
|
|
75
|
+
injectTraceLabels: true,
|
|
67
76
|
} );
|
|
68
77
|
}
|
|
69
78
|
catch(e) {
|
|
70
|
-
e
|
|
79
|
+
//e = Lilact.traceError(e);
|
|
80
|
+
Lilact.error = e;
|
|
71
81
|
throw e;
|
|
72
82
|
}
|
|
73
83
|
|
|
74
|
-
// the separation of module property is to create the required object even on error
|
|
75
|
-
|
|
76
|
-
const module = {};
|
|
77
|
-
|
|
78
|
-
Lilact.transpilerConfig.required[path] = {
|
|
79
|
-
mappings,
|
|
80
|
-
processed,
|
|
81
|
-
module,
|
|
82
|
-
is_inline,
|
|
83
|
-
path,
|
|
84
|
-
code: jsx
|
|
85
|
-
};
|
|
86
84
|
|
|
85
|
+
ʔ if(DEBUG) {
|
|
86
|
+
Lilact.required_scripts[path].processed = processed;
|
|
87
|
+
ʔ }
|
|
87
88
|
|
|
88
|
-
Lilact.
|
|
89
|
-
|
|
90
|
-
Lilact.transpilerConfig.func_labels[path] = {
|
|
91
|
-
path,
|
|
92
|
-
row: 0,
|
|
93
|
-
col: 0,
|
|
94
|
-
label: "<EXEC>",
|
|
95
|
-
required: Lilact.transpilerConfig.required[path]
|
|
96
|
-
}
|
|
89
|
+
Lilact.scanBlockLabels(processed, path);
|
|
97
90
|
|
|
98
91
|
try {
|
|
99
92
|
globalThis.Lilact = Lilact;
|
|
@@ -103,7 +96,7 @@ export function run(jsx, path=`<string input ${++Lilact.eval_num}>`, is_inline=t
|
|
|
103
96
|
return res;
|
|
104
97
|
}
|
|
105
98
|
catch(e) {
|
|
106
|
-
e
|
|
99
|
+
e = Lilact.traceError(e);
|
|
107
100
|
throw e;
|
|
108
101
|
}
|
|
109
102
|
}
|
|
@@ -220,74 +213,6 @@ export function lazy(factory) {
|
|
|
220
213
|
return LazyComponent;
|
|
221
214
|
}
|
|
222
215
|
|
|
223
|
-
/**
|
|
224
|
-
* Debug tool to get the Lilact traced location of an error. It can also produce some block based stack trace
|
|
225
|
-
* if `Lilact.transpilerConfig.enableLabelStack` is set to `true` before loading the script. This is `false`
|
|
226
|
-
* by default for efficiency.
|
|
227
|
-
*
|
|
228
|
-
* @returns A new object that includes `path`, `row`, `col`, `msg`, `name`, and optional `stack`.
|
|
229
|
-
* The exception itself is stored as `err`.
|
|
230
|
-
*/
|
|
231
|
-
export function traceError(err)
|
|
232
|
-
{
|
|
233
|
-
const loc = Lilact.getErrorLocation(err);
|
|
234
|
-
|
|
235
|
-
const obj = {
|
|
236
|
-
path: err.fileName,
|
|
237
|
-
label: null,
|
|
238
|
-
|
|
239
|
-
row: loc[0],
|
|
240
|
-
col: loc[1],
|
|
241
|
-
|
|
242
|
-
msg: err.message,
|
|
243
|
-
name: err.name,
|
|
244
|
-
|
|
245
|
-
stack: null,
|
|
246
|
-
err: err
|
|
247
|
-
};
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
if(err.lilact_trace!==undefined) {
|
|
251
|
-
|
|
252
|
-
// to be able to trace, we assume that all of the scripts are running inside lilact.
|
|
253
|
-
// if not, the error is returned unchanged and stack and label would remain null.
|
|
254
|
-
|
|
255
|
-
let mps;
|
|
256
|
-
let blk;
|
|
257
|
-
if(typeof(err.lilact_trace)==='string') {
|
|
258
|
-
blk = Lilact.func_labels[err.lilact_trace];
|
|
259
|
-
mps = blk.required.mappings;
|
|
260
|
-
}
|
|
261
|
-
else if(typeof(err.lilact_trace)==='object') {
|
|
262
|
-
blk = Lilact.func_labels[err.lilact_trace[0]];
|
|
263
|
-
mps = blk.mappings;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
obj.path = blk.path;
|
|
267
|
-
obj.label = blk.label;
|
|
268
|
-
|
|
269
|
-
[obj.row, obj.col] = Lilact.mapLocation(mps, obj.row,obj.col);
|
|
270
|
-
|
|
271
|
-
//const rm = Lilact.func_labels[func_num].required;
|
|
272
|
-
|
|
273
|
-
// Lilact.onError( err.message,
|
|
274
|
-
// rm.path,
|
|
275
|
-
// Lilact.func_labels[func_num].label,
|
|
276
|
-
// ...Lilact.mapLocation(...loc,mps),
|
|
277
|
-
// Lilact.call_stack.map(
|
|
278
|
-
// (x)=>({ path: Lilact.func_labels[x].path,
|
|
279
|
-
// label: Lilact.func_labels[x].label,
|
|
280
|
-
// row: Lilact.func_labels[x].row
|
|
281
|
-
// })
|
|
282
|
-
// ), err );
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
return obj;
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
|
|
291
216
|
function scanScriptTagsWithType() {
|
|
292
217
|
const scripts = Array.from(
|
|
293
218
|
document.querySelectorAll('script[type="text/jsx"]')
|
|
@@ -320,4 +245,5 @@ export function runScripts()
|
|
|
320
245
|
if(s.src) Lilact.require(s.src);
|
|
321
246
|
if(s.content) Lilact.run(s.content);
|
|
322
247
|
}
|
|
323
|
-
}
|
|
248
|
+
}
|
|
249
|
+
|
package/typedoc.json
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>traceError | Lilact</title><meta name="description" content="Documentation for Lilact"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">Lilact</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/run.html">run</a></li><li><a href="" aria-current="page">traceError</a></li></ul><h1>Function traceError</h1></div><section class="tsd-panel"><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="traceerror"><span class="tsd-kind-call-signature">traceError</span><span class="tsd-signature-symbol">(</span><br/> <span class="tsd-kind-parameter">err</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span><br/> <span class="tsd-kind-property">col</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">err</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">label</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">msg</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">path</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">row</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">stack</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span><a href="#traceerror" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Debug tool to get the Lilact traced location of an error. It can also produce some block based stack trace
|
|
2
|
-
if <code>Lilact.transpilerConfig.enableLabelStack</code> is set to <code>true</code> before loading the script. This is <code>false</code>
|
|
3
|
-
by default for efficiency.</p>
|
|
4
|
-
</div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">err</span>: <span class="tsd-signature-type">any</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{</span><br/> <span class="tsd-kind-property">col</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">err</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">label</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">msg</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">path</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">row</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">stack</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></h4><p>A new object that includes <code>path</code>, <code>row</code>, <code>col</code>, <code>msg</code>, <code>name</code>, and optional <code>stack</code>.
|
|
5
|
-
The exception itself is stored as <code>err</code>.</p>
|
|
6
|
-
<aside class="tsd-sources"><ul><li>Defined in run.js:231</li></ul></aside></div></li></ul></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">Lilact</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
File without changes
|
|
File without changes
|