marko 6.3.31 → 6.3.32
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/cheatsheet.md +36 -18
- package/dist/common/helpers.d.ts +2 -0
- package/dist/debug/dom/catch.feat.js +38 -0
- package/dist/debug/dom/catch.feat.mjs +37 -0
- package/dist/debug/dom/controllable-input.feat.js +7 -0
- package/dist/debug/dom/controllable-input.feat.mjs +6 -0
- package/dist/debug/dom/controllable-open.feat.js +5 -0
- package/dist/debug/dom/controllable-open.feat.mjs +4 -0
- package/dist/debug/dom/controllable-select.feat.js +5 -0
- package/dist/debug/dom/controllable-select.feat.mjs +4 -0
- package/dist/debug/dom/controllable-textarea.feat.js +5 -0
- package/dist/debug/dom/controllable-textarea.feat.mjs +4 -0
- package/dist/debug/dom/controllable.feat.js +11 -0
- package/dist/debug/dom/controllable.feat.mjs +10 -0
- package/dist/debug/dom-BJ93mcSe.mjs +2016 -0
- package/dist/debug/dom-CiFITSPN.js +2814 -0
- package/dist/debug/dom.js +156 -2250
- package/dist/debug/dom.mjs +6 -2094
- package/dist/dom/catch.feat.d.ts +1 -0
- package/dist/dom/catch.feat.js +25 -0
- package/dist/dom/catch.feat.mjs +26 -0
- package/dist/dom/control-flow.d.ts +3 -3
- package/dist/dom/controllable-input.feat.d.ts +1 -0
- package/dist/dom/controllable-input.feat.js +3 -0
- package/dist/dom/controllable-input.feat.mjs +3 -0
- package/dist/dom/controllable-open.feat.d.ts +1 -0
- package/dist/dom/controllable-open.feat.js +4 -0
- package/dist/dom/controllable-open.feat.mjs +4 -0
- package/dist/dom/controllable-select.feat.d.ts +1 -0
- package/dist/dom/controllable-select.feat.js +4 -0
- package/dist/dom/controllable-select.feat.mjs +4 -0
- package/dist/dom/controllable-textarea.feat.d.ts +1 -0
- package/dist/dom/controllable-textarea.feat.js +4 -0
- package/dist/dom/controllable-textarea.feat.mjs +4 -0
- package/dist/dom/controllable.d.ts +3 -8
- package/dist/dom/controllable.feat.d.ts +3 -0
- package/dist/dom/controllable.feat.js +3 -0
- package/dist/dom/controllable.feat.mjs +6 -0
- package/dist/dom/queue.d.ts +2 -2
- package/dist/dom/resume.d.ts +0 -1
- package/dist/dom-CI-06TZb.js +1721 -0
- package/dist/dom-Cj4HQ7T_.mjs +1137 -0
- package/dist/dom.d.ts +2 -2
- package/dist/dom.js +36 -1224
- package/dist/dom.mjs +4 -1191
- package/dist/translator/index.js +628 -534
- package/dist/translator/util/constants/structure-kind.d.ts +7 -0
- package/dist/translator/util/get-tag-name.d.ts +2 -1
- package/dist/translator/util/import-reference.d.ts +3 -0
- package/dist/translator/util/runtime.d.ts +2 -0
- package/dist/translator/util/sections.d.ts +28 -1
- package/dist/translator/util/{walks.d.ts → structure.d.ts} +20 -9
- package/dist/translator/util/writer.d.ts +0 -8
- package/dist/translator/visitors/placeholder.d.ts +4 -3
- package/dist/translator/visitors/tag/native-tag.d.ts +9 -6
- package/dist/translator/visitors/text.d.ts +3 -7
- package/package.json +3 -3
package/cheatsheet.md
CHANGED
|
@@ -4,18 +4,19 @@ Marko 6 = HTML superset. NOT JSX, NOT old Marko 4/5. `.marko` files are componen
|
|
|
4
4
|
|
|
5
5
|
## Golden rules
|
|
6
6
|
|
|
7
|
-
1. Text interpolation: `${expr}` inside tag bodies. A bare line
|
|
8
|
-
2.
|
|
9
|
-
3.
|
|
10
|
-
4.
|
|
7
|
+
1. Text interpolation: `${expr}` inside tag bodies. A bare line at the template root parses as a TAG (concise mode): `Welcome aboard` fails to compile, but `p is a tag` compiles SILENTLY to `<p is a tag></p>` — any line starting with a real tag name loses its words to attributes. Wrap text in an element (`<p>Welcome aboard</p>`) or prefix the line with `--` and a space (`-- Welcome ${name}`). Attributes take raw JS after `=` with NO braces/quotes: `<div title=user.name data-n=1 + 1>`.
|
|
8
|
+
2. A top-level `>` in an attribute value **ENDS THE TAG**: the value truncates there, the rest of the line becomes body text, and it usually still compiles clean. `<button disabled=count>=8 onClick() {…}>More</button>` is `disabled=count` plus the TEXT `=8 onClick() {…}>`, so the handler never binds; spaces don't help (`disabled=a > b` closes too). Parenthesize the value — `disabled=(count >= 8)`, `hidden=(a > b)`, and for a TS type argument `<let/s=(new Set<string>())>`. Do NOT move the type onto the tag variable instead: `<let/s:Set<string>=new Set()>` compiles but fails type-check with TS2322 (the annotation does not flow into the initializer). A `>` nested inside `(…)`/`{…}`/`[…]` is safe (`class={ big: n > 1 }`, `of=list.filter(x => x > 1)`), but an arrow BODY is not nested: `<const/f=(a, b) => a > b>` truncates to `(a, b) => a`. `<` never closes a tag (`disabled=count<=1` is fine).
|
|
9
|
+
3. State: `<let/name=initial>` (slash then var name!). Update by plain assignment in an event handler: `count++`, `text = "hi"`. No setState, no hooks.
|
|
10
|
+
4. Derived values: `<const/total=items.length * price>` — auto-recomputes. Never use an effect to derive state. Updates batch: mid-handler a reassigned `<let>` reads current but its derived `<const>` reads stale — recompute from the `<let>`.
|
|
11
|
+
5. NEVER mutate state in place. `items.push(x)` will NOT update the UI. Always reassign:
|
|
11
12
|
- add: `items = items.concat(x)`
|
|
12
13
|
- remove: `items = items.toSpliced(i, 1)`
|
|
13
14
|
- update: `items = items.toSpliced(i, 1, { ...item, done: true })`
|
|
14
15
|
- object: `user = { ...user, name }`
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
6. Events: method shorthand `onClick() { ... }` or `onClick=fn`. Handler gets the DOM event: `onSubmit(e) { e.preventDefault(); save() }`. Don't sync input values through `onInput`/`onChange` — that's what the change handlers below are for.
|
|
17
|
+
7. Native inputs are UNCONTROLLED by default: `value=` only sets the initial value. Adding the matching `*Change` handler is what makes them controlled — `valueChange` on `<input>`/`<textarea>`/`<select>`, `checkedChange` on checkboxes/radios, `openChange` on `<details>`/`<dialog>`. `value:=text` is the shorthand for `value=text valueChange(v) { text = v }`. (`<textarea value:=text/>` — value attribute, not body.)
|
|
18
|
+
8. Transform in the handler when needed — number inputs give STRINGS: `<input type="number" value=n valueChange(v) { n = +v }>`, or `value:parseFloat:=n`.
|
|
19
|
+
9. Radio/checkbox groups: `checkedValue:=picked` on each input (shared var, distinct `value=`) — the match is checked; array var for multi-checkbox. Dropdown: `<select value:=picked>`.
|
|
19
20
|
|
|
20
21
|
## Canonical component (copy this shape)
|
|
21
22
|
|
|
@@ -61,7 +62,7 @@ Marko 6 = HTML superset. NOT JSX, NOT old Marko 4/5. `.marko` files are componen
|
|
|
61
62
|
<else> C </else>
|
|
62
63
|
|
|
63
64
|
<for|item, index| of=list by="id"> ${item.name} </for> // by keys the loop (no key= attr!)
|
|
64
|
-
<for|city| of=cities by=(city) => city> ${city} </for> // primitives: by takes a FUNCTION —
|
|
65
|
+
<for|city| of=cities by=(city) => city> ${city} </for> // primitives: by takes a FUNCTION — the loop param is not in scope in by=, so by=city is an undefined variable
|
|
65
66
|
<for|i| from=0 until=5> ${i} </for> // 0..4
|
|
66
67
|
|
|
67
68
|
<show=open> stays mounted, keeps state (form drafts) when hidden </show>
|
|
@@ -84,14 +85,29 @@ import { getUser } from "../data.js";
|
|
|
84
85
|
</try>
|
|
85
86
|
```
|
|
86
87
|
|
|
87
|
-
`@placeholder`/`@catch` go on `<try>`, never on `<await>`. On the server this streams (placeholder flushes first, content follows). It works in the browser too: hand `<await>` a new promise (e.g. a `<const>` derived from state) and it shows the placeholder again, then the new result. `@catch` can't recover in place
|
|
88
|
+
`@placeholder`/`@catch` go on `<try>`, never on `<await>`. On the server this streams (placeholder flushes first, content follows). It works in the browser too: hand `<await>` a new promise (e.g. a `<const>` derived from state) and it shows the placeholder again, then the new result. `@catch` can't recover in place: redirect (a `<script>` setting `location`), or re-render the `<try>` by bumping a key on a wrapping `<for>`.
|
|
88
89
|
|
|
89
90
|
Don't fetch while rendering: start data loads early, pass the PROMISE through the template, and `<await>` it where the data is rendered. Fetching inside each component that renders the data serializes the requests (waterfalls). Under @marko/run, load in the route handler — `return next({ user: getUser() })`, no await — and render with `<await|user|=$global.data.user>`.
|
|
90
91
|
|
|
91
92
|
## Components
|
|
92
93
|
|
|
93
94
|
- File `src/tags/product-card.marko` is auto-discovered as `<product-card>` from any template (no import needed). Attributes arrive as `input`: `${input.title}`.
|
|
94
|
-
- Body content
|
|
95
|
+
- Body content renders where the child places `<${input.content}/>`, and the child can hand it values — `<${input.content}(x, y)/>` in the child, `<my-tag|count, total|>${count}</my-tag>` in the parent. Placement is the child's: put it inside a `<for>` and the body appears once per item, each with its own values (`<for|...args| to=input.to><${input.content}(...args)/></>`). Those values exist ONLY inside that body.
|
|
96
|
+
- `<return=value>` publishes ONE value into the PARENT's scope, named by a tag variable; from there it is an ordinary value in that template. A native tag variable's value is itself a function returning the element, so `<div/el>` is read as `el()`. So: body parameters when the value belongs to the nested markup, including one set per item where the child loops; a tag variable when the parent needs one value outside the body. A tag var on a child that never returns is `undefined`.
|
|
97
|
+
|
|
98
|
+
```marko
|
|
99
|
+
/* src/tags/toggle-section.marko */
|
|
100
|
+
<let/open=input.startExpanded ?? false>
|
|
101
|
+
<button onClick() { open = !open }>${input.title}</button>
|
|
102
|
+
<if=open><div><${input.content}/></div></if>
|
|
103
|
+
<return=open>
|
|
104
|
+
|
|
105
|
+
/* parent */
|
|
106
|
+
<toggle-section/aOpen title="A" startExpanded=true>one</toggle-section>
|
|
107
|
+
<toggle-section/bOpen title="B">two</toggle-section>
|
|
108
|
+
<const/openCount=(aOpen ? 1 : 0) + (bOpen ? 1 : 0)> // recomputes on every toggle
|
|
109
|
+
```
|
|
110
|
+
|
|
95
111
|
- Named sections use attribute tags:
|
|
96
112
|
|
|
97
113
|
```marko
|
|
@@ -115,9 +131,9 @@ Don't fetch while rendering: start data loads early, pass the PROMISE through th
|
|
|
115
131
|
|
|
116
132
|
## Sharing data (`$global`)
|
|
117
133
|
|
|
118
|
-
-
|
|
134
|
+
- Read request-scoped `$global` from any template, no threading: `${$global.messages.title}`. Otherwise prop-drill through `input` — there is no provider/consumer context API.
|
|
119
135
|
- Populate at the render call: `template.render({ $global: { messages } })`. Under @marko/run a middleware's `return next({ messages })` merges into `$global.data`.
|
|
120
|
-
- `$global` is NOT serialized by default
|
|
136
|
+
- `$global` is NOT serialized to the client by default. Mark any key the BROWSER itself evaluates — an event handler, a `<script>`, markup the browser (re)creates, a `<const>` that recomputes from state: `$global.serializedGlobals = { messages: true }` at the render call (under @marko/run, `context.serializedGlobals.data = true`; it ships `params`/`url` already). What the server already rendered needs no opt-in.
|
|
121
137
|
|
|
122
138
|
## Client-side effects (rare — prefer state/const)
|
|
123
139
|
|
|
@@ -125,7 +141,7 @@ Don't fetch while rendering: start data loads early, pass the PROMISE through th
|
|
|
125
141
|
<div/el/>
|
|
126
142
|
<script>
|
|
127
143
|
// Browser-only. Runs after mount and re-runs when referenced state changes.
|
|
128
|
-
el().focus(); // element refs are getter FUNCTIONS
|
|
144
|
+
el().focus(); // NATIVE element refs are getter FUNCTIONS
|
|
129
145
|
const id = setInterval(tick, 1000);
|
|
130
146
|
$signal.onabort = () => clearInterval(id); // cleanup
|
|
131
147
|
</script>
|
|
@@ -173,6 +189,8 @@ export interface Input<T> {
|
|
|
173
189
|
|
|
174
190
|
| Wrong (React/Vue/Marko5 habit) | Right |
|
|
175
191
|
| ----------------------------------------------------------- | ------------------------------------------------------------------------------------ |
|
|
192
|
+
| `disabled=n>=8` / `hidden=a > b` (top-level `>` in a value) | `disabled=(n >= 8)` — a bare `>` closes the tag; the rest of the line becomes text |
|
|
193
|
+
| `<let/s=new Set<string>()>` (type argument in a value) | `<let/s=(new Set<string>())>` — a tag-var annotation fails type-check |
|
|
176
194
|
| `{expr}` in markup, `className`, `key=`, `style={{...}}` | `${expr}`, `class`, `by=` on `<for>`, `style={...}` |
|
|
177
195
|
| `onClick={() => ...}` / `@click` / `on-click("name")` | `onClick() { ... }` |
|
|
178
196
|
| `const [x, setX] = useState()` / `state` / `class {}` block | `<let/x=0>` then `x = 1` |
|
|
@@ -180,21 +198,21 @@ export interface Input<T> {
|
|
|
180
198
|
| `<let x=0>` | `<let/x=0>` |
|
|
181
199
|
| `<if(cond)>` | `<if=cond>` |
|
|
182
200
|
| `items.push(x)` | `items = items.concat(x)` |
|
|
183
|
-
| `input.renderBody`
|
|
201
|
+
| `input.renderBody` (renders nothing, no error) | `input.content` |
|
|
184
202
|
| `<await>` with `@placeholder`/`@catch` | wrap in `<try>` |
|
|
185
203
|
| `el.focus()` on a ref | `el().focus()` inside `<script>`/handler |
|
|
186
204
|
| `input.tab[0]` / `input.tab.length` | `[...input.tab ?? []]` first (attr tags are iterables, not arrays) |
|
|
187
|
-
| bare text on its own line at template root | wrap in an element (`<p>...`), or prefix the line with
|
|
205
|
+
| bare text on its own line at template root | wrap in an element (`<p>...`), or prefix the line with `--` and a space |
|
|
188
206
|
| `by=item` using the loop variable | `by="propName"` or `by=(item) => key` — `by=` is evaluated outside the loop |
|
|
189
207
|
| `onInput(e) { q = e.target.value }` to sync an input | `value:=q` — the change handler owns the value |
|
|
190
208
|
| fetching inside the component that renders the data | start the promise early (route handler / top of template), pass it down to `<await>` |
|
|
191
209
|
| `style={ backgroundColor: c }` (camelCase keys) | `style={ "background-color": c }` (kebab-case) |
|
|
192
210
|
| `this.querySelector` / `this.getRootNode()` in `<script>` | element ref getter: `<div/el>` then `el()` (there is no `this`) |
|
|
193
|
-
| `<div/my-el>` / `<input/card-input>` (hyphen in tag var) | valid JS identifier: `<div/myEl>`
|
|
211
|
+
| `<div/my-el>` / `<input/card-input>` (hyphen in tag var) | valid JS identifier: `<div/myEl>` (the error won't name the hyphen) |
|
|
194
212
|
| hand-rolled radios `checked=x checkedChange(v){…}` | `checkedValue:=picked` on each radio (shared var, distinct `value=`) |
|
|
195
213
|
| hand-rolled `IntersectionObserver` to defer a widget's JS | `import W from "<w>" with { load: "visible#sel" }` |
|
|
196
214
|
| imperative lib wired through `<script>` mount + cleanup | `<lifecycle onMount/onUpdate/onDestroy>` (keeps `this` across all three) |
|
|
197
215
|
| `createContext`/provider to share data | `input` (prop drilling) or request-scoped `$global` |
|
|
198
|
-
| `$global.x` in client-reactive code, not allow-listed | `$global.serializedGlobals = { x: true }` first
|
|
216
|
+
| `$global.x` in client-reactive code, not allow-listed | `$global.serializedGlobals = { x: true }` first — otherwise the read is `undefined` |
|
|
199
217
|
| hand-namespaced global classes (`.my-card-title`) | `<style/styles>` + `class=styles.card` (scoped CSS modules) |
|
|
200
218
|
| `tsc --noEmit` to type check templates | `mtc` — `tsc` skips `.marko` files and exits 0 |
|
package/dist/common/helpers.d.ts
CHANGED
|
@@ -13,3 +13,5 @@ export declare function isNotVoid(value: unknown): boolean;
|
|
|
13
13
|
export declare function isPromise(value: unknown): value is Promise<unknown>;
|
|
14
14
|
export declare function normalizeDynamicRenderer<Renderer>(value: any): Renderer | string | undefined;
|
|
15
15
|
export declare const decodeAccessor: (num: number) => string;
|
|
16
|
+
export declare let branchesEnabled: undefined | 1;
|
|
17
|
+
export declare function withBranches<T>(runtime?: T): T;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const require_control_flow = require("../dom-CiFITSPN.js");
|
|
3
|
+
//#region src/dom/catch.feat.ts
|
|
4
|
+
const handlePendingTry = (fn, scope, branch) => {
|
|
5
|
+
while (branch) {
|
|
6
|
+
if (branch["#AwaitCounter"]?.i) return (branch[require_control_flow.PendingEffects] ||= []).push(fn, scope);
|
|
7
|
+
branch = branch[require_control_flow.ParentBranch];
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
require_control_flow.installCatch((runEffects) => (effects, checkPending = require_control_flow.placeholderShown.has(effects)) => {
|
|
11
|
+
if (checkPending || require_control_flow.caughtError.has(effects)) {
|
|
12
|
+
let i = 0;
|
|
13
|
+
let fn;
|
|
14
|
+
let scope;
|
|
15
|
+
let branch;
|
|
16
|
+
for (; i < effects.length;) {
|
|
17
|
+
fn = effects[i++];
|
|
18
|
+
scope = effects[i++];
|
|
19
|
+
if ((branch = scope["#ClosestBranch"])?.["#Gen"] !== 0 && !(checkPending && handlePendingTry(fn, scope, branch))) fn(scope);
|
|
20
|
+
}
|
|
21
|
+
} else runEffects(effects);
|
|
22
|
+
}, (runRender) => (render) => {
|
|
23
|
+
try {
|
|
24
|
+
let branch = render[require_control_flow.Scope][require_control_flow.ClosestBranch];
|
|
25
|
+
while (branch) {
|
|
26
|
+
if (branch["#PendingRenders"]) {
|
|
27
|
+
render[require_control_flow.Pending] = 1;
|
|
28
|
+
return branch[require_control_flow.PendingRenders].push(render);
|
|
29
|
+
}
|
|
30
|
+
branch = branch[require_control_flow.ParentBranch];
|
|
31
|
+
}
|
|
32
|
+
render[require_control_flow.Pending] = 0;
|
|
33
|
+
runRender(render);
|
|
34
|
+
} catch (error) {
|
|
35
|
+
require_control_flow.renderCatch(render[require_control_flow.Scope], error);
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
//#endregion
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Cn as PendingRenders, Jt as caughtError, Sn as PendingEffects, Xt as placeholderShown, Yt as installCatch, gn as ClosestBranch, h as renderCatch, mn as Scope, pn as Pending, xn as ParentBranch } from "../dom-BJ93mcSe.mjs";
|
|
2
|
+
//#region src/dom/catch.feat.ts
|
|
3
|
+
const handlePendingTry = (fn, scope, branch) => {
|
|
4
|
+
while (branch) {
|
|
5
|
+
if (branch["#AwaitCounter"]?.i) return (branch[PendingEffects] ||= []).push(fn, scope);
|
|
6
|
+
branch = branch[ParentBranch];
|
|
7
|
+
}
|
|
8
|
+
};
|
|
9
|
+
installCatch((runEffects) => (effects, checkPending = placeholderShown.has(effects)) => {
|
|
10
|
+
if (checkPending || caughtError.has(effects)) {
|
|
11
|
+
let i = 0;
|
|
12
|
+
let fn;
|
|
13
|
+
let scope;
|
|
14
|
+
let branch;
|
|
15
|
+
for (; i < effects.length;) {
|
|
16
|
+
fn = effects[i++];
|
|
17
|
+
scope = effects[i++];
|
|
18
|
+
if ((branch = scope["#ClosestBranch"])?.["#Gen"] !== 0 && !(checkPending && handlePendingTry(fn, scope, branch))) fn(scope);
|
|
19
|
+
}
|
|
20
|
+
} else runEffects(effects);
|
|
21
|
+
}, (runRender) => (render) => {
|
|
22
|
+
try {
|
|
23
|
+
let branch = render[Scope][ClosestBranch];
|
|
24
|
+
while (branch) {
|
|
25
|
+
if (branch["#PendingRenders"]) {
|
|
26
|
+
render[Pending] = 1;
|
|
27
|
+
return branch[PendingRenders].push(render);
|
|
28
|
+
}
|
|
29
|
+
branch = branch[ParentBranch];
|
|
30
|
+
}
|
|
31
|
+
render[Pending] = 0;
|
|
32
|
+
runRender(render);
|
|
33
|
+
} catch (error) {
|
|
34
|
+
renderCatch(render[Scope], error);
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
//#endregion
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const require_control_flow = require("../dom-CiFITSPN.js");
|
|
3
|
+
//#region src/dom/controllable-input.feat.ts
|
|
4
|
+
require_control_flow.controllableScripts[0] = require_control_flow._attr_input_checked_script;
|
|
5
|
+
require_control_flow.controllableScripts[1] = require_control_flow._attr_input_checkedValue_script;
|
|
6
|
+
require_control_flow.controllableScripts[2] = require_control_flow._attr_input_value_script;
|
|
7
|
+
//#endregion
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { R as controllableScripts, S as _attr_input_checkedValue_script, k as _attr_input_value_script, w as _attr_input_checked_script } from "../dom-BJ93mcSe.mjs";
|
|
2
|
+
//#region src/dom/controllable-input.feat.ts
|
|
3
|
+
controllableScripts[0] = _attr_input_checked_script;
|
|
4
|
+
controllableScripts[1] = _attr_input_checkedValue_script;
|
|
5
|
+
controllableScripts[2] = _attr_input_value_script;
|
|
6
|
+
//#endregion
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const require_control_flow = require("../dom-CiFITSPN.js");
|
|
3
|
+
require("./controllable-input.feat.js");
|
|
4
|
+
require("./controllable-open.feat.js");
|
|
5
|
+
require("./controllable-select.feat.js");
|
|
6
|
+
//#region src/dom/controllable.feat.ts
|
|
7
|
+
require_control_flow.controllableRenders.INPUT = require_control_flow._controllable_input;
|
|
8
|
+
require_control_flow.controllableRenders.TEXTAREA = require_control_flow._controllable_textarea;
|
|
9
|
+
require_control_flow.controllableRenders.SELECT = require_control_flow._controllable_select;
|
|
10
|
+
require_control_flow.controllableRenders.DETAILS = require_control_flow.controllableRenders.DIALOG = require_control_flow._controllable_open;
|
|
11
|
+
//#endregion
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { F as _controllable_select, I as _controllable_textarea, L as controllableRenders, N as _controllable_input, P as _controllable_open } from "../dom-BJ93mcSe.mjs";
|
|
2
|
+
import "./controllable-input.feat.mjs";
|
|
3
|
+
import "./controllable-open.feat.mjs";
|
|
4
|
+
import "./controllable-select.feat.mjs";
|
|
5
|
+
//#region src/dom/controllable.feat.ts
|
|
6
|
+
controllableRenders.INPUT = _controllable_input;
|
|
7
|
+
controllableRenders.TEXTAREA = _controllable_textarea;
|
|
8
|
+
controllableRenders.SELECT = _controllable_select;
|
|
9
|
+
controllableRenders.DETAILS = controllableRenders.DIALOG = _controllable_open;
|
|
10
|
+
//#endregion
|