elit 3.0.1 → 3.0.3
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/build.d.ts +4 -12
- package/dist/build.d.ts.map +1 -0
- package/dist/chokidar.d.ts +7 -9
- package/dist/chokidar.d.ts.map +1 -0
- package/dist/cli.d.ts +6 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +250 -21
- package/dist/config.d.ts +29 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/dom.d.ts +7 -14
- package/dist/dom.d.ts.map +1 -0
- package/dist/el.d.ts +19 -191
- package/dist/el.d.ts.map +1 -0
- package/dist/fs.d.ts +35 -35
- package/dist/fs.d.ts.map +1 -0
- package/dist/hmr.d.ts +3 -3
- package/dist/hmr.d.ts.map +1 -0
- package/dist/http.d.ts +20 -22
- package/dist/http.d.ts.map +1 -0
- package/dist/https.d.ts +12 -15
- package/dist/https.d.ts.map +1 -0
- package/dist/index.d.ts +10 -629
- package/dist/index.d.ts.map +1 -0
- package/dist/mime-types.d.ts +9 -9
- package/dist/mime-types.d.ts.map +1 -0
- package/dist/path.d.ts +22 -19
- package/dist/path.d.ts.map +1 -0
- package/dist/router.d.ts +10 -17
- package/dist/router.d.ts.map +1 -0
- package/dist/runtime.d.ts +5 -6
- package/dist/runtime.d.ts.map +1 -0
- package/dist/server.d.ts +109 -7
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +712 -137
- package/dist/server.mjs +711 -137
- package/dist/state.d.ts +21 -27
- package/dist/state.d.ts.map +1 -0
- package/dist/style.d.ts +14 -55
- package/dist/style.d.ts.map +1 -0
- package/dist/types.d.ts +26 -240
- package/dist/types.d.ts.map +1 -0
- package/dist/ws.d.ts +14 -17
- package/dist/ws.d.ts.map +1 -0
- package/dist/wss.d.ts +16 -16
- package/dist/wss.d.ts.map +1 -0
- package/package.json +3 -2
- package/src/build.ts +337 -0
- package/src/chokidar.ts +401 -0
- package/src/cli.ts +638 -0
- package/src/config.ts +205 -0
- package/src/dom.ts +817 -0
- package/src/el.ts +164 -0
- package/src/fs.ts +727 -0
- package/src/hmr.ts +137 -0
- package/src/http.ts +775 -0
- package/src/https.ts +411 -0
- package/src/index.ts +14 -0
- package/src/mime-types.ts +222 -0
- package/src/path.ts +493 -0
- package/src/router.ts +237 -0
- package/src/runtime.ts +97 -0
- package/src/server.ts +1593 -0
- package/src/state.ts +468 -0
- package/src/style.ts +524 -0
- package/{dist/types-Du6kfwTm.d.ts → src/types.ts} +58 -141
- package/src/ws.ts +506 -0
- package/src/wss.ts +241 -0
- package/dist/build.d.mts +0 -20
- package/dist/chokidar.d.mts +0 -134
- package/dist/dom.d.mts +0 -87
- package/dist/el.d.mts +0 -207
- package/dist/fs.d.mts +0 -255
- package/dist/hmr.d.mts +0 -38
- package/dist/http.d.mts +0 -163
- package/dist/https.d.mts +0 -108
- package/dist/index.d.mts +0 -629
- package/dist/mime-types.d.mts +0 -48
- package/dist/path.d.mts +0 -163
- package/dist/router.d.mts +0 -47
- package/dist/runtime.d.mts +0 -97
- package/dist/server.d.mts +0 -7
- package/dist/state.d.mts +0 -111
- package/dist/style.d.mts +0 -159
- package/dist/types-C0nGi6MX.d.mts +0 -346
- package/dist/types.d.mts +0 -452
- package/dist/ws.d.mts +0 -195
- package/dist/wss.d.mts +0 -108
package/dist/el.d.ts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
import { ElementFactory } from './types.js';
|
|
2
|
-
import 'node:events';
|
|
3
|
-
import 'events';
|
|
4
|
-
import 'http';
|
|
5
|
-
import 'ws';
|
|
6
|
-
|
|
7
1
|
/**
|
|
8
2
|
* Elit - Element Factories
|
|
9
3
|
*/
|
|
10
|
-
|
|
11
|
-
declare const createElementFactory: (tag: string) => ElementFactory;
|
|
4
|
+
import type { ElementFactory } from './types';
|
|
5
|
+
export declare const createElementFactory: (tag: string) => ElementFactory;
|
|
12
6
|
declare const tags: readonly ["html", "head", "body", "title", "base", "link", "meta", "style", "address", "article", "aside", "footer", "header", "h1", "h2", "h3", "h4", "h5", "h6", "main", "nav", "section", "blockquote", "dd", "div", "dl", "dt", "figcaption", "figure", "hr", "li", "ol", "p", "pre", "ul", "a", "abbr", "b", "bdi", "bdo", "br", "cite", "code", "data", "dfn", "em", "i", "kbd", "mark", "q", "rp", "rt", "ruby", "s", "samp", "small", "span", "strong", "sub", "sup", "time", "u", "wbr", "area", "audio", "img", "map", "track", "video", "embed", "iframe", "object", "param", "picture", "portal", "source", "canvas", "noscript", "script", "del", "ins", "caption", "col", "colgroup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "button", "datalist", "fieldset", "form", "input", "label", "legend", "meter", "optgroup", "option", "output", "progress", "select", "textarea", "details", "dialog", "menu", "summary", "slot", "template"];
|
|
13
7
|
declare const svgTags: readonly ["svg", "circle", "rect", "path", "line", "polyline", "polygon", "ellipse", "g", "text", "tspan", "defs", "linearGradient", "radialGradient", "stop", "pattern", "mask", "clipPath", "use", "symbol", "marker", "image", "foreignObject", "animate", "animateTransform", "animateMotion", "set", "filter", "feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feFlood", "feGaussianBlur", "feMorphology", "feOffset", "feSpecularLighting", "feTile", "feTurbulence"];
|
|
14
8
|
declare const mathTags: readonly ["math", "mi", "mn", "mo", "ms", "mtext", "mrow", "mfrac", "msqrt", "mroot", "msub", "msup"];
|
|
@@ -22,186 +16,20 @@ type Elements = {
|
|
|
22
16
|
varElement: ElementFactory;
|
|
23
17
|
};
|
|
24
18
|
declare const elements: Partial<Elements>;
|
|
25
|
-
declare const html: ElementFactory;
|
|
26
|
-
declare const
|
|
27
|
-
|
|
28
|
-
declare const
|
|
29
|
-
declare const
|
|
30
|
-
declare const
|
|
31
|
-
declare const
|
|
32
|
-
declare const
|
|
33
|
-
declare const
|
|
34
|
-
declare const
|
|
35
|
-
declare const
|
|
36
|
-
declare const
|
|
37
|
-
declare const
|
|
38
|
-
declare const
|
|
39
|
-
declare const
|
|
40
|
-
declare const
|
|
41
|
-
|
|
42
|
-
declare const h5: ElementFactory;
|
|
43
|
-
declare const h6: ElementFactory;
|
|
44
|
-
declare const main: ElementFactory;
|
|
45
|
-
declare const nav: ElementFactory;
|
|
46
|
-
declare const section: ElementFactory;
|
|
47
|
-
declare const blockquote: ElementFactory;
|
|
48
|
-
declare const dd: ElementFactory;
|
|
49
|
-
declare const div: ElementFactory;
|
|
50
|
-
declare const dl: ElementFactory;
|
|
51
|
-
declare const dt: ElementFactory;
|
|
52
|
-
declare const figcaption: ElementFactory;
|
|
53
|
-
declare const figure: ElementFactory;
|
|
54
|
-
declare const hr: ElementFactory;
|
|
55
|
-
declare const li: ElementFactory;
|
|
56
|
-
declare const ol: ElementFactory;
|
|
57
|
-
declare const p: ElementFactory;
|
|
58
|
-
declare const pre: ElementFactory;
|
|
59
|
-
declare const ul: ElementFactory;
|
|
60
|
-
declare const a: ElementFactory;
|
|
61
|
-
declare const abbr: ElementFactory;
|
|
62
|
-
declare const b: ElementFactory;
|
|
63
|
-
declare const bdi: ElementFactory;
|
|
64
|
-
declare const bdo: ElementFactory;
|
|
65
|
-
declare const br: ElementFactory;
|
|
66
|
-
declare const cite: ElementFactory;
|
|
67
|
-
declare const code: ElementFactory;
|
|
68
|
-
declare const data: ElementFactory;
|
|
69
|
-
declare const dfn: ElementFactory;
|
|
70
|
-
declare const em: ElementFactory;
|
|
71
|
-
declare const i: ElementFactory;
|
|
72
|
-
declare const kbd: ElementFactory;
|
|
73
|
-
declare const mark: ElementFactory;
|
|
74
|
-
declare const q: ElementFactory;
|
|
75
|
-
declare const rp: ElementFactory;
|
|
76
|
-
declare const rt: ElementFactory;
|
|
77
|
-
declare const ruby: ElementFactory;
|
|
78
|
-
declare const s: ElementFactory;
|
|
79
|
-
declare const samp: ElementFactory;
|
|
80
|
-
declare const small: ElementFactory;
|
|
81
|
-
declare const span: ElementFactory;
|
|
82
|
-
declare const strong: ElementFactory;
|
|
83
|
-
declare const sub: ElementFactory;
|
|
84
|
-
declare const sup: ElementFactory;
|
|
85
|
-
declare const time: ElementFactory;
|
|
86
|
-
declare const u: ElementFactory;
|
|
87
|
-
declare const wbr: ElementFactory;
|
|
88
|
-
declare const area: ElementFactory;
|
|
89
|
-
declare const audio: ElementFactory;
|
|
90
|
-
declare const img: ElementFactory;
|
|
91
|
-
declare const map: ElementFactory;
|
|
92
|
-
declare const track: ElementFactory;
|
|
93
|
-
declare const video: ElementFactory;
|
|
94
|
-
declare const embed: ElementFactory;
|
|
95
|
-
declare const iframe: ElementFactory;
|
|
96
|
-
declare const object: ElementFactory;
|
|
97
|
-
declare const param: ElementFactory;
|
|
98
|
-
declare const picture: ElementFactory;
|
|
99
|
-
declare const portal: ElementFactory;
|
|
100
|
-
declare const source: ElementFactory;
|
|
101
|
-
declare const canvas: ElementFactory;
|
|
102
|
-
declare const noscript: ElementFactory;
|
|
103
|
-
declare const script: ElementFactory;
|
|
104
|
-
declare const del: ElementFactory;
|
|
105
|
-
declare const ins: ElementFactory;
|
|
106
|
-
declare const caption: ElementFactory;
|
|
107
|
-
declare const col: ElementFactory;
|
|
108
|
-
declare const colgroup: ElementFactory;
|
|
109
|
-
declare const table: ElementFactory;
|
|
110
|
-
declare const tbody: ElementFactory;
|
|
111
|
-
declare const td: ElementFactory;
|
|
112
|
-
declare const tfoot: ElementFactory;
|
|
113
|
-
declare const th: ElementFactory;
|
|
114
|
-
declare const thead: ElementFactory;
|
|
115
|
-
declare const tr: ElementFactory;
|
|
116
|
-
declare const button: ElementFactory;
|
|
117
|
-
declare const datalist: ElementFactory;
|
|
118
|
-
declare const fieldset: ElementFactory;
|
|
119
|
-
declare const form: ElementFactory;
|
|
120
|
-
declare const input: ElementFactory;
|
|
121
|
-
declare const label: ElementFactory;
|
|
122
|
-
declare const legend: ElementFactory;
|
|
123
|
-
declare const meter: ElementFactory;
|
|
124
|
-
declare const optgroup: ElementFactory;
|
|
125
|
-
declare const option: ElementFactory;
|
|
126
|
-
declare const output: ElementFactory;
|
|
127
|
-
declare const progress: ElementFactory;
|
|
128
|
-
declare const select: ElementFactory;
|
|
129
|
-
declare const textarea: ElementFactory;
|
|
130
|
-
declare const details: ElementFactory;
|
|
131
|
-
declare const dialog: ElementFactory;
|
|
132
|
-
declare const menu: ElementFactory;
|
|
133
|
-
declare const summary: ElementFactory;
|
|
134
|
-
declare const slot: ElementFactory;
|
|
135
|
-
declare const template: ElementFactory;
|
|
136
|
-
declare const svgSvg: ElementFactory;
|
|
137
|
-
declare const svgCircle: ElementFactory;
|
|
138
|
-
declare const svgRect: ElementFactory;
|
|
139
|
-
declare const svgPath: ElementFactory;
|
|
140
|
-
declare const svgLine: ElementFactory;
|
|
141
|
-
declare const svgPolyline: ElementFactory;
|
|
142
|
-
declare const svgPolygon: ElementFactory;
|
|
143
|
-
declare const svgEllipse: ElementFactory;
|
|
144
|
-
declare const svgG: ElementFactory;
|
|
145
|
-
declare const svgText: ElementFactory;
|
|
146
|
-
declare const svgTspan: ElementFactory;
|
|
147
|
-
declare const svgDefs: ElementFactory;
|
|
148
|
-
declare const svgLinearGradient: ElementFactory;
|
|
149
|
-
declare const svgRadialGradient: ElementFactory;
|
|
150
|
-
declare const svgStop: ElementFactory;
|
|
151
|
-
declare const svgPattern: ElementFactory;
|
|
152
|
-
declare const svgMask: ElementFactory;
|
|
153
|
-
declare const svgClipPath: ElementFactory;
|
|
154
|
-
declare const svgUse: ElementFactory;
|
|
155
|
-
declare const svgSymbol: ElementFactory;
|
|
156
|
-
declare const svgMarker: ElementFactory;
|
|
157
|
-
declare const svgImage: ElementFactory;
|
|
158
|
-
declare const svgForeignObject: ElementFactory;
|
|
159
|
-
declare const svgAnimate: ElementFactory;
|
|
160
|
-
declare const svgAnimateTransform: ElementFactory;
|
|
161
|
-
declare const svgAnimateMotion: ElementFactory;
|
|
162
|
-
declare const svgSet: ElementFactory;
|
|
163
|
-
declare const svgFilter: ElementFactory;
|
|
164
|
-
declare const svgFeBlend: ElementFactory;
|
|
165
|
-
declare const svgFeColorMatrix: ElementFactory;
|
|
166
|
-
declare const svgFeComponentTransfer: ElementFactory;
|
|
167
|
-
declare const svgFeComposite: ElementFactory;
|
|
168
|
-
declare const svgFeConvolveMatrix: ElementFactory;
|
|
169
|
-
declare const svgFeDiffuseLighting: ElementFactory;
|
|
170
|
-
declare const svgFeDisplacementMap: ElementFactory;
|
|
171
|
-
declare const svgFeFlood: ElementFactory;
|
|
172
|
-
declare const svgFeGaussianBlur: ElementFactory;
|
|
173
|
-
declare const svgFeMorphology: ElementFactory;
|
|
174
|
-
declare const svgFeOffset: ElementFactory;
|
|
175
|
-
declare const svgFeSpecularLighting: ElementFactory;
|
|
176
|
-
declare const svgFeTile: ElementFactory;
|
|
177
|
-
declare const svgFeTurbulence: ElementFactory;
|
|
178
|
-
declare const mathMath: ElementFactory;
|
|
179
|
-
declare const mathMi: ElementFactory;
|
|
180
|
-
declare const mathMn: ElementFactory;
|
|
181
|
-
declare const mathMo: ElementFactory;
|
|
182
|
-
declare const mathMs: ElementFactory;
|
|
183
|
-
declare const mathMtext: ElementFactory;
|
|
184
|
-
declare const mathMrow: ElementFactory;
|
|
185
|
-
declare const mathMfrac: ElementFactory;
|
|
186
|
-
declare const mathMsqrt: ElementFactory;
|
|
187
|
-
declare const mathMroot: ElementFactory;
|
|
188
|
-
declare const mathMsub: ElementFactory;
|
|
189
|
-
declare const mathMsup: ElementFactory;
|
|
190
|
-
declare const varElement: ElementFactory;
|
|
191
|
-
declare const el: Partial<Elements>;
|
|
192
|
-
|
|
193
|
-
declare const doc: any;
|
|
194
|
-
declare const getEl: any;
|
|
195
|
-
declare const getEls: any;
|
|
196
|
-
declare const createEl: any;
|
|
197
|
-
declare const createSvgEl: any;
|
|
198
|
-
declare const createMathEl: any;
|
|
199
|
-
declare const fragment: any;
|
|
200
|
-
declare const textNode: any;
|
|
201
|
-
declare const commentNode: any;
|
|
202
|
-
declare const getElId: any;
|
|
203
|
-
declare const getElClass: any;
|
|
204
|
-
declare const getElTag: any;
|
|
205
|
-
declare const getElName: any;
|
|
206
|
-
|
|
207
|
-
export { a, abbr, address, area, article, aside, audio, b, base, bdi, bdo, blockquote, body, br, button, canvas, caption, cite, code, col, colgroup, commentNode, createEl, createElementFactory, createMathEl, createSvgEl, data, datalist, dd, del, details, dfn, dialog, div, dl, doc, dt, el, elements, em, embed, fieldset, figcaption, figure, footer, form, fragment, getEl, getElClass, getElId, getElName, getElTag, getEls, h1, h2, h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, kbd, label, legend, li, link, main, map, mark, mathMath, mathMfrac, mathMi, mathMn, mathMo, mathMroot, mathMrow, mathMs, mathMsqrt, mathMsub, mathMsup, mathMtext, menu, meta, meter, nav, noscript, object, ol, optgroup, option, output, p, param, picture, portal, pre, progress, q, rp, rt, ruby, s, samp, script, section, select, slot, small, source, span, strong, style, sub, summary, sup, svgAnimate, svgAnimateMotion, svgAnimateTransform, svgCircle, svgClipPath, svgDefs, svgEllipse, svgFeBlend, svgFeColorMatrix, svgFeComponentTransfer, svgFeComposite, svgFeConvolveMatrix, svgFeDiffuseLighting, svgFeDisplacementMap, svgFeFlood, svgFeGaussianBlur, svgFeMorphology, svgFeOffset, svgFeSpecularLighting, svgFeTile, svgFeTurbulence, svgFilter, svgForeignObject, svgG, svgImage, svgLine, svgLinearGradient, svgMarker, svgMask, svgPath, svgPattern, svgPolygon, svgPolyline, svgRadialGradient, svgRect, svgSet, svgStop, svgSvg, svgSymbol, svgText, svgTspan, svgUse, table, tbody, td, template, textNode, textarea, tfoot, th, thead, time, title, tr, track, u, ul, varElement, video, wbr };
|
|
19
|
+
export declare const html: ElementFactory, head: ElementFactory, body: ElementFactory, title: ElementFactory, base: ElementFactory, link: ElementFactory, meta: ElementFactory, style: ElementFactory, address: ElementFactory, article: ElementFactory, aside: ElementFactory, footer: ElementFactory, header: ElementFactory, h1: ElementFactory, h2: ElementFactory, h3: ElementFactory, h4: ElementFactory, h5: ElementFactory, h6: ElementFactory, main: ElementFactory, nav: ElementFactory, section: ElementFactory, blockquote: ElementFactory, dd: ElementFactory, div: ElementFactory, dl: ElementFactory, dt: ElementFactory, figcaption: ElementFactory, figure: ElementFactory, hr: ElementFactory, li: ElementFactory, ol: ElementFactory, p: ElementFactory, pre: ElementFactory, ul: ElementFactory, a: ElementFactory, abbr: ElementFactory, b: ElementFactory, bdi: ElementFactory, bdo: ElementFactory, br: ElementFactory, cite: ElementFactory, code: ElementFactory, data: ElementFactory, dfn: ElementFactory, em: ElementFactory, i: ElementFactory, kbd: ElementFactory, mark: ElementFactory, q: ElementFactory, rp: ElementFactory, rt: ElementFactory, ruby: ElementFactory, s: ElementFactory, samp: ElementFactory, small: ElementFactory, span: ElementFactory, strong: ElementFactory, sub: ElementFactory, sup: ElementFactory, time: ElementFactory, u: ElementFactory, wbr: ElementFactory, area: ElementFactory, audio: ElementFactory, img: ElementFactory, map: ElementFactory, track: ElementFactory, video: ElementFactory, embed: ElementFactory, iframe: ElementFactory, object: ElementFactory, param: ElementFactory, picture: ElementFactory, portal: ElementFactory, source: ElementFactory, canvas: ElementFactory, noscript: ElementFactory, script: ElementFactory, del: ElementFactory, ins: ElementFactory, caption: ElementFactory, col: ElementFactory, colgroup: ElementFactory, table: ElementFactory, tbody: ElementFactory, td: ElementFactory, tfoot: ElementFactory, th: ElementFactory, thead: ElementFactory, tr: ElementFactory, button: ElementFactory, datalist: ElementFactory, fieldset: ElementFactory, form: ElementFactory, input: ElementFactory, label: ElementFactory, legend: ElementFactory, meter: ElementFactory, optgroup: ElementFactory, option: ElementFactory, output: ElementFactory, progress: ElementFactory, select: ElementFactory, textarea: ElementFactory, details: ElementFactory, dialog: ElementFactory, menu: ElementFactory, summary: ElementFactory, slot: ElementFactory, template: ElementFactory, svgSvg: ElementFactory, svgCircle: ElementFactory, svgRect: ElementFactory, svgPath: ElementFactory, svgLine: ElementFactory, svgPolyline: ElementFactory, svgPolygon: ElementFactory, svgEllipse: ElementFactory, svgG: ElementFactory, svgText: ElementFactory, svgTspan: ElementFactory, svgDefs: ElementFactory, svgLinearGradient: ElementFactory, svgRadialGradient: ElementFactory, svgStop: ElementFactory, svgPattern: ElementFactory, svgMask: ElementFactory, svgClipPath: ElementFactory, svgUse: ElementFactory, svgSymbol: ElementFactory, svgMarker: ElementFactory, svgImage: ElementFactory, svgForeignObject: ElementFactory, svgAnimate: ElementFactory, svgAnimateTransform: ElementFactory, svgAnimateMotion: ElementFactory, svgSet: ElementFactory, svgFilter: ElementFactory, svgFeBlend: ElementFactory, svgFeColorMatrix: ElementFactory, svgFeComponentTransfer: ElementFactory, svgFeComposite: ElementFactory, svgFeConvolveMatrix: ElementFactory, svgFeDiffuseLighting: ElementFactory, svgFeDisplacementMap: ElementFactory, svgFeFlood: ElementFactory, svgFeGaussianBlur: ElementFactory, svgFeMorphology: ElementFactory, svgFeOffset: ElementFactory, svgFeSpecularLighting: ElementFactory, svgFeTile: ElementFactory, svgFeTurbulence: ElementFactory, mathMath: ElementFactory, mathMi: ElementFactory, mathMn: ElementFactory, mathMo: ElementFactory, mathMs: ElementFactory, mathMtext: ElementFactory, mathMrow: ElementFactory, mathMfrac: ElementFactory, mathMsqrt: ElementFactory, mathMroot: ElementFactory, mathMsub: ElementFactory, mathMsup: ElementFactory, varElement: ElementFactory;
|
|
20
|
+
export declare const el: Partial<Elements>;
|
|
21
|
+
export { elements };
|
|
22
|
+
export declare const doc: any;
|
|
23
|
+
export declare const getEl: any;
|
|
24
|
+
export declare const getEls: any;
|
|
25
|
+
export declare const createEl: any;
|
|
26
|
+
export declare const createSvgEl: any;
|
|
27
|
+
export declare const createMathEl: any;
|
|
28
|
+
export declare const fragment: any;
|
|
29
|
+
export declare const textNode: any;
|
|
30
|
+
export declare const commentNode: any;
|
|
31
|
+
export declare const getElId: any;
|
|
32
|
+
export declare const getElClass: any;
|
|
33
|
+
export declare const getElTag: any;
|
|
34
|
+
export declare const getElName: any;
|
|
35
|
+
//# sourceMappingURL=el.d.ts.map
|
package/dist/el.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"el.d.ts","sourceRoot":"","sources":["../src/el.ts"],"names":[],"mappings":"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"}
|
package/dist/fs.d.ts
CHANGED
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
/**
|
|
9
9
|
* File encoding types
|
|
10
10
|
*/
|
|
11
|
-
type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex';
|
|
11
|
+
export type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex';
|
|
12
12
|
/**
|
|
13
13
|
* Read file options
|
|
14
14
|
*/
|
|
15
|
-
interface ReadFileOptions {
|
|
15
|
+
export interface ReadFileOptions {
|
|
16
16
|
encoding?: BufferEncoding | null;
|
|
17
17
|
flag?: string;
|
|
18
18
|
signal?: AbortSignal;
|
|
@@ -20,7 +20,7 @@ interface ReadFileOptions {
|
|
|
20
20
|
/**
|
|
21
21
|
* Write file options
|
|
22
22
|
*/
|
|
23
|
-
interface WriteFileOptions {
|
|
23
|
+
export interface WriteFileOptions {
|
|
24
24
|
encoding?: BufferEncoding | null;
|
|
25
25
|
mode?: number;
|
|
26
26
|
flag?: string;
|
|
@@ -29,14 +29,14 @@ interface WriteFileOptions {
|
|
|
29
29
|
/**
|
|
30
30
|
* Mkdir options
|
|
31
31
|
*/
|
|
32
|
-
interface MkdirOptions {
|
|
32
|
+
export interface MkdirOptions {
|
|
33
33
|
recursive?: boolean;
|
|
34
34
|
mode?: number;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* Readdir options
|
|
38
38
|
*/
|
|
39
|
-
interface ReaddirOptions {
|
|
39
|
+
export interface ReaddirOptions {
|
|
40
40
|
encoding?: BufferEncoding | null;
|
|
41
41
|
withFileTypes?: boolean;
|
|
42
42
|
recursive?: boolean;
|
|
@@ -44,7 +44,7 @@ interface ReaddirOptions {
|
|
|
44
44
|
/**
|
|
45
45
|
* File stats
|
|
46
46
|
*/
|
|
47
|
-
interface Stats {
|
|
47
|
+
export interface Stats {
|
|
48
48
|
isFile(): boolean;
|
|
49
49
|
isDirectory(): boolean;
|
|
50
50
|
isBlockDevice(): boolean;
|
|
@@ -74,7 +74,7 @@ interface Stats {
|
|
|
74
74
|
/**
|
|
75
75
|
* Directory entry
|
|
76
76
|
*/
|
|
77
|
-
interface Dirent {
|
|
77
|
+
export interface Dirent {
|
|
78
78
|
name: string;
|
|
79
79
|
isFile(): boolean;
|
|
80
80
|
isDirectory(): boolean;
|
|
@@ -87,115 +87,115 @@ interface Dirent {
|
|
|
87
87
|
/**
|
|
88
88
|
* Read file (async)
|
|
89
89
|
*/
|
|
90
|
-
declare function readFile(path: string, options?: ReadFileOptions | BufferEncoding): Promise<string | Buffer>;
|
|
90
|
+
export declare function readFile(path: string, options?: ReadFileOptions | BufferEncoding): Promise<string | Buffer>;
|
|
91
91
|
/**
|
|
92
92
|
* Read file (sync)
|
|
93
93
|
*/
|
|
94
|
-
declare function readFileSync(path: string, options?: ReadFileOptions | BufferEncoding): string | Buffer;
|
|
94
|
+
export declare function readFileSync(path: string, options?: ReadFileOptions | BufferEncoding): string | Buffer;
|
|
95
95
|
/**
|
|
96
96
|
* Write file (async)
|
|
97
97
|
*/
|
|
98
|
-
declare function writeFile(path: string, data: string | Buffer | Uint8Array, options?: WriteFileOptions | BufferEncoding): Promise<void>;
|
|
98
|
+
export declare function writeFile(path: string, data: string | Buffer | Uint8Array, options?: WriteFileOptions | BufferEncoding): Promise<void>;
|
|
99
99
|
/**
|
|
100
100
|
* Write file (sync)
|
|
101
101
|
*/
|
|
102
|
-
declare function writeFileSync(path: string, data: string | Buffer | Uint8Array, options?: WriteFileOptions | BufferEncoding): void;
|
|
102
|
+
export declare function writeFileSync(path: string, data: string | Buffer | Uint8Array, options?: WriteFileOptions | BufferEncoding): void;
|
|
103
103
|
/**
|
|
104
104
|
* Append file (async)
|
|
105
105
|
*/
|
|
106
|
-
declare function appendFile(path: string, data: string | Buffer, options?: WriteFileOptions | BufferEncoding): Promise<void>;
|
|
106
|
+
export declare function appendFile(path: string, data: string | Buffer, options?: WriteFileOptions | BufferEncoding): Promise<void>;
|
|
107
107
|
/**
|
|
108
108
|
* Append file (sync)
|
|
109
109
|
*/
|
|
110
|
-
declare function appendFileSync(path: string, data: string | Buffer, options?: WriteFileOptions | BufferEncoding): void;
|
|
110
|
+
export declare function appendFileSync(path: string, data: string | Buffer, options?: WriteFileOptions | BufferEncoding): void;
|
|
111
111
|
/**
|
|
112
112
|
* Check if file/directory exists (async)
|
|
113
113
|
*/
|
|
114
|
-
declare function exists(path: string): Promise<boolean>;
|
|
114
|
+
export declare function exists(path: string): Promise<boolean>;
|
|
115
115
|
/**
|
|
116
116
|
* Check if file/directory exists (sync)
|
|
117
117
|
*/
|
|
118
|
-
declare function existsSync(path: string): boolean;
|
|
118
|
+
export declare function existsSync(path: string): boolean;
|
|
119
119
|
/**
|
|
120
120
|
* Get file stats (async)
|
|
121
121
|
*/
|
|
122
|
-
declare function stat(path: string): Promise<Stats>;
|
|
122
|
+
export declare function stat(path: string): Promise<Stats>;
|
|
123
123
|
/**
|
|
124
124
|
* Get file stats (sync)
|
|
125
125
|
*/
|
|
126
|
-
declare function statSync(path: string): Stats;
|
|
126
|
+
export declare function statSync(path: string): Stats;
|
|
127
127
|
/**
|
|
128
128
|
* Create directory (async)
|
|
129
129
|
*/
|
|
130
|
-
declare function mkdir(path: string, options?: MkdirOptions | number): Promise<void>;
|
|
130
|
+
export declare function mkdir(path: string, options?: MkdirOptions | number): Promise<void>;
|
|
131
131
|
/**
|
|
132
132
|
* Create directory (sync)
|
|
133
133
|
*/
|
|
134
|
-
declare function mkdirSync(path: string, options?: MkdirOptions | number): void;
|
|
134
|
+
export declare function mkdirSync(path: string, options?: MkdirOptions | number): void;
|
|
135
135
|
/**
|
|
136
136
|
* Read directory (async)
|
|
137
137
|
*/
|
|
138
|
-
declare function readdir(path: string, options?: ReaddirOptions | BufferEncoding): Promise<string[] | Dirent[]>;
|
|
138
|
+
export declare function readdir(path: string, options?: ReaddirOptions | BufferEncoding): Promise<string[] | Dirent[]>;
|
|
139
139
|
/**
|
|
140
140
|
* Read directory (sync)
|
|
141
141
|
*/
|
|
142
|
-
declare function readdirSync(path: string, options?: ReaddirOptions | BufferEncoding): string[] | Dirent[];
|
|
142
|
+
export declare function readdirSync(path: string, options?: ReaddirOptions | BufferEncoding): string[] | Dirent[];
|
|
143
143
|
/**
|
|
144
144
|
* Remove file (async)
|
|
145
145
|
*/
|
|
146
|
-
declare function unlink(path: string): Promise<void>;
|
|
146
|
+
export declare function unlink(path: string): Promise<void>;
|
|
147
147
|
/**
|
|
148
148
|
* Remove file (sync)
|
|
149
149
|
*/
|
|
150
|
-
declare function unlinkSync(path: string): void;
|
|
150
|
+
export declare function unlinkSync(path: string): void;
|
|
151
151
|
/**
|
|
152
152
|
* Remove directory (async)
|
|
153
153
|
*/
|
|
154
|
-
declare function rmdir(path: string, options?: {
|
|
154
|
+
export declare function rmdir(path: string, options?: {
|
|
155
155
|
recursive?: boolean;
|
|
156
156
|
}): Promise<void>;
|
|
157
157
|
/**
|
|
158
158
|
* Remove directory (sync)
|
|
159
159
|
*/
|
|
160
|
-
declare function rmdirSync(path: string, options?: {
|
|
160
|
+
export declare function rmdirSync(path: string, options?: {
|
|
161
161
|
recursive?: boolean;
|
|
162
162
|
}): void;
|
|
163
163
|
/**
|
|
164
164
|
* Rename/move file (async)
|
|
165
165
|
*/
|
|
166
|
-
declare function rename(oldPath: string, newPath: string): Promise<void>;
|
|
166
|
+
export declare function rename(oldPath: string, newPath: string): Promise<void>;
|
|
167
167
|
/**
|
|
168
168
|
* Rename/move file (sync)
|
|
169
169
|
*/
|
|
170
|
-
declare function renameSync(oldPath: string, newPath: string): void;
|
|
170
|
+
export declare function renameSync(oldPath: string, newPath: string): void;
|
|
171
171
|
/**
|
|
172
172
|
* Copy file (async)
|
|
173
173
|
*/
|
|
174
|
-
declare function copyFile(src: string, dest: string, flags?: number): Promise<void>;
|
|
174
|
+
export declare function copyFile(src: string, dest: string, flags?: number): Promise<void>;
|
|
175
175
|
/**
|
|
176
176
|
* Copy file (sync)
|
|
177
177
|
*/
|
|
178
|
-
declare function copyFileSync(src: string, dest: string, flags?: number): void;
|
|
178
|
+
export declare function copyFileSync(src: string, dest: string, flags?: number): void;
|
|
179
179
|
/**
|
|
180
180
|
* Resolve pathname to absolute path (async)
|
|
181
181
|
*/
|
|
182
|
-
declare function realpath(path: string, options?: {
|
|
182
|
+
export declare function realpath(path: string, options?: {
|
|
183
183
|
encoding?: BufferEncoding;
|
|
184
184
|
}): Promise<string>;
|
|
185
185
|
/**
|
|
186
186
|
* Resolve pathname to absolute path (sync)
|
|
187
187
|
*/
|
|
188
|
-
declare function realpathSync(path: string, options?: {
|
|
188
|
+
export declare function realpathSync(path: string, options?: {
|
|
189
189
|
encoding?: BufferEncoding;
|
|
190
190
|
}): string;
|
|
191
191
|
/**
|
|
192
192
|
* Get current runtime
|
|
193
193
|
*/
|
|
194
|
-
declare function getRuntime(): 'node' | 'bun' | 'deno';
|
|
194
|
+
export declare function getRuntime(): 'node' | 'bun' | 'deno';
|
|
195
195
|
/**
|
|
196
196
|
* Promises API (re-export for compatibility)
|
|
197
197
|
*/
|
|
198
|
-
declare const promises: {
|
|
198
|
+
export declare const promises: {
|
|
199
199
|
readFile: typeof readFile;
|
|
200
200
|
writeFile: typeof writeFile;
|
|
201
201
|
appendFile: typeof appendFile;
|
|
@@ -251,5 +251,5 @@ declare const _default: {
|
|
|
251
251
|
};
|
|
252
252
|
getRuntime: typeof getRuntime;
|
|
253
253
|
};
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
export default _default;
|
|
255
|
+
//# sourceMappingURL=fs.d.ts.map
|
package/dist/fs.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fs.d.ts","sourceRoot":"","sources":["../src/fs.ts"],"names":[],"mappings":"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"}
|
package/dist/hmr.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Client-side HMR runtime for Elit
|
|
3
3
|
* Import this in your app to enable hot module replacement
|
|
4
4
|
*/
|
|
5
|
-
interface HMRClient {
|
|
5
|
+
export interface HMRClient {
|
|
6
6
|
/** Check if HMR is enabled */
|
|
7
7
|
enabled: boolean;
|
|
8
8
|
/** Manually reload the page */
|
|
@@ -34,5 +34,5 @@ declare class ElitHMR implements HMRClient {
|
|
|
34
34
|
dispose(callback: () => void): void;
|
|
35
35
|
}
|
|
36
36
|
declare const hmr: ElitHMR;
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
export default hmr;
|
|
38
|
+
//# sourceMappingURL=hmr.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hmr.d.ts","sourceRoot":"","sources":["../src/hmr.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,SAAS;IACxB,8BAA8B;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,+BAA+B;IAC/B,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,4CAA4C;IAC5C,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI,KAAK,IAAI,CAAC;IACxC,+CAA+C;IAC/C,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,iDAAiD;IACjD,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,IAAI,KAAK,IAAI,CAAC;CACzC;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,YAAY,EAAE,SAAS,CAAC;KACzB;CACF;AAED,cAAM,OAAQ,YAAW,SAAS;IAChC,OAAO,UAAS;IAChB,OAAO,CAAC,EAAE,CAA0B;IACpC,OAAO,CAAC,eAAe,CAAsB;IAC7C,OAAO,CAAC,gBAAgB,CAAsB;IAC9C,OAAO,CAAC,QAAQ,CAAS;;IAUzB,OAAO,CAAC,OAAO;IAgCf,OAAO,CAAC,aAAa;IAqCrB,MAAM;IAIN,MAAM,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI;IAO5B,OAAO;IAIP,OAAO,CAAC,QAAQ,EAAE,MAAM,IAAI;CAG7B;AAGD,QAAA,MAAM,GAAG,SAAgB,CAAC;AAO1B,eAAe,GAAG,CAAC"}
|
package/dist/http.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { EventEmitter } from 'node:events';
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* HTTP module with unified API across runtimes
|
|
5
3
|
* Ultra-optimized for maximum performance across Node.js, Bun, and Deno
|
|
@@ -12,24 +10,24 @@ import { EventEmitter } from 'node:events';
|
|
|
12
10
|
* - Reduced object allocations
|
|
13
11
|
* - Direct closure capture (no resolver indirection)
|
|
14
12
|
*/
|
|
15
|
-
|
|
13
|
+
import { EventEmitter } from 'node:events';
|
|
16
14
|
/**
|
|
17
15
|
* HTTP Methods
|
|
18
16
|
*/
|
|
19
|
-
declare const METHODS: readonly ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS", "CONNECT", "TRACE"];
|
|
17
|
+
export declare const METHODS: readonly ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS", "CONNECT", "TRACE"];
|
|
20
18
|
/**
|
|
21
19
|
* HTTP Status Codes (compact object)
|
|
22
20
|
*/
|
|
23
|
-
declare const STATUS_CODES: Record<number, string>;
|
|
21
|
+
export declare const STATUS_CODES: Record<number, string>;
|
|
24
22
|
/**
|
|
25
23
|
* HTTP Headers type
|
|
26
24
|
*/
|
|
27
|
-
type IncomingHttpHeaders = Record<string, string | string[] | undefined>;
|
|
28
|
-
type OutgoingHttpHeaders = Record<string, string | string[] | number>;
|
|
25
|
+
export type IncomingHttpHeaders = Record<string, string | string[] | undefined>;
|
|
26
|
+
export type OutgoingHttpHeaders = Record<string, string | string[] | number>;
|
|
29
27
|
/**
|
|
30
28
|
* IncomingMessage - Ultra-optimized for zero-copy operations
|
|
31
29
|
*/
|
|
32
|
-
declare class IncomingMessage extends EventEmitter {
|
|
30
|
+
export declare class IncomingMessage extends EventEmitter {
|
|
33
31
|
method: string;
|
|
34
32
|
url: string;
|
|
35
33
|
headers: IncomingHttpHeaders;
|
|
@@ -46,7 +44,7 @@ declare class IncomingMessage extends EventEmitter {
|
|
|
46
44
|
/**
|
|
47
45
|
* ServerResponse - Ultra-optimized write operations
|
|
48
46
|
*/
|
|
49
|
-
declare class ServerResponse extends EventEmitter {
|
|
47
|
+
export declare class ServerResponse extends EventEmitter {
|
|
50
48
|
statusCode: number;
|
|
51
49
|
statusMessage: string;
|
|
52
50
|
headersSent: boolean;
|
|
@@ -70,7 +68,7 @@ declare class ServerResponse extends EventEmitter {
|
|
|
70
68
|
/**
|
|
71
69
|
* Server - Optimized for each runtime
|
|
72
70
|
*/
|
|
73
|
-
declare class Server extends EventEmitter {
|
|
71
|
+
export declare class Server extends EventEmitter {
|
|
74
72
|
private nativeServer?;
|
|
75
73
|
private requestListener?;
|
|
76
74
|
_listening: boolean;
|
|
@@ -94,11 +92,11 @@ declare class Server extends EventEmitter {
|
|
|
94
92
|
/**
|
|
95
93
|
* Request listener type
|
|
96
94
|
*/
|
|
97
|
-
type RequestListener = (req: IncomingMessage, res: ServerResponse) => void;
|
|
95
|
+
export type RequestListener = (req: IncomingMessage, res: ServerResponse) => void;
|
|
98
96
|
/**
|
|
99
97
|
* Request options
|
|
100
98
|
*/
|
|
101
|
-
interface RequestOptions {
|
|
99
|
+
export interface RequestOptions {
|
|
102
100
|
method?: string;
|
|
103
101
|
headers?: OutgoingHttpHeaders;
|
|
104
102
|
timeout?: number;
|
|
@@ -107,14 +105,14 @@ interface RequestOptions {
|
|
|
107
105
|
/**
|
|
108
106
|
* Server options
|
|
109
107
|
*/
|
|
110
|
-
interface ServerOptions {
|
|
108
|
+
export interface ServerOptions {
|
|
111
109
|
IncomingMessage?: typeof IncomingMessage;
|
|
112
110
|
ServerResponse?: typeof ServerResponse;
|
|
113
111
|
}
|
|
114
112
|
/**
|
|
115
113
|
* Client request - lightweight wrapper
|
|
116
114
|
*/
|
|
117
|
-
declare class ClientRequest extends EventEmitter {
|
|
115
|
+
export declare class ClientRequest extends EventEmitter {
|
|
118
116
|
constructor(_url: string | URL, _options?: RequestOptions);
|
|
119
117
|
write(_chunk: any): boolean;
|
|
120
118
|
end(callback?: () => void): void;
|
|
@@ -122,27 +120,27 @@ declare class ClientRequest extends EventEmitter {
|
|
|
122
120
|
/**
|
|
123
121
|
* HTTP Agent
|
|
124
122
|
*/
|
|
125
|
-
declare class Agent {
|
|
123
|
+
export declare class Agent {
|
|
126
124
|
options?: any | undefined;
|
|
127
125
|
constructor(options?: any | undefined);
|
|
128
126
|
}
|
|
129
127
|
/**
|
|
130
128
|
* Create HTTP server
|
|
131
129
|
*/
|
|
132
|
-
declare function createServer(requestListener?: RequestListener): Server;
|
|
133
|
-
declare function createServer(options: ServerOptions, requestListener?: RequestListener): Server;
|
|
130
|
+
export declare function createServer(requestListener?: RequestListener): Server;
|
|
131
|
+
export declare function createServer(options: ServerOptions, requestListener?: RequestListener): Server;
|
|
134
132
|
/**
|
|
135
133
|
* Make HTTP request - optimized per runtime
|
|
136
134
|
*/
|
|
137
|
-
declare function request(url: string | URL, options?: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;
|
|
135
|
+
export declare function request(url: string | URL, options?: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;
|
|
138
136
|
/**
|
|
139
137
|
* Make HTTP GET request
|
|
140
138
|
*/
|
|
141
|
-
declare function get(url: string | URL, options?: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;
|
|
139
|
+
export declare function get(url: string | URL, options?: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;
|
|
142
140
|
/**
|
|
143
141
|
* Get current runtime
|
|
144
142
|
*/
|
|
145
|
-
declare function getRuntime(): 'node' | 'bun' | 'deno';
|
|
143
|
+
export declare function getRuntime(): 'node' | 'bun' | 'deno';
|
|
146
144
|
/**
|
|
147
145
|
* Default export
|
|
148
146
|
*/
|
|
@@ -159,5 +157,5 @@ declare const _default: {
|
|
|
159
157
|
STATUS_CODES: Record<number, string>;
|
|
160
158
|
getRuntime: typeof getRuntime;
|
|
161
159
|
};
|
|
162
|
-
|
|
163
|
-
|
|
160
|
+
export default _default;
|
|
161
|
+
//# sourceMappingURL=http.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AA0E3C;;GAEG;AACH,eAAO,MAAM,OAAO,2FAGV,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAmB/C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC,CAAC;AAChF,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC,CAAC;AAE7E;;GAEG;AACH,qBAAa,eAAgB,SAAQ,YAAY;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,mBAAmB,CAAC;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAS;IAC5B,UAAU,EAAE,MAAM,EAAE,CAAM;IAC1B,MAAM,EAAE,GAAG,CAAC;IAEnB,OAAO,CAAC,IAAI,CAAM;gBAEN,GAAG,EAAE,GAAG;IA0Bd,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC;IAavB,IAAI,IAAI,OAAO,CAAC,GAAG,CAAC;CAQ3B;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,YAAY;IACvC,UAAU,EAAE,MAAM,CAAO;IACzB,aAAa,EAAE,MAAM,CAAQ;IAC7B,WAAW,EAAE,OAAO,CAAS;IAEpC,OAAO,CAAC,QAAQ,CAAsB;IACtC,OAAO,CAAC,KAAK,CAAc;IAC3B,OAAO,CAAC,QAAQ,CAAC,CAA+B;IAChD,OAAO,CAAC,SAAS,CAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,CAAM;gBAEX,IAAI,CAAC,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,GAAG;IAOjD,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,MAAM,GAAG,IAAI;IAahE,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAO/D,UAAU,IAAI,mBAAmB;IAOjC,cAAc,IAAI,MAAM,EAAE;IAO1B,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAOhC,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAYhC,SAAS,CAAC,UAAU,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,GAAG,mBAAmB,EAAE,OAAO,CAAC,EAAE,mBAAmB,GAAG,IAAI;IAgChH,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,QAAQ,CAAC,EAAE,cAAc,GAAG,CAAC,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,OAAO;IAoB3F,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,QAAQ,CAAC,EAAE,cAAc,GAAG,CAAC,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IA6CvF,YAAY,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,GAAG,IAAI;CAG1D;AAED;;GAEG;AACH,qBAAa,MAAO,SAAQ,YAAY;IACtC,OAAO,CAAC,YAAY,CAAC,CAAM;IAC3B,OAAO,CAAC,eAAe,CAAC,CAAkB;IACnC,UAAU,EAAE,OAAO,CAAS;gBAEvB,eAAe,CAAC,EAAE,eAAe;IAK7C,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAChG,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAC9E,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAC3D,MAAM,CAAC,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,iBAAiB,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAiN9G,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,KAAK,KAAK,IAAI,GAAG,IAAI;IAoB7C,OAAO,IAAI;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IAqBnE,IAAI,SAAS,IAAI,OAAO,CAEvB;CACF;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,cAAc,KAAK,IAAI,CAAC;AAElF;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,mBAAmB,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,eAAe,CAAC,EAAE,OAAO,eAAe,CAAC;IACzC,cAAc,CAAC,EAAE,OAAO,cAAc,CAAC;CACxC;AAED;;GAEG;AACH,qBAAa,aAAc,SAAQ,YAAY;gBACjC,IAAI,EAAE,MAAM,GAAG,GAAG,EAAE,QAAQ,GAAE,cAAmB;IAI7D,KAAK,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO;IAI3B,GAAG,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;CAGjC;AAED;;GAEG;AACH,qBAAa,KAAK;IACG,OAAO,CAAC,EAAE,GAAG;gBAAb,OAAO,CAAC,EAAE,GAAG,YAAA;CACjC;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,eAAe,CAAC,EAAE,eAAe,GAAG,MAAM,CAAC;AACxE,wBAAgB,YAAY,CAAC,OAAO,EAAE,aAAa,EAAE,eAAe,CAAC,EAAE,eAAe,GAAG,MAAM,CAAC;AAQhG;;GAEG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,eAAe,KAAK,IAAI,GAAG,aAAa,CA6C7H;AAED;;GAEG;AACH,wBAAgB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,eAAe,KAAK,IAAI,GAAG,aAAa,CAEzH;AAED;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,GAAG,KAAK,GAAG,MAAM,CAEpD;AAED;;GAEG;;;;;;;;;;;;;;AACH,wBAYE"}
|