vintage-frames 0.6.0 → 0.6.2
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/custom-elements.json +1035 -24
- package/dist/components/vf-dialog.d.ts +9 -0
- package/dist/components/vf-number-field.js +1 -1
- package/dist/components/vf-scroll-area.js +9 -1
- package/dist/components/vf-text-field.d.ts +2 -1
- package/dist/components/vf-text-field.js +1 -1
- package/dist/components/vf-window.d.ts +20 -0
- package/dist/components/vf-window.js +43 -3
- package/dist/modal-dialog.d.ts +33 -0
- package/dist/modal-dialog.js +66 -36
- package/dist/position.d.ts +27 -8
- package/dist/position.js +74 -18
- package/dist/text-control.d.ts +8 -1
- package/dist/text-control.js +2 -7
- package/docs/SPEC.md +9 -8
- package/editor/vscode.html-custom-data.json +157 -2
- package/editor/web-types.json +317 -3
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -94,6 +94,21 @@
|
|
|
94
94
|
"name": "VfPositioned",
|
|
95
95
|
"module": "src/position.ts"
|
|
96
96
|
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"kind": "field",
|
|
100
|
+
"name": "fixed",
|
|
101
|
+
"type": {
|
|
102
|
+
"text": "boolean"
|
|
103
|
+
},
|
|
104
|
+
"default": "false",
|
|
105
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
106
|
+
"attribute": "fixed",
|
|
107
|
+
"reflects": true,
|
|
108
|
+
"inheritedFrom": {
|
|
109
|
+
"name": "VfPositioned",
|
|
110
|
+
"module": "src/position.ts"
|
|
111
|
+
}
|
|
97
112
|
}
|
|
98
113
|
],
|
|
99
114
|
"attributes": [
|
|
@@ -138,6 +153,19 @@
|
|
|
138
153
|
"name": "VfPositioned",
|
|
139
154
|
"module": "src/position.ts"
|
|
140
155
|
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "fixed",
|
|
159
|
+
"type": {
|
|
160
|
+
"text": "boolean"
|
|
161
|
+
},
|
|
162
|
+
"default": "false",
|
|
163
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
164
|
+
"fieldName": "fixed",
|
|
165
|
+
"inheritedFrom": {
|
|
166
|
+
"name": "VfPositioned",
|
|
167
|
+
"module": "src/position.ts"
|
|
168
|
+
}
|
|
141
169
|
}
|
|
142
170
|
],
|
|
143
171
|
"mixins": [
|
|
@@ -405,6 +433,21 @@
|
|
|
405
433
|
"module": "src/position.ts"
|
|
406
434
|
}
|
|
407
435
|
},
|
|
436
|
+
{
|
|
437
|
+
"kind": "field",
|
|
438
|
+
"name": "fixed",
|
|
439
|
+
"type": {
|
|
440
|
+
"text": "boolean"
|
|
441
|
+
},
|
|
442
|
+
"default": "false",
|
|
443
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
444
|
+
"attribute": "fixed",
|
|
445
|
+
"reflects": true,
|
|
446
|
+
"inheritedFrom": {
|
|
447
|
+
"name": "VfPositioned",
|
|
448
|
+
"module": "src/position.ts"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
408
451
|
{
|
|
409
452
|
"kind": "field",
|
|
410
453
|
"name": "bridgedAriaAttributes",
|
|
@@ -1051,6 +1094,19 @@
|
|
|
1051
1094
|
"module": "src/position.ts"
|
|
1052
1095
|
}
|
|
1053
1096
|
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "fixed",
|
|
1099
|
+
"type": {
|
|
1100
|
+
"text": "boolean"
|
|
1101
|
+
},
|
|
1102
|
+
"default": "false",
|
|
1103
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
1104
|
+
"fieldName": "fixed",
|
|
1105
|
+
"inheritedFrom": {
|
|
1106
|
+
"name": "VfPositioned",
|
|
1107
|
+
"module": "src/position.ts"
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1054
1110
|
{
|
|
1055
1111
|
"name": "description",
|
|
1056
1112
|
"type": {
|
|
@@ -1351,6 +1407,21 @@
|
|
|
1351
1407
|
"module": "src/position.ts"
|
|
1352
1408
|
}
|
|
1353
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
"kind": "field",
|
|
1412
|
+
"name": "fixed",
|
|
1413
|
+
"type": {
|
|
1414
|
+
"text": "boolean"
|
|
1415
|
+
},
|
|
1416
|
+
"default": "false",
|
|
1417
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
1418
|
+
"attribute": "fixed",
|
|
1419
|
+
"reflects": true,
|
|
1420
|
+
"inheritedFrom": {
|
|
1421
|
+
"name": "VfPositioned",
|
|
1422
|
+
"module": "src/position.ts"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1354
1425
|
{
|
|
1355
1426
|
"kind": "field",
|
|
1356
1427
|
"name": "externallyCoordinated",
|
|
@@ -1904,6 +1975,19 @@
|
|
|
1904
1975
|
"module": "src/position.ts"
|
|
1905
1976
|
}
|
|
1906
1977
|
},
|
|
1978
|
+
{
|
|
1979
|
+
"name": "fixed",
|
|
1980
|
+
"type": {
|
|
1981
|
+
"text": "boolean"
|
|
1982
|
+
},
|
|
1983
|
+
"default": "false",
|
|
1984
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
1985
|
+
"fieldName": "fixed",
|
|
1986
|
+
"inheritedFrom": {
|
|
1987
|
+
"name": "VfPositioned",
|
|
1988
|
+
"module": "src/position.ts"
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1907
1991
|
{
|
|
1908
1992
|
"name": "disabled",
|
|
1909
1993
|
"type": {
|
|
@@ -2126,6 +2210,21 @@
|
|
|
2126
2210
|
"name": "VfPositioned",
|
|
2127
2211
|
"module": "src/position.ts"
|
|
2128
2212
|
}
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"kind": "field",
|
|
2216
|
+
"name": "fixed",
|
|
2217
|
+
"type": {
|
|
2218
|
+
"text": "boolean"
|
|
2219
|
+
},
|
|
2220
|
+
"default": "false",
|
|
2221
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
2222
|
+
"attribute": "fixed",
|
|
2223
|
+
"reflects": true,
|
|
2224
|
+
"inheritedFrom": {
|
|
2225
|
+
"name": "VfPositioned",
|
|
2226
|
+
"module": "src/position.ts"
|
|
2227
|
+
}
|
|
2129
2228
|
}
|
|
2130
2229
|
],
|
|
2131
2230
|
"attributes": [
|
|
@@ -2192,6 +2291,19 @@
|
|
|
2192
2291
|
"name": "VfPositioned",
|
|
2193
2292
|
"module": "src/position.ts"
|
|
2194
2293
|
}
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"name": "fixed",
|
|
2297
|
+
"type": {
|
|
2298
|
+
"text": "boolean"
|
|
2299
|
+
},
|
|
2300
|
+
"default": "false",
|
|
2301
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
2302
|
+
"fieldName": "fixed",
|
|
2303
|
+
"inheritedFrom": {
|
|
2304
|
+
"name": "VfPositioned",
|
|
2305
|
+
"module": "src/position.ts"
|
|
2306
|
+
}
|
|
2195
2307
|
}
|
|
2196
2308
|
],
|
|
2197
2309
|
"mixins": [
|
|
@@ -2752,6 +2864,21 @@
|
|
|
2752
2864
|
"name": "VfPositioned",
|
|
2753
2865
|
"module": "src/position.ts"
|
|
2754
2866
|
}
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"kind": "field",
|
|
2870
|
+
"name": "fixed",
|
|
2871
|
+
"type": {
|
|
2872
|
+
"text": "boolean"
|
|
2873
|
+
},
|
|
2874
|
+
"default": "false",
|
|
2875
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
2876
|
+
"attribute": "fixed",
|
|
2877
|
+
"reflects": true,
|
|
2878
|
+
"inheritedFrom": {
|
|
2879
|
+
"name": "VfPositioned",
|
|
2880
|
+
"module": "src/position.ts"
|
|
2881
|
+
}
|
|
2755
2882
|
}
|
|
2756
2883
|
],
|
|
2757
2884
|
"events": [
|
|
@@ -2814,6 +2941,19 @@
|
|
|
2814
2941
|
"name": "VfPositioned",
|
|
2815
2942
|
"module": "src/position.ts"
|
|
2816
2943
|
}
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"name": "fixed",
|
|
2947
|
+
"type": {
|
|
2948
|
+
"text": "boolean"
|
|
2949
|
+
},
|
|
2950
|
+
"default": "false",
|
|
2951
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
2952
|
+
"fieldName": "fixed",
|
|
2953
|
+
"inheritedFrom": {
|
|
2954
|
+
"name": "VfPositioned",
|
|
2955
|
+
"module": "src/position.ts"
|
|
2956
|
+
}
|
|
2817
2957
|
}
|
|
2818
2958
|
],
|
|
2819
2959
|
"mixins": [
|
|
@@ -2855,7 +2995,7 @@
|
|
|
2855
2995
|
"declarations": [
|
|
2856
2996
|
{
|
|
2857
2997
|
"kind": "class",
|
|
2858
|
-
"description": "`<vf-dialog>` — the System 7 modal dialog shell.\n\nTwo chromes, one modal lifecycle (native `<dialog>` for top-layer rendering\nand focus trapping, with a fully transparent backdrop — no dimming). Both\nare the same dBoxProc double frame — 1px outer rule, 2px gap, 2px inner\nband, no shadow (vfModalFrame):\n\n- **Default:** the movable modal (movableDBoxProc) — the striped title bar\n set into the top of that frame, with a centered title over a white body.\n Drag the title bar to move it. `closable` adds the standard close box\n (left of the bar) — the HIG's own figures disagree on whether a movable\n modal carries one (Figure 5-1 says yes, Figure 6-1 and the Chapter 6 text\n say no), so the component enables either reading rather than enforcing\n one.\n- **`frame=\"plain\"`:** the modal dialog box — the bare frame, no title bar —\n and immovable, like the original. A `heading` renders as a centered\n display-face heading at the top of the body (the reference art's \"Dialog\n title\"); `closable` is ignored, there being no bar to carry the widget.\n\nOpen it with `show()` (or set the `open` attribute/property); close with\n`close()`. Escape closes it and fires `vf-close` with\n`{ reason: 'escape' }`; the close box and programmatic closing fire\n`{ reason: 'close' }`. With `light-dismiss`, a click outside the frame\ncloses it too, with `{ reason: 'outside' }` — for the About box; off by\ndefault, since the classic modal ignored an outside click.",
|
|
2998
|
+
"description": "`<vf-dialog>` — the System 7 modal dialog shell.\n\nTwo chromes, one modal lifecycle (native `<dialog>` for top-layer rendering\nand focus trapping, with a fully transparent backdrop — no dimming). Both\nare the same dBoxProc double frame — 1px outer rule, 2px gap, 2px inner\nband, no shadow (vfModalFrame):\n\n- **Default:** the movable modal (movableDBoxProc) — the striped title bar\n set into the top of that frame, with a centered title over a white body.\n Drag the title bar to move it. `closable` adds the standard close box\n (left of the bar) — the HIG's own figures disagree on whether a movable\n modal carries one (Figure 5-1 says yes, Figure 6-1 and the Chapter 6 text\n say no), so the component enables either reading rather than enforcing\n one.\n- **`frame=\"plain\"`:** the modal dialog box — the bare frame, no title bar —\n and immovable, like the original. A `heading` renders as a centered\n display-face heading at the top of the body (the reference art's \"Dialog\n title\"); `closable` is ignored, there being no bar to carry the widget.\n\nOpen it with `show()` (or set the `open` attribute/property); close with\n`close()`. Escape closes it and fires `vf-close` with\n`{ reason: 'escape' }`; the close box and programmatic closing fire\n`{ reason: 'close' }`. With `light-dismiss`, a click outside the frame\ncloses it too, with `{ reason: 'outside' }` — for the About box; off by\ndefault, since the classic modal ignored an outside click.\n\nKeyboard, the classic Dialog Manager's two rules (VfModalDialog):\non open, focus goes to the first text-entry control — a slotted control\nwith `autofocus` first — or, with none, to the default button\n(`vf-button variant=\"default\"`). Return or Enter activates the default\nbutton from anywhere in the dialog, a focused Cancel included; Space\npresses the focused control. A link keeps its own Enter, and in a\nmulti-line editor Return inserts the newline while the keypad's Enter\nactivates the button.",
|
|
2859
2999
|
"name": "VfDialog",
|
|
2860
3000
|
"cssProperties": [
|
|
2861
3001
|
{
|
|
@@ -3239,11 +3379,64 @@
|
|
|
3239
3379
|
},
|
|
3240
3380
|
{
|
|
3241
3381
|
"kind": "field",
|
|
3242
|
-
"name": "#
|
|
3382
|
+
"name": "#openListeners",
|
|
3243
3383
|
"privacy": "private",
|
|
3244
3384
|
"readonly": true,
|
|
3245
|
-
"default": "new DocumentListenersController(this, () => [ [this._dialog, 'pointerdown', this.#onDialogPointerDown], [this._dialog, 'pointerup', this.#onDialogPointerUp], [this._dialog, 'pointercancel', this.#onDialogPointerCancel], ])",
|
|
3246
|
-
"description": "The
|
|
3385
|
+
"default": "new DocumentListenersController(this, () => [ [this._dialog, 'pointerdown', this.#onDialogPointerDown], [this._dialog, 'pointerup', this.#onDialogPointerUp], [this._dialog, 'pointercancel', this.#onDialogPointerCancel], [this._dialog, 'keydown', this.#onDialogKeydown], ])",
|
|
3386
|
+
"description": "The while-open listeners, on the `<dialog>` itself: the light-dismiss\npointer trio and the Return/Enter routing.\n\nLight dismiss: the `::backdrop` hit-tests as its dialog, and the frame the\nsubclass renders fills the dialog's box, so the dialog is an event's\n*target* only when the pointer was outside the frame — no rect arithmetic,\nno composedPath. Attached whether or not lightDismiss is set: the\nhandlers read the property at the release, so it can be toggled on an\nopen dialog.",
|
|
3387
|
+
"inheritedFrom": {
|
|
3388
|
+
"name": "VfModalDialog",
|
|
3389
|
+
"module": "src/modal-dialog.ts"
|
|
3390
|
+
}
|
|
3391
|
+
},
|
|
3392
|
+
{
|
|
3393
|
+
"kind": "field",
|
|
3394
|
+
"name": "defaultButton",
|
|
3395
|
+
"type": {
|
|
3396
|
+
"text": "HTMLElement | null"
|
|
3397
|
+
},
|
|
3398
|
+
"privacy": "protected",
|
|
3399
|
+
"description": "The dialog's default button — the one wearing the bold ring\n(`vf-button[variant=\"default\"]`) — or null with none, or none enabled.\nLooked for among the slotted content first, then in the shadow tree, so a\nconsumer's own modal that renders its buttons itself is covered too.\nOverride to name it some other way.",
|
|
3400
|
+
"readonly": true,
|
|
3401
|
+
"inheritedFrom": {
|
|
3402
|
+
"name": "VfModalDialog",
|
|
3403
|
+
"module": "src/modal-dialog.ts"
|
|
3404
|
+
}
|
|
3405
|
+
},
|
|
3406
|
+
{
|
|
3407
|
+
"kind": "field",
|
|
3408
|
+
"name": "initialFocusTarget",
|
|
3409
|
+
"type": {
|
|
3410
|
+
"text": "HTMLElement | null"
|
|
3411
|
+
},
|
|
3412
|
+
"privacy": "protected",
|
|
3413
|
+
"description": "Where focus lands on open. The classic Dialog Manager put the insertion\npoint in the first editable text item and gave nothing else focus at all;\nthe web needs a focused control for the keyboard to have anywhere to be,\nso with no text field the default button takes it (which is also what\nmakes Return and Space work there without a Tab). In order:\n\n1. a slotted control carrying `autofocus` — the author's say;\n2. the first enabled text-entry control (`vf-text-field`,\n `vf-number-field`, `vf-text-area`, or a native text input/textarea);\n3. the defaultButton;\n4. null — leave the browser's own choice alone.\n\nLeft to itself, `showModal()` focuses the first focusable thing in flat\ntree order, which for a Cancel/OK row is Cancel, and for a body with a\nlink in it is the link — so Return did the one thing a classic dialog's\nReturn never did. Override to choose differently.",
|
|
3414
|
+
"readonly": true,
|
|
3415
|
+
"inheritedFrom": {
|
|
3416
|
+
"name": "VfModalDialog",
|
|
3417
|
+
"module": "src/modal-dialog.ts"
|
|
3418
|
+
}
|
|
3419
|
+
},
|
|
3420
|
+
{
|
|
3421
|
+
"kind": "method",
|
|
3422
|
+
"name": "#focusInitial",
|
|
3423
|
+
"privacy": "private",
|
|
3424
|
+
"return": {
|
|
3425
|
+
"type": {
|
|
3426
|
+
"text": "void"
|
|
3427
|
+
}
|
|
3428
|
+
},
|
|
3429
|
+
"description": "Hand focus to initialFocusTarget, right after `showModal()`'s own\nfocusing steps have run (so this is the last word, not a race).",
|
|
3430
|
+
"inheritedFrom": {
|
|
3431
|
+
"name": "VfModalDialog",
|
|
3432
|
+
"module": "src/modal-dialog.ts"
|
|
3433
|
+
}
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
"kind": "field",
|
|
3437
|
+
"name": "#onDialogKeydown",
|
|
3438
|
+
"privacy": "private",
|
|
3439
|
+
"description": "Return and Enter activate the default button from anywhere in the\ndialog, the way the classic Dialog Manager routed them — including from a\nfocused Cancel button, where Space is the key that presses the focused\ncontrol. Bubble phase, and only an uncancelled press: a control that\ntakes Enter for itself (`vf-select`'s list, `vf-list`, an icon's rename, a\ntext field whose form ran its implicit submission) cancels the keydown\nand is left alone. Two more keep their own Enter: a link, which follows\nit, and a multi-line editor, where Return inserts a newline and only the\nkeypad's Enter key fires the button — the same split a TextEdit item in a\nclassic dialog drew between the two keys.",
|
|
3247
3440
|
"inheritedFrom": {
|
|
3248
3441
|
"name": "VfModalDialog",
|
|
3249
3442
|
"module": "src/modal-dialog.ts"
|
|
@@ -3817,6 +4010,21 @@
|
|
|
3817
4010
|
"name": "VfPositioned",
|
|
3818
4011
|
"module": "src/position.ts"
|
|
3819
4012
|
}
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"kind": "field",
|
|
4016
|
+
"name": "fixed",
|
|
4017
|
+
"type": {
|
|
4018
|
+
"text": "boolean"
|
|
4019
|
+
},
|
|
4020
|
+
"default": "false",
|
|
4021
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
4022
|
+
"attribute": "fixed",
|
|
4023
|
+
"reflects": true,
|
|
4024
|
+
"inheritedFrom": {
|
|
4025
|
+
"name": "VfPositioned",
|
|
4026
|
+
"module": "src/position.ts"
|
|
4027
|
+
}
|
|
3820
4028
|
}
|
|
3821
4029
|
],
|
|
3822
4030
|
"attributes": [
|
|
@@ -3852,6 +4060,19 @@
|
|
|
3852
4060
|
"name": "VfPositioned",
|
|
3853
4061
|
"module": "src/position.ts"
|
|
3854
4062
|
}
|
|
4063
|
+
},
|
|
4064
|
+
{
|
|
4065
|
+
"name": "fixed",
|
|
4066
|
+
"type": {
|
|
4067
|
+
"text": "boolean"
|
|
4068
|
+
},
|
|
4069
|
+
"default": "false",
|
|
4070
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
4071
|
+
"fieldName": "fixed",
|
|
4072
|
+
"inheritedFrom": {
|
|
4073
|
+
"name": "VfPositioned",
|
|
4074
|
+
"module": "src/position.ts"
|
|
4075
|
+
}
|
|
3855
4076
|
}
|
|
3856
4077
|
],
|
|
3857
4078
|
"mixins": [
|
|
@@ -4031,6 +4252,21 @@
|
|
|
4031
4252
|
"name": "VfPositioned",
|
|
4032
4253
|
"module": "src/position.ts"
|
|
4033
4254
|
}
|
|
4255
|
+
},
|
|
4256
|
+
{
|
|
4257
|
+
"kind": "field",
|
|
4258
|
+
"name": "fixed",
|
|
4259
|
+
"type": {
|
|
4260
|
+
"text": "boolean"
|
|
4261
|
+
},
|
|
4262
|
+
"default": "false",
|
|
4263
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
4264
|
+
"attribute": "fixed",
|
|
4265
|
+
"reflects": true,
|
|
4266
|
+
"inheritedFrom": {
|
|
4267
|
+
"name": "VfPositioned",
|
|
4268
|
+
"module": "src/position.ts"
|
|
4269
|
+
}
|
|
4034
4270
|
}
|
|
4035
4271
|
],
|
|
4036
4272
|
"attributes": [
|
|
@@ -4119,6 +4355,19 @@
|
|
|
4119
4355
|
"name": "VfPositioned",
|
|
4120
4356
|
"module": "src/position.ts"
|
|
4121
4357
|
}
|
|
4358
|
+
},
|
|
4359
|
+
{
|
|
4360
|
+
"name": "fixed",
|
|
4361
|
+
"type": {
|
|
4362
|
+
"text": "boolean"
|
|
4363
|
+
},
|
|
4364
|
+
"default": "false",
|
|
4365
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
4366
|
+
"fieldName": "fixed",
|
|
4367
|
+
"inheritedFrom": {
|
|
4368
|
+
"name": "VfPositioned",
|
|
4369
|
+
"module": "src/position.ts"
|
|
4370
|
+
}
|
|
4122
4371
|
}
|
|
4123
4372
|
],
|
|
4124
4373
|
"mixins": [
|
|
@@ -4746,6 +4995,21 @@
|
|
|
4746
4995
|
"name": "VfPositioned",
|
|
4747
4996
|
"module": "src/position.ts"
|
|
4748
4997
|
}
|
|
4998
|
+
},
|
|
4999
|
+
{
|
|
5000
|
+
"kind": "field",
|
|
5001
|
+
"name": "fixed",
|
|
5002
|
+
"type": {
|
|
5003
|
+
"text": "boolean"
|
|
5004
|
+
},
|
|
5005
|
+
"default": "false",
|
|
5006
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5007
|
+
"attribute": "fixed",
|
|
5008
|
+
"reflects": true,
|
|
5009
|
+
"inheritedFrom": {
|
|
5010
|
+
"name": "VfPositioned",
|
|
5011
|
+
"module": "src/position.ts"
|
|
5012
|
+
}
|
|
4749
5013
|
}
|
|
4750
5014
|
],
|
|
4751
5015
|
"events": [
|
|
@@ -4883,6 +5147,19 @@
|
|
|
4883
5147
|
"name": "VfPositioned",
|
|
4884
5148
|
"module": "src/position.ts"
|
|
4885
5149
|
}
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"name": "fixed",
|
|
5153
|
+
"type": {
|
|
5154
|
+
"text": "boolean"
|
|
5155
|
+
},
|
|
5156
|
+
"default": "false",
|
|
5157
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5158
|
+
"fieldName": "fixed",
|
|
5159
|
+
"inheritedFrom": {
|
|
5160
|
+
"name": "VfPositioned",
|
|
5161
|
+
"module": "src/position.ts"
|
|
5162
|
+
}
|
|
4886
5163
|
}
|
|
4887
5164
|
],
|
|
4888
5165
|
"mixins": [
|
|
@@ -5058,6 +5335,21 @@
|
|
|
5058
5335
|
"name": "VfPositioned",
|
|
5059
5336
|
"module": "src/position.ts"
|
|
5060
5337
|
}
|
|
5338
|
+
},
|
|
5339
|
+
{
|
|
5340
|
+
"kind": "field",
|
|
5341
|
+
"name": "fixed",
|
|
5342
|
+
"type": {
|
|
5343
|
+
"text": "boolean"
|
|
5344
|
+
},
|
|
5345
|
+
"default": "false",
|
|
5346
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5347
|
+
"attribute": "fixed",
|
|
5348
|
+
"reflects": true,
|
|
5349
|
+
"inheritedFrom": {
|
|
5350
|
+
"name": "VfPositioned",
|
|
5351
|
+
"module": "src/position.ts"
|
|
5352
|
+
}
|
|
5061
5353
|
}
|
|
5062
5354
|
],
|
|
5063
5355
|
"attributes": [
|
|
@@ -5100,6 +5392,19 @@
|
|
|
5100
5392
|
"name": "VfPositioned",
|
|
5101
5393
|
"module": "src/position.ts"
|
|
5102
5394
|
}
|
|
5395
|
+
},
|
|
5396
|
+
{
|
|
5397
|
+
"name": "fixed",
|
|
5398
|
+
"type": {
|
|
5399
|
+
"text": "boolean"
|
|
5400
|
+
},
|
|
5401
|
+
"default": "false",
|
|
5402
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5403
|
+
"fieldName": "fixed",
|
|
5404
|
+
"inheritedFrom": {
|
|
5405
|
+
"name": "VfPositioned",
|
|
5406
|
+
"module": "src/position.ts"
|
|
5407
|
+
}
|
|
5103
5408
|
}
|
|
5104
5409
|
],
|
|
5105
5410
|
"mixins": [
|
|
@@ -5337,6 +5642,21 @@
|
|
|
5337
5642
|
"name": "VfPositioned",
|
|
5338
5643
|
"module": "src/position.ts"
|
|
5339
5644
|
}
|
|
5645
|
+
},
|
|
5646
|
+
{
|
|
5647
|
+
"kind": "field",
|
|
5648
|
+
"name": "fixed",
|
|
5649
|
+
"type": {
|
|
5650
|
+
"text": "boolean"
|
|
5651
|
+
},
|
|
5652
|
+
"default": "false",
|
|
5653
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5654
|
+
"attribute": "fixed",
|
|
5655
|
+
"reflects": true,
|
|
5656
|
+
"inheritedFrom": {
|
|
5657
|
+
"name": "VfPositioned",
|
|
5658
|
+
"module": "src/position.ts"
|
|
5659
|
+
}
|
|
5340
5660
|
}
|
|
5341
5661
|
],
|
|
5342
5662
|
"attributes": [
|
|
@@ -5412,6 +5732,19 @@
|
|
|
5412
5732
|
"name": "VfPositioned",
|
|
5413
5733
|
"module": "src/position.ts"
|
|
5414
5734
|
}
|
|
5735
|
+
},
|
|
5736
|
+
{
|
|
5737
|
+
"name": "fixed",
|
|
5738
|
+
"type": {
|
|
5739
|
+
"text": "boolean"
|
|
5740
|
+
},
|
|
5741
|
+
"default": "false",
|
|
5742
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5743
|
+
"fieldName": "fixed",
|
|
5744
|
+
"inheritedFrom": {
|
|
5745
|
+
"name": "VfPositioned",
|
|
5746
|
+
"module": "src/position.ts"
|
|
5747
|
+
}
|
|
5415
5748
|
}
|
|
5416
5749
|
],
|
|
5417
5750
|
"mixins": [
|
|
@@ -5564,6 +5897,21 @@
|
|
|
5564
5897
|
"name": "VfPositioned",
|
|
5565
5898
|
"module": "src/position.ts"
|
|
5566
5899
|
}
|
|
5900
|
+
},
|
|
5901
|
+
{
|
|
5902
|
+
"kind": "field",
|
|
5903
|
+
"name": "fixed",
|
|
5904
|
+
"type": {
|
|
5905
|
+
"text": "boolean"
|
|
5906
|
+
},
|
|
5907
|
+
"default": "false",
|
|
5908
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5909
|
+
"attribute": "fixed",
|
|
5910
|
+
"reflects": true,
|
|
5911
|
+
"inheritedFrom": {
|
|
5912
|
+
"name": "VfPositioned",
|
|
5913
|
+
"module": "src/position.ts"
|
|
5914
|
+
}
|
|
5567
5915
|
}
|
|
5568
5916
|
],
|
|
5569
5917
|
"attributes": [
|
|
@@ -5617,6 +5965,19 @@
|
|
|
5617
5965
|
"name": "VfPositioned",
|
|
5618
5966
|
"module": "src/position.ts"
|
|
5619
5967
|
}
|
|
5968
|
+
},
|
|
5969
|
+
{
|
|
5970
|
+
"name": "fixed",
|
|
5971
|
+
"type": {
|
|
5972
|
+
"text": "boolean"
|
|
5973
|
+
},
|
|
5974
|
+
"default": "false",
|
|
5975
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
5976
|
+
"fieldName": "fixed",
|
|
5977
|
+
"inheritedFrom": {
|
|
5978
|
+
"name": "VfPositioned",
|
|
5979
|
+
"module": "src/position.ts"
|
|
5980
|
+
}
|
|
5620
5981
|
}
|
|
5621
5982
|
],
|
|
5622
5983
|
"mixins": [
|
|
@@ -6083,6 +6444,21 @@
|
|
|
6083
6444
|
"name": "VfPositioned",
|
|
6084
6445
|
"module": "src/position.ts"
|
|
6085
6446
|
}
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
"kind": "field",
|
|
6450
|
+
"name": "fixed",
|
|
6451
|
+
"type": {
|
|
6452
|
+
"text": "boolean"
|
|
6453
|
+
},
|
|
6454
|
+
"default": "false",
|
|
6455
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
6456
|
+
"attribute": "fixed",
|
|
6457
|
+
"reflects": true,
|
|
6458
|
+
"inheritedFrom": {
|
|
6459
|
+
"name": "VfPositioned",
|
|
6460
|
+
"module": "src/position.ts"
|
|
6461
|
+
}
|
|
6086
6462
|
}
|
|
6087
6463
|
],
|
|
6088
6464
|
"events": [
|
|
@@ -6151,6 +6527,19 @@
|
|
|
6151
6527
|
"name": "VfPositioned",
|
|
6152
6528
|
"module": "src/position.ts"
|
|
6153
6529
|
}
|
|
6530
|
+
},
|
|
6531
|
+
{
|
|
6532
|
+
"name": "fixed",
|
|
6533
|
+
"type": {
|
|
6534
|
+
"text": "boolean"
|
|
6535
|
+
},
|
|
6536
|
+
"default": "false",
|
|
6537
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
6538
|
+
"fieldName": "fixed",
|
|
6539
|
+
"inheritedFrom": {
|
|
6540
|
+
"name": "VfPositioned",
|
|
6541
|
+
"module": "src/position.ts"
|
|
6542
|
+
}
|
|
6154
6543
|
}
|
|
6155
6544
|
],
|
|
6156
6545
|
"mixins": [
|
|
@@ -6507,6 +6896,21 @@
|
|
|
6507
6896
|
"name": "VfPositioned",
|
|
6508
6897
|
"module": "src/position.ts"
|
|
6509
6898
|
}
|
|
6899
|
+
},
|
|
6900
|
+
{
|
|
6901
|
+
"kind": "field",
|
|
6902
|
+
"name": "fixed",
|
|
6903
|
+
"type": {
|
|
6904
|
+
"text": "boolean"
|
|
6905
|
+
},
|
|
6906
|
+
"default": "false",
|
|
6907
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
6908
|
+
"attribute": "fixed",
|
|
6909
|
+
"reflects": true,
|
|
6910
|
+
"inheritedFrom": {
|
|
6911
|
+
"name": "VfPositioned",
|
|
6912
|
+
"module": "src/position.ts"
|
|
6913
|
+
}
|
|
6510
6914
|
}
|
|
6511
6915
|
],
|
|
6512
6916
|
"attributes": [
|
|
@@ -6560,6 +6964,19 @@
|
|
|
6560
6964
|
"name": "VfPositioned",
|
|
6561
6965
|
"module": "src/position.ts"
|
|
6562
6966
|
}
|
|
6967
|
+
},
|
|
6968
|
+
{
|
|
6969
|
+
"name": "fixed",
|
|
6970
|
+
"type": {
|
|
6971
|
+
"text": "boolean"
|
|
6972
|
+
},
|
|
6973
|
+
"default": "false",
|
|
6974
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
6975
|
+
"fieldName": "fixed",
|
|
6976
|
+
"inheritedFrom": {
|
|
6977
|
+
"name": "VfPositioned",
|
|
6978
|
+
"module": "src/position.ts"
|
|
6979
|
+
}
|
|
6563
6980
|
}
|
|
6564
6981
|
],
|
|
6565
6982
|
"mixins": [
|
|
@@ -6910,6 +7327,21 @@
|
|
|
6910
7327
|
"name": "VfPositioned",
|
|
6911
7328
|
"module": "src/position.ts"
|
|
6912
7329
|
}
|
|
7330
|
+
},
|
|
7331
|
+
{
|
|
7332
|
+
"kind": "field",
|
|
7333
|
+
"name": "fixed",
|
|
7334
|
+
"type": {
|
|
7335
|
+
"text": "boolean"
|
|
7336
|
+
},
|
|
7337
|
+
"default": "false",
|
|
7338
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
7339
|
+
"attribute": "fixed",
|
|
7340
|
+
"reflects": true,
|
|
7341
|
+
"inheritedFrom": {
|
|
7342
|
+
"name": "VfPositioned",
|
|
7343
|
+
"module": "src/position.ts"
|
|
7344
|
+
}
|
|
6913
7345
|
}
|
|
6914
7346
|
],
|
|
6915
7347
|
"events": [
|
|
@@ -6995,6 +7427,19 @@
|
|
|
6995
7427
|
"name": "VfPositioned",
|
|
6996
7428
|
"module": "src/position.ts"
|
|
6997
7429
|
}
|
|
7430
|
+
},
|
|
7431
|
+
{
|
|
7432
|
+
"name": "fixed",
|
|
7433
|
+
"type": {
|
|
7434
|
+
"text": "boolean"
|
|
7435
|
+
},
|
|
7436
|
+
"default": "false",
|
|
7437
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
7438
|
+
"fieldName": "fixed",
|
|
7439
|
+
"inheritedFrom": {
|
|
7440
|
+
"name": "VfPositioned",
|
|
7441
|
+
"module": "src/position.ts"
|
|
7442
|
+
}
|
|
6998
7443
|
}
|
|
6999
7444
|
],
|
|
7000
7445
|
"mixins": [
|
|
@@ -7455,6 +7900,21 @@
|
|
|
7455
7900
|
"name": "VfPositioned",
|
|
7456
7901
|
"module": "src/position.ts"
|
|
7457
7902
|
}
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
"kind": "field",
|
|
7906
|
+
"name": "fixed",
|
|
7907
|
+
"type": {
|
|
7908
|
+
"text": "boolean"
|
|
7909
|
+
},
|
|
7910
|
+
"default": "false",
|
|
7911
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
7912
|
+
"attribute": "fixed",
|
|
7913
|
+
"reflects": true,
|
|
7914
|
+
"inheritedFrom": {
|
|
7915
|
+
"name": "VfPositioned",
|
|
7916
|
+
"module": "src/position.ts"
|
|
7917
|
+
}
|
|
7458
7918
|
}
|
|
7459
7919
|
],
|
|
7460
7920
|
"attributes": [
|
|
@@ -7508,6 +7968,19 @@
|
|
|
7508
7968
|
"name": "VfPositioned",
|
|
7509
7969
|
"module": "src/position.ts"
|
|
7510
7970
|
}
|
|
7971
|
+
},
|
|
7972
|
+
{
|
|
7973
|
+
"name": "fixed",
|
|
7974
|
+
"type": {
|
|
7975
|
+
"text": "boolean"
|
|
7976
|
+
},
|
|
7977
|
+
"default": "false",
|
|
7978
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
7979
|
+
"fieldName": "fixed",
|
|
7980
|
+
"inheritedFrom": {
|
|
7981
|
+
"name": "VfPositioned",
|
|
7982
|
+
"module": "src/position.ts"
|
|
7983
|
+
}
|
|
7511
7984
|
}
|
|
7512
7985
|
],
|
|
7513
7986
|
"mixins": [
|
|
@@ -7803,6 +8276,21 @@
|
|
|
7803
8276
|
"module": "src/position.ts"
|
|
7804
8277
|
}
|
|
7805
8278
|
},
|
|
8279
|
+
{
|
|
8280
|
+
"kind": "field",
|
|
8281
|
+
"name": "fixed",
|
|
8282
|
+
"type": {
|
|
8283
|
+
"text": "boolean"
|
|
8284
|
+
},
|
|
8285
|
+
"default": "false",
|
|
8286
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
8287
|
+
"attribute": "fixed",
|
|
8288
|
+
"reflects": true,
|
|
8289
|
+
"inheritedFrom": {
|
|
8290
|
+
"name": "VfPositioned",
|
|
8291
|
+
"module": "src/position.ts"
|
|
8292
|
+
}
|
|
8293
|
+
},
|
|
7806
8294
|
{
|
|
7807
8295
|
"kind": "field",
|
|
7808
8296
|
"name": "shadowRootOptions",
|
|
@@ -8035,10 +8523,10 @@
|
|
|
8035
8523
|
"privacy": "protected",
|
|
8036
8524
|
"return": {
|
|
8037
8525
|
"type": {
|
|
8038
|
-
"text": "
|
|
8526
|
+
"text": "boolean"
|
|
8039
8527
|
}
|
|
8040
8528
|
},
|
|
8041
|
-
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.",
|
|
8529
|
+
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.\n\nReturns whether a form owner took the press — true even when a disabled\ndefault button meant no submission, since HTML gave the press to the form\neither way. The callers cancel the keydown on true, so a modal shell\n(`VfModalDialog`) sees the press as spoken for and does not also route it\nto the dialog's default button; with no form the press goes on to the\ndialog untouched.",
|
|
8042
8530
|
"inheritedFrom": {
|
|
8043
8531
|
"name": "VfTextControlBase",
|
|
8044
8532
|
"module": "src/text-control.ts"
|
|
@@ -8715,6 +9203,19 @@
|
|
|
8715
9203
|
"module": "src/position.ts"
|
|
8716
9204
|
}
|
|
8717
9205
|
},
|
|
9206
|
+
{
|
|
9207
|
+
"name": "fixed",
|
|
9208
|
+
"type": {
|
|
9209
|
+
"text": "boolean"
|
|
9210
|
+
},
|
|
9211
|
+
"default": "false",
|
|
9212
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
9213
|
+
"fieldName": "fixed",
|
|
9214
|
+
"inheritedFrom": {
|
|
9215
|
+
"name": "VfPositioned",
|
|
9216
|
+
"module": "src/position.ts"
|
|
9217
|
+
}
|
|
9218
|
+
},
|
|
8718
9219
|
{
|
|
8719
9220
|
"name": "value",
|
|
8720
9221
|
"type": {
|
|
@@ -8970,6 +9471,21 @@
|
|
|
8970
9471
|
"name": "VfPositioned",
|
|
8971
9472
|
"module": "src/position.ts"
|
|
8972
9473
|
}
|
|
9474
|
+
},
|
|
9475
|
+
{
|
|
9476
|
+
"kind": "field",
|
|
9477
|
+
"name": "fixed",
|
|
9478
|
+
"type": {
|
|
9479
|
+
"text": "boolean"
|
|
9480
|
+
},
|
|
9481
|
+
"default": "false",
|
|
9482
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
9483
|
+
"attribute": "fixed",
|
|
9484
|
+
"reflects": true,
|
|
9485
|
+
"inheritedFrom": {
|
|
9486
|
+
"name": "VfPositioned",
|
|
9487
|
+
"module": "src/position.ts"
|
|
9488
|
+
}
|
|
8973
9489
|
}
|
|
8974
9490
|
],
|
|
8975
9491
|
"attributes": [
|
|
@@ -9032,6 +9548,19 @@
|
|
|
9032
9548
|
"name": "VfPositioned",
|
|
9033
9549
|
"module": "src/position.ts"
|
|
9034
9550
|
}
|
|
9551
|
+
},
|
|
9552
|
+
{
|
|
9553
|
+
"name": "fixed",
|
|
9554
|
+
"type": {
|
|
9555
|
+
"text": "boolean"
|
|
9556
|
+
},
|
|
9557
|
+
"default": "false",
|
|
9558
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
9559
|
+
"fieldName": "fixed",
|
|
9560
|
+
"inheritedFrom": {
|
|
9561
|
+
"name": "VfPositioned",
|
|
9562
|
+
"module": "src/position.ts"
|
|
9563
|
+
}
|
|
9035
9564
|
}
|
|
9036
9565
|
],
|
|
9037
9566
|
"mixins": [
|
|
@@ -9190,6 +9719,21 @@
|
|
|
9190
9719
|
"name": "VfPositioned",
|
|
9191
9720
|
"module": "src/position.ts"
|
|
9192
9721
|
}
|
|
9722
|
+
},
|
|
9723
|
+
{
|
|
9724
|
+
"kind": "field",
|
|
9725
|
+
"name": "fixed",
|
|
9726
|
+
"type": {
|
|
9727
|
+
"text": "boolean"
|
|
9728
|
+
},
|
|
9729
|
+
"default": "false",
|
|
9730
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
9731
|
+
"attribute": "fixed",
|
|
9732
|
+
"reflects": true,
|
|
9733
|
+
"inheritedFrom": {
|
|
9734
|
+
"name": "VfPositioned",
|
|
9735
|
+
"module": "src/position.ts"
|
|
9736
|
+
}
|
|
9193
9737
|
}
|
|
9194
9738
|
],
|
|
9195
9739
|
"attributes": [
|
|
@@ -9257,6 +9801,19 @@
|
|
|
9257
9801
|
"name": "VfPositioned",
|
|
9258
9802
|
"module": "src/position.ts"
|
|
9259
9803
|
}
|
|
9804
|
+
},
|
|
9805
|
+
{
|
|
9806
|
+
"name": "fixed",
|
|
9807
|
+
"type": {
|
|
9808
|
+
"text": "boolean"
|
|
9809
|
+
},
|
|
9810
|
+
"default": "false",
|
|
9811
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
9812
|
+
"fieldName": "fixed",
|
|
9813
|
+
"inheritedFrom": {
|
|
9814
|
+
"name": "VfPositioned",
|
|
9815
|
+
"module": "src/position.ts"
|
|
9816
|
+
}
|
|
9260
9817
|
}
|
|
9261
9818
|
],
|
|
9262
9819
|
"mixins": [
|
|
@@ -9489,6 +10046,21 @@
|
|
|
9489
10046
|
"name": "VfPositioned",
|
|
9490
10047
|
"module": "src/position.ts"
|
|
9491
10048
|
}
|
|
10049
|
+
},
|
|
10050
|
+
{
|
|
10051
|
+
"kind": "field",
|
|
10052
|
+
"name": "fixed",
|
|
10053
|
+
"type": {
|
|
10054
|
+
"text": "boolean"
|
|
10055
|
+
},
|
|
10056
|
+
"default": "false",
|
|
10057
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
10058
|
+
"attribute": "fixed",
|
|
10059
|
+
"reflects": true,
|
|
10060
|
+
"inheritedFrom": {
|
|
10061
|
+
"name": "VfPositioned",
|
|
10062
|
+
"module": "src/position.ts"
|
|
10063
|
+
}
|
|
9492
10064
|
}
|
|
9493
10065
|
],
|
|
9494
10066
|
"attributes": [
|
|
@@ -9551,6 +10123,19 @@
|
|
|
9551
10123
|
"name": "VfPositioned",
|
|
9552
10124
|
"module": "src/position.ts"
|
|
9553
10125
|
}
|
|
10126
|
+
},
|
|
10127
|
+
{
|
|
10128
|
+
"name": "fixed",
|
|
10129
|
+
"type": {
|
|
10130
|
+
"text": "boolean"
|
|
10131
|
+
},
|
|
10132
|
+
"default": "false",
|
|
10133
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
10134
|
+
"fieldName": "fixed",
|
|
10135
|
+
"inheritedFrom": {
|
|
10136
|
+
"name": "VfPositioned",
|
|
10137
|
+
"module": "src/position.ts"
|
|
10138
|
+
}
|
|
9554
10139
|
}
|
|
9555
10140
|
],
|
|
9556
10141
|
"mixins": [
|
|
@@ -9833,6 +10418,21 @@
|
|
|
9833
10418
|
"module": "src/position.ts"
|
|
9834
10419
|
}
|
|
9835
10420
|
},
|
|
10421
|
+
{
|
|
10422
|
+
"kind": "field",
|
|
10423
|
+
"name": "fixed",
|
|
10424
|
+
"type": {
|
|
10425
|
+
"text": "boolean"
|
|
10426
|
+
},
|
|
10427
|
+
"default": "false",
|
|
10428
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
10429
|
+
"attribute": "fixed",
|
|
10430
|
+
"reflects": true,
|
|
10431
|
+
"inheritedFrom": {
|
|
10432
|
+
"name": "VfPositioned",
|
|
10433
|
+
"module": "src/position.ts"
|
|
10434
|
+
}
|
|
10435
|
+
},
|
|
9836
10436
|
{
|
|
9837
10437
|
"kind": "field",
|
|
9838
10438
|
"name": "formAssociated",
|
|
@@ -10294,6 +10894,19 @@
|
|
|
10294
10894
|
"module": "src/position.ts"
|
|
10295
10895
|
}
|
|
10296
10896
|
},
|
|
10897
|
+
{
|
|
10898
|
+
"name": "fixed",
|
|
10899
|
+
"type": {
|
|
10900
|
+
"text": "boolean"
|
|
10901
|
+
},
|
|
10902
|
+
"default": "false",
|
|
10903
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
10904
|
+
"fieldName": "fixed",
|
|
10905
|
+
"inheritedFrom": {
|
|
10906
|
+
"name": "VfPositioned",
|
|
10907
|
+
"module": "src/position.ts"
|
|
10908
|
+
}
|
|
10909
|
+
},
|
|
10297
10910
|
{
|
|
10298
10911
|
"name": "disabled",
|
|
10299
10912
|
"type": {
|
|
@@ -10552,6 +11165,21 @@
|
|
|
10552
11165
|
"module": "src/position.ts"
|
|
10553
11166
|
}
|
|
10554
11167
|
},
|
|
11168
|
+
{
|
|
11169
|
+
"kind": "field",
|
|
11170
|
+
"name": "fixed",
|
|
11171
|
+
"type": {
|
|
11172
|
+
"text": "boolean"
|
|
11173
|
+
},
|
|
11174
|
+
"default": "false",
|
|
11175
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
11176
|
+
"attribute": "fixed",
|
|
11177
|
+
"reflects": true,
|
|
11178
|
+
"inheritedFrom": {
|
|
11179
|
+
"name": "VfPositioned",
|
|
11180
|
+
"module": "src/position.ts"
|
|
11181
|
+
}
|
|
11182
|
+
},
|
|
10555
11183
|
{
|
|
10556
11184
|
"kind": "field",
|
|
10557
11185
|
"name": "scale",
|
|
@@ -10711,6 +11339,19 @@
|
|
|
10711
11339
|
"name": "VfPositioned",
|
|
10712
11340
|
"module": "src/position.ts"
|
|
10713
11341
|
}
|
|
11342
|
+
},
|
|
11343
|
+
{
|
|
11344
|
+
"name": "fixed",
|
|
11345
|
+
"type": {
|
|
11346
|
+
"text": "boolean"
|
|
11347
|
+
},
|
|
11348
|
+
"default": "false",
|
|
11349
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
11350
|
+
"fieldName": "fixed",
|
|
11351
|
+
"inheritedFrom": {
|
|
11352
|
+
"name": "VfPositioned",
|
|
11353
|
+
"module": "src/position.ts"
|
|
11354
|
+
}
|
|
10714
11355
|
}
|
|
10715
11356
|
],
|
|
10716
11357
|
"mixins": [
|
|
@@ -10935,6 +11576,21 @@
|
|
|
10935
11576
|
"name": "VfPositioned",
|
|
10936
11577
|
"module": "src/position.ts"
|
|
10937
11578
|
}
|
|
11579
|
+
},
|
|
11580
|
+
{
|
|
11581
|
+
"kind": "field",
|
|
11582
|
+
"name": "fixed",
|
|
11583
|
+
"type": {
|
|
11584
|
+
"text": "boolean"
|
|
11585
|
+
},
|
|
11586
|
+
"default": "false",
|
|
11587
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
11588
|
+
"attribute": "fixed",
|
|
11589
|
+
"reflects": true,
|
|
11590
|
+
"inheritedFrom": {
|
|
11591
|
+
"name": "VfPositioned",
|
|
11592
|
+
"module": "src/position.ts"
|
|
11593
|
+
}
|
|
10938
11594
|
}
|
|
10939
11595
|
],
|
|
10940
11596
|
"attributes": [
|
|
@@ -10988,6 +11644,19 @@
|
|
|
10988
11644
|
"name": "VfPositioned",
|
|
10989
11645
|
"module": "src/position.ts"
|
|
10990
11646
|
}
|
|
11647
|
+
},
|
|
11648
|
+
{
|
|
11649
|
+
"name": "fixed",
|
|
11650
|
+
"type": {
|
|
11651
|
+
"text": "boolean"
|
|
11652
|
+
},
|
|
11653
|
+
"default": "false",
|
|
11654
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
11655
|
+
"fieldName": "fixed",
|
|
11656
|
+
"inheritedFrom": {
|
|
11657
|
+
"name": "VfPositioned",
|
|
11658
|
+
"module": "src/position.ts"
|
|
11659
|
+
}
|
|
10991
11660
|
}
|
|
10992
11661
|
],
|
|
10993
11662
|
"mixins": [
|
|
@@ -12044,6 +12713,21 @@
|
|
|
12044
12713
|
"module": "src/position.ts"
|
|
12045
12714
|
}
|
|
12046
12715
|
},
|
|
12716
|
+
{
|
|
12717
|
+
"kind": "field",
|
|
12718
|
+
"name": "fixed",
|
|
12719
|
+
"type": {
|
|
12720
|
+
"text": "boolean"
|
|
12721
|
+
},
|
|
12722
|
+
"default": "false",
|
|
12723
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
12724
|
+
"attribute": "fixed",
|
|
12725
|
+
"reflects": true,
|
|
12726
|
+
"inheritedFrom": {
|
|
12727
|
+
"name": "VfPositioned",
|
|
12728
|
+
"module": "src/position.ts"
|
|
12729
|
+
}
|
|
12730
|
+
},
|
|
12047
12731
|
{
|
|
12048
12732
|
"kind": "field",
|
|
12049
12733
|
"name": "bridgedAriaAttributes",
|
|
@@ -12590,12 +13274,25 @@
|
|
|
12590
13274
|
}
|
|
12591
13275
|
},
|
|
12592
13276
|
{
|
|
12593
|
-
"name": "left",
|
|
13277
|
+
"name": "left",
|
|
13278
|
+
"type": {
|
|
13279
|
+
"text": "number | null | undefined"
|
|
13280
|
+
},
|
|
13281
|
+
"description": "Offset from the left of the positioning parent, in whole system px.\nSee top.",
|
|
13282
|
+
"fieldName": "left",
|
|
13283
|
+
"inheritedFrom": {
|
|
13284
|
+
"name": "VfPositioned",
|
|
13285
|
+
"module": "src/position.ts"
|
|
13286
|
+
}
|
|
13287
|
+
},
|
|
13288
|
+
{
|
|
13289
|
+
"name": "fixed",
|
|
12594
13290
|
"type": {
|
|
12595
|
-
"text": "
|
|
13291
|
+
"text": "boolean"
|
|
12596
13292
|
},
|
|
12597
|
-
"
|
|
12598
|
-
"
|
|
13293
|
+
"default": "false",
|
|
13294
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
13295
|
+
"fieldName": "fixed",
|
|
12599
13296
|
"inheritedFrom": {
|
|
12600
13297
|
"name": "VfPositioned",
|
|
12601
13298
|
"module": "src/position.ts"
|
|
@@ -12760,6 +13457,21 @@
|
|
|
12760
13457
|
"name": "VfPositioned",
|
|
12761
13458
|
"module": "src/position.ts"
|
|
12762
13459
|
}
|
|
13460
|
+
},
|
|
13461
|
+
{
|
|
13462
|
+
"kind": "field",
|
|
13463
|
+
"name": "fixed",
|
|
13464
|
+
"type": {
|
|
13465
|
+
"text": "boolean"
|
|
13466
|
+
},
|
|
13467
|
+
"default": "false",
|
|
13468
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
13469
|
+
"attribute": "fixed",
|
|
13470
|
+
"reflects": true,
|
|
13471
|
+
"inheritedFrom": {
|
|
13472
|
+
"name": "VfPositioned",
|
|
13473
|
+
"module": "src/position.ts"
|
|
13474
|
+
}
|
|
12763
13475
|
}
|
|
12764
13476
|
],
|
|
12765
13477
|
"attributes": [
|
|
@@ -12795,6 +13507,19 @@
|
|
|
12795
13507
|
"name": "VfPositioned",
|
|
12796
13508
|
"module": "src/position.ts"
|
|
12797
13509
|
}
|
|
13510
|
+
},
|
|
13511
|
+
{
|
|
13512
|
+
"name": "fixed",
|
|
13513
|
+
"type": {
|
|
13514
|
+
"text": "boolean"
|
|
13515
|
+
},
|
|
13516
|
+
"default": "false",
|
|
13517
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
13518
|
+
"fieldName": "fixed",
|
|
13519
|
+
"inheritedFrom": {
|
|
13520
|
+
"name": "VfPositioned",
|
|
13521
|
+
"module": "src/position.ts"
|
|
13522
|
+
}
|
|
12798
13523
|
}
|
|
12799
13524
|
],
|
|
12800
13525
|
"mixins": [
|
|
@@ -13212,6 +13937,21 @@
|
|
|
13212
13937
|
"module": "src/position.ts"
|
|
13213
13938
|
}
|
|
13214
13939
|
},
|
|
13940
|
+
{
|
|
13941
|
+
"kind": "field",
|
|
13942
|
+
"name": "fixed",
|
|
13943
|
+
"type": {
|
|
13944
|
+
"text": "boolean"
|
|
13945
|
+
},
|
|
13946
|
+
"default": "false",
|
|
13947
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
13948
|
+
"attribute": "fixed",
|
|
13949
|
+
"reflects": true,
|
|
13950
|
+
"inheritedFrom": {
|
|
13951
|
+
"name": "VfPositioned",
|
|
13952
|
+
"module": "src/position.ts"
|
|
13953
|
+
}
|
|
13954
|
+
},
|
|
13215
13955
|
{
|
|
13216
13956
|
"kind": "field",
|
|
13217
13957
|
"name": "formAssociated",
|
|
@@ -13709,6 +14449,19 @@
|
|
|
13709
14449
|
"module": "src/position.ts"
|
|
13710
14450
|
}
|
|
13711
14451
|
},
|
|
14452
|
+
{
|
|
14453
|
+
"name": "fixed",
|
|
14454
|
+
"type": {
|
|
14455
|
+
"text": "boolean"
|
|
14456
|
+
},
|
|
14457
|
+
"default": "false",
|
|
14458
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
14459
|
+
"fieldName": "fixed",
|
|
14460
|
+
"inheritedFrom": {
|
|
14461
|
+
"name": "VfPositioned",
|
|
14462
|
+
"module": "src/position.ts"
|
|
14463
|
+
}
|
|
14464
|
+
},
|
|
13712
14465
|
{
|
|
13713
14466
|
"name": "disabled",
|
|
13714
14467
|
"type": {
|
|
@@ -13929,6 +14682,21 @@
|
|
|
13929
14682
|
"name": "VfPositioned",
|
|
13930
14683
|
"module": "src/position.ts"
|
|
13931
14684
|
}
|
|
14685
|
+
},
|
|
14686
|
+
{
|
|
14687
|
+
"kind": "field",
|
|
14688
|
+
"name": "fixed",
|
|
14689
|
+
"type": {
|
|
14690
|
+
"text": "boolean"
|
|
14691
|
+
},
|
|
14692
|
+
"default": "false",
|
|
14693
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
14694
|
+
"attribute": "fixed",
|
|
14695
|
+
"reflects": true,
|
|
14696
|
+
"inheritedFrom": {
|
|
14697
|
+
"name": "VfPositioned",
|
|
14698
|
+
"module": "src/position.ts"
|
|
14699
|
+
}
|
|
13932
14700
|
}
|
|
13933
14701
|
],
|
|
13934
14702
|
"attributes": [
|
|
@@ -14013,6 +14781,19 @@
|
|
|
14013
14781
|
"name": "VfPositioned",
|
|
14014
14782
|
"module": "src/position.ts"
|
|
14015
14783
|
}
|
|
14784
|
+
},
|
|
14785
|
+
{
|
|
14786
|
+
"name": "fixed",
|
|
14787
|
+
"type": {
|
|
14788
|
+
"text": "boolean"
|
|
14789
|
+
},
|
|
14790
|
+
"default": "false",
|
|
14791
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
14792
|
+
"fieldName": "fixed",
|
|
14793
|
+
"inheritedFrom": {
|
|
14794
|
+
"name": "VfPositioned",
|
|
14795
|
+
"module": "src/position.ts"
|
|
14796
|
+
}
|
|
14016
14797
|
}
|
|
14017
14798
|
],
|
|
14018
14799
|
"mixins": [
|
|
@@ -14211,6 +14992,21 @@
|
|
|
14211
14992
|
"module": "src/position.ts"
|
|
14212
14993
|
}
|
|
14213
14994
|
},
|
|
14995
|
+
{
|
|
14996
|
+
"kind": "field",
|
|
14997
|
+
"name": "fixed",
|
|
14998
|
+
"type": {
|
|
14999
|
+
"text": "boolean"
|
|
15000
|
+
},
|
|
15001
|
+
"default": "false",
|
|
15002
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
15003
|
+
"attribute": "fixed",
|
|
15004
|
+
"reflects": true,
|
|
15005
|
+
"inheritedFrom": {
|
|
15006
|
+
"name": "VfPositioned",
|
|
15007
|
+
"module": "src/position.ts"
|
|
15008
|
+
}
|
|
15009
|
+
},
|
|
14214
15010
|
{
|
|
14215
15011
|
"kind": "field",
|
|
14216
15012
|
"name": "bridgedAriaAttributes",
|
|
@@ -14819,6 +15615,19 @@
|
|
|
14819
15615
|
"module": "src/position.ts"
|
|
14820
15616
|
}
|
|
14821
15617
|
},
|
|
15618
|
+
{
|
|
15619
|
+
"name": "fixed",
|
|
15620
|
+
"type": {
|
|
15621
|
+
"text": "boolean"
|
|
15622
|
+
},
|
|
15623
|
+
"default": "false",
|
|
15624
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
15625
|
+
"fieldName": "fixed",
|
|
15626
|
+
"inheritedFrom": {
|
|
15627
|
+
"name": "VfPositioned",
|
|
15628
|
+
"module": "src/position.ts"
|
|
15629
|
+
}
|
|
15630
|
+
},
|
|
14822
15631
|
{
|
|
14823
15632
|
"name": "description",
|
|
14824
15633
|
"type": {
|
|
@@ -15001,6 +15810,21 @@
|
|
|
15001
15810
|
"module": "src/position.ts"
|
|
15002
15811
|
}
|
|
15003
15812
|
},
|
|
15813
|
+
{
|
|
15814
|
+
"kind": "field",
|
|
15815
|
+
"name": "fixed",
|
|
15816
|
+
"type": {
|
|
15817
|
+
"text": "boolean"
|
|
15818
|
+
},
|
|
15819
|
+
"default": "false",
|
|
15820
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
15821
|
+
"attribute": "fixed",
|
|
15822
|
+
"reflects": true,
|
|
15823
|
+
"inheritedFrom": {
|
|
15824
|
+
"name": "VfPositioned",
|
|
15825
|
+
"module": "src/position.ts"
|
|
15826
|
+
}
|
|
15827
|
+
},
|
|
15004
15828
|
{
|
|
15005
15829
|
"kind": "field",
|
|
15006
15830
|
"name": "shadowRootOptions",
|
|
@@ -15233,10 +16057,10 @@
|
|
|
15233
16057
|
"privacy": "protected",
|
|
15234
16058
|
"return": {
|
|
15235
16059
|
"type": {
|
|
15236
|
-
"text": "
|
|
16060
|
+
"text": "boolean"
|
|
15237
16061
|
}
|
|
15238
16062
|
},
|
|
15239
|
-
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.",
|
|
16063
|
+
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.\n\nReturns whether a form owner took the press — true even when a disabled\ndefault button meant no submission, since HTML gave the press to the form\neither way. The callers cancel the keydown on true, so a modal shell\n(`VfModalDialog`) sees the press as spoken for and does not also route it\nto the dialog's default button; with no form the press goes on to the\ndialog untouched.",
|
|
15240
16064
|
"inheritedFrom": {
|
|
15241
16065
|
"name": "VfTextControlBase",
|
|
15242
16066
|
"module": "src/text-control.ts"
|
|
@@ -15874,6 +16698,19 @@
|
|
|
15874
16698
|
"module": "src/position.ts"
|
|
15875
16699
|
}
|
|
15876
16700
|
},
|
|
16701
|
+
{
|
|
16702
|
+
"name": "fixed",
|
|
16703
|
+
"type": {
|
|
16704
|
+
"text": "boolean"
|
|
16705
|
+
},
|
|
16706
|
+
"default": "false",
|
|
16707
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
16708
|
+
"fieldName": "fixed",
|
|
16709
|
+
"inheritedFrom": {
|
|
16710
|
+
"name": "VfPositioned",
|
|
16711
|
+
"module": "src/position.ts"
|
|
16712
|
+
}
|
|
16713
|
+
},
|
|
15877
16714
|
{
|
|
15878
16715
|
"name": "value",
|
|
15879
16716
|
"type": {
|
|
@@ -16087,7 +16924,7 @@
|
|
|
16087
16924
|
}
|
|
16088
16925
|
}
|
|
16089
16926
|
],
|
|
16090
|
-
"description": "Enter in a single-line field triggers the associated form's implicit\nsubmission. The native `<input>` is shadow-encapsulated, so its form owner\nis null and the browser won't do this itself."
|
|
16927
|
+
"description": "Enter in a single-line field triggers the associated form's implicit\nsubmission. The native `<input>` is shadow-encapsulated, so its form owner\nis null and the browser won't do this itself. A press the form took is\ncancelled, so an enclosing modal does not route it again."
|
|
16091
16928
|
},
|
|
16092
16929
|
{
|
|
16093
16930
|
"kind": "field",
|
|
@@ -16115,6 +16952,21 @@
|
|
|
16115
16952
|
"module": "src/position.ts"
|
|
16116
16953
|
}
|
|
16117
16954
|
},
|
|
16955
|
+
{
|
|
16956
|
+
"kind": "field",
|
|
16957
|
+
"name": "fixed",
|
|
16958
|
+
"type": {
|
|
16959
|
+
"text": "boolean"
|
|
16960
|
+
},
|
|
16961
|
+
"default": "false",
|
|
16962
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
16963
|
+
"attribute": "fixed",
|
|
16964
|
+
"reflects": true,
|
|
16965
|
+
"inheritedFrom": {
|
|
16966
|
+
"name": "VfPositioned",
|
|
16967
|
+
"module": "src/position.ts"
|
|
16968
|
+
}
|
|
16969
|
+
},
|
|
16118
16970
|
{
|
|
16119
16971
|
"kind": "field",
|
|
16120
16972
|
"name": "shadowRootOptions",
|
|
@@ -16331,10 +17183,10 @@
|
|
|
16331
17183
|
"privacy": "protected",
|
|
16332
17184
|
"return": {
|
|
16333
17185
|
"type": {
|
|
16334
|
-
"text": "
|
|
17186
|
+
"text": "boolean"
|
|
16335
17187
|
}
|
|
16336
17188
|
},
|
|
16337
|
-
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.",
|
|
17189
|
+
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.\n\nReturns whether a form owner took the press — true even when a disabled\ndefault button meant no submission, since HTML gave the press to the form\neither way. The callers cancel the keydown on true, so a modal shell\n(`VfModalDialog`) sees the press as spoken for and does not also route it\nto the dialog's default button; with no form the press goes on to the\ndialog untouched.",
|
|
16338
17190
|
"inheritedFrom": {
|
|
16339
17191
|
"name": "VfTextControlBase",
|
|
16340
17192
|
"module": "src/text-control.ts"
|
|
@@ -16995,6 +17847,19 @@
|
|
|
16995
17847
|
"module": "src/position.ts"
|
|
16996
17848
|
}
|
|
16997
17849
|
},
|
|
17850
|
+
{
|
|
17851
|
+
"name": "fixed",
|
|
17852
|
+
"type": {
|
|
17853
|
+
"text": "boolean"
|
|
17854
|
+
},
|
|
17855
|
+
"default": "false",
|
|
17856
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
17857
|
+
"fieldName": "fixed",
|
|
17858
|
+
"inheritedFrom": {
|
|
17859
|
+
"name": "VfPositioned",
|
|
17860
|
+
"module": "src/position.ts"
|
|
17861
|
+
}
|
|
17862
|
+
},
|
|
16998
17863
|
{
|
|
16999
17864
|
"name": "value",
|
|
17000
17865
|
"type": {
|
|
@@ -17191,6 +18056,10 @@
|
|
|
17191
18056
|
"description": "The content area.",
|
|
17192
18057
|
"name": "body"
|
|
17193
18058
|
},
|
|
18059
|
+
{
|
|
18060
|
+
"description": "The header strip between the title bar and the body (when the `header` slot is populated).",
|
|
18061
|
+
"name": "header"
|
|
18062
|
+
},
|
|
17194
18063
|
{
|
|
17195
18064
|
"description": "The bottom status strip (when the `status` slot is populated).",
|
|
17196
18065
|
"name": "status-bar"
|
|
@@ -17209,6 +18078,10 @@
|
|
|
17209
18078
|
"description": "Default slot: window body content.",
|
|
17210
18079
|
"name": ""
|
|
17211
18080
|
},
|
|
18081
|
+
{
|
|
18082
|
+
"description": "Optional header content — a band between the title bar and the body, the full width of the window (the Finder window's header line): a white interior over a 1px rule, no inset of its own, a positioning anchor for placed children. As tall as its content unless `header-height` states it. Under `scrollbars` the vertical rail begins below it, so the header spans the rail's column. Takes no space until populated.",
|
|
18083
|
+
"name": "header"
|
|
18084
|
+
},
|
|
17212
18085
|
{
|
|
17213
18086
|
"description": "Optional status-bar content — the classic bottom readout strip (\"40px x 40px\"): a 1px rule over a 15px white band under the body, body-face text on its native line. Takes no space until populated; a `resizable` window's grow box sits flush in its right end.",
|
|
17214
18087
|
"name": "status"
|
|
@@ -17336,6 +18209,25 @@
|
|
|
17336
18209
|
"attribute": "scrollbars",
|
|
17337
18210
|
"reflects": true
|
|
17338
18211
|
},
|
|
18212
|
+
{
|
|
18213
|
+
"kind": "field",
|
|
18214
|
+
"name": "headerHeight",
|
|
18215
|
+
"type": {
|
|
18216
|
+
"text": "| number\n | null | undefined"
|
|
18217
|
+
},
|
|
18218
|
+
"description": "The header's height in whole system px, rule included — the way every\nkit bar counts its rule (an 18px title bar is 17 + 1). Unset, the header\nis as tall as what is slotted into it, plus the rule. Only matters while\nthe `header` slot is populated.",
|
|
18219
|
+
"attribute": "header-height"
|
|
18220
|
+
},
|
|
18221
|
+
{
|
|
18222
|
+
"kind": "field",
|
|
18223
|
+
"name": "_hasHeader",
|
|
18224
|
+
"type": {
|
|
18225
|
+
"text": "boolean"
|
|
18226
|
+
},
|
|
18227
|
+
"privacy": "private",
|
|
18228
|
+
"default": "false",
|
|
18229
|
+
"description": "Whether the `header` slot has assigned content (drives the header)."
|
|
18230
|
+
},
|
|
17339
18231
|
{
|
|
17340
18232
|
"kind": "field",
|
|
17341
18233
|
"name": "_hasStatus",
|
|
@@ -17491,6 +18383,25 @@
|
|
|
17491
18383
|
],
|
|
17492
18384
|
"description": "The `.empty` gate: the strip renders only while the slot is populated."
|
|
17493
18385
|
},
|
|
18386
|
+
{
|
|
18387
|
+
"kind": "method",
|
|
18388
|
+
"name": "_onHeaderSlotChange",
|
|
18389
|
+
"privacy": "private",
|
|
18390
|
+
"return": {
|
|
18391
|
+
"type": {
|
|
18392
|
+
"text": "void"
|
|
18393
|
+
}
|
|
18394
|
+
},
|
|
18395
|
+
"parameters": [
|
|
18396
|
+
{
|
|
18397
|
+
"name": "event",
|
|
18398
|
+
"type": {
|
|
18399
|
+
"text": "Event"
|
|
18400
|
+
}
|
|
18401
|
+
}
|
|
18402
|
+
],
|
|
18403
|
+
"description": "The header's own gate, on the same terms."
|
|
18404
|
+
},
|
|
17494
18405
|
{
|
|
17495
18406
|
"kind": "method",
|
|
17496
18407
|
"name": "_onCloseClick",
|
|
@@ -17617,6 +18528,21 @@
|
|
|
17617
18528
|
"name": "VfPositioned",
|
|
17618
18529
|
"module": "src/position.ts"
|
|
17619
18530
|
}
|
|
18531
|
+
},
|
|
18532
|
+
{
|
|
18533
|
+
"kind": "field",
|
|
18534
|
+
"name": "fixed",
|
|
18535
|
+
"type": {
|
|
18536
|
+
"text": "boolean"
|
|
18537
|
+
},
|
|
18538
|
+
"default": "false",
|
|
18539
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
18540
|
+
"attribute": "fixed",
|
|
18541
|
+
"reflects": true,
|
|
18542
|
+
"inheritedFrom": {
|
|
18543
|
+
"name": "VfPositioned",
|
|
18544
|
+
"module": "src/position.ts"
|
|
18545
|
+
}
|
|
17620
18546
|
}
|
|
17621
18547
|
],
|
|
17622
18548
|
"events": [
|
|
@@ -17736,6 +18662,14 @@
|
|
|
17736
18662
|
"description": "Put System 7 scroll rails on the window edge — the classic document\nwindow. The body slot renders inside a built-in `vf-scroll-area` pulled\none system pixel under the frame on every side, so the rails repaint the\nborder lines and a `resizable` window's grow box lands in the corner\ncell — reserved on a single-axis rail too (the area's `corner`), unless\na populated status strip holds the grow box, when the rail runs edge to\nedge onto the strip's rule. Values mirror `vf-scroll-area`'s `axis`; the\n`heading` names the scroll region; the viewport part is re-exported.\nContent runs to the frame and the rails; an inset is the content's own.\nThe slotted composition (SPEC §5 vf-scroll-area) still works for a well\nplaced inside the body.",
|
|
17737
18663
|
"fieldName": "scrollbars"
|
|
17738
18664
|
},
|
|
18665
|
+
{
|
|
18666
|
+
"name": "header-height",
|
|
18667
|
+
"type": {
|
|
18668
|
+
"text": "| number\n | null | undefined"
|
|
18669
|
+
},
|
|
18670
|
+
"description": "The header's height in whole system px, rule included — the way every\nkit bar counts its rule (an 18px title bar is 17 + 1). Unset, the header\nis as tall as what is slotted into it, plus the rule. Only matters while\nthe `header` slot is populated.",
|
|
18671
|
+
"fieldName": "headerHeight"
|
|
18672
|
+
},
|
|
17739
18673
|
{
|
|
17740
18674
|
"name": "width",
|
|
17741
18675
|
"type": {
|
|
@@ -17783,6 +18717,19 @@
|
|
|
17783
18717
|
"name": "VfPositioned",
|
|
17784
18718
|
"module": "src/position.ts"
|
|
17785
18719
|
}
|
|
18720
|
+
},
|
|
18721
|
+
{
|
|
18722
|
+
"name": "fixed",
|
|
18723
|
+
"type": {
|
|
18724
|
+
"text": "boolean"
|
|
18725
|
+
},
|
|
18726
|
+
"default": "false",
|
|
18727
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
18728
|
+
"fieldName": "fixed",
|
|
18729
|
+
"inheritedFrom": {
|
|
18730
|
+
"name": "VfPositioned",
|
|
18731
|
+
"module": "src/position.ts"
|
|
18732
|
+
}
|
|
17786
18733
|
}
|
|
17787
18734
|
],
|
|
17788
18735
|
"mixins": [
|
|
@@ -18941,10 +19888,10 @@
|
|
|
18941
19888
|
"privacy": "protected",
|
|
18942
19889
|
"return": {
|
|
18943
19890
|
"type": {
|
|
18944
|
-
"text": "
|
|
19891
|
+
"text": "boolean"
|
|
18945
19892
|
}
|
|
18946
19893
|
},
|
|
18947
|
-
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML."
|
|
19894
|
+
"description": "Emulates the form's implicit submission for a plain Enter press. HTML\ndefines it as *activating the form's default button* — the first submit\nbutton in tree order — so the submission carries that button's submitter\nidentity and name/value. A bare `requestSubmit()` carries neither\n(`event.submitter === null`), which made Enter and a click on the same\nform produce different payloads. `click()` is the activation: a native\nbutton becomes the real submitter, and a `vf-button` forwards it to its\ninner button, which runs the same transient-proxy path a pointer does. A\ndisabled default button means no submission at all, as in HTML; a form\nwith no submit button falls back to the bare call, also as in HTML.\n\nReturns whether a form owner took the press — true even when a disabled\ndefault button meant no submission, since HTML gave the press to the form\neither way. The callers cancel the keydown on true, so a modal shell\n(`VfModalDialog`) sees the press as spoken for and does not also route it\nto the dialog's default button; with no form the press goes on to the\ndialog untouched."
|
|
18948
19895
|
},
|
|
18949
19896
|
{
|
|
18950
19897
|
"kind": "method",
|
|
@@ -19884,7 +20831,7 @@
|
|
|
19884
20831
|
},
|
|
19885
20832
|
{
|
|
19886
20833
|
"kind": "class",
|
|
19887
|
-
"description": "Base class for the modal shell `vf-dialog` — and for a consumer's own\nmodal (an alert box, say) authored against the kit.\n\nOwns the native `<dialog>` lifecycle every modal shares: `open` sync, `show()` /\n`close()`, the top/left placement (stated or centered) and the\nsingle `close` funnel that drops the written origin and fires `vf-close` with\nthe reason. Because every close path — Escape, `close()`, the opt-in\nlightDismiss click outside — routes through the native `close`\nevent, an Escape-close no longer leaves a stale origin behind, so the next\nopen re-derives it.\n\nRemoving an open modal from the DOM is a close path too. HTML's dialog\n*removing steps* take the element out of the top layer **without** running\nthe close algorithm — no `close` event, no focus restoration — which is\nexactly what the standard framework pattern of unmounting a dialog instead\nof calling `close()` does. `disconnectedCallback` routes that path through\nthe same funnel: the removed element still fires `vf-close` (heard by\nlisteners on the element itself — it has left the tree, so nothing\nbubbles), `open` and the pinned margins reconcile so a re-append mounts it\nclosed and re-centered, and focus returns to the element that was focused\nwhen the modal opened.\n\nSubclasses supply only the frame chrome: a `render()` returning\n`<dialog",
|
|
20834
|
+
"description": "Base class for the modal shell `vf-dialog` — and for a consumer's own\nmodal (an alert box, say) authored against the kit.\n\nOwns the native `<dialog>` lifecycle every modal shares: `open` sync, `show()` /\n`close()`, the top/left placement (stated or centered) and the\nsingle `close` funnel that drops the written origin and fires `vf-close` with\nthe reason. Because every close path — Escape, `close()`, the opt-in\nlightDismiss click outside — routes through the native `close`\nevent, an Escape-close no longer leaves a stale origin behind, so the next\nopen re-derives it.\n\nIt also owns the two keyboard rules every classic dialog followed (see\ndefaultButton and initialFocusTarget): Return or Enter\nactivates the default button from anywhere in the dialog, and the box opens\nwith the insertion point in its first text field — or, with none, focus on\nthe default button.\n\nRemoving an open modal from the DOM is a close path too. HTML's dialog\n*removing steps* take the element out of the top layer **without** running\nthe close algorithm — no `close` event, no focus restoration — which is\nexactly what the standard framework pattern of unmounting a dialog instead\nof calling `close()` does. `disconnectedCallback` routes that path through\nthe same funnel: the removed element still fires `vf-close` (heard by\nlisteners on the element itself — it has left the tree, so nothing\nbubbles), `open` and the pinned margins reconcile so a re-append mounts it\nclosed and re-centered, and focus returns to the element that was focused\nwhen the modal opened.\n\nSubclasses supply only the frame chrome: a `render()` returning\n`<dialog",
|
|
19888
20835
|
"name": "VfModalDialog",
|
|
19889
20836
|
"members": [
|
|
19890
20837
|
{
|
|
@@ -20014,11 +20961,48 @@
|
|
|
20014
20961
|
},
|
|
20015
20962
|
{
|
|
20016
20963
|
"kind": "field",
|
|
20017
|
-
"name": "#
|
|
20964
|
+
"name": "#openListeners",
|
|
20018
20965
|
"privacy": "private",
|
|
20019
20966
|
"readonly": true,
|
|
20020
|
-
"default": "new DocumentListenersController(this, () => [ [this._dialog, 'pointerdown', this.#onDialogPointerDown], [this._dialog, 'pointerup', this.#onDialogPointerUp], [this._dialog, 'pointercancel', this.#onDialogPointerCancel], ])",
|
|
20021
|
-
"description": "The
|
|
20967
|
+
"default": "new DocumentListenersController(this, () => [ [this._dialog, 'pointerdown', this.#onDialogPointerDown], [this._dialog, 'pointerup', this.#onDialogPointerUp], [this._dialog, 'pointercancel', this.#onDialogPointerCancel], [this._dialog, 'keydown', this.#onDialogKeydown], ])",
|
|
20968
|
+
"description": "The while-open listeners, on the `<dialog>` itself: the light-dismiss\npointer trio and the Return/Enter routing.\n\nLight dismiss: the `::backdrop` hit-tests as its dialog, and the frame the\nsubclass renders fills the dialog's box, so the dialog is an event's\n*target* only when the pointer was outside the frame — no rect arithmetic,\nno composedPath. Attached whether or not lightDismiss is set: the\nhandlers read the property at the release, so it can be toggled on an\nopen dialog."
|
|
20969
|
+
},
|
|
20970
|
+
{
|
|
20971
|
+
"kind": "field",
|
|
20972
|
+
"name": "defaultButton",
|
|
20973
|
+
"type": {
|
|
20974
|
+
"text": "HTMLElement | null"
|
|
20975
|
+
},
|
|
20976
|
+
"privacy": "protected",
|
|
20977
|
+
"description": "The dialog's default button — the one wearing the bold ring\n(`vf-button[variant=\"default\"]`) — or null with none, or none enabled.\nLooked for among the slotted content first, then in the shadow tree, so a\nconsumer's own modal that renders its buttons itself is covered too.\nOverride to name it some other way.",
|
|
20978
|
+
"readonly": true
|
|
20979
|
+
},
|
|
20980
|
+
{
|
|
20981
|
+
"kind": "field",
|
|
20982
|
+
"name": "initialFocusTarget",
|
|
20983
|
+
"type": {
|
|
20984
|
+
"text": "HTMLElement | null"
|
|
20985
|
+
},
|
|
20986
|
+
"privacy": "protected",
|
|
20987
|
+
"description": "Where focus lands on open. The classic Dialog Manager put the insertion\npoint in the first editable text item and gave nothing else focus at all;\nthe web needs a focused control for the keyboard to have anywhere to be,\nso with no text field the default button takes it (which is also what\nmakes Return and Space work there without a Tab). In order:\n\n1. a slotted control carrying `autofocus` — the author's say;\n2. the first enabled text-entry control (`vf-text-field`,\n `vf-number-field`, `vf-text-area`, or a native text input/textarea);\n3. the defaultButton;\n4. null — leave the browser's own choice alone.\n\nLeft to itself, `showModal()` focuses the first focusable thing in flat\ntree order, which for a Cancel/OK row is Cancel, and for a body with a\nlink in it is the link — so Return did the one thing a classic dialog's\nReturn never did. Override to choose differently.",
|
|
20988
|
+
"readonly": true
|
|
20989
|
+
},
|
|
20990
|
+
{
|
|
20991
|
+
"kind": "method",
|
|
20992
|
+
"name": "#focusInitial",
|
|
20993
|
+
"privacy": "private",
|
|
20994
|
+
"return": {
|
|
20995
|
+
"type": {
|
|
20996
|
+
"text": "void"
|
|
20997
|
+
}
|
|
20998
|
+
},
|
|
20999
|
+
"description": "Hand focus to initialFocusTarget, right after `showModal()`'s own\nfocusing steps have run (so this is the last word, not a race)."
|
|
21000
|
+
},
|
|
21001
|
+
{
|
|
21002
|
+
"kind": "field",
|
|
21003
|
+
"name": "#onDialogKeydown",
|
|
21004
|
+
"privacy": "private",
|
|
21005
|
+
"description": "Return and Enter activate the default button from anywhere in the\ndialog, the way the classic Dialog Manager routed them — including from a\nfocused Cancel button, where Space is the key that presses the focused\ncontrol. Bubble phase, and only an uncancelled press: a control that\ntakes Enter for itself (`vf-select`'s list, `vf-list`, an icon's rename, a\ntext field whose form ran its implicit submission) cancels the keydown\nand is left alone. Two more keep their own Enter: a link, which follows\nit, and a multi-line editor, where Return inserts a newline and only the\nkeypad's Enter key fires the button — the same split a TextEdit item in a\nclassic dialog drew between the two keys."
|
|
20022
21006
|
},
|
|
20023
21007
|
{
|
|
20024
21008
|
"kind": "field",
|
|
@@ -20360,6 +21344,13 @@
|
|
|
20360
21344
|
"type": {
|
|
20361
21345
|
"text": "number | null | undefined"
|
|
20362
21346
|
}
|
|
21347
|
+
},
|
|
21348
|
+
{
|
|
21349
|
+
"kind": "field",
|
|
21350
|
+
"name": "fixed",
|
|
21351
|
+
"type": {
|
|
21352
|
+
"text": "boolean"
|
|
21353
|
+
}
|
|
20363
21354
|
}
|
|
20364
21355
|
],
|
|
20365
21356
|
"superclass": {
|
|
@@ -20370,7 +21361,7 @@
|
|
|
20370
21361
|
},
|
|
20371
21362
|
{
|
|
20372
21363
|
"kind": "mixin",
|
|
20373
|
-
"description": "Explicit placement — `top`/`left` in whole system px, on **every** component.\n\nNo exceptions, deliberately. These are web components, and a consumer may put\none wherever they like; the kit does not get to decide that a `vf-option` is\nonly ever a popup row. The rows a container normally owns (`vf-option`,\n`vf-menu-item`, `vf-list-item`) and a bar's `vf-menu` take the pair on the\nsame terms as anything else — and stating an origin on one *inside* its\nmanaging parent does take it out of that parent's flow layout, which is the\nplacement working, not failing. Each of those components documents what its\ncontainer stops doing for it. `vf-dialog` takes the pair in viewport\ncoordinates, the one difference the platform forces (see modal-dialog.ts).\n\nA DITL resource laid a dialog out as a list of items, each with a rectangle\nin the window's own coordinates; arranging controls by stating where they go\nis as native to System 7 as stacking them. This mixin is that mechanism:\ndeclaring `top` or `left` takes the element out of normal flow and\nabsolutely positions it within its parent, both coordinates in the art's own\nunit so the position scales with the display like every other metric. A\nwindow or dialog body can be laid out either way — a tree of `vf-stack`s, or\npositioned children — with no stylesheet in either case.\n\nMechanics, mirroring how `vf-stack` writes its declared size:\n\n- Setting either property writes `position: absolute` and both offsets onto\n the host's inline style as `calc(var(--vf-scale, 1) * Npx)` — live against\n the display, resolved at paint time. The coordinate left unset is 0.\n- `right`/`bottom` are released to `auto` and `margin` zeroed, so the stated\n offsets are the whole story — an auto-width box with both edges set would\n stretch rather than sit (the `vf-icon` seed logic, generalized).\n- Unsetting both returns the element to normal flow: every inline\n declaration this wrote is removed, and stylesheet values resume.\n\nThe anchor is CSS's own: the nearest positioned ancestor's padding box. The\nkit's containers are all deliberate anchors — a desktop's raster, a window's\ncontent region (the frame's inner edge, below the title bar — the 12px body\ninset governs flow content only, exactly the DITL convention), a dialog's\ncontent area, a stack's box, a fieldset's border box, a scroll area's\nscrolled plane. In a non-kit parent, give the parent `position: relative`,\nthe one line of CSS this feature can't write for you.\n\nThe writing rides a ReactiveController (`hostUpdated`) rather than\nan `updated()` override, for a lifecycle reason worth keeping in the source:\nthe mixin sits *under* each component class, and most components override\n`updated()` without calling `super.updated()` — Lit's base is a no-op, so\nnothing ever forced the call — which would silently shadow a mixin-level\noverride. A controller is invoked by ReactiveElement itself, after every\nupdate, no matter what the subclass does.\n\nA gesture writes **through these properties**: `vf-window`'s title-bar drag\nand `vf-icon`'s drag and arrow nudge hand their new origin to a\nPlacementController, which snaps it onto the placement lattice and\nsets `left`/`top`. A moved element is therefore placed exactly the way an\nauthored one is — a live `calc()` in the art's own unit — and stays where it\nwas dropped when the zoom or the display changes what a system px costs.\n\nIt did not always. Writing the resolved CSS px straight to the inline style\nfroze the coordinate in the wrong unit: `--vf-scale` moved under it at every\nzoom step and the same constant read back as a different number of system px,\nso moved windows and icons slid off the grid the rest of the kit stayed on\n(by `3z / round(3z)` — 10% at 110% zoom, where nothing else moves at all).\n\nSetting a property yourself is still the deliberate way to re-place a moved\nelement. The controller re-applies **only when the values changed**, so an\nunrelated update — a heading change, a desktop toggling `active` — never\nre-asserts a coordinate and costs nothing.",
|
|
21364
|
+
"description": "Explicit placement — `top`/`left` in whole system px, on **every** component.\n\nNo exceptions, deliberately. These are web components, and a consumer may put\none wherever they like; the kit does not get to decide that a `vf-option` is\nonly ever a popup row. The rows a container normally owns (`vf-option`,\n`vf-menu-item`, `vf-list-item`) and a bar's `vf-menu` take the pair on the\nsame terms as anything else — and stating an origin on one *inside* its\nmanaging parent does take it out of that parent's flow layout, which is the\nplacement working, not failing. Each of those components documents what its\ncontainer stops doing for it. `vf-dialog` takes the pair in viewport\ncoordinates, the one difference the platform forces (see modal-dialog.ts).\n\nA DITL resource laid a dialog out as a list of items, each with a rectangle\nin the window's own coordinates; arranging controls by stating where they go\nis as native to System 7 as stacking them. This mixin is that mechanism:\ndeclaring `top` or `left` takes the element out of normal flow and\nabsolutely positions it within its parent, both coordinates in the art's own\nunit so the position scales with the display like every other metric. A\nwindow or dialog body can be laid out either way — a tree of `vf-stack`s, or\npositioned children — with no stylesheet in either case.\n\nMechanics, mirroring how `vf-stack` writes its declared size:\n\n- Setting either property writes `position: absolute` and both offsets onto\n the host's inline style as `calc(var(--vf-scale, 1) * Npx)` — live against\n the display, resolved at paint time. The coordinate left unset is 0.\n- `right`/`bottom` are released to `auto` and `margin` zeroed, so the stated\n offsets are the whole story — an auto-width box with both edges set would\n stretch rather than sit (the `vf-icon` seed logic, generalized).\n- Unsetting both returns the element to normal flow: every inline\n declaration this wrote is removed, and stylesheet values resume.\n\nThe anchor is CSS's own: the nearest positioned ancestor's padding box. The\nkit's containers are all deliberate anchors — a desktop's raster, a window's\ncontent region (the frame's inner edge, below the title bar — the 12px body\ninset governs flow content only, exactly the DITL convention), a dialog's\ncontent area, a stack's box, a fieldset's border box, a scroll area's\nscrolled plane. In a non-kit parent, give the parent `position: relative`,\nthe one line of CSS this feature can't write for you.\n\nThe writing rides a ReactiveController (`hostUpdated`) rather than\nan `updated()` override, for a lifecycle reason worth keeping in the source:\nthe mixin sits *under* each component class, and most components override\n`updated()` without calling `super.updated()` — Lit's base is a no-op, so\nnothing ever forced the call — which would silently shadow a mixin-level\noverride. A controller is invoked by ReactiveElement itself, after every\nupdate, no matter what the subclass does.\n\nA gesture writes **through these properties**: `vf-window`'s title-bar drag\nand `vf-icon`'s drag and arrow nudge hand their new origin to a\nPlacementController, which snaps it onto the placement lattice and\nsets `left`/`top`. A moved element is therefore placed exactly the way an\nauthored one is — a live `calc()` in the art's own unit — and stays where it\nwas dropped when the zoom or the display changes what a system px costs.\n\nIt did not always. Writing the resolved CSS px straight to the inline style\nfroze the coordinate in the wrong unit: `--vf-scale` moved under it at every\nzoom step and the same constant read back as a different number of system px,\nso moved windows and icons slid off the grid the rest of the kit stayed on\n(by `3z / round(3z)` — 10% at 110% zoom, where nothing else moves at all).\n\nSetting a property yourself is still the deliberate way to re-place a moved\nelement. The controller re-applies **only when the values changed**, so an\nunrelated update — a heading change, a desktop toggling `active` — never\nre-asserts a coordinate and costs nothing.\n\n**`fixed`** holds the placement against the *visible* region of the nearest\nscrolling ancestor instead of its scrolled plane — a tool strip over a\ndocument, a column header over rows — and the flag alone places at (0,0).\nThe engine underneath is `position: sticky`, the one way the platform holds\na box against a scrollport from inside it on the compositor (a scroll\nlistener counter-translating lags a frame; a layer outside the scroller\nstops wheel and touch over it). Sticky boxes stay in flow, which is not\nwhat a placement is, so the controller erases the footprint: the host is\nblockified (no line box), shrink-wrapped, and given a negative right/bottom\nmargin equal to its own box — a 0×0 margin box that flow content lays out\nas if it weren't there, measured by a ResizeObserver so a relabel or a zoom\nstep keeps it exact. `z-index: 1` puts it over the plane's placed children,\nwhich is where a fixed strip belongs. Two facts of the engine that the\ndocs state as rules: sticky only ever pushes a box *down* from where the\nflow put it, so a fixed child comes before the flow content in its parent;\nand a scroll container that never scrolls (a plain window body is\n`overflow: hidden`) holds it exactly where placement would.",
|
|
20374
21365
|
"name": "VfPositioned",
|
|
20375
21366
|
"members": [
|
|
20376
21367
|
{
|
|
@@ -20390,6 +21381,17 @@
|
|
|
20390
21381
|
},
|
|
20391
21382
|
"description": "Offset from the left of the positioning parent, in whole system px.\nSee top.",
|
|
20392
21383
|
"attribute": "left"
|
|
21384
|
+
},
|
|
21385
|
+
{
|
|
21386
|
+
"kind": "field",
|
|
21387
|
+
"name": "fixed",
|
|
21388
|
+
"type": {
|
|
21389
|
+
"text": "boolean"
|
|
21390
|
+
},
|
|
21391
|
+
"default": "false",
|
|
21392
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
21393
|
+
"attribute": "fixed",
|
|
21394
|
+
"reflects": true
|
|
20393
21395
|
}
|
|
20394
21396
|
],
|
|
20395
21397
|
"attributes": [
|
|
@@ -20408,6 +21410,15 @@
|
|
|
20408
21410
|
},
|
|
20409
21411
|
"description": "Offset from the left of the positioning parent, in whole system px.\nSee top.",
|
|
20410
21412
|
"fieldName": "left"
|
|
21413
|
+
},
|
|
21414
|
+
{
|
|
21415
|
+
"name": "fixed",
|
|
21416
|
+
"type": {
|
|
21417
|
+
"text": "boolean"
|
|
21418
|
+
},
|
|
21419
|
+
"default": "false",
|
|
21420
|
+
"description": "Hold the placement against the visible region of the nearest scrolling\nancestor: the element keeps its stated `top`/`left` while the content\nscrolls under it, and the flag alone places it at (0,0). It comes\nbefore the flow content in its parent. Where nothing scrolls it renders\nexactly as placed.",
|
|
21421
|
+
"fieldName": "fixed"
|
|
20411
21422
|
}
|
|
20412
21423
|
],
|
|
20413
21424
|
"parameters": [
|
|
@@ -20429,7 +21440,7 @@
|
|
|
20429
21440
|
"name": "#host",
|
|
20430
21441
|
"privacy": "private",
|
|
20431
21442
|
"type": {
|
|
20432
|
-
"text": "
|
|
21443
|
+
"text": "PositionedHost"
|
|
20433
21444
|
},
|
|
20434
21445
|
"readonly": true,
|
|
20435
21446
|
"default": "host"
|
|
@@ -20531,7 +21542,7 @@
|
|
|
20531
21542
|
{
|
|
20532
21543
|
"name": "host",
|
|
20533
21544
|
"type": {
|
|
20534
|
-
"text": "
|
|
21545
|
+
"text": "PositionedHost"
|
|
20535
21546
|
}
|
|
20536
21547
|
},
|
|
20537
21548
|
{
|