@optionfactory/fml 8.0.1 → 8.0.3

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.
@@ -0,0 +1,1210 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "README.md",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "dist/fml.mjs",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "name": "Spinner",
12
+ "tagName": "ful-spinner",
13
+ "customElement": true,
14
+ "description": "A busy indicator. ful-form shows and hides the ones it contains while submitting.",
15
+ "attributes": [],
16
+ "slots": [
17
+ {
18
+ "name": "",
19
+ "description": "Text shown next to the spinner."
20
+ }
21
+ ],
22
+ "events": []
23
+ },
24
+ {
25
+ "kind": "class",
26
+ "name": "Form",
27
+ "tagName": "ful-form",
28
+ "customElement": true,
29
+ "description": "Wraps its content in a form, collects the values of the fields it contains and hands them to a loader on submit.",
30
+ "attributes": [],
31
+ "slots": [],
32
+ "events": [
33
+ {
34
+ "name": "submit",
35
+ "description": "Cancelable. Fired before anything is sent: preventDefault aborts the submit.",
36
+ "type": {
37
+ "text": "CustomEvent"
38
+ }
39
+ },
40
+ {
41
+ "name": "submit:requested",
42
+ "description": "Fired after the submit was accepted, to let a listener resolve the response itself.",
43
+ "type": {
44
+ "text": "CustomEvent"
45
+ }
46
+ },
47
+ {
48
+ "name": "submit:success",
49
+ "description": "Fired with the submitted values and the mapped response.",
50
+ "type": {
51
+ "text": "CustomEvent"
52
+ }
53
+ },
54
+ {
55
+ "name": "submit:failure",
56
+ "description": "Fired with the exception when the submit fails. The form does not rethrow.",
57
+ "type": {
58
+ "text": "CustomEvent"
59
+ }
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "kind": "class",
65
+ "name": "Checkbox",
66
+ "tagName": "ful-checkbox",
67
+ "customElement": true,
68
+ "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.",
69
+ "attributes": [
70
+ {
71
+ "name": "value",
72
+ "description": "Checked when the attribute is the string true.",
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.",
80
+ "type": {
81
+ "text": "boolean"
82
+ }
83
+ },
84
+ {
85
+ "name": "required",
86
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
87
+ "type": {
88
+ "text": "boolean"
89
+ }
90
+ }
91
+ ],
92
+ "slots": [
93
+ {
94
+ "name": "",
95
+ "description": "The label of the field."
96
+ },
97
+ {
98
+ "name": "info",
99
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
100
+ }
101
+ ],
102
+ "events": [
103
+ {
104
+ "name": "change",
105
+ "description": "Fired with the new checked state when the box or its label is clicked.",
106
+ "type": {
107
+ "text": "CustomEvent"
108
+ }
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "kind": "class",
114
+ "name": "Input",
115
+ "tagName": "ful-input",
116
+ "customElement": true,
117
+ "description": "A labelled text input. Use type to pick any native input type, or textarea. 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.",
118
+ "attributes": [
119
+ {
120
+ "name": "value",
121
+ "description": "The current value.",
122
+ "type": {
123
+ "text": "string"
124
+ }
125
+ },
126
+ {
127
+ "name": "readonly",
128
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
129
+ "type": {
130
+ "text": "boolean"
131
+ }
132
+ },
133
+ {
134
+ "name": "required",
135
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
136
+ "type": {
137
+ "text": "boolean"
138
+ }
139
+ },
140
+ {
141
+ "name": "placeholder",
142
+ "description": "Placeholder shown while the field is empty.",
143
+ "type": {
144
+ "text": "string"
145
+ }
146
+ }
147
+ ],
148
+ "slots": [
149
+ {
150
+ "name": "",
151
+ "description": "The label of the field."
152
+ },
153
+ {
154
+ "name": "info",
155
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
156
+ },
157
+ {
158
+ "name": "ibefore",
159
+ "description": "An addon rendered inside the input group, before the control."
160
+ },
161
+ {
162
+ "name": "before",
163
+ "description": "Content rendered before the control, outside the addon styling."
164
+ },
165
+ {
166
+ "name": "after",
167
+ "description": "Content rendered after the control, outside the addon styling."
168
+ },
169
+ {
170
+ "name": "iafter",
171
+ "description": "An addon rendered inside the input group, after the control."
172
+ }
173
+ ],
174
+ "events": [
175
+ {
176
+ "name": "change",
177
+ "description": "Fired with the current value when the field is committed.",
178
+ "type": {
179
+ "text": "CustomEvent"
180
+ }
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "kind": "class",
186
+ "name": "InputFile",
187
+ "tagName": "ful-input-file",
188
+ "customElement": true,
189
+ "description": "A file input with an optional dropzone and a list of the selected files, enforcing the size and count limits it 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.",
190
+ "attributes": [
191
+ {
192
+ "name": "value",
193
+ "description": "Only an empty value is honoured, to clear the selection: file inputs cannot be filled programmatically.",
194
+ "type": {
195
+ "text": "string"
196
+ }
197
+ },
198
+ {
199
+ "name": "readonly",
200
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
201
+ "type": {
202
+ "text": "boolean"
203
+ }
204
+ },
205
+ {
206
+ "name": "required",
207
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
208
+ "type": {
209
+ "text": "boolean"
210
+ }
211
+ },
212
+ {
213
+ "name": "placeholder",
214
+ "description": "Placeholder shown while the field is empty.",
215
+ "type": {
216
+ "text": "string"
217
+ }
218
+ },
219
+ {
220
+ "name": "accept",
221
+ "description": "Comma separated list of accepted extensions. Files that do not match are dropped with a warning.",
222
+ "type": {
223
+ "text": "string"
224
+ }
225
+ },
226
+ {
227
+ "name": "multiple",
228
+ "description": "Allows selecting more than one file.",
229
+ "type": {
230
+ "text": "boolean"
231
+ }
232
+ },
233
+ {
234
+ "name": "itemlist",
235
+ "description": "Shows the list of selected files.",
236
+ "type": {
237
+ "text": "boolean"
238
+ }
239
+ },
240
+ {
241
+ "name": "dropzone",
242
+ "description": "Shows the dropzone.",
243
+ "type": {
244
+ "text": "boolean"
245
+ }
246
+ },
247
+ {
248
+ "name": "maxfiles",
249
+ "description": "Maximum number of files. Exceeding it clears the selection.",
250
+ "type": {
251
+ "text": "number"
252
+ }
253
+ },
254
+ {
255
+ "name": "maxfilesize",
256
+ "description": "Maximum size of a single file, in bytes. Larger files are dropped.",
257
+ "type": {
258
+ "text": "number"
259
+ }
260
+ },
261
+ {
262
+ "name": "maxtotalsize",
263
+ "description": "Maximum size of all the selected files, in bytes. Exceeding it clears the selection.",
264
+ "type": {
265
+ "text": "number"
266
+ }
267
+ }
268
+ ],
269
+ "slots": [
270
+ {
271
+ "name": "",
272
+ "description": "The label of the field."
273
+ },
274
+ {
275
+ "name": "info",
276
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
277
+ },
278
+ {
279
+ "name": "ibefore",
280
+ "description": "An addon rendered inside the input group, before the control."
281
+ },
282
+ {
283
+ "name": "before",
284
+ "description": "Content rendered before the control, outside the addon styling."
285
+ },
286
+ {
287
+ "name": "after",
288
+ "description": "Content rendered after the control, outside the addon styling."
289
+ },
290
+ {
291
+ "name": "iafter",
292
+ "description": "An addon rendered inside the input group, after the control."
293
+ },
294
+ {
295
+ "name": "dropzone",
296
+ "description": "Replaces the contents of the default dropzone."
297
+ }
298
+ ],
299
+ "events": [
300
+ {
301
+ "name": "change",
302
+ "description": "Fired with the names of the selected files.",
303
+ "type": {
304
+ "text": "CustomEvent"
305
+ }
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "kind": "class",
311
+ "name": "LocalDate",
312
+ "tagName": "ful-local-date",
313
+ "customElement": true,
314
+ "description": "Formats the date in its content, written as yyyy-mm-dd, in the locale of the page.",
315
+ "attributes": [],
316
+ "slots": [],
317
+ "events": []
318
+ },
319
+ {
320
+ "kind": "class",
321
+ "name": "Instant",
322
+ "tagName": "ful-instant",
323
+ "customElement": true,
324
+ "description": "Formats the ISO instant in its content in the locale and timezone of the page.",
325
+ "attributes": [],
326
+ "slots": [],
327
+ "events": []
328
+ },
329
+ {
330
+ "kind": "class",
331
+ "name": "InputLocalDate",
332
+ "tagName": "ful-input-local-date",
333
+ "customElement": true,
334
+ "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.",
335
+ "attributes": [
336
+ {
337
+ "name": "value",
338
+ "description": "The current value.",
339
+ "type": {
340
+ "text": "string"
341
+ }
342
+ },
343
+ {
344
+ "name": "readonly",
345
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
346
+ "type": {
347
+ "text": "boolean"
348
+ }
349
+ },
350
+ {
351
+ "name": "required",
352
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
353
+ "type": {
354
+ "text": "boolean"
355
+ }
356
+ },
357
+ {
358
+ "name": "placeholder",
359
+ "description": "Placeholder shown while the field is empty.",
360
+ "type": {
361
+ "text": "string"
362
+ }
363
+ },
364
+ {
365
+ "name": "min",
366
+ "description": "Earliest selectable date. Accepts a date, now, or a day, month or year offset.",
367
+ "type": {
368
+ "text": "string"
369
+ }
370
+ },
371
+ {
372
+ "name": "max",
373
+ "description": "Latest selectable date. Accepts a date, now, or a day, month or year offset.",
374
+ "type": {
375
+ "text": "string"
376
+ }
377
+ },
378
+ {
379
+ "name": "step",
380
+ "description": "Step between selectable dates, in days.",
381
+ "type": {
382
+ "text": "string"
383
+ }
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
+ },
395
+ {
396
+ "name": "ibefore",
397
+ "description": "An addon rendered inside the input group, before the control."
398
+ },
399
+ {
400
+ "name": "before",
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."
406
+ },
407
+ {
408
+ "name": "iafter",
409
+ "description": "An addon rendered inside the input group, after the control."
410
+ }
411
+ ],
412
+ "events": [
413
+ {
414
+ "name": "change",
415
+ "description": "Fired with the current date.",
416
+ "type": {
417
+ "text": "CustomEvent"
418
+ }
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": [
429
+ {
430
+ "name": "value",
431
+ "description": "The current value.",
432
+ "type": {
433
+ "text": "string"
434
+ }
435
+ },
436
+ {
437
+ "name": "readonly",
438
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
439
+ "type": {
440
+ "text": "boolean"
441
+ }
442
+ },
443
+ {
444
+ "name": "required",
445
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
446
+ "type": {
447
+ "text": "boolean"
448
+ }
449
+ },
450
+ {
451
+ "name": "placeholder",
452
+ "description": "Placeholder shown while the field is empty.",
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.",
460
+ "type": {
461
+ "text": "string"
462
+ }
463
+ },
464
+ {
465
+ "name": "max",
466
+ "description": "Latest selectable time. Accepts a time, now, or an offset such as +2h or -30m.",
467
+ "type": {
468
+ "text": "string"
469
+ }
470
+ },
471
+ {
472
+ "name": "step",
473
+ "description": "Step between selectable times, in seconds. The bounds are truncated to this grid.",
474
+ "type": {
475
+ "text": "string"
476
+ }
477
+ }
478
+ ],
479
+ "slots": [
480
+ {
481
+ "name": "",
482
+ "description": "The label of the field."
483
+ },
484
+ {
485
+ "name": "info",
486
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
487
+ },
488
+ {
489
+ "name": "ibefore",
490
+ "description": "An addon rendered inside the input group, before the control."
491
+ },
492
+ {
493
+ "name": "before",
494
+ "description": "Content rendered before the control, outside the addon styling."
495
+ },
496
+ {
497
+ "name": "after",
498
+ "description": "Content rendered after the control, outside the addon styling."
499
+ },
500
+ {
501
+ "name": "iafter",
502
+ "description": "An addon rendered inside the input group, after the control."
503
+ }
504
+ ],
505
+ "events": [
506
+ {
507
+ "name": "change",
508
+ "description": "Fired with the current time.",
509
+ "type": {
510
+ "text": "CustomEvent"
511
+ }
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "kind": "class",
517
+ "name": "InputInstant",
518
+ "tagName": "ful-input-instant",
519
+ "customElement": true,
520
+ "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.",
521
+ "attributes": [
522
+ {
523
+ "name": "value",
524
+ "description": "The current value.",
525
+ "type": {
526
+ "text": "string"
527
+ }
528
+ },
529
+ {
530
+ "name": "readonly",
531
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
532
+ "type": {
533
+ "text": "boolean"
534
+ }
535
+ },
536
+ {
537
+ "name": "required",
538
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
539
+ "type": {
540
+ "text": "boolean"
541
+ }
542
+ },
543
+ {
544
+ "name": "placeholder",
545
+ "description": "Placeholder shown while the field is empty.",
546
+ "type": {
547
+ "text": "string"
548
+ }
549
+ },
550
+ {
551
+ "name": "min",
552
+ "description": "Earliest selectable instant, as an ISO instant.",
553
+ "type": {
554
+ "text": "string"
555
+ }
556
+ },
557
+ {
558
+ "name": "max",
559
+ "description": "Latest selectable instant, as an ISO instant.",
560
+ "type": {
561
+ "text": "string"
562
+ }
563
+ },
564
+ {
565
+ "name": "step",
566
+ "description": "Step between selectable instants, in seconds.",
567
+ "type": {
568
+ "text": "string"
569
+ }
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
+ },
585
+ {
586
+ "name": "before",
587
+ "description": "Content rendered before the control, outside the addon styling."
588
+ },
589
+ {
590
+ "name": "after",
591
+ "description": "Content rendered after the control, outside the addon styling."
592
+ },
593
+ {
594
+ "name": "iafter",
595
+ "description": "An addon rendered inside the input group, after the control."
596
+ }
597
+ ],
598
+ "events": [
599
+ {
600
+ "name": "change",
601
+ "description": "Fired with the current instant.",
602
+ "type": {
603
+ "text": "CustomEvent"
604
+ }
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": [
615
+ {
616
+ "name": "value",
617
+ "description": "The value of the selected radio.",
618
+ "type": {
619
+ "text": "string"
620
+ }
621
+ },
622
+ {
623
+ "name": "readonly",
624
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
625
+ "type": {
626
+ "text": "boolean"
627
+ }
628
+ },
629
+ {
630
+ "name": "required",
631
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
632
+ "type": {
633
+ "text": "boolean"
634
+ }
635
+ }
636
+ ],
637
+ "slots": [
638
+ {
639
+ "name": "",
640
+ "description": "The legend of the group, and its ful-radio children."
641
+ },
642
+ {
643
+ "name": "header",
644
+ "description": "Content rendered above the radios."
645
+ },
646
+ {
647
+ "name": "footer",
648
+ "description": "Content rendered below the radios."
649
+ }
650
+ ],
651
+ "events": [
652
+ {
653
+ "name": "change",
654
+ "description": "Fired with the value of the selected radio.",
655
+ "type": {
656
+ "text": "CustomEvent"
657
+ }
658
+ }
659
+ ]
660
+ },
661
+ {
662
+ "kind": "class",
663
+ "name": "Table",
664
+ "tagName": "ful-table",
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",
688
+ "customElement": true,
689
+ "description": "The pager of a ful-table. Rarely used on its own.",
690
+ "attributes": [
691
+ {
692
+ "name": "total",
693
+ "description": "Number of pages.",
694
+ "type": {
695
+ "text": "number"
696
+ }
697
+ },
698
+ {
699
+ "name": "current",
700
+ "description": "Zero based index of the page being shown.",
701
+ "type": {
702
+ "text": "number"
703
+ }
704
+ }
705
+ ],
706
+ "slots": [],
707
+ "events": [
708
+ {
709
+ "name": "page-requested",
710
+ "description": "Fired with the zero based index of the page the user asked for.",
711
+ "type": {
712
+ "text": "CustomEvent"
713
+ }
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": [
724
+ {
725
+ "name": "order",
726
+ "description": "The sort currently applied, asc or desc, or absent when unsorted.",
727
+ "type": {
728
+ "text": "string"
729
+ }
730
+ }
731
+ ],
732
+ "slots": [],
733
+ "events": [
734
+ {
735
+ "name": "sort-requested",
736
+ "description": "Fired with the sorter and the next order when clicked.",
737
+ "type": {
738
+ "text": "CustomEvent"
739
+ }
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "kind": "class",
745
+ "name": "InstantFilter",
746
+ "tagName": "ful-filter-instant",
747
+ "customElement": true,
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": [
750
+ {
751
+ "name": "value",
752
+ "description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
753
+ "type": {
754
+ "text": "string"
755
+ }
756
+ },
757
+ {
758
+ "name": "readonly",
759
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
760
+ "type": {
761
+ "text": "boolean"
762
+ }
763
+ },
764
+ {
765
+ "name": "required",
766
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
767
+ "type": {
768
+ "text": "boolean"
769
+ }
770
+ },
771
+ {
772
+ "name": "placeholder",
773
+ "description": "Placeholder shown while the field is empty.",
774
+ "type": {
775
+ "text": "string"
776
+ }
777
+ }
778
+ ],
779
+ "slots": [
780
+ {
781
+ "name": "",
782
+ "description": "The label of the field."
783
+ },
784
+ {
785
+ "name": "info",
786
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
787
+ },
788
+ {
789
+ "name": "ibefore",
790
+ "description": "An addon rendered inside the input group, before the control."
791
+ },
792
+ {
793
+ "name": "before",
794
+ "description": "Content rendered before the control, outside the addon styling."
795
+ },
796
+ {
797
+ "name": "after",
798
+ "description": "Content rendered after the control, outside the addon styling."
799
+ },
800
+ {
801
+ "name": "iafter",
802
+ "description": "An addon rendered inside the input group, after the control."
803
+ }
804
+ ],
805
+ "events": [
806
+ {
807
+ "name": "change",
808
+ "description": "Fired with the whole tuple, or undefined when the filter is incomplete.",
809
+ "type": {
810
+ "text": "CustomEvent"
811
+ }
812
+ }
813
+ ]
814
+ },
815
+ {
816
+ "kind": "class",
817
+ "name": "LocalDateFilter",
818
+ "tagName": "ful-filter-local-date",
819
+ "customElement": true,
820
+ "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.",
821
+ "attributes": [
822
+ {
823
+ "name": "value",
824
+ "description": "JSON tuple of the operator and its bounds, for example [\"BETWEEN\", from, to].",
825
+ "type": {
826
+ "text": "string"
827
+ }
828
+ },
829
+ {
830
+ "name": "readonly",
831
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
832
+ "type": {
833
+ "text": "boolean"
834
+ }
835
+ },
836
+ {
837
+ "name": "required",
838
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
839
+ "type": {
840
+ "text": "boolean"
841
+ }
842
+ },
843
+ {
844
+ "name": "placeholder",
845
+ "description": "Placeholder shown while the field is empty.",
846
+ "type": {
847
+ "text": "string"
848
+ }
849
+ }
850
+ ],
851
+ "slots": [
852
+ {
853
+ "name": "",
854
+ "description": "The label of the field."
855
+ },
856
+ {
857
+ "name": "info",
858
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
859
+ },
860
+ {
861
+ "name": "ibefore",
862
+ "description": "An addon rendered inside the input group, before the control."
863
+ },
864
+ {
865
+ "name": "before",
866
+ "description": "Content rendered before the control, outside the addon styling."
867
+ },
868
+ {
869
+ "name": "after",
870
+ "description": "Content rendered after the control, outside the addon styling."
871
+ },
872
+ {
873
+ "name": "iafter",
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 whole tuple, or undefined when the filter is incomplete.",
881
+ "type": {
882
+ "text": "CustomEvent"
883
+ }
884
+ }
885
+ ]
886
+ },
887
+ {
888
+ "kind": "class",
889
+ "name": "TextFilter",
890
+ "tagName": "ful-filter-text",
891
+ "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.",
893
+ "attributes": [
894
+ {
895
+ "name": "value",
896
+ "description": "JSON tuple of the operator, the sensitivity and the text.",
897
+ "type": {
898
+ "text": "string"
899
+ }
900
+ },
901
+ {
902
+ "name": "readonly",
903
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
904
+ "type": {
905
+ "text": "boolean"
906
+ }
907
+ },
908
+ {
909
+ "name": "required",
910
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
911
+ "type": {
912
+ "text": "boolean"
913
+ }
914
+ },
915
+ {
916
+ "name": "placeholder",
917
+ "description": "Placeholder shown while the field is empty.",
918
+ "type": {
919
+ "text": "string"
920
+ }
921
+ }
922
+ ],
923
+ "slots": [
924
+ {
925
+ "name": "",
926
+ "description": "The label of the field."
927
+ },
928
+ {
929
+ "name": "info",
930
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
931
+ },
932
+ {
933
+ "name": "ibefore",
934
+ "description": "An addon rendered inside the input group, before the control."
935
+ },
936
+ {
937
+ "name": "before",
938
+ "description": "Content rendered before the control, outside the addon styling."
939
+ },
940
+ {
941
+ "name": "after",
942
+ "description": "Content rendered after the control, outside the addon styling."
943
+ },
944
+ {
945
+ "name": "iafter",
946
+ "description": "An addon rendered inside the input group, after the control."
947
+ }
948
+ ],
949
+ "events": [
950
+ {
951
+ "name": "change",
952
+ "description": "Fired with the whole tuple, or undefined when the filter is empty.",
953
+ "type": {
954
+ "text": "CustomEvent"
955
+ }
956
+ }
957
+ ]
958
+ },
959
+ {
960
+ "kind": "class",
961
+ "name": "Select",
962
+ "tagName": "ful-select",
963
+ "customElement": true,
964
+ "description": "A combobox backed by a loader, with badges for the current selection. 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
+ "attributes": [
966
+ {
967
+ "name": "value",
968
+ "description": "The selected key, or a comma separated list of keys when multiple.",
969
+ "type": {
970
+ "text": "string"
971
+ }
972
+ },
973
+ {
974
+ "name": "readonly",
975
+ "description": "Renders the control but does not let it be edited. A readonly field still contributes its value to the form.",
976
+ "type": {
977
+ "text": "boolean"
978
+ }
979
+ },
980
+ {
981
+ "name": "required",
982
+ "description": "Marks the field as required for assistive technologies and shows the required marker on its label.",
983
+ "type": {
984
+ "text": "boolean"
985
+ }
986
+ },
987
+ {
988
+ "name": "itemlist",
989
+ "description": "Shows the selection as a list under the control as well as badges.",
990
+ "type": {
991
+ "text": "boolean"
992
+ }
993
+ }
994
+ ],
995
+ "slots": [
996
+ {
997
+ "name": "",
998
+ "description": "The label of the field."
999
+ },
1000
+ {
1001
+ "name": "info",
1002
+ "description": "Extra content rendered next to the label, for a hint or a help icon."
1003
+ },
1004
+ {
1005
+ "name": "ibefore",
1006
+ "description": "An addon rendered inside the input group, before the control."
1007
+ },
1008
+ {
1009
+ "name": "before",
1010
+ "description": "Content rendered before the control, outside the addon styling."
1011
+ },
1012
+ {
1013
+ "name": "dropdown",
1014
+ "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
+ }
1024
+ ],
1025
+ "events": [
1026
+ {
1027
+ "name": "change",
1028
+ "description": "Fired with the selection, an array when multiple.",
1029
+ "type": {
1030
+ "text": "CustomEvent"
1031
+ }
1032
+ }
1033
+ ]
1034
+ },
1035
+ {
1036
+ "kind": "class",
1037
+ "name": "Dropdown",
1038
+ "tagName": "ful-dropdown",
1039
+ "customElement": true,
1040
+ "description": "The options popup of a ful-select. Rarely used on its own.",
1041
+ "attributes": [],
1042
+ "slots": [],
1043
+ "events": [
1044
+ {
1045
+ "name": "change",
1046
+ "description": "Fired with the option that was picked.",
1047
+ "type": {
1048
+ "text": "CustomEvent"
1049
+ }
1050
+ }
1051
+ ]
1052
+ }
1053
+ ],
1054
+ "exports": [
1055
+ {
1056
+ "kind": "custom-element-definition",
1057
+ "name": "ful-spinner",
1058
+ "declaration": {
1059
+ "name": "Spinner",
1060
+ "module": "dist/fml.mjs"
1061
+ }
1062
+ },
1063
+ {
1064
+ "kind": "custom-element-definition",
1065
+ "name": "ful-form",
1066
+ "declaration": {
1067
+ "name": "Form",
1068
+ "module": "dist/fml.mjs"
1069
+ }
1070
+ },
1071
+ {
1072
+ "kind": "custom-element-definition",
1073
+ "name": "ful-checkbox",
1074
+ "declaration": {
1075
+ "name": "Checkbox",
1076
+ "module": "dist/fml.mjs"
1077
+ }
1078
+ },
1079
+ {
1080
+ "kind": "custom-element-definition",
1081
+ "name": "ful-input",
1082
+ "declaration": {
1083
+ "name": "Input",
1084
+ "module": "dist/fml.mjs"
1085
+ }
1086
+ },
1087
+ {
1088
+ "kind": "custom-element-definition",
1089
+ "name": "ful-input-file",
1090
+ "declaration": {
1091
+ "name": "InputFile",
1092
+ "module": "dist/fml.mjs"
1093
+ }
1094
+ },
1095
+ {
1096
+ "kind": "custom-element-definition",
1097
+ "name": "ful-local-date",
1098
+ "declaration": {
1099
+ "name": "LocalDate",
1100
+ "module": "dist/fml.mjs"
1101
+ }
1102
+ },
1103
+ {
1104
+ "kind": "custom-element-definition",
1105
+ "name": "ful-instant",
1106
+ "declaration": {
1107
+ "name": "Instant",
1108
+ "module": "dist/fml.mjs"
1109
+ }
1110
+ },
1111
+ {
1112
+ "kind": "custom-element-definition",
1113
+ "name": "ful-input-local-date",
1114
+ "declaration": {
1115
+ "name": "InputLocalDate",
1116
+ "module": "dist/fml.mjs"
1117
+ }
1118
+ },
1119
+ {
1120
+ "kind": "custom-element-definition",
1121
+ "name": "ful-input-local-time",
1122
+ "declaration": {
1123
+ "name": "InputLocalTime",
1124
+ "module": "dist/fml.mjs"
1125
+ }
1126
+ },
1127
+ {
1128
+ "kind": "custom-element-definition",
1129
+ "name": "ful-input-instant",
1130
+ "declaration": {
1131
+ "name": "InputInstant",
1132
+ "module": "dist/fml.mjs"
1133
+ }
1134
+ },
1135
+ {
1136
+ "kind": "custom-element-definition",
1137
+ "name": "ful-radio-group",
1138
+ "declaration": {
1139
+ "name": "RadioGroup",
1140
+ "module": "dist/fml.mjs"
1141
+ }
1142
+ },
1143
+ {
1144
+ "kind": "custom-element-definition",
1145
+ "name": "ful-table",
1146
+ "declaration": {
1147
+ "name": "Table",
1148
+ "module": "dist/fml.mjs"
1149
+ }
1150
+ },
1151
+ {
1152
+ "kind": "custom-element-definition",
1153
+ "name": "ful-pagination",
1154
+ "declaration": {
1155
+ "name": "Pagination",
1156
+ "module": "dist/fml.mjs"
1157
+ }
1158
+ },
1159
+ {
1160
+ "kind": "custom-element-definition",
1161
+ "name": "ful-sorter",
1162
+ "declaration": {
1163
+ "name": "SortButton",
1164
+ "module": "dist/fml.mjs"
1165
+ }
1166
+ },
1167
+ {
1168
+ "kind": "custom-element-definition",
1169
+ "name": "ful-filter-instant",
1170
+ "declaration": {
1171
+ "name": "InstantFilter",
1172
+ "module": "dist/fml.mjs"
1173
+ }
1174
+ },
1175
+ {
1176
+ "kind": "custom-element-definition",
1177
+ "name": "ful-filter-local-date",
1178
+ "declaration": {
1179
+ "name": "LocalDateFilter",
1180
+ "module": "dist/fml.mjs"
1181
+ }
1182
+ },
1183
+ {
1184
+ "kind": "custom-element-definition",
1185
+ "name": "ful-filter-text",
1186
+ "declaration": {
1187
+ "name": "TextFilter",
1188
+ "module": "dist/fml.mjs"
1189
+ }
1190
+ },
1191
+ {
1192
+ "kind": "custom-element-definition",
1193
+ "name": "ful-select",
1194
+ "declaration": {
1195
+ "name": "Select",
1196
+ "module": "dist/fml.mjs"
1197
+ }
1198
+ },
1199
+ {
1200
+ "kind": "custom-element-definition",
1201
+ "name": "ful-dropdown",
1202
+ "declaration": {
1203
+ "name": "Dropdown",
1204
+ "module": "dist/fml.mjs"
1205
+ }
1206
+ }
1207
+ ]
1208
+ }
1209
+ ]
1210
+ }