@ui5/webcomponents-base 2.20.0-rc.1 → 2.20.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -238,51 +238,57 @@
238
238
  "members": [
239
239
  {
240
240
  "kind": "method",
241
- "name": "onBeforeRendering",
241
+ "name": "attachComponentStateFinalized",
242
242
  "return": {
243
243
  "type": {
244
244
  "text": "void"
245
245
  }
246
246
  },
247
- "description": "Called every time before the component renders.",
248
- "privacy": "public"
249
- },
250
- {
251
- "kind": "method",
252
- "name": "onAfterRendering",
253
- "return": {
254
- "type": {
255
- "text": "void"
247
+ "parameters": [
248
+ {
249
+ "name": "callback",
250
+ "type": {
251
+ "text": "() => void"
252
+ }
256
253
  }
257
- },
258
- "description": "Called every time after the component renders.",
254
+ ],
255
+ "description": "Attach a callback that will be executed whenever the component's state is finalized",
259
256
  "privacy": "public"
260
257
  },
261
258
  {
262
259
  "kind": "method",
263
- "name": "onEnterDOM",
260
+ "name": "attachInvalidate",
264
261
  "return": {
265
262
  "type": {
266
263
  "text": "void"
267
264
  }
268
265
  },
269
- "description": "Called on connectedCallback - added to the DOM.",
266
+ "parameters": [
267
+ {
268
+ "name": "callback",
269
+ "type": {
270
+ "text": "(param: InvalidationInfo) => void"
271
+ }
272
+ }
273
+ ],
274
+ "description": "Attach a callback that will be executed whenever the component is invalidated",
270
275
  "privacy": "public"
271
276
  },
272
277
  {
273
278
  "kind": "method",
274
- "name": "onExitDOM",
279
+ "name": "define",
280
+ "static": true,
275
281
  "return": {
276
282
  "type": {
277
- "text": "void"
283
+ "text": "typeof UI5Element"
278
284
  }
279
285
  },
280
- "description": "Called on disconnectedCallback - removed from the DOM.",
286
+ "description": "Registers a UI5 Web Component in the browser window object",
281
287
  "privacy": "public"
282
288
  },
283
289
  {
284
290
  "kind": "method",
285
- "name": "attachInvalidate",
291
+ "name": "detachComponentStateFinalized",
286
292
  "return": {
287
293
  "type": {
288
294
  "text": "void"
@@ -292,11 +298,11 @@
292
298
  {
293
299
  "name": "callback",
294
300
  "type": {
295
- "text": "(param: InvalidationInfo) => void"
301
+ "text": "() => void"
296
302
  }
297
303
  }
298
304
  ],
299
- "description": "Attach a callback that will be executed whenever the component is invalidated",
305
+ "description": "Detach the callback that is executed whenever the component's state is finalized",
300
306
  "privacy": "public"
301
307
  },
302
308
  {
@@ -319,84 +325,43 @@
319
325
  "privacy": "public"
320
326
  },
321
327
  {
322
- "kind": "method",
323
- "name": "onInvalidation",
324
- "return": {
325
- "type": {
326
- "text": "void"
327
- }
328
- },
329
- "parameters": [
330
- {
331
- "name": "changeInfo",
332
- "type": {
333
- "text": "ChangeInfo",
334
- "references": [
335
- {
336
- "name": "ChangeInfo",
337
- "package": "@ui5/webcomponents-base",
338
- "module": "dist/UI5Element.js"
339
- }
340
- ]
341
- },
342
- "description": "An object with information about the change that caused invalidation.\nThe object can have the following properties:\n- type: (property|slot) tells what caused the invalidation\n1) property: a property value was changed either directly or as a result of changing the corresponding attribute\n2) slot: a slotted node(nodes) changed in one of several ways (see \"reason\")\n\n- name: the name of the property or slot that caused the invalidation\n\n- reason: (children|textcontent|childchange|slotchange) relevant only for type=\"slot\" only and tells exactly what changed in the slot\n1) children: immediate children (HTML elements or text nodes) were added, removed or reordered in the slot\n2) textcontent: text nodes in the slot changed value (or nested text nodes were added or changed value). Can only trigger for slots of \"type: Node\"\n3) slotchange: a slot element, slotted inside that slot had its \"slotchange\" event listener called. This practically means that transitively slotted children changed.\nCan only trigger if the child of a slot is a slot element itself.\n4) childchange: indicates that a UI5Element child in that slot was invalidated and in turn invalidated the component.\nCan only trigger for slots with \"invalidateOnChildChange\" metadata descriptor\n\n- newValue: the new value of the property (for type=\"property\" only)\n\n- oldValue: the old value of the property (for type=\"property\" only)\n\n- child the child that was changed (for type=\"slot\" and reason=\"childchange\" only)"
343
- }
344
- ],
345
- "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
346
- "privacy": "public"
347
- },
348
- {
349
- "kind": "method",
350
- "name": "getDomRef",
351
- "return": {
352
- "type": {
353
- "text": "HTMLElement | undefined"
354
- }
355
- },
356
- "description": "Returns the DOM Element inside the Shadow Root that corresponds to the opening tag in the UI5 Web Component's template\n*Note:* For logical (abstract) elements (items, options, etc...), returns the part of the parent's DOM that represents this option\nUse this method instead of \"this.shadowRoot\" to read the Shadow DOM, if ever necessary",
357
- "privacy": "public"
358
- },
359
- {
360
- "kind": "method",
361
- "name": "getFocusDomRef",
362
- "return": {
363
- "type": {
364
- "text": "HTMLElement | undefined"
365
- }
366
- },
367
- "description": "Returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
368
- "privacy": "public"
369
- },
370
- {
371
- "kind": "method",
372
- "name": "getFocusDomRefAsync",
373
- "return": {
374
- "type": {
375
- "text": "Promise<HTMLElement | undefined>"
376
- }
328
+ "kind": "field",
329
+ "name": "effectiveDir",
330
+ "type": {
331
+ "text": "string | undefined"
377
332
  },
378
- "description": "Waits for dom ref and then returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
379
- "privacy": "public"
333
+ "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
334
+ "privacy": "public",
335
+ "default": "undefined",
336
+ "readonly": true
380
337
  },
381
338
  {
382
339
  "kind": "method",
383
- "name": "focus",
340
+ "name": "fireDecoratorEvent",
384
341
  "return": {
385
342
  "type": {
386
- "text": "Promise<void>"
387
- }
343
+ "text": "boolean"
344
+ },
345
+ "description": "false, if the event was cancelled (preventDefault called), true otherwise"
388
346
  },
389
347
  "parameters": [
390
348
  {
391
- "name": "focusOptions",
349
+ "name": "data",
392
350
  "optional": true,
393
351
  "type": {
394
- "text": "FocusOptions"
352
+ "text": "this[\"eventDetails\"][N] | undefined"
395
353
  },
396
- "description": "additional options for the focus"
354
+ "description": "additional data for the event"
355
+ },
356
+ {
357
+ "name": "name",
358
+ "type": {
359
+ "text": "N"
360
+ },
361
+ "description": "name of the event"
397
362
  }
398
363
  ],
399
- "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
364
+ "description": "Fires a custom event, configured via the \"event\" decorator.",
400
365
  "privacy": "public"
401
366
  },
402
367
  {
@@ -410,11 +375,14 @@
410
375
  },
411
376
  "parameters": [
412
377
  {
413
- "name": "name",
414
- "type": {
415
- "text": "string"
416
- },
417
- "description": "name of the event"
378
+ "name": "bubbles",
379
+ "default": "true",
380
+ "description": "true, if the event bubbles"
381
+ },
382
+ {
383
+ "name": "cancelable",
384
+ "default": "false",
385
+ "description": "true, if the user can call preventDefault on the event object"
418
386
  },
419
387
  {
420
388
  "name": "data",
@@ -425,14 +393,11 @@
425
393
  "description": "additional data for the event"
426
394
  },
427
395
  {
428
- "name": "cancelable",
429
- "default": "false",
430
- "description": "true, if the user can call preventDefault on the event object"
431
- },
432
- {
433
- "name": "bubbles",
434
- "default": "true",
435
- "description": "true, if the event bubbles"
396
+ "name": "name",
397
+ "type": {
398
+ "text": "string"
399
+ },
400
+ "description": "name of the event"
436
401
  }
437
402
  ],
438
403
  "privacy": "public",
@@ -440,92 +405,99 @@
440
405
  },
441
406
  {
442
407
  "kind": "method",
443
- "name": "fireDecoratorEvent",
408
+ "name": "focus",
444
409
  "return": {
445
410
  "type": {
446
- "text": "boolean"
447
- },
448
- "description": "false, if the event was cancelled (preventDefault called), true otherwise"
411
+ "text": "Promise<void>"
412
+ }
449
413
  },
450
414
  "parameters": [
451
415
  {
452
- "name": "name",
453
- "type": {
454
- "text": "N"
455
- },
456
- "description": "name of the event"
457
- },
458
- {
459
- "name": "data",
416
+ "name": "focusOptions",
460
417
  "optional": true,
461
418
  "type": {
462
- "text": "this[\"eventDetails\"][N] | undefined"
419
+ "text": "FocusOptions"
463
420
  },
464
- "description": "additional data for the event"
421
+ "description": "additional options for the focus"
465
422
  }
466
423
  ],
467
- "description": "Fires a custom event, configured via the \"event\" decorator.",
424
+ "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
468
425
  "privacy": "public"
469
426
  },
470
427
  {
471
428
  "kind": "method",
472
- "name": "getSlottedNodes",
429
+ "name": "getDomRef",
473
430
  "return": {
474
431
  "type": {
475
- "text": "Array<T>"
432
+ "text": "HTMLElement | undefined"
476
433
  }
477
434
  },
478
- "description": "Returns the actual children, associated with a slot.\nUseful when there are transitive slots in nested component scenarios and you don't want to get a list of the slots, but rather of their content.",
435
+ "description": "Returns the DOM Element inside the Shadow Root that corresponds to the opening tag in the UI5 Web Component's template\n*Note:* For logical (abstract) elements (items, options, etc...), returns the part of the parent's DOM that represents this option\nUse this method instead of \"this.shadowRoot\" to read the Shadow DOM, if ever necessary",
479
436
  "privacy": "public"
480
437
  },
481
438
  {
482
439
  "kind": "method",
483
- "name": "attachComponentStateFinalized",
440
+ "name": "getFocusDomRef",
484
441
  "return": {
485
442
  "type": {
486
- "text": "void"
443
+ "text": "HTMLElement | undefined"
487
444
  }
488
445
  },
489
- "parameters": [
490
- {
491
- "name": "callback",
492
- "type": {
493
- "text": "() => void"
494
- }
446
+ "description": "Returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
447
+ "privacy": "public"
448
+ },
449
+ {
450
+ "kind": "method",
451
+ "name": "getFocusDomRefAsync",
452
+ "return": {
453
+ "type": {
454
+ "text": "Promise<HTMLElement | undefined>"
495
455
  }
496
- ],
497
- "description": "Attach a callback that will be executed whenever the component's state is finalized",
456
+ },
457
+ "description": "Waits for dom ref and then returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
498
458
  "privacy": "public"
499
459
  },
500
460
  {
501
461
  "kind": "method",
502
- "name": "detachComponentStateFinalized",
462
+ "name": "getMetadata",
463
+ "static": true,
503
464
  "return": {
504
465
  "type": {
505
- "text": "void"
466
+ "text": "UI5ElementMetadata",
467
+ "references": [
468
+ {
469
+ "name": "UI5ElementMetadata",
470
+ "package": "@ui5/webcomponents-base",
471
+ "module": "dist/UI5ElementMetadata.js"
472
+ }
473
+ ]
506
474
  }
507
475
  },
508
- "parameters": [
509
- {
510
- "name": "callback",
511
- "type": {
512
- "text": "() => void"
513
- }
476
+ "description": "Returns an instance of UI5ElementMetadata.js representing this UI5 Web Component's full metadata (its and its parents')\nNote: not to be confused with the \"get metadata()\" method, which returns an object for this class's metadata only",
477
+ "privacy": "public"
478
+ },
479
+ {
480
+ "kind": "method",
481
+ "name": "getSlottedNodes",
482
+ "return": {
483
+ "type": {
484
+ "text": "Array<T>"
514
485
  }
515
- ],
516
- "description": "Detach the callback that is executed whenever the component's state is finalized",
486
+ },
487
+ "description": "Returns the actual children, associated with a slot.\nUseful when there are transitive slots in nested component scenarios and you don't want to get a list of the slots, but rather of their content.",
517
488
  "privacy": "public"
518
489
  },
519
490
  {
520
- "kind": "field",
521
- "name": "effectiveDir",
522
- "type": {
523
- "text": "string | undefined"
491
+ "kind": "method",
492
+ "name": "getUniqueDependencies",
493
+ "static": true,
494
+ "return": {
495
+ "type": {
496
+ "text": "Array<typeof UI5Element>"
497
+ }
524
498
  },
525
- "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
526
- "privacy": "public",
527
- "default": "undefined",
528
- "readonly": true
499
+ "description": "Returns a list of the unique dependencies for this UI5 Web Component",
500
+ "privacy": "public"
529
501
  },
530
502
  {
531
503
  "kind": "field",
@@ -540,45 +512,73 @@
540
512
  },
541
513
  {
542
514
  "kind": "method",
543
- "name": "getUniqueDependencies",
544
- "static": true,
515
+ "name": "onAfterRendering",
545
516
  "return": {
546
517
  "type": {
547
- "text": "Array<typeof UI5Element>"
518
+ "text": "void"
548
519
  }
549
520
  },
550
- "description": "Returns a list of the unique dependencies for this UI5 Web Component",
521
+ "description": "Called every time after the component renders.",
551
522
  "privacy": "public"
552
523
  },
553
524
  {
554
525
  "kind": "method",
555
- "name": "define",
556
- "static": true,
526
+ "name": "onBeforeRendering",
557
527
  "return": {
558
528
  "type": {
559
- "text": "typeof UI5Element"
529
+ "text": "void"
560
530
  }
561
531
  },
562
- "description": "Registers a UI5 Web Component in the browser window object",
532
+ "description": "Called every time before the component renders.",
563
533
  "privacy": "public"
564
534
  },
565
535
  {
566
536
  "kind": "method",
567
- "name": "getMetadata",
568
- "static": true,
537
+ "name": "onEnterDOM",
569
538
  "return": {
570
539
  "type": {
571
- "text": "UI5ElementMetadata",
572
- "references": [
573
- {
574
- "name": "UI5ElementMetadata",
575
- "package": "@ui5/webcomponents-base",
576
- "module": "dist/UI5ElementMetadata.js"
577
- }
578
- ]
540
+ "text": "void"
579
541
  }
580
542
  },
581
- "description": "Returns an instance of UI5ElementMetadata.js representing this UI5 Web Component's full metadata (its and its parents')\nNote: not to be confused with the \"get metadata()\" method, which returns an object for this class's metadata only",
543
+ "description": "Called on connectedCallback - added to the DOM.",
544
+ "privacy": "public"
545
+ },
546
+ {
547
+ "kind": "method",
548
+ "name": "onExitDOM",
549
+ "return": {
550
+ "type": {
551
+ "text": "void"
552
+ }
553
+ },
554
+ "description": "Called on disconnectedCallback - removed from the DOM.",
555
+ "privacy": "public"
556
+ },
557
+ {
558
+ "kind": "method",
559
+ "name": "onInvalidation",
560
+ "return": {
561
+ "type": {
562
+ "text": "void"
563
+ }
564
+ },
565
+ "parameters": [
566
+ {
567
+ "name": "changeInfo",
568
+ "type": {
569
+ "text": "ChangeInfo",
570
+ "references": [
571
+ {
572
+ "name": "ChangeInfo",
573
+ "package": "@ui5/webcomponents-base",
574
+ "module": "dist/UI5Element.js"
575
+ }
576
+ ]
577
+ },
578
+ "description": "An object with information about the change that caused invalidation.\nThe object can have the following properties:\n- type: (property|slot) tells what caused the invalidation\n1) property: a property value was changed either directly or as a result of changing the corresponding attribute\n2) slot: a slotted node(nodes) changed in one of several ways (see \"reason\")\n\n- name: the name of the property or slot that caused the invalidation\n\n- reason: (children|textcontent|childchange|slotchange) relevant only for type=\"slot\" only and tells exactly what changed in the slot\n1) children: immediate children (HTML elements or text nodes) were added, removed or reordered in the slot\n2) textcontent: text nodes in the slot changed value (or nested text nodes were added or changed value). Can only trigger for slots of \"type: Node\"\n3) slotchange: a slot element, slotted inside that slot had its \"slotchange\" event listener called. This practically means that transitively slotted children changed.\nCan only trigger if the child of a slot is a slot element itself.\n4) childchange: indicates that a UI5Element child in that slot was invalidated and in turn invalidated the component.\nCan only trigger for slots with \"invalidateOnChildChange\" metadata descriptor\n\n- newValue: the new value of the property (for type=\"property\" only)\n\n- oldValue: the old value of the property (for type=\"property\" only)\n\n- child the child that was changed (for type=\"slot\" and reason=\"childchange\" only)"
579
+ }
580
+ ],
581
+ "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
582
582
  "privacy": "public"
583
583
  }
584
584
  ],
@@ -627,175 +627,175 @@
627
627
  "members": [
628
628
  {
629
629
  "kind": "method",
630
- "name": "validateSlotValue",
631
- "static": true,
630
+ "name": "getAttributesList",
632
631
  "return": {
633
632
  "type": {
634
- "text": "Node"
633
+ "text": "Array<string>"
635
634
  }
636
635
  },
637
- "description": "Validates the slot's value and returns it if correct\nor throws an exception if not.\n**Note:** Only intended for use by UI5Element.js",
636
+ "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
638
637
  "privacy": "public"
639
638
  },
640
639
  {
641
640
  "kind": "method",
642
- "name": "getPureTag",
641
+ "name": "getEvents",
643
642
  "return": {
644
643
  "type": {
645
- "text": "string"
644
+ "text": "EventData",
645
+ "references": [
646
+ {
647
+ "name": "EventData",
648
+ "package": "@ui5/webcomponents-base",
649
+ "module": "dist/UI5ElementMetadata.js"
650
+ }
651
+ ]
646
652
  }
647
653
  },
648
- "description": "Returns the tag of the UI5 Element without the scope",
654
+ "description": "Returns an object with key-value pairs of events and their metadata definitions",
649
655
  "privacy": "public"
650
656
  },
651
657
  {
652
658
  "kind": "method",
653
- "name": "getTag",
659
+ "name": "getProperties",
654
660
  "return": {
655
661
  "type": {
656
- "text": "string"
662
+ "text": "Record<string, Property>",
663
+ "references": [
664
+ {
665
+ "name": "Property",
666
+ "package": "@ui5/webcomponents-base",
667
+ "module": "dist/UI5ElementMetadata.js"
668
+ }
669
+ ]
657
670
  }
658
671
  },
659
- "description": "Returns the tag of the UI5 Element",
672
+ "description": "Returns an object with key-value pairs of properties and their metadata definitions",
660
673
  "privacy": "public"
661
674
  },
662
675
  {
663
676
  "kind": "method",
664
- "name": "hasAttribute",
677
+ "name": "getPropertiesList",
665
678
  "return": {
666
679
  "type": {
667
- "text": "boolean"
680
+ "text": "Array<string>"
668
681
  }
669
682
  },
670
- "parameters": [
671
- {
672
- "name": "propName",
673
- "type": {
674
- "text": "string"
675
- }
676
- }
677
- ],
678
- "description": "Determines whether a property should have an attribute counterpart",
683
+ "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
679
684
  "privacy": "public"
680
685
  },
681
686
  {
682
687
  "kind": "method",
683
- "name": "getPropertiesList",
688
+ "name": "getPureTag",
684
689
  "return": {
685
690
  "type": {
686
- "text": "Array<string>"
691
+ "text": "string"
687
692
  }
688
693
  },
689
- "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
694
+ "description": "Returns the tag of the UI5 Element without the scope",
690
695
  "privacy": "public"
691
696
  },
692
697
  {
693
698
  "kind": "method",
694
- "name": "getAttributesList",
699
+ "name": "getSlots",
695
700
  "return": {
696
701
  "type": {
697
- "text": "Array<string>"
702
+ "text": "Record<string, Slot>",
703
+ "references": [
704
+ {
705
+ "name": "Slot",
706
+ "package": "@ui5/webcomponents-base",
707
+ "module": "dist/UI5ElementMetadata.js"
708
+ }
709
+ ]
698
710
  }
699
711
  },
700
- "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
712
+ "description": "Returns an object with key-value pairs of slots and their metadata definitions",
701
713
  "privacy": "public"
702
714
  },
703
715
  {
704
716
  "kind": "method",
705
- "name": "hasSlots",
717
+ "name": "getTag",
706
718
  "return": {
707
719
  "type": {
708
- "text": "boolean"
720
+ "text": "string"
709
721
  }
710
722
  },
711
- "description": "Determines whether this UI5 Element supports any slots",
723
+ "description": "Returns the tag of the UI5 Element",
712
724
  "privacy": "public"
713
725
  },
714
726
  {
715
727
  "kind": "method",
716
- "name": "hasIndividualSlots",
728
+ "name": "hasAttribute",
717
729
  "return": {
718
730
  "type": {
719
731
  "text": "boolean"
720
732
  }
721
733
  },
722
- "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
734
+ "parameters": [
735
+ {
736
+ "name": "propName",
737
+ "type": {
738
+ "text": "string"
739
+ }
740
+ }
741
+ ],
742
+ "description": "Determines whether a property should have an attribute counterpart",
723
743
  "privacy": "public"
724
744
  },
725
745
  {
726
746
  "kind": "method",
727
- "name": "slotsAreManaged",
747
+ "name": "hasIndividualSlots",
728
748
  "return": {
729
749
  "type": {
730
750
  "text": "boolean"
731
751
  }
732
752
  },
733
- "description": "Determines whether this UI5 Element needs to invalidate if children are added/removed/changed",
753
+ "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
734
754
  "privacy": "public"
735
755
  },
736
756
  {
737
757
  "kind": "method",
738
- "name": "supportsF6FastNavigation",
758
+ "name": "hasSlots",
739
759
  "return": {
740
760
  "type": {
741
761
  "text": "boolean"
742
762
  }
743
763
  },
744
- "description": "Determines whether this control supports F6 fast navigation",
764
+ "description": "Determines whether this UI5 Element supports any slots",
745
765
  "privacy": "public"
746
766
  },
747
767
  {
748
768
  "kind": "method",
749
- "name": "getProperties",
769
+ "name": "slotsAreManaged",
750
770
  "return": {
751
771
  "type": {
752
- "text": "Record<string, Property>",
753
- "references": [
754
- {
755
- "name": "Property",
756
- "package": "@ui5/webcomponents-base",
757
- "module": "dist/UI5ElementMetadata.js"
758
- }
759
- ]
772
+ "text": "boolean"
760
773
  }
761
774
  },
762
- "description": "Returns an object with key-value pairs of properties and their metadata definitions",
775
+ "description": "Determines whether this UI5 Element needs to invalidate if children are added/removed/changed",
763
776
  "privacy": "public"
764
777
  },
765
778
  {
766
779
  "kind": "method",
767
- "name": "getEvents",
780
+ "name": "supportsF6FastNavigation",
768
781
  "return": {
769
782
  "type": {
770
- "text": "EventData",
771
- "references": [
772
- {
773
- "name": "EventData",
774
- "package": "@ui5/webcomponents-base",
775
- "module": "dist/UI5ElementMetadata.js"
776
- }
777
- ]
783
+ "text": "boolean"
778
784
  }
779
785
  },
780
- "description": "Returns an object with key-value pairs of events and their metadata definitions",
786
+ "description": "Determines whether this control supports F6 fast navigation",
781
787
  "privacy": "public"
782
788
  },
783
789
  {
784
790
  "kind": "method",
785
- "name": "getSlots",
791
+ "name": "validateSlotValue",
792
+ "static": true,
786
793
  "return": {
787
794
  "type": {
788
- "text": "Record<string, Slot>",
789
- "references": [
790
- {
791
- "name": "Slot",
792
- "package": "@ui5/webcomponents-base",
793
- "module": "dist/UI5ElementMetadata.js"
794
- }
795
- ]
795
+ "text": "Node"
796
796
  }
797
797
  },
798
- "description": "Returns an object with key-value pairs of slots and their metadata definitions",
798
+ "description": "Validates the slot's value and returns it if correct\nor throws an exception if not.\n**Note:** Only intended for use by UI5Element.js",
799
799
  "privacy": "public"
800
800
  }
801
801
  ]
@@ -866,6 +866,13 @@
866
866
  }
867
867
  },
868
868
  "parameters": [
869
+ {
870
+ "name": "params",
871
+ "type": {
872
+ "text": "Array<number | string>"
873
+ },
874
+ "description": "Values for the placeholders"
875
+ },
869
876
  {
870
877
  "name": "textObj",
871
878
  "type": {
@@ -879,13 +886,6 @@
879
886
  ]
880
887
  },
881
888
  "description": "key/defaultText pair or just the key"
882
- },
883
- {
884
- "name": "params",
885
- "type": {
886
- "text": "Array<number | string>"
887
- },
888
- "description": "Values for the placeholders"
889
889
  }
890
890
  ],
891
891
  "description": "Returns a text in the currently loaded language",
@@ -1408,7 +1408,7 @@
1408
1408
  "members": [
1409
1409
  {
1410
1410
  "kind": "method",
1411
- "name": "register",
1411
+ "name": "deregister",
1412
1412
  "static": true,
1413
1413
  "return": {
1414
1414
  "type": {
@@ -1416,13 +1416,6 @@
1416
1416
  }
1417
1417
  },
1418
1418
  "parameters": [
1419
- {
1420
- "name": "element",
1421
- "type": {
1422
- "text": "HTMLElement"
1423
- },
1424
- "description": "UI5 Web Component or DOM Element to be observed"
1425
- },
1426
1419
  {
1427
1420
  "name": "callback",
1428
1421
  "type": {
@@ -1435,14 +1428,21 @@
1435
1428
  }
1436
1429
  ]
1437
1430
  },
1438
- "description": "Callback to be executed"
1431
+ "description": "Callback to be removed"
1432
+ },
1433
+ {
1434
+ "name": "element",
1435
+ "type": {
1436
+ "text": "HTMLElement"
1437
+ },
1438
+ "description": "UI5 Web Component or DOM Element to be unobserved"
1439
1439
  }
1440
1440
  ],
1441
1441
  "privacy": "public"
1442
1442
  },
1443
1443
  {
1444
1444
  "kind": "method",
1445
- "name": "deregister",
1445
+ "name": "register",
1446
1446
  "static": true,
1447
1447
  "return": {
1448
1448
  "type": {
@@ -1450,13 +1450,6 @@
1450
1450
  }
1451
1451
  },
1452
1452
  "parameters": [
1453
- {
1454
- "name": "element",
1455
- "type": {
1456
- "text": "HTMLElement"
1457
- },
1458
- "description": "UI5 Web Component or DOM Element to be unobserved"
1459
- },
1460
1453
  {
1461
1454
  "name": "callback",
1462
1455
  "type": {
@@ -1469,7 +1462,14 @@
1469
1462
  }
1470
1463
  ]
1471
1464
  },
1472
- "description": "Callback to be removed"
1465
+ "description": "Callback to be executed"
1466
+ },
1467
+ {
1468
+ "name": "element",
1469
+ "type": {
1470
+ "text": "HTMLElement"
1471
+ },
1472
+ "description": "UI5 Web Component or DOM Element to be observed"
1473
1473
  }
1474
1474
  ],
1475
1475
  "privacy": "public"