@ui5/webcomponents-tools 1.21.0 → 1.22.0-rc.0

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,1354 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "definitions": {
4
+ "Attribute": {
5
+ "additionalProperties": false,
6
+ "properties": {
7
+ "default": {
8
+ "description": "The default value of the attribute, if any.\n\nAs attributes are always strings, this is the actual value, not a human\nreadable description.",
9
+ "type": "string"
10
+ },
11
+ "deprecated": {
12
+ "description": "Whether the attribute is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
13
+ "type": [
14
+ "string",
15
+ "boolean"
16
+ ]
17
+ },
18
+ "description": {
19
+ "description": "A markdown description.",
20
+ "type": "string"
21
+ },
22
+ "fieldName": {
23
+ "description": "The name of the field this attribute is associated with, if any.",
24
+ "type": "string"
25
+ },
26
+ "inheritedFrom": {
27
+ "$ref": "#/definitions/Reference"
28
+ },
29
+ "name": {
30
+ "type": "string"
31
+ },
32
+ "summary": {
33
+ "description": "A markdown summary suitable for display in a listing.",
34
+ "type": "string"
35
+ },
36
+ "type": {
37
+ "$ref": "#/definitions/Type",
38
+ "description": "The type that the attribute will be serialized/deserialized as."
39
+ }
40
+ },
41
+ "required": [
42
+ "name"
43
+ ],
44
+ "type": "object"
45
+ },
46
+ "ClassDeclaration": {
47
+ "additionalProperties": false,
48
+ "properties": {
49
+ "_ui5package": {
50
+ "type": "string"
51
+ },
52
+ "_ui5implements": {
53
+ "items": {
54
+ "$ref": "#/definitions/Reference"
55
+ },
56
+ "type": "array"
57
+ },
58
+ "_ui5privacy": {
59
+ "$ref": "#/definitions/Privacy"
60
+ },
61
+ "_ui5since": {
62
+ "description": "Marks when the field was",
63
+ "type": "string"
64
+ },
65
+ "deprecated": {
66
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
67
+ "type": [
68
+ "string",
69
+ "boolean"
70
+ ]
71
+ },
72
+ "description": {
73
+ "description": "A markdown description of the class.",
74
+ "type": "string"
75
+ },
76
+ "kind": {
77
+ "enum": [
78
+ "class"
79
+ ],
80
+ "type": "string"
81
+ },
82
+ "members": {
83
+ "items": {
84
+ "anyOf": [
85
+ {
86
+ "$ref": "#/definitions/ClassField"
87
+ },
88
+ {
89
+ "$ref": "#/definitions/ClassMethod"
90
+ }
91
+ ]
92
+ },
93
+ "type": "array"
94
+ },
95
+ "mixins": {
96
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
97
+ "items": {
98
+ "$ref": "#/definitions/Reference"
99
+ },
100
+ "type": "array"
101
+ },
102
+ "name": {
103
+ "type": "string"
104
+ },
105
+ "source": {
106
+ "$ref": "#/definitions/SourceReference"
107
+ },
108
+ "summary": {
109
+ "description": "A markdown summary suitable for display in a listing.",
110
+ "type": "string"
111
+ },
112
+ "superclass": {
113
+ "$ref": "#/definitions/Reference",
114
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
115
+ }
116
+ },
117
+ "required": [
118
+ "kind",
119
+ "name"
120
+ ],
121
+ "type": "object"
122
+ },
123
+ "EnumDeclaration": {
124
+ "additionalProperties": false,
125
+ "properties": {
126
+ "_ui5package": {
127
+ "type": "string"
128
+ },
129
+ "_ui5privacy": {
130
+ "$ref": "#/definitions/Privacy"
131
+ },
132
+ "_ui5since": {
133
+ "description": "Marks when the field was introduced",
134
+ "type": "string"
135
+ },
136
+ "deprecated": {
137
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
138
+ "type": [
139
+ "string",
140
+ "boolean"
141
+ ]
142
+ },
143
+ "description": {
144
+ "description": "A markdown description of the class.",
145
+ "type": "string"
146
+ },
147
+ "kind": {
148
+ "enum": [
149
+ "enum"
150
+ ],
151
+ "type": "string"
152
+ },
153
+ "members": {
154
+ "items": {
155
+ "$ref": "#/definitions/ClassField"
156
+ },
157
+ "type": "array"
158
+ },
159
+ "mixins": {
160
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
161
+ "items": {
162
+ "$ref": "#/definitions/Reference"
163
+ },
164
+ "type": "array"
165
+ },
166
+ "name": {
167
+ "type": "string"
168
+ },
169
+ "source": {
170
+ "$ref": "#/definitions/SourceReference"
171
+ },
172
+ "summary": {
173
+ "description": "A markdown summary suitable for display in a listing.",
174
+ "type": "string"
175
+ },
176
+ "superclass": {
177
+ "$ref": "#/definitions/Reference",
178
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
179
+ }
180
+ },
181
+ "required": [
182
+ "kind",
183
+ "name"
184
+ ],
185
+ "type": "object"
186
+ },
187
+ "InterfaceDeclaration": {
188
+ "additionalProperties": false,
189
+ "properties": {
190
+ "_ui5package": {
191
+ "type": "string"
192
+ },
193
+ "_ui5privacy": {
194
+ "$ref": "#/definitions/Privacy"
195
+ },
196
+ "_ui5since": {
197
+ "description": "Marks when the field was introduced",
198
+ "type": "string"
199
+ },
200
+ "deprecated": {
201
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
202
+ "type": [
203
+ "string",
204
+ "boolean"
205
+ ]
206
+ },
207
+ "description": {
208
+ "description": "A markdown description of the class.",
209
+ "type": "string"
210
+ },
211
+ "kind": {
212
+ "enum": [
213
+ "interface"
214
+ ],
215
+ "type": "string"
216
+ },
217
+ "mixins": {
218
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
219
+ "items": {
220
+ "$ref": "#/definitions/Reference"
221
+ },
222
+ "type": "array"
223
+ },
224
+ "name": {
225
+ "type": "string"
226
+ },
227
+ "source": {
228
+ "$ref": "#/definitions/SourceReference"
229
+ },
230
+ "summary": {
231
+ "description": "A markdown summary suitable for display in a listing.",
232
+ "type": "string"
233
+ },
234
+ "superclass": {
235
+ "$ref": "#/definitions/Reference",
236
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
237
+ }
238
+ },
239
+ "required": [
240
+ "kind",
241
+ "name"
242
+ ],
243
+ "type": "object"
244
+ },
245
+ "ClassField": {
246
+ "additionalProperties": false,
247
+ "properties": {
248
+ "_ui5validator": {
249
+ "type": "string"
250
+ },
251
+ "_ui5formProperty": {
252
+ "type": "boolean"
253
+ },
254
+ "_ui5formEvents": {
255
+ "type": "string"
256
+ },
257
+ "_ui5since": {
258
+ "description": "Marks when the field was introduced",
259
+ "type": "string"
260
+ },
261
+ "default": {
262
+ "type": "string"
263
+ },
264
+ "deprecated": {
265
+ "description": "Whether the property is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
266
+ "type": [
267
+ "string",
268
+ "boolean"
269
+ ]
270
+ },
271
+ "description": {
272
+ "description": "A markdown description of the field.",
273
+ "type": "string"
274
+ },
275
+ "inheritedFrom": {
276
+ "$ref": "#/definitions/Reference"
277
+ },
278
+ "kind": {
279
+ "enum": [
280
+ "field"
281
+ ],
282
+ "type": "string"
283
+ },
284
+ "name": {
285
+ "type": "string"
286
+ },
287
+ "privacy": {
288
+ "$ref": "#/definitions/Privacy"
289
+ },
290
+ "readonly": {
291
+ "description": "Whether the property is read-only.",
292
+ "type": "boolean"
293
+ },
294
+ "source": {
295
+ "$ref": "#/definitions/SourceReference"
296
+ },
297
+ "static": {
298
+ "type": "boolean"
299
+ },
300
+ "summary": {
301
+ "description": "A markdown summary suitable for display in a listing.",
302
+ "type": "string"
303
+ },
304
+ "type": {
305
+ "$ref": "#/definitions/Type"
306
+ }
307
+ },
308
+ "required": [
309
+ "kind",
310
+ "name"
311
+ ],
312
+ "type": "object"
313
+ },
314
+ "ClassMethod": {
315
+ "additionalProperties": false,
316
+ "properties": {
317
+ "_ui5since": {
318
+ "description": "Marks when the field was introduced",
319
+ "type": "string"
320
+ },
321
+ "deprecated": {
322
+ "description": "Whether the function is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
323
+ "type": [
324
+ "string",
325
+ "boolean"
326
+ ]
327
+ },
328
+ "description": {
329
+ "description": "A markdown description.",
330
+ "type": "string"
331
+ },
332
+ "inheritedFrom": {
333
+ "$ref": "#/definitions/Reference"
334
+ },
335
+ "kind": {
336
+ "enum": [
337
+ "method"
338
+ ],
339
+ "type": "string"
340
+ },
341
+ "name": {
342
+ "type": "string"
343
+ },
344
+ "parameters": {
345
+ "items": {
346
+ "$ref": "#/definitions/Parameter"
347
+ },
348
+ "type": "array"
349
+ },
350
+ "privacy": {
351
+ "$ref": "#/definitions/Privacy"
352
+ },
353
+ "return": {
354
+ "properties": {
355
+ "description": {
356
+ "description": "A markdown description.",
357
+ "type": "string"
358
+ },
359
+ "summary": {
360
+ "description": "A markdown summary suitable for display in a listing.",
361
+ "type": "string"
362
+ },
363
+ "type": {
364
+ "$ref": "#/definitions/Type"
365
+ }
366
+ },
367
+ "type": "object"
368
+ },
369
+ "source": {
370
+ "$ref": "#/definitions/SourceReference"
371
+ },
372
+ "static": {
373
+ "type": "boolean"
374
+ },
375
+ "summary": {
376
+ "description": "A markdown summary suitable for display in a listing.",
377
+ "type": "string"
378
+ }
379
+ },
380
+ "required": [
381
+ "kind",
382
+ "name"
383
+ ],
384
+ "type": "object"
385
+ },
386
+ "CssCustomProperty": {
387
+ "additionalProperties": false,
388
+ "properties": {
389
+ "default": {
390
+ "type": "string"
391
+ },
392
+ "deprecated": {
393
+ "description": "Whether the CSS custom property is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
394
+ "type": [
395
+ "string",
396
+ "boolean"
397
+ ]
398
+ },
399
+ "description": {
400
+ "description": "A markdown description.",
401
+ "type": "string"
402
+ },
403
+ "name": {
404
+ "description": "The name of the property, including leading `--`.",
405
+ "type": "string"
406
+ },
407
+ "summary": {
408
+ "description": "A markdown summary suitable for display in a listing.",
409
+ "type": "string"
410
+ },
411
+ "syntax": {
412
+ "description": "The expected syntax of the defined property. Defaults to \"*\".\n\nThe syntax must be a valid CSS [syntax string](https://developer.mozilla.org/en-US/docs/Web/CSS/@property/syntax)\nas defined in the CSS Properties and Values API.\n\nExamples:\n\n\"<color>\": accepts a color\n\"<length> | <percentage>\": accepts lengths or percentages but not calc expressions with a combination of the two\n\"small | medium | large\": accepts one of these values set as custom idents.\n\"*\": any valid token",
413
+ "type": "string"
414
+ }
415
+ },
416
+ "required": [
417
+ "name"
418
+ ],
419
+ "type": "object"
420
+ },
421
+ "CssPart": {
422
+ "additionalProperties": false,
423
+ "description": "The description of a CSS Part",
424
+ "properties": {
425
+ "deprecated": {
426
+ "description": "Whether the CSS shadow part is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
427
+ "type": [
428
+ "string",
429
+ "boolean"
430
+ ]
431
+ },
432
+ "description": {
433
+ "description": "A markdown description.",
434
+ "type": "string"
435
+ },
436
+ "name": {
437
+ "type": "string"
438
+ },
439
+ "summary": {
440
+ "description": "A markdown summary suitable for display in a listing.",
441
+ "type": "string"
442
+ }
443
+ },
444
+ "required": [
445
+ "name"
446
+ ],
447
+ "type": "object"
448
+ },
449
+ "CustomElementDeclaration": {
450
+ "additionalProperties": false,
451
+ "description": "A description of a custom element class.\n\nCustom elements are JavaScript classes, so this extends from\n`ClassDeclaration` and adds custom-element-specific features like\nattributes, events, and slots.\n\nNote that `tagName` in this interface is optional. Tag names are not\nneccessarily part of a custom element class, but belong to the definition\n(often called the \"registration\") or the `customElements.define()` call.\n\nBecause classes and tag names can only be registered once, there's a\none-to-one relationship between classes and tag names. For ease of use,\nwe allow the tag name here.\n\nSome packages define and register custom elements in separate modules. In\nthese cases one `Module` should contain the `CustomElement` without a\ntagName, and another `Module` should contain the\n`CustomElementExport`.",
452
+ "properties": {
453
+ "_ui5package": {
454
+ "type": "string"
455
+ },
456
+ "_ui5implements": {
457
+ "items": {
458
+ "$ref": "#/definitions/Reference"
459
+ },
460
+ "type": "array"
461
+ },
462
+ "_ui5abstract": {
463
+ "type": "boolean"
464
+ },
465
+ "_ui5privacy": {
466
+ "$ref": "#/definitions/Privacy"
467
+ },
468
+ "_ui5since": {
469
+ "description": "Marks when the field was introduced",
470
+ "type": "string"
471
+ },
472
+ "attributes": {
473
+ "description": "The attributes that this element is known to understand.",
474
+ "items": {
475
+ "$ref": "#/definitions/Attribute"
476
+ },
477
+ "type": "array"
478
+ },
479
+ "cssParts": {
480
+ "items": {
481
+ "$ref": "#/definitions/CssPart"
482
+ },
483
+ "type": "array"
484
+ },
485
+ "cssProperties": {
486
+ "items": {
487
+ "$ref": "#/definitions/CssCustomProperty"
488
+ },
489
+ "type": "array"
490
+ },
491
+ "customElement": {
492
+ "description": "Distinguishes a regular JavaScript class from a\ncustom element class",
493
+ "enum": [
494
+ true
495
+ ],
496
+ "type": "boolean"
497
+ },
498
+ "demos": {
499
+ "items": {
500
+ "$ref": "#/definitions/Demo"
501
+ },
502
+ "type": "array"
503
+ },
504
+ "deprecated": {
505
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
506
+ "type": [
507
+ "string",
508
+ "boolean"
509
+ ]
510
+ },
511
+ "description": {
512
+ "description": "A markdown description of the class.",
513
+ "type": "string"
514
+ },
515
+ "events": {
516
+ "description": "The events that this element fires.",
517
+ "items": {
518
+ "$ref": "#/definitions/Event"
519
+ },
520
+ "type": "array"
521
+ },
522
+ "kind": {
523
+ "enum": [
524
+ "class"
525
+ ],
526
+ "type": "string"
527
+ },
528
+ "members": {
529
+ "items": {
530
+ "anyOf": [
531
+ {
532
+ "$ref": "#/definitions/ClassField"
533
+ },
534
+ {
535
+ "$ref": "#/definitions/ClassMethod"
536
+ }
537
+ ]
538
+ },
539
+ "type": "array"
540
+ },
541
+ "mixins": {
542
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
543
+ "items": {
544
+ "$ref": "#/definitions/Reference"
545
+ },
546
+ "type": "array"
547
+ },
548
+ "name": {
549
+ "type": "string"
550
+ },
551
+ "slots": {
552
+ "description": "The shadow dom content slots that this element accepts.",
553
+ "items": {
554
+ "$ref": "#/definitions/Slot"
555
+ },
556
+ "type": "array"
557
+ },
558
+ "source": {
559
+ "$ref": "#/definitions/SourceReference"
560
+ },
561
+ "summary": {
562
+ "description": "A markdown summary suitable for display in a listing.",
563
+ "type": "string"
564
+ },
565
+ "superclass": {
566
+ "$ref": "#/definitions/Reference",
567
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
568
+ },
569
+ "tagName": {
570
+ "description": "An optional tag name that should be specified if this is a\nself-registering element.\n\nSelf-registering elements must also include a CustomElementExport\nin the module's exports.",
571
+ "type": "string"
572
+ }
573
+ },
574
+ "required": [
575
+ "customElement",
576
+ "kind",
577
+ "name"
578
+ ],
579
+ "type": "object"
580
+ },
581
+ "CustomElementExport": {
582
+ "additionalProperties": false,
583
+ "description": "A global custom element defintion, ie the result of a\n`customElements.define()` call.\n\nThis is represented as an export because a definition makes the element\navailable outside of the module it's defined it.",
584
+ "properties": {
585
+ "declaration": {
586
+ "$ref": "#/definitions/Reference",
587
+ "description": "A reference to the class or other declaration that implements the\ncustom element."
588
+ },
589
+ "deprecated": {
590
+ "description": "Whether the custom-element export is deprecated.\nFor example, a future version will not register the custom element in this file.\nIf the value is a string, it's the reason for the deprecation.",
591
+ "type": [
592
+ "string",
593
+ "boolean"
594
+ ]
595
+ },
596
+ "kind": {
597
+ "enum": [
598
+ "custom-element-definition"
599
+ ],
600
+ "type": "string"
601
+ },
602
+ "name": {
603
+ "description": "The tag name of the custom element.",
604
+ "type": "string"
605
+ }
606
+ },
607
+ "required": [
608
+ "declaration",
609
+ "kind",
610
+ "name"
611
+ ],
612
+ "type": "object"
613
+ },
614
+ "CustomElementMixinDeclaration": {
615
+ "additionalProperties": false,
616
+ "description": "A class mixin that also adds custom element related properties.",
617
+ "properties": {
618
+ "_ui5package": {
619
+ "type": "string"
620
+ },
621
+ "attributes": {
622
+ "description": "The attributes that this element is known to understand.",
623
+ "items": {
624
+ "$ref": "#/definitions/Attribute"
625
+ },
626
+ "type": "array"
627
+ },
628
+ "cssParts": {
629
+ "items": {
630
+ "$ref": "#/definitions/CssPart"
631
+ },
632
+ "type": "array"
633
+ },
634
+ "cssProperties": {
635
+ "items": {
636
+ "$ref": "#/definitions/CssCustomProperty"
637
+ },
638
+ "type": "array"
639
+ },
640
+ "customElement": {
641
+ "description": "Distinguishes a regular JavaScript class from a\ncustom element class",
642
+ "enum": [
643
+ true
644
+ ],
645
+ "type": "boolean"
646
+ },
647
+ "demos": {
648
+ "items": {
649
+ "$ref": "#/definitions/Demo"
650
+ },
651
+ "type": "array"
652
+ },
653
+ "deprecated": {
654
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
655
+ "type": [
656
+ "string",
657
+ "boolean"
658
+ ]
659
+ },
660
+ "description": {
661
+ "description": "A markdown description of the class.",
662
+ "type": "string"
663
+ },
664
+ "events": {
665
+ "description": "The events that this element fires.",
666
+ "items": {
667
+ "$ref": "#/definitions/Event"
668
+ },
669
+ "type": "array"
670
+ },
671
+ "kind": {
672
+ "enum": [
673
+ "mixin"
674
+ ],
675
+ "type": "string"
676
+ },
677
+ "members": {
678
+ "items": {
679
+ "anyOf": [
680
+ {
681
+ "$ref": "#/definitions/ClassField"
682
+ },
683
+ {
684
+ "$ref": "#/definitions/ClassMethod"
685
+ }
686
+ ]
687
+ },
688
+ "type": "array"
689
+ },
690
+ "mixins": {
691
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
692
+ "items": {
693
+ "$ref": "#/definitions/Reference"
694
+ },
695
+ "type": "array"
696
+ },
697
+ "name": {
698
+ "type": "string"
699
+ },
700
+ "parameters": {
701
+ "items": {
702
+ "$ref": "#/definitions/Parameter"
703
+ },
704
+ "type": "array"
705
+ },
706
+ "return": {
707
+ "properties": {
708
+ "description": {
709
+ "description": "A markdown description.",
710
+ "type": "string"
711
+ },
712
+ "summary": {
713
+ "description": "A markdown summary suitable for display in a listing.",
714
+ "type": "string"
715
+ },
716
+ "type": {
717
+ "$ref": "#/definitions/Type"
718
+ }
719
+ },
720
+ "type": "object"
721
+ },
722
+ "slots": {
723
+ "description": "The shadow dom content slots that this element accepts.",
724
+ "items": {
725
+ "$ref": "#/definitions/Slot"
726
+ },
727
+ "type": "array"
728
+ },
729
+ "source": {
730
+ "$ref": "#/definitions/SourceReference"
731
+ },
732
+ "summary": {
733
+ "description": "A markdown summary suitable for display in a listing.",
734
+ "type": "string"
735
+ },
736
+ "superclass": {
737
+ "$ref": "#/definitions/Reference",
738
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
739
+ },
740
+ "tagName": {
741
+ "description": "An optional tag name that should be specified if this is a\nself-registering element.\n\nSelf-registering elements must also include a CustomElementExport\nin the module's exports.",
742
+ "type": "string"
743
+ }
744
+ },
745
+ "required": [
746
+ "customElement",
747
+ "kind",
748
+ "name"
749
+ ],
750
+ "type": "object"
751
+ },
752
+ "Demo": {
753
+ "additionalProperties": false,
754
+ "properties": {
755
+ "description": {
756
+ "description": "A markdown description of the demo.",
757
+ "type": "string"
758
+ },
759
+ "source": {
760
+ "$ref": "#/definitions/SourceReference"
761
+ },
762
+ "url": {
763
+ "description": "Relative URL of the demo if it's published with the package. Absolute URL\nif it's hosted.",
764
+ "type": "string"
765
+ }
766
+ },
767
+ "required": [
768
+ "url"
769
+ ],
770
+ "type": "object"
771
+ },
772
+ "Event": {
773
+ "additionalProperties": false,
774
+ "properties": {
775
+ "_ui5parameters": {
776
+ "items": {
777
+ "$ref": "#/definitions/Parameter"
778
+ },
779
+ "type": "array"
780
+ },
781
+ "_ui5privacy": {
782
+ "$ref": "#/definitions/Privacy"
783
+ },
784
+ "_ui5allowPreventDefault": {
785
+ "description": "Whether the parameter is optional. Undefined implies non-optional.",
786
+ "type": "boolean"
787
+ },
788
+ "_ui5since": {
789
+ "description": "Marks when the field was introduced",
790
+ "type": "string"
791
+ },
792
+ "deprecated": {
793
+ "description": "Whether the event is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
794
+ "type": [
795
+ "string",
796
+ "boolean"
797
+ ]
798
+ },
799
+ "description": {
800
+ "description": "A markdown description.",
801
+ "type": "string"
802
+ },
803
+ "inheritedFrom": {
804
+ "$ref": "#/definitions/Reference"
805
+ },
806
+ "name": {
807
+ "type": "string"
808
+ },
809
+ "summary": {
810
+ "description": "A markdown summary suitable for display in a listing.",
811
+ "type": "string"
812
+ },
813
+ "type": {
814
+ "$ref": "#/definitions/Type",
815
+ "description": "The type of the event object that's fired."
816
+ }
817
+ },
818
+ "required": [
819
+ "name",
820
+ "type"
821
+ ],
822
+ "type": "object"
823
+ },
824
+ "FunctionDeclaration": {
825
+ "additionalProperties": false,
826
+ "properties": {
827
+ "_ui5package": {
828
+ "type": "string"
829
+ },
830
+ "_ui5since": {
831
+ "description": "Marks when the field was introduced",
832
+ "type": "string"
833
+ },
834
+ "deprecated": {
835
+ "description": "Whether the function is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
836
+ "type": [
837
+ "string",
838
+ "boolean"
839
+ ]
840
+ },
841
+ "description": {
842
+ "description": "A markdown description.",
843
+ "type": "string"
844
+ },
845
+ "kind": {
846
+ "enum": [
847
+ "function"
848
+ ],
849
+ "type": "string"
850
+ },
851
+ "name": {
852
+ "type": "string"
853
+ },
854
+ "parameters": {
855
+ "items": {
856
+ "$ref": "#/definitions/Parameter"
857
+ },
858
+ "type": "array"
859
+ },
860
+ "return": {
861
+ "properties": {
862
+ "description": {
863
+ "description": "A markdown description.",
864
+ "type": "string"
865
+ },
866
+ "summary": {
867
+ "description": "A markdown summary suitable for display in a listing.",
868
+ "type": "string"
869
+ },
870
+ "type": {
871
+ "$ref": "#/definitions/Type"
872
+ }
873
+ },
874
+ "type": "object"
875
+ },
876
+ "source": {
877
+ "$ref": "#/definitions/SourceReference"
878
+ },
879
+ "summary": {
880
+ "description": "A markdown summary suitable for display in a listing.",
881
+ "type": "string"
882
+ }
883
+ },
884
+ "required": [
885
+ "kind",
886
+ "name"
887
+ ],
888
+ "type": "object"
889
+ },
890
+ "JavaScriptExport": {
891
+ "additionalProperties": false,
892
+ "properties": {
893
+ "declaration": {
894
+ "$ref": "#/definitions/Reference",
895
+ "description": "A reference to the exported declaration.\n\nIn the case of aggregating exports, the reference's `module` field must be\ndefined and the `name` field must be `\"*\"`."
896
+ },
897
+ "deprecated": {
898
+ "description": "Whether the export is deprecated. For example, the name of the export was changed.\nIf the value is a string, it's the reason for the deprecation.",
899
+ "type": [
900
+ "string",
901
+ "boolean"
902
+ ]
903
+ },
904
+ "kind": {
905
+ "enum": [
906
+ "js"
907
+ ],
908
+ "type": "string"
909
+ },
910
+ "name": {
911
+ "description": "The name of the exported symbol.\n\nJavaScript has a number of ways to export objects which determine the\ncorrect name to use.\n\n- Default exports must use the name \"default\".\n- Named exports use the name that is exported. If the export is renamed\n with the \"as\" clause, use the exported name.\n- Aggregating exports (`* from`) should use the name `*`",
912
+ "type": "string"
913
+ }
914
+ },
915
+ "required": [
916
+ "declaration",
917
+ "kind",
918
+ "name"
919
+ ],
920
+ "type": "object"
921
+ },
922
+ "JavaScriptModule": {
923
+ "additionalProperties": false,
924
+ "properties": {
925
+ "declarations": {
926
+ "description": "The declarations of a module.\n\nFor documentation purposes, all declarations that are reachable from\nexports should be described here. Ie, functions and objects that may be\nproperties of exported objects, or passed as arguments to functions.",
927
+ "items": {
928
+ "anyOf": [
929
+ {
930
+ "$ref": "#/definitions/ClassDeclaration"
931
+ },
932
+ {
933
+ "$ref": "#/definitions/EnumDeclaration"
934
+ },
935
+ {
936
+ "$ref": "#/definitions/InterfaceDeclaration"
937
+ },
938
+ {
939
+ "$ref": "#/definitions/FunctionDeclaration"
940
+ },
941
+ {
942
+ "$ref": "#/definitions/MixinDeclaration"
943
+ },
944
+ {
945
+ "$ref": "#/definitions/VariableDeclaration"
946
+ },
947
+ {
948
+ "$ref": "#/definitions/CustomElementDeclaration"
949
+ },
950
+ {
951
+ "$ref": "#/definitions/CustomElementMixinDeclaration"
952
+ }
953
+ ]
954
+ },
955
+ "type": "array"
956
+ },
957
+ "deprecated": {
958
+ "description": "Whether the module is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
959
+ "type": [
960
+ "string",
961
+ "boolean"
962
+ ]
963
+ },
964
+ "description": {
965
+ "description": "A markdown description of the module.",
966
+ "type": "string"
967
+ },
968
+ "exports": {
969
+ "description": "The exports of a module. This includes JavaScript exports and\ncustom element definitions.",
970
+ "items": {
971
+ "anyOf": [
972
+ {
973
+ "$ref": "#/definitions/JavaScriptExport"
974
+ },
975
+ {
976
+ "$ref": "#/definitions/CustomElementExport"
977
+ }
978
+ ]
979
+ },
980
+ "type": "array"
981
+ },
982
+ "kind": {
983
+ "enum": [
984
+ "javascript-module"
985
+ ],
986
+ "type": "string"
987
+ },
988
+ "path": {
989
+ "description": "Path to the javascript file needed to be imported. \n(not the path for example to a typescript file.)",
990
+ "type": "string"
991
+ },
992
+ "summary": {
993
+ "description": "A markdown summary suitable for display in a listing.",
994
+ "type": "string"
995
+ }
996
+ },
997
+ "required": [
998
+ "kind",
999
+ "path"
1000
+ ],
1001
+ "type": "object"
1002
+ },
1003
+ "MixinDeclaration": {
1004
+ "additionalProperties": false,
1005
+ "description": "A description of a class mixin.\n\nMixins are functions which generate a new subclass of a given superclass.\nThis interfaces describes the class and custom element features that\nare added by the mixin. As such, it extends the CustomElement interface and\nClassLike interface.\n\nSince mixins are functions, it also extends the FunctionLike interface. This\nmeans a mixin is callable, and has parameters and a return type.\n\nThe return type is often hard or impossible to accurately describe in type\nsystems like TypeScript. It requires generics and an `extends` operator\nthat TypeScript lacks. Therefore it's recommended that the return type is\nleft empty. The most common form of a mixin function takes a single\nargument, so consumers of this interface should assume that the return type\nis the single argument subclassed by this declaration.\n\nA mixin should not have a superclass. If a mixins composes other mixins,\nthey should be listed in the `mixins` field.\n\nSee [this article]{@link https://justinfagnani.com/2015/12/21/real-mixins-with-javascript-classes/}\nfor more information on the classmixin pattern in JavaScript.",
1006
+ "properties": {
1007
+ "_ui5package": {
1008
+ "type": "string"
1009
+ },
1010
+ "deprecated": {
1011
+ "description": "Whether the class or mixin is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
1012
+ "type": [
1013
+ "string",
1014
+ "boolean"
1015
+ ]
1016
+ },
1017
+ "description": {
1018
+ "description": "A markdown description of the class.",
1019
+ "type": "string"
1020
+ },
1021
+ "kind": {
1022
+ "enum": [
1023
+ "mixin"
1024
+ ],
1025
+ "type": "string"
1026
+ },
1027
+ "members": {
1028
+ "items": {
1029
+ "anyOf": [
1030
+ {
1031
+ "$ref": "#/definitions/ClassField"
1032
+ },
1033
+ {
1034
+ "$ref": "#/definitions/ClassMethod"
1035
+ }
1036
+ ]
1037
+ },
1038
+ "type": "array"
1039
+ },
1040
+ "mixins": {
1041
+ "description": "Any class mixins applied in the extends clause of this class.\n\nIf mixins are applied in the class definition, then the true superclass\nof this class is the result of applying mixins in order to the superclass.\n\nMixins must be listed in order of their application to the superclass or\nprevious mixin application. This means that the innermost mixin is listed\nfirst. This may read backwards from the common order in JavaScript, but\nmatches the order of language used to describe mixin application, like\n\"S with A, B\".",
1042
+ "items": {
1043
+ "$ref": "#/definitions/Reference"
1044
+ },
1045
+ "type": "array"
1046
+ },
1047
+ "name": {
1048
+ "type": "string"
1049
+ },
1050
+ "parameters": {
1051
+ "items": {
1052
+ "$ref": "#/definitions/Parameter"
1053
+ },
1054
+ "type": "array"
1055
+ },
1056
+ "return": {
1057
+ "properties": {
1058
+ "description": {
1059
+ "description": "A markdown description.",
1060
+ "type": "string"
1061
+ },
1062
+ "summary": {
1063
+ "description": "A markdown summary suitable for display in a listing.",
1064
+ "type": "string"
1065
+ },
1066
+ "type": {
1067
+ "$ref": "#/definitions/Type"
1068
+ }
1069
+ },
1070
+ "type": "object"
1071
+ },
1072
+ "source": {
1073
+ "$ref": "#/definitions/SourceReference"
1074
+ },
1075
+ "summary": {
1076
+ "description": "A markdown summary suitable for display in a listing.",
1077
+ "type": "string"
1078
+ },
1079
+ "superclass": {
1080
+ "$ref": "#/definitions/Reference",
1081
+ "description": "The superclass of this class.\n\nIf this class is defined with mixin applications, the prototype chain\nincludes the mixin applications and the true superclass is computed\nfrom them."
1082
+ }
1083
+ },
1084
+ "required": [
1085
+ "kind",
1086
+ "name"
1087
+ ],
1088
+ "type": "object"
1089
+ },
1090
+ "Parameter": {
1091
+ "additionalProperties": false,
1092
+ "properties": {
1093
+ "_ui5privacy": {
1094
+ "$ref": "#/definitions/Privacy"
1095
+ },
1096
+ "_ui5since": {
1097
+ "description": "Marks when the field was introduced",
1098
+ "type": "string"
1099
+ },
1100
+ "default": {
1101
+ "type": "string"
1102
+ },
1103
+ "deprecated": {
1104
+ "description": "Whether the property is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
1105
+ "type": [
1106
+ "string",
1107
+ "boolean"
1108
+ ]
1109
+ },
1110
+ "description": {
1111
+ "description": "A markdown description of the field.",
1112
+ "type": "string"
1113
+ },
1114
+ "name": {
1115
+ "type": "string"
1116
+ },
1117
+ "optional": {
1118
+ "description": "Whether the parameter is optional. Undefined implies non-optional.",
1119
+ "type": "boolean"
1120
+ },
1121
+ "readonly": {
1122
+ "description": "Whether the property is read-only.",
1123
+ "type": "boolean"
1124
+ },
1125
+ "rest": {
1126
+ "description": "Whether the parameter is a rest parameter. Only the last parameter may be a rest parameter.\nUndefined implies single parameter.",
1127
+ "type": "boolean"
1128
+ },
1129
+ "summary": {
1130
+ "description": "A markdown summary suitable for display in a listing.",
1131
+ "type": "string"
1132
+ },
1133
+ "type": {
1134
+ "$ref": "#/definitions/Type"
1135
+ }
1136
+ },
1137
+ "required": [
1138
+ "name"
1139
+ ],
1140
+ "type": "object"
1141
+ },
1142
+ "Privacy": {
1143
+ "enum": [
1144
+ "private",
1145
+ "protected",
1146
+ "public"
1147
+ ],
1148
+ "type": "string"
1149
+ },
1150
+ "Reference": {
1151
+ "additionalProperties": false,
1152
+ "description": "A reference to an export of a module.\n\nAll references are required to be publically accessible, so the canonical\nrepresentation of a reference is the export it's available from.\n\n`package` should generally refer to an npm package name. If `package` is\nundefined then the reference is local to this package. If `module` is\nundefined the reference is local to the containing module.\n\nReferences to global symbols like `Array`, `HTMLElement`, or `Event` should\nuse a `package` name of `\"global:\"`.",
1153
+ "properties": {
1154
+ "module": {
1155
+ "type": "string"
1156
+ },
1157
+ "name": {
1158
+ "type": "string"
1159
+ },
1160
+ "package": {
1161
+ "type": "string"
1162
+ }
1163
+ },
1164
+ "required": [
1165
+ "name"
1166
+ ],
1167
+ "type": "object"
1168
+ },
1169
+ "Slot": {
1170
+ "additionalProperties": false,
1171
+ "properties": {
1172
+ "_ui5propertyName": {
1173
+ "type": "string"
1174
+ },
1175
+ "_ui5type": {
1176
+ "$ref": "#/definitions/Type"
1177
+ },
1178
+ "_ui5privacy": {
1179
+ "$ref": "#/definitions/Privacy"
1180
+ },
1181
+ "_ui5since": {
1182
+ "description": "Marks when the field was introduced",
1183
+ "type": "string"
1184
+ },
1185
+ "deprecated": {
1186
+ "description": "Whether the slot is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
1187
+ "type": [
1188
+ "string",
1189
+ "boolean"
1190
+ ]
1191
+ },
1192
+ "description": {
1193
+ "description": "A markdown description.",
1194
+ "type": "string"
1195
+ },
1196
+ "name": {
1197
+ "description": "The slot name, or the empty string for an unnamed slot.",
1198
+ "type": "string"
1199
+ },
1200
+ "summary": {
1201
+ "description": "A markdown summary suitable for display in a listing.",
1202
+ "type": "string"
1203
+ }
1204
+ },
1205
+ "required": [
1206
+ "name"
1207
+ ],
1208
+ "type": "object"
1209
+ },
1210
+ "SourceReference": {
1211
+ "additionalProperties": false,
1212
+ "description": "A reference to the source of a declaration or member.",
1213
+ "properties": {
1214
+ "href": {
1215
+ "description": "An absolute URL to the source (ie. a GitHub URL).",
1216
+ "type": "string"
1217
+ }
1218
+ },
1219
+ "required": [
1220
+ "href"
1221
+ ],
1222
+ "type": "object"
1223
+ },
1224
+ "Type": {
1225
+ "additionalProperties": false,
1226
+ "properties": {
1227
+ "references": {
1228
+ "description": "An array of references to the types in the type string.\n\nThese references have optional indices into the type string so that tools\ncan understand the references in the type string independently of the type\nsystem and syntax. For example, a documentation viewer could display the\ntype `Array<FooElement | BarElement>` with cross-references to `FooElement`\nand `BarElement` without understanding arrays, generics, or union types.",
1229
+ "items": {
1230
+ "$ref": "#/definitions/TypeReference"
1231
+ },
1232
+ "type": "array"
1233
+ },
1234
+ "source": {
1235
+ "$ref": "#/definitions/SourceReference"
1236
+ },
1237
+ "text": {
1238
+ "description": "The full string representation of the type, in whatever type syntax is\nused, such as JSDoc, Closure, or TypeScript.",
1239
+ "type": "string"
1240
+ }
1241
+ },
1242
+ "required": [
1243
+ "text"
1244
+ ],
1245
+ "type": "object"
1246
+ },
1247
+ "TypeReference": {
1248
+ "additionalProperties": false,
1249
+ "description": "A reference that is associated with a type string and optionally a range\nwithin the string.\n\nStart and end must both be present or not present. If they're present, they\nare indices into the associated type string. If they are missing, the entire\ntype string is the symbol referenced and the name should match the type\nstring.",
1250
+ "properties": {
1251
+ "end": {
1252
+ "type": "number"
1253
+ },
1254
+ "module": {
1255
+ "type": "string"
1256
+ },
1257
+ "name": {
1258
+ "type": "string"
1259
+ },
1260
+ "package": {
1261
+ "type": "string"
1262
+ },
1263
+ "start": {
1264
+ "type": "number"
1265
+ }
1266
+ },
1267
+ "required": [
1268
+ "name"
1269
+ ],
1270
+ "type": "object"
1271
+ },
1272
+ "VariableDeclaration": {
1273
+ "additionalProperties": false,
1274
+ "properties": {
1275
+ "_ui5package": {
1276
+ "type": "string"
1277
+ },
1278
+ "default": {
1279
+ "type": "string"
1280
+ },
1281
+ "deprecated": {
1282
+ "description": "Whether the property is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
1283
+ "type": [
1284
+ "string",
1285
+ "boolean"
1286
+ ]
1287
+ },
1288
+ "description": {
1289
+ "description": "A markdown description of the field.",
1290
+ "type": "string"
1291
+ },
1292
+ "kind": {
1293
+ "enum": [
1294
+ "variable"
1295
+ ],
1296
+ "type": "string"
1297
+ },
1298
+ "name": {
1299
+ "type": "string"
1300
+ },
1301
+ "readonly": {
1302
+ "description": "Whether the property is read-only.",
1303
+ "type": "boolean"
1304
+ },
1305
+ "source": {
1306
+ "$ref": "#/definitions/SourceReference"
1307
+ },
1308
+ "summary": {
1309
+ "description": "A markdown summary suitable for display in a listing.",
1310
+ "type": "string"
1311
+ },
1312
+ "type": {
1313
+ "$ref": "#/definitions/Type"
1314
+ }
1315
+ },
1316
+ "required": [
1317
+ "kind",
1318
+ "name"
1319
+ ],
1320
+ "type": "object"
1321
+ }
1322
+ },
1323
+ "description": "The top-level interface of a custom elements manifest file.\n\nBecause custom elements are JavaScript classes, describing a custom element\nmay require describing arbitrary JavaScript concepts like modules, classes,\nfunctions, etc. So custom elements manifests are capable of documenting\nthe elements in a package, as well as those JavaScript concepts.\n\nThe modules described in a package should be the public entrypoints that\nother packages may import from. Multiple modules may export the same object\nvia re-exports, but in most cases a package should document the single\ncanonical export that should be used.",
1324
+ "properties": {
1325
+ "deprecated": {
1326
+ "description": "Whether the package is deprecated.\nIf the value is a string, it's the reason for the deprecation.",
1327
+ "type": [
1328
+ "string",
1329
+ "boolean"
1330
+ ]
1331
+ },
1332
+ "modules": {
1333
+ "description": "An array of the modules this package contains.",
1334
+ "items": {
1335
+ "$ref": "#/definitions/JavaScriptModule"
1336
+ },
1337
+ "type": "array"
1338
+ },
1339
+ "readme": {
1340
+ "description": "The Markdown to use for the main readme of this package.\n\nThis can be used to override the readme used by Github or npm if that\nfile contains information irrelevant to custom element catalogs and\ndocumentation viewers.",
1341
+ "type": "string"
1342
+ },
1343
+ "schemaVersion": {
1344
+ "description": "The version of the schema used in this file.",
1345
+ "type": "string"
1346
+ }
1347
+ },
1348
+ "required": [
1349
+ "modules",
1350
+ "schemaVersion"
1351
+ ],
1352
+ "type": "object",
1353
+ "additionalProperties": false
1354
+ }