@tmorrow/cre8-wc 2.0.8 → 2.1.1
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/a2ui/catalog.compact.json +2466 -0
- package/a2ui/catalog.json +1245 -107
- package/a2ui/check-layer-parity.mjs +277 -0
- package/a2ui/generate-catalog.mjs +140 -2
- package/a2ui/inert-props.json +1 -1
- package/a2ui/registry.js +28 -0
- package/a2ui/registry.ts +31 -0
- package/a2ui/smoke-test.mjs +36 -2
- package/a2ui/types.d.ts +5 -0
- package/a2ui/types.ts +5 -0
- package/lib/a2ui/registry.d.ts.map +1 -1
- package/lib/a2ui/registry.js +28 -0
- package/lib/a2ui/registry.js.map +1 -1
- package/lib/a2ui/types.d.ts +5 -0
- package/lib/a2ui/types.d.ts.map +1 -1
- package/lib/a2ui/types.js.map +1 -1
- package/lib/scripts/generate-mcp-manifest.js +38 -0
- package/lib/scripts/generate-mcp-manifest.js.map +1 -1
- package/lib/scripts/generate-react-wrappers.js +62 -0
- package/lib/scripts/generate-react-wrappers.js.map +1 -1
- package/mcp-manifest.json +8 -1
- package/package.json +8 -4
- package/react-manifest.json +2 -2
package/a2ui/catalog.json
CHANGED
|
@@ -1,12 +1,60 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cre8.dev/a2ui/catalogs/cre8-wc/2.
|
|
3
|
+
"$id": "https://cre8.dev/a2ui/catalogs/cre8-wc/2.1.1",
|
|
4
4
|
"title": "cre8-wc A2UI Catalog",
|
|
5
5
|
"description": "cre8 Web Components is a library of presentational UI web components to be consumed by # web applications.",
|
|
6
|
+
"x-native-events": [
|
|
7
|
+
"click",
|
|
8
|
+
"dblclick",
|
|
9
|
+
"contextmenu",
|
|
10
|
+
"mousedown",
|
|
11
|
+
"mouseup",
|
|
12
|
+
"mouseenter",
|
|
13
|
+
"mouseleave",
|
|
14
|
+
"mouseover",
|
|
15
|
+
"mouseout",
|
|
16
|
+
"mousemove",
|
|
17
|
+
"pointerdown",
|
|
18
|
+
"pointerup",
|
|
19
|
+
"pointerenter",
|
|
20
|
+
"pointerleave",
|
|
21
|
+
"touchstart",
|
|
22
|
+
"touchend",
|
|
23
|
+
"touchmove",
|
|
24
|
+
"touchcancel",
|
|
25
|
+
"keydown",
|
|
26
|
+
"keyup",
|
|
27
|
+
"keypress",
|
|
28
|
+
"focus",
|
|
29
|
+
"blur",
|
|
30
|
+
"focusin",
|
|
31
|
+
"focusout",
|
|
32
|
+
"input",
|
|
33
|
+
"change",
|
|
34
|
+
"submit",
|
|
35
|
+
"reset",
|
|
36
|
+
"invalid",
|
|
37
|
+
"select",
|
|
38
|
+
"scroll",
|
|
39
|
+
"wheel",
|
|
40
|
+
"resize",
|
|
41
|
+
"copy",
|
|
42
|
+
"cut",
|
|
43
|
+
"paste",
|
|
44
|
+
"drag",
|
|
45
|
+
"dragstart",
|
|
46
|
+
"dragend",
|
|
47
|
+
"dragenter",
|
|
48
|
+
"dragleave",
|
|
49
|
+
"dragover",
|
|
50
|
+
"drop",
|
|
51
|
+
"load",
|
|
52
|
+
"error"
|
|
53
|
+
],
|
|
6
54
|
"x-a2ui": {
|
|
7
55
|
"catalogId": "cre8-wc",
|
|
8
56
|
"library": "@tmorrow/cre8-wc",
|
|
9
|
-
"libraryVersion": "2.
|
|
57
|
+
"libraryVersion": "2.1.1",
|
|
10
58
|
"tagPrefix": "cre8",
|
|
11
59
|
"framework": "Lit 3.3.1"
|
|
12
60
|
},
|
|
@@ -280,6 +328,96 @@
|
|
|
280
328
|
}
|
|
281
329
|
]
|
|
282
330
|
},
|
|
331
|
+
"Child": {
|
|
332
|
+
"description": "Slot content: either a nested component instance or literal text, which renders as a text node.",
|
|
333
|
+
"oneOf": [
|
|
334
|
+
{
|
|
335
|
+
"$ref": "#/$defs/Component"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"type": "string"
|
|
339
|
+
}
|
|
340
|
+
]
|
|
341
|
+
},
|
|
342
|
+
"EventBinding": {
|
|
343
|
+
"description": "A handler name, or an object naming the handler plus dispatch options.",
|
|
344
|
+
"oneOf": [
|
|
345
|
+
{
|
|
346
|
+
"type": "string",
|
|
347
|
+
"minLength": 1
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"type": "object",
|
|
351
|
+
"required": [
|
|
352
|
+
"handler"
|
|
353
|
+
],
|
|
354
|
+
"additionalProperties": false,
|
|
355
|
+
"properties": {
|
|
356
|
+
"handler": {
|
|
357
|
+
"type": "string",
|
|
358
|
+
"minLength": 1
|
|
359
|
+
},
|
|
360
|
+
"stopPropagation": {
|
|
361
|
+
"type": "boolean"
|
|
362
|
+
},
|
|
363
|
+
"preventDefault": {
|
|
364
|
+
"type": "boolean"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
"NativeEventName": {
|
|
371
|
+
"description": "A native DOM event, bindable on any component.",
|
|
372
|
+
"enum": [
|
|
373
|
+
"blur",
|
|
374
|
+
"change",
|
|
375
|
+
"click",
|
|
376
|
+
"contextmenu",
|
|
377
|
+
"copy",
|
|
378
|
+
"cut",
|
|
379
|
+
"dblclick",
|
|
380
|
+
"drag",
|
|
381
|
+
"dragend",
|
|
382
|
+
"dragenter",
|
|
383
|
+
"dragleave",
|
|
384
|
+
"dragover",
|
|
385
|
+
"dragstart",
|
|
386
|
+
"drop",
|
|
387
|
+
"error",
|
|
388
|
+
"focus",
|
|
389
|
+
"focusin",
|
|
390
|
+
"focusout",
|
|
391
|
+
"input",
|
|
392
|
+
"invalid",
|
|
393
|
+
"keydown",
|
|
394
|
+
"keypress",
|
|
395
|
+
"keyup",
|
|
396
|
+
"load",
|
|
397
|
+
"mousedown",
|
|
398
|
+
"mouseenter",
|
|
399
|
+
"mouseleave",
|
|
400
|
+
"mousemove",
|
|
401
|
+
"mouseout",
|
|
402
|
+
"mouseover",
|
|
403
|
+
"mouseup",
|
|
404
|
+
"paste",
|
|
405
|
+
"pointerdown",
|
|
406
|
+
"pointerenter",
|
|
407
|
+
"pointerleave",
|
|
408
|
+
"pointerup",
|
|
409
|
+
"reset",
|
|
410
|
+
"resize",
|
|
411
|
+
"scroll",
|
|
412
|
+
"select",
|
|
413
|
+
"submit",
|
|
414
|
+
"touchcancel",
|
|
415
|
+
"touchend",
|
|
416
|
+
"touchmove",
|
|
417
|
+
"touchstart",
|
|
418
|
+
"wheel"
|
|
419
|
+
]
|
|
420
|
+
},
|
|
283
421
|
"components": {
|
|
284
422
|
"cre8-button": {
|
|
285
423
|
"type": "object",
|
|
@@ -483,17 +621,27 @@
|
|
|
483
621
|
"type": "array",
|
|
484
622
|
"description": "Content rendered before the button text, such as an icon",
|
|
485
623
|
"items": {
|
|
486
|
-
"$ref": "#/$defs/
|
|
624
|
+
"$ref": "#/$defs/Child"
|
|
487
625
|
}
|
|
488
626
|
},
|
|
489
627
|
"after": {
|
|
490
628
|
"type": "array",
|
|
491
629
|
"description": "Content rendered after the button text, such as an icon",
|
|
492
630
|
"items": {
|
|
493
|
-
"$ref": "#/$defs/
|
|
631
|
+
"$ref": "#/$defs/Child"
|
|
494
632
|
}
|
|
495
633
|
}
|
|
496
634
|
}
|
|
635
|
+
},
|
|
636
|
+
"events": {
|
|
637
|
+
"type": "object",
|
|
638
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
639
|
+
"propertyNames": {
|
|
640
|
+
"$ref": "#/$defs/NativeEventName"
|
|
641
|
+
},
|
|
642
|
+
"additionalProperties": {
|
|
643
|
+
"$ref": "#/$defs/EventBinding"
|
|
644
|
+
}
|
|
497
645
|
}
|
|
498
646
|
},
|
|
499
647
|
"additionalProperties": false,
|
|
@@ -542,7 +690,17 @@
|
|
|
542
690
|
"type": "array",
|
|
543
691
|
"description": "The component content",
|
|
544
692
|
"items": {
|
|
545
|
-
"$ref": "#/$defs/
|
|
693
|
+
"$ref": "#/$defs/Child"
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"events": {
|
|
697
|
+
"type": "object",
|
|
698
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
699
|
+
"propertyNames": {
|
|
700
|
+
"$ref": "#/$defs/NativeEventName"
|
|
701
|
+
},
|
|
702
|
+
"additionalProperties": {
|
|
703
|
+
"$ref": "#/$defs/EventBinding"
|
|
546
704
|
}
|
|
547
705
|
}
|
|
548
706
|
},
|
|
@@ -720,6 +878,16 @@
|
|
|
720
878
|
"x-kind": "property"
|
|
721
879
|
}
|
|
722
880
|
}
|
|
881
|
+
},
|
|
882
|
+
"events": {
|
|
883
|
+
"type": "object",
|
|
884
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
885
|
+
"propertyNames": {
|
|
886
|
+
"$ref": "#/$defs/NativeEventName"
|
|
887
|
+
},
|
|
888
|
+
"additionalProperties": {
|
|
889
|
+
"$ref": "#/$defs/EventBinding"
|
|
890
|
+
}
|
|
723
891
|
}
|
|
724
892
|
},
|
|
725
893
|
"additionalProperties": false
|
|
@@ -770,7 +938,27 @@
|
|
|
770
938
|
"type": "array",
|
|
771
939
|
"description": "The component content , this will consist of the dropdown when the user clicks the caret",
|
|
772
940
|
"items": {
|
|
773
|
-
"$ref": "#/$defs/
|
|
941
|
+
"$ref": "#/$defs/Child"
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
"events": {
|
|
945
|
+
"type": "object",
|
|
946
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
947
|
+
"propertyNames": {
|
|
948
|
+
"anyOf": [
|
|
949
|
+
{
|
|
950
|
+
"$ref": "#/$defs/NativeEventName"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"enum": [
|
|
954
|
+
"split-button-dropdown-click",
|
|
955
|
+
"split-button-text-click"
|
|
956
|
+
]
|
|
957
|
+
}
|
|
958
|
+
]
|
|
959
|
+
},
|
|
960
|
+
"additionalProperties": {
|
|
961
|
+
"$ref": "#/$defs/EventBinding"
|
|
774
962
|
}
|
|
775
963
|
}
|
|
776
964
|
},
|
|
@@ -901,6 +1089,27 @@
|
|
|
901
1089
|
"x-kind": "property"
|
|
902
1090
|
}
|
|
903
1091
|
}
|
|
1092
|
+
},
|
|
1093
|
+
"events": {
|
|
1094
|
+
"type": "object",
|
|
1095
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1096
|
+
"propertyNames": {
|
|
1097
|
+
"anyOf": [
|
|
1098
|
+
{
|
|
1099
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"enum": [
|
|
1103
|
+
"chart-click",
|
|
1104
|
+
"chart-hover",
|
|
1105
|
+
"chart-ready"
|
|
1106
|
+
]
|
|
1107
|
+
}
|
|
1108
|
+
]
|
|
1109
|
+
},
|
|
1110
|
+
"additionalProperties": {
|
|
1111
|
+
"$ref": "#/$defs/EventBinding"
|
|
1112
|
+
}
|
|
904
1113
|
}
|
|
905
1114
|
},
|
|
906
1115
|
"additionalProperties": false,
|
|
@@ -971,7 +1180,17 @@
|
|
|
971
1180
|
"type": "array",
|
|
972
1181
|
"description": "The list items",
|
|
973
1182
|
"items": {
|
|
974
|
-
"$ref": "#/$defs/
|
|
1183
|
+
"$ref": "#/$defs/Child"
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"events": {
|
|
1187
|
+
"type": "object",
|
|
1188
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1189
|
+
"propertyNames": {
|
|
1190
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1191
|
+
},
|
|
1192
|
+
"additionalProperties": {
|
|
1193
|
+
"$ref": "#/$defs/EventBinding"
|
|
975
1194
|
}
|
|
976
1195
|
}
|
|
977
1196
|
},
|
|
@@ -999,7 +1218,17 @@
|
|
|
999
1218
|
"type": "array",
|
|
1000
1219
|
"description": "The content of the list item",
|
|
1001
1220
|
"items": {
|
|
1002
|
-
"$ref": "#/$defs/
|
|
1221
|
+
"$ref": "#/$defs/Child"
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"events": {
|
|
1225
|
+
"type": "object",
|
|
1226
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1227
|
+
"propertyNames": {
|
|
1228
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1229
|
+
},
|
|
1230
|
+
"additionalProperties": {
|
|
1231
|
+
"$ref": "#/$defs/EventBinding"
|
|
1003
1232
|
}
|
|
1004
1233
|
}
|
|
1005
1234
|
},
|
|
@@ -1054,6 +1283,25 @@
|
|
|
1054
1283
|
"x-kind": "attribute"
|
|
1055
1284
|
}
|
|
1056
1285
|
}
|
|
1286
|
+
},
|
|
1287
|
+
"events": {
|
|
1288
|
+
"type": "object",
|
|
1289
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1290
|
+
"propertyNames": {
|
|
1291
|
+
"anyOf": [
|
|
1292
|
+
{
|
|
1293
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"enum": [
|
|
1297
|
+
"remove-tag-click"
|
|
1298
|
+
]
|
|
1299
|
+
}
|
|
1300
|
+
]
|
|
1301
|
+
},
|
|
1302
|
+
"additionalProperties": {
|
|
1303
|
+
"$ref": "#/$defs/EventBinding"
|
|
1304
|
+
}
|
|
1057
1305
|
}
|
|
1058
1306
|
},
|
|
1059
1307
|
"additionalProperties": false,
|
|
@@ -1158,7 +1406,17 @@
|
|
|
1158
1406
|
"type": "array",
|
|
1159
1407
|
"description": "The component content",
|
|
1160
1408
|
"items": {
|
|
1161
|
-
"$ref": "#/$defs/
|
|
1409
|
+
"$ref": "#/$defs/Child"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
"events": {
|
|
1413
|
+
"type": "object",
|
|
1414
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1415
|
+
"propertyNames": {
|
|
1416
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1417
|
+
},
|
|
1418
|
+
"additionalProperties": {
|
|
1419
|
+
"$ref": "#/$defs/EventBinding"
|
|
1162
1420
|
}
|
|
1163
1421
|
}
|
|
1164
1422
|
},
|
|
@@ -1186,7 +1444,17 @@
|
|
|
1186
1444
|
"type": "array",
|
|
1187
1445
|
"description": "The component content",
|
|
1188
1446
|
"items": {
|
|
1189
|
-
"$ref": "#/$defs/
|
|
1447
|
+
"$ref": "#/$defs/Child"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
"events": {
|
|
1451
|
+
"type": "object",
|
|
1452
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1453
|
+
"propertyNames": {
|
|
1454
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1455
|
+
},
|
|
1456
|
+
"additionalProperties": {
|
|
1457
|
+
"$ref": "#/$defs/EventBinding"
|
|
1190
1458
|
}
|
|
1191
1459
|
}
|
|
1192
1460
|
},
|
|
@@ -1231,7 +1499,17 @@
|
|
|
1231
1499
|
"type": "array",
|
|
1232
1500
|
"description": "The component content",
|
|
1233
1501
|
"items": {
|
|
1234
|
-
"$ref": "#/$defs/
|
|
1502
|
+
"$ref": "#/$defs/Child"
|
|
1503
|
+
}
|
|
1504
|
+
},
|
|
1505
|
+
"events": {
|
|
1506
|
+
"type": "object",
|
|
1507
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1508
|
+
"propertyNames": {
|
|
1509
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1510
|
+
},
|
|
1511
|
+
"additionalProperties": {
|
|
1512
|
+
"$ref": "#/$defs/EventBinding"
|
|
1235
1513
|
}
|
|
1236
1514
|
}
|
|
1237
1515
|
},
|
|
@@ -1259,7 +1537,17 @@
|
|
|
1259
1537
|
"type": "array",
|
|
1260
1538
|
"description": "The component content",
|
|
1261
1539
|
"items": {
|
|
1262
|
-
"$ref": "#/$defs/
|
|
1540
|
+
"$ref": "#/$defs/Child"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"events": {
|
|
1544
|
+
"type": "object",
|
|
1545
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1546
|
+
"propertyNames": {
|
|
1547
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1548
|
+
},
|
|
1549
|
+
"additionalProperties": {
|
|
1550
|
+
"$ref": "#/$defs/EventBinding"
|
|
1263
1551
|
}
|
|
1264
1552
|
}
|
|
1265
1553
|
},
|
|
@@ -1298,7 +1586,17 @@
|
|
|
1298
1586
|
"type": "array",
|
|
1299
1587
|
"description": "The component content",
|
|
1300
1588
|
"items": {
|
|
1301
|
-
"$ref": "#/$defs/
|
|
1589
|
+
"$ref": "#/$defs/Child"
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
"events": {
|
|
1593
|
+
"type": "object",
|
|
1594
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1595
|
+
"propertyNames": {
|
|
1596
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1597
|
+
},
|
|
1598
|
+
"additionalProperties": {
|
|
1599
|
+
"$ref": "#/$defs/EventBinding"
|
|
1302
1600
|
}
|
|
1303
1601
|
}
|
|
1304
1602
|
},
|
|
@@ -1331,24 +1629,34 @@
|
|
|
1331
1629
|
"type": "array",
|
|
1332
1630
|
"description": "The component content",
|
|
1333
1631
|
"items": {
|
|
1334
|
-
"$ref": "#/$defs/
|
|
1632
|
+
"$ref": "#/$defs/Child"
|
|
1335
1633
|
}
|
|
1336
1634
|
},
|
|
1337
1635
|
"header": {
|
|
1338
1636
|
"type": "array",
|
|
1339
1637
|
"description": "Content rendered in the table object header",
|
|
1340
1638
|
"items": {
|
|
1341
|
-
"$ref": "#/$defs/
|
|
1639
|
+
"$ref": "#/$defs/Child"
|
|
1342
1640
|
}
|
|
1343
1641
|
},
|
|
1344
1642
|
"footer": {
|
|
1345
1643
|
"type": "array",
|
|
1346
1644
|
"description": "Content rendered in the table object footer",
|
|
1347
1645
|
"items": {
|
|
1348
|
-
"$ref": "#/$defs/
|
|
1646
|
+
"$ref": "#/$defs/Child"
|
|
1349
1647
|
}
|
|
1350
1648
|
}
|
|
1351
1649
|
}
|
|
1650
|
+
},
|
|
1651
|
+
"events": {
|
|
1652
|
+
"type": "object",
|
|
1653
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1654
|
+
"propertyNames": {
|
|
1655
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1656
|
+
},
|
|
1657
|
+
"additionalProperties": {
|
|
1658
|
+
"$ref": "#/$defs/EventBinding"
|
|
1659
|
+
}
|
|
1352
1660
|
}
|
|
1353
1661
|
},
|
|
1354
1662
|
"additionalProperties": false,
|
|
@@ -1414,17 +1722,27 @@
|
|
|
1414
1722
|
"type": "array",
|
|
1415
1723
|
"description": "The component content",
|
|
1416
1724
|
"items": {
|
|
1417
|
-
"$ref": "#/$defs/
|
|
1725
|
+
"$ref": "#/$defs/Child"
|
|
1418
1726
|
}
|
|
1419
1727
|
},
|
|
1420
1728
|
"expandableContent": {
|
|
1421
1729
|
"type": "array",
|
|
1422
1730
|
"description": "Content revealed when the row is expanded",
|
|
1423
1731
|
"items": {
|
|
1424
|
-
"$ref": "#/$defs/
|
|
1732
|
+
"$ref": "#/$defs/Child"
|
|
1425
1733
|
}
|
|
1426
1734
|
}
|
|
1427
1735
|
}
|
|
1736
|
+
},
|
|
1737
|
+
"events": {
|
|
1738
|
+
"type": "object",
|
|
1739
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1740
|
+
"propertyNames": {
|
|
1741
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1742
|
+
},
|
|
1743
|
+
"additionalProperties": {
|
|
1744
|
+
"$ref": "#/$defs/EventBinding"
|
|
1745
|
+
}
|
|
1428
1746
|
}
|
|
1429
1747
|
},
|
|
1430
1748
|
"additionalProperties": false,
|
|
@@ -1531,6 +1849,25 @@
|
|
|
1531
1849
|
"x-kind": "property"
|
|
1532
1850
|
}
|
|
1533
1851
|
}
|
|
1852
|
+
},
|
|
1853
|
+
"events": {
|
|
1854
|
+
"type": "object",
|
|
1855
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1856
|
+
"propertyNames": {
|
|
1857
|
+
"anyOf": [
|
|
1858
|
+
{
|
|
1859
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"enum": [
|
|
1863
|
+
"change"
|
|
1864
|
+
]
|
|
1865
|
+
}
|
|
1866
|
+
]
|
|
1867
|
+
},
|
|
1868
|
+
"additionalProperties": {
|
|
1869
|
+
"$ref": "#/$defs/EventBinding"
|
|
1870
|
+
}
|
|
1534
1871
|
}
|
|
1535
1872
|
},
|
|
1536
1873
|
"additionalProperties": false,
|
|
@@ -1615,7 +1952,17 @@
|
|
|
1615
1952
|
"type": "array",
|
|
1616
1953
|
"description": "The `cre8-tag` children of the list",
|
|
1617
1954
|
"items": {
|
|
1618
|
-
"$ref": "#/$defs/
|
|
1955
|
+
"$ref": "#/$defs/Child"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"events": {
|
|
1959
|
+
"type": "object",
|
|
1960
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
1961
|
+
"propertyNames": {
|
|
1962
|
+
"$ref": "#/$defs/NativeEventName"
|
|
1963
|
+
},
|
|
1964
|
+
"additionalProperties": {
|
|
1965
|
+
"$ref": "#/$defs/EventBinding"
|
|
1619
1966
|
}
|
|
1620
1967
|
}
|
|
1621
1968
|
},
|
|
@@ -1694,7 +2041,17 @@
|
|
|
1694
2041
|
"type": "array",
|
|
1695
2042
|
"description": "The `cre8-accordion-item` children to group",
|
|
1696
2043
|
"items": {
|
|
1697
|
-
"$ref": "#/$defs/
|
|
2044
|
+
"$ref": "#/$defs/Child"
|
|
2045
|
+
}
|
|
2046
|
+
},
|
|
2047
|
+
"events": {
|
|
2048
|
+
"type": "object",
|
|
2049
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2050
|
+
"propertyNames": {
|
|
2051
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2052
|
+
},
|
|
2053
|
+
"additionalProperties": {
|
|
2054
|
+
"$ref": "#/$defs/EventBinding"
|
|
1698
2055
|
}
|
|
1699
2056
|
}
|
|
1700
2057
|
},
|
|
@@ -1783,17 +2140,27 @@
|
|
|
1783
2140
|
"type": "array",
|
|
1784
2141
|
"description": "The body of the accordion item will be any valid html\ninserted between the cre8-accordion-item opening and closing tags.",
|
|
1785
2142
|
"items": {
|
|
1786
|
-
"$ref": "#/$defs/
|
|
2143
|
+
"$ref": "#/$defs/Child"
|
|
1787
2144
|
}
|
|
1788
2145
|
},
|
|
1789
2146
|
"heading": {
|
|
1790
2147
|
"type": "array",
|
|
1791
2148
|
"description": "Custom heading content, used when the `heading` property is not set.",
|
|
1792
2149
|
"items": {
|
|
1793
|
-
"$ref": "#/$defs/
|
|
2150
|
+
"$ref": "#/$defs/Child"
|
|
1794
2151
|
}
|
|
1795
2152
|
}
|
|
1796
2153
|
}
|
|
2154
|
+
},
|
|
2155
|
+
"events": {
|
|
2156
|
+
"type": "object",
|
|
2157
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2158
|
+
"propertyNames": {
|
|
2159
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2160
|
+
},
|
|
2161
|
+
"additionalProperties": {
|
|
2162
|
+
"$ref": "#/$defs/EventBinding"
|
|
2163
|
+
}
|
|
1797
2164
|
}
|
|
1798
2165
|
},
|
|
1799
2166
|
"additionalProperties": false,
|
|
@@ -1870,7 +2237,17 @@
|
|
|
1870
2237
|
"type": "array",
|
|
1871
2238
|
"description": "The `cre8-dropdown-item` children of the menu",
|
|
1872
2239
|
"items": {
|
|
1873
|
-
"$ref": "#/$defs/
|
|
2240
|
+
"$ref": "#/$defs/Child"
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
"events": {
|
|
2244
|
+
"type": "object",
|
|
2245
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2246
|
+
"propertyNames": {
|
|
2247
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2248
|
+
},
|
|
2249
|
+
"additionalProperties": {
|
|
2250
|
+
"$ref": "#/$defs/EventBinding"
|
|
1874
2251
|
}
|
|
1875
2252
|
}
|
|
1876
2253
|
},
|
|
@@ -1904,7 +2281,26 @@
|
|
|
1904
2281
|
"type": "array",
|
|
1905
2282
|
"description": "The label content for the dropdown item.",
|
|
1906
2283
|
"items": {
|
|
1907
|
-
"$ref": "#/$defs/
|
|
2284
|
+
"$ref": "#/$defs/Child"
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"events": {
|
|
2288
|
+
"type": "object",
|
|
2289
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2290
|
+
"propertyNames": {
|
|
2291
|
+
"anyOf": [
|
|
2292
|
+
{
|
|
2293
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"enum": [
|
|
2297
|
+
"dropdown-item-select"
|
|
2298
|
+
]
|
|
2299
|
+
}
|
|
2300
|
+
]
|
|
2301
|
+
},
|
|
2302
|
+
"additionalProperties": {
|
|
2303
|
+
"$ref": "#/$defs/EventBinding"
|
|
1908
2304
|
}
|
|
1909
2305
|
}
|
|
1910
2306
|
},
|
|
@@ -1993,24 +2389,43 @@
|
|
|
1993
2389
|
"type": "array",
|
|
1994
2390
|
"description": "The component content",
|
|
1995
2391
|
"items": {
|
|
1996
|
-
"$ref": "#/$defs/
|
|
2392
|
+
"$ref": "#/$defs/Child"
|
|
1997
2393
|
}
|
|
1998
2394
|
},
|
|
1999
2395
|
"header": {
|
|
2000
2396
|
"type": "array",
|
|
2001
2397
|
"description": "Custom header content for the modal",
|
|
2002
2398
|
"items": {
|
|
2003
|
-
"$ref": "#/$defs/
|
|
2399
|
+
"$ref": "#/$defs/Child"
|
|
2004
2400
|
}
|
|
2005
2401
|
},
|
|
2006
2402
|
"footer": {
|
|
2007
2403
|
"type": "array",
|
|
2008
2404
|
"description": "Custom footer content for the modal",
|
|
2009
2405
|
"items": {
|
|
2010
|
-
"$ref": "#/$defs/
|
|
2406
|
+
"$ref": "#/$defs/Child"
|
|
2011
2407
|
}
|
|
2012
2408
|
}
|
|
2013
2409
|
}
|
|
2410
|
+
},
|
|
2411
|
+
"events": {
|
|
2412
|
+
"type": "object",
|
|
2413
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2414
|
+
"propertyNames": {
|
|
2415
|
+
"anyOf": [
|
|
2416
|
+
{
|
|
2417
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"enum": [
|
|
2421
|
+
"modal-close"
|
|
2422
|
+
]
|
|
2423
|
+
}
|
|
2424
|
+
]
|
|
2425
|
+
},
|
|
2426
|
+
"additionalProperties": {
|
|
2427
|
+
"$ref": "#/$defs/EventBinding"
|
|
2428
|
+
}
|
|
2014
2429
|
}
|
|
2015
2430
|
},
|
|
2016
2431
|
"additionalProperties": false,
|
|
@@ -2111,31 +2526,51 @@
|
|
|
2111
2526
|
"type": "array",
|
|
2112
2527
|
"description": "The component content",
|
|
2113
2528
|
"items": {
|
|
2114
|
-
"$ref": "#/$defs/
|
|
2529
|
+
"$ref": "#/$defs/Child"
|
|
2115
2530
|
}
|
|
2116
2531
|
},
|
|
2117
2532
|
"trigger": {
|
|
2118
2533
|
"type": "array",
|
|
2119
2534
|
"description": "The element that toggles the popover open and closed",
|
|
2120
2535
|
"items": {
|
|
2121
|
-
"$ref": "#/$defs/
|
|
2536
|
+
"$ref": "#/$defs/Child"
|
|
2122
2537
|
}
|
|
2123
2538
|
},
|
|
2124
2539
|
"header": {
|
|
2125
2540
|
"type": "array",
|
|
2126
2541
|
"description": "Custom header content for the popover panel",
|
|
2127
2542
|
"items": {
|
|
2128
|
-
"$ref": "#/$defs/
|
|
2543
|
+
"$ref": "#/$defs/Child"
|
|
2129
2544
|
}
|
|
2130
2545
|
},
|
|
2131
2546
|
"footer": {
|
|
2132
2547
|
"type": "array",
|
|
2133
2548
|
"description": "Custom footer content for the popover panel",
|
|
2134
2549
|
"items": {
|
|
2135
|
-
"$ref": "#/$defs/
|
|
2550
|
+
"$ref": "#/$defs/Child"
|
|
2136
2551
|
}
|
|
2137
2552
|
}
|
|
2138
2553
|
}
|
|
2554
|
+
},
|
|
2555
|
+
"events": {
|
|
2556
|
+
"type": "object",
|
|
2557
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2558
|
+
"propertyNames": {
|
|
2559
|
+
"anyOf": [
|
|
2560
|
+
{
|
|
2561
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"enum": [
|
|
2565
|
+
"popover-close",
|
|
2566
|
+
"popover-open"
|
|
2567
|
+
]
|
|
2568
|
+
}
|
|
2569
|
+
]
|
|
2570
|
+
},
|
|
2571
|
+
"additionalProperties": {
|
|
2572
|
+
"$ref": "#/$defs/EventBinding"
|
|
2573
|
+
}
|
|
2139
2574
|
}
|
|
2140
2575
|
},
|
|
2141
2576
|
"additionalProperties": false,
|
|
@@ -2176,7 +2611,17 @@
|
|
|
2176
2611
|
"type": "array",
|
|
2177
2612
|
"description": "The component content",
|
|
2178
2613
|
"items": {
|
|
2179
|
-
"$ref": "#/$defs/
|
|
2614
|
+
"$ref": "#/$defs/Child"
|
|
2615
|
+
}
|
|
2616
|
+
},
|
|
2617
|
+
"events": {
|
|
2618
|
+
"type": "object",
|
|
2619
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2620
|
+
"propertyNames": {
|
|
2621
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2622
|
+
},
|
|
2623
|
+
"additionalProperties": {
|
|
2624
|
+
"$ref": "#/$defs/EventBinding"
|
|
2180
2625
|
}
|
|
2181
2626
|
}
|
|
2182
2627
|
},
|
|
@@ -2210,7 +2655,17 @@
|
|
|
2210
2655
|
"type": "array",
|
|
2211
2656
|
"description": "The component content",
|
|
2212
2657
|
"items": {
|
|
2213
|
-
"$ref": "#/$defs/
|
|
2658
|
+
"$ref": "#/$defs/Child"
|
|
2659
|
+
}
|
|
2660
|
+
},
|
|
2661
|
+
"events": {
|
|
2662
|
+
"type": "object",
|
|
2663
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2664
|
+
"propertyNames": {
|
|
2665
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2666
|
+
},
|
|
2667
|
+
"additionalProperties": {
|
|
2668
|
+
"$ref": "#/$defs/EventBinding"
|
|
2214
2669
|
}
|
|
2215
2670
|
}
|
|
2216
2671
|
},
|
|
@@ -2307,17 +2762,37 @@
|
|
|
2307
2762
|
"type": "array",
|
|
2308
2763
|
"description": "Default, unnamed slot container for Tooltip text",
|
|
2309
2764
|
"items": {
|
|
2310
|
-
"$ref": "#/$defs/
|
|
2765
|
+
"$ref": "#/$defs/Child"
|
|
2311
2766
|
}
|
|
2312
2767
|
},
|
|
2313
2768
|
"trigger": {
|
|
2314
2769
|
"type": "array",
|
|
2315
2770
|
"description": "Named slot container for Tooltip element to trigger showing/hiding the Tooltip text",
|
|
2316
2771
|
"items": {
|
|
2317
|
-
"$ref": "#/$defs/
|
|
2772
|
+
"$ref": "#/$defs/Child"
|
|
2318
2773
|
}
|
|
2319
2774
|
}
|
|
2320
2775
|
}
|
|
2776
|
+
},
|
|
2777
|
+
"events": {
|
|
2778
|
+
"type": "object",
|
|
2779
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2780
|
+
"propertyNames": {
|
|
2781
|
+
"anyOf": [
|
|
2782
|
+
{
|
|
2783
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"enum": [
|
|
2787
|
+
"tooltip-close",
|
|
2788
|
+
"tooltip-open"
|
|
2789
|
+
]
|
|
2790
|
+
}
|
|
2791
|
+
]
|
|
2792
|
+
},
|
|
2793
|
+
"additionalProperties": {
|
|
2794
|
+
"$ref": "#/$defs/EventBinding"
|
|
2795
|
+
}
|
|
2321
2796
|
}
|
|
2322
2797
|
},
|
|
2323
2798
|
"additionalProperties": false,
|
|
@@ -2429,17 +2904,27 @@
|
|
|
2429
2904
|
"type": "array",
|
|
2430
2905
|
"description": "The alert body content",
|
|
2431
2906
|
"items": {
|
|
2432
|
-
"$ref": "#/$defs/
|
|
2907
|
+
"$ref": "#/$defs/Child"
|
|
2433
2908
|
}
|
|
2434
2909
|
},
|
|
2435
2910
|
"cta": {
|
|
2436
2911
|
"type": "array",
|
|
2437
2912
|
"description": "Container for a call-to-action button or link",
|
|
2438
2913
|
"items": {
|
|
2439
|
-
"$ref": "#/$defs/
|
|
2914
|
+
"$ref": "#/$defs/Child"
|
|
2440
2915
|
}
|
|
2441
2916
|
}
|
|
2442
2917
|
}
|
|
2918
|
+
},
|
|
2919
|
+
"events": {
|
|
2920
|
+
"type": "object",
|
|
2921
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2922
|
+
"propertyNames": {
|
|
2923
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2924
|
+
},
|
|
2925
|
+
"additionalProperties": {
|
|
2926
|
+
"$ref": "#/$defs/EventBinding"
|
|
2927
|
+
}
|
|
2443
2928
|
}
|
|
2444
2929
|
},
|
|
2445
2930
|
"additionalProperties": false,
|
|
@@ -2498,6 +2983,16 @@
|
|
|
2498
2983
|
"x-kind": "attribute"
|
|
2499
2984
|
}
|
|
2500
2985
|
}
|
|
2986
|
+
},
|
|
2987
|
+
"events": {
|
|
2988
|
+
"type": "object",
|
|
2989
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
2990
|
+
"propertyNames": {
|
|
2991
|
+
"$ref": "#/$defs/NativeEventName"
|
|
2992
|
+
},
|
|
2993
|
+
"additionalProperties": {
|
|
2994
|
+
"$ref": "#/$defs/EventBinding"
|
|
2995
|
+
}
|
|
2501
2996
|
}
|
|
2502
2997
|
},
|
|
2503
2998
|
"additionalProperties": false
|
|
@@ -2565,7 +3060,17 @@
|
|
|
2565
3060
|
"type": "array",
|
|
2566
3061
|
"description": "The component content",
|
|
2567
3062
|
"items": {
|
|
2568
|
-
"$ref": "#/$defs/
|
|
3063
|
+
"$ref": "#/$defs/Child"
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
3066
|
+
"events": {
|
|
3067
|
+
"type": "object",
|
|
3068
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3069
|
+
"propertyNames": {
|
|
3070
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3071
|
+
},
|
|
3072
|
+
"additionalProperties": {
|
|
3073
|
+
"$ref": "#/$defs/EventBinding"
|
|
2569
3074
|
}
|
|
2570
3075
|
}
|
|
2571
3076
|
},
|
|
@@ -2635,6 +3140,16 @@
|
|
|
2635
3140
|
"x-kind": "property"
|
|
2636
3141
|
}
|
|
2637
3142
|
}
|
|
3143
|
+
},
|
|
3144
|
+
"events": {
|
|
3145
|
+
"type": "object",
|
|
3146
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3147
|
+
"propertyNames": {
|
|
3148
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3149
|
+
},
|
|
3150
|
+
"additionalProperties": {
|
|
3151
|
+
"$ref": "#/$defs/EventBinding"
|
|
3152
|
+
}
|
|
2638
3153
|
}
|
|
2639
3154
|
},
|
|
2640
3155
|
"additionalProperties": false
|
|
@@ -2672,6 +3187,25 @@
|
|
|
2672
3187
|
"x-kind": "property"
|
|
2673
3188
|
}
|
|
2674
3189
|
}
|
|
3190
|
+
},
|
|
3191
|
+
"events": {
|
|
3192
|
+
"type": "object",
|
|
3193
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3194
|
+
"propertyNames": {
|
|
3195
|
+
"anyOf": [
|
|
3196
|
+
{
|
|
3197
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"enum": [
|
|
3201
|
+
"percent-bar-left-action-click"
|
|
3202
|
+
]
|
|
3203
|
+
}
|
|
3204
|
+
]
|
|
3205
|
+
},
|
|
3206
|
+
"additionalProperties": {
|
|
3207
|
+
"$ref": "#/$defs/EventBinding"
|
|
3208
|
+
}
|
|
2675
3209
|
}
|
|
2676
3210
|
},
|
|
2677
3211
|
"additionalProperties": false,
|
|
@@ -2740,6 +3274,16 @@
|
|
|
2740
3274
|
"x-kind": "property"
|
|
2741
3275
|
}
|
|
2742
3276
|
}
|
|
3277
|
+
},
|
|
3278
|
+
"events": {
|
|
3279
|
+
"type": "object",
|
|
3280
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3281
|
+
"propertyNames": {
|
|
3282
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3283
|
+
},
|
|
3284
|
+
"additionalProperties": {
|
|
3285
|
+
"$ref": "#/$defs/EventBinding"
|
|
3286
|
+
}
|
|
2743
3287
|
}
|
|
2744
3288
|
},
|
|
2745
3289
|
"additionalProperties": false
|
|
@@ -2794,7 +3338,17 @@
|
|
|
2794
3338
|
"type": "array",
|
|
2795
3339
|
"description": "The component content",
|
|
2796
3340
|
"items": {
|
|
2797
|
-
"$ref": "#/$defs/
|
|
3341
|
+
"$ref": "#/$defs/Child"
|
|
3342
|
+
}
|
|
3343
|
+
},
|
|
3344
|
+
"events": {
|
|
3345
|
+
"type": "object",
|
|
3346
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3347
|
+
"propertyNames": {
|
|
3348
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3349
|
+
},
|
|
3350
|
+
"additionalProperties": {
|
|
3351
|
+
"$ref": "#/$defs/EventBinding"
|
|
2798
3352
|
}
|
|
2799
3353
|
}
|
|
2800
3354
|
},
|
|
@@ -2839,6 +3393,16 @@
|
|
|
2839
3393
|
"x-kind": "attribute"
|
|
2840
3394
|
}
|
|
2841
3395
|
}
|
|
3396
|
+
},
|
|
3397
|
+
"events": {
|
|
3398
|
+
"type": "object",
|
|
3399
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3400
|
+
"propertyNames": {
|
|
3401
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3402
|
+
},
|
|
3403
|
+
"additionalProperties": {
|
|
3404
|
+
"$ref": "#/$defs/EventBinding"
|
|
3405
|
+
}
|
|
2842
3406
|
}
|
|
2843
3407
|
},
|
|
2844
3408
|
"additionalProperties": false
|
|
@@ -2935,7 +3499,17 @@
|
|
|
2935
3499
|
"type": "array",
|
|
2936
3500
|
"description": "The component content, which should be a set of `checkbox-field-item`s",
|
|
2937
3501
|
"items": {
|
|
2938
|
-
"$ref": "#/$defs/
|
|
3502
|
+
"$ref": "#/$defs/Child"
|
|
3503
|
+
}
|
|
3504
|
+
},
|
|
3505
|
+
"events": {
|
|
3506
|
+
"type": "object",
|
|
3507
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3508
|
+
"propertyNames": {
|
|
3509
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3510
|
+
},
|
|
3511
|
+
"additionalProperties": {
|
|
3512
|
+
"$ref": "#/$defs/EventBinding"
|
|
2939
3513
|
}
|
|
2940
3514
|
}
|
|
2941
3515
|
},
|
|
@@ -3062,10 +3636,29 @@
|
|
|
3062
3636
|
"type": "array",
|
|
3063
3637
|
"description": "Container for optional field note content",
|
|
3064
3638
|
"items": {
|
|
3065
|
-
"$ref": "#/$defs/
|
|
3639
|
+
"$ref": "#/$defs/Child"
|
|
3066
3640
|
}
|
|
3067
3641
|
}
|
|
3068
3642
|
}
|
|
3643
|
+
},
|
|
3644
|
+
"events": {
|
|
3645
|
+
"type": "object",
|
|
3646
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3647
|
+
"propertyNames": {
|
|
3648
|
+
"anyOf": [
|
|
3649
|
+
{
|
|
3650
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3651
|
+
},
|
|
3652
|
+
{
|
|
3653
|
+
"enum": [
|
|
3654
|
+
"change"
|
|
3655
|
+
]
|
|
3656
|
+
}
|
|
3657
|
+
]
|
|
3658
|
+
},
|
|
3659
|
+
"additionalProperties": {
|
|
3660
|
+
"$ref": "#/$defs/EventBinding"
|
|
3661
|
+
}
|
|
3069
3662
|
}
|
|
3070
3663
|
},
|
|
3071
3664
|
"additionalProperties": false,
|
|
@@ -3250,10 +3843,20 @@
|
|
|
3250
3843
|
"type": "array",
|
|
3251
3844
|
"description": "Container for optional field note content",
|
|
3252
3845
|
"items": {
|
|
3253
|
-
"$ref": "#/$defs/
|
|
3846
|
+
"$ref": "#/$defs/Child"
|
|
3254
3847
|
}
|
|
3255
3848
|
}
|
|
3256
3849
|
}
|
|
3850
|
+
},
|
|
3851
|
+
"events": {
|
|
3852
|
+
"type": "object",
|
|
3853
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
3854
|
+
"propertyNames": {
|
|
3855
|
+
"$ref": "#/$defs/NativeEventName"
|
|
3856
|
+
},
|
|
3857
|
+
"additionalProperties": {
|
|
3858
|
+
"$ref": "#/$defs/EventBinding"
|
|
3859
|
+
}
|
|
3257
3860
|
}
|
|
3258
3861
|
},
|
|
3259
3862
|
"additionalProperties": false,
|
|
@@ -3424,10 +4027,20 @@
|
|
|
3424
4027
|
"type": "array",
|
|
3425
4028
|
"description": "Container for optional field note content",
|
|
3426
4029
|
"items": {
|
|
3427
|
-
"$ref": "#/$defs/
|
|
4030
|
+
"$ref": "#/$defs/Child"
|
|
3428
4031
|
}
|
|
3429
4032
|
}
|
|
3430
4033
|
}
|
|
4034
|
+
},
|
|
4035
|
+
"events": {
|
|
4036
|
+
"type": "object",
|
|
4037
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4038
|
+
"propertyNames": {
|
|
4039
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4040
|
+
},
|
|
4041
|
+
"additionalProperties": {
|
|
4042
|
+
"$ref": "#/$defs/EventBinding"
|
|
4043
|
+
}
|
|
3431
4044
|
}
|
|
3432
4045
|
},
|
|
3433
4046
|
"additionalProperties": false,
|
|
@@ -3473,7 +4086,17 @@
|
|
|
3473
4086
|
"type": "array",
|
|
3474
4087
|
"description": "The note content",
|
|
3475
4088
|
"items": {
|
|
3476
|
-
"$ref": "#/$defs/
|
|
4089
|
+
"$ref": "#/$defs/Child"
|
|
4090
|
+
}
|
|
4091
|
+
},
|
|
4092
|
+
"events": {
|
|
4093
|
+
"type": "object",
|
|
4094
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4095
|
+
"propertyNames": {
|
|
4096
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4097
|
+
},
|
|
4098
|
+
"additionalProperties": {
|
|
4099
|
+
"$ref": "#/$defs/EventBinding"
|
|
3477
4100
|
}
|
|
3478
4101
|
}
|
|
3479
4102
|
},
|
|
@@ -3585,10 +4208,29 @@
|
|
|
3585
4208
|
"type": "array",
|
|
3586
4209
|
"description": "Container for optional field note content",
|
|
3587
4210
|
"items": {
|
|
3588
|
-
"$ref": "#/$defs/
|
|
4211
|
+
"$ref": "#/$defs/Child"
|
|
3589
4212
|
}
|
|
3590
4213
|
}
|
|
3591
4214
|
}
|
|
4215
|
+
},
|
|
4216
|
+
"events": {
|
|
4217
|
+
"type": "object",
|
|
4218
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4219
|
+
"propertyNames": {
|
|
4220
|
+
"anyOf": [
|
|
4221
|
+
{
|
|
4222
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4223
|
+
},
|
|
4224
|
+
{
|
|
4225
|
+
"enum": [
|
|
4226
|
+
"multi-select-change"
|
|
4227
|
+
]
|
|
4228
|
+
}
|
|
4229
|
+
]
|
|
4230
|
+
},
|
|
4231
|
+
"additionalProperties": {
|
|
4232
|
+
"$ref": "#/$defs/EventBinding"
|
|
4233
|
+
}
|
|
3592
4234
|
}
|
|
3593
4235
|
},
|
|
3594
4236
|
"additionalProperties": false,
|
|
@@ -3693,7 +4335,17 @@
|
|
|
3693
4335
|
"type": "array",
|
|
3694
4336
|
"description": "The component content, which should be a set of `radio-field-item`s",
|
|
3695
4337
|
"items": {
|
|
3696
|
-
"$ref": "#/$defs/
|
|
4338
|
+
"$ref": "#/$defs/Child"
|
|
4339
|
+
}
|
|
4340
|
+
},
|
|
4341
|
+
"events": {
|
|
4342
|
+
"type": "object",
|
|
4343
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4344
|
+
"propertyNames": {
|
|
4345
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4346
|
+
},
|
|
4347
|
+
"additionalProperties": {
|
|
4348
|
+
"$ref": "#/$defs/EventBinding"
|
|
3697
4349
|
}
|
|
3698
4350
|
}
|
|
3699
4351
|
},
|
|
@@ -3792,6 +4444,16 @@
|
|
|
3792
4444
|
"x-kind": "property"
|
|
3793
4445
|
}
|
|
3794
4446
|
}
|
|
4447
|
+
},
|
|
4448
|
+
"events": {
|
|
4449
|
+
"type": "object",
|
|
4450
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4451
|
+
"propertyNames": {
|
|
4452
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4453
|
+
},
|
|
4454
|
+
"additionalProperties": {
|
|
4455
|
+
"$ref": "#/$defs/EventBinding"
|
|
4456
|
+
}
|
|
3795
4457
|
}
|
|
3796
4458
|
},
|
|
3797
4459
|
"additionalProperties": false
|
|
@@ -3961,10 +4623,29 @@
|
|
|
3961
4623
|
"type": "array",
|
|
3962
4624
|
"description": "Container for optional field note content",
|
|
3963
4625
|
"items": {
|
|
3964
|
-
"$ref": "#/$defs/
|
|
4626
|
+
"$ref": "#/$defs/Child"
|
|
3965
4627
|
}
|
|
3966
4628
|
}
|
|
3967
4629
|
}
|
|
4630
|
+
},
|
|
4631
|
+
"events": {
|
|
4632
|
+
"type": "object",
|
|
4633
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4634
|
+
"propertyNames": {
|
|
4635
|
+
"anyOf": [
|
|
4636
|
+
{
|
|
4637
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4638
|
+
},
|
|
4639
|
+
{
|
|
4640
|
+
"enum": [
|
|
4641
|
+
"change"
|
|
4642
|
+
]
|
|
4643
|
+
}
|
|
4644
|
+
]
|
|
4645
|
+
},
|
|
4646
|
+
"additionalProperties": {
|
|
4647
|
+
"$ref": "#/$defs/EventBinding"
|
|
4648
|
+
}
|
|
3968
4649
|
}
|
|
3969
4650
|
},
|
|
3970
4651
|
"additionalProperties": false,
|
|
@@ -4118,38 +4799,58 @@
|
|
|
4118
4799
|
"type": "array",
|
|
4119
4800
|
"description": "The default slot goes into the center, main part of the Select Tile.\n Consider using title and body instead.",
|
|
4120
4801
|
"items": {
|
|
4121
|
-
"$ref": "#/$defs/
|
|
4802
|
+
"$ref": "#/$defs/Child"
|
|
4122
4803
|
}
|
|
4123
4804
|
},
|
|
4124
4805
|
"header": {
|
|
4125
4806
|
"type": "array",
|
|
4126
4807
|
"description": "The top or left part of the Select Tile",
|
|
4127
4808
|
"items": {
|
|
4128
|
-
"$ref": "#/$defs/
|
|
4809
|
+
"$ref": "#/$defs/Child"
|
|
4129
4810
|
}
|
|
4130
4811
|
},
|
|
4131
4812
|
"footer": {
|
|
4132
4813
|
"type": "array",
|
|
4133
4814
|
"description": "The bottom or right part of the Select Tile",
|
|
4134
4815
|
"items": {
|
|
4135
|
-
"$ref": "#/$defs/
|
|
4816
|
+
"$ref": "#/$defs/Child"
|
|
4136
4817
|
}
|
|
4137
4818
|
},
|
|
4138
4819
|
"title": {
|
|
4139
4820
|
"type": "array",
|
|
4140
4821
|
"description": "The title part of the Select Tile, use with body slot and\n instead of the default slot for appropriate typography.",
|
|
4141
4822
|
"items": {
|
|
4142
|
-
"$ref": "#/$defs/
|
|
4823
|
+
"$ref": "#/$defs/Child"
|
|
4143
4824
|
}
|
|
4144
4825
|
},
|
|
4145
4826
|
"body": {
|
|
4146
4827
|
"type": "array",
|
|
4147
4828
|
"description": "The \"body\" part of the Select Tile, which appears under\n the title slot and receives apporpriate typography.",
|
|
4148
4829
|
"items": {
|
|
4149
|
-
"$ref": "#/$defs/
|
|
4830
|
+
"$ref": "#/$defs/Child"
|
|
4150
4831
|
}
|
|
4151
4832
|
}
|
|
4152
4833
|
}
|
|
4834
|
+
},
|
|
4835
|
+
"events": {
|
|
4836
|
+
"type": "object",
|
|
4837
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4838
|
+
"propertyNames": {
|
|
4839
|
+
"anyOf": [
|
|
4840
|
+
{
|
|
4841
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4842
|
+
},
|
|
4843
|
+
{
|
|
4844
|
+
"enum": [
|
|
4845
|
+
"change",
|
|
4846
|
+
"input"
|
|
4847
|
+
]
|
|
4848
|
+
}
|
|
4849
|
+
]
|
|
4850
|
+
},
|
|
4851
|
+
"additionalProperties": {
|
|
4852
|
+
"$ref": "#/$defs/EventBinding"
|
|
4853
|
+
}
|
|
4153
4854
|
}
|
|
4154
4855
|
},
|
|
4155
4856
|
"additionalProperties": false,
|
|
@@ -4237,7 +4938,17 @@
|
|
|
4237
4938
|
"type": "array",
|
|
4238
4939
|
"description": "Child instances rendered into the default slot.",
|
|
4239
4940
|
"items": {
|
|
4240
|
-
"$ref": "#/$defs/
|
|
4941
|
+
"$ref": "#/$defs/Child"
|
|
4942
|
+
}
|
|
4943
|
+
},
|
|
4944
|
+
"events": {
|
|
4945
|
+
"type": "object",
|
|
4946
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4947
|
+
"propertyNames": {
|
|
4948
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4949
|
+
},
|
|
4950
|
+
"additionalProperties": {
|
|
4951
|
+
"$ref": "#/$defs/EventBinding"
|
|
4241
4952
|
}
|
|
4242
4953
|
}
|
|
4243
4954
|
},
|
|
@@ -4277,7 +4988,17 @@
|
|
|
4277
4988
|
"type": "array",
|
|
4278
4989
|
"description": "The band content",
|
|
4279
4990
|
"items": {
|
|
4280
|
-
"$ref": "#/$defs/
|
|
4991
|
+
"$ref": "#/$defs/Child"
|
|
4992
|
+
}
|
|
4993
|
+
},
|
|
4994
|
+
"events": {
|
|
4995
|
+
"type": "object",
|
|
4996
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
4997
|
+
"propertyNames": {
|
|
4998
|
+
"$ref": "#/$defs/NativeEventName"
|
|
4999
|
+
},
|
|
5000
|
+
"additionalProperties": {
|
|
5001
|
+
"$ref": "#/$defs/EventBinding"
|
|
4281
5002
|
}
|
|
4282
5003
|
}
|
|
4283
5004
|
},
|
|
@@ -4328,24 +5049,34 @@
|
|
|
4328
5049
|
"type": "array",
|
|
4329
5050
|
"description": "The card's body content",
|
|
4330
5051
|
"items": {
|
|
4331
|
-
"$ref": "#/$defs/
|
|
5052
|
+
"$ref": "#/$defs/Child"
|
|
4332
5053
|
}
|
|
4333
5054
|
},
|
|
4334
5055
|
"header": {
|
|
4335
5056
|
"type": "array",
|
|
4336
5057
|
"description": "(Optional) Content in the card's header",
|
|
4337
5058
|
"items": {
|
|
4338
|
-
"$ref": "#/$defs/
|
|
5059
|
+
"$ref": "#/$defs/Child"
|
|
4339
5060
|
}
|
|
4340
5061
|
},
|
|
4341
5062
|
"footer": {
|
|
4342
5063
|
"type": "array",
|
|
4343
5064
|
"description": "(Optional) Content in the card's footer",
|
|
4344
5065
|
"items": {
|
|
4345
|
-
"$ref": "#/$defs/
|
|
5066
|
+
"$ref": "#/$defs/Child"
|
|
4346
5067
|
}
|
|
4347
5068
|
}
|
|
4348
5069
|
}
|
|
5070
|
+
},
|
|
5071
|
+
"events": {
|
|
5072
|
+
"type": "object",
|
|
5073
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5074
|
+
"propertyNames": {
|
|
5075
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5076
|
+
},
|
|
5077
|
+
"additionalProperties": {
|
|
5078
|
+
"$ref": "#/$defs/EventBinding"
|
|
5079
|
+
}
|
|
4349
5080
|
}
|
|
4350
5081
|
},
|
|
4351
5082
|
"additionalProperties": false,
|
|
@@ -4392,6 +5123,16 @@
|
|
|
4392
5123
|
"x-kind": "attribute"
|
|
4393
5124
|
}
|
|
4394
5125
|
}
|
|
5126
|
+
},
|
|
5127
|
+
"events": {
|
|
5128
|
+
"type": "object",
|
|
5129
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5130
|
+
"propertyNames": {
|
|
5131
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5132
|
+
},
|
|
5133
|
+
"additionalProperties": {
|
|
5134
|
+
"$ref": "#/$defs/EventBinding"
|
|
5135
|
+
}
|
|
4395
5136
|
}
|
|
4396
5137
|
},
|
|
4397
5138
|
"additionalProperties": false
|
|
@@ -4453,7 +5194,17 @@
|
|
|
4453
5194
|
"type": "array",
|
|
4454
5195
|
"description": "The grid items",
|
|
4455
5196
|
"items": {
|
|
4456
|
-
"$ref": "#/$defs/
|
|
5197
|
+
"$ref": "#/$defs/Child"
|
|
5198
|
+
}
|
|
5199
|
+
},
|
|
5200
|
+
"events": {
|
|
5201
|
+
"type": "object",
|
|
5202
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5203
|
+
"propertyNames": {
|
|
5204
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5205
|
+
},
|
|
5206
|
+
"additionalProperties": {
|
|
5207
|
+
"$ref": "#/$defs/EventBinding"
|
|
4457
5208
|
}
|
|
4458
5209
|
}
|
|
4459
5210
|
},
|
|
@@ -4481,7 +5232,17 @@
|
|
|
4481
5232
|
"type": "array",
|
|
4482
5233
|
"description": "The content of the grid item",
|
|
4483
5234
|
"items": {
|
|
4484
|
-
"$ref": "#/$defs/
|
|
5235
|
+
"$ref": "#/$defs/Child"
|
|
5236
|
+
}
|
|
5237
|
+
},
|
|
5238
|
+
"events": {
|
|
5239
|
+
"type": "object",
|
|
5240
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5241
|
+
"propertyNames": {
|
|
5242
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5243
|
+
},
|
|
5244
|
+
"additionalProperties": {
|
|
5245
|
+
"$ref": "#/$defs/EventBinding"
|
|
4485
5246
|
}
|
|
4486
5247
|
}
|
|
4487
5248
|
},
|
|
@@ -4540,7 +5301,17 @@
|
|
|
4540
5301
|
"type": "array",
|
|
4541
5302
|
"description": "The component content",
|
|
4542
5303
|
"items": {
|
|
4543
|
-
"$ref": "#/$defs/
|
|
5304
|
+
"$ref": "#/$defs/Child"
|
|
5305
|
+
}
|
|
5306
|
+
},
|
|
5307
|
+
"events": {
|
|
5308
|
+
"type": "object",
|
|
5309
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5310
|
+
"propertyNames": {
|
|
5311
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5312
|
+
},
|
|
5313
|
+
"additionalProperties": {
|
|
5314
|
+
"$ref": "#/$defs/EventBinding"
|
|
4544
5315
|
}
|
|
4545
5316
|
}
|
|
4546
5317
|
},
|
|
@@ -4575,7 +5346,17 @@
|
|
|
4575
5346
|
"type": "array",
|
|
4576
5347
|
"description": "The layout content",
|
|
4577
5348
|
"items": {
|
|
4578
|
-
"$ref": "#/$defs/
|
|
5349
|
+
"$ref": "#/$defs/Child"
|
|
5350
|
+
}
|
|
5351
|
+
},
|
|
5352
|
+
"events": {
|
|
5353
|
+
"type": "object",
|
|
5354
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5355
|
+
"propertyNames": {
|
|
5356
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5357
|
+
},
|
|
5358
|
+
"additionalProperties": {
|
|
5359
|
+
"$ref": "#/$defs/EventBinding"
|
|
4579
5360
|
}
|
|
4580
5361
|
}
|
|
4581
5362
|
},
|
|
@@ -4609,7 +5390,17 @@
|
|
|
4609
5390
|
"type": "array",
|
|
4610
5391
|
"description": "The contents of the layout container",
|
|
4611
5392
|
"items": {
|
|
4612
|
-
"$ref": "#/$defs/
|
|
5393
|
+
"$ref": "#/$defs/Child"
|
|
5394
|
+
}
|
|
5395
|
+
},
|
|
5396
|
+
"events": {
|
|
5397
|
+
"type": "object",
|
|
5398
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5399
|
+
"propertyNames": {
|
|
5400
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5401
|
+
},
|
|
5402
|
+
"additionalProperties": {
|
|
5403
|
+
"$ref": "#/$defs/EventBinding"
|
|
4613
5404
|
}
|
|
4614
5405
|
}
|
|
4615
5406
|
},
|
|
@@ -4650,7 +5441,17 @@
|
|
|
4650
5441
|
"type": "array",
|
|
4651
5442
|
"description": "The content of the layout section",
|
|
4652
5443
|
"items": {
|
|
4653
|
-
"$ref": "#/$defs/
|
|
5444
|
+
"$ref": "#/$defs/Child"
|
|
5445
|
+
}
|
|
5446
|
+
},
|
|
5447
|
+
"events": {
|
|
5448
|
+
"type": "object",
|
|
5449
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5450
|
+
"propertyNames": {
|
|
5451
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5452
|
+
},
|
|
5453
|
+
"additionalProperties": {
|
|
5454
|
+
"$ref": "#/$defs/EventBinding"
|
|
4654
5455
|
}
|
|
4655
5456
|
}
|
|
4656
5457
|
},
|
|
@@ -4678,7 +5479,17 @@
|
|
|
4678
5479
|
"type": "array",
|
|
4679
5480
|
"description": "The component content",
|
|
4680
5481
|
"items": {
|
|
4681
|
-
"$ref": "#/$defs/
|
|
5482
|
+
"$ref": "#/$defs/Child"
|
|
5483
|
+
}
|
|
5484
|
+
},
|
|
5485
|
+
"events": {
|
|
5486
|
+
"type": "object",
|
|
5487
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5488
|
+
"propertyNames": {
|
|
5489
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5490
|
+
},
|
|
5491
|
+
"additionalProperties": {
|
|
5492
|
+
"$ref": "#/$defs/EventBinding"
|
|
4682
5493
|
}
|
|
4683
5494
|
}
|
|
4684
5495
|
},
|
|
@@ -4712,7 +5523,17 @@
|
|
|
4712
5523
|
"type": "array",
|
|
4713
5524
|
"description": "The main content",
|
|
4714
5525
|
"items": {
|
|
4715
|
-
"$ref": "#/$defs/
|
|
5526
|
+
"$ref": "#/$defs/Child"
|
|
5527
|
+
}
|
|
5528
|
+
},
|
|
5529
|
+
"events": {
|
|
5530
|
+
"type": "object",
|
|
5531
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5532
|
+
"propertyNames": {
|
|
5533
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5534
|
+
},
|
|
5535
|
+
"additionalProperties": {
|
|
5536
|
+
"$ref": "#/$defs/EventBinding"
|
|
4716
5537
|
}
|
|
4717
5538
|
}
|
|
4718
5539
|
},
|
|
@@ -4751,17 +5572,27 @@
|
|
|
4751
5572
|
"type": "array",
|
|
4752
5573
|
"description": "The content of the section should go here.\nIt could be a cre8-text-passage, a cre8-card or any other block level html.",
|
|
4753
5574
|
"items": {
|
|
4754
|
-
"$ref": "#/$defs/
|
|
5575
|
+
"$ref": "#/$defs/Child"
|
|
4755
5576
|
}
|
|
4756
5577
|
},
|
|
4757
5578
|
"header": {
|
|
4758
5579
|
"type": "array",
|
|
4759
5580
|
"description": "Custom header content, rendered in place of the `headline` property",
|
|
4760
5581
|
"items": {
|
|
4761
|
-
"$ref": "#/$defs/
|
|
5582
|
+
"$ref": "#/$defs/Child"
|
|
4762
5583
|
}
|
|
4763
5584
|
}
|
|
4764
5585
|
}
|
|
5586
|
+
},
|
|
5587
|
+
"events": {
|
|
5588
|
+
"type": "object",
|
|
5589
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5590
|
+
"propertyNames": {
|
|
5591
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5592
|
+
},
|
|
5593
|
+
"additionalProperties": {
|
|
5594
|
+
"$ref": "#/$defs/EventBinding"
|
|
5595
|
+
}
|
|
4765
5596
|
}
|
|
4766
5597
|
},
|
|
4767
5598
|
"additionalProperties": false,
|
|
@@ -4813,7 +5644,17 @@
|
|
|
4813
5644
|
"type": "array",
|
|
4814
5645
|
"description": "The component content",
|
|
4815
5646
|
"items": {
|
|
4816
|
-
"$ref": "#/$defs/
|
|
5647
|
+
"$ref": "#/$defs/Child"
|
|
5648
|
+
}
|
|
5649
|
+
},
|
|
5650
|
+
"events": {
|
|
5651
|
+
"type": "object",
|
|
5652
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5653
|
+
"propertyNames": {
|
|
5654
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5655
|
+
},
|
|
5656
|
+
"additionalProperties": {
|
|
5657
|
+
"$ref": "#/$defs/EventBinding"
|
|
4817
5658
|
}
|
|
4818
5659
|
}
|
|
4819
5660
|
},
|
|
@@ -4853,17 +5694,27 @@
|
|
|
4853
5694
|
"type": "array",
|
|
4854
5695
|
"description": "The page header content",
|
|
4855
5696
|
"items": {
|
|
4856
|
-
"$ref": "#/$defs/
|
|
5697
|
+
"$ref": "#/$defs/Child"
|
|
4857
5698
|
}
|
|
4858
5699
|
},
|
|
4859
5700
|
"titleAfter": {
|
|
4860
5701
|
"type": "array",
|
|
4861
5702
|
"description": "Content rendered after the heading text, inside the title element",
|
|
4862
5703
|
"items": {
|
|
4863
|
-
"$ref": "#/$defs/
|
|
5704
|
+
"$ref": "#/$defs/Child"
|
|
4864
5705
|
}
|
|
4865
5706
|
}
|
|
4866
5707
|
}
|
|
5708
|
+
},
|
|
5709
|
+
"events": {
|
|
5710
|
+
"type": "object",
|
|
5711
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5712
|
+
"propertyNames": {
|
|
5713
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5714
|
+
},
|
|
5715
|
+
"additionalProperties": {
|
|
5716
|
+
"$ref": "#/$defs/EventBinding"
|
|
5717
|
+
}
|
|
4867
5718
|
}
|
|
4868
5719
|
},
|
|
4869
5720
|
"additionalProperties": false,
|
|
@@ -4916,6 +5767,16 @@
|
|
|
4916
5767
|
"x-kind": "property"
|
|
4917
5768
|
}
|
|
4918
5769
|
}
|
|
5770
|
+
},
|
|
5771
|
+
"events": {
|
|
5772
|
+
"type": "object",
|
|
5773
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5774
|
+
"propertyNames": {
|
|
5775
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5776
|
+
},
|
|
5777
|
+
"additionalProperties": {
|
|
5778
|
+
"$ref": "#/$defs/EventBinding"
|
|
5779
|
+
}
|
|
4919
5780
|
}
|
|
4920
5781
|
},
|
|
4921
5782
|
"additionalProperties": false
|
|
@@ -4948,7 +5809,17 @@
|
|
|
4948
5809
|
"type": "array",
|
|
4949
5810
|
"description": "The logo element",
|
|
4950
5811
|
"items": {
|
|
4951
|
-
"$ref": "#/$defs/
|
|
5812
|
+
"$ref": "#/$defs/Child"
|
|
5813
|
+
}
|
|
5814
|
+
},
|
|
5815
|
+
"events": {
|
|
5816
|
+
"type": "object",
|
|
5817
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5818
|
+
"propertyNames": {
|
|
5819
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5820
|
+
},
|
|
5821
|
+
"additionalProperties": {
|
|
5822
|
+
"$ref": "#/$defs/EventBinding"
|
|
4952
5823
|
}
|
|
4953
5824
|
}
|
|
4954
5825
|
},
|
|
@@ -5003,7 +5874,17 @@
|
|
|
5003
5874
|
"type": "array",
|
|
5004
5875
|
"description": "The component content",
|
|
5005
5876
|
"items": {
|
|
5006
|
-
"$ref": "#/$defs/
|
|
5877
|
+
"$ref": "#/$defs/Child"
|
|
5878
|
+
}
|
|
5879
|
+
},
|
|
5880
|
+
"events": {
|
|
5881
|
+
"type": "object",
|
|
5882
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5883
|
+
"propertyNames": {
|
|
5884
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5885
|
+
},
|
|
5886
|
+
"additionalProperties": {
|
|
5887
|
+
"$ref": "#/$defs/EventBinding"
|
|
5007
5888
|
}
|
|
5008
5889
|
}
|
|
5009
5890
|
},
|
|
@@ -5031,7 +5912,17 @@
|
|
|
5031
5912
|
"type": "array",
|
|
5032
5913
|
"description": "The component content, the expected slotted content is a Cre8 Link or a String for the \"terminal node\"",
|
|
5033
5914
|
"items": {
|
|
5034
|
-
"$ref": "#/$defs/
|
|
5915
|
+
"$ref": "#/$defs/Child"
|
|
5916
|
+
}
|
|
5917
|
+
},
|
|
5918
|
+
"events": {
|
|
5919
|
+
"type": "object",
|
|
5920
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5921
|
+
"propertyNames": {
|
|
5922
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5923
|
+
},
|
|
5924
|
+
"additionalProperties": {
|
|
5925
|
+
"$ref": "#/$defs/EventBinding"
|
|
5035
5926
|
}
|
|
5036
5927
|
}
|
|
5037
5928
|
},
|
|
@@ -5064,24 +5955,34 @@
|
|
|
5064
5955
|
"type": "array",
|
|
5065
5956
|
"description": "The footer content",
|
|
5066
5957
|
"items": {
|
|
5067
|
-
"$ref": "#/$defs/
|
|
5958
|
+
"$ref": "#/$defs/Child"
|
|
5068
5959
|
}
|
|
5069
5960
|
},
|
|
5070
5961
|
"top": {
|
|
5071
5962
|
"type": "array",
|
|
5072
5963
|
"description": "The top content (above the default slot)",
|
|
5073
5964
|
"items": {
|
|
5074
|
-
"$ref": "#/$defs/
|
|
5965
|
+
"$ref": "#/$defs/Child"
|
|
5075
5966
|
}
|
|
5076
5967
|
},
|
|
5077
5968
|
"bottom": {
|
|
5078
5969
|
"type": "array",
|
|
5079
5970
|
"description": "The bottom content (below the default slot)",
|
|
5080
5971
|
"items": {
|
|
5081
|
-
"$ref": "#/$defs/
|
|
5972
|
+
"$ref": "#/$defs/Child"
|
|
5082
5973
|
}
|
|
5083
5974
|
}
|
|
5084
5975
|
}
|
|
5976
|
+
},
|
|
5977
|
+
"events": {
|
|
5978
|
+
"type": "object",
|
|
5979
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
5980
|
+
"propertyNames": {
|
|
5981
|
+
"$ref": "#/$defs/NativeEventName"
|
|
5982
|
+
},
|
|
5983
|
+
"additionalProperties": {
|
|
5984
|
+
"$ref": "#/$defs/EventBinding"
|
|
5985
|
+
}
|
|
5085
5986
|
}
|
|
5086
5987
|
},
|
|
5087
5988
|
"additionalProperties": false,
|
|
@@ -5131,7 +6032,17 @@
|
|
|
5131
6032
|
"type": "array",
|
|
5132
6033
|
"description": "The primary navigation items",
|
|
5133
6034
|
"items": {
|
|
5134
|
-
"$ref": "#/$defs/
|
|
6035
|
+
"$ref": "#/$defs/Child"
|
|
6036
|
+
}
|
|
6037
|
+
},
|
|
6038
|
+
"events": {
|
|
6039
|
+
"type": "object",
|
|
6040
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6041
|
+
"propertyNames": {
|
|
6042
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6043
|
+
},
|
|
6044
|
+
"additionalProperties": {
|
|
6045
|
+
"$ref": "#/$defs/EventBinding"
|
|
5135
6046
|
}
|
|
5136
6047
|
}
|
|
5137
6048
|
},
|
|
@@ -5193,24 +6104,34 @@
|
|
|
5193
6104
|
"type": "array",
|
|
5194
6105
|
"description": "The label for the navigation item",
|
|
5195
6106
|
"items": {
|
|
5196
|
-
"$ref": "#/$defs/
|
|
6107
|
+
"$ref": "#/$defs/Child"
|
|
5197
6108
|
}
|
|
5198
6109
|
},
|
|
5199
6110
|
"itemBefore": {
|
|
5200
6111
|
"type": "array",
|
|
5201
6112
|
"description": "Content rendered before the item label, such as an icon",
|
|
5202
6113
|
"items": {
|
|
5203
|
-
"$ref": "#/$defs/
|
|
6114
|
+
"$ref": "#/$defs/Child"
|
|
5204
6115
|
}
|
|
5205
6116
|
},
|
|
5206
6117
|
"itemAfter": {
|
|
5207
6118
|
"type": "array",
|
|
5208
6119
|
"description": "Content rendered after the item label, such as an icon",
|
|
5209
6120
|
"items": {
|
|
5210
|
-
"$ref": "#/$defs/
|
|
6121
|
+
"$ref": "#/$defs/Child"
|
|
5211
6122
|
}
|
|
5212
6123
|
}
|
|
5213
6124
|
}
|
|
6125
|
+
},
|
|
6126
|
+
"events": {
|
|
6127
|
+
"type": "object",
|
|
6128
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6129
|
+
"propertyNames": {
|
|
6130
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6131
|
+
},
|
|
6132
|
+
"additionalProperties": {
|
|
6133
|
+
"$ref": "#/$defs/EventBinding"
|
|
6134
|
+
}
|
|
5214
6135
|
}
|
|
5215
6136
|
},
|
|
5216
6137
|
"additionalProperties": false,
|
|
@@ -5253,24 +6174,34 @@
|
|
|
5253
6174
|
"type": "array",
|
|
5254
6175
|
"description": "The header content",
|
|
5255
6176
|
"items": {
|
|
5256
|
-
"$ref": "#/$defs/
|
|
6177
|
+
"$ref": "#/$defs/Child"
|
|
5257
6178
|
}
|
|
5258
6179
|
},
|
|
5259
6180
|
"top": {
|
|
5260
6181
|
"type": "array",
|
|
5261
6182
|
"description": "Content rendered above the main header row",
|
|
5262
6183
|
"items": {
|
|
5263
|
-
"$ref": "#/$defs/
|
|
6184
|
+
"$ref": "#/$defs/Child"
|
|
5264
6185
|
}
|
|
5265
6186
|
},
|
|
5266
6187
|
"bottom": {
|
|
5267
6188
|
"type": "array",
|
|
5268
6189
|
"description": "Content rendered below the main header row",
|
|
5269
6190
|
"items": {
|
|
5270
|
-
"$ref": "#/$defs/
|
|
6191
|
+
"$ref": "#/$defs/Child"
|
|
5271
6192
|
}
|
|
5272
6193
|
}
|
|
5273
6194
|
}
|
|
6195
|
+
},
|
|
6196
|
+
"events": {
|
|
6197
|
+
"type": "object",
|
|
6198
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6199
|
+
"propertyNames": {
|
|
6200
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6201
|
+
},
|
|
6202
|
+
"additionalProperties": {
|
|
6203
|
+
"$ref": "#/$defs/EventBinding"
|
|
6204
|
+
}
|
|
5274
6205
|
}
|
|
5275
6206
|
},
|
|
5276
6207
|
"additionalProperties": false,
|
|
@@ -5390,17 +6321,27 @@
|
|
|
5390
6321
|
"type": "array",
|
|
5391
6322
|
"description": "The link text content",
|
|
5392
6323
|
"items": {
|
|
5393
|
-
"$ref": "#/$defs/
|
|
6324
|
+
"$ref": "#/$defs/Child"
|
|
5394
6325
|
}
|
|
5395
6326
|
},
|
|
5396
6327
|
"badge": {
|
|
5397
6328
|
"type": "array",
|
|
5398
6329
|
"description": "Container for an optional badge displayed alongside the link",
|
|
5399
6330
|
"items": {
|
|
5400
|
-
"$ref": "#/$defs/
|
|
6331
|
+
"$ref": "#/$defs/Child"
|
|
5401
6332
|
}
|
|
5402
6333
|
}
|
|
5403
6334
|
}
|
|
6335
|
+
},
|
|
6336
|
+
"events": {
|
|
6337
|
+
"type": "object",
|
|
6338
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6339
|
+
"propertyNames": {
|
|
6340
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6341
|
+
},
|
|
6342
|
+
"additionalProperties": {
|
|
6343
|
+
"$ref": "#/$defs/EventBinding"
|
|
6344
|
+
}
|
|
5404
6345
|
}
|
|
5405
6346
|
},
|
|
5406
6347
|
"additionalProperties": false,
|
|
@@ -5491,7 +6432,17 @@
|
|
|
5491
6432
|
"type": "array",
|
|
5492
6433
|
"description": "The link list items",
|
|
5493
6434
|
"items": {
|
|
5494
|
-
"$ref": "#/$defs/
|
|
6435
|
+
"$ref": "#/$defs/Child"
|
|
6436
|
+
}
|
|
6437
|
+
},
|
|
6438
|
+
"events": {
|
|
6439
|
+
"type": "object",
|
|
6440
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6441
|
+
"propertyNames": {
|
|
6442
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6443
|
+
},
|
|
6444
|
+
"additionalProperties": {
|
|
6445
|
+
"$ref": "#/$defs/EventBinding"
|
|
5495
6446
|
}
|
|
5496
6447
|
}
|
|
5497
6448
|
},
|
|
@@ -5540,24 +6491,34 @@
|
|
|
5540
6491
|
"type": "array",
|
|
5541
6492
|
"description": "The default slot to put badges or other Components",
|
|
5542
6493
|
"items": {
|
|
5543
|
-
"$ref": "#/$defs/
|
|
6494
|
+
"$ref": "#/$defs/Child"
|
|
5544
6495
|
}
|
|
5545
6496
|
},
|
|
5546
6497
|
"itemBefore": {
|
|
5547
6498
|
"type": "array",
|
|
5548
6499
|
"description": "Content rendered before the link text, such as an icon",
|
|
5549
6500
|
"items": {
|
|
5550
|
-
"$ref": "#/$defs/
|
|
6501
|
+
"$ref": "#/$defs/Child"
|
|
5551
6502
|
}
|
|
5552
6503
|
},
|
|
5553
6504
|
"itemAfter": {
|
|
5554
6505
|
"type": "array",
|
|
5555
6506
|
"description": "Content rendered after the link text, such as an icon",
|
|
5556
6507
|
"items": {
|
|
5557
|
-
"$ref": "#/$defs/
|
|
6508
|
+
"$ref": "#/$defs/Child"
|
|
5558
6509
|
}
|
|
5559
6510
|
}
|
|
5560
6511
|
}
|
|
6512
|
+
},
|
|
6513
|
+
"events": {
|
|
6514
|
+
"type": "object",
|
|
6515
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6516
|
+
"propertyNames": {
|
|
6517
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6518
|
+
},
|
|
6519
|
+
"additionalProperties": {
|
|
6520
|
+
"$ref": "#/$defs/EventBinding"
|
|
6521
|
+
}
|
|
5561
6522
|
}
|
|
5562
6523
|
},
|
|
5563
6524
|
"additionalProperties": false,
|
|
@@ -5589,7 +6550,17 @@
|
|
|
5589
6550
|
"type": "array",
|
|
5590
6551
|
"description": "The navigation container content",
|
|
5591
6552
|
"items": {
|
|
5592
|
-
"$ref": "#/$defs/
|
|
6553
|
+
"$ref": "#/$defs/Child"
|
|
6554
|
+
}
|
|
6555
|
+
},
|
|
6556
|
+
"events": {
|
|
6557
|
+
"type": "object",
|
|
6558
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6559
|
+
"propertyNames": {
|
|
6560
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6561
|
+
},
|
|
6562
|
+
"additionalProperties": {
|
|
6563
|
+
"$ref": "#/$defs/EventBinding"
|
|
5593
6564
|
}
|
|
5594
6565
|
}
|
|
5595
6566
|
},
|
|
@@ -5671,7 +6642,26 @@
|
|
|
5671
6642
|
"type": "array",
|
|
5672
6643
|
"description": "Optional content rendered alongside the pagination controls",
|
|
5673
6644
|
"items": {
|
|
5674
|
-
"$ref": "#/$defs/
|
|
6645
|
+
"$ref": "#/$defs/Child"
|
|
6646
|
+
}
|
|
6647
|
+
},
|
|
6648
|
+
"events": {
|
|
6649
|
+
"type": "object",
|
|
6650
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6651
|
+
"propertyNames": {
|
|
6652
|
+
"anyOf": [
|
|
6653
|
+
{
|
|
6654
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6655
|
+
},
|
|
6656
|
+
{
|
|
6657
|
+
"enum": [
|
|
6658
|
+
"pagination-change"
|
|
6659
|
+
]
|
|
6660
|
+
}
|
|
6661
|
+
]
|
|
6662
|
+
},
|
|
6663
|
+
"additionalProperties": {
|
|
6664
|
+
"$ref": "#/$defs/EventBinding"
|
|
5675
6665
|
}
|
|
5676
6666
|
}
|
|
5677
6667
|
},
|
|
@@ -5722,7 +6712,17 @@
|
|
|
5722
6712
|
"type": "array",
|
|
5723
6713
|
"description": "The primary navigation items",
|
|
5724
6714
|
"items": {
|
|
5725
|
-
"$ref": "#/$defs/
|
|
6715
|
+
"$ref": "#/$defs/Child"
|
|
6716
|
+
}
|
|
6717
|
+
},
|
|
6718
|
+
"events": {
|
|
6719
|
+
"type": "object",
|
|
6720
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6721
|
+
"propertyNames": {
|
|
6722
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6723
|
+
},
|
|
6724
|
+
"additionalProperties": {
|
|
6725
|
+
"$ref": "#/$defs/EventBinding"
|
|
5726
6726
|
}
|
|
5727
6727
|
}
|
|
5728
6728
|
},
|
|
@@ -5784,24 +6784,34 @@
|
|
|
5784
6784
|
"type": "array",
|
|
5785
6785
|
"description": "The label for the navigation item",
|
|
5786
6786
|
"items": {
|
|
5787
|
-
"$ref": "#/$defs/
|
|
6787
|
+
"$ref": "#/$defs/Child"
|
|
5788
6788
|
}
|
|
5789
6789
|
},
|
|
5790
6790
|
"itemBefore": {
|
|
5791
6791
|
"type": "array",
|
|
5792
6792
|
"description": "Content rendered before the item label, such as an icon",
|
|
5793
6793
|
"items": {
|
|
5794
|
-
"$ref": "#/$defs/
|
|
6794
|
+
"$ref": "#/$defs/Child"
|
|
5795
6795
|
}
|
|
5796
6796
|
},
|
|
5797
6797
|
"itemAfter": {
|
|
5798
6798
|
"type": "array",
|
|
5799
6799
|
"description": "Content rendered after the item label, such as an icon",
|
|
5800
6800
|
"items": {
|
|
5801
|
-
"$ref": "#/$defs/
|
|
6801
|
+
"$ref": "#/$defs/Child"
|
|
5802
6802
|
}
|
|
5803
6803
|
}
|
|
5804
6804
|
}
|
|
6805
|
+
},
|
|
6806
|
+
"events": {
|
|
6807
|
+
"type": "object",
|
|
6808
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6809
|
+
"propertyNames": {
|
|
6810
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6811
|
+
},
|
|
6812
|
+
"additionalProperties": {
|
|
6813
|
+
"$ref": "#/$defs/EventBinding"
|
|
6814
|
+
}
|
|
5805
6815
|
}
|
|
5806
6816
|
},
|
|
5807
6817
|
"additionalProperties": false,
|
|
@@ -5855,7 +6865,26 @@
|
|
|
5855
6865
|
"type": "array",
|
|
5856
6866
|
"description": "The component content",
|
|
5857
6867
|
"items": {
|
|
5858
|
-
"$ref": "#/$defs/
|
|
6868
|
+
"$ref": "#/$defs/Child"
|
|
6869
|
+
}
|
|
6870
|
+
},
|
|
6871
|
+
"events": {
|
|
6872
|
+
"type": "object",
|
|
6873
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6874
|
+
"propertyNames": {
|
|
6875
|
+
"anyOf": [
|
|
6876
|
+
{
|
|
6877
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6878
|
+
},
|
|
6879
|
+
{
|
|
6880
|
+
"enum": [
|
|
6881
|
+
"tab-select"
|
|
6882
|
+
]
|
|
6883
|
+
}
|
|
6884
|
+
]
|
|
6885
|
+
},
|
|
6886
|
+
"additionalProperties": {
|
|
6887
|
+
"$ref": "#/$defs/EventBinding"
|
|
5859
6888
|
}
|
|
5860
6889
|
}
|
|
5861
6890
|
},
|
|
@@ -5904,7 +6933,17 @@
|
|
|
5904
6933
|
"type": "array",
|
|
5905
6934
|
"description": "The component content",
|
|
5906
6935
|
"items": {
|
|
5907
|
-
"$ref": "#/$defs/
|
|
6936
|
+
"$ref": "#/$defs/Child"
|
|
6937
|
+
}
|
|
6938
|
+
},
|
|
6939
|
+
"events": {
|
|
6940
|
+
"type": "object",
|
|
6941
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
6942
|
+
"propertyNames": {
|
|
6943
|
+
"$ref": "#/$defs/NativeEventName"
|
|
6944
|
+
},
|
|
6945
|
+
"additionalProperties": {
|
|
6946
|
+
"$ref": "#/$defs/EventBinding"
|
|
5908
6947
|
}
|
|
5909
6948
|
}
|
|
5910
6949
|
},
|
|
@@ -6023,17 +7062,36 @@
|
|
|
6023
7062
|
"type": "array",
|
|
6024
7063
|
"description": "Default, unnamed slot container for each `cre8-tab` button",
|
|
6025
7064
|
"items": {
|
|
6026
|
-
"$ref": "#/$defs/
|
|
7065
|
+
"$ref": "#/$defs/Child"
|
|
6027
7066
|
}
|
|
6028
7067
|
},
|
|
6029
7068
|
"panel": {
|
|
6030
7069
|
"type": "array",
|
|
6031
7070
|
"description": "Container for each `cre8-tab-panel` content item",
|
|
6032
7071
|
"items": {
|
|
6033
|
-
"$ref": "#/$defs/
|
|
7072
|
+
"$ref": "#/$defs/Child"
|
|
6034
7073
|
}
|
|
6035
7074
|
}
|
|
6036
7075
|
}
|
|
7076
|
+
},
|
|
7077
|
+
"events": {
|
|
7078
|
+
"type": "object",
|
|
7079
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7080
|
+
"propertyNames": {
|
|
7081
|
+
"anyOf": [
|
|
7082
|
+
{
|
|
7083
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7084
|
+
},
|
|
7085
|
+
{
|
|
7086
|
+
"enum": [
|
|
7087
|
+
"tab-change"
|
|
7088
|
+
]
|
|
7089
|
+
}
|
|
7090
|
+
]
|
|
7091
|
+
},
|
|
7092
|
+
"additionalProperties": {
|
|
7093
|
+
"$ref": "#/$defs/EventBinding"
|
|
7094
|
+
}
|
|
6037
7095
|
}
|
|
6038
7096
|
},
|
|
6039
7097
|
"additionalProperties": false,
|
|
@@ -6081,7 +7139,17 @@
|
|
|
6081
7139
|
"type": "array",
|
|
6082
7140
|
"description": "The component content",
|
|
6083
7141
|
"items": {
|
|
6084
|
-
"$ref": "#/$defs/
|
|
7142
|
+
"$ref": "#/$defs/Child"
|
|
7143
|
+
}
|
|
7144
|
+
},
|
|
7145
|
+
"events": {
|
|
7146
|
+
"type": "object",
|
|
7147
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7148
|
+
"propertyNames": {
|
|
7149
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7150
|
+
},
|
|
7151
|
+
"additionalProperties": {
|
|
7152
|
+
"$ref": "#/$defs/EventBinding"
|
|
6085
7153
|
}
|
|
6086
7154
|
}
|
|
6087
7155
|
},
|
|
@@ -6120,7 +7188,17 @@
|
|
|
6120
7188
|
"type": "array",
|
|
6121
7189
|
"description": "The component content",
|
|
6122
7190
|
"items": {
|
|
6123
|
-
"$ref": "#/$defs/
|
|
7191
|
+
"$ref": "#/$defs/Child"
|
|
7192
|
+
}
|
|
7193
|
+
},
|
|
7194
|
+
"events": {
|
|
7195
|
+
"type": "object",
|
|
7196
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7197
|
+
"propertyNames": {
|
|
7198
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7199
|
+
},
|
|
7200
|
+
"additionalProperties": {
|
|
7201
|
+
"$ref": "#/$defs/EventBinding"
|
|
6124
7202
|
}
|
|
6125
7203
|
}
|
|
6126
7204
|
},
|
|
@@ -6160,7 +7238,17 @@
|
|
|
6160
7238
|
"type": "array",
|
|
6161
7239
|
"description": "The utility nav items",
|
|
6162
7240
|
"items": {
|
|
6163
|
-
"$ref": "#/$defs/
|
|
7241
|
+
"$ref": "#/$defs/Child"
|
|
7242
|
+
}
|
|
7243
|
+
},
|
|
7244
|
+
"events": {
|
|
7245
|
+
"type": "object",
|
|
7246
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7247
|
+
"propertyNames": {
|
|
7248
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7249
|
+
},
|
|
7250
|
+
"additionalProperties": {
|
|
7251
|
+
"$ref": "#/$defs/EventBinding"
|
|
6164
7252
|
}
|
|
6165
7253
|
}
|
|
6166
7254
|
},
|
|
@@ -6214,6 +7302,16 @@
|
|
|
6214
7302
|
"x-kind": "property"
|
|
6215
7303
|
}
|
|
6216
7304
|
}
|
|
7305
|
+
},
|
|
7306
|
+
"events": {
|
|
7307
|
+
"type": "object",
|
|
7308
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7309
|
+
"propertyNames": {
|
|
7310
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7311
|
+
},
|
|
7312
|
+
"additionalProperties": {
|
|
7313
|
+
"$ref": "#/$defs/EventBinding"
|
|
7314
|
+
}
|
|
6217
7315
|
}
|
|
6218
7316
|
},
|
|
6219
7317
|
"additionalProperties": false
|
|
@@ -6270,7 +7368,17 @@
|
|
|
6270
7368
|
"type": "array",
|
|
6271
7369
|
"description": "The Progress Steps Item components that represent the steps in the multistep process.",
|
|
6272
7370
|
"items": {
|
|
6273
|
-
"$ref": "#/$defs/
|
|
7371
|
+
"$ref": "#/$defs/Child"
|
|
7372
|
+
}
|
|
7373
|
+
},
|
|
7374
|
+
"events": {
|
|
7375
|
+
"type": "object",
|
|
7376
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7377
|
+
"propertyNames": {
|
|
7378
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7379
|
+
},
|
|
7380
|
+
"additionalProperties": {
|
|
7381
|
+
"$ref": "#/$defs/EventBinding"
|
|
6274
7382
|
}
|
|
6275
7383
|
}
|
|
6276
7384
|
},
|
|
@@ -6345,7 +7453,17 @@
|
|
|
6345
7453
|
"type": "array",
|
|
6346
7454
|
"description": "The heading text content",
|
|
6347
7455
|
"items": {
|
|
6348
|
-
"$ref": "#/$defs/
|
|
7456
|
+
"$ref": "#/$defs/Child"
|
|
7457
|
+
}
|
|
7458
|
+
},
|
|
7459
|
+
"events": {
|
|
7460
|
+
"type": "object",
|
|
7461
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7462
|
+
"propertyNames": {
|
|
7463
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7464
|
+
},
|
|
7465
|
+
"additionalProperties": {
|
|
7466
|
+
"$ref": "#/$defs/EventBinding"
|
|
6349
7467
|
}
|
|
6350
7468
|
}
|
|
6351
7469
|
},
|
|
@@ -6404,17 +7522,27 @@
|
|
|
6404
7522
|
"type": "array",
|
|
6405
7523
|
"description": "The component content",
|
|
6406
7524
|
"items": {
|
|
6407
|
-
"$ref": "#/$defs/
|
|
7525
|
+
"$ref": "#/$defs/Child"
|
|
6408
7526
|
}
|
|
6409
7527
|
},
|
|
6410
7528
|
"linkAfter": {
|
|
6411
7529
|
"type": "array",
|
|
6412
7530
|
"description": "Content rendered after the link text, such as an icon",
|
|
6413
7531
|
"items": {
|
|
6414
|
-
"$ref": "#/$defs/
|
|
7532
|
+
"$ref": "#/$defs/Child"
|
|
6415
7533
|
}
|
|
6416
7534
|
}
|
|
6417
7535
|
}
|
|
7536
|
+
},
|
|
7537
|
+
"events": {
|
|
7538
|
+
"type": "object",
|
|
7539
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7540
|
+
"propertyNames": {
|
|
7541
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7542
|
+
},
|
|
7543
|
+
"additionalProperties": {
|
|
7544
|
+
"$ref": "#/$defs/EventBinding"
|
|
7545
|
+
}
|
|
6418
7546
|
}
|
|
6419
7547
|
},
|
|
6420
7548
|
"additionalProperties": false,
|
|
@@ -6462,7 +7590,17 @@
|
|
|
6462
7590
|
"type": "array",
|
|
6463
7591
|
"description": "The component content",
|
|
6464
7592
|
"items": {
|
|
6465
|
-
"$ref": "#/$defs/
|
|
7593
|
+
"$ref": "#/$defs/Child"
|
|
7594
|
+
}
|
|
7595
|
+
},
|
|
7596
|
+
"events": {
|
|
7597
|
+
"type": "object",
|
|
7598
|
+
"description": "Event bindings. Each key is an event name; the value names the handler to emit.",
|
|
7599
|
+
"propertyNames": {
|
|
7600
|
+
"$ref": "#/$defs/NativeEventName"
|
|
7601
|
+
},
|
|
7602
|
+
"additionalProperties": {
|
|
7603
|
+
"$ref": "#/$defs/EventBinding"
|
|
6466
7604
|
}
|
|
6467
7605
|
}
|
|
6468
7606
|
},
|