@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
|
@@ -8,52 +8,63 @@
|
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"name": "
|
|
12
|
-
"tagName": "ful-
|
|
11
|
+
"name": "Tooltip",
|
|
12
|
+
"tagName": "ful-tooltip",
|
|
13
13
|
"customElement": true,
|
|
14
|
-
"description": "
|
|
15
|
-
"attributes": [
|
|
14
|
+
"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.",
|
|
15
|
+
"attributes": [
|
|
16
|
+
{
|
|
17
|
+
"name": "placement",
|
|
18
|
+
"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.",
|
|
19
|
+
"type": {
|
|
20
|
+
"text": "string"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
],
|
|
16
24
|
"slots": [
|
|
17
25
|
{
|
|
18
26
|
"name": "",
|
|
19
|
-
"description": "
|
|
27
|
+
"description": "The short explanation shown in the popover."
|
|
20
28
|
}
|
|
21
29
|
],
|
|
22
30
|
"events": []
|
|
23
31
|
},
|
|
24
32
|
{
|
|
25
33
|
"kind": "class",
|
|
26
|
-
"name": "
|
|
27
|
-
"tagName": "ful-
|
|
34
|
+
"name": "Dialog",
|
|
35
|
+
"tagName": "ful-dialog",
|
|
28
36
|
"customElement": true,
|
|
29
|
-
"description": "
|
|
30
|
-
"attributes": [
|
|
31
|
-
"slots": [],
|
|
32
|
-
"events": [
|
|
37
|
+
"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.",
|
|
38
|
+
"attributes": [
|
|
33
39
|
{
|
|
34
|
-
"name": "
|
|
35
|
-
"description": "
|
|
40
|
+
"name": "header",
|
|
41
|
+
"description": "The dialog's title, shown in its header. Text only; slot content into the body instead for anything richer.",
|
|
36
42
|
"type": {
|
|
37
|
-
"text": "
|
|
43
|
+
"text": "string"
|
|
38
44
|
}
|
|
39
|
-
}
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"slots": [
|
|
40
48
|
{
|
|
41
|
-
"name": "
|
|
42
|
-
"description": "
|
|
43
|
-
"type": {
|
|
44
|
-
"text": "CustomEvent"
|
|
45
|
-
}
|
|
49
|
+
"name": "",
|
|
50
|
+
"description": "The dialog body."
|
|
46
51
|
},
|
|
47
52
|
{
|
|
48
|
-
"name": "
|
|
49
|
-
"description": "
|
|
53
|
+
"name": "buttons",
|
|
54
|
+
"description": "Buttons closing the dialog; each carries a data-result that ask() resolves with. Without this slot a localized acknowledge button is shown."
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"events": [
|
|
58
|
+
{
|
|
59
|
+
"name": "close",
|
|
60
|
+
"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.",
|
|
50
61
|
"type": {
|
|
51
62
|
"text": "CustomEvent"
|
|
52
63
|
}
|
|
53
64
|
},
|
|
54
65
|
{
|
|
55
|
-
"name": "
|
|
56
|
-
"description": "Fired
|
|
66
|
+
"name": "section:requested",
|
|
67
|
+
"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.",
|
|
57
68
|
"type": {
|
|
58
69
|
"text": "CustomEvent"
|
|
59
70
|
}
|
|
@@ -62,47 +73,43 @@
|
|
|
62
73
|
},
|
|
63
74
|
{
|
|
64
75
|
"kind": "class",
|
|
65
|
-
"name": "
|
|
66
|
-
"tagName": "ful-
|
|
76
|
+
"name": "Drawer",
|
|
77
|
+
"tagName": "ful-drawer",
|
|
67
78
|
"customElement": true,
|
|
68
|
-
"description": "A
|
|
79
|
+
"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.",
|
|
69
80
|
"attributes": [
|
|
70
81
|
{
|
|
71
|
-
"name": "
|
|
72
|
-
"description": "
|
|
73
|
-
"type": {
|
|
74
|
-
"text": "boolean"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"name": "readonly",
|
|
79
|
-
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
82
|
+
"name": "title",
|
|
83
|
+
"description": "The drawer's title, shown in its header. Text only, and also what update() re-titles the panel with.",
|
|
80
84
|
"type": {
|
|
81
|
-
"text": "
|
|
85
|
+
"text": "string"
|
|
82
86
|
}
|
|
83
87
|
},
|
|
84
88
|
{
|
|
85
|
-
"name": "
|
|
86
|
-
"description": "
|
|
89
|
+
"name": "placement",
|
|
90
|
+
"description": "Which edge the panel slides in from: end (the default) or start, following the page's writing direction.",
|
|
87
91
|
"type": {
|
|
88
|
-
"text": "
|
|
92
|
+
"text": "string"
|
|
89
93
|
}
|
|
90
94
|
}
|
|
91
95
|
],
|
|
92
96
|
"slots": [
|
|
93
97
|
{
|
|
94
98
|
"name": "",
|
|
95
|
-
"description": "The
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"name": "info",
|
|
99
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
99
|
+
"description": "The drawer body, shown when update() never replaced it."
|
|
100
100
|
}
|
|
101
101
|
],
|
|
102
102
|
"events": [
|
|
103
103
|
{
|
|
104
|
-
"name": "
|
|
105
|
-
"description": "Fired
|
|
104
|
+
"name": "close",
|
|
105
|
+
"description": "Fired when the drawer closes, by its close button or Escape.",
|
|
106
|
+
"type": {
|
|
107
|
+
"text": "CustomEvent"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "section:requested",
|
|
112
|
+
"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.",
|
|
106
113
|
"type": {
|
|
107
114
|
"text": "CustomEvent"
|
|
108
115
|
}
|
|
@@ -111,70 +118,123 @@
|
|
|
111
118
|
},
|
|
112
119
|
{
|
|
113
120
|
"kind": "class",
|
|
114
|
-
"name": "
|
|
115
|
-
"tagName": "ful-
|
|
121
|
+
"name": "Toasts",
|
|
122
|
+
"tagName": "ful-toasts",
|
|
116
123
|
"customElement": true,
|
|
117
|
-
"description": "A
|
|
124
|
+
"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.",
|
|
118
125
|
"attributes": [
|
|
119
126
|
{
|
|
120
|
-
"name": "
|
|
121
|
-
"description": "
|
|
127
|
+
"name": "timeout",
|
|
128
|
+
"description": "How long a toast stands before it retires, in milliseconds; 5000 when absent. A show() may override it per toast.",
|
|
122
129
|
"type": {
|
|
123
|
-
"text": "
|
|
130
|
+
"text": "number"
|
|
124
131
|
}
|
|
125
|
-
}
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"slots": [],
|
|
135
|
+
"events": []
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"kind": "class",
|
|
139
|
+
"name": "Tabs",
|
|
140
|
+
"tagName": "ful-tabs",
|
|
141
|
+
"customElement": true,
|
|
142
|
+
"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.",
|
|
143
|
+
"attributes": [
|
|
126
144
|
{
|
|
127
|
-
"name": "
|
|
128
|
-
"description": "
|
|
145
|
+
"name": "active",
|
|
146
|
+
"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.",
|
|
129
147
|
"type": {
|
|
130
|
-
"text": "
|
|
148
|
+
"text": "number"
|
|
131
149
|
}
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"slots": [
|
|
153
|
+
{
|
|
154
|
+
"name": "tabs",
|
|
155
|
+
"description": "The tab declarations, one tab element per panel, carrying the tab's label."
|
|
132
156
|
},
|
|
133
157
|
{
|
|
134
|
-
"name": "
|
|
135
|
-
"description": "
|
|
158
|
+
"name": "",
|
|
159
|
+
"description": "The panels, one element per declared tab, paired in order: each becomes a tabpanel announced by its tab."
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"events": [
|
|
163
|
+
{
|
|
164
|
+
"name": "change",
|
|
165
|
+
"description": "Fired with the active index and the previous one whenever the visible panel moves.",
|
|
136
166
|
"type": {
|
|
137
|
-
"text": "
|
|
167
|
+
"text": "CustomEvent"
|
|
138
168
|
}
|
|
139
169
|
},
|
|
140
170
|
{
|
|
141
|
-
"name": "
|
|
142
|
-
"description": "
|
|
171
|
+
"name": "section:requested",
|
|
172
|
+
"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.",
|
|
143
173
|
"type": {
|
|
144
|
-
"text": "
|
|
174
|
+
"text": "CustomEvent"
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
]
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"kind": "class",
|
|
181
|
+
"name": "Accordion",
|
|
182
|
+
"tagName": "ful-accordion",
|
|
183
|
+
"customElement": true,
|
|
184
|
+
"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.",
|
|
185
|
+
"attributes": [
|
|
186
|
+
{
|
|
187
|
+
"name": "exclusive",
|
|
188
|
+
"description": "When present, opening a panel closes the others: the native details name grouping, assigned (and assignable again) by the render.",
|
|
189
|
+
"type": {
|
|
190
|
+
"text": "boolean"
|
|
145
191
|
}
|
|
146
192
|
}
|
|
147
193
|
],
|
|
148
194
|
"slots": [
|
|
149
195
|
{
|
|
150
196
|
"name": "",
|
|
151
|
-
"description": "The
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
197
|
+
"description": "The native details/summary disclosures, one per panel, rendered inside the group."
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"events": []
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "class",
|
|
204
|
+
"name": "Wizard",
|
|
205
|
+
"tagName": "ful-wizard",
|
|
206
|
+
"customElement": true,
|
|
207
|
+
"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.",
|
|
208
|
+
"attributes": [
|
|
161
209
|
{
|
|
162
|
-
"name": "
|
|
163
|
-
"description": "
|
|
164
|
-
|
|
210
|
+
"name": "progress",
|
|
211
|
+
"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.",
|
|
212
|
+
"type": {
|
|
213
|
+
"text": "string"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"slots": [
|
|
165
218
|
{
|
|
166
|
-
"name": "
|
|
167
|
-
"description": "
|
|
219
|
+
"name": "steps",
|
|
220
|
+
"description": "The step declarations, one step element per section, carrying the step's label."
|
|
168
221
|
},
|
|
169
222
|
{
|
|
170
|
-
"name": "
|
|
171
|
-
"description": "
|
|
223
|
+
"name": "",
|
|
224
|
+
"description": "The sections, one per declared step: only the current one is shown, and each may carry a data-step name for move()."
|
|
172
225
|
}
|
|
173
226
|
],
|
|
174
227
|
"events": [
|
|
175
228
|
{
|
|
176
229
|
"name": "change",
|
|
177
|
-
"description": "Fired with the
|
|
230
|
+
"description": "Fired with the index and the data-step name after next(), prev() or move() land on a different step.",
|
|
231
|
+
"type": {
|
|
232
|
+
"text": "CustomEvent"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "section:requested",
|
|
237
|
+
"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.",
|
|
178
238
|
"type": {
|
|
179
239
|
"text": "CustomEvent"
|
|
180
240
|
}
|
|
@@ -183,123 +243,157 @@
|
|
|
183
243
|
},
|
|
184
244
|
{
|
|
185
245
|
"kind": "class",
|
|
186
|
-
"name": "
|
|
187
|
-
"tagName": "ful-
|
|
246
|
+
"name": "Form",
|
|
247
|
+
"tagName": "ful-form",
|
|
188
248
|
"customElement": true,
|
|
189
|
-
"description": "
|
|
249
|
+
"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.",
|
|
190
250
|
"attributes": [
|
|
191
251
|
{
|
|
192
|
-
"name": "
|
|
193
|
-
"description": "
|
|
252
|
+
"name": "action",
|
|
253
|
+
"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.",
|
|
194
254
|
"type": {
|
|
195
255
|
"text": "string"
|
|
196
256
|
}
|
|
197
257
|
},
|
|
198
258
|
{
|
|
199
|
-
"name": "
|
|
200
|
-
"description": "
|
|
259
|
+
"name": "method",
|
|
260
|
+
"description": "The http method of the remote loader, POST by default.",
|
|
201
261
|
"type": {
|
|
202
|
-
"text": "
|
|
262
|
+
"text": "string"
|
|
203
263
|
}
|
|
204
264
|
},
|
|
205
265
|
{
|
|
206
|
-
"name": "
|
|
207
|
-
"description": "
|
|
266
|
+
"name": "loader",
|
|
267
|
+
"description": "The registry component key of the form loader, loaders:form by default. A loader of your own implements prepare, submit and transform.",
|
|
208
268
|
"type": {
|
|
209
|
-
"text": "
|
|
269
|
+
"text": "string"
|
|
210
270
|
}
|
|
211
271
|
},
|
|
212
272
|
{
|
|
213
|
-
"name": "
|
|
214
|
-
"description": "
|
|
273
|
+
"name": "request-mapper",
|
|
274
|
+
"description": "A registry component key, (values, form) => request, applied to the extracted values before they are sent.",
|
|
215
275
|
"type": {
|
|
216
276
|
"text": "string"
|
|
217
277
|
}
|
|
218
278
|
},
|
|
219
279
|
{
|
|
220
|
-
"name": "
|
|
221
|
-
"description": "
|
|
280
|
+
"name": "response-mapper",
|
|
281
|
+
"description": "A registry component key, (response, form) => mapped, applied to a successful response before it reaches submit:success.",
|
|
222
282
|
"type": {
|
|
223
283
|
"text": "string"
|
|
224
284
|
}
|
|
225
285
|
},
|
|
226
286
|
{
|
|
227
|
-
"name": "
|
|
228
|
-
"description": "
|
|
287
|
+
"name": "clear-invalid-on-change",
|
|
288
|
+
"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.",
|
|
229
289
|
"type": {
|
|
230
290
|
"text": "boolean"
|
|
231
291
|
}
|
|
232
292
|
},
|
|
233
293
|
{
|
|
234
|
-
"name": "
|
|
235
|
-
"description": "
|
|
294
|
+
"name": "scroll-on-error",
|
|
295
|
+
"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.",
|
|
236
296
|
"type": {
|
|
237
297
|
"text": "boolean"
|
|
238
298
|
}
|
|
239
299
|
},
|
|
240
300
|
{
|
|
241
|
-
"name": "
|
|
242
|
-
"description": "
|
|
301
|
+
"name": "autocomplete",
|
|
302
|
+
"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.",
|
|
243
303
|
"type": {
|
|
244
|
-
"text": "
|
|
304
|
+
"text": "string"
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
"slots": [],
|
|
309
|
+
"events": [
|
|
310
|
+
{
|
|
311
|
+
"name": "submit",
|
|
312
|
+
"description": "Cancelable. Fired before anything is sent: preventDefault aborts the submit.",
|
|
313
|
+
"type": {
|
|
314
|
+
"text": "CustomEvent"
|
|
245
315
|
}
|
|
246
316
|
},
|
|
247
317
|
{
|
|
248
|
-
"name": "
|
|
249
|
-
"description": "
|
|
318
|
+
"name": "submit:requested",
|
|
319
|
+
"description": "Fired after the submit was accepted, to let a listener resolve the response itself.",
|
|
250
320
|
"type": {
|
|
251
|
-
"text": "
|
|
321
|
+
"text": "CustomEvent"
|
|
252
322
|
}
|
|
253
323
|
},
|
|
254
324
|
{
|
|
255
|
-
"name": "
|
|
256
|
-
"description": "
|
|
325
|
+
"name": "submit:success",
|
|
326
|
+
"description": "Fired with the submitted values and the mapped response.",
|
|
257
327
|
"type": {
|
|
258
|
-
"text": "
|
|
328
|
+
"text": "CustomEvent"
|
|
259
329
|
}
|
|
260
330
|
},
|
|
261
331
|
{
|
|
262
|
-
"name": "
|
|
263
|
-
"description": "
|
|
332
|
+
"name": "submit:failure",
|
|
333
|
+
"description": "Fired with the exception when the submit fails. The form does not rethrow.",
|
|
264
334
|
"type": {
|
|
265
|
-
"text": "
|
|
335
|
+
"text": "CustomEvent"
|
|
266
336
|
}
|
|
267
337
|
}
|
|
268
|
-
]
|
|
269
|
-
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"kind": "class",
|
|
342
|
+
"name": "Checkbox",
|
|
343
|
+
"tagName": "ful-checkbox",
|
|
344
|
+
"customElement": true,
|
|
345
|
+
"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.",
|
|
346
|
+
"attributes": [
|
|
270
347
|
{
|
|
271
|
-
"name": "",
|
|
272
|
-
"description": "The
|
|
348
|
+
"name": "type",
|
|
349
|
+
"description": "switch renders the control as a switch rather than a checkbox. The value and the semantics are unchanged.",
|
|
350
|
+
"type": {
|
|
351
|
+
"text": "string"
|
|
352
|
+
}
|
|
273
353
|
},
|
|
274
354
|
{
|
|
275
|
-
"name": "
|
|
276
|
-
"description": "
|
|
355
|
+
"name": "disabled",
|
|
356
|
+
"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.",
|
|
357
|
+
"type": {
|
|
358
|
+
"text": "boolean"
|
|
359
|
+
}
|
|
277
360
|
},
|
|
278
361
|
{
|
|
279
|
-
"name": "
|
|
280
|
-
"description": "
|
|
362
|
+
"name": "readonly",
|
|
363
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
364
|
+
"type": {
|
|
365
|
+
"text": "boolean"
|
|
366
|
+
}
|
|
281
367
|
},
|
|
282
368
|
{
|
|
283
|
-
"name": "
|
|
284
|
-
"description": "
|
|
369
|
+
"name": "required",
|
|
370
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
371
|
+
"type": {
|
|
372
|
+
"text": "boolean"
|
|
373
|
+
}
|
|
285
374
|
},
|
|
286
375
|
{
|
|
287
|
-
"name": "
|
|
288
|
-
"description": "
|
|
289
|
-
|
|
376
|
+
"name": "value",
|
|
377
|
+
"description": "Checked when the attribute is the string true.",
|
|
378
|
+
"type": {
|
|
379
|
+
"text": "boolean"
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"slots": [
|
|
290
384
|
{
|
|
291
|
-
"name": "
|
|
292
|
-
"description": "
|
|
385
|
+
"name": "",
|
|
386
|
+
"description": "The label of the field."
|
|
293
387
|
},
|
|
294
388
|
{
|
|
295
|
-
"name": "
|
|
296
|
-
"description": "
|
|
389
|
+
"name": "info",
|
|
390
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
297
391
|
}
|
|
298
392
|
],
|
|
299
393
|
"events": [
|
|
300
394
|
{
|
|
301
395
|
"name": "change",
|
|
302
|
-
"description": "Fired with the
|
|
396
|
+
"description": "Fired with the new checked state when the box or its label is clicked.",
|
|
303
397
|
"type": {
|
|
304
398
|
"text": "CustomEvent"
|
|
305
399
|
}
|
|
@@ -308,129 +402,1023 @@
|
|
|
308
402
|
},
|
|
309
403
|
{
|
|
310
404
|
"kind": "class",
|
|
311
|
-
"name": "
|
|
312
|
-
"tagName": "ful-
|
|
405
|
+
"name": "Input",
|
|
406
|
+
"tagName": "ful-input",
|
|
313
407
|
"customElement": true,
|
|
314
|
-
"description": "
|
|
315
|
-
"attributes": [
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
408
|
+
"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.",
|
|
409
|
+
"attributes": [
|
|
410
|
+
{
|
|
411
|
+
"name": "type",
|
|
412
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
413
|
+
"type": {
|
|
414
|
+
"text": "string"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "v-type",
|
|
419
|
+
"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.",
|
|
420
|
+
"type": {
|
|
421
|
+
"text": "string"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "keep",
|
|
426
|
+
"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.",
|
|
427
|
+
"type": {
|
|
428
|
+
"text": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "reject",
|
|
433
|
+
"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.",
|
|
434
|
+
"type": {
|
|
435
|
+
"text": "string"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "uppercase",
|
|
440
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
441
|
+
"type": {
|
|
442
|
+
"text": "boolean"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "trim",
|
|
447
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
448
|
+
"type": {
|
|
449
|
+
"text": "boolean"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "autocomplete",
|
|
454
|
+
"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.",
|
|
455
|
+
"type": {
|
|
456
|
+
"text": "string"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "disabled",
|
|
461
|
+
"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.",
|
|
462
|
+
"type": {
|
|
463
|
+
"text": "boolean"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "readonly",
|
|
468
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
469
|
+
"type": {
|
|
470
|
+
"text": "boolean"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"name": "required",
|
|
475
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
476
|
+
"type": {
|
|
477
|
+
"text": "boolean"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "value",
|
|
482
|
+
"description": "The current value.",
|
|
483
|
+
"type": {
|
|
484
|
+
"text": "string"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"name": "placeholder",
|
|
489
|
+
"description": "Placeholder shown while the field is empty.",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "string"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
],
|
|
495
|
+
"slots": [
|
|
496
|
+
{
|
|
497
|
+
"name": "",
|
|
498
|
+
"description": "The label of the field."
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "info",
|
|
502
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "before",
|
|
506
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "after",
|
|
510
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"events": [
|
|
514
|
+
{
|
|
515
|
+
"name": "change",
|
|
516
|
+
"description": "Fired with the current value when the field is committed.",
|
|
517
|
+
"type": {
|
|
518
|
+
"text": "CustomEvent"
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
]
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"kind": "class",
|
|
525
|
+
"name": "InputFile",
|
|
526
|
+
"tagName": "ful-input-file",
|
|
527
|
+
"customElement": true,
|
|
528
|
+
"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.",
|
|
529
|
+
"attributes": [
|
|
530
|
+
{
|
|
531
|
+
"name": "type",
|
|
532
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
533
|
+
"type": {
|
|
534
|
+
"text": "string"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"name": "v-type",
|
|
539
|
+
"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.",
|
|
540
|
+
"type": {
|
|
541
|
+
"text": "string"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "keep",
|
|
546
|
+
"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.",
|
|
547
|
+
"type": {
|
|
548
|
+
"text": "string"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"name": "reject",
|
|
553
|
+
"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.",
|
|
554
|
+
"type": {
|
|
555
|
+
"text": "string"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "uppercase",
|
|
560
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
561
|
+
"type": {
|
|
562
|
+
"text": "boolean"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"name": "trim",
|
|
567
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
568
|
+
"type": {
|
|
569
|
+
"text": "boolean"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "autocomplete",
|
|
574
|
+
"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.",
|
|
575
|
+
"type": {
|
|
576
|
+
"text": "string"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"name": "disabled",
|
|
581
|
+
"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.",
|
|
582
|
+
"type": {
|
|
583
|
+
"text": "boolean"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"name": "readonly",
|
|
588
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
589
|
+
"type": {
|
|
590
|
+
"text": "boolean"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"name": "required",
|
|
595
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
596
|
+
"type": {
|
|
597
|
+
"text": "boolean"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"name": "value",
|
|
602
|
+
"description": "Only an empty value is honoured, to clear the selection: file inputs cannot be filled programmatically.",
|
|
603
|
+
"type": {
|
|
604
|
+
"text": "string"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"name": "placeholder",
|
|
609
|
+
"description": "Placeholder shown while the field is empty.",
|
|
610
|
+
"type": {
|
|
611
|
+
"text": "string"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "accept",
|
|
616
|
+
"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.",
|
|
617
|
+
"type": {
|
|
618
|
+
"text": "string"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "multiple",
|
|
623
|
+
"description": "Allows selecting more than one file.",
|
|
624
|
+
"type": {
|
|
625
|
+
"text": "boolean"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"name": "item-list",
|
|
630
|
+
"description": "Shows the list of selected files.",
|
|
631
|
+
"type": {
|
|
632
|
+
"text": "boolean"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "dropzone",
|
|
637
|
+
"description": "Shows the dropzone.",
|
|
638
|
+
"type": {
|
|
639
|
+
"text": "boolean"
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"name": "max-files",
|
|
644
|
+
"description": "Maximum number of files. Exceeding it clears the selection.",
|
|
645
|
+
"type": {
|
|
646
|
+
"text": "number"
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"name": "max-file-size",
|
|
651
|
+
"description": "Maximum size of a single file, in bytes. Larger files are dropped.",
|
|
652
|
+
"type": {
|
|
653
|
+
"text": "number"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"name": "max-total-size",
|
|
658
|
+
"description": "Maximum size of all the selected files, in bytes. Exceeding it clears the selection.",
|
|
659
|
+
"type": {
|
|
660
|
+
"text": "number"
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
"slots": [
|
|
665
|
+
{
|
|
666
|
+
"name": "",
|
|
667
|
+
"description": "The label of the field."
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "info",
|
|
671
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"name": "before",
|
|
675
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "after",
|
|
679
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"name": "dropzone",
|
|
683
|
+
"description": "Replaces the contents of the default dropzone."
|
|
684
|
+
}
|
|
685
|
+
],
|
|
686
|
+
"events": [
|
|
687
|
+
{
|
|
688
|
+
"name": "change",
|
|
689
|
+
"description": "Fired with the names of the selected files.",
|
|
690
|
+
"type": {
|
|
691
|
+
"text": "CustomEvent"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"kind": "class",
|
|
698
|
+
"name": "LocalDate",
|
|
699
|
+
"tagName": "ful-local-date",
|
|
700
|
+
"customElement": true,
|
|
701
|
+
"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.",
|
|
702
|
+
"attributes": [
|
|
703
|
+
{
|
|
704
|
+
"name": "locale",
|
|
705
|
+
"description": "The locale the date is formatted in, taking precedence over the page's. The platform default applies when neither names one.",
|
|
706
|
+
"type": {
|
|
707
|
+
"text": "string"
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "default",
|
|
712
|
+
"description": "The text rendered when the content is blank or does not parse as a date.",
|
|
713
|
+
"type": {
|
|
714
|
+
"text": "string"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"slots": [],
|
|
719
|
+
"events": []
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"kind": "class",
|
|
723
|
+
"name": "Instant",
|
|
724
|
+
"tagName": "ful-instant",
|
|
725
|
+
"customElement": true,
|
|
726
|
+
"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.",
|
|
727
|
+
"attributes": [
|
|
728
|
+
{
|
|
729
|
+
"name": "locale",
|
|
730
|
+
"description": "The locale the instant is formatted in, taking precedence over the page's. The platform default applies when neither names one.",
|
|
731
|
+
"type": {
|
|
732
|
+
"text": "string"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "default",
|
|
737
|
+
"description": "The text rendered when the content is blank or does not parse as an instant.",
|
|
738
|
+
"type": {
|
|
739
|
+
"text": "string"
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
"slots": [],
|
|
744
|
+
"events": []
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"kind": "class",
|
|
748
|
+
"name": "InputLocalDate",
|
|
749
|
+
"tagName": "ful-input-local-date",
|
|
750
|
+
"customElement": true,
|
|
751
|
+
"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.",
|
|
752
|
+
"attributes": [
|
|
753
|
+
{
|
|
754
|
+
"name": "type",
|
|
755
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
756
|
+
"type": {
|
|
757
|
+
"text": "string"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"name": "v-type",
|
|
762
|
+
"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.",
|
|
763
|
+
"type": {
|
|
764
|
+
"text": "string"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "keep",
|
|
769
|
+
"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.",
|
|
770
|
+
"type": {
|
|
771
|
+
"text": "string"
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"name": "reject",
|
|
776
|
+
"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.",
|
|
777
|
+
"type": {
|
|
778
|
+
"text": "string"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"name": "uppercase",
|
|
783
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
784
|
+
"type": {
|
|
785
|
+
"text": "boolean"
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"name": "trim",
|
|
790
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
791
|
+
"type": {
|
|
792
|
+
"text": "boolean"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"name": "autocomplete",
|
|
797
|
+
"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.",
|
|
798
|
+
"type": {
|
|
799
|
+
"text": "string"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "disabled",
|
|
804
|
+
"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.",
|
|
805
|
+
"type": {
|
|
806
|
+
"text": "boolean"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"name": "readonly",
|
|
811
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
812
|
+
"type": {
|
|
813
|
+
"text": "boolean"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"name": "required",
|
|
818
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
819
|
+
"type": {
|
|
820
|
+
"text": "boolean"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"name": "value",
|
|
825
|
+
"description": "The current value.",
|
|
826
|
+
"type": {
|
|
827
|
+
"text": "string"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"name": "placeholder",
|
|
832
|
+
"description": "Placeholder shown while the field is empty.",
|
|
833
|
+
"type": {
|
|
834
|
+
"text": "string"
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"name": "step",
|
|
839
|
+
"description": "Step between selectable dates, in days.",
|
|
840
|
+
"type": {
|
|
841
|
+
"text": "string"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "min",
|
|
846
|
+
"description": "Earliest selectable date. Accepts a date, now, or a day, month or year offset.",
|
|
847
|
+
"type": {
|
|
848
|
+
"text": "string"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"name": "max",
|
|
853
|
+
"description": "Latest selectable date. Accepts a date, now, or a day, month or year offset.",
|
|
854
|
+
"type": {
|
|
855
|
+
"text": "string"
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"slots": [
|
|
860
|
+
{
|
|
861
|
+
"name": "",
|
|
862
|
+
"description": "The label of the field."
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "info",
|
|
866
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "before",
|
|
870
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"name": "after",
|
|
874
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
875
|
+
}
|
|
876
|
+
],
|
|
877
|
+
"events": [
|
|
878
|
+
{
|
|
879
|
+
"name": "change",
|
|
880
|
+
"description": "Fired with the current date.",
|
|
881
|
+
"type": {
|
|
882
|
+
"text": "CustomEvent"
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
]
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"kind": "class",
|
|
889
|
+
"name": "InputLocalTime",
|
|
890
|
+
"tagName": "ful-input-local-time",
|
|
891
|
+
"customElement": true,
|
|
892
|
+
"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.",
|
|
893
|
+
"attributes": [
|
|
894
|
+
{
|
|
895
|
+
"name": "type",
|
|
896
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
897
|
+
"type": {
|
|
898
|
+
"text": "string"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"name": "v-type",
|
|
903
|
+
"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.",
|
|
904
|
+
"type": {
|
|
905
|
+
"text": "string"
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"name": "keep",
|
|
910
|
+
"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.",
|
|
911
|
+
"type": {
|
|
912
|
+
"text": "string"
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"name": "reject",
|
|
917
|
+
"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.",
|
|
918
|
+
"type": {
|
|
919
|
+
"text": "string"
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "uppercase",
|
|
924
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
925
|
+
"type": {
|
|
926
|
+
"text": "boolean"
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"name": "trim",
|
|
931
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
932
|
+
"type": {
|
|
933
|
+
"text": "boolean"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"name": "autocomplete",
|
|
938
|
+
"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.",
|
|
939
|
+
"type": {
|
|
940
|
+
"text": "string"
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"name": "disabled",
|
|
945
|
+
"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.",
|
|
946
|
+
"type": {
|
|
947
|
+
"text": "boolean"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"name": "readonly",
|
|
952
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
953
|
+
"type": {
|
|
954
|
+
"text": "boolean"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"name": "required",
|
|
959
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
960
|
+
"type": {
|
|
961
|
+
"text": "boolean"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"name": "value",
|
|
966
|
+
"description": "The current value.",
|
|
967
|
+
"type": {
|
|
968
|
+
"text": "string"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"name": "placeholder",
|
|
973
|
+
"description": "Placeholder shown while the field is empty.",
|
|
974
|
+
"type": {
|
|
975
|
+
"text": "string"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"name": "step",
|
|
980
|
+
"description": "Step between selectable times, in seconds. The bounds are truncated to this grid.",
|
|
981
|
+
"type": {
|
|
982
|
+
"text": "string"
|
|
983
|
+
}
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"name": "min",
|
|
987
|
+
"description": "Earliest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
988
|
+
"type": {
|
|
989
|
+
"text": "string"
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"name": "max",
|
|
994
|
+
"description": "Latest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
995
|
+
"type": {
|
|
996
|
+
"text": "string"
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"slots": [
|
|
1001
|
+
{
|
|
1002
|
+
"name": "",
|
|
1003
|
+
"description": "The label of the field."
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"name": "info",
|
|
1007
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "before",
|
|
1011
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"name": "after",
|
|
1015
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"events": [
|
|
1019
|
+
{
|
|
1020
|
+
"name": "change",
|
|
1021
|
+
"description": "Fired with the current time.",
|
|
1022
|
+
"type": {
|
|
1023
|
+
"text": "CustomEvent"
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
]
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"kind": "class",
|
|
1030
|
+
"name": "InputInstant",
|
|
1031
|
+
"tagName": "ful-input-instant",
|
|
1032
|
+
"customElement": true,
|
|
1033
|
+
"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.",
|
|
1034
|
+
"attributes": [
|
|
1035
|
+
{
|
|
1036
|
+
"name": "type",
|
|
1037
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
1038
|
+
"type": {
|
|
1039
|
+
"text": "string"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"name": "v-type",
|
|
1044
|
+
"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.",
|
|
1045
|
+
"type": {
|
|
1046
|
+
"text": "string"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"name": "keep",
|
|
1051
|
+
"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.",
|
|
1052
|
+
"type": {
|
|
1053
|
+
"text": "string"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "reject",
|
|
1058
|
+
"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.",
|
|
1059
|
+
"type": {
|
|
1060
|
+
"text": "string"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"name": "uppercase",
|
|
1065
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
1066
|
+
"type": {
|
|
1067
|
+
"text": "boolean"
|
|
1068
|
+
}
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "trim",
|
|
1072
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1073
|
+
"type": {
|
|
1074
|
+
"text": "boolean"
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"name": "autocomplete",
|
|
1079
|
+
"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.",
|
|
1080
|
+
"type": {
|
|
1081
|
+
"text": "string"
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"name": "disabled",
|
|
1086
|
+
"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.",
|
|
1087
|
+
"type": {
|
|
1088
|
+
"text": "boolean"
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"name": "readonly",
|
|
1093
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
1094
|
+
"type": {
|
|
1095
|
+
"text": "boolean"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"name": "required",
|
|
1100
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
1101
|
+
"type": {
|
|
1102
|
+
"text": "boolean"
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"name": "value",
|
|
1107
|
+
"description": "The current value.",
|
|
1108
|
+
"type": {
|
|
1109
|
+
"text": "string"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"name": "placeholder",
|
|
1114
|
+
"description": "Placeholder shown while the field is empty.",
|
|
1115
|
+
"type": {
|
|
1116
|
+
"text": "string"
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "step",
|
|
1121
|
+
"description": "Step between selectable instants, in seconds.",
|
|
1122
|
+
"type": {
|
|
1123
|
+
"text": "string"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "min",
|
|
1128
|
+
"description": "Earliest selectable instant, as an ISO instant.",
|
|
1129
|
+
"type": {
|
|
1130
|
+
"text": "string"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"name": "max",
|
|
1135
|
+
"description": "Latest selectable instant, as an ISO instant.",
|
|
1136
|
+
"type": {
|
|
1137
|
+
"text": "string"
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
],
|
|
1141
|
+
"slots": [
|
|
1142
|
+
{
|
|
1143
|
+
"name": "",
|
|
1144
|
+
"description": "The label of the field."
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "info",
|
|
1148
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"name": "before",
|
|
1152
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"name": "after",
|
|
1156
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
1157
|
+
}
|
|
1158
|
+
],
|
|
1159
|
+
"events": [
|
|
1160
|
+
{
|
|
1161
|
+
"name": "change",
|
|
1162
|
+
"description": "Fired with the current instant.",
|
|
1163
|
+
"type": {
|
|
1164
|
+
"text": "CustomEvent"
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
]
|
|
1168
|
+
},
|
|
319
1169
|
{
|
|
320
1170
|
"kind": "class",
|
|
321
|
-
"name": "
|
|
322
|
-
"tagName": "ful-
|
|
1171
|
+
"name": "RadioGroup",
|
|
1172
|
+
"tagName": "ful-radio-group",
|
|
323
1173
|
"customElement": true,
|
|
324
|
-
"description": "
|
|
325
|
-
"attributes": [
|
|
326
|
-
|
|
327
|
-
|
|
1174
|
+
"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.",
|
|
1175
|
+
"attributes": [
|
|
1176
|
+
{
|
|
1177
|
+
"name": "name",
|
|
1178
|
+
"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.",
|
|
1179
|
+
"type": {
|
|
1180
|
+
"text": "string"
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"name": "type",
|
|
1185
|
+
"description": "boolean maps the two declared radios onto true and false rather than onto their own values.",
|
|
1186
|
+
"type": {
|
|
1187
|
+
"text": "string"
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"name": "disabled",
|
|
1192
|
+
"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.",
|
|
1193
|
+
"type": {
|
|
1194
|
+
"text": "boolean"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"name": "readonly",
|
|
1199
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
1200
|
+
"type": {
|
|
1201
|
+
"text": "boolean"
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"name": "required",
|
|
1206
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
1207
|
+
"type": {
|
|
1208
|
+
"text": "boolean"
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"name": "value",
|
|
1213
|
+
"description": "The value of the selected radio.",
|
|
1214
|
+
"type": {
|
|
1215
|
+
"text": "string"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
],
|
|
1219
|
+
"slots": [
|
|
1220
|
+
{
|
|
1221
|
+
"name": "",
|
|
1222
|
+
"description": "The legend of the group, and its ful-radio children."
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"name": "header",
|
|
1226
|
+
"description": "Content rendered above the radios."
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"name": "footer",
|
|
1230
|
+
"description": "Content rendered below the radios."
|
|
1231
|
+
}
|
|
1232
|
+
],
|
|
1233
|
+
"events": [
|
|
1234
|
+
{
|
|
1235
|
+
"name": "change",
|
|
1236
|
+
"description": "Fired with the value of the selected radio.",
|
|
1237
|
+
"type": {
|
|
1238
|
+
"text": "CustomEvent"
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
]
|
|
328
1242
|
},
|
|
329
1243
|
{
|
|
330
1244
|
"kind": "class",
|
|
331
|
-
"name": "
|
|
332
|
-
"tagName": "ful-
|
|
1245
|
+
"name": "Table",
|
|
1246
|
+
"tagName": "ful-table",
|
|
333
1247
|
"customElement": true,
|
|
334
|
-
"description": "A
|
|
1248
|
+
"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.",
|
|
335
1249
|
"attributes": [
|
|
336
1250
|
{
|
|
337
|
-
"name": "
|
|
338
|
-
"description": "The
|
|
1251
|
+
"name": "loader",
|
|
1252
|
+
"description": "The registered component name the table loads its rows through; loaders:table when absent.",
|
|
339
1253
|
"type": {
|
|
340
1254
|
"text": "string"
|
|
341
1255
|
}
|
|
342
1256
|
},
|
|
343
1257
|
{
|
|
344
|
-
"name": "
|
|
345
|
-
"description": "
|
|
1258
|
+
"name": "autoload",
|
|
1259
|
+
"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.",
|
|
346
1260
|
"type": {
|
|
347
1261
|
"text": "boolean"
|
|
348
1262
|
}
|
|
349
1263
|
},
|
|
350
1264
|
{
|
|
351
|
-
"name": "
|
|
352
|
-
"description": "
|
|
1265
|
+
"name": "page-size",
|
|
1266
|
+
"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.",
|
|
1267
|
+
"type": {
|
|
1268
|
+
"text": "number"
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
],
|
|
1272
|
+
"slots": [
|
|
1273
|
+
{
|
|
1274
|
+
"name": "filters",
|
|
1275
|
+
"description": "Fields wrapped in a ful-form, submitted to filter the table."
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"name": "caption",
|
|
1279
|
+
"description": "The caption of the table."
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"name": "footer",
|
|
1283
|
+
"description": "Content rendered in the table footer."
|
|
1284
|
+
}
|
|
1285
|
+
],
|
|
1286
|
+
"events": []
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"kind": "class",
|
|
1290
|
+
"name": "Pagination",
|
|
1291
|
+
"tagName": "ful-pagination",
|
|
1292
|
+
"customElement": true,
|
|
1293
|
+
"description": "The pager of a ful-table, its window rendering at most pages links (5 by default). Rarely used on its own.",
|
|
1294
|
+
"attributes": [
|
|
1295
|
+
{
|
|
1296
|
+
"name": "pages",
|
|
1297
|
+
"description": "How many page buttons are rendered around the current one, 5 by default.",
|
|
1298
|
+
"type": {
|
|
1299
|
+
"text": "number"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"name": "total",
|
|
1304
|
+
"description": "Number of pages.",
|
|
1305
|
+
"type": {
|
|
1306
|
+
"text": "number"
|
|
1307
|
+
}
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"name": "current",
|
|
1311
|
+
"description": "Zero based index of the page being shown.",
|
|
1312
|
+
"type": {
|
|
1313
|
+
"text": "number"
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
],
|
|
1317
|
+
"slots": [],
|
|
1318
|
+
"events": [
|
|
1319
|
+
{
|
|
1320
|
+
"name": "page:requested",
|
|
1321
|
+
"description": "Fired with the zero based index of the page the user asked for.",
|
|
1322
|
+
"type": {
|
|
1323
|
+
"text": "CustomEvent"
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
]
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"kind": "class",
|
|
1330
|
+
"name": "SortButton",
|
|
1331
|
+
"tagName": "ful-sorter",
|
|
1332
|
+
"customElement": true,
|
|
1333
|
+
"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.",
|
|
1334
|
+
"attributes": [
|
|
1335
|
+
{
|
|
1336
|
+
"name": "sorter",
|
|
1337
|
+
"description": "The field name this column sorts by, sent in the load request. A column without it is not sortable.",
|
|
1338
|
+
"type": {
|
|
1339
|
+
"text": "string"
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"name": "order",
|
|
1344
|
+
"description": "The sort currently applied, asc or desc, or absent when unsorted.",
|
|
1345
|
+
"type": {
|
|
1346
|
+
"text": "string"
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
],
|
|
1350
|
+
"slots": [],
|
|
1351
|
+
"events": [
|
|
1352
|
+
{
|
|
1353
|
+
"name": "sort:requested",
|
|
1354
|
+
"description": "Fired with the sorter and the next order when activated.",
|
|
1355
|
+
"type": {
|
|
1356
|
+
"text": "CustomEvent"
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
]
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"kind": "class",
|
|
1363
|
+
"name": "InstantFilter",
|
|
1364
|
+
"tagName": "ful-filter-instant",
|
|
1365
|
+
"customElement": true,
|
|
1366
|
+
"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.",
|
|
1367
|
+
"attributes": [
|
|
1368
|
+
{
|
|
1369
|
+
"name": "type",
|
|
1370
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
353
1371
|
"type": {
|
|
354
|
-
"text": "
|
|
1372
|
+
"text": "string"
|
|
355
1373
|
}
|
|
356
1374
|
},
|
|
357
1375
|
{
|
|
358
|
-
"name": "
|
|
359
|
-
"description": "
|
|
1376
|
+
"name": "v-type",
|
|
1377
|
+
"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.",
|
|
360
1378
|
"type": {
|
|
361
1379
|
"text": "string"
|
|
362
1380
|
}
|
|
363
1381
|
},
|
|
364
1382
|
{
|
|
365
|
-
"name": "
|
|
366
|
-
"description": "
|
|
1383
|
+
"name": "keep",
|
|
1384
|
+
"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.",
|
|
367
1385
|
"type": {
|
|
368
1386
|
"text": "string"
|
|
369
1387
|
}
|
|
370
1388
|
},
|
|
371
1389
|
{
|
|
372
|
-
"name": "
|
|
373
|
-
"description": "
|
|
1390
|
+
"name": "reject",
|
|
1391
|
+
"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.",
|
|
374
1392
|
"type": {
|
|
375
1393
|
"text": "string"
|
|
376
1394
|
}
|
|
377
1395
|
},
|
|
378
1396
|
{
|
|
379
|
-
"name": "
|
|
380
|
-
"description": "
|
|
1397
|
+
"name": "uppercase",
|
|
1398
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
381
1399
|
"type": {
|
|
382
|
-
"text": "
|
|
1400
|
+
"text": "boolean"
|
|
383
1401
|
}
|
|
384
|
-
}
|
|
385
|
-
],
|
|
386
|
-
"slots": [
|
|
387
|
-
{
|
|
388
|
-
"name": "",
|
|
389
|
-
"description": "The label of the field."
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"name": "info",
|
|
393
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
394
1402
|
},
|
|
395
1403
|
{
|
|
396
|
-
"name": "
|
|
397
|
-
"description": "
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
"description": "Content rendered before the control, outside the addon styling."
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"name": "after",
|
|
405
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
1404
|
+
"name": "trim",
|
|
1405
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1406
|
+
"type": {
|
|
1407
|
+
"text": "boolean"
|
|
1408
|
+
}
|
|
406
1409
|
},
|
|
407
1410
|
{
|
|
408
|
-
"name": "
|
|
409
|
-
"description": "
|
|
410
|
-
}
|
|
411
|
-
],
|
|
412
|
-
"events": [
|
|
413
|
-
{
|
|
414
|
-
"name": "change",
|
|
415
|
-
"description": "Fired with the current date.",
|
|
1411
|
+
"name": "autocomplete",
|
|
1412
|
+
"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.",
|
|
416
1413
|
"type": {
|
|
417
|
-
"text": "
|
|
1414
|
+
"text": "string"
|
|
418
1415
|
}
|
|
419
|
-
}
|
|
420
|
-
]
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"kind": "class",
|
|
424
|
-
"name": "InputLocalTime",
|
|
425
|
-
"tagName": "ful-input-local-time",
|
|
426
|
-
"customElement": true,
|
|
427
|
-
"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.",
|
|
428
|
-
"attributes": [
|
|
1416
|
+
},
|
|
429
1417
|
{
|
|
430
|
-
"name": "
|
|
431
|
-
"description": "The
|
|
1418
|
+
"name": "disabled",
|
|
1419
|
+
"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.",
|
|
432
1420
|
"type": {
|
|
433
|
-
"text": "
|
|
1421
|
+
"text": "boolean"
|
|
434
1422
|
}
|
|
435
1423
|
},
|
|
436
1424
|
{
|
|
@@ -448,29 +1436,22 @@
|
|
|
448
1436
|
}
|
|
449
1437
|
},
|
|
450
1438
|
{
|
|
451
|
-
"name": "
|
|
452
|
-
"description": "
|
|
453
|
-
"type": {
|
|
454
|
-
"text": "string"
|
|
455
|
-
}
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"name": "min",
|
|
459
|
-
"description": "Earliest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
|
|
1439
|
+
"name": "value",
|
|
1440
|
+
"description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
|
|
460
1441
|
"type": {
|
|
461
1442
|
"text": "string"
|
|
462
1443
|
}
|
|
463
1444
|
},
|
|
464
1445
|
{
|
|
465
|
-
"name": "
|
|
466
|
-
"description": "
|
|
1446
|
+
"name": "placeholder",
|
|
1447
|
+
"description": "Placeholder shown while the field is empty.",
|
|
467
1448
|
"type": {
|
|
468
1449
|
"text": "string"
|
|
469
1450
|
}
|
|
470
1451
|
},
|
|
471
1452
|
{
|
|
472
|
-
"name": "
|
|
473
|
-
"description": "
|
|
1453
|
+
"name": "operators",
|
|
1454
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
474
1455
|
"type": {
|
|
475
1456
|
"text": "string"
|
|
476
1457
|
}
|
|
@@ -485,27 +1466,19 @@
|
|
|
485
1466
|
"name": "info",
|
|
486
1467
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
487
1468
|
},
|
|
488
|
-
{
|
|
489
|
-
"name": "ibefore",
|
|
490
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
491
|
-
},
|
|
492
1469
|
{
|
|
493
1470
|
"name": "before",
|
|
494
|
-
"description": "
|
|
1471
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
495
1472
|
},
|
|
496
1473
|
{
|
|
497
1474
|
"name": "after",
|
|
498
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
"name": "iafter",
|
|
502
1475
|
"description": "An addon rendered inside the input group, after the control."
|
|
503
1476
|
}
|
|
504
1477
|
],
|
|
505
1478
|
"events": [
|
|
506
1479
|
{
|
|
507
1480
|
"name": "change",
|
|
508
|
-
"description": "Fired with the
|
|
1481
|
+
"description": "Fired with the whole tuple, or undefined when the filter is incomplete.",
|
|
509
1482
|
"type": {
|
|
510
1483
|
"text": "CustomEvent"
|
|
511
1484
|
}
|
|
@@ -514,144 +1487,125 @@
|
|
|
514
1487
|
},
|
|
515
1488
|
{
|
|
516
1489
|
"kind": "class",
|
|
517
|
-
"name": "
|
|
518
|
-
"tagName": "ful-
|
|
1490
|
+
"name": "LocalDateFilter",
|
|
1491
|
+
"tagName": "ful-filter-local-date",
|
|
519
1492
|
"customElement": true,
|
|
520
|
-
"description": "A
|
|
1493
|
+
"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.",
|
|
521
1494
|
"attributes": [
|
|
522
1495
|
{
|
|
523
|
-
"name": "
|
|
524
|
-
"description": "
|
|
1496
|
+
"name": "type",
|
|
1497
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
525
1498
|
"type": {
|
|
526
1499
|
"text": "string"
|
|
527
1500
|
}
|
|
528
1501
|
},
|
|
529
1502
|
{
|
|
530
|
-
"name": "
|
|
531
|
-
"description": "
|
|
1503
|
+
"name": "v-type",
|
|
1504
|
+
"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.",
|
|
532
1505
|
"type": {
|
|
533
|
-
"text": "
|
|
1506
|
+
"text": "string"
|
|
534
1507
|
}
|
|
535
1508
|
},
|
|
536
1509
|
{
|
|
537
|
-
"name": "
|
|
538
|
-
"description": "
|
|
1510
|
+
"name": "keep",
|
|
1511
|
+
"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.",
|
|
539
1512
|
"type": {
|
|
540
|
-
"text": "
|
|
1513
|
+
"text": "string"
|
|
541
1514
|
}
|
|
542
1515
|
},
|
|
543
1516
|
{
|
|
544
|
-
"name": "
|
|
545
|
-
"description": "
|
|
1517
|
+
"name": "reject",
|
|
1518
|
+
"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.",
|
|
546
1519
|
"type": {
|
|
547
1520
|
"text": "string"
|
|
548
1521
|
}
|
|
549
1522
|
},
|
|
550
1523
|
{
|
|
551
|
-
"name": "
|
|
552
|
-
"description": "
|
|
1524
|
+
"name": "uppercase",
|
|
1525
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
553
1526
|
"type": {
|
|
554
|
-
"text": "
|
|
1527
|
+
"text": "boolean"
|
|
555
1528
|
}
|
|
556
1529
|
},
|
|
557
1530
|
{
|
|
558
|
-
"name": "
|
|
559
|
-
"description": "
|
|
1531
|
+
"name": "trim",
|
|
1532
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
560
1533
|
"type": {
|
|
561
|
-
"text": "
|
|
1534
|
+
"text": "boolean"
|
|
562
1535
|
}
|
|
563
1536
|
},
|
|
564
1537
|
{
|
|
565
|
-
"name": "
|
|
566
|
-
"description": "
|
|
1538
|
+
"name": "autocomplete",
|
|
1539
|
+
"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.",
|
|
567
1540
|
"type": {
|
|
568
1541
|
"text": "string"
|
|
569
1542
|
}
|
|
570
|
-
}
|
|
571
|
-
],
|
|
572
|
-
"slots": [
|
|
573
|
-
{
|
|
574
|
-
"name": "",
|
|
575
|
-
"description": "The label of the field."
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"name": "info",
|
|
579
|
-
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"name": "ibefore",
|
|
583
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
584
1543
|
},
|
|
585
1544
|
{
|
|
586
|
-
"name": "
|
|
587
|
-
"description": "
|
|
1545
|
+
"name": "disabled",
|
|
1546
|
+
"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.",
|
|
1547
|
+
"type": {
|
|
1548
|
+
"text": "boolean"
|
|
1549
|
+
}
|
|
588
1550
|
},
|
|
589
1551
|
{
|
|
590
|
-
"name": "
|
|
591
|
-
"description": "
|
|
1552
|
+
"name": "readonly",
|
|
1553
|
+
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
1554
|
+
"type": {
|
|
1555
|
+
"text": "boolean"
|
|
1556
|
+
}
|
|
592
1557
|
},
|
|
593
1558
|
{
|
|
594
|
-
"name": "
|
|
595
|
-
"description": "
|
|
596
|
-
}
|
|
597
|
-
],
|
|
598
|
-
"events": [
|
|
599
|
-
{
|
|
600
|
-
"name": "change",
|
|
601
|
-
"description": "Fired with the current instant.",
|
|
1559
|
+
"name": "required",
|
|
1560
|
+
"description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
|
|
602
1561
|
"type": {
|
|
603
|
-
"text": "
|
|
1562
|
+
"text": "boolean"
|
|
604
1563
|
}
|
|
605
|
-
}
|
|
606
|
-
]
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"kind": "class",
|
|
610
|
-
"name": "RadioGroup",
|
|
611
|
-
"tagName": "ful-radio-group",
|
|
612
|
-
"customElement": true,
|
|
613
|
-
"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.",
|
|
614
|
-
"attributes": [
|
|
1564
|
+
},
|
|
615
1565
|
{
|
|
616
1566
|
"name": "value",
|
|
617
|
-
"description": "
|
|
1567
|
+
"description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
|
|
618
1568
|
"type": {
|
|
619
1569
|
"text": "string"
|
|
620
1570
|
}
|
|
621
1571
|
},
|
|
622
1572
|
{
|
|
623
|
-
"name": "
|
|
624
|
-
"description": "
|
|
1573
|
+
"name": "placeholder",
|
|
1574
|
+
"description": "Placeholder shown while the field is empty.",
|
|
625
1575
|
"type": {
|
|
626
|
-
"text": "
|
|
1576
|
+
"text": "string"
|
|
627
1577
|
}
|
|
628
1578
|
},
|
|
629
1579
|
{
|
|
630
|
-
"name": "
|
|
631
|
-
"description": "
|
|
1580
|
+
"name": "operators",
|
|
1581
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
632
1582
|
"type": {
|
|
633
|
-
"text": "
|
|
1583
|
+
"text": "string"
|
|
634
1584
|
}
|
|
635
1585
|
}
|
|
636
1586
|
],
|
|
637
1587
|
"slots": [
|
|
638
1588
|
{
|
|
639
1589
|
"name": "",
|
|
640
|
-
"description": "The
|
|
1590
|
+
"description": "The label of the field."
|
|
641
1591
|
},
|
|
642
1592
|
{
|
|
643
|
-
"name": "
|
|
644
|
-
"description": "
|
|
1593
|
+
"name": "info",
|
|
1594
|
+
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
645
1595
|
},
|
|
646
1596
|
{
|
|
647
|
-
"name": "
|
|
648
|
-
"description": "
|
|
1597
|
+
"name": "before",
|
|
1598
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"name": "after",
|
|
1602
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
649
1603
|
}
|
|
650
1604
|
],
|
|
651
1605
|
"events": [
|
|
652
1606
|
{
|
|
653
1607
|
"name": "change",
|
|
654
|
-
"description": "Fired with the
|
|
1608
|
+
"description": "Fired with the whole tuple, or undefined when the filter is incomplete.",
|
|
655
1609
|
"type": {
|
|
656
1610
|
"text": "CustomEvent"
|
|
657
1611
|
}
|
|
@@ -660,100 +1614,67 @@
|
|
|
660
1614
|
},
|
|
661
1615
|
{
|
|
662
1616
|
"kind": "class",
|
|
663
|
-
"name": "
|
|
664
|
-
"tagName": "ful-
|
|
665
|
-
"customElement": true,
|
|
666
|
-
"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.",
|
|
667
|
-
"attributes": [],
|
|
668
|
-
"slots": [
|
|
669
|
-
{
|
|
670
|
-
"name": "filters",
|
|
671
|
-
"description": "Fields wrapped in a ful-form, submitted to filter the table."
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"name": "caption",
|
|
675
|
-
"description": "The caption of the table."
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"name": "footer",
|
|
679
|
-
"description": "Content rendered in the table footer."
|
|
680
|
-
}
|
|
681
|
-
],
|
|
682
|
-
"events": []
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"kind": "class",
|
|
686
|
-
"name": "Pagination",
|
|
687
|
-
"tagName": "ful-pagination",
|
|
1617
|
+
"name": "NumberFilter",
|
|
1618
|
+
"tagName": "ful-filter-number",
|
|
688
1619
|
"customElement": true,
|
|
689
|
-
"description": "
|
|
1620
|
+
"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.",
|
|
690
1621
|
"attributes": [
|
|
691
1622
|
{
|
|
692
|
-
"name": "
|
|
693
|
-
"description": "
|
|
1623
|
+
"name": "type",
|
|
1624
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
694
1625
|
"type": {
|
|
695
|
-
"text": "
|
|
1626
|
+
"text": "string"
|
|
696
1627
|
}
|
|
697
1628
|
},
|
|
698
1629
|
{
|
|
699
|
-
"name": "
|
|
700
|
-
"description": "
|
|
1630
|
+
"name": "v-type",
|
|
1631
|
+
"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.",
|
|
701
1632
|
"type": {
|
|
702
|
-
"text": "
|
|
1633
|
+
"text": "string"
|
|
703
1634
|
}
|
|
704
|
-
}
|
|
705
|
-
],
|
|
706
|
-
"slots": [],
|
|
707
|
-
"events": [
|
|
1635
|
+
},
|
|
708
1636
|
{
|
|
709
|
-
"name": "
|
|
710
|
-
"description": "
|
|
1637
|
+
"name": "keep",
|
|
1638
|
+
"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.",
|
|
711
1639
|
"type": {
|
|
712
|
-
"text": "
|
|
1640
|
+
"text": "string"
|
|
713
1641
|
}
|
|
714
|
-
}
|
|
715
|
-
]
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"kind": "class",
|
|
719
|
-
"name": "SortButton",
|
|
720
|
-
"tagName": "ful-sorter",
|
|
721
|
-
"customElement": true,
|
|
722
|
-
"description": "The sort control rendered in a ful-table header. Rarely used on its own.",
|
|
723
|
-
"attributes": [
|
|
1642
|
+
},
|
|
724
1643
|
{
|
|
725
|
-
"name": "
|
|
726
|
-
"description": "The
|
|
1644
|
+
"name": "reject",
|
|
1645
|
+
"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.",
|
|
727
1646
|
"type": {
|
|
728
1647
|
"text": "string"
|
|
729
1648
|
}
|
|
730
|
-
}
|
|
731
|
-
],
|
|
732
|
-
"slots": [],
|
|
733
|
-
"events": [
|
|
1649
|
+
},
|
|
734
1650
|
{
|
|
735
|
-
"name": "
|
|
736
|
-
"description": "
|
|
1651
|
+
"name": "uppercase",
|
|
1652
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
737
1653
|
"type": {
|
|
738
|
-
"text": "
|
|
1654
|
+
"text": "boolean"
|
|
739
1655
|
}
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
"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.",
|
|
749
|
-
"attributes": [
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"name": "trim",
|
|
1659
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1660
|
+
"type": {
|
|
1661
|
+
"text": "boolean"
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
750
1664
|
{
|
|
751
|
-
"name": "
|
|
752
|
-
"description": "
|
|
1665
|
+
"name": "autocomplete",
|
|
1666
|
+
"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.",
|
|
753
1667
|
"type": {
|
|
754
1668
|
"text": "string"
|
|
755
1669
|
}
|
|
756
1670
|
},
|
|
1671
|
+
{
|
|
1672
|
+
"name": "disabled",
|
|
1673
|
+
"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.",
|
|
1674
|
+
"type": {
|
|
1675
|
+
"text": "boolean"
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
757
1678
|
{
|
|
758
1679
|
"name": "readonly",
|
|
759
1680
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -768,12 +1689,26 @@
|
|
|
768
1689
|
"text": "boolean"
|
|
769
1690
|
}
|
|
770
1691
|
},
|
|
1692
|
+
{
|
|
1693
|
+
"name": "value",
|
|
1694
|
+
"description": "JSON tuple of the operator and its bound(s).",
|
|
1695
|
+
"type": {
|
|
1696
|
+
"text": "string"
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
771
1699
|
{
|
|
772
1700
|
"name": "placeholder",
|
|
773
1701
|
"description": "Placeholder shown while the field is empty.",
|
|
774
1702
|
"type": {
|
|
775
1703
|
"text": "string"
|
|
776
1704
|
}
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"name": "operators",
|
|
1708
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ, LT, GT, LTE, GTE, BETWEEN. Defaults to all of them.",
|
|
1709
|
+
"type": {
|
|
1710
|
+
"text": "string"
|
|
1711
|
+
}
|
|
777
1712
|
}
|
|
778
1713
|
],
|
|
779
1714
|
"slots": [
|
|
@@ -785,20 +1720,12 @@
|
|
|
785
1720
|
"name": "info",
|
|
786
1721
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
787
1722
|
},
|
|
788
|
-
{
|
|
789
|
-
"name": "ibefore",
|
|
790
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
791
|
-
},
|
|
792
1723
|
{
|
|
793
1724
|
"name": "before",
|
|
794
|
-
"description": "
|
|
1725
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
795
1726
|
},
|
|
796
1727
|
{
|
|
797
1728
|
"name": "after",
|
|
798
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"name": "iafter",
|
|
802
1729
|
"description": "An addon rendered inside the input group, after the control."
|
|
803
1730
|
}
|
|
804
1731
|
],
|
|
@@ -814,16 +1741,16 @@
|
|
|
814
1741
|
},
|
|
815
1742
|
{
|
|
816
1743
|
"kind": "class",
|
|
817
|
-
"name": "
|
|
818
|
-
"tagName": "ful-filter-
|
|
1744
|
+
"name": "BooleanFilter",
|
|
1745
|
+
"tagName": "ful-filter-boolean",
|
|
819
1746
|
"customElement": true,
|
|
820
|
-
"description": "A ful-table filter over
|
|
1747
|
+
"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.",
|
|
821
1748
|
"attributes": [
|
|
822
1749
|
{
|
|
823
|
-
"name": "
|
|
824
|
-
"description": "
|
|
1750
|
+
"name": "disabled",
|
|
1751
|
+
"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.",
|
|
825
1752
|
"type": {
|
|
826
|
-
"text": "
|
|
1753
|
+
"text": "boolean"
|
|
827
1754
|
}
|
|
828
1755
|
},
|
|
829
1756
|
{
|
|
@@ -841,8 +1768,15 @@
|
|
|
841
1768
|
}
|
|
842
1769
|
},
|
|
843
1770
|
{
|
|
844
|
-
"name": "
|
|
845
|
-
"description": "
|
|
1771
|
+
"name": "value",
|
|
1772
|
+
"description": "JSON tuple of the operator and the token.",
|
|
1773
|
+
"type": {
|
|
1774
|
+
"text": "string"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"name": "operators",
|
|
1779
|
+
"description": "Comma separated list of the operators the menu offers, out of EQ, NEQ. Defaults to both.",
|
|
846
1780
|
"type": {
|
|
847
1781
|
"text": "string"
|
|
848
1782
|
}
|
|
@@ -857,27 +1791,19 @@
|
|
|
857
1791
|
"name": "info",
|
|
858
1792
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
859
1793
|
},
|
|
860
|
-
{
|
|
861
|
-
"name": "ibefore",
|
|
862
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
863
|
-
},
|
|
864
1794
|
{
|
|
865
1795
|
"name": "before",
|
|
866
|
-
"description": "
|
|
1796
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
867
1797
|
},
|
|
868
1798
|
{
|
|
869
1799
|
"name": "after",
|
|
870
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
871
|
-
},
|
|
872
|
-
{
|
|
873
|
-
"name": "iafter",
|
|
874
1800
|
"description": "An addon rendered inside the input group, after the control."
|
|
875
1801
|
}
|
|
876
1802
|
],
|
|
877
1803
|
"events": [
|
|
878
1804
|
{
|
|
879
1805
|
"name": "change",
|
|
880
|
-
"description": "Fired with the whole tuple, or undefined when
|
|
1806
|
+
"description": "Fired with the whole tuple, or undefined when nothing is picked.",
|
|
881
1807
|
"type": {
|
|
882
1808
|
"text": "CustomEvent"
|
|
883
1809
|
}
|
|
@@ -889,15 +1815,64 @@
|
|
|
889
1815
|
"name": "TextFilter",
|
|
890
1816
|
"tagName": "ful-filter-text",
|
|
891
1817
|
"customElement": true,
|
|
892
|
-
"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.",
|
|
1818
|
+
"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.",
|
|
893
1819
|
"attributes": [
|
|
894
1820
|
{
|
|
895
|
-
"name": "
|
|
896
|
-
"description": "
|
|
1821
|
+
"name": "type",
|
|
1822
|
+
"description": "Any native input type, or the literal textarea to render one. Defaults to number under v-type=number, and a declared type wins.",
|
|
1823
|
+
"type": {
|
|
1824
|
+
"text": "string"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"name": "v-type",
|
|
1829
|
+
"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.",
|
|
1830
|
+
"type": {
|
|
1831
|
+
"text": "string"
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"name": "keep",
|
|
1836
|
+
"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.",
|
|
1837
|
+
"type": {
|
|
1838
|
+
"text": "string"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"name": "reject",
|
|
1843
|
+
"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.",
|
|
1844
|
+
"type": {
|
|
1845
|
+
"text": "string"
|
|
1846
|
+
}
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"name": "uppercase",
|
|
1850
|
+
"description": "Upper-cases the value on the way out, leaving what was typed alone.",
|
|
1851
|
+
"type": {
|
|
1852
|
+
"text": "boolean"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"name": "trim",
|
|
1857
|
+
"description": "Trims the value on the way out, leaving what was typed alone.",
|
|
1858
|
+
"type": {
|
|
1859
|
+
"text": "boolean"
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"name": "autocomplete",
|
|
1864
|
+
"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.",
|
|
897
1865
|
"type": {
|
|
898
1866
|
"text": "string"
|
|
899
1867
|
}
|
|
900
1868
|
},
|
|
1869
|
+
{
|
|
1870
|
+
"name": "disabled",
|
|
1871
|
+
"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.",
|
|
1872
|
+
"type": {
|
|
1873
|
+
"text": "boolean"
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
901
1876
|
{
|
|
902
1877
|
"name": "readonly",
|
|
903
1878
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -912,12 +1887,33 @@
|
|
|
912
1887
|
"text": "boolean"
|
|
913
1888
|
}
|
|
914
1889
|
},
|
|
1890
|
+
{
|
|
1891
|
+
"name": "value",
|
|
1892
|
+
"description": "JSON tuple of the operator, the sensitivity and the text.",
|
|
1893
|
+
"type": {
|
|
1894
|
+
"text": "string"
|
|
1895
|
+
}
|
|
1896
|
+
},
|
|
915
1897
|
{
|
|
916
1898
|
"name": "placeholder",
|
|
917
1899
|
"description": "Placeholder shown while the field is empty.",
|
|
918
1900
|
"type": {
|
|
919
1901
|
"text": "string"
|
|
920
1902
|
}
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"name": "operators",
|
|
1906
|
+
"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.",
|
|
1907
|
+
"type": {
|
|
1908
|
+
"text": "string"
|
|
1909
|
+
}
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"name": "sensitivities",
|
|
1913
|
+
"description": "Comma separated list of the case sensitivity modes, IGNORE_CASE, CASE_SENSITIVE. A single entry pins every emitted tuple to it.",
|
|
1914
|
+
"type": {
|
|
1915
|
+
"text": "string"
|
|
1916
|
+
}
|
|
921
1917
|
}
|
|
922
1918
|
],
|
|
923
1919
|
"slots": [
|
|
@@ -929,20 +1925,12 @@
|
|
|
929
1925
|
"name": "info",
|
|
930
1926
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
931
1927
|
},
|
|
932
|
-
{
|
|
933
|
-
"name": "ibefore",
|
|
934
|
-
"description": "An addon rendered inside the input group, before the control."
|
|
935
|
-
},
|
|
936
1928
|
{
|
|
937
1929
|
"name": "before",
|
|
938
|
-
"description": "
|
|
1930
|
+
"description": "An addon rendered inside the input group, before the control."
|
|
939
1931
|
},
|
|
940
1932
|
{
|
|
941
1933
|
"name": "after",
|
|
942
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
943
|
-
},
|
|
944
|
-
{
|
|
945
|
-
"name": "iafter",
|
|
946
1934
|
"description": "An addon rendered inside the input group, after the control."
|
|
947
1935
|
}
|
|
948
1936
|
],
|
|
@@ -961,15 +1949,106 @@
|
|
|
961
1949
|
"name": "Select",
|
|
962
1950
|
"tagName": "ful-select",
|
|
963
1951
|
"customElement": true,
|
|
964
|
-
"description": "A combobox backed by a loader,
|
|
1952
|
+
"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.",
|
|
965
1953
|
"attributes": [
|
|
966
1954
|
{
|
|
967
|
-
"name": "
|
|
968
|
-
"description": "The
|
|
1955
|
+
"name": "name",
|
|
1956
|
+
"description": "The field name the surrounding form submits the selection under.",
|
|
1957
|
+
"type": {
|
|
1958
|
+
"text": "string"
|
|
1959
|
+
}
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"name": "loader",
|
|
1963
|
+
"description": "The registered component name the select loads its vocabulary through; loaders:select when absent.",
|
|
1964
|
+
"type": {
|
|
1965
|
+
"text": "string"
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"name": "k-type",
|
|
1970
|
+
"description": "How a key coerces when it arrives from the response or from the value attribute: number, string or bool.",
|
|
1971
|
+
"type": {
|
|
1972
|
+
"text": "string"
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"name": "src",
|
|
1977
|
+
"description": "The url the vocabulary is fetched from. Without it the slotted <option> elements are the whole vocabulary, held in memory.",
|
|
1978
|
+
"type": {
|
|
1979
|
+
"text": "string"
|
|
1980
|
+
}
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"name": "method",
|
|
1984
|
+
"description": "The method the vocabulary is fetched with; POST when absent.",
|
|
1985
|
+
"type": {
|
|
1986
|
+
"text": "string"
|
|
1987
|
+
}
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"name": "mode",
|
|
1991
|
+
"description": "chunked asks the endpoint per query instead of fetching the vocabulary once, for a list too large to hold.",
|
|
1992
|
+
"type": {
|
|
1993
|
+
"text": "string"
|
|
1994
|
+
}
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
"name": "preload",
|
|
1998
|
+
"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.",
|
|
1999
|
+
"type": {
|
|
2000
|
+
"text": "boolean"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"name": "revision",
|
|
2005
|
+
"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.",
|
|
2006
|
+
"type": {
|
|
2007
|
+
"text": "string"
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"name": "k-expr",
|
|
2012
|
+
"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.",
|
|
2013
|
+
"type": {
|
|
2014
|
+
"text": "string"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2017
|
+
{
|
|
2018
|
+
"name": "l-expr",
|
|
2019
|
+
"description": "The expression yielding an option's label, evaluated against each row of the response.",
|
|
2020
|
+
"type": {
|
|
2021
|
+
"text": "string"
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"name": "d-expr",
|
|
2026
|
+
"description": "The expression yielding the rows from the response body; the body itself when absent.",
|
|
2027
|
+
"type": {
|
|
2028
|
+
"text": "string"
|
|
2029
|
+
}
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"name": "m-expr",
|
|
2033
|
+
"description": "The expression yielding an option's metadata, evaluated against each row; the whole row when absent.",
|
|
2034
|
+
"type": {
|
|
2035
|
+
"text": "string"
|
|
2036
|
+
}
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"name": "response-mapper",
|
|
2040
|
+
"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.",
|
|
969
2041
|
"type": {
|
|
970
2042
|
"text": "string"
|
|
971
2043
|
}
|
|
972
2044
|
},
|
|
2045
|
+
{
|
|
2046
|
+
"name": "disabled",
|
|
2047
|
+
"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.",
|
|
2048
|
+
"type": {
|
|
2049
|
+
"text": "boolean"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
973
2052
|
{
|
|
974
2053
|
"name": "readonly",
|
|
975
2054
|
"description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
|
|
@@ -985,8 +2064,22 @@
|
|
|
985
2064
|
}
|
|
986
2065
|
},
|
|
987
2066
|
{
|
|
988
|
-
"name": "
|
|
989
|
-
"description": "
|
|
2067
|
+
"name": "value",
|
|
2068
|
+
"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.",
|
|
2069
|
+
"type": {
|
|
2070
|
+
"text": "string"
|
|
2071
|
+
}
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"name": "multiple",
|
|
2075
|
+
"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.",
|
|
2076
|
+
"type": {
|
|
2077
|
+
"text": "boolean"
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"name": "item-list",
|
|
2082
|
+
"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).",
|
|
990
2083
|
"type": {
|
|
991
2084
|
"text": "boolean"
|
|
992
2085
|
}
|
|
@@ -1002,24 +2095,16 @@
|
|
|
1002
2095
|
"description": "Extra content rendered next to the label, for a hint or a help icon."
|
|
1003
2096
|
},
|
|
1004
2097
|
{
|
|
1005
|
-
"name": "
|
|
2098
|
+
"name": "before",
|
|
1006
2099
|
"description": "An addon rendered inside the input group, before the control."
|
|
1007
2100
|
},
|
|
1008
2101
|
{
|
|
1009
|
-
"name": "
|
|
1010
|
-
"description": "
|
|
2102
|
+
"name": "after",
|
|
2103
|
+
"description": "An addon rendered inside the input group, after the control."
|
|
1011
2104
|
},
|
|
1012
2105
|
{
|
|
1013
2106
|
"name": "dropdown",
|
|
1014
2107
|
"description": "Replaces the template used to render the options."
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
"name": "after",
|
|
1018
|
-
"description": "Content rendered after the control, outside the addon styling."
|
|
1019
|
-
},
|
|
1020
|
-
{
|
|
1021
|
-
"name": "iafter",
|
|
1022
|
-
"description": "An addon rendered inside the input group, after the control."
|
|
1023
2108
|
}
|
|
1024
2109
|
],
|
|
1025
2110
|
"events": [
|
|
@@ -1037,10 +2122,25 @@
|
|
|
1037
2122
|
"name": "Dropdown",
|
|
1038
2123
|
"tagName": "ful-dropdown",
|
|
1039
2124
|
"customElement": true,
|
|
1040
|
-
"description": "The options popup of a ful-select. Rarely used on its own.",
|
|
1041
|
-
"attributes": [
|
|
2125
|
+
"description": "The options popup of a ful-select, with a localized no-results message when the search matches nothing. Rarely used on its own.",
|
|
2126
|
+
"attributes": [
|
|
2127
|
+
{
|
|
2128
|
+
"name": "listbox",
|
|
2129
|
+
"description": "The id to give the listbox, so a host can point aria-controls and aria-activedescendant at it before this element upgrades.",
|
|
2130
|
+
"type": {
|
|
2131
|
+
"text": "string"
|
|
2132
|
+
}
|
|
2133
|
+
}
|
|
2134
|
+
],
|
|
1042
2135
|
"slots": [],
|
|
1043
2136
|
"events": [
|
|
2137
|
+
{
|
|
2138
|
+
"name": "activechange",
|
|
2139
|
+
"description": "Fired with the id of the option the reader is on, for the combobox that controls the listbox.",
|
|
2140
|
+
"type": {
|
|
2141
|
+
"text": "CustomEvent"
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
1044
2144
|
{
|
|
1045
2145
|
"name": "change",
|
|
1046
2146
|
"description": "Fired with the option that was picked.",
|
|
@@ -1054,9 +2154,57 @@
|
|
|
1054
2154
|
"exports": [
|
|
1055
2155
|
{
|
|
1056
2156
|
"kind": "custom-element-definition",
|
|
1057
|
-
"name": "ful-
|
|
2157
|
+
"name": "ful-tooltip",
|
|
2158
|
+
"declaration": {
|
|
2159
|
+
"name": "Tooltip",
|
|
2160
|
+
"module": "dist/fml.mjs"
|
|
2161
|
+
}
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"kind": "custom-element-definition",
|
|
2165
|
+
"name": "ful-dialog",
|
|
2166
|
+
"declaration": {
|
|
2167
|
+
"name": "Dialog",
|
|
2168
|
+
"module": "dist/fml.mjs"
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"kind": "custom-element-definition",
|
|
2173
|
+
"name": "ful-drawer",
|
|
2174
|
+
"declaration": {
|
|
2175
|
+
"name": "Drawer",
|
|
2176
|
+
"module": "dist/fml.mjs"
|
|
2177
|
+
}
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"kind": "custom-element-definition",
|
|
2181
|
+
"name": "ful-toasts",
|
|
2182
|
+
"declaration": {
|
|
2183
|
+
"name": "Toasts",
|
|
2184
|
+
"module": "dist/fml.mjs"
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"kind": "custom-element-definition",
|
|
2189
|
+
"name": "ful-tabs",
|
|
2190
|
+
"declaration": {
|
|
2191
|
+
"name": "Tabs",
|
|
2192
|
+
"module": "dist/fml.mjs"
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"kind": "custom-element-definition",
|
|
2197
|
+
"name": "ful-accordion",
|
|
2198
|
+
"declaration": {
|
|
2199
|
+
"name": "Accordion",
|
|
2200
|
+
"module": "dist/fml.mjs"
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
"kind": "custom-element-definition",
|
|
2205
|
+
"name": "ful-wizard",
|
|
1058
2206
|
"declaration": {
|
|
1059
|
-
"name": "
|
|
2207
|
+
"name": "Wizard",
|
|
1060
2208
|
"module": "dist/fml.mjs"
|
|
1061
2209
|
}
|
|
1062
2210
|
},
|
|
@@ -1180,6 +2328,22 @@
|
|
|
1180
2328
|
"module": "dist/fml.mjs"
|
|
1181
2329
|
}
|
|
1182
2330
|
},
|
|
2331
|
+
{
|
|
2332
|
+
"kind": "custom-element-definition",
|
|
2333
|
+
"name": "ful-filter-number",
|
|
2334
|
+
"declaration": {
|
|
2335
|
+
"name": "NumberFilter",
|
|
2336
|
+
"module": "dist/fml.mjs"
|
|
2337
|
+
}
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"kind": "custom-element-definition",
|
|
2341
|
+
"name": "ful-filter-boolean",
|
|
2342
|
+
"declaration": {
|
|
2343
|
+
"name": "BooleanFilter",
|
|
2344
|
+
"module": "dist/fml.mjs"
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
1183
2347
|
{
|
|
1184
2348
|
"kind": "custom-element-definition",
|
|
1185
2349
|
"name": "ful-filter-text",
|