@optionfactory/fml 9.0.0-rc1 → 9.0.0-rc10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/dist/custom-elements.json +119 -6
- package/dist/fml.css +8 -8
- package/dist/fml.css.map +1 -1
- package/dist/fml.iife.js +579 -116
- package/dist/fml.iife.js.map +1 -1
- package/dist/fml.iife.min.js +1 -1
- package/dist/fml.iife.min.js.map +1 -1
- package/dist/ful.css +8 -8
- package/dist/ful.css.map +1 -1
- package/dist/ful.d.mts +179 -7
- package/dist/ful.iife.js +576 -115
- package/dist/ful.iife.js.map +1 -1
- package/dist/ful.iife.min.js +1 -1
- package/dist/ful.iife.min.js.map +1 -1
- package/dist/ful.min.mjs +1 -1
- package/dist/ful.min.mjs.map +1 -1
- package/dist/ful.mjs +575 -116
- package/dist/ful.mjs.map +1 -1
- package/dist/vscode.html-custom-data.json +63 -3
- package/dist/web-types.json +135 -7
- package/package.json +1 -1
|
@@ -3,21 +3,37 @@
|
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "ful-tooltip",
|
|
6
|
-
"description": "An info affordance: a themed icon button toggling a small popover with a short explanation, opened by click and by keyboard like a button, dismissed by Escape or an outside click. placement picks the side the note sits on:
|
|
6
|
+
"description": "An info affordance: a themed icon button toggling a small popover with a short explanation, opened by click and by keyboard like a button, dismissed by Escape or an outside click. placement picks the side the note sits on: top (default), bottom, left or right.",
|
|
7
7
|
"attributes": [
|
|
8
8
|
{
|
|
9
9
|
"name": "placement",
|
|
10
|
-
"description": "Which side of the trigger the note opens on:
|
|
10
|
+
"description": "Which side of the trigger the note opens on: top (the default), bottom, left or right. Above by default because a note opening downwards covers the control the marker explains. The library places the note itself on every platform, so the side is the same everywhere. (string)"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "icon",
|
|
14
|
+
"description": "The ful-icon the marker shows, for a tooltip meaning something other than plain information. Defaults to the page's Tooltip.config.icon; a name the library does not paint is declared by the page as ful-icon[name='...'] { mask-image: ... }. (string)"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "describes",
|
|
18
|
+
"description": "For a tooltip standing in a field: the note joins the accessible description of that field's control, announced on reaching the field rather than only on opening the marker, and the marker leaves the tab order so a form of hinted fields costs no extra keystrokes to walk. The marker stays clickable, and keeps its tab stop wherever nothing took the note. (boolean)"
|
|
11
19
|
}
|
|
12
20
|
]
|
|
13
21
|
},
|
|
14
22
|
{
|
|
15
23
|
"name": "ful-dialog",
|
|
16
|
-
"description": "A modal dialog on the native platform: header, body and buttons, the header attribute naming its heading, opened by any element carrying dialog-target set to its id, or programmatically through open()/ask(), which
|
|
24
|
+
"description": "A modal dialog on the native platform: header, body and buttons, the header attribute naming its heading, opened by any element carrying dialog-target set to its id, or programmatically through open()/ask(), which answer with how the dialog ended, or through update(callback), which opens it on a loading state and then shows either what the callback delivered or the problems of a rejection. Longer explanations belong here, shorter ones in ful-tooltip.",
|
|
17
25
|
"attributes": [
|
|
18
26
|
{
|
|
19
27
|
"name": "header",
|
|
20
28
|
"description": "The dialog's title, shown in its header. Text only; slot content into the body instead for anything richer. (string)"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "requires-answer",
|
|
32
|
+
"description": "For the dialog that must be answered: the close button is not rendered and Escape is refused, so the only way out is a button carrying a result. Both, since a close button withheld while Escape still worked would be decoration rather than a rule. (boolean)"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "close-on-submit",
|
|
36
|
+
"description": "For the dialog whose answer is a form succeeding rather than a button being pressed: its own form submitting successfully closes it and answers with the response. Opt in, and its own form only, a ful-form the body holds directly, since a ful-table wraps its filters in a form of its own and searching one is not the dialog being answered. Such a dialog renders no acknowledge button of its own, the form's submit being its answer. (boolean)"
|
|
21
37
|
}
|
|
22
38
|
]
|
|
23
39
|
},
|
|
@@ -32,6 +48,10 @@
|
|
|
32
48
|
{
|
|
33
49
|
"name": "placement",
|
|
34
50
|
"description": "Which edge the panel slides in from: end (the default) or start, following the page's writing direction. (string)"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "close-on-submit",
|
|
54
|
+
"description": "For the drawer whose ending is a form succeeding rather than its close button being pressed: the form its content holds directly submitting successfully closes it, the close event carrying the response. Opt in, and its own form only, since a ful-table wraps its filters in a form of its own and searching one is not the drawer finishing. (boolean)"
|
|
35
55
|
}
|
|
36
56
|
]
|
|
37
57
|
},
|
|
@@ -106,6 +126,10 @@
|
|
|
106
126
|
{
|
|
107
127
|
"name": "scroll-on-error",
|
|
108
128
|
"description": "Moves focus, and the viewport with it, to the topmost invalid field when errors land. The error live region is muted while focus moves, so each problem is announced once through the focused field rather than twice. (boolean)"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "autocomplete",
|
|
132
|
+
"description": "The autofill token every field in the form takes unless it declares one of its own, copied onto the form element the host renders. A form cannot pass it down the way the platform would: each control carries form=\"\" so that the host is the only thing that submits, which leaves it with no form owner to inherit through, so the fields read it off the form instead. (string)"
|
|
109
133
|
}
|
|
110
134
|
]
|
|
111
135
|
},
|
|
@@ -163,6 +187,10 @@
|
|
|
163
187
|
"name": "trim",
|
|
164
188
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
165
189
|
},
|
|
190
|
+
{
|
|
191
|
+
"name": "autocomplete",
|
|
192
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
193
|
+
},
|
|
166
194
|
{
|
|
167
195
|
"name": "disabled",
|
|
168
196
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -213,6 +241,10 @@
|
|
|
213
241
|
"name": "trim",
|
|
214
242
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
215
243
|
},
|
|
244
|
+
{
|
|
245
|
+
"name": "autocomplete",
|
|
246
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
247
|
+
},
|
|
216
248
|
{
|
|
217
249
|
"name": "disabled",
|
|
218
250
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -319,6 +351,10 @@
|
|
|
319
351
|
"name": "trim",
|
|
320
352
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
321
353
|
},
|
|
354
|
+
{
|
|
355
|
+
"name": "autocomplete",
|
|
356
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
357
|
+
},
|
|
322
358
|
{
|
|
323
359
|
"name": "disabled",
|
|
324
360
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -381,6 +417,10 @@
|
|
|
381
417
|
"name": "trim",
|
|
382
418
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
383
419
|
},
|
|
420
|
+
{
|
|
421
|
+
"name": "autocomplete",
|
|
422
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
423
|
+
},
|
|
384
424
|
{
|
|
385
425
|
"name": "disabled",
|
|
386
426
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -443,6 +483,10 @@
|
|
|
443
483
|
"name": "trim",
|
|
444
484
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
445
485
|
},
|
|
486
|
+
{
|
|
487
|
+
"name": "autocomplete",
|
|
488
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
489
|
+
},
|
|
446
490
|
{
|
|
447
491
|
"name": "disabled",
|
|
448
492
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -585,6 +629,10 @@
|
|
|
585
629
|
"name": "trim",
|
|
586
630
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
587
631
|
},
|
|
632
|
+
{
|
|
633
|
+
"name": "autocomplete",
|
|
634
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
635
|
+
},
|
|
588
636
|
{
|
|
589
637
|
"name": "disabled",
|
|
590
638
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -639,6 +687,10 @@
|
|
|
639
687
|
"name": "trim",
|
|
640
688
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
641
689
|
},
|
|
690
|
+
{
|
|
691
|
+
"name": "autocomplete",
|
|
692
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
693
|
+
},
|
|
642
694
|
{
|
|
643
695
|
"name": "disabled",
|
|
644
696
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -693,6 +745,10 @@
|
|
|
693
745
|
"name": "trim",
|
|
694
746
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
695
747
|
},
|
|
748
|
+
{
|
|
749
|
+
"name": "autocomplete",
|
|
750
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
751
|
+
},
|
|
696
752
|
{
|
|
697
753
|
"name": "disabled",
|
|
698
754
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
|
@@ -773,6 +829,10 @@
|
|
|
773
829
|
"name": "trim",
|
|
774
830
|
"description": "Trims the value on the way out, leaving what was typed alone. (boolean)"
|
|
775
831
|
},
|
|
832
|
+
{
|
|
833
|
+
"name": "autocomplete",
|
|
834
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off. (string)"
|
|
835
|
+
},
|
|
776
836
|
{
|
|
777
837
|
"name": "disabled",
|
|
778
838
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state. (boolean)"
|
package/dist/web-types.json
CHANGED
|
@@ -1,22 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@optionfactory/fml",
|
|
4
|
-
"version": "9.0.0-
|
|
4
|
+
"version": "9.0.0-rc10",
|
|
5
5
|
"description-markup": "none",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "ful-tooltip",
|
|
11
|
-
"description": "An info affordance: a themed icon button toggling a small popover with a short explanation, opened by click and by keyboard like a button, dismissed by Escape or an outside click. placement picks the side the note sits on:
|
|
11
|
+
"description": "An info affordance: a themed icon button toggling a small popover with a short explanation, opened by click and by keyboard like a button, dismissed by Escape or an outside click. placement picks the side the note sits on: top (default), bottom, left or right.",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "placement",
|
|
15
|
-
"description": "Which side of the trigger the note opens on:
|
|
15
|
+
"description": "Which side of the trigger the note opens on: top (the default), bottom, left or right. Above by default because a note opening downwards covers the control the marker explains. The library places the note itself on every platform, so the side is the same everywhere.",
|
|
16
16
|
"value": {
|
|
17
17
|
"kind": "plain",
|
|
18
18
|
"type": "string"
|
|
19
19
|
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "icon",
|
|
23
|
+
"description": "The ful-icon the marker shows, for a tooltip meaning something other than plain information. Defaults to the page's Tooltip.config.icon; a name the library does not paint is declared by the page as ful-icon[name='...'] { mask-image: ... }.",
|
|
24
|
+
"value": {
|
|
25
|
+
"kind": "plain",
|
|
26
|
+
"type": "string"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "describes",
|
|
31
|
+
"description": "For a tooltip standing in a field: the note joins the accessible description of that field's control, announced on reaching the field rather than only on opening the marker, and the marker leaves the tab order so a form of hinted fields costs no extra keystrokes to walk. The marker stays clickable, and keeps its tab stop wherever nothing took the note.",
|
|
32
|
+
"value": {
|
|
33
|
+
"kind": "plain",
|
|
34
|
+
"type": "boolean"
|
|
35
|
+
}
|
|
20
36
|
}
|
|
21
37
|
],
|
|
22
38
|
"slots": [
|
|
@@ -29,7 +45,7 @@
|
|
|
29
45
|
},
|
|
30
46
|
{
|
|
31
47
|
"name": "ful-dialog",
|
|
32
|
-
"description": "A modal dialog on the native platform: header, body and buttons, the header attribute naming its heading, opened by any element carrying dialog-target set to its id, or programmatically through open()/ask(), which
|
|
48
|
+
"description": "A modal dialog on the native platform: header, body and buttons, the header attribute naming its heading, opened by any element carrying dialog-target set to its id, or programmatically through open()/ask(), which answer with how the dialog ended, or through update(callback), which opens it on a loading state and then shows either what the callback delivered or the problems of a rejection. Longer explanations belong here, shorter ones in ful-tooltip.",
|
|
33
49
|
"attributes": [
|
|
34
50
|
{
|
|
35
51
|
"name": "header",
|
|
@@ -38,22 +54,42 @@
|
|
|
38
54
|
"kind": "plain",
|
|
39
55
|
"type": "string"
|
|
40
56
|
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "requires-answer",
|
|
60
|
+
"description": "For the dialog that must be answered: the close button is not rendered and Escape is refused, so the only way out is a button carrying a result. Both, since a close button withheld while Escape still worked would be decoration rather than a rule.",
|
|
61
|
+
"value": {
|
|
62
|
+
"kind": "plain",
|
|
63
|
+
"type": "boolean"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "close-on-submit",
|
|
68
|
+
"description": "For the dialog whose answer is a form succeeding rather than a button being pressed: its own form submitting successfully closes it and answers with the response. Opt in, and its own form only, a ful-form the body holds directly, since a ful-table wraps its filters in a form of its own and searching one is not the dialog being answered. Such a dialog renders no acknowledge button of its own, the form's submit being its answer.",
|
|
69
|
+
"value": {
|
|
70
|
+
"kind": "plain",
|
|
71
|
+
"type": "boolean"
|
|
72
|
+
}
|
|
41
73
|
}
|
|
42
74
|
],
|
|
43
75
|
"slots": [
|
|
76
|
+
{
|
|
77
|
+
"name": "header",
|
|
78
|
+
"description": "Content beside the title and before it: an icon, a badge, a status. It sits outside the heading rather than in it, the header attribute setting the heading through text."
|
|
79
|
+
},
|
|
44
80
|
{
|
|
45
81
|
"name": "default",
|
|
46
82
|
"description": "The dialog body."
|
|
47
83
|
},
|
|
48
84
|
{
|
|
49
85
|
"name": "buttons",
|
|
50
|
-
"description": "Buttons closing the dialog; each carries a data-result that
|
|
86
|
+
"description": "Buttons closing the dialog; each carries a data-result that the answer carries back. Without this slot a localized acknowledge button is shown. A dialog closing on its form renders none either way, so the slot is for buttons beside the form, not for suppressing one."
|
|
51
87
|
}
|
|
52
88
|
],
|
|
53
89
|
"events": [
|
|
54
90
|
{
|
|
55
91
|
"name": "close",
|
|
56
|
-
"description": "Fired when the dialog closes, carrying the data-result of the button that closed it,
|
|
92
|
+
"description": "Fired when the dialog closes, carrying how it ended: dismissed tells a cancel from an answer, result the data-result of the button that closed it, response what a submit answered with. ask() and open() resolve with the same object, and a dialog leaving the document while open answers its waiters with a dismissal."
|
|
57
93
|
},
|
|
58
94
|
{
|
|
59
95
|
"name": "section:requested",
|
|
@@ -80,9 +116,21 @@
|
|
|
80
116
|
"kind": "plain",
|
|
81
117
|
"type": "string"
|
|
82
118
|
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "close-on-submit",
|
|
122
|
+
"description": "For the drawer whose ending is a form succeeding rather than its close button being pressed: the form its content holds directly submitting successfully closes it, the close event carrying the response. Opt in, and its own form only, since a ful-table wraps its filters in a form of its own and searching one is not the drawer finishing.",
|
|
123
|
+
"value": {
|
|
124
|
+
"kind": "plain",
|
|
125
|
+
"type": "boolean"
|
|
126
|
+
}
|
|
83
127
|
}
|
|
84
128
|
],
|
|
85
129
|
"slots": [
|
|
130
|
+
{
|
|
131
|
+
"name": "header",
|
|
132
|
+
"description": "Content beside the title and before it: an icon, a badge, a status. It sits outside the heading rather than in it, update() setting the title through textContent and taking anything nested there with it."
|
|
133
|
+
},
|
|
86
134
|
{
|
|
87
135
|
"name": "default",
|
|
88
136
|
"description": "The drawer body, shown when update() never replaced it."
|
|
@@ -91,7 +139,7 @@
|
|
|
91
139
|
"events": [
|
|
92
140
|
{
|
|
93
141
|
"name": "close",
|
|
94
|
-
"description": "Fired when the drawer closes,
|
|
142
|
+
"description": "Fired when the drawer closes, carrying how it ended: dismissed tells the close button and Escape from a form that closed it under close-on-submit, and response what that submit answered with, a save answering with no body at all being a save all the same."
|
|
95
143
|
},
|
|
96
144
|
{
|
|
97
145
|
"name": "section:requested",
|
|
@@ -263,6 +311,14 @@
|
|
|
263
311
|
"kind": "plain",
|
|
264
312
|
"type": "boolean"
|
|
265
313
|
}
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "autocomplete",
|
|
317
|
+
"description": "The autofill token every field in the form takes unless it declares one of its own, copied onto the form element the host renders. A form cannot pass it down the way the platform would: each control carries form=\"\" so that the host is the only thing that submits, which leaves it with no form owner to inherit through, so the fields read it off the form instead.",
|
|
318
|
+
"value": {
|
|
319
|
+
"kind": "plain",
|
|
320
|
+
"type": "string"
|
|
321
|
+
}
|
|
266
322
|
}
|
|
267
323
|
],
|
|
268
324
|
"slots": [],
|
|
@@ -399,6 +455,14 @@
|
|
|
399
455
|
"type": "boolean"
|
|
400
456
|
}
|
|
401
457
|
},
|
|
458
|
+
{
|
|
459
|
+
"name": "autocomplete",
|
|
460
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
461
|
+
"value": {
|
|
462
|
+
"kind": "plain",
|
|
463
|
+
"type": "string"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
402
466
|
{
|
|
403
467
|
"name": "disabled",
|
|
404
468
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -517,6 +581,14 @@
|
|
|
517
581
|
"type": "boolean"
|
|
518
582
|
}
|
|
519
583
|
},
|
|
584
|
+
{
|
|
585
|
+
"name": "autocomplete",
|
|
586
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
587
|
+
"value": {
|
|
588
|
+
"kind": "plain",
|
|
589
|
+
"type": "string"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
520
592
|
{
|
|
521
593
|
"name": "disabled",
|
|
522
594
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -743,6 +815,14 @@
|
|
|
743
815
|
"type": "boolean"
|
|
744
816
|
}
|
|
745
817
|
},
|
|
818
|
+
{
|
|
819
|
+
"name": "autocomplete",
|
|
820
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
821
|
+
"value": {
|
|
822
|
+
"kind": "plain",
|
|
823
|
+
"type": "string"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
746
826
|
{
|
|
747
827
|
"name": "disabled",
|
|
748
828
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -885,6 +965,14 @@
|
|
|
885
965
|
"type": "boolean"
|
|
886
966
|
}
|
|
887
967
|
},
|
|
968
|
+
{
|
|
969
|
+
"name": "autocomplete",
|
|
970
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
971
|
+
"value": {
|
|
972
|
+
"kind": "plain",
|
|
973
|
+
"type": "string"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
888
976
|
{
|
|
889
977
|
"name": "disabled",
|
|
890
978
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -1027,6 +1115,14 @@
|
|
|
1027
1115
|
"type": "boolean"
|
|
1028
1116
|
}
|
|
1029
1117
|
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "autocomplete",
|
|
1120
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
1121
|
+
"value": {
|
|
1122
|
+
"kind": "plain",
|
|
1123
|
+
"type": "string"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1030
1126
|
{
|
|
1031
1127
|
"name": "disabled",
|
|
1032
1128
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -1354,6 +1450,14 @@
|
|
|
1354
1450
|
"type": "boolean"
|
|
1355
1451
|
}
|
|
1356
1452
|
},
|
|
1453
|
+
{
|
|
1454
|
+
"name": "autocomplete",
|
|
1455
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
1456
|
+
"value": {
|
|
1457
|
+
"kind": "plain",
|
|
1458
|
+
"type": "string"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1357
1461
|
{
|
|
1358
1462
|
"name": "disabled",
|
|
1359
1463
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -1480,6 +1584,14 @@
|
|
|
1480
1584
|
"type": "boolean"
|
|
1481
1585
|
}
|
|
1482
1586
|
},
|
|
1587
|
+
{
|
|
1588
|
+
"name": "autocomplete",
|
|
1589
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
1590
|
+
"value": {
|
|
1591
|
+
"kind": "plain",
|
|
1592
|
+
"type": "string"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1483
1595
|
{
|
|
1484
1596
|
"name": "disabled",
|
|
1485
1597
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -1606,6 +1718,14 @@
|
|
|
1606
1718
|
"type": "boolean"
|
|
1607
1719
|
}
|
|
1608
1720
|
},
|
|
1721
|
+
{
|
|
1722
|
+
"name": "autocomplete",
|
|
1723
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
1724
|
+
"value": {
|
|
1725
|
+
"kind": "plain",
|
|
1726
|
+
"type": "string"
|
|
1727
|
+
}
|
|
1728
|
+
},
|
|
1609
1729
|
{
|
|
1610
1730
|
"name": "disabled",
|
|
1611
1731
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|
|
@@ -1802,6 +1922,14 @@
|
|
|
1802
1922
|
"type": "boolean"
|
|
1803
1923
|
}
|
|
1804
1924
|
},
|
|
1925
|
+
{
|
|
1926
|
+
"name": "autocomplete",
|
|
1927
|
+
"description": "The autofill token the browser classifies the control by, one of the names the html autocomplete grammar defines (name, given-name, street-address, postal-code, one-time-code, off, ...). It is set on the control itself because the control carries form=\"\", which leaves it without a form owner to inherit a form-wide setting from. Read once at the upgrade. A value outside the grammar reads as on, so an identifier of your own does not switch autofill off.",
|
|
1928
|
+
"value": {
|
|
1929
|
+
"kind": "plain",
|
|
1930
|
+
"type": "string"
|
|
1931
|
+
}
|
|
1932
|
+
},
|
|
1805
1933
|
{
|
|
1806
1934
|
"name": "disabled",
|
|
1807
1935
|
"description": "The field's own disabled claim: the control is disabled and the field is left out of the submitted values, composed with a disabled fieldset ancestry. The property reflects the claim only, matches(':disabled') tells the effective state.",
|