@openui5/types 1.130.0 → 1.130.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.130.0",
3
+ "version": "1.130.2",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.130.0
282
+ // For Library Version: 1.130.2
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -50887,10 +50887,10 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
50887
50887
  */
50888
50888
  oContext: Context,
50889
50889
  /**
50890
- * Parameters, specifying the aggregation level for which contexts shall be fetched or (legacy signature
50891
- * variant) index of first child entry to return from the parent context (zero-based)
50890
+ * Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
50891
+ * first child entry to return from the parent contexts
50892
50892
  */
50893
- mParameters:
50893
+ mParameters?:
50894
50894
  | {
50895
50895
  /**
50896
50896
  * Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
@@ -51002,7 +51002,7 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
51002
51002
  * value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
51003
51003
  * the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
51004
51004
  */
51005
- mParameters:
51005
+ mParameters?:
51006
51006
  | {
51007
51007
  /**
51008
51008
  * Number of entries to return at and after the given start index; defaults to the model's size limit, see
@@ -54602,11 +54602,11 @@ declare module "sap/ui/model/ClientTreeBinding" {
54602
54602
  */
54603
54603
  getCount(): number | undefined;
54604
54604
  /**
54605
- * Return node contexts for the tree
54605
+ * Return node contexts for the tree.
54606
54606
  *
54607
54607
  * @ui5-protected Do not call from applications (only from related classes in the framework)
54608
54608
  *
54609
- * @returns the contexts array
54609
+ * @returns the context's array
54610
54610
  */
54611
54611
  getNodeContexts(
54612
54612
  /**
@@ -54614,42 +54614,44 @@ declare module "sap/ui/model/ClientTreeBinding" {
54614
54614
  */
54615
54615
  oContext: Context,
54616
54616
  /**
54617
- * the startIndex where to start the retrieval of contexts
54617
+ * the index from which to start the retrieval of contexts
54618
54618
  */
54619
- iStartIndex: int,
54619
+ iStartIndex?: int,
54620
54620
  /**
54621
- * determines how many contexts to retrieve beginning from the start index.
54621
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
54622
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
54622
54623
  */
54623
- iLength: int
54624
+ iLength?: int
54624
54625
  ): Context[];
54625
54626
  /**
54626
- * Return root contexts for the tree
54627
+ * Return root contexts for the tree.
54627
54628
  *
54628
54629
  * @ui5-protected Do not call from applications (only from related classes in the framework)
54629
54630
  *
54630
- * @returns the contexts array
54631
+ * @returns the context's array
54631
54632
  */
54632
54633
  getRootContexts(
54633
54634
  /**
54634
- * the startIndex where to start the retrieval of contexts
54635
+ * the index from which to start the retrieval of contexts
54635
54636
  */
54636
- iStartIndex: int,
54637
+ iStartIndex?: int,
54637
54638
  /**
54638
- * determines how many contexts to retrieve beginning from the start index.
54639
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
54640
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
54639
54641
  */
54640
- iLength: int
54641
- ): object[];
54642
+ iLength?: int
54643
+ ): Context[];
54642
54644
  /**
54643
54645
  * Returns if the node has child nodes.
54644
54646
  *
54645
54647
  *
54646
- * @returns true if node has children
54648
+ * @returns `true` if the node has children
54647
54649
  */
54648
54650
  hasChildren(
54649
54651
  /**
54650
54652
  * the context element of the node
54651
54653
  */
54652
- oContext: object
54654
+ oContext: Context
54653
54655
  ): boolean;
54654
54656
  /**
54655
54657
  * Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
@@ -77710,6 +77712,8 @@ declare module "sap/ui/model/TreeBinding" {
77710
77712
 
77711
77713
  import Model from "sap/ui/model/Model";
77712
77714
 
77715
+ import Context from "sap/ui/model/Context";
77716
+
77713
77717
  import Filter from "sap/ui/model/Filter";
77714
77718
 
77715
77719
  import Sorter from "sap/ui/model/Sorter";
@@ -77718,8 +77722,6 @@ declare module "sap/ui/model/TreeBinding" {
77718
77722
 
77719
77723
  import Metadata from "sap/ui/base/Metadata";
77720
77724
 
77721
- import Context from "sap/ui/model/Context";
77722
-
77723
77725
  /**
77724
77726
  * The TreeBinding is a specific binding for trees in the model, which can be used to populate Trees.
77725
77727
  */
@@ -77743,7 +77745,7 @@ declare module "sap/ui/model/TreeBinding" {
77743
77745
  /**
77744
77746
  * Context object for this binding (optional)
77745
77747
  */
77746
- oContext?: object,
77748
+ oContext?: Context,
77747
77749
  /**
77748
77750
  * The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
77749
77751
  * to replace them
@@ -77752,7 +77754,7 @@ declare module "sap/ui/model/TreeBinding" {
77752
77754
  /**
77753
77755
  * Additional model specific parameters (optional)
77754
77756
  */
77755
- mParameters?: string,
77757
+ mParameters?: object,
77756
77758
  /**
77757
77759
  * The sorters used initially; call {@link #sort} to replace them
77758
77760
  */
@@ -77844,7 +77846,7 @@ declare module "sap/ui/model/TreeBinding" {
77844
77846
  sFilterType?: FilterType | keyof typeof FilterType
77845
77847
  ): void;
77846
77848
  /**
77847
- * Returns the number of child nodes of a specific context
77849
+ * Returns the number of child nodes of a specific context.
77848
77850
  *
77849
77851
  *
77850
77852
  * @returns the number of children
@@ -77853,7 +77855,7 @@ declare module "sap/ui/model/TreeBinding" {
77853
77855
  /**
77854
77856
  * the context element of the node
77855
77857
  */
77856
- oContext: Object
77858
+ oContext: Context
77857
77859
  ): int;
77858
77860
  /**
77859
77861
  * Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
@@ -77869,7 +77871,7 @@ declare module "sap/ui/model/TreeBinding" {
77869
77871
  */
77870
77872
  getCount(): number | undefined;
77871
77873
  /**
77872
- * Returns the current value of the bound target
77874
+ * Returns the current value of the bound target.
77873
77875
  *
77874
77876
  *
77875
77877
  * @returns the array of child contexts for the given node
@@ -77880,41 +77882,43 @@ declare module "sap/ui/model/TreeBinding" {
77880
77882
  */
77881
77883
  oContext: Context,
77882
77884
  /**
77883
- * the startIndex where to start the retrieval of contexts
77885
+ * the index from which to start the retrieval of contexts
77884
77886
  */
77885
- iStartIndex: int,
77887
+ iStartIndex?: int,
77886
77888
  /**
77887
- * determines how many contexts to retrieve beginning from the start index.
77889
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
77890
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
77888
77891
  */
77889
- iLength: int
77892
+ iLength?: int
77890
77893
  ): Context[];
77891
77894
  /**
77892
- * Returns the current value of the bound target
77895
+ * Returns the current value of the bound target.
77893
77896
  *
77894
77897
  *
77895
77898
  * @returns the array of child contexts for the root node
77896
77899
  */
77897
77900
  getRootContexts(
77898
77901
  /**
77899
- * the startIndex where to start the retrieval of contexts
77902
+ * the index from which to start the retrieval of contexts
77900
77903
  */
77901
- iStartIndex: int,
77904
+ iStartIndex?: int,
77902
77905
  /**
77903
- * determines how many contexts to retrieve beginning from the start index.
77906
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
77907
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
77904
77908
  */
77905
- iLength: int
77906
- ): any[];
77909
+ iLength?: int
77910
+ ): Context[];
77907
77911
  /**
77908
- * Returns if the node has child nodes
77912
+ * Returns `true` if the node has child nodes.
77909
77913
  *
77910
77914
  *
77911
- * @returns true if node has children
77915
+ * @returns `true` if the node has children
77912
77916
  */
77913
77917
  hasChildren(
77914
77918
  /**
77915
77919
  * the context element of the node
77916
77920
  */
77917
- oContext: Object
77921
+ oContext: Context
77918
77922
  ): boolean;
77919
77923
  /**
77920
77924
  * Sorts the tree according to the sorter definitions.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.130.2
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**