@aurumjs/html 0.10.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +152 -0
- package/package.json +52 -0
- package/prebuilt/esnext/builtin_components/portal.d.ts +9 -0
- package/prebuilt/esnext/builtin_components/portal.d.ts.map +1 -0
- package/prebuilt/esnext/builtin_components/portal.js +40 -0
- package/prebuilt/esnext/builtin_components/portal.js.map +1 -0
- package/prebuilt/esnext/builtin_components/router_link.d.ts +21 -0
- package/prebuilt/esnext/builtin_components/router_link.d.ts.map +1 -0
- package/prebuilt/esnext/builtin_components/router_link.js +54 -0
- package/prebuilt/esnext/builtin_components/router_link.js.map +1 -0
- package/prebuilt/esnext/index.d.ts +18 -0
- package/prebuilt/esnext/index.d.ts.map +1 -0
- package/prebuilt/esnext/index.js +18 -0
- package/prebuilt/esnext/index.js.map +1 -0
- package/prebuilt/esnext/jsx-dev-runtime.d.ts +2 -0
- package/prebuilt/esnext/jsx-dev-runtime.d.ts.map +1 -0
- package/prebuilt/esnext/jsx-dev-runtime.js +2 -0
- package/prebuilt/esnext/jsx-dev-runtime.js.map +1 -0
- package/prebuilt/esnext/jsx-runtime.d.ts +28 -0
- package/prebuilt/esnext/jsx-runtime.d.ts.map +1 -0
- package/prebuilt/esnext/jsx-runtime.js +26 -0
- package/prebuilt/esnext/jsx-runtime.js.map +1 -0
- package/prebuilt/esnext/nodes/input.d.ts +41 -0
- package/prebuilt/esnext/nodes/input.d.ts.map +1 -0
- package/prebuilt/esnext/nodes/input.js +92 -0
- package/prebuilt/esnext/nodes/input.js.map +1 -0
- package/prebuilt/esnext/nodes/rendering_helpers.d.ts +8 -0
- package/prebuilt/esnext/nodes/rendering_helpers.d.ts.map +1 -0
- package/prebuilt/esnext/nodes/rendering_helpers.js +173 -0
- package/prebuilt/esnext/nodes/rendering_helpers.js.map +1 -0
- package/prebuilt/esnext/nodes/select.d.ts +17 -0
- package/prebuilt/esnext/nodes/select.d.ts.map +1 -0
- package/prebuilt/esnext/nodes/select.js +95 -0
- package/prebuilt/esnext/nodes/select.js.map +1 -0
- package/prebuilt/esnext/nodes/simple_dom_nodes.d.ts +866 -0
- package/prebuilt/esnext/nodes/simple_dom_nodes.d.ts.map +1 -0
- package/prebuilt/esnext/nodes/simple_dom_nodes.js +531 -0
- package/prebuilt/esnext/nodes/simple_dom_nodes.js.map +1 -0
- package/prebuilt/esnext/nodes/textarea.d.ts +34 -0
- package/prebuilt/esnext/nodes/textarea.d.ts.map +1 -0
- package/prebuilt/esnext/nodes/textarea.js +61 -0
- package/prebuilt/esnext/nodes/textarea.js.map +1 -0
- package/prebuilt/esnext/rendering/dom_runtime.d.ts +91 -0
- package/prebuilt/esnext/rendering/dom_runtime.d.ts.map +1 -0
- package/prebuilt/esnext/rendering/dom_runtime.js +970 -0
- package/prebuilt/esnext/rendering/dom_runtime.js.map +1 -0
- package/prebuilt/esnext/rendering/render_batch.d.ts +15 -0
- package/prebuilt/esnext/rendering/render_batch.d.ts.map +1 -0
- package/prebuilt/esnext/rendering/render_batch.js +73 -0
- package/prebuilt/esnext/rendering/render_batch.js.map +1 -0
- package/prebuilt/esnext/rendering/renderers/dom_adapter.d.ts +199 -0
- package/prebuilt/esnext/rendering/renderers/dom_adapter.d.ts.map +1 -0
- package/prebuilt/esnext/rendering/renderers/dom_adapter.js +525 -0
- package/prebuilt/esnext/rendering/renderers/dom_adapter.js.map +1 -0
- package/prebuilt/esnext/rendering/renderers/string_adapter.d.ts +4 -0
- package/prebuilt/esnext/rendering/renderers/string_adapter.d.ts.map +1 -0
- package/prebuilt/esnext/rendering/renderers/string_adapter.js +112 -0
- package/prebuilt/esnext/rendering/renderers/string_adapter.js.map +1 -0
- package/prebuilt/esnext/rendering/renderers/vdom_adapter.d.ts +11 -0
- package/prebuilt/esnext/rendering/renderers/vdom_adapter.d.ts.map +1 -0
- package/prebuilt/esnext/rendering/renderers/vdom_adapter.js +23 -0
- package/prebuilt/esnext/rendering/renderers/vdom_adapter.js.map +1 -0
- package/prebuilt/esnext/utilities/aurum.d.ts +155 -0
- package/prebuilt/esnext/utilities/aurum.d.ts.map +1 -0
- package/prebuilt/esnext/utilities/aurum.js +282 -0
- package/prebuilt/esnext/utilities/aurum.js.map +1 -0
- package/prebuilt/esnext/utilities/sanitize.d.ts +25 -0
- package/prebuilt/esnext/utilities/sanitize.d.ts.map +1 -0
- package/prebuilt/esnext/utilities/sanitize.js +191 -0
- package/prebuilt/esnext/utilities/sanitize.js.map +1 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { DomNodeCreator } from '../rendering/renderers/dom_adapter.js';
|
|
2
|
+
import { queueRenderUpdate, renderBatchState } from '../rendering/render_batch.js';
|
|
3
|
+
import { isDataWriter } from './rendering_helpers.js';
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
const textAreaEvents = { input: 'onInput', change: 'onChange' };
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
const textAreaProps = [
|
|
12
|
+
'placeholder',
|
|
13
|
+
'readonly',
|
|
14
|
+
'disabled',
|
|
15
|
+
'form',
|
|
16
|
+
'cols',
|
|
17
|
+
'rows',
|
|
18
|
+
'wrap',
|
|
19
|
+
'autocomplete',
|
|
20
|
+
'autofocus',
|
|
21
|
+
'max',
|
|
22
|
+
'maxLength',
|
|
23
|
+
'min',
|
|
24
|
+
'spellcheck',
|
|
25
|
+
'minLength',
|
|
26
|
+
'required',
|
|
27
|
+
'type'
|
|
28
|
+
];
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
export const TextArea = DomNodeCreator('textArea', textAreaProps, textAreaEvents, (node, props, cleanUp) => {
|
|
33
|
+
const textArea = node;
|
|
34
|
+
if ((props === null || props === void 0 ? void 0 : props.defaultValue) !== undefined)
|
|
35
|
+
textArea.defaultValue = props.defaultValue;
|
|
36
|
+
if ((props === null || props === void 0 ? void 0 : props.value) !== undefined) {
|
|
37
|
+
if (typeof props.value !== 'string') {
|
|
38
|
+
const value = props.value;
|
|
39
|
+
const updateValue = (v) => {
|
|
40
|
+
if (cleanUp.isCancelled)
|
|
41
|
+
return;
|
|
42
|
+
textArea.value = v;
|
|
43
|
+
};
|
|
44
|
+
value.listenAndRepeat((v) => {
|
|
45
|
+
if (renderBatchState.active)
|
|
46
|
+
queueRenderUpdate(updateValue, updateValue, v);
|
|
47
|
+
else
|
|
48
|
+
updateValue(v);
|
|
49
|
+
}, cleanUp);
|
|
50
|
+
if (isDataWriter(value)) {
|
|
51
|
+
cleanUp.registerDomEvent(textArea, 'input', () => {
|
|
52
|
+
value.write(textArea.value);
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
textArea.value = props.value;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
//# sourceMappingURL=textarea.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"textarea.js","sourceRoot":"","sources":["../../../src/nodes/textarea.ts"],"names":[],"mappings":"AAGA,OAAO,EAA2B,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAChG,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AA8BtD;;GAEG;AACH,MAAM,cAAc,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC;AAEhE;;GAEG;AACH,MAAM,aAAa,GAAG;IAClB,aAAa;IACb,UAAU;IACV,UAAU;IACV,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,cAAc;IACd,WAAW;IACX,KAAK;IACL,WAAW;IACX,KAAK;IACL,YAAY;IACZ,WAAW;IACX,UAAU;IACV,MAAM;CACT,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAG,cAAc,CAClC,UAAU,EACV,aAAa,EACb,cAAc,EACd,CAAC,IAAiB,EAAE,KAAoB,EAAE,OAA0B,EAAE,EAAE;IACpE,MAAM,QAAQ,GAAG,IAA2B,CAAC;IAC7C,IAAI,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,YAAY,MAAK,SAAS;QAAE,QAAQ,CAAC,YAAY,GAAG,KAAK,CAAC,YAAY,CAAC;IAClF,IAAI,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,KAAK,MAAK,SAAS,EAAE,CAAC;QAC7B,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;YAClC,MAAM,KAAK,GAAG,KAAK,CAAC,KAAmC,CAAC;YACxD,MAAM,WAAW,GAAG,CAAC,CAAS,EAAQ,EAAE;gBACpC,IAAI,OAAO,CAAC,WAAW;oBAAE,OAAO;gBAChC,QAAQ,CAAC,KAAK,GAAG,CAAC,CAAC;YACvB,CAAC,CAAC;YACF,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE;gBACxB,IAAI,gBAAgB,CAAC,MAAM;oBAAE,iBAAiB,CAAC,WAAW,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC;;oBACvE,WAAW,CAAC,CAAC,CAAC,CAAC;YACxB,CAAC,EAAE,OAAO,CAAC,CAAC;YACZ,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC;gBACtB,OAAO,CAAC,gBAAgB,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,EAAE;oBAC7C,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;gBAChC,CAAC,CAAC,CAAC;YACP,CAAC;QACL,CAAC;aAAM,CAAC;YACJ,QAAQ,CAAC,KAAK,GAAG,KAAK,CAAC,KAAe,CAAC;QAC3C,CAAC;IACL,CAAC;AACL,CAAC,CACJ,CAAC"}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { ArrayDataSource, DataSource } from '@aurumjs/streams';
|
|
2
|
+
import { AurumComponentAPI, Renderable, RenderSession } from '@aurumjs/rendering';
|
|
3
|
+
export type Rendered = AurumElement | HTMLElement | Text | SVGElement;
|
|
4
|
+
type DOMRenderInput = Renderable | Rendered | DOMRenderInput[];
|
|
5
|
+
export declare abstract class AurumElement {
|
|
6
|
+
children: Rendered[];
|
|
7
|
+
protected api: AurumComponentAPI<DOMPrerendered>;
|
|
8
|
+
protected renderScope: RenderSession;
|
|
9
|
+
private static id;
|
|
10
|
+
protected contentStartMarker: Comment;
|
|
11
|
+
protected contentEndMarker: Comment;
|
|
12
|
+
protected hostNode: HTMLElement;
|
|
13
|
+
protected lastStartIndex: number;
|
|
14
|
+
protected lastEndIndex: number;
|
|
15
|
+
protected disposed: boolean;
|
|
16
|
+
constructor(dataSource: ArrayDataSource<DOMRenderInput> | DataSource<DOMRenderInput> | undefined, api: AurumComponentAPI<DOMPrerendered>);
|
|
17
|
+
dispose(): void;
|
|
18
|
+
attachToDom(node: HTMLElement, index: number): void;
|
|
19
|
+
attachToDomBefore(node: HTMLElement, referenceNode: Node | null): void;
|
|
20
|
+
protected getStartIndex(): number;
|
|
21
|
+
protected getWorkIndex(): number;
|
|
22
|
+
protected getLastIndex(): number;
|
|
23
|
+
protected abstract render(dataSource: DataSource<DOMRenderInput> | ArrayDataSource<DOMRenderInput>): void;
|
|
24
|
+
protected clearContent(): void;
|
|
25
|
+
protected updateDom(): void;
|
|
26
|
+
protected linkHostChildren(): void;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
export declare function renderInternal(element: DOMRenderInput, session: RenderSession, prerendering?: false): Rendered | Rendered[] | undefined;
|
|
32
|
+
export declare function renderInternal(element: DOMRenderInput, session: RenderSession, prerendering: true): DOMPrerendered | DOMPrerendered[];
|
|
33
|
+
export declare function renderInternal(element: DOMRenderInput, session: RenderSession, prerendering: boolean): DOMRenderInput;
|
|
34
|
+
export type DOMPrerendered = Renderable | Rendered;
|
|
35
|
+
/** @internal Creates a component API whose prerender output belongs to the DOM host. */
|
|
36
|
+
export declare function createDOMAPI(session: RenderSession): AurumComponentAPI<DOMPrerendered>;
|
|
37
|
+
export declare class ArrayAurumElement extends AurumElement {
|
|
38
|
+
private static readonly immediateContentCommit;
|
|
39
|
+
private entries;
|
|
40
|
+
private dataSource;
|
|
41
|
+
private readonly batchedContentCommit;
|
|
42
|
+
constructor(dataSource: ArrayDataSource<DOMRenderInput>, api: AurumComponentAPI<DOMPrerendered>);
|
|
43
|
+
dispose(): void;
|
|
44
|
+
attachToDomBefore(node: HTMLElement, referenceNode: Node | null): void;
|
|
45
|
+
protected render(dataSource: ArrayDataSource<DOMRenderInput>): void;
|
|
46
|
+
private queueBatchedContent;
|
|
47
|
+
static setRenderBatching(active: boolean): void;
|
|
48
|
+
private handleBatchedContent;
|
|
49
|
+
private synchronizeChildren;
|
|
50
|
+
private removeEntriesFromDom;
|
|
51
|
+
private detachEntriesFromDom;
|
|
52
|
+
private insertEntryGapBefore;
|
|
53
|
+
private getEntryDomIndex;
|
|
54
|
+
private insertEntries;
|
|
55
|
+
private tryApplySubsequenceRemoval;
|
|
56
|
+
private tryApplySubsequenceGrowth;
|
|
57
|
+
private tryApplySingleRotation;
|
|
58
|
+
/**
|
|
59
|
+
* Keyed reconciliation for arbitrary merges: retained entries forming a longest
|
|
60
|
+
* increasing subsequence of the previous order stay put, everything else is
|
|
61
|
+
* moved or inserted right-to-left against a stable anchor. DOM operations are
|
|
62
|
+
* proportional to the entries that actually changed position.
|
|
63
|
+
*/
|
|
64
|
+
private applyMergeReconciliation;
|
|
65
|
+
private handleNewContent;
|
|
66
|
+
private renderEntry;
|
|
67
|
+
private attachRendered;
|
|
68
|
+
private swapDomNodes;
|
|
69
|
+
private firstDomNode;
|
|
70
|
+
private lastDomNode;
|
|
71
|
+
private moveRenderedBefore;
|
|
72
|
+
private swapRendered;
|
|
73
|
+
}
|
|
74
|
+
export declare class SingularAurumElement extends AurumElement {
|
|
75
|
+
private static readonly immediateContentCommit;
|
|
76
|
+
private renderSession;
|
|
77
|
+
private lastValue;
|
|
78
|
+
private dataSource;
|
|
79
|
+
private readonly batchedContentCommit;
|
|
80
|
+
constructor(dataSource: DataSource<DOMRenderInput>, api: AurumComponentAPI<DOMPrerendered>);
|
|
81
|
+
dispose(): void;
|
|
82
|
+
attachToDomBefore(node: HTMLElement, referenceNode: Node | null): void;
|
|
83
|
+
protected render(dataSource: DataSource<DOMRenderInput>): void;
|
|
84
|
+
private queueBatchedContent;
|
|
85
|
+
static setRenderBatching(active: boolean): void;
|
|
86
|
+
private handleNewContent;
|
|
87
|
+
private fullRebuild;
|
|
88
|
+
private endSession;
|
|
89
|
+
}
|
|
90
|
+
export {};
|
|
91
|
+
//# sourceMappingURL=dom_runtime.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dom_runtime.d.ts","sourceRoot":"","sources":["../../../src/rendering/dom_runtime.ts"],"names":[],"mappings":"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"}
|