@optionfactory/fml 8.0.3 → 9.0.0-rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +7 -0
- package/README.md +88 -0
- package/dist/client-errors.iife.js +30 -9
- package/dist/client-errors.iife.js.map +1 -1
- package/dist/client-errors.iife.min.js +1 -1
- package/dist/client-errors.iife.min.js.map +1 -1
- package/dist/custom-elements.json +1591 -427
- package/dist/fml.css +21 -10
- package/dist/fml.css.map +1 -1
- package/dist/fml.d.mts +3 -1322
- package/dist/fml.iife.js +5308 -2280
- 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/fml.min.mjs +1 -1
- package/dist/fml.min.mjs.map +1 -1
- package/dist/fml.mjs +6 -8737
- package/dist/fml.mjs.map +1 -1
- package/dist/ftl.d.mts +430 -92
- package/dist/ftl.iife.js +1314 -809
- package/dist/ftl.iife.js.map +1 -1
- package/dist/ftl.iife.min.js +1 -1
- package/dist/ftl.iife.min.js.map +1 -1
- package/dist/ftl.min.mjs +1 -1
- package/dist/ftl.min.mjs.map +1 -1
- package/dist/ftl.mjs +1313 -810
- package/dist/ftl.mjs.map +1 -1
- package/dist/ful.css +21 -10
- package/dist/ful.css.map +1 -1
- package/dist/ful.d.mts +801 -252
- package/dist/ful.iife.js +3711 -1375
- 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 +3700 -1375
- package/dist/ful.mjs.map +1 -1
- package/dist/httpc.d.mts +114 -19
- package/dist/httpc.iife.js +253 -83
- package/dist/httpc.iife.js.map +1 -1
- package/dist/httpc.iife.min.js +1 -1
- package/dist/httpc.iife.min.js.map +1 -1
- package/dist/httpc.min.mjs +1 -1
- package/dist/httpc.min.mjs.map +1 -1
- package/dist/httpc.mjs +250 -84
- package/dist/httpc.mjs.map +1 -1
- package/dist/vscode.html-custom-data.json +640 -58
- package/dist/web-types.json +1529 -354
- package/package.json +16 -8
package/dist/web-types.json
CHANGED
|
@@ -1,27 +1,278 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@optionfactory/fml",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.0.0-rc2",
|
|
5
5
|
"description-markup": "none",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
|
-
"name": "ful-
|
|
11
|
-
"description": "
|
|
12
|
-
"attributes": [
|
|
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: bottom (default), top, left or right.",
|
|
12
|
+
"attributes": [
|
|
13
|
+
{
|
|
14
|
+
"name": "placement",
|
|
15
|
+
"description": "Which side of the trigger the note opens on: bottom (the default), top, start or end. The library places the note itself on every platform, so the side is the same everywhere.",
|
|
16
|
+
"value": {
|
|
17
|
+
"kind": "plain",
|
|
18
|
+
"type": "string"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"slots": [
|
|
23
|
+
{
|
|
24
|
+
"name": "default",
|
|
25
|
+
"description": "The short explanation shown in the popover."
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"events": []
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"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 resolve with the data-result of the button that closed the dialog (null on Escape). Longer explanations belong here, shorter ones in ful-tooltip.",
|
|
33
|
+
"attributes": [
|
|
34
|
+
{
|
|
35
|
+
"name": "header",
|
|
36
|
+
"description": "The dialog's title, shown in its header. Text only; slot content into the body instead for anything richer.",
|
|
37
|
+
"value": {
|
|
38
|
+
"kind": "plain",
|
|
39
|
+
"type": "string"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"slots": [
|
|
44
|
+
{
|
|
45
|
+
"name": "default",
|
|
46
|
+
"description": "The dialog body."
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "buttons",
|
|
50
|
+
"description": "Buttons closing the dialog; each carries a data-result that ask() resolves with. Without this slot a localized acknowledge button is shown."
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"events": [
|
|
54
|
+
{
|
|
55
|
+
"name": "close",
|
|
56
|
+
"description": "Fired when the dialog closes, carrying the data-result of the button that closed it, or null on Escape; ask() and open() resolve with the same answer, and a dialog leaving the document while open answers its waiters with null."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "section:requested",
|
|
60
|
+
"description": "Fired by the disclosure when it opens (bubbling): answer through AsyncEvents.asyncOn with the body's delivery; the open awaits the answers under the loading chrome, and a failed delivery paints the body's problems."
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "ful-drawer",
|
|
66
|
+
"description": "A side panel drawer on the native dialog platform: a header with its title (the title attribute, or update()'s own) and close button, and a body that opens in a loading state, then shows either the content delivered by update(title, callback) (or the slotted one, when it is never updated) or the error a rejecting callback carries. placement picks the side, end by default, start its mirror. Any element carrying dialog-target set to its id opens it too.",
|
|
67
|
+
"attributes": [
|
|
68
|
+
{
|
|
69
|
+
"name": "title",
|
|
70
|
+
"description": "The drawer's title, shown in its header. Text only, and also what update() re-titles the panel with.",
|
|
71
|
+
"value": {
|
|
72
|
+
"kind": "plain",
|
|
73
|
+
"type": "string"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "placement",
|
|
78
|
+
"description": "Which edge the panel slides in from: end (the default) or start, following the page's writing direction.",
|
|
79
|
+
"value": {
|
|
80
|
+
"kind": "plain",
|
|
81
|
+
"type": "string"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"slots": [
|
|
86
|
+
{
|
|
87
|
+
"name": "default",
|
|
88
|
+
"description": "The drawer body, shown when update() never replaced it."
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"events": [
|
|
92
|
+
{
|
|
93
|
+
"name": "close",
|
|
94
|
+
"description": "Fired when the drawer closes, by its close button or Escape."
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "section:requested",
|
|
98
|
+
"description": "Fired by the disclosure when it opens (bubbling): answer through AsyncEvents.asyncOn with the body's delivery; the open awaits the answers under the loading chrome, and a failed delivery paints the body's problems."
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "ful-toasts",
|
|
104
|
+
"description": "A transient feedback region, one per page: each show() (or a show-toast document event carrying the same detail) appends a toast that dismisses itself after its timeout, the element's timeout attribute or five seconds by default, and carries its own dismiss button. severity picks the theme and the announcement, info by default, success, warning and error, the error one announced as an alert; a Failure message shows its problems' reasons.",
|
|
105
|
+
"attributes": [
|
|
106
|
+
{
|
|
107
|
+
"name": "timeout",
|
|
108
|
+
"description": "How long a toast stands before it retires, in milliseconds; 5000 when absent. A show() may override it per toast.",
|
|
109
|
+
"value": {
|
|
110
|
+
"kind": "plain",
|
|
111
|
+
"type": "number"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"slots": [],
|
|
116
|
+
"events": []
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "ful-tabs",
|
|
120
|
+
"description": "A tab panel: one visible panel at a time, announced through the tab pattern (a tablist of tab buttons, each panel a tabpanel named by its tab, the arrows and Home/End walking the tabs with automatic activation). The tabs are declared as tab elements in the tabs slot, the panels as the slotless children, paired in order; the chrome anchors on the ful-tablist style-only tag, so a subclass or foreign markup built from it keeps the look.",
|
|
121
|
+
"attributes": [
|
|
122
|
+
{
|
|
123
|
+
"name": "active",
|
|
124
|
+
"description": "The index of the visible panel, zero based, reflected as the active attribute. Clicks, the arrow keys and the property all move it, each move answering with a change event.",
|
|
125
|
+
"value": {
|
|
126
|
+
"kind": "plain",
|
|
127
|
+
"type": "number"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"slots": [
|
|
132
|
+
{
|
|
133
|
+
"name": "tabs",
|
|
134
|
+
"description": "The tab declarations, one tab element per panel, carrying the tab's label."
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "default",
|
|
138
|
+
"description": "The panels, one element per declared tab, paired in order: each becomes a tabpanel announced by its tab."
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"events": [
|
|
142
|
+
{
|
|
143
|
+
"name": "change",
|
|
144
|
+
"description": "Fired with the active index and the previous one whenever the visible panel moves."
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "section:requested",
|
|
148
|
+
"description": "Fired by the component when one of its sections is entered (bubbling): the generic type of the family, joined by section:requested:#index and by section:requested:name when the section carries a data-step. Answer through AsyncEvents.asyncOn with the section's delivery; the component awaits the answers under its loading chrome, and a failed delivery paints the section's problems."
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "ful-accordion",
|
|
154
|
+
"description": "An accordion over native details/summary disclosures: the platform carries the semantics, the keyboard and the toggling, the chrome paints the group (anchored on the ful-accordion-group style-only tag). With the exclusive claim the render assigns one shared name to every panel, which is the platform's own exclusive grouping: opening one closes the others.",
|
|
155
|
+
"attributes": [
|
|
156
|
+
{
|
|
157
|
+
"name": "exclusive",
|
|
158
|
+
"description": "When present, opening a panel closes the others: the native details name grouping, assigned (and assignable again) by the render.",
|
|
159
|
+
"value": {
|
|
160
|
+
"kind": "plain",
|
|
161
|
+
"type": "boolean"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
],
|
|
13
165
|
"slots": [
|
|
14
166
|
{
|
|
15
167
|
"name": "default",
|
|
16
|
-
"description": "
|
|
168
|
+
"description": "The native details/summary disclosures, one per panel, rendered inside the group."
|
|
17
169
|
}
|
|
18
170
|
],
|
|
19
171
|
"events": []
|
|
20
172
|
},
|
|
173
|
+
{
|
|
174
|
+
"name": "ful-wizard",
|
|
175
|
+
"description": "A wizard: a progress of steps over one-of-N sections. The steps are declared as step elements in the steps slot, the sections as the slotless children, paired in order; each section may carry a data-step name, which is what move() answers to, next() and prev() walk the neighbors, and the current step is the aria-current=step claim carried in lockstep by the step and its section, so the chrome, including which section is shown, follows the claim alone. Each move answers with a change event.",
|
|
176
|
+
"attributes": [
|
|
177
|
+
{
|
|
178
|
+
"name": "progress",
|
|
179
|
+
"description": "picks the progress chrome's shape over the same claims: the default shows the current step alone (any counter or dressing is the page's own), timeline the full timeline, dots a done/current/future strip, none leaves the chrome to the page.",
|
|
180
|
+
"value": {
|
|
181
|
+
"kind": "plain",
|
|
182
|
+
"type": "string"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"slots": [
|
|
187
|
+
{
|
|
188
|
+
"name": "steps",
|
|
189
|
+
"description": "The step declarations, one step element per section, carrying the step's label."
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "default",
|
|
193
|
+
"description": "The sections, one per declared step: only the current one is shown, and each may carry a data-step name for move()."
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"events": [
|
|
197
|
+
{
|
|
198
|
+
"name": "change",
|
|
199
|
+
"description": "Fired with the index and the data-step name after next(), prev() or move() land on a different step."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "section:requested",
|
|
203
|
+
"description": "Fired by the component when one of its sections is entered (bubbling): the generic type of the family, joined by section:requested:#index and by section:requested:name when the section carries a data-step. Answer through AsyncEvents.asyncOn with the section's delivery; the component awaits the answers under its loading chrome, and a failed delivery paints the section's problems."
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
21
207
|
{
|
|
22
208
|
"name": "ful-form",
|
|
23
|
-
"description": "Wraps its content in a form, collects the values of the fields it contains and hands them to
|
|
24
|
-
"attributes": [
|
|
209
|
+
"description": "Wraps its content in a form, collects the values of the fields it contains and hands them to the loader named by loader (loaders:form by default) on submit: with action the values travel as json (method, POST by default) through the request-mapper and response-mapper components when declared, without it the submit:requested listeners deliver the response themselves. Validation errors are announced politely without focus, or exactly once through focus management with scroll-on-error, and clear-invalid-on-change drops a field's problem as soon as the field changes again; global errors land in an author-provided ful-errors element, announced as an alert.",
|
|
210
|
+
"attributes": [
|
|
211
|
+
{
|
|
212
|
+
"name": "action",
|
|
213
|
+
"description": "The endpoint the values are submitted to. With it the form posts json through a RemoteJsonFormLoader; without it a LocalFormLoader hands the outcome to whatever a submit:requested listener resolves with.",
|
|
214
|
+
"value": {
|
|
215
|
+
"kind": "plain",
|
|
216
|
+
"type": "string"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "method",
|
|
221
|
+
"description": "The http method of the remote loader, POST by default.",
|
|
222
|
+
"value": {
|
|
223
|
+
"kind": "plain",
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "loader",
|
|
229
|
+
"description": "The registry component key of the form loader, loaders:form by default. A loader of your own implements prepare, submit and transform.",
|
|
230
|
+
"value": {
|
|
231
|
+
"kind": "plain",
|
|
232
|
+
"type": "string"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "request-mapper",
|
|
237
|
+
"description": "A registry component key, (values, form) => request, applied to the extracted values before they are sent.",
|
|
238
|
+
"value": {
|
|
239
|
+
"kind": "plain",
|
|
240
|
+
"type": "string"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "response-mapper",
|
|
245
|
+
"description": "A registry component key, (response, form) => mapped, applied to a successful response before it reaches submit:success.",
|
|
246
|
+
"value": {
|
|
247
|
+
"kind": "plain",
|
|
248
|
+
"type": "string"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "clear-invalid-on-change",
|
|
253
|
+
"description": "Clears a field's custom validity as soon as that field changes again, so a server problem stops being shown the moment the user addresses it.",
|
|
254
|
+
"value": {
|
|
255
|
+
"kind": "plain",
|
|
256
|
+
"type": "boolean"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "scroll-on-error",
|
|
261
|
+
"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.",
|
|
262
|
+
"value": {
|
|
263
|
+
"kind": "plain",
|
|
264
|
+
"type": "boolean"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "autocomplete",
|
|
269
|
+
"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.",
|
|
270
|
+
"value": {
|
|
271
|
+
"kind": "plain",
|
|
272
|
+
"type": "string"
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
],
|
|
25
276
|
"slots": [],
|
|
26
277
|
"events": [
|
|
27
278
|
{
|
|
@@ -47,8 +298,636 @@
|
|
|
47
298
|
"description": "A checkbox, or a switch with type=\"switch\". Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
48
299
|
"attributes": [
|
|
49
300
|
{
|
|
50
|
-
"name": "
|
|
51
|
-
"description": "
|
|
301
|
+
"name": "type",
|
|
302
|
+
"description": "switch renders the control as a switch rather than a checkbox. The value and the semantics are unchanged.",
|
|
303
|
+
"value": {
|
|
304
|
+
"kind": "plain",
|
|
305
|
+
"type": "string"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "disabled",
|
|
310
|
+
"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.",
|
|
311
|
+
"value": {
|
|
312
|
+
"kind": "plain",
|
|
313
|
+
"type": "boolean"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "readonly",
|
|
318
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
319
|
+
"value": {
|
|
320
|
+
"kind": "plain",
|
|
321
|
+
"type": "boolean"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "required",
|
|
326
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
327
|
+
"value": {
|
|
328
|
+
"kind": "plain",
|
|
329
|
+
"type": "boolean"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "value",
|
|
334
|
+
"description": "Checked when the attribute is the string true.",
|
|
335
|
+
"value": {
|
|
336
|
+
"kind": "plain",
|
|
337
|
+
"type": "boolean"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"slots": [
|
|
342
|
+
{
|
|
343
|
+
"name": "default",
|
|
344
|
+
"description": "The label of the field."
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "info",
|
|
348
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"events": [
|
|
352
|
+
{
|
|
353
|
+
"name": "change",
|
|
354
|
+
"description": "Fired with the new checked state when the box or its label is clicked."
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "ful-input",
|
|
360
|
+
"description": "A labelled text input. Use type to pick any native input type, or textarea; keep names the characters that survive a keystroke and reject the ones that do not, the caret staying among the survivors, and the uppercase and trim claims shape the value before it is read; v-type=number decodes the value to a number, blank staying null and a value that does not decode kept as it is, an undeclared type defaulting to number. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
361
|
+
"attributes": [
|
|
362
|
+
{
|
|
363
|
+
"name": "type",
|
|
364
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
365
|
+
"value": {
|
|
366
|
+
"kind": "plain",
|
|
367
|
+
"type": "string"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "v-type",
|
|
372
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
373
|
+
"value": {
|
|
374
|
+
"kind": "plain",
|
|
375
|
+
"type": "string"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "keep",
|
|
380
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
381
|
+
"value": {
|
|
382
|
+
"kind": "plain",
|
|
383
|
+
"type": "string"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"name": "reject",
|
|
388
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
389
|
+
"value": {
|
|
390
|
+
"kind": "plain",
|
|
391
|
+
"type": "string"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"name": "uppercase",
|
|
396
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
397
|
+
"value": {
|
|
398
|
+
"kind": "plain",
|
|
399
|
+
"type": "boolean"
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"name": "trim",
|
|
404
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
405
|
+
"value": {
|
|
406
|
+
"kind": "plain",
|
|
407
|
+
"type": "boolean"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"name": "autocomplete",
|
|
412
|
+
"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.",
|
|
413
|
+
"value": {
|
|
414
|
+
"kind": "plain",
|
|
415
|
+
"type": "string"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "disabled",
|
|
420
|
+
"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.",
|
|
421
|
+
"value": {
|
|
422
|
+
"kind": "plain",
|
|
423
|
+
"type": "boolean"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "readonly",
|
|
428
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
429
|
+
"value": {
|
|
430
|
+
"kind": "plain",
|
|
431
|
+
"type": "boolean"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "required",
|
|
436
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
437
|
+
"value": {
|
|
438
|
+
"kind": "plain",
|
|
439
|
+
"type": "boolean"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "value",
|
|
444
|
+
"description": "The current value.",
|
|
445
|
+
"value": {
|
|
446
|
+
"kind": "plain",
|
|
447
|
+
"type": "string"
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "placeholder",
|
|
452
|
+
"description": "Placeholder shown while the field is empty.",
|
|
453
|
+
"value": {
|
|
454
|
+
"kind": "plain",
|
|
455
|
+
"type": "string"
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"slots": [
|
|
460
|
+
{
|
|
461
|
+
"name": "default",
|
|
462
|
+
"description": "The label of the field."
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"name": "info",
|
|
466
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "before",
|
|
470
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "after",
|
|
474
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
"events": [
|
|
478
|
+
{
|
|
479
|
+
"name": "change",
|
|
480
|
+
"description": "Fired with the current value when the field is committed."
|
|
481
|
+
}
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "ful-input-file",
|
|
486
|
+
"description": "A file input with an optional dropzone and a list of the selected files, enforcing the size and count limits it declares; the noinput claim hides the picker control, the dropzone and the item list carrying the field alone. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
487
|
+
"attributes": [
|
|
488
|
+
{
|
|
489
|
+
"name": "type",
|
|
490
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
491
|
+
"value": {
|
|
492
|
+
"kind": "plain",
|
|
493
|
+
"type": "string"
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "v-type",
|
|
498
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
499
|
+
"value": {
|
|
500
|
+
"kind": "plain",
|
|
501
|
+
"type": "string"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "keep",
|
|
506
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
507
|
+
"value": {
|
|
508
|
+
"kind": "plain",
|
|
509
|
+
"type": "string"
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "reject",
|
|
514
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
515
|
+
"value": {
|
|
516
|
+
"kind": "plain",
|
|
517
|
+
"type": "string"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "uppercase",
|
|
522
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
523
|
+
"value": {
|
|
524
|
+
"kind": "plain",
|
|
525
|
+
"type": "boolean"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "trim",
|
|
530
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
531
|
+
"value": {
|
|
532
|
+
"kind": "plain",
|
|
533
|
+
"type": "boolean"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "autocomplete",
|
|
538
|
+
"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.",
|
|
539
|
+
"value": {
|
|
540
|
+
"kind": "plain",
|
|
541
|
+
"type": "string"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "disabled",
|
|
546
|
+
"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.",
|
|
547
|
+
"value": {
|
|
548
|
+
"kind": "plain",
|
|
549
|
+
"type": "boolean"
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "readonly",
|
|
554
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
555
|
+
"value": {
|
|
556
|
+
"kind": "plain",
|
|
557
|
+
"type": "boolean"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"name": "required",
|
|
562
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
563
|
+
"value": {
|
|
564
|
+
"kind": "plain",
|
|
565
|
+
"type": "boolean"
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"name": "value",
|
|
570
|
+
"description": "Only an empty value is honoured, to clear the selection: file inputs cannot be filled programmatically.",
|
|
571
|
+
"value": {
|
|
572
|
+
"kind": "plain",
|
|
573
|
+
"type": "string"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"name": "placeholder",
|
|
578
|
+
"description": "Placeholder shown while the field is empty.",
|
|
579
|
+
"value": {
|
|
580
|
+
"kind": "plain",
|
|
581
|
+
"type": "string"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"name": "accept",
|
|
586
|
+
"description": "Comma separated list of accepted tokens: an extension (.pdf), a mime type (application/pdf) or a wildcard (image/*). Files that do not match are dropped with a warning.",
|
|
587
|
+
"value": {
|
|
588
|
+
"kind": "plain",
|
|
589
|
+
"type": "string"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"name": "multiple",
|
|
594
|
+
"description": "Allows selecting more than one file.",
|
|
595
|
+
"value": {
|
|
596
|
+
"kind": "plain",
|
|
597
|
+
"type": "boolean"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"name": "item-list",
|
|
602
|
+
"description": "Shows the list of selected files.",
|
|
603
|
+
"value": {
|
|
604
|
+
"kind": "plain",
|
|
605
|
+
"type": "boolean"
|
|
606
|
+
}
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"name": "dropzone",
|
|
610
|
+
"description": "Shows the dropzone.",
|
|
611
|
+
"value": {
|
|
612
|
+
"kind": "plain",
|
|
613
|
+
"type": "boolean"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "max-files",
|
|
618
|
+
"description": "Maximum number of files. Exceeding it clears the selection.",
|
|
619
|
+
"value": {
|
|
620
|
+
"kind": "plain",
|
|
621
|
+
"type": "number"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "max-file-size",
|
|
626
|
+
"description": "Maximum size of a single file, in bytes. Larger files are dropped.",
|
|
627
|
+
"value": {
|
|
628
|
+
"kind": "plain",
|
|
629
|
+
"type": "number"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "max-total-size",
|
|
634
|
+
"description": "Maximum size of all the selected files, in bytes. Exceeding it clears the selection.",
|
|
635
|
+
"value": {
|
|
636
|
+
"kind": "plain",
|
|
637
|
+
"type": "number"
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"slots": [
|
|
642
|
+
{
|
|
643
|
+
"name": "default",
|
|
644
|
+
"description": "The label of the field."
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "info",
|
|
648
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "before",
|
|
652
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "after",
|
|
656
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "dropzone",
|
|
660
|
+
"description": "Replaces the contents of the default dropzone."
|
|
661
|
+
}
|
|
662
|
+
],
|
|
663
|
+
"events": [
|
|
664
|
+
{
|
|
665
|
+
"name": "change",
|
|
666
|
+
"description": "Fired with the names of the selected files."
|
|
667
|
+
}
|
|
668
|
+
]
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "ful-local-date",
|
|
672
|
+
"description": "Formats the date in its content, written as yyyy-mm-dd, in the locale of the page or the one its locale attribute names; default is shown when the content is empty.",
|
|
673
|
+
"attributes": [
|
|
674
|
+
{
|
|
675
|
+
"name": "locale",
|
|
676
|
+
"description": "The locale the date is formatted in, taking precedence over the page's. The platform default applies when neither names one.",
|
|
677
|
+
"value": {
|
|
678
|
+
"kind": "plain",
|
|
679
|
+
"type": "string"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"name": "default",
|
|
684
|
+
"description": "The text rendered when the content is blank or does not parse as a date.",
|
|
685
|
+
"value": {
|
|
686
|
+
"kind": "plain",
|
|
687
|
+
"type": "string"
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
],
|
|
691
|
+
"slots": [],
|
|
692
|
+
"events": []
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"name": "ful-instant",
|
|
696
|
+
"description": "Formats the ISO instant in its content in the locale and timezone of the page or the one its locale attribute names; default is shown when the content is empty.",
|
|
697
|
+
"attributes": [
|
|
698
|
+
{
|
|
699
|
+
"name": "locale",
|
|
700
|
+
"description": "The locale the instant is formatted in, taking precedence over the page's. The platform default applies when neither names one.",
|
|
701
|
+
"value": {
|
|
702
|
+
"kind": "plain",
|
|
703
|
+
"type": "string"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "default",
|
|
708
|
+
"description": "The text rendered when the content is blank or does not parse as an instant.",
|
|
709
|
+
"value": {
|
|
710
|
+
"kind": "plain",
|
|
711
|
+
"type": "string"
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
"slots": [],
|
|
716
|
+
"events": []
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"name": "ful-input-local-date",
|
|
720
|
+
"description": "A date input. Its bounds accept a date, now, or an offset such as +1d, -2m or +3y. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
721
|
+
"attributes": [
|
|
722
|
+
{
|
|
723
|
+
"name": "type",
|
|
724
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
725
|
+
"value": {
|
|
726
|
+
"kind": "plain",
|
|
727
|
+
"type": "string"
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"name": "v-type",
|
|
732
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
733
|
+
"value": {
|
|
734
|
+
"kind": "plain",
|
|
735
|
+
"type": "string"
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"name": "keep",
|
|
740
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
741
|
+
"value": {
|
|
742
|
+
"kind": "plain",
|
|
743
|
+
"type": "string"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "reject",
|
|
748
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
749
|
+
"value": {
|
|
750
|
+
"kind": "plain",
|
|
751
|
+
"type": "string"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"name": "uppercase",
|
|
756
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
757
|
+
"value": {
|
|
758
|
+
"kind": "plain",
|
|
759
|
+
"type": "boolean"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"name": "trim",
|
|
764
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
765
|
+
"value": {
|
|
766
|
+
"kind": "plain",
|
|
767
|
+
"type": "boolean"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"name": "autocomplete",
|
|
772
|
+
"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.",
|
|
773
|
+
"value": {
|
|
774
|
+
"kind": "plain",
|
|
775
|
+
"type": "string"
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"name": "disabled",
|
|
780
|
+
"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.",
|
|
781
|
+
"value": {
|
|
782
|
+
"kind": "plain",
|
|
783
|
+
"type": "boolean"
|
|
784
|
+
}
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"name": "readonly",
|
|
788
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
789
|
+
"value": {
|
|
790
|
+
"kind": "plain",
|
|
791
|
+
"type": "boolean"
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"name": "required",
|
|
796
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
797
|
+
"value": {
|
|
798
|
+
"kind": "plain",
|
|
799
|
+
"type": "boolean"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "value",
|
|
804
|
+
"description": "The current value.",
|
|
805
|
+
"value": {
|
|
806
|
+
"kind": "plain",
|
|
807
|
+
"type": "string"
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"name": "placeholder",
|
|
812
|
+
"description": "Placeholder shown while the field is empty.",
|
|
813
|
+
"value": {
|
|
814
|
+
"kind": "plain",
|
|
815
|
+
"type": "string"
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "step",
|
|
820
|
+
"description": "Step between selectable dates, in days.",
|
|
821
|
+
"value": {
|
|
822
|
+
"kind": "plain",
|
|
823
|
+
"type": "string"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"name": "min",
|
|
828
|
+
"description": "Earliest selectable date. Accepts a date, now, or a day, month or year offset.",
|
|
829
|
+
"value": {
|
|
830
|
+
"kind": "plain",
|
|
831
|
+
"type": "string"
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"name": "max",
|
|
836
|
+
"description": "Latest selectable date. Accepts a date, now, or a day, month or year offset.",
|
|
837
|
+
"value": {
|
|
838
|
+
"kind": "plain",
|
|
839
|
+
"type": "string"
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"slots": [
|
|
844
|
+
{
|
|
845
|
+
"name": "default",
|
|
846
|
+
"description": "The label of the field."
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "info",
|
|
850
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "before",
|
|
854
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "after",
|
|
858
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
859
|
+
}
|
|
860
|
+
],
|
|
861
|
+
"events": [
|
|
862
|
+
{
|
|
863
|
+
"name": "change",
|
|
864
|
+
"description": "Fired with the current date."
|
|
865
|
+
}
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "ful-input-local-time",
|
|
870
|
+
"description": "A time input. Its bounds accept a time, now, or an hour or minute offset, snapped to the step grid. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
871
|
+
"attributes": [
|
|
872
|
+
{
|
|
873
|
+
"name": "type",
|
|
874
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
875
|
+
"value": {
|
|
876
|
+
"kind": "plain",
|
|
877
|
+
"type": "string"
|
|
878
|
+
}
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "v-type",
|
|
882
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
883
|
+
"value": {
|
|
884
|
+
"kind": "plain",
|
|
885
|
+
"type": "string"
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "keep",
|
|
890
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
891
|
+
"value": {
|
|
892
|
+
"kind": "plain",
|
|
893
|
+
"type": "string"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"name": "reject",
|
|
898
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
899
|
+
"value": {
|
|
900
|
+
"kind": "plain",
|
|
901
|
+
"type": "string"
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "uppercase",
|
|
906
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
907
|
+
"value": {
|
|
908
|
+
"kind": "plain",
|
|
909
|
+
"type": "boolean"
|
|
910
|
+
}
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "trim",
|
|
914
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
915
|
+
"value": {
|
|
916
|
+
"kind": "plain",
|
|
917
|
+
"type": "boolean"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "autocomplete",
|
|
922
|
+
"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.",
|
|
923
|
+
"value": {
|
|
924
|
+
"kind": "plain",
|
|
925
|
+
"type": "string"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"name": "disabled",
|
|
930
|
+
"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.",
|
|
52
931
|
"value": {
|
|
53
932
|
"kind": "plain",
|
|
54
933
|
"type": "boolean"
|
|
@@ -69,6 +948,46 @@
|
|
|
69
948
|
"kind": "plain",
|
|
70
949
|
"type": "boolean"
|
|
71
950
|
}
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"name": "value",
|
|
954
|
+
"description": "The current value.",
|
|
955
|
+
"value": {
|
|
956
|
+
"kind": "plain",
|
|
957
|
+
"type": "string"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "placeholder",
|
|
962
|
+
"description": "Placeholder shown while the field is empty.",
|
|
963
|
+
"value": {
|
|
964
|
+
"kind": "plain",
|
|
965
|
+
"type": "string"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"name": "step",
|
|
970
|
+
"description": "Step between selectable times, in seconds. The bounds are truncated to this grid.",
|
|
971
|
+
"value": {
|
|
972
|
+
"kind": "plain",
|
|
973
|
+
"type": "string"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"name": "min",
|
|
978
|
+
"description": "Earliest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
979
|
+
"value": {
|
|
980
|
+
"kind": "plain",
|
|
981
|
+
"type": "string"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"name": "max",
|
|
986
|
+
"description": "Latest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
987
|
+
"value": {
|
|
988
|
+
"kind": "plain",
|
|
989
|
+
"type": "string"
|
|
990
|
+
}
|
|
72
991
|
}
|
|
73
992
|
],
|
|
74
993
|
"slots": [
|
|
@@ -79,27 +998,91 @@
|
|
|
79
998
|
{
|
|
80
999
|
"name": "info",
|
|
81
1000
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"name": "before",
|
|
1004
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"name": "after",
|
|
1008
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
82
1009
|
}
|
|
83
1010
|
],
|
|
84
1011
|
"events": [
|
|
85
1012
|
{
|
|
86
1013
|
"name": "change",
|
|
87
|
-
"description": "Fired with the
|
|
1014
|
+
"description": "Fired with the current time."
|
|
88
1015
|
}
|
|
89
1016
|
]
|
|
90
1017
|
},
|
|
91
1018
|
{
|
|
92
|
-
"name": "ful-input",
|
|
93
|
-
"description": "A
|
|
1019
|
+
"name": "ful-input-instant",
|
|
1020
|
+
"description": "A datetime input whose value is read and written as an ISO instant. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
94
1021
|
"attributes": [
|
|
95
1022
|
{
|
|
96
|
-
"name": "
|
|
97
|
-
"description": "
|
|
1023
|
+
"name": "type",
|
|
1024
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
1025
|
+
"value": {
|
|
1026
|
+
"kind": "plain",
|
|
1027
|
+
"type": "string"
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "v-type",
|
|
1032
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
1033
|
+
"value": {
|
|
1034
|
+
"kind": "plain",
|
|
1035
|
+
"type": "string"
|
|
1036
|
+
}
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"name": "keep",
|
|
1040
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
1041
|
+
"value": {
|
|
1042
|
+
"kind": "plain",
|
|
1043
|
+
"type": "string"
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"name": "reject",
|
|
1048
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
1049
|
+
"value": {
|
|
1050
|
+
"kind": "plain",
|
|
1051
|
+
"type": "string"
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"name": "uppercase",
|
|
1056
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
1057
|
+
"value": {
|
|
1058
|
+
"kind": "plain",
|
|
1059
|
+
"type": "boolean"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"name": "trim",
|
|
1064
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1065
|
+
"value": {
|
|
1066
|
+
"kind": "plain",
|
|
1067
|
+
"type": "boolean"
|
|
1068
|
+
}
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "autocomplete",
|
|
1072
|
+
"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.",
|
|
98
1073
|
"value": {
|
|
99
1074
|
"kind": "plain",
|
|
100
1075
|
"type": "string"
|
|
101
1076
|
}
|
|
102
1077
|
},
|
|
1078
|
+
{
|
|
1079
|
+
"name": "disabled",
|
|
1080
|
+
"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.",
|
|
1081
|
+
"value": {
|
|
1082
|
+
"kind": "plain",
|
|
1083
|
+
"type": "boolean"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
103
1086
|
{
|
|
104
1087
|
"name": "readonly",
|
|
105
1088
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -116,6 +1099,14 @@
|
|
|
116
1099
|
"type": "boolean"
|
|
117
1100
|
}
|
|
118
1101
|
},
|
|
1102
|
+
{
|
|
1103
|
+
"name": "value",
|
|
1104
|
+
"description": "The current value.",
|
|
1105
|
+
"value": {
|
|
1106
|
+
"kind": "plain",
|
|
1107
|
+
"type": "string"
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
119
1110
|
{
|
|
120
1111
|
"name": "placeholder",
|
|
121
1112
|
"description": "Placeholder shown while the field is empty.",
|
|
@@ -123,6 +1114,30 @@
|
|
|
123
1114
|
"kind": "plain",
|
|
124
1115
|
"type": "string"
|
|
125
1116
|
}
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "step",
|
|
1120
|
+
"description": "Step between selectable instants, in seconds.",
|
|
1121
|
+
"value": {
|
|
1122
|
+
"kind": "plain",
|
|
1123
|
+
"type": "string"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "min",
|
|
1128
|
+
"description": "Earliest selectable instant, as an ISO instant.",
|
|
1129
|
+
"value": {
|
|
1130
|
+
"kind": "plain",
|
|
1131
|
+
"type": "string"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"name": "max",
|
|
1136
|
+
"description": "Latest selectable instant, as an ISO instant.",
|
|
1137
|
+
"value": {
|
|
1138
|
+
"kind": "plain",
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
}
|
|
126
1141
|
}
|
|
127
1142
|
],
|
|
128
1143
|
"slots": [
|
|
@@ -134,42 +1149,50 @@
|
|
|
134
1149
|
"name": "info",
|
|
135
1150
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
136
1151
|
},
|
|
137
|
-
{
|
|
138
|
-
"name": "ibefore",
|
|
139
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
140
|
-
},
|
|
141
1152
|
{
|
|
142
1153
|
"name": "before",
|
|
143
|
-
"description": "
|
|
1154
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
144
1155
|
},
|
|
145
1156
|
{
|
|
146
1157
|
"name": "after",
|
|
147
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"name": "iafter",
|
|
151
1158
|
"description": "An addon rendered inside the input group, after the control."
|
|
152
1159
|
}
|
|
153
1160
|
],
|
|
154
1161
|
"events": [
|
|
155
1162
|
{
|
|
156
1163
|
"name": "change",
|
|
157
|
-
"description": "Fired with the current
|
|
1164
|
+
"description": "Fired with the current instant."
|
|
158
1165
|
}
|
|
159
1166
|
]
|
|
160
1167
|
},
|
|
161
1168
|
{
|
|
162
|
-
"name": "ful-
|
|
163
|
-
"description": "A
|
|
1169
|
+
"name": "ful-radio-group",
|
|
1170
|
+
"description": "A group of radios, declared as ful-radio children. With type=\"boolean\" the value is a real boolean. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
164
1171
|
"attributes": [
|
|
165
1172
|
{
|
|
166
|
-
"name": "
|
|
167
|
-
"description": "
|
|
1173
|
+
"name": "name",
|
|
1174
|
+
"description": "The name the radio inputs share, which is what makes them one group. Generated when absent, so a group only needs it to be addressed from outside.",
|
|
1175
|
+
"value": {
|
|
1176
|
+
"kind": "plain",
|
|
1177
|
+
"type": "string"
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"name": "type",
|
|
1182
|
+
"description": "boolean maps the two declared radios onto true and false rather than onto their own values.",
|
|
168
1183
|
"value": {
|
|
169
1184
|
"kind": "plain",
|
|
170
1185
|
"type": "string"
|
|
171
1186
|
}
|
|
172
1187
|
},
|
|
1188
|
+
{
|
|
1189
|
+
"name": "disabled",
|
|
1190
|
+
"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.",
|
|
1191
|
+
"value": {
|
|
1192
|
+
"kind": "plain",
|
|
1193
|
+
"type": "boolean"
|
|
1194
|
+
}
|
|
1195
|
+
},
|
|
173
1196
|
{
|
|
174
1197
|
"name": "readonly",
|
|
175
1198
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -187,225 +1210,212 @@
|
|
|
187
1210
|
}
|
|
188
1211
|
},
|
|
189
1212
|
{
|
|
190
|
-
"name": "
|
|
191
|
-
"description": "
|
|
1213
|
+
"name": "value",
|
|
1214
|
+
"description": "The value of the selected radio.",
|
|
192
1215
|
"value": {
|
|
193
1216
|
"kind": "plain",
|
|
194
1217
|
"type": "string"
|
|
195
1218
|
}
|
|
1219
|
+
}
|
|
1220
|
+
],
|
|
1221
|
+
"slots": [
|
|
1222
|
+
{
|
|
1223
|
+
"name": "default",
|
|
1224
|
+
"description": "The legend of the group, and its ful-radio children."
|
|
196
1225
|
},
|
|
197
1226
|
{
|
|
198
|
-
"name": "
|
|
199
|
-
"description": "
|
|
1227
|
+
"name": "header",
|
|
1228
|
+
"description": "Content rendered above the radios."
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"name": "footer",
|
|
1232
|
+
"description": "Content rendered below the radios."
|
|
1233
|
+
}
|
|
1234
|
+
],
|
|
1235
|
+
"events": [
|
|
1236
|
+
{
|
|
1237
|
+
"name": "change",
|
|
1238
|
+
"description": "Fired with the value of the selected radio."
|
|
1239
|
+
}
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"name": "ful-table",
|
|
1244
|
+
"description": "A table that loads its rows from a loader, with sorting, pagination and an optional filter form. Its columns are declared in a schema slot; the rows come from src (method, GET by default) through the loader named by loader (loaders:table by default), page-size rows a page (10 by default), the first one loading on upgrade under the autoload claim.",
|
|
1245
|
+
"attributes": [
|
|
1246
|
+
{
|
|
1247
|
+
"name": "loader",
|
|
1248
|
+
"description": "The registered component name the table loads its rows through; loaders:table when absent.",
|
|
200
1249
|
"value": {
|
|
201
1250
|
"kind": "plain",
|
|
202
1251
|
"type": "string"
|
|
203
1252
|
}
|
|
204
1253
|
},
|
|
205
1254
|
{
|
|
206
|
-
"name": "
|
|
207
|
-
"description": "
|
|
1255
|
+
"name": "autoload",
|
|
1256
|
+
"description": "Loads the first page while upgrading, instead of waiting for a reload(). The load is not awaited, so a slow or failing loader cannot hold up the page.",
|
|
208
1257
|
"value": {
|
|
209
1258
|
"kind": "plain",
|
|
210
1259
|
"type": "boolean"
|
|
211
1260
|
}
|
|
212
1261
|
},
|
|
213
1262
|
{
|
|
214
|
-
"name": "
|
|
215
|
-
"description": "
|
|
1263
|
+
"name": "page-size",
|
|
1264
|
+
"description": "How many rows a page asks the loader for, 10 by default. Stays live: writing it reloads from the first page, a table that has not been asked to load yet only recording it.",
|
|
216
1265
|
"value": {
|
|
217
1266
|
"kind": "plain",
|
|
218
|
-
"type": "
|
|
1267
|
+
"type": "number"
|
|
219
1268
|
}
|
|
1269
|
+
}
|
|
1270
|
+
],
|
|
1271
|
+
"slots": [
|
|
1272
|
+
{
|
|
1273
|
+
"name": "filters",
|
|
1274
|
+
"description": "Fields wrapped in a ful-form, submitted to filter the table."
|
|
220
1275
|
},
|
|
221
1276
|
{
|
|
222
|
-
"name": "
|
|
223
|
-
"description": "
|
|
224
|
-
"value": {
|
|
225
|
-
"kind": "plain",
|
|
226
|
-
"type": "boolean"
|
|
227
|
-
}
|
|
1277
|
+
"name": "caption",
|
|
1278
|
+
"description": "The caption of the table."
|
|
228
1279
|
},
|
|
229
1280
|
{
|
|
230
|
-
"name": "
|
|
231
|
-
"description": "
|
|
1281
|
+
"name": "footer",
|
|
1282
|
+
"description": "Content rendered in the table footer."
|
|
1283
|
+
}
|
|
1284
|
+
],
|
|
1285
|
+
"events": []
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"name": "ful-pagination",
|
|
1289
|
+
"description": "The pager of a ful-table, its window rendering at most pages links (5 by default). Rarely used on its own.",
|
|
1290
|
+
"attributes": [
|
|
1291
|
+
{
|
|
1292
|
+
"name": "pages",
|
|
1293
|
+
"description": "How many page buttons are rendered around the current one, 5 by default.",
|
|
232
1294
|
"value": {
|
|
233
1295
|
"kind": "plain",
|
|
234
1296
|
"type": "number"
|
|
235
1297
|
}
|
|
236
1298
|
},
|
|
237
1299
|
{
|
|
238
|
-
"name": "
|
|
239
|
-
"description": "
|
|
1300
|
+
"name": "total",
|
|
1301
|
+
"description": "Number of pages.",
|
|
240
1302
|
"value": {
|
|
241
1303
|
"kind": "plain",
|
|
242
1304
|
"type": "number"
|
|
243
1305
|
}
|
|
244
1306
|
},
|
|
245
1307
|
{
|
|
246
|
-
"name": "
|
|
247
|
-
"description": "
|
|
1308
|
+
"name": "current",
|
|
1309
|
+
"description": "Zero based index of the page being shown.",
|
|
248
1310
|
"value": {
|
|
249
1311
|
"kind": "plain",
|
|
250
1312
|
"type": "number"
|
|
251
1313
|
}
|
|
252
1314
|
}
|
|
253
1315
|
],
|
|
254
|
-
"slots": [
|
|
255
|
-
|
|
256
|
-
"name": "default",
|
|
257
|
-
"description": "The label of the field."
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"name": "info",
|
|
261
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"name": "ibefore",
|
|
265
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"name": "before",
|
|
269
|
-
"description": "Content rendered before the control, outside the addon styling."
|
|
270
|
-
},
|
|
1316
|
+
"slots": [],
|
|
1317
|
+
"events": [
|
|
271
1318
|
{
|
|
272
|
-
"name": "
|
|
273
|
-
"description": "
|
|
274
|
-
}
|
|
1319
|
+
"name": "page:requested",
|
|
1320
|
+
"description": "Fired with the zero based index of the page the user asked for."
|
|
1321
|
+
}
|
|
1322
|
+
]
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"name": "ful-sorter",
|
|
1326
|
+
"description": "The sort control rendered in a ful-table header, focusable and activated by Enter and Space, carrying aria-sort on its header cell. Rarely used on its own.",
|
|
1327
|
+
"attributes": [
|
|
275
1328
|
{
|
|
276
|
-
"name": "
|
|
277
|
-
"description": "
|
|
1329
|
+
"name": "sorter",
|
|
1330
|
+
"description": "The field name this column sorts by, sent in the load request. A column without it is not sortable.",
|
|
1331
|
+
"value": {
|
|
1332
|
+
"kind": "plain",
|
|
1333
|
+
"type": "string"
|
|
1334
|
+
}
|
|
278
1335
|
},
|
|
279
1336
|
{
|
|
280
|
-
"name": "
|
|
281
|
-
"description": "
|
|
1337
|
+
"name": "order",
|
|
1338
|
+
"description": "The sort currently applied, asc or desc, or absent when unsorted.",
|
|
1339
|
+
"value": {
|
|
1340
|
+
"kind": "plain",
|
|
1341
|
+
"type": "string"
|
|
1342
|
+
}
|
|
282
1343
|
}
|
|
283
1344
|
],
|
|
1345
|
+
"slots": [],
|
|
284
1346
|
"events": [
|
|
285
1347
|
{
|
|
286
|
-
"name": "
|
|
287
|
-
"description": "Fired with the
|
|
1348
|
+
"name": "sort:requested",
|
|
1349
|
+
"description": "Fired with the sorter and the next order when activated."
|
|
288
1350
|
}
|
|
289
1351
|
]
|
|
290
1352
|
},
|
|
291
1353
|
{
|
|
292
|
-
"name": "ful-
|
|
293
|
-
"description": "
|
|
294
|
-
"attributes": [],
|
|
295
|
-
"slots": [],
|
|
296
|
-
"events": []
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"name": "ful-instant",
|
|
300
|
-
"description": "Formats the ISO instant in its content in the locale and timezone of the page.",
|
|
301
|
-
"attributes": [],
|
|
302
|
-
"slots": [],
|
|
303
|
-
"events": []
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"name": "ful-input-local-date",
|
|
307
|
-
"description": "A date input. Its bounds accept a date, now, or an offset such as +1d, -2m or +3y. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
1354
|
+
"name": "ful-filter-instant",
|
|
1355
|
+
"description": "A ful-table filter over an instant, with an operator and one or two bounds. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
308
1356
|
"attributes": [
|
|
309
1357
|
{
|
|
310
|
-
"name": "
|
|
311
|
-
"description": "
|
|
1358
|
+
"name": "type",
|
|
1359
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
312
1360
|
"value": {
|
|
313
1361
|
"kind": "plain",
|
|
314
1362
|
"type": "string"
|
|
315
1363
|
}
|
|
316
1364
|
},
|
|
317
1365
|
{
|
|
318
|
-
"name": "
|
|
319
|
-
"description": "
|
|
1366
|
+
"name": "v-type",
|
|
1367
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
320
1368
|
"value": {
|
|
321
1369
|
"kind": "plain",
|
|
322
|
-
"type": "
|
|
1370
|
+
"type": "string"
|
|
323
1371
|
}
|
|
324
1372
|
},
|
|
325
1373
|
{
|
|
326
|
-
"name": "
|
|
327
|
-
"description": "
|
|
1374
|
+
"name": "keep",
|
|
1375
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
328
1376
|
"value": {
|
|
329
1377
|
"kind": "plain",
|
|
330
|
-
"type": "
|
|
1378
|
+
"type": "string"
|
|
331
1379
|
}
|
|
332
1380
|
},
|
|
333
1381
|
{
|
|
334
|
-
"name": "
|
|
335
|
-
"description": "
|
|
1382
|
+
"name": "reject",
|
|
1383
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
336
1384
|
"value": {
|
|
337
1385
|
"kind": "plain",
|
|
338
1386
|
"type": "string"
|
|
339
1387
|
}
|
|
340
1388
|
},
|
|
341
1389
|
{
|
|
342
|
-
"name": "
|
|
343
|
-
"description": "
|
|
1390
|
+
"name": "uppercase",
|
|
1391
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
344
1392
|
"value": {
|
|
345
1393
|
"kind": "plain",
|
|
346
|
-
"type": "
|
|
1394
|
+
"type": "boolean"
|
|
347
1395
|
}
|
|
348
1396
|
},
|
|
349
1397
|
{
|
|
350
|
-
"name": "
|
|
351
|
-
"description": "
|
|
1398
|
+
"name": "trim",
|
|
1399
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
352
1400
|
"value": {
|
|
353
1401
|
"kind": "plain",
|
|
354
|
-
"type": "
|
|
1402
|
+
"type": "boolean"
|
|
355
1403
|
}
|
|
356
1404
|
},
|
|
357
1405
|
{
|
|
358
|
-
"name": "
|
|
359
|
-
"description": "
|
|
1406
|
+
"name": "autocomplete",
|
|
1407
|
+
"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.",
|
|
360
1408
|
"value": {
|
|
361
1409
|
"kind": "plain",
|
|
362
1410
|
"type": "string"
|
|
363
1411
|
}
|
|
364
|
-
}
|
|
365
|
-
],
|
|
366
|
-
"slots": [
|
|
367
|
-
{
|
|
368
|
-
"name": "default",
|
|
369
|
-
"description": "The label of the field."
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"name": "info",
|
|
373
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"name": "ibefore",
|
|
377
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"name": "before",
|
|
381
|
-
"description": "Content rendered before the control, outside the addon styling."
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
"name": "after",
|
|
385
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
386
1412
|
},
|
|
387
1413
|
{
|
|
388
|
-
"name": "
|
|
389
|
-
"description": "
|
|
390
|
-
}
|
|
391
|
-
],
|
|
392
|
-
"events": [
|
|
393
|
-
{
|
|
394
|
-
"name": "change",
|
|
395
|
-
"description": "Fired with the current date."
|
|
396
|
-
}
|
|
397
|
-
]
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"name": "ful-input-local-time",
|
|
401
|
-
"description": "A time input. Its bounds accept a time, now, or an hour or minute offset, snapped to the step grid. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
402
|
-
"attributes": [
|
|
403
|
-
{
|
|
404
|
-
"name": "value",
|
|
405
|
-
"description": "The current value.",
|
|
1414
|
+
"name": "disabled",
|
|
1415
|
+
"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.",
|
|
406
1416
|
"value": {
|
|
407
1417
|
"kind": "plain",
|
|
408
|
-
"type": "
|
|
1418
|
+
"type": "boolean"
|
|
409
1419
|
}
|
|
410
1420
|
},
|
|
411
1421
|
{
|
|
@@ -425,32 +1435,24 @@
|
|
|
425
1435
|
}
|
|
426
1436
|
},
|
|
427
1437
|
{
|
|
428
|
-
"name": "
|
|
429
|
-
"description": "
|
|
430
|
-
"value": {
|
|
431
|
-
"kind": "plain",
|
|
432
|
-
"type": "string"
|
|
433
|
-
}
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"name": "min",
|
|
437
|
-
"description": "Earliest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
1438
|
+
"name": "value",
|
|
1439
|
+
"description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
|
|
438
1440
|
"value": {
|
|
439
1441
|
"kind": "plain",
|
|
440
1442
|
"type": "string"
|
|
441
1443
|
}
|
|
442
1444
|
},
|
|
443
1445
|
{
|
|
444
|
-
"name": "
|
|
445
|
-
"description": "
|
|
1446
|
+
"name": "placeholder",
|
|
1447
|
+
"description": "Placeholder shown while the field is empty.",
|
|
446
1448
|
"value": {
|
|
447
1449
|
"kind": "plain",
|
|
448
1450
|
"type": "string"
|
|
449
1451
|
}
|
|
450
1452
|
},
|
|
451
1453
|
{
|
|
452
|
-
"name": "
|
|
453
|
-
"description": "
|
|
1454
|
+
"name": "operators",
|
|
1455
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
454
1456
|
"value": {
|
|
455
1457
|
"kind": "plain",
|
|
456
1458
|
"type": "string"
|
|
@@ -466,256 +1468,224 @@
|
|
|
466
1468
|
"name": "info",
|
|
467
1469
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
468
1470
|
},
|
|
469
|
-
{
|
|
470
|
-
"name": "ibefore",
|
|
471
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
472
|
-
},
|
|
473
1471
|
{
|
|
474
1472
|
"name": "before",
|
|
475
|
-
"description": "
|
|
1473
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
476
1474
|
},
|
|
477
1475
|
{
|
|
478
1476
|
"name": "after",
|
|
479
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"name": "iafter",
|
|
483
1477
|
"description": "An addon rendered inside the input group, after the control."
|
|
484
1478
|
}
|
|
485
1479
|
],
|
|
486
1480
|
"events": [
|
|
487
1481
|
{
|
|
488
1482
|
"name": "change",
|
|
489
|
-
"description": "Fired with the
|
|
1483
|
+
"description": "Fired with the whole tuple, or undefined when the filter is incomplete."
|
|
490
1484
|
}
|
|
491
1485
|
]
|
|
492
1486
|
},
|
|
493
1487
|
{
|
|
494
|
-
"name": "ful-
|
|
495
|
-
"description": "A
|
|
1488
|
+
"name": "ful-filter-local-date",
|
|
1489
|
+
"description": "A ful-table filter over a date, with an operator and one or two bounds. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
496
1490
|
"attributes": [
|
|
497
1491
|
{
|
|
498
|
-
"name": "
|
|
499
|
-
"description": "
|
|
1492
|
+
"name": "type",
|
|
1493
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
500
1494
|
"value": {
|
|
501
1495
|
"kind": "plain",
|
|
502
1496
|
"type": "string"
|
|
503
1497
|
}
|
|
504
1498
|
},
|
|
505
1499
|
{
|
|
506
|
-
"name": "
|
|
507
|
-
"description": "
|
|
1500
|
+
"name": "v-type",
|
|
1501
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
508
1502
|
"value": {
|
|
509
1503
|
"kind": "plain",
|
|
510
|
-
"type": "
|
|
1504
|
+
"type": "string"
|
|
511
1505
|
}
|
|
512
1506
|
},
|
|
513
1507
|
{
|
|
514
|
-
"name": "
|
|
515
|
-
"description": "
|
|
1508
|
+
"name": "keep",
|
|
1509
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
516
1510
|
"value": {
|
|
517
1511
|
"kind": "plain",
|
|
518
|
-
"type": "
|
|
1512
|
+
"type": "string"
|
|
519
1513
|
}
|
|
520
1514
|
},
|
|
521
1515
|
{
|
|
522
|
-
"name": "
|
|
523
|
-
"description": "
|
|
1516
|
+
"name": "reject",
|
|
1517
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
524
1518
|
"value": {
|
|
525
1519
|
"kind": "plain",
|
|
526
1520
|
"type": "string"
|
|
527
1521
|
}
|
|
528
1522
|
},
|
|
529
1523
|
{
|
|
530
|
-
"name": "
|
|
531
|
-
"description": "
|
|
1524
|
+
"name": "uppercase",
|
|
1525
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
532
1526
|
"value": {
|
|
533
1527
|
"kind": "plain",
|
|
534
|
-
"type": "
|
|
1528
|
+
"type": "boolean"
|
|
535
1529
|
}
|
|
536
1530
|
},
|
|
537
1531
|
{
|
|
538
|
-
"name": "
|
|
539
|
-
"description": "
|
|
1532
|
+
"name": "trim",
|
|
1533
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
540
1534
|
"value": {
|
|
541
1535
|
"kind": "plain",
|
|
542
|
-
"type": "
|
|
1536
|
+
"type": "boolean"
|
|
543
1537
|
}
|
|
544
1538
|
},
|
|
545
1539
|
{
|
|
546
|
-
"name": "
|
|
547
|
-
"description": "
|
|
1540
|
+
"name": "autocomplete",
|
|
1541
|
+
"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.",
|
|
548
1542
|
"value": {
|
|
549
1543
|
"kind": "plain",
|
|
550
1544
|
"type": "string"
|
|
551
1545
|
}
|
|
552
|
-
}
|
|
553
|
-
],
|
|
554
|
-
"slots": [
|
|
555
|
-
{
|
|
556
|
-
"name": "default",
|
|
557
|
-
"description": "The label of the field."
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"name": "info",
|
|
561
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
562
1546
|
},
|
|
563
1547
|
{
|
|
564
|
-
"name": "
|
|
565
|
-
"description": "
|
|
1548
|
+
"name": "disabled",
|
|
1549
|
+
"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.",
|
|
1550
|
+
"value": {
|
|
1551
|
+
"kind": "plain",
|
|
1552
|
+
"type": "boolean"
|
|
1553
|
+
}
|
|
566
1554
|
},
|
|
567
1555
|
{
|
|
568
|
-
"name": "
|
|
569
|
-
"description": "
|
|
1556
|
+
"name": "readonly",
|
|
1557
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
1558
|
+
"value": {
|
|
1559
|
+
"kind": "plain",
|
|
1560
|
+
"type": "boolean"
|
|
1561
|
+
}
|
|
570
1562
|
},
|
|
571
1563
|
{
|
|
572
|
-
"name": "
|
|
573
|
-
"description": "
|
|
1564
|
+
"name": "required",
|
|
1565
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
1566
|
+
"value": {
|
|
1567
|
+
"kind": "plain",
|
|
1568
|
+
"type": "boolean"
|
|
1569
|
+
}
|
|
574
1570
|
},
|
|
575
|
-
{
|
|
576
|
-
"name": "iafter",
|
|
577
|
-
"description": "An addon rendered inside the input group, after the control."
|
|
578
|
-
}
|
|
579
|
-
],
|
|
580
|
-
"events": [
|
|
581
|
-
{
|
|
582
|
-
"name": "change",
|
|
583
|
-
"description": "Fired with the current instant."
|
|
584
|
-
}
|
|
585
|
-
]
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"name": "ful-radio-group",
|
|
589
|
-
"description": "A group of radios, declared as ful-radio children. With type=\"boolean\" the value is a real boolean. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
590
|
-
"attributes": [
|
|
591
1571
|
{
|
|
592
1572
|
"name": "value",
|
|
593
|
-
"description": "
|
|
1573
|
+
"description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
|
|
594
1574
|
"value": {
|
|
595
1575
|
"kind": "plain",
|
|
596
1576
|
"type": "string"
|
|
597
1577
|
}
|
|
598
1578
|
},
|
|
599
1579
|
{
|
|
600
|
-
"name": "
|
|
601
|
-
"description": "
|
|
1580
|
+
"name": "placeholder",
|
|
1581
|
+
"description": "Placeholder shown while the field is empty.",
|
|
602
1582
|
"value": {
|
|
603
1583
|
"kind": "plain",
|
|
604
|
-
"type": "
|
|
1584
|
+
"type": "string"
|
|
605
1585
|
}
|
|
606
1586
|
},
|
|
607
1587
|
{
|
|
608
|
-
"name": "
|
|
609
|
-
"description": "
|
|
1588
|
+
"name": "operators",
|
|
1589
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
610
1590
|
"value": {
|
|
611
1591
|
"kind": "plain",
|
|
612
|
-
"type": "
|
|
1592
|
+
"type": "string"
|
|
613
1593
|
}
|
|
614
1594
|
}
|
|
615
1595
|
],
|
|
616
1596
|
"slots": [
|
|
617
1597
|
{
|
|
618
1598
|
"name": "default",
|
|
619
|
-
"description": "The
|
|
1599
|
+
"description": "The label of the field."
|
|
620
1600
|
},
|
|
621
1601
|
{
|
|
622
|
-
"name": "
|
|
623
|
-
"description": "
|
|
1602
|
+
"name": "info",
|
|
1603
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
624
1604
|
},
|
|
625
1605
|
{
|
|
626
|
-
"name": "
|
|
627
|
-
"description": "
|
|
1606
|
+
"name": "before",
|
|
1607
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"name": "after",
|
|
1611
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
628
1612
|
}
|
|
629
1613
|
],
|
|
630
1614
|
"events": [
|
|
631
1615
|
{
|
|
632
1616
|
"name": "change",
|
|
633
|
-
"description": "Fired with the
|
|
1617
|
+
"description": "Fired with the whole tuple, or undefined when the filter is incomplete."
|
|
634
1618
|
}
|
|
635
1619
|
]
|
|
636
1620
|
},
|
|
637
1621
|
{
|
|
638
|
-
"name": "ful-
|
|
639
|
-
"description": "A table
|
|
640
|
-
"attributes": [],
|
|
641
|
-
"slots": [
|
|
642
|
-
{
|
|
643
|
-
"name": "filters",
|
|
644
|
-
"description": "Fields wrapped in a ful-form, submitted to filter the table."
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
"name": "caption",
|
|
648
|
-
"description": "The caption of the table."
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"name": "footer",
|
|
652
|
-
"description": "Content rendered in the table footer."
|
|
653
|
-
}
|
|
654
|
-
],
|
|
655
|
-
"events": []
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"name": "ful-pagination",
|
|
659
|
-
"description": "The pager of a ful-table. Rarely used on its own.",
|
|
1622
|
+
"name": "ful-filter-number",
|
|
1623
|
+
"description": "A ful-table filter over numbers, with an operator such as GTE or BETWEEN. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
660
1624
|
"attributes": [
|
|
661
1625
|
{
|
|
662
|
-
"name": "
|
|
663
|
-
"description": "
|
|
1626
|
+
"name": "type",
|
|
1627
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
664
1628
|
"value": {
|
|
665
1629
|
"kind": "plain",
|
|
666
|
-
"type": "
|
|
1630
|
+
"type": "string"
|
|
667
1631
|
}
|
|
668
1632
|
},
|
|
669
1633
|
{
|
|
670
|
-
"name": "
|
|
671
|
-
"description": "
|
|
1634
|
+
"name": "v-type",
|
|
1635
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
672
1636
|
"value": {
|
|
673
1637
|
"kind": "plain",
|
|
674
|
-
"type": "
|
|
1638
|
+
"type": "string"
|
|
675
1639
|
}
|
|
676
|
-
}
|
|
677
|
-
],
|
|
678
|
-
"slots": [],
|
|
679
|
-
"events": [
|
|
680
|
-
{
|
|
681
|
-
"name": "page-requested",
|
|
682
|
-
"description": "Fired with the zero based index of the page the user asked for."
|
|
683
|
-
}
|
|
684
|
-
]
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"name": "ful-sorter",
|
|
688
|
-
"description": "The sort control rendered in a ful-table header. Rarely used on its own.",
|
|
689
|
-
"attributes": [
|
|
1640
|
+
},
|
|
690
1641
|
{
|
|
691
|
-
"name": "
|
|
692
|
-
"description": "
|
|
1642
|
+
"name": "keep",
|
|
1643
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
1644
|
+
"value": {
|
|
1645
|
+
"kind": "plain",
|
|
1646
|
+
"type": "string"
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"name": "reject",
|
|
1651
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
693
1652
|
"value": {
|
|
694
1653
|
"kind": "plain",
|
|
695
1654
|
"type": "string"
|
|
696
1655
|
}
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"slots": [],
|
|
700
|
-
"events": [
|
|
1656
|
+
},
|
|
701
1657
|
{
|
|
702
|
-
"name": "
|
|
703
|
-
"description": "
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
"description": "A ful-table filter over an instant, with an operator and one or two bounds. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
710
|
-
"attributes": [
|
|
1658
|
+
"name": "uppercase",
|
|
1659
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
1660
|
+
"value": {
|
|
1661
|
+
"kind": "plain",
|
|
1662
|
+
"type": "boolean"
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
711
1665
|
{
|
|
712
|
-
"name": "
|
|
713
|
-
"description": "
|
|
1666
|
+
"name": "trim",
|
|
1667
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1668
|
+
"value": {
|
|
1669
|
+
"kind": "plain",
|
|
1670
|
+
"type": "boolean"
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"name": "autocomplete",
|
|
1675
|
+
"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.",
|
|
714
1676
|
"value": {
|
|
715
1677
|
"kind": "plain",
|
|
716
1678
|
"type": "string"
|
|
717
1679
|
}
|
|
718
1680
|
},
|
|
1681
|
+
{
|
|
1682
|
+
"name": "disabled",
|
|
1683
|
+
"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.",
|
|
1684
|
+
"value": {
|
|
1685
|
+
"kind": "plain",
|
|
1686
|
+
"type": "boolean"
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
719
1689
|
{
|
|
720
1690
|
"name": "readonly",
|
|
721
1691
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -732,6 +1702,14 @@
|
|
|
732
1702
|
"type": "boolean"
|
|
733
1703
|
}
|
|
734
1704
|
},
|
|
1705
|
+
{
|
|
1706
|
+
"name": "value",
|
|
1707
|
+
"description": "JSON tuple of the operator and its bound(s).",
|
|
1708
|
+
"value": {
|
|
1709
|
+
"kind": "plain",
|
|
1710
|
+
"type": "string"
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
735
1713
|
{
|
|
736
1714
|
"name": "placeholder",
|
|
737
1715
|
"description": "Placeholder shown while the field is empty.",
|
|
@@ -739,6 +1717,14 @@
|
|
|
739
1717
|
"kind": "plain",
|
|
740
1718
|
"type": "string"
|
|
741
1719
|
}
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"name": "operators",
|
|
1723
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
1724
|
+
"value": {
|
|
1725
|
+
"kind": "plain",
|
|
1726
|
+
"type": "string"
|
|
1727
|
+
}
|
|
742
1728
|
}
|
|
743
1729
|
],
|
|
744
1730
|
"slots": [
|
|
@@ -750,20 +1736,12 @@
|
|
|
750
1736
|
"name": "info",
|
|
751
1737
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
752
1738
|
},
|
|
753
|
-
{
|
|
754
|
-
"name": "ibefore",
|
|
755
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
756
|
-
},
|
|
757
1739
|
{
|
|
758
1740
|
"name": "before",
|
|
759
|
-
"description": "
|
|
1741
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
760
1742
|
},
|
|
761
1743
|
{
|
|
762
1744
|
"name": "after",
|
|
763
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"name": "iafter",
|
|
767
1745
|
"description": "An addon rendered inside the input group, after the control."
|
|
768
1746
|
}
|
|
769
1747
|
],
|
|
@@ -775,15 +1753,15 @@
|
|
|
775
1753
|
]
|
|
776
1754
|
},
|
|
777
1755
|
{
|
|
778
|
-
"name": "ful-filter-
|
|
779
|
-
"description": "A ful-table filter over
|
|
1756
|
+
"name": "ful-filter-boolean",
|
|
1757
|
+
"description": "A ful-table filter over booleans, with the EQ or NEQ operator and a yes/no menu carrying the true and false tokens, plus an any entry that contributes nothing. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
780
1758
|
"attributes": [
|
|
781
1759
|
{
|
|
782
|
-
"name": "
|
|
783
|
-
"description": "
|
|
1760
|
+
"name": "disabled",
|
|
1761
|
+
"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.",
|
|
784
1762
|
"value": {
|
|
785
1763
|
"kind": "plain",
|
|
786
|
-
"type": "
|
|
1764
|
+
"type": "boolean"
|
|
787
1765
|
}
|
|
788
1766
|
},
|
|
789
1767
|
{
|
|
@@ -803,8 +1781,16 @@
|
|
|
803
1781
|
}
|
|
804
1782
|
},
|
|
805
1783
|
{
|
|
806
|
-
"name": "
|
|
807
|
-
"description": "
|
|
1784
|
+
"name": "value",
|
|
1785
|
+
"description": "JSON tuple of the operator and the token.",
|
|
1786
|
+
"value": {
|
|
1787
|
+
"kind": "plain",
|
|
1788
|
+
"type": "string"
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"name": "operators",
|
|
1793
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ. Defaults to both.",
|
|
808
1794
|
"value": {
|
|
809
1795
|
"kind": "plain",
|
|
810
1796
|
"type": "string"
|
|
@@ -820,42 +1806,90 @@
|
|
|
820
1806
|
"name": "info",
|
|
821
1807
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
822
1808
|
},
|
|
823
|
-
{
|
|
824
|
-
"name": "ibefore",
|
|
825
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
826
|
-
},
|
|
827
1809
|
{
|
|
828
1810
|
"name": "before",
|
|
829
|
-
"description": "
|
|
1811
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
830
1812
|
},
|
|
831
1813
|
{
|
|
832
1814
|
"name": "after",
|
|
833
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"name": "iafter",
|
|
837
1815
|
"description": "An addon rendered inside the input group, after the control."
|
|
838
1816
|
}
|
|
839
1817
|
],
|
|
840
1818
|
"events": [
|
|
841
1819
|
{
|
|
842
1820
|
"name": "change",
|
|
843
|
-
"description": "Fired with the whole tuple, or undefined when
|
|
1821
|
+
"description": "Fired with the whole tuple, or undefined when nothing is picked."
|
|
844
1822
|
}
|
|
845
1823
|
]
|
|
846
1824
|
},
|
|
847
1825
|
{
|
|
848
1826
|
"name": "ful-filter-text",
|
|
849
|
-
"description": "A ful-table filter over text, with an operator such as CONTAINS or STARTS_WITH. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
1827
|
+
"description": "A ful-table filter over text, with an operator such as CONTAINS or STARTS_WITH and a case sensitivity. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only. A multiple ful-select used as a filter emits the bare value array the in-list annotations expect.",
|
|
850
1828
|
"attributes": [
|
|
851
1829
|
{
|
|
852
|
-
"name": "
|
|
853
|
-
"description": "
|
|
1830
|
+
"name": "type",
|
|
1831
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
1832
|
+
"value": {
|
|
1833
|
+
"kind": "plain",
|
|
1834
|
+
"type": "string"
|
|
1835
|
+
}
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"name": "v-type",
|
|
1839
|
+
"description": "number decodes the value to a number on the way out: blank stays null and a value that does not decode is kept as it is.",
|
|
1840
|
+
"value": {
|
|
1841
|
+
"kind": "plain",
|
|
1842
|
+
"type": "string"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"name": "keep",
|
|
1847
|
+
"description": "A regular expression naming the characters that survive a keystroke, so keep=\"[0-9]\" is digits only. It matches rather than negating, so it takes a pattern and not only a character class.",
|
|
1848
|
+
"value": {
|
|
1849
|
+
"kind": "plain",
|
|
1850
|
+
"type": "string"
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"name": "reject",
|
|
1855
|
+
"description": "The same filter from the other side: a regular expression naming what is stripped from the value on every keystroke. Declaring both applies keep and warns once.",
|
|
1856
|
+
"value": {
|
|
1857
|
+
"kind": "plain",
|
|
1858
|
+
"type": "string"
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"name": "uppercase",
|
|
1863
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
1864
|
+
"value": {
|
|
1865
|
+
"kind": "plain",
|
|
1866
|
+
"type": "boolean"
|
|
1867
|
+
}
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"name": "trim",
|
|
1871
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1872
|
+
"value": {
|
|
1873
|
+
"kind": "plain",
|
|
1874
|
+
"type": "boolean"
|
|
1875
|
+
}
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"name": "autocomplete",
|
|
1879
|
+
"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.",
|
|
854
1880
|
"value": {
|
|
855
1881
|
"kind": "plain",
|
|
856
1882
|
"type": "string"
|
|
857
1883
|
}
|
|
858
1884
|
},
|
|
1885
|
+
{
|
|
1886
|
+
"name": "disabled",
|
|
1887
|
+
"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.",
|
|
1888
|
+
"value": {
|
|
1889
|
+
"kind": "plain",
|
|
1890
|
+
"type": "boolean"
|
|
1891
|
+
}
|
|
1892
|
+
},
|
|
859
1893
|
{
|
|
860
1894
|
"name": "readonly",
|
|
861
1895
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -872,6 +1906,14 @@
|
|
|
872
1906
|
"type": "boolean"
|
|
873
1907
|
}
|
|
874
1908
|
},
|
|
1909
|
+
{
|
|
1910
|
+
"name": "value",
|
|
1911
|
+
"description": "JSON tuple of the operator, the sensitivity and the text.",
|
|
1912
|
+
"value": {
|
|
1913
|
+
"kind": "plain",
|
|
1914
|
+
"type": "string"
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
875
1917
|
{
|
|
876
1918
|
"name": "placeholder",
|
|
877
1919
|
"description": "Placeholder shown while the field is empty.",
|
|
@@ -879,6 +1921,22 @@
|
|
|
879
1921
|
"kind": "plain",
|
|
880
1922
|
"type": "string"
|
|
881
1923
|
}
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"name": "operators",
|
|
1927
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN, CONTAINS, STARTS_WITH, ENDS_WITH. Defaults to all of them.",
|
|
1928
|
+
"value": {
|
|
1929
|
+
"kind": "plain",
|
|
1930
|
+
"type": "string"
|
|
1931
|
+
}
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"name": "sensitivities",
|
|
1935
|
+
"description": "Comma separated list of the case sensitivity modes, IGNORE_CASE, CASE_SENSITIVE. A single entry pins every emitted tuple to it.",
|
|
1936
|
+
"value": {
|
|
1937
|
+
"kind": "plain",
|
|
1938
|
+
"type": "string"
|
|
1939
|
+
}
|
|
882
1940
|
}
|
|
883
1941
|
],
|
|
884
1942
|
"slots": [
|
|
@@ -890,20 +1948,12 @@
|
|
|
890
1948
|
"name": "info",
|
|
891
1949
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
892
1950
|
},
|
|
893
|
-
{
|
|
894
|
-
"name": "ibefore",
|
|
895
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
896
|
-
},
|
|
897
1951
|
{
|
|
898
1952
|
"name": "before",
|
|
899
|
-
"description": "
|
|
1953
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
900
1954
|
},
|
|
901
1955
|
{
|
|
902
1956
|
"name": "after",
|
|
903
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"name": "iafter",
|
|
907
1957
|
"description": "An addon rendered inside the input group, after the control."
|
|
908
1958
|
}
|
|
909
1959
|
],
|
|
@@ -916,16 +1966,120 @@
|
|
|
916
1966
|
},
|
|
917
1967
|
{
|
|
918
1968
|
"name": "ful-select",
|
|
919
|
-
"description": "A combobox backed by a loader,
|
|
1969
|
+
"description": "A combobox backed by a loader that acts like a select: the field mirrors the label of a single selection, clicking anywhere on it toggles the dropdown, which opens highlighting the current selection, and Home, End, PageUp, PageDown and Alt+arrows navigate it. A multiple selection renders as ful-badge chips. Without src the slotted options are the vocabulary; with src the options are fetched once (method, POST by default, preload fetching them while upgrading, revision caching them in local storage) or asked per query under mode=chunked, the response shaped through the k-expr/l-expr/d-expr/m-expr expressions or a response-mapper component, and every key coerced as k-type declares. Disabled follows native semantics: the attribute is the field's own claim, honored together with a disabled fieldset ancestry through :disabled, while the property reflects the claim only.",
|
|
920
1970
|
"attributes": [
|
|
921
1971
|
{
|
|
922
|
-
"name": "
|
|
923
|
-
"description": "The
|
|
1972
|
+
"name": "name",
|
|
1973
|
+
"description": "The field name the surrounding form submits the selection under.",
|
|
1974
|
+
"value": {
|
|
1975
|
+
"kind": "plain",
|
|
1976
|
+
"type": "string"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"name": "loader",
|
|
1981
|
+
"description": "The registered component name the select loads its vocabulary through; loaders:select when absent.",
|
|
1982
|
+
"value": {
|
|
1983
|
+
"kind": "plain",
|
|
1984
|
+
"type": "string"
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"name": "k-type",
|
|
1989
|
+
"description": "How a key coerces when it arrives from the response or from the value attribute: number, string or bool.",
|
|
1990
|
+
"value": {
|
|
1991
|
+
"kind": "plain",
|
|
1992
|
+
"type": "string"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "src",
|
|
1997
|
+
"description": "The url the vocabulary is fetched from. Without it the slotted <option> elements are the whole vocabulary, held in memory.",
|
|
1998
|
+
"value": {
|
|
1999
|
+
"kind": "plain",
|
|
2000
|
+
"type": "string"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"name": "method",
|
|
2005
|
+
"description": "The method the vocabulary is fetched with; POST when absent.",
|
|
2006
|
+
"value": {
|
|
2007
|
+
"kind": "plain",
|
|
2008
|
+
"type": "string"
|
|
2009
|
+
}
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"name": "mode",
|
|
2013
|
+
"description": "chunked asks the endpoint per query instead of fetching the vocabulary once, for a list too large to hold.",
|
|
2014
|
+
"value": {
|
|
2015
|
+
"kind": "plain",
|
|
2016
|
+
"type": "string"
|
|
2017
|
+
}
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"name": "preload",
|
|
2021
|
+
"description": "Fetches the vocabulary while the element upgrades rather than on first use. The field paints immediately either way; the options arrive when they arrive.",
|
|
2022
|
+
"value": {
|
|
2023
|
+
"kind": "plain",
|
|
2024
|
+
"type": "boolean"
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"name": "revision",
|
|
2029
|
+
"description": "Caches the fetched vocabulary in local storage under this revision; a load under a different one is a miss that evicts the entry. It is the cache's namespace, so a vocabulary that differs per user wants the principal in it.",
|
|
2030
|
+
"value": {
|
|
2031
|
+
"kind": "plain",
|
|
2032
|
+
"type": "string"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"name": "k-expr",
|
|
2037
|
+
"description": "The expression yielding an option's key, evaluated against each row of the response. Set it together with l-expr to shape a response without a mapper component.",
|
|
924
2038
|
"value": {
|
|
925
2039
|
"kind": "plain",
|
|
926
2040
|
"type": "string"
|
|
927
2041
|
}
|
|
928
2042
|
},
|
|
2043
|
+
{
|
|
2044
|
+
"name": "l-expr",
|
|
2045
|
+
"description": "The expression yielding an option's label, evaluated against each row of the response.",
|
|
2046
|
+
"value": {
|
|
2047
|
+
"kind": "plain",
|
|
2048
|
+
"type": "string"
|
|
2049
|
+
}
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"name": "d-expr",
|
|
2053
|
+
"description": "The expression yielding the rows from the response body; the body itself when absent.",
|
|
2054
|
+
"value": {
|
|
2055
|
+
"kind": "plain",
|
|
2056
|
+
"type": "string"
|
|
2057
|
+
}
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"name": "m-expr",
|
|
2061
|
+
"description": "The expression yielding an option's metadata, evaluated against each row; the whole row when absent.",
|
|
2062
|
+
"value": {
|
|
2063
|
+
"kind": "plain",
|
|
2064
|
+
"type": "string"
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"name": "response-mapper",
|
|
2069
|
+
"description": "The registered component name that turns a response into { key, label, metadata } entries. The k-expr/l-expr pair takes precedence; without either, the response is read as positional rows.",
|
|
2070
|
+
"value": {
|
|
2071
|
+
"kind": "plain",
|
|
2072
|
+
"type": "string"
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"name": "disabled",
|
|
2077
|
+
"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.",
|
|
2078
|
+
"value": {
|
|
2079
|
+
"kind": "plain",
|
|
2080
|
+
"type": "boolean"
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
929
2083
|
{
|
|
930
2084
|
"name": "readonly",
|
|
931
2085
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -943,8 +2097,24 @@
|
|
|
943
2097
|
}
|
|
944
2098
|
},
|
|
945
2099
|
{
|
|
946
|
-
"name": "
|
|
947
|
-
"description": "
|
|
2100
|
+
"name": "value",
|
|
2101
|
+
"description": "The selected keys, comma separated, whether or not the select is multiple. A key given here is trimmed and cannot contain a comma; assign such a key through the property instead. The property answers a key for a single select and an array for a multiple one.",
|
|
2102
|
+
"value": {
|
|
2103
|
+
"kind": "plain",
|
|
2104
|
+
"type": "string"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
"name": "multiple",
|
|
2109
|
+
"description": "Selects any number of options rather than one: the value is a comma separated list of keys and the selection renders as ful-badge chips.",
|
|
2110
|
+
"value": {
|
|
2111
|
+
"kind": "plain",
|
|
2112
|
+
"type": "boolean"
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"name": "item-list",
|
|
2117
|
+
"description": "Shows the selection as a ful-item-list under the control as well, in addition to the field itself (the label for a single select, the ful-badge chips when multiple).",
|
|
948
2118
|
"value": {
|
|
949
2119
|
"kind": "plain",
|
|
950
2120
|
"type": "boolean"
|
|
@@ -961,24 +2131,16 @@
|
|
|
961
2131
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
962
2132
|
},
|
|
963
2133
|
{
|
|
964
|
-
"name": "
|
|
2134
|
+
"name": "before",
|
|
965
2135
|
"description": "An addon rendered inside the input group, before the control."
|
|
966
2136
|
},
|
|
967
2137
|
{
|
|
968
|
-
"name": "
|
|
969
|
-
"description": "
|
|
2138
|
+
"name": "after",
|
|
2139
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
970
2140
|
},
|
|
971
2141
|
{
|
|
972
2142
|
"name": "dropdown",
|
|
973
2143
|
"description": "Replaces the template used to render the options."
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
"name": "after",
|
|
977
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
"name": "iafter",
|
|
981
|
-
"description": "An addon rendered inside the input group, after the control."
|
|
982
2144
|
}
|
|
983
2145
|
],
|
|
984
2146
|
"events": [
|
|
@@ -990,10 +2152,23 @@
|
|
|
990
2152
|
},
|
|
991
2153
|
{
|
|
992
2154
|
"name": "ful-dropdown",
|
|
993
|
-
"description": "The options popup of a ful-select. Rarely used on its own.",
|
|
994
|
-
"attributes": [
|
|
2155
|
+
"description": "The options popup of a ful-select, with a localized no-results message when the search matches nothing. Rarely used on its own.",
|
|
2156
|
+
"attributes": [
|
|
2157
|
+
{
|
|
2158
|
+
"name": "listbox",
|
|
2159
|
+
"description": "The id to give the listbox, so a host can point aria-controls and aria-activedescendant at it before this element upgrades.",
|
|
2160
|
+
"value": {
|
|
2161
|
+
"kind": "plain",
|
|
2162
|
+
"type": "string"
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2165
|
+
],
|
|
995
2166
|
"slots": [],
|
|
996
2167
|
"events": [
|
|
2168
|
+
{
|
|
2169
|
+
"name": "activechange",
|
|
2170
|
+
"description": "Fired with the id of the option the reader is on, for the combobox that controls the listbox."
|
|
2171
|
+
},
|
|
997
2172
|
{
|
|
998
2173
|
"name": "change",
|
|
999
2174
|
"description": "Fired with the option that was picked."
|