@ui5/webcomponents-base 2.20.0-rc.2 → 2.20.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.
@@ -238,51 +238,59 @@
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
+ },
253
+ "_ui5privacy": "public"
256
254
  }
257
- },
258
- "description": "Called every time after the component renders.",
255
+ ],
256
+ "description": "Attach a callback that will be executed whenever the component's state is finalized",
259
257
  "privacy": "public"
260
258
  },
261
259
  {
262
260
  "kind": "method",
263
- "name": "onEnterDOM",
261
+ "name": "attachInvalidate",
264
262
  "return": {
265
263
  "type": {
266
264
  "text": "void"
267
265
  }
268
266
  },
269
- "description": "Called on connectedCallback - added to the DOM.",
267
+ "parameters": [
268
+ {
269
+ "name": "callback",
270
+ "type": {
271
+ "text": "(param: InvalidationInfo) => void"
272
+ },
273
+ "_ui5privacy": "public"
274
+ }
275
+ ],
276
+ "description": "Attach a callback that will be executed whenever the component is invalidated",
270
277
  "privacy": "public"
271
278
  },
272
279
  {
273
280
  "kind": "method",
274
- "name": "onExitDOM",
281
+ "name": "define",
282
+ "static": true,
275
283
  "return": {
276
284
  "type": {
277
- "text": "void"
285
+ "text": "typeof UI5Element"
278
286
  }
279
287
  },
280
- "description": "Called on disconnectedCallback - removed from the DOM.",
288
+ "description": "Registers a UI5 Web Component in the browser window object",
281
289
  "privacy": "public"
282
290
  },
283
291
  {
284
292
  "kind": "method",
285
- "name": "attachInvalidate",
293
+ "name": "detachComponentStateFinalized",
286
294
  "return": {
287
295
  "type": {
288
296
  "text": "void"
@@ -292,12 +300,12 @@
292
300
  {
293
301
  "name": "callback",
294
302
  "type": {
295
- "text": "(param: InvalidationInfo) => void"
303
+ "text": "() => void"
296
304
  },
297
305
  "_ui5privacy": "public"
298
306
  }
299
307
  ],
300
- "description": "Attach a callback that will be executed whenever the component is invalidated",
308
+ "description": "Detach the callback that is executed whenever the component's state is finalized",
301
309
  "privacy": "public"
302
310
  },
303
311
  {
@@ -321,86 +329,45 @@
321
329
  "privacy": "public"
322
330
  },
323
331
  {
324
- "kind": "method",
325
- "name": "onInvalidation",
326
- "return": {
327
- "type": {
328
- "text": "void"
329
- }
330
- },
331
- "parameters": [
332
- {
333
- "name": "changeInfo",
334
- "type": {
335
- "text": "ChangeInfo",
336
- "references": [
337
- {
338
- "name": "ChangeInfo",
339
- "package": "@ui5/webcomponents-base",
340
- "module": "dist/UI5Element.js"
341
- }
342
- ]
343
- },
344
- "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)",
345
- "_ui5privacy": "public"
346
- }
347
- ],
348
- "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
349
- "privacy": "public"
350
- },
351
- {
352
- "kind": "method",
353
- "name": "getDomRef",
354
- "return": {
355
- "type": {
356
- "text": "HTMLElement | undefined"
357
- }
358
- },
359
- "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",
360
- "privacy": "public"
361
- },
362
- {
363
- "kind": "method",
364
- "name": "getFocusDomRef",
365
- "return": {
366
- "type": {
367
- "text": "HTMLElement | undefined"
368
- }
369
- },
370
- "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.",
371
- "privacy": "public"
372
- },
373
- {
374
- "kind": "method",
375
- "name": "getFocusDomRefAsync",
376
- "return": {
377
- "type": {
378
- "text": "Promise<HTMLElement | undefined>"
379
- }
332
+ "kind": "field",
333
+ "name": "effectiveDir",
334
+ "type": {
335
+ "text": "string | undefined"
380
336
  },
381
- "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.",
382
- "privacy": "public"
337
+ "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
338
+ "privacy": "public",
339
+ "default": "undefined",
340
+ "readonly": true
383
341
  },
384
342
  {
385
343
  "kind": "method",
386
- "name": "focus",
344
+ "name": "fireDecoratorEvent",
387
345
  "return": {
388
346
  "type": {
389
- "text": "Promise<void>"
390
- }
347
+ "text": "boolean"
348
+ },
349
+ "description": "false, if the event was cancelled (preventDefault called), true otherwise"
391
350
  },
392
351
  "parameters": [
393
352
  {
394
- "name": "focusOptions",
353
+ "name": "data",
395
354
  "optional": true,
396
355
  "type": {
397
- "text": "FocusOptions"
356
+ "text": "this[\"eventDetails\"][N] | undefined"
398
357
  },
399
- "description": "additional options for the focus",
358
+ "description": "additional data for the event",
359
+ "_ui5privacy": "public"
360
+ },
361
+ {
362
+ "name": "name",
363
+ "type": {
364
+ "text": "N"
365
+ },
366
+ "description": "name of the event",
400
367
  "_ui5privacy": "public"
401
368
  }
402
369
  ],
403
- "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
370
+ "description": "Fires a custom event, configured via the \"event\" decorator.",
404
371
  "privacy": "public"
405
372
  },
406
373
  {
@@ -414,11 +381,15 @@
414
381
  },
415
382
  "parameters": [
416
383
  {
417
- "name": "name",
418
- "type": {
419
- "text": "string"
420
- },
421
- "description": "name of the event",
384
+ "name": "bubbles",
385
+ "default": "true",
386
+ "description": "true, if the event bubbles",
387
+ "_ui5privacy": "public"
388
+ },
389
+ {
390
+ "name": "cancelable",
391
+ "default": "false",
392
+ "description": "true, if the user can call preventDefault on the event object",
422
393
  "_ui5privacy": "public"
423
394
  },
424
395
  {
@@ -431,15 +402,11 @@
431
402
  "_ui5privacy": "public"
432
403
  },
433
404
  {
434
- "name": "cancelable",
435
- "default": "false",
436
- "description": "true, if the user can call preventDefault on the event object",
437
- "_ui5privacy": "public"
438
- },
439
- {
440
- "name": "bubbles",
441
- "default": "true",
442
- "description": "true, if the event bubbles",
405
+ "name": "name",
406
+ "type": {
407
+ "text": "string"
408
+ },
409
+ "description": "name of the event",
443
410
  "_ui5privacy": "public"
444
411
  }
445
412
  ],
@@ -448,96 +415,100 @@
448
415
  },
449
416
  {
450
417
  "kind": "method",
451
- "name": "fireDecoratorEvent",
418
+ "name": "focus",
452
419
  "return": {
453
420
  "type": {
454
- "text": "boolean"
455
- },
456
- "description": "false, if the event was cancelled (preventDefault called), true otherwise"
421
+ "text": "Promise<void>"
422
+ }
457
423
  },
458
424
  "parameters": [
459
425
  {
460
- "name": "name",
461
- "type": {
462
- "text": "N"
463
- },
464
- "description": "name of the event",
465
- "_ui5privacy": "public"
466
- },
467
- {
468
- "name": "data",
426
+ "name": "focusOptions",
469
427
  "optional": true,
470
428
  "type": {
471
- "text": "this[\"eventDetails\"][N] | undefined"
429
+ "text": "FocusOptions"
472
430
  },
473
- "description": "additional data for the event",
431
+ "description": "additional options for the focus",
474
432
  "_ui5privacy": "public"
475
433
  }
476
434
  ],
477
- "description": "Fires a custom event, configured via the \"event\" decorator.",
435
+ "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
478
436
  "privacy": "public"
479
437
  },
480
438
  {
481
439
  "kind": "method",
482
- "name": "getSlottedNodes",
440
+ "name": "getDomRef",
483
441
  "return": {
484
442
  "type": {
485
- "text": "Array<T>"
443
+ "text": "HTMLElement | undefined"
486
444
  }
487
445
  },
488
- "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.",
446
+ "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",
489
447
  "privacy": "public"
490
448
  },
491
449
  {
492
450
  "kind": "method",
493
- "name": "attachComponentStateFinalized",
451
+ "name": "getFocusDomRef",
494
452
  "return": {
495
453
  "type": {
496
- "text": "void"
454
+ "text": "HTMLElement | undefined"
497
455
  }
498
456
  },
499
- "parameters": [
500
- {
501
- "name": "callback",
502
- "type": {
503
- "text": "() => void"
504
- },
505
- "_ui5privacy": "public"
457
+ "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.",
458
+ "privacy": "public"
459
+ },
460
+ {
461
+ "kind": "method",
462
+ "name": "getFocusDomRefAsync",
463
+ "return": {
464
+ "type": {
465
+ "text": "Promise<HTMLElement | undefined>"
506
466
  }
507
- ],
508
- "description": "Attach a callback that will be executed whenever the component's state is finalized",
467
+ },
468
+ "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.",
509
469
  "privacy": "public"
510
470
  },
511
471
  {
512
472
  "kind": "method",
513
- "name": "detachComponentStateFinalized",
473
+ "name": "getMetadata",
474
+ "static": true,
514
475
  "return": {
515
476
  "type": {
516
- "text": "void"
477
+ "text": "UI5ElementMetadata",
478
+ "references": [
479
+ {
480
+ "name": "UI5ElementMetadata",
481
+ "package": "@ui5/webcomponents-base",
482
+ "module": "dist/UI5ElementMetadata.js"
483
+ }
484
+ ]
517
485
  }
518
486
  },
519
- "parameters": [
520
- {
521
- "name": "callback",
522
- "type": {
523
- "text": "() => void"
524
- },
525
- "_ui5privacy": "public"
487
+ "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",
488
+ "privacy": "public"
489
+ },
490
+ {
491
+ "kind": "method",
492
+ "name": "getSlottedNodes",
493
+ "return": {
494
+ "type": {
495
+ "text": "Array<T>"
526
496
  }
527
- ],
528
- "description": "Detach the callback that is executed whenever the component's state is finalized",
497
+ },
498
+ "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.",
529
499
  "privacy": "public"
530
500
  },
531
501
  {
532
- "kind": "field",
533
- "name": "effectiveDir",
534
- "type": {
535
- "text": "string | undefined"
502
+ "kind": "method",
503
+ "name": "getUniqueDependencies",
504
+ "static": true,
505
+ "return": {
506
+ "type": {
507
+ "text": "Array<typeof UI5Element>"
508
+ }
536
509
  },
537
- "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
538
- "privacy": "public",
539
- "default": "undefined",
540
- "readonly": true
510
+ "description": "Returns a list of the unique dependencies for this UI5 Web Component",
511
+ "privacy": "public"
541
512
  },
542
513
  {
543
514
  "kind": "field",
@@ -552,45 +523,74 @@
552
523
  },
553
524
  {
554
525
  "kind": "method",
555
- "name": "getUniqueDependencies",
556
- "static": true,
526
+ "name": "onAfterRendering",
557
527
  "return": {
558
528
  "type": {
559
- "text": "Array<typeof UI5Element>"
529
+ "text": "void"
560
530
  }
561
531
  },
562
- "description": "Returns a list of the unique dependencies for this UI5 Web Component",
532
+ "description": "Called every time after the component renders.",
563
533
  "privacy": "public"
564
534
  },
565
535
  {
566
536
  "kind": "method",
567
- "name": "define",
568
- "static": true,
537
+ "name": "onBeforeRendering",
569
538
  "return": {
570
539
  "type": {
571
- "text": "typeof UI5Element"
540
+ "text": "void"
572
541
  }
573
542
  },
574
- "description": "Registers a UI5 Web Component in the browser window object",
543
+ "description": "Called every time before the component renders.",
575
544
  "privacy": "public"
576
545
  },
577
546
  {
578
547
  "kind": "method",
579
- "name": "getMetadata",
580
- "static": true,
548
+ "name": "onEnterDOM",
581
549
  "return": {
582
550
  "type": {
583
- "text": "UI5ElementMetadata",
584
- "references": [
585
- {
586
- "name": "UI5ElementMetadata",
587
- "package": "@ui5/webcomponents-base",
588
- "module": "dist/UI5ElementMetadata.js"
589
- }
590
- ]
551
+ "text": "void"
591
552
  }
592
553
  },
593
- "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",
554
+ "description": "Called on connectedCallback - added to the DOM.",
555
+ "privacy": "public"
556
+ },
557
+ {
558
+ "kind": "method",
559
+ "name": "onExitDOM",
560
+ "return": {
561
+ "type": {
562
+ "text": "void"
563
+ }
564
+ },
565
+ "description": "Called on disconnectedCallback - removed from the DOM.",
566
+ "privacy": "public"
567
+ },
568
+ {
569
+ "kind": "method",
570
+ "name": "onInvalidation",
571
+ "return": {
572
+ "type": {
573
+ "text": "void"
574
+ }
575
+ },
576
+ "parameters": [
577
+ {
578
+ "name": "changeInfo",
579
+ "type": {
580
+ "text": "ChangeInfo",
581
+ "references": [
582
+ {
583
+ "name": "ChangeInfo",
584
+ "package": "@ui5/webcomponents-base",
585
+ "module": "dist/UI5Element.js"
586
+ }
587
+ ]
588
+ },
589
+ "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)",
590
+ "_ui5privacy": "public"
591
+ }
592
+ ],
593
+ "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
594
594
  "privacy": "public"
595
595
  }
596
596
  ],
@@ -640,14 +640,60 @@
640
640
  "members": [
641
641
  {
642
642
  "kind": "method",
643
- "name": "validateSlotValue",
644
- "static": true,
643
+ "name": "getAttributesList",
644
+ "return": {
645
+ "type": {
646
+ "text": "Array<string>"
647
+ }
648
+ },
649
+ "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
650
+ "privacy": "public"
651
+ },
652
+ {
653
+ "kind": "method",
654
+ "name": "getEvents",
655
+ "return": {
656
+ "type": {
657
+ "text": "EventData",
658
+ "references": [
659
+ {
660
+ "name": "EventData",
661
+ "package": "@ui5/webcomponents-base",
662
+ "module": "dist/UI5ElementMetadata.js"
663
+ }
664
+ ]
665
+ }
666
+ },
667
+ "description": "Returns an object with key-value pairs of events and their metadata definitions",
668
+ "privacy": "public"
669
+ },
670
+ {
671
+ "kind": "method",
672
+ "name": "getProperties",
673
+ "return": {
674
+ "type": {
675
+ "text": "Record<string, Property>",
676
+ "references": [
677
+ {
678
+ "name": "Property",
679
+ "package": "@ui5/webcomponents-base",
680
+ "module": "dist/UI5ElementMetadata.js"
681
+ }
682
+ ]
683
+ }
684
+ },
685
+ "description": "Returns an object with key-value pairs of properties and their metadata definitions",
686
+ "privacy": "public"
687
+ },
688
+ {
689
+ "kind": "method",
690
+ "name": "getPropertiesList",
645
691
  "return": {
646
692
  "type": {
647
- "text": "Node"
693
+ "text": "Array<string>"
648
694
  }
649
695
  },
650
- "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",
696
+ "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
651
697
  "privacy": "public"
652
698
  },
653
699
  {
@@ -661,6 +707,24 @@
661
707
  "description": "Returns the tag of the UI5 Element without the scope",
662
708
  "privacy": "public"
663
709
  },
710
+ {
711
+ "kind": "method",
712
+ "name": "getSlots",
713
+ "return": {
714
+ "type": {
715
+ "text": "Record<string, Slot>",
716
+ "references": [
717
+ {
718
+ "name": "Slot",
719
+ "package": "@ui5/webcomponents-base",
720
+ "module": "dist/UI5ElementMetadata.js"
721
+ }
722
+ ]
723
+ }
724
+ },
725
+ "description": "Returns an object with key-value pairs of slots and their metadata definitions",
726
+ "privacy": "public"
727
+ },
664
728
  {
665
729
  "kind": "method",
666
730
  "name": "getTag",
@@ -694,24 +758,13 @@
694
758
  },
695
759
  {
696
760
  "kind": "method",
697
- "name": "getPropertiesList",
698
- "return": {
699
- "type": {
700
- "text": "Array<string>"
701
- }
702
- },
703
- "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
704
- "privacy": "public"
705
- },
706
- {
707
- "kind": "method",
708
- "name": "getAttributesList",
761
+ "name": "hasIndividualSlots",
709
762
  "return": {
710
763
  "type": {
711
- "text": "Array<string>"
764
+ "text": "boolean"
712
765
  }
713
766
  },
714
- "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
767
+ "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
715
768
  "privacy": "public"
716
769
  },
717
770
  {
@@ -725,17 +778,6 @@
725
778
  "description": "Determines whether this UI5 Element supports any slots",
726
779
  "privacy": "public"
727
780
  },
728
- {
729
- "kind": "method",
730
- "name": "hasIndividualSlots",
731
- "return": {
732
- "type": {
733
- "text": "boolean"
734
- }
735
- },
736
- "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
737
- "privacy": "public"
738
- },
739
781
  {
740
782
  "kind": "method",
741
783
  "name": "slotsAreManaged",
@@ -760,56 +802,14 @@
760
802
  },
761
803
  {
762
804
  "kind": "method",
763
- "name": "getProperties",
764
- "return": {
765
- "type": {
766
- "text": "Record<string, Property>",
767
- "references": [
768
- {
769
- "name": "Property",
770
- "package": "@ui5/webcomponents-base",
771
- "module": "dist/UI5ElementMetadata.js"
772
- }
773
- ]
774
- }
775
- },
776
- "description": "Returns an object with key-value pairs of properties and their metadata definitions",
777
- "privacy": "public"
778
- },
779
- {
780
- "kind": "method",
781
- "name": "getEvents",
782
- "return": {
783
- "type": {
784
- "text": "EventData",
785
- "references": [
786
- {
787
- "name": "EventData",
788
- "package": "@ui5/webcomponents-base",
789
- "module": "dist/UI5ElementMetadata.js"
790
- }
791
- ]
792
- }
793
- },
794
- "description": "Returns an object with key-value pairs of events and their metadata definitions",
795
- "privacy": "public"
796
- },
797
- {
798
- "kind": "method",
799
- "name": "getSlots",
805
+ "name": "validateSlotValue",
806
+ "static": true,
800
807
  "return": {
801
808
  "type": {
802
- "text": "Record<string, Slot>",
803
- "references": [
804
- {
805
- "name": "Slot",
806
- "package": "@ui5/webcomponents-base",
807
- "module": "dist/UI5ElementMetadata.js"
808
- }
809
- ]
809
+ "text": "Node"
810
810
  }
811
811
  },
812
- "description": "Returns an object with key-value pairs of slots and their metadata definitions",
812
+ "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",
813
813
  "privacy": "public"
814
814
  }
815
815
  ],
@@ -881,6 +881,14 @@
881
881
  }
882
882
  },
883
883
  "parameters": [
884
+ {
885
+ "name": "params",
886
+ "type": {
887
+ "text": "Array<number | string>"
888
+ },
889
+ "description": "Values for the placeholders",
890
+ "_ui5privacy": "public"
891
+ },
884
892
  {
885
893
  "name": "textObj",
886
894
  "type": {
@@ -895,14 +903,6 @@
895
903
  },
896
904
  "description": "key/defaultText pair or just the key",
897
905
  "_ui5privacy": "public"
898
- },
899
- {
900
- "name": "params",
901
- "type": {
902
- "text": "Array<number | string>"
903
- },
904
- "description": "Values for the placeholders",
905
- "_ui5privacy": "public"
906
906
  }
907
907
  ],
908
908
  "description": "Returns a text in the currently loaded language",
@@ -1429,7 +1429,7 @@
1429
1429
  "members": [
1430
1430
  {
1431
1431
  "kind": "method",
1432
- "name": "register",
1432
+ "name": "deregister",
1433
1433
  "static": true,
1434
1434
  "return": {
1435
1435
  "type": {
@@ -1437,14 +1437,6 @@
1437
1437
  }
1438
1438
  },
1439
1439
  "parameters": [
1440
- {
1441
- "name": "element",
1442
- "type": {
1443
- "text": "HTMLElement"
1444
- },
1445
- "description": "UI5 Web Component or DOM Element to be observed",
1446
- "_ui5privacy": "public"
1447
- },
1448
1440
  {
1449
1441
  "name": "callback",
1450
1442
  "type": {
@@ -1457,7 +1449,15 @@
1457
1449
  }
1458
1450
  ]
1459
1451
  },
1460
- "description": "Callback to be executed",
1452
+ "description": "Callback to be removed",
1453
+ "_ui5privacy": "public"
1454
+ },
1455
+ {
1456
+ "name": "element",
1457
+ "type": {
1458
+ "text": "HTMLElement"
1459
+ },
1460
+ "description": "UI5 Web Component or DOM Element to be unobserved",
1461
1461
  "_ui5privacy": "public"
1462
1462
  }
1463
1463
  ],
@@ -1465,7 +1465,7 @@
1465
1465
  },
1466
1466
  {
1467
1467
  "kind": "method",
1468
- "name": "deregister",
1468
+ "name": "register",
1469
1469
  "static": true,
1470
1470
  "return": {
1471
1471
  "type": {
@@ -1473,14 +1473,6 @@
1473
1473
  }
1474
1474
  },
1475
1475
  "parameters": [
1476
- {
1477
- "name": "element",
1478
- "type": {
1479
- "text": "HTMLElement"
1480
- },
1481
- "description": "UI5 Web Component or DOM Element to be unobserved",
1482
- "_ui5privacy": "public"
1483
- },
1484
1476
  {
1485
1477
  "name": "callback",
1486
1478
  "type": {
@@ -1493,7 +1485,15 @@
1493
1485
  }
1494
1486
  ]
1495
1487
  },
1496
- "description": "Callback to be removed",
1488
+ "description": "Callback to be executed",
1489
+ "_ui5privacy": "public"
1490
+ },
1491
+ {
1492
+ "name": "element",
1493
+ "type": {
1494
+ "text": "HTMLElement"
1495
+ },
1496
+ "description": "UI5 Web Component or DOM Element to be observed",
1497
1497
  "_ui5privacy": "public"
1498
1498
  }
1499
1499
  ],
@@ -1957,16 +1957,16 @@
1957
1957
  "kind": "field",
1958
1958
  "static": true,
1959
1959
  "privacy": "public",
1960
- "default": "full",
1961
- "name": "Full",
1960
+ "default": "basic",
1961
+ "name": "Basic",
1962
1962
  "readonly": true
1963
1963
  },
1964
1964
  {
1965
1965
  "kind": "field",
1966
1966
  "static": true,
1967
1967
  "privacy": "public",
1968
- "default": "basic",
1969
- "name": "Basic",
1968
+ "default": "full",
1969
+ "name": "Full",
1970
1970
  "readonly": true
1971
1971
  },
1972
1972
  {
@@ -2013,32 +2013,32 @@
2013
2013
  "kind": "field",
2014
2014
  "static": true,
2015
2015
  "privacy": "public",
2016
- "default": "Gregorian",
2017
- "name": "Gregorian",
2016
+ "default": "Buddhist",
2017
+ "name": "Buddhist",
2018
2018
  "readonly": true
2019
2019
  },
2020
2020
  {
2021
2021
  "kind": "field",
2022
2022
  "static": true,
2023
2023
  "privacy": "public",
2024
- "default": "Islamic",
2025
- "name": "Islamic",
2024
+ "default": "Gregorian",
2025
+ "name": "Gregorian",
2026
2026
  "readonly": true
2027
2027
  },
2028
2028
  {
2029
2029
  "kind": "field",
2030
2030
  "static": true,
2031
2031
  "privacy": "public",
2032
- "default": "Japanese",
2033
- "name": "Japanese",
2032
+ "default": "Islamic",
2033
+ "name": "Islamic",
2034
2034
  "readonly": true
2035
2035
  },
2036
2036
  {
2037
2037
  "kind": "field",
2038
2038
  "static": true,
2039
2039
  "privacy": "public",
2040
- "default": "Buddhist",
2041
- "name": "Buddhist",
2040
+ "default": "Japanese",
2041
+ "name": "Japanese",
2042
2042
  "readonly": true
2043
2043
  },
2044
2044
  {
@@ -2092,18 +2092,18 @@
2092
2092
  "kind": "field",
2093
2093
  "static": true,
2094
2094
  "privacy": "public",
2095
- "description": "Static behavior: navigations stops at the first or last item.",
2096
- "default": "Static",
2097
- "name": "Static",
2095
+ "description": "Cycling behavior: navigating past the last item continues with the first and vice versa.",
2096
+ "default": "Cyclic",
2097
+ "name": "Cyclic",
2098
2098
  "readonly": true
2099
2099
  },
2100
2100
  {
2101
2101
  "kind": "field",
2102
2102
  "static": true,
2103
2103
  "privacy": "public",
2104
- "description": "Cycling behavior: navigating past the last item continues with the first and vice versa.",
2105
- "default": "Cyclic",
2106
- "name": "Cyclic",
2104
+ "description": "Static behavior: navigations stops at the first or last item.",
2105
+ "default": "Static",
2106
+ "name": "Static",
2107
2107
  "readonly": true
2108
2108
  }
2109
2109
  ]
@@ -2134,8 +2134,8 @@
2134
2134
  "kind": "field",
2135
2135
  "static": true,
2136
2136
  "privacy": "public",
2137
- "default": "On",
2138
- "name": "On",
2137
+ "default": "After",
2138
+ "name": "After",
2139
2139
  "readonly": true
2140
2140
  },
2141
2141
  {
@@ -2150,8 +2150,8 @@
2150
2150
  "kind": "field",
2151
2151
  "static": true,
2152
2152
  "privacy": "public",
2153
- "default": "After",
2154
- "name": "After",
2153
+ "default": "On",
2154
+ "name": "On",
2155
2155
  "readonly": true
2156
2156
  }
2157
2157
  ]
@@ -2190,24 +2190,24 @@
2190
2190
  "kind": "field",
2191
2191
  "static": true,
2192
2192
  "privacy": "public",
2193
- "default": "Vertical",
2194
- "name": "Vertical",
2193
+ "default": "Horizontal",
2194
+ "name": "Horizontal",
2195
2195
  "readonly": true
2196
2196
  },
2197
2197
  {
2198
2198
  "kind": "field",
2199
2199
  "static": true,
2200
2200
  "privacy": "public",
2201
- "default": "Horizontal",
2202
- "name": "Horizontal",
2201
+ "default": "Paging",
2202
+ "name": "Paging",
2203
2203
  "readonly": true
2204
2204
  },
2205
2205
  {
2206
2206
  "kind": "field",
2207
2207
  "static": true,
2208
2208
  "privacy": "public",
2209
- "default": "Paging",
2210
- "name": "Paging",
2209
+ "default": "Vertical",
2210
+ "name": "Vertical",
2211
2211
  "readonly": true
2212
2212
  }
2213
2213
  ]
@@ -2250,15 +2250,6 @@
2250
2250
  "_ui5privacy": "public",
2251
2251
  "_ui5since": "2.8.0",
2252
2252
  "members": [
2253
- {
2254
- "kind": "field",
2255
- "static": true,
2256
- "privacy": "public",
2257
- "description": "Sorting is not applied.",
2258
- "default": "None",
2259
- "name": "None",
2260
- "readonly": true
2261
- },
2262
2253
  {
2263
2254
  "kind": "field",
2264
2255
  "static": true,
@@ -2276,6 +2267,15 @@
2276
2267
  "default": "Descending",
2277
2268
  "name": "Descending",
2278
2269
  "readonly": true
2270
+ },
2271
+ {
2272
+ "kind": "field",
2273
+ "static": true,
2274
+ "privacy": "public",
2275
+ "description": "Sorting is not applied.",
2276
+ "default": "None",
2277
+ "name": "None",
2278
+ "readonly": true
2279
2279
  }
2280
2280
  ]
2281
2281
  }
@@ -2305,40 +2305,40 @@
2305
2305
  "kind": "field",
2306
2306
  "static": true,
2307
2307
  "privacy": "public",
2308
- "default": "None",
2309
- "name": "None",
2308
+ "default": "Critical",
2309
+ "name": "Critical",
2310
2310
  "readonly": true
2311
2311
  },
2312
2312
  {
2313
2313
  "kind": "field",
2314
2314
  "static": true,
2315
2315
  "privacy": "public",
2316
- "default": "Positive",
2317
- "name": "Positive",
2316
+ "default": "Information",
2317
+ "name": "Information",
2318
2318
  "readonly": true
2319
2319
  },
2320
2320
  {
2321
2321
  "kind": "field",
2322
2322
  "static": true,
2323
2323
  "privacy": "public",
2324
- "default": "Critical",
2325
- "name": "Critical",
2324
+ "default": "Negative",
2325
+ "name": "Negative",
2326
2326
  "readonly": true
2327
2327
  },
2328
2328
  {
2329
2329
  "kind": "field",
2330
2330
  "static": true,
2331
2331
  "privacy": "public",
2332
- "default": "Negative",
2333
- "name": "Negative",
2332
+ "default": "None",
2333
+ "name": "None",
2334
2334
  "readonly": true
2335
2335
  },
2336
2336
  {
2337
2337
  "kind": "field",
2338
2338
  "static": true,
2339
2339
  "privacy": "public",
2340
- "default": "Information",
2341
- "name": "Information",
2340
+ "default": "Positive",
2341
+ "name": "Positive",
2342
2342
  "readonly": true
2343
2343
  }
2344
2344
  ]