@openui5/ts-types 1.126.1 → 1.127.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -3831,6 +3831,10 @@ declare namespace sap {
3831
3831
  * on a selectionDetails popover
3832
3832
  */
3833
3833
  unitPath?: object;
3834
+ /**
3835
+ * The timeUnit type for a TimeDimension
3836
+ */
3837
+ timeUnitType?: object;
3834
3838
  };
3835
3839
 
3836
3840
  /**
@@ -9800,6 +9804,11 @@ declare namespace sap {
9800
9804
  * ID of the navigated item. (This is needed to set the corresponding aria-attribute)
9801
9805
  */
9802
9806
  itemId?: string;
9807
+
9808
+ /**
9809
+ * If `true` the filtering was executed case sensitive
9810
+ */
9811
+ caseSensitive?: boolean;
9803
9812
  }
9804
9813
 
9805
9814
  /**
@@ -9865,12 +9874,22 @@ declare namespace sap {
9865
9874
  */
9866
9875
  itemId?: string;
9867
9876
 
9877
+ /**
9878
+ * Number of found items
9879
+ */
9880
+ items?: int;
9881
+
9868
9882
  /**
9869
9883
  * If `true` the filtering was executed case sensitive
9870
9884
  */
9871
9885
  caseSensitive?: boolean;
9872
9886
  }
9873
9887
 
9888
+ /**
9889
+ * Parameters of the Container#visualFocusSet event.
9890
+ */
9891
+ interface Container$VisualFocusSetEventParameters {}
9892
+
9874
9893
  /**
9875
9894
  * Parameters of the Content#cancel event.
9876
9895
  */
@@ -9906,6 +9925,11 @@ declare namespace sap {
9906
9925
  * ID of the navigated item. (This is needed to set the corresponding aria-attribute)
9907
9926
  */
9908
9927
  itemId?: string;
9928
+
9929
+ /**
9930
+ * If `true` the filtering was executed case sensitive
9931
+ */
9932
+ caseSensitive?: boolean;
9909
9933
  }
9910
9934
 
9911
9935
  /**
@@ -9951,12 +9975,22 @@ declare namespace sap {
9951
9975
  */
9952
9976
  itemId?: string;
9953
9977
 
9978
+ /**
9979
+ * Number of found items
9980
+ */
9981
+ items?: int;
9982
+
9954
9983
  /**
9955
9984
  * If `true` the filtering was executed case sensitive
9956
9985
  */
9957
9986
  caseSensitive?: boolean;
9958
9987
  }
9959
9988
 
9989
+ /**
9990
+ * Parameters of the Content#visualFocusSet event.
9991
+ */
9992
+ interface Content$VisualFocusSetEventParameters {}
9993
+
9960
9994
  /**
9961
9995
  * Container for the {@link sap.ui.mdc.ValueHelp ValueHelp} element.
9962
9996
  *
@@ -10239,6 +10273,17 @@ declare namespace sap {
10239
10273
  */
10240
10274
  oEvent: sap.ui.base.Event
10241
10275
  ): void;
10276
+ /**
10277
+ * Handles the `visualFocusSet` event of the content.
10278
+ *
10279
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10280
+ */
10281
+ handleVisualFocusSet(
10282
+ /**
10283
+ * event
10284
+ */
10285
+ oEvent: sap.ui.base.Event
10286
+ ): void;
10242
10287
  /**
10243
10288
  * Checks for the provided `sap.ui.mdc.valuehelp.base.Content` in the aggregation {@link #getContent content}.
10244
10289
  * and returns its index if found or -1 otherwise.
@@ -11399,6 +11444,14 @@ declare namespace sap {
11399
11444
  Container
11400
11445
  >;
11401
11446
 
11447
+ /**
11448
+ * Event object of the Container#visualFocusSet event.
11449
+ */
11450
+ type Container$VisualFocusSetEvent = sap.ui.base.Event<
11451
+ Container$VisualFocusSetEventParameters,
11452
+ Container
11453
+ >;
11454
+
11402
11455
  /**
11403
11456
  * Event object of the Content#cancel event.
11404
11457
  */
@@ -11446,6 +11499,14 @@ declare namespace sap {
11446
11499
  Content$TypeaheadSuggestedEventParameters,
11447
11500
  Content
11448
11501
  >;
11502
+
11503
+ /**
11504
+ * Event object of the Content#visualFocusSet event.
11505
+ */
11506
+ type Content$VisualFocusSetEvent = sap.ui.base.Event<
11507
+ Content$VisualFocusSetEventParameters,
11508
+ Content
11509
+ >;
11449
11510
  }
11450
11511
  /**
11451
11512
  * Content-modules that is used in {@link sap.ui.mdc.valueHelp.Popover Popover} or {@link sap.ui.mdc.valueHelp.Dialog Dialog}
@@ -18267,6 +18328,11 @@ declare namespace sap {
18267
18328
  * ID of the navigated item. (This is needed to set the corresponding aria-attribute)
18268
18329
  */
18269
18330
  itemId?: string;
18331
+
18332
+ /**
18333
+ * If `true` the filtering was executed case sensitive
18334
+ */
18335
+ caseSensitive?: boolean;
18270
18336
  }
18271
18337
 
18272
18338
  /**
@@ -18343,12 +18409,22 @@ declare namespace sap {
18343
18409
  */
18344
18410
  itemId?: string;
18345
18411
 
18412
+ /**
18413
+ * Number of found items
18414
+ */
18415
+ items?: int;
18416
+
18346
18417
  /**
18347
18418
  * If `true` the filtering was executed case sensitive
18348
18419
  */
18349
18420
  caseSensitive?: boolean;
18350
18421
  }
18351
18422
 
18423
+ /**
18424
+ * Parameters of the ValueHelp#visualFocusSet event.
18425
+ */
18426
+ interface ValueHelp$VisualFocusSetEventParameters {}
18427
+
18352
18428
  /**
18353
18429
  * The `Chart` control creates a chart based on metadata and the configuration specified.
18354
18430
  * **Note:** The inner chart needs to be assigned `ChartDelegate`.
@@ -23554,6 +23630,14 @@ declare namespace sap {
23554
23630
  ValueHelp$TypeaheadSuggestedEventParameters,
23555
23631
  ValueHelp
23556
23632
  >;
23633
+
23634
+ /**
23635
+ * Event object of the ValueHelp#visualFocusSet event.
23636
+ */
23637
+ type ValueHelp$VisualFocusSetEvent = sap.ui.base.Event<
23638
+ ValueHelp$VisualFocusSetEventParameters,
23639
+ ValueHelp
23640
+ >;
23557
23641
  }
23558
23642
  }
23559
23643
 
@@ -23810,6 +23894,8 @@ declare namespace sap {
23810
23894
 
23811
23895
  "sap/ui/mdc/util/DateUtil": undefined;
23812
23896
 
23897
+ "sap/ui/mdc/util/DensityHelper": undefined;
23898
+
23813
23899
  "sap/ui/mdc/util/FilterUtil": undefined;
23814
23900
 
23815
23901
  "sap/ui/mdc/util/InfoBar": undefined;
@@ -1,10 +1,12 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
5
5
  * Starts UI adaptation, initiated for an application at the passed root control instance. With this API
6
6
  * you are also able to modify the UI adaptation plugins list and or add some event handler functions to
7
- * be called on start, failed and stop events.
7
+ * be called on start, failed and stop events. CAUTION: In the key user layer (CUSTOMER) the adaptation
8
+ * mode starts automatically after a reload triggered by the adaptation mode (e.g. due to personalization
9
+ * changes or versioning). In this case the RuntimeAuthoring class will be started with default parameters.
8
10
  *
9
11
  * @since 1.83
10
12
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1615,15 +1615,15 @@ declare namespace sap {
1615
1615
  */
1616
1616
  enum Type {
1617
1617
  /**
1618
- * Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Auto}
1618
+ * Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Auto}
1619
1619
  */
1620
1620
  Auto = "Auto",
1621
1621
  /**
1622
- * Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Fixed}
1622
+ * Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Fixed}
1623
1623
  */
1624
1624
  Fixed = "Fixed",
1625
1625
  /**
1626
- * Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Interactive}
1626
+ * Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Interactive}
1627
1627
  */
1628
1628
  Interactive = "Interactive",
1629
1629
  }
@@ -2419,6 +2419,10 @@ declare namespace sap {
2419
2419
 
2420
2420
  /**
2421
2421
  * Flag to enable or disable column reordering
2422
+ *
2423
+ * **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
2424
+ * is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
2425
+ * can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
2422
2426
  */
2423
2427
  enableColumnReordering?:
2424
2428
  | boolean
@@ -6468,8 +6472,10 @@ declare namespace sap {
6468
6472
  * This allows the Table control to handle huge amounts of data. Nevertheless, restrictions apply regarding
6469
6473
  * the number of displayed columns. Keep the number as low as possible to improve performance. Due to the
6470
6474
  * nature of tables, the used control for column templates also has a big influence on the performance.
6471
- * The Table control relies completely on data binding, and its supported feature set is tightly
6472
- * coupled to the data model and binding being used.
6475
+ * Because of the described reuse of the controls during scrolling, all data-related changes must be based
6476
+ * on bindings. Static changes, such as calling mutator functions or defining a one-time binding, must be
6477
+ * avoided. The Table control relies completely on data binding, and its supported feature set
6478
+ * is tightly coupled to the data model and binding being used.
6473
6479
  */
6474
6480
  class Table extends sap.ui.core.Control {
6475
6481
  /**
@@ -8475,6 +8481,10 @@ declare namespace sap {
8475
8481
  *
8476
8482
  * Flag to enable or disable column reordering
8477
8483
  *
8484
+ * **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
8485
+ * is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
8486
+ * can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
8487
+ *
8478
8488
  * Default value is `true`.
8479
8489
  *
8480
8490
  *
@@ -9367,6 +9377,10 @@ declare namespace sap {
9367
9377
  *
9368
9378
  * Flag to enable or disable column reordering
9369
9379
  *
9380
+ * **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
9381
+ * is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
9382
+ * can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
9383
+ *
9370
9384
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9371
9385
  *
9372
9386
  * Default value is `true`.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.126.1
1
+ // For Library Version: 1.127.1
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {