@openui5/types 1.113.0 → 1.115.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1416 -1005
- package/types/sap.m.d.ts +7415 -5818
- package/types/sap.tnt.d.ts +138 -67
- package/types/sap.ui.codeeditor.d.ts +37 -30
- package/types/sap.ui.commons.d.ts +936 -708
- package/types/sap.ui.core.d.ts +6435 -3941
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +102 -82
- package/types/sap.ui.integration.d.ts +2489 -2327
- package/types/sap.ui.layout.d.ts +378 -398
- package/types/sap.ui.mdc.d.ts +22041 -115
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +13 -11
- package/types/sap.ui.support.d.ts +7 -7
- package/types/sap.ui.table.d.ts +628 -478
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1013 -723
- package/types/sap.ui.ux3.d.ts +847 -592
- package/types/sap.ui.webc.common.d.ts +5 -3
- package/types/sap.ui.webc.fiori.d.ts +530 -345
- package/types/sap.ui.webc.main.d.ts +1114 -835
- package/types/sap.uxap.d.ts +309 -222
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -508,12 +508,12 @@ declare module "sap/ui/layout/BlockLayout" {
|
|
|
508
508
|
* - Light - a layout scheme with light colors
|
|
509
509
|
* - Accent - a layout scheme with 11 pre-defined color sets
|
|
510
510
|
* - Dashboard - a layout scheme with additional borders and no background colors Background colors
|
|
511
|
-
*
|
|
511
|
+
* are attached directly to the blocks of the layout.
|
|
512
512
|
*
|
|
513
|
-
* **Note:** With version 1.48 colors can be set for each individual {@link sap.ui.layout.BlockLayoutCell
|
|
514
|
-
*
|
|
515
|
-
*
|
|
516
|
-
*
|
|
513
|
+
* **Note:** With version 1.48 colors can be set for each individual {@link sap.ui.layout.BlockLayoutCell cell}.
|
|
514
|
+
* There are 11 pre-defined color sets, each with 4 different shades for the SAP Belize theme and 6 different
|
|
515
|
+
* shades for the Quartz and Horizon themes. To change the background of a particular cell, set `backgroundColorSet`
|
|
516
|
+
* (main color) and `backgroundColorShade` (shade).
|
|
517
517
|
*
|
|
518
518
|
* **Note:** Usage of disabled, emphasized or subtle links as titles is not recommended. Dark background
|
|
519
519
|
* designs, for example Accent, are not fully supported with regards to Accessibility when used with links
|
|
@@ -522,14 +522,14 @@ declare module "sap/ui/layout/BlockLayout" {
|
|
|
522
522
|
* Usage: When to use:
|
|
523
523
|
* - You want to create a catalogue-like page with sections of blocks.
|
|
524
524
|
* - The BlockLayout is intended for developing administrative tools and applications. When not
|
|
525
|
-
*
|
|
526
|
-
* - You want to display properties or features of one content item. Use a {@link sap.uxap.ObjectPageLayout
|
|
527
|
-
*
|
|
525
|
+
* to use:
|
|
526
|
+
* - You want to display properties or features of one content item. Use a {@link sap.uxap.ObjectPageLayout object page }
|
|
527
|
+
* or {@link sap.f.DynamicPage dynamic page} instead. Responsive Behavior:
|
|
528
528
|
* - The breakpoints of the block layout react to the width of the control itself and not to the actual
|
|
529
|
-
*
|
|
529
|
+
* screen size.
|
|
530
530
|
* - On small screens all blocks will wrap to a single scrollable column
|
|
531
531
|
*/
|
|
532
|
-
|
|
532
|
+
class BlockLayout extends Control {
|
|
533
533
|
/**
|
|
534
534
|
* Constructor for a new BlockLayout.
|
|
535
535
|
*
|
|
@@ -728,6 +728,7 @@ declare module "sap/ui/layout/BlockLayout" {
|
|
|
728
728
|
bKeepFontSize?: boolean
|
|
729
729
|
): this;
|
|
730
730
|
}
|
|
731
|
+
export default BlockLayout;
|
|
731
732
|
|
|
732
733
|
export interface $BlockLayoutSettings extends $ControlSettings {
|
|
733
734
|
/**
|
|
@@ -781,7 +782,7 @@ declare module "sap/ui/layout/BlockLayoutCell" {
|
|
|
781
782
|
* The BlockLayoutCell is used as an aggregation of the BlockLayoutRow. It contains Controls. The BlockLayoutCell
|
|
782
783
|
* should be used only as aggregation of the BlockLayoutRow.
|
|
783
784
|
*/
|
|
784
|
-
|
|
785
|
+
class BlockLayoutCell extends Control {
|
|
785
786
|
/**
|
|
786
787
|
* Constructor for a new BlockLayoutCell.
|
|
787
788
|
*
|
|
@@ -1121,6 +1122,7 @@ declare module "sap/ui/layout/BlockLayoutCell" {
|
|
|
1121
1122
|
iWidth: number
|
|
1122
1123
|
): this;
|
|
1123
1124
|
}
|
|
1125
|
+
export default BlockLayoutCell;
|
|
1124
1126
|
|
|
1125
1127
|
export interface $BlockLayoutCellSettings extends $ControlSettings {
|
|
1126
1128
|
/**
|
|
@@ -1212,7 +1214,7 @@ declare module "sap/ui/layout/BlockLayoutCellData" {
|
|
|
1212
1214
|
*
|
|
1213
1215
|
* Holds layout data for the BlockLayoutCells contents.
|
|
1214
1216
|
*/
|
|
1215
|
-
|
|
1217
|
+
class BlockLayoutCellData extends LayoutData {
|
|
1216
1218
|
/**
|
|
1217
1219
|
* Constructor for a new BlockLayoutCellData.
|
|
1218
1220
|
*
|
|
@@ -1386,6 +1388,7 @@ declare module "sap/ui/layout/BlockLayoutCellData" {
|
|
|
1386
1388
|
iXlSize?: int
|
|
1387
1389
|
): this;
|
|
1388
1390
|
}
|
|
1391
|
+
export default BlockLayoutCellData;
|
|
1389
1392
|
|
|
1390
1393
|
export interface $BlockLayoutCellDataSettings extends $LayoutDataSettings {
|
|
1391
1394
|
/**
|
|
@@ -1432,7 +1435,7 @@ declare module "sap/ui/layout/BlockLayoutRow" {
|
|
|
1432
1435
|
* The BlockLayoutRow is used as an aggregation to the BlockLayout. It aggregates Block Layout cells. The
|
|
1433
1436
|
* BlockLayoutRow has 2 rendering modes - scrollable and non scrollable.
|
|
1434
1437
|
*/
|
|
1435
|
-
|
|
1438
|
+
class BlockLayoutRow extends Control {
|
|
1436
1439
|
/**
|
|
1437
1440
|
* Constructor for a new BlockLayoutRow.
|
|
1438
1441
|
*
|
|
@@ -1526,8 +1529,7 @@ declare module "sap/ui/layout/BlockLayoutRow" {
|
|
|
1526
1529
|
/**
|
|
1527
1530
|
* @SINCE 1.42
|
|
1528
1531
|
*
|
|
1529
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAccentCells
|
|
1530
|
-
* accentCells}.
|
|
1532
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAccentCells accentCells}.
|
|
1531
1533
|
*/
|
|
1532
1534
|
getAccentCells(): ID[];
|
|
1533
1535
|
/**
|
|
@@ -1654,6 +1656,7 @@ declare module "sap/ui/layout/BlockLayoutRow" {
|
|
|
1654
1656
|
bScrollable?: boolean
|
|
1655
1657
|
): this;
|
|
1656
1658
|
}
|
|
1659
|
+
export default BlockLayoutRow;
|
|
1657
1660
|
|
|
1658
1661
|
export interface $BlockLayoutRowSettings extends $ControlSettings {
|
|
1659
1662
|
/**
|
|
@@ -1742,10 +1745,10 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1742
1745
|
* - Grid lines - The lines around and between the rows and columns
|
|
1743
1746
|
* - Grid tracks - The space between any two lines in the grid
|
|
1744
1747
|
* - "fr" Unit - A special grid unit (short from "fraction") which represents a fraction of the available
|
|
1745
|
-
*
|
|
1748
|
+
* space in the grid
|
|
1746
1749
|
* - Implicit and Explicit grid - Explicit grid consists of rows and columns defined with `gridTemplateColumns`
|
|
1747
|
-
*
|
|
1748
|
-
*
|
|
1750
|
+
* and `gridTemplateRows`. The grid also creates rows and columns on its own when needed. Their dimensions
|
|
1751
|
+
* are defined with `gridAutoColumns` and `gridAutoRows`.
|
|
1749
1752
|
*
|
|
1750
1753
|
* Structure: The `CSSGrid` has the following elements:
|
|
1751
1754
|
* - `items` - The items of the `CSSGrid`
|
|
@@ -1754,33 +1757,30 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1754
1757
|
* Usage:
|
|
1755
1758
|
*
|
|
1756
1759
|
* For general cases, use the `CSSGrid` properties to configure how the layout should look. For Box case
|
|
1757
|
-
* (equal sized items), use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout}
|
|
1760
|
+
* (equal sized items), use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout }
|
|
1758
1761
|
* For Grids which need different configurations based on available width, use `customLayout` aggregation
|
|
1759
1762
|
* with {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout} To set a specific position
|
|
1760
|
-
* to an item or define its dimensions in the grid, pass `layoutData` of type {@link sap.ui.layout.cssgrid.GridItemLayoutData
|
|
1761
|
-
* GridItemLayoutData}
|
|
1763
|
+
* to an item or define its dimensions in the grid, pass `layoutData` of type {@link sap.ui.layout.cssgrid.GridItemLayoutData GridItemLayoutData}
|
|
1762
1764
|
*
|
|
1763
1765
|
* When to use
|
|
1764
1766
|
* - If a two-dimensional layout configuration is needed (both columns and rows are defined)
|
|
1765
1767
|
*
|
|
1766
1768
|
* When not to use
|
|
1767
|
-
* - If the layout needs to be defined only by one dimension (either column or row, not both). Use {@link
|
|
1768
|
-
*
|
|
1769
|
+
* - If the layout needs to be defined only by one dimension (either column or row, not both). Use {@link sap.m.FlexBox FlexBox }
|
|
1770
|
+
* instead.
|
|
1769
1771
|
*
|
|
1770
1772
|
* Responsive behavior:
|
|
1771
1773
|
* - Fully configurable by the developer. It is possible to create a "breathing" columns layout which
|
|
1772
|
-
*
|
|
1773
|
-
* - It is possible to pass a {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout}
|
|
1774
|
-
*
|
|
1775
|
-
*
|
|
1774
|
+
* means columns width will grow/shrink depending on grid size.
|
|
1775
|
+
* - It is possible to pass a {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout }
|
|
1776
|
+
* to the `customLayout` aggregation of the `CSSGrid` and configure how it will look in different breakpoints
|
|
1777
|
+
* (S, M, L, XL).
|
|
1776
1778
|
*
|
|
1777
1779
|
* Out of current scope::
|
|
1778
1780
|
* - Alignment and ordering
|
|
1779
1781
|
* - Named grid areas and lines
|
|
1780
1782
|
*/
|
|
1781
|
-
|
|
1782
|
-
extends Control
|
|
1783
|
-
implements cssgrid.IGridConfigurable {
|
|
1783
|
+
class CSSGrid extends Control implements cssgrid.IGridConfigurable {
|
|
1784
1784
|
__implements__sap_ui_layout_cssgrid_IGridConfigurable: boolean;
|
|
1785
1785
|
/**
|
|
1786
1786
|
* Constructor for a new CSSGrid.
|
|
@@ -1789,7 +1789,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1789
1789
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1790
1790
|
* of the syntax of the settings object.
|
|
1791
1791
|
* See:
|
|
1792
|
-
* {@link topic
|
|
1792
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
1793
1793
|
* {@link fiori:https://experience.sap.com/fiori-design-web/flexible-grid/ Flexible Grid}
|
|
1794
1794
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
|
|
1795
1795
|
*/
|
|
@@ -1806,7 +1806,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1806
1806
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1807
1807
|
* of the syntax of the settings object.
|
|
1808
1808
|
* See:
|
|
1809
|
-
* {@link topic
|
|
1809
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
1810
1810
|
* {@link fiori:https://experience.sap.com/fiori-design-web/flexible-grid/ Flexible Grid}
|
|
1811
1811
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
|
|
1812
1812
|
*/
|
|
@@ -1882,8 +1882,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1882
1882
|
/**
|
|
1883
1883
|
* Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
|
|
1884
1884
|
*
|
|
1885
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
1886
|
-
* MDN web docs: grid-auto-columns}
|
|
1885
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
1887
1886
|
*
|
|
1888
1887
|
* Default value is `empty string`.
|
|
1889
1888
|
*
|
|
@@ -1893,8 +1892,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1893
1892
|
/**
|
|
1894
1893
|
* Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
|
|
1895
1894
|
*
|
|
1896
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
1897
|
-
* MDN web docs: grid-auto-flow}
|
|
1895
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
1898
1896
|
*
|
|
1899
1897
|
* Default value is `"Row"`.
|
|
1900
1898
|
*
|
|
@@ -1906,8 +1904,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1906
1904
|
/**
|
|
1907
1905
|
* Gets current value of property {@link #getGridAutoRows gridAutoRows}.
|
|
1908
1906
|
*
|
|
1909
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
1910
|
-
* MDN web docs: grid-auto-rows}
|
|
1907
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
1911
1908
|
*
|
|
1912
1909
|
* Default value is `empty string`.
|
|
1913
1910
|
*
|
|
@@ -1917,8 +1914,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1917
1914
|
/**
|
|
1918
1915
|
* Gets current value of property {@link #getGridColumnGap gridColumnGap}.
|
|
1919
1916
|
*
|
|
1920
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
1921
|
-
* MDN web docs: grid-column-gap}
|
|
1917
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
1922
1918
|
*
|
|
1923
1919
|
* Default value is `empty string`.
|
|
1924
1920
|
*
|
|
@@ -1936,9 +1932,9 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1936
1932
|
/**
|
|
1937
1933
|
* Gets current value of property {@link #getGridGap gridGap}.
|
|
1938
1934
|
*
|
|
1939
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
1940
|
-
*
|
|
1941
|
-
*
|
|
1935
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
|
|
1936
|
+
* It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
|
|
1937
|
+
* less priority and will be overwritten.
|
|
1942
1938
|
*
|
|
1943
1939
|
* Default value is `empty string`.
|
|
1944
1940
|
*
|
|
@@ -1956,8 +1952,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1956
1952
|
/**
|
|
1957
1953
|
* Gets current value of property {@link #getGridRowGap gridRowGap}.
|
|
1958
1954
|
*
|
|
1959
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
1960
|
-
* MDN web docs: grid-row-gap}
|
|
1955
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
1961
1956
|
*
|
|
1962
1957
|
* Default value is `empty string`.
|
|
1963
1958
|
*
|
|
@@ -1967,8 +1962,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1967
1962
|
/**
|
|
1968
1963
|
* Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
1969
1964
|
*
|
|
1970
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
1971
|
-
* MDN web docs: grid-template-columns}
|
|
1965
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
1972
1966
|
*
|
|
1973
1967
|
* Default value is `empty string`.
|
|
1974
1968
|
*
|
|
@@ -1978,8 +1972,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1978
1972
|
/**
|
|
1979
1973
|
* Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
|
|
1980
1974
|
*
|
|
1981
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
1982
|
-
* MDN web docs: grid-template-rows}
|
|
1975
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
1983
1976
|
*
|
|
1984
1977
|
* Default value is `empty string`.
|
|
1985
1978
|
*
|
|
@@ -2064,8 +2057,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2064
2057
|
/**
|
|
2065
2058
|
* Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
|
|
2066
2059
|
*
|
|
2067
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
2068
|
-
* MDN web docs: grid-auto-columns}
|
|
2060
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
2069
2061
|
*
|
|
2070
2062
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2071
2063
|
*
|
|
@@ -2082,8 +2074,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2082
2074
|
/**
|
|
2083
2075
|
* Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
|
|
2084
2076
|
*
|
|
2085
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
2086
|
-
* MDN web docs: grid-auto-flow}
|
|
2077
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
2087
2078
|
*
|
|
2088
2079
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2089
2080
|
*
|
|
@@ -2102,8 +2093,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2102
2093
|
/**
|
|
2103
2094
|
* Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
|
|
2104
2095
|
*
|
|
2105
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
2106
|
-
* MDN web docs: grid-auto-rows}
|
|
2096
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
2107
2097
|
*
|
|
2108
2098
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2109
2099
|
*
|
|
@@ -2120,8 +2110,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2120
2110
|
/**
|
|
2121
2111
|
* Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
|
|
2122
2112
|
*
|
|
2123
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
2124
|
-
* MDN web docs: grid-column-gap}
|
|
2113
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
2125
2114
|
*
|
|
2126
2115
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2127
2116
|
*
|
|
@@ -2138,9 +2127,9 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2138
2127
|
/**
|
|
2139
2128
|
* Sets a new value for property {@link #getGridGap gridGap}.
|
|
2140
2129
|
*
|
|
2141
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
2142
|
-
*
|
|
2143
|
-
*
|
|
2130
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
|
|
2131
|
+
* It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
|
|
2132
|
+
* less priority and will be overwritten.
|
|
2144
2133
|
*
|
|
2145
2134
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2146
2135
|
*
|
|
@@ -2157,8 +2146,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2157
2146
|
/**
|
|
2158
2147
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
2159
2148
|
*
|
|
2160
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
2161
|
-
* MDN web docs: grid-row-gap}
|
|
2149
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
2162
2150
|
*
|
|
2163
2151
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2164
2152
|
*
|
|
@@ -2175,8 +2163,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2175
2163
|
/**
|
|
2176
2164
|
* Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
2177
2165
|
*
|
|
2178
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
2179
|
-
* MDN web docs: grid-template-columns}
|
|
2166
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
2180
2167
|
*
|
|
2181
2168
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2182
2169
|
*
|
|
@@ -2193,8 +2180,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2193
2180
|
/**
|
|
2194
2181
|
* Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
|
|
2195
2182
|
*
|
|
2196
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
2197
|
-
* MDN web docs: grid-template-rows}
|
|
2183
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
2198
2184
|
*
|
|
2199
2185
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2200
2186
|
*
|
|
@@ -2226,6 +2212,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2226
2212
|
sWidth?: CSSSize
|
|
2227
2213
|
): this;
|
|
2228
2214
|
}
|
|
2215
|
+
export default CSSGrid;
|
|
2229
2216
|
|
|
2230
2217
|
export interface $CSSGridSettings extends $ControlSettings {
|
|
2231
2218
|
/**
|
|
@@ -2234,8 +2221,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2234
2221
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2235
2222
|
|
|
2236
2223
|
/**
|
|
2237
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
2238
|
-
* MDN web docs: grid-template-columns}
|
|
2224
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
2239
2225
|
*/
|
|
2240
2226
|
gridTemplateColumns?:
|
|
2241
2227
|
| cssgrid.CSSGridTrack
|
|
@@ -2243,8 +2229,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2243
2229
|
| `{${string}}`;
|
|
2244
2230
|
|
|
2245
2231
|
/**
|
|
2246
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
2247
|
-
* MDN web docs: grid-template-rows}
|
|
2232
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
2248
2233
|
*/
|
|
2249
2234
|
gridTemplateRows?:
|
|
2250
2235
|
| cssgrid.CSSGridTrack
|
|
@@ -2252,33 +2237,29 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2252
2237
|
| `{${string}}`;
|
|
2253
2238
|
|
|
2254
2239
|
/**
|
|
2255
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
2256
|
-
* MDN web docs: grid-row-gap}
|
|
2240
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
2257
2241
|
*/
|
|
2258
2242
|
gridRowGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2259
2243
|
|
|
2260
2244
|
/**
|
|
2261
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
2262
|
-
* MDN web docs: grid-column-gap}
|
|
2245
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
2263
2246
|
*/
|
|
2264
2247
|
gridColumnGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2265
2248
|
|
|
2266
2249
|
/**
|
|
2267
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
2268
|
-
*
|
|
2269
|
-
*
|
|
2250
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
|
|
2251
|
+
* It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
|
|
2252
|
+
* less priority and will be overwritten.
|
|
2270
2253
|
*/
|
|
2271
2254
|
gridGap?: cssgrid.CSSGridGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
2272
2255
|
|
|
2273
2256
|
/**
|
|
2274
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
2275
|
-
* MDN web docs: grid-auto-rows}
|
|
2257
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
2276
2258
|
*/
|
|
2277
2259
|
gridAutoRows?: cssgrid.CSSGridTrack | PropertyBindingInfo | `{${string}}`;
|
|
2278
2260
|
|
|
2279
2261
|
/**
|
|
2280
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
2281
|
-
* MDN web docs: grid-auto-columns}
|
|
2262
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
2282
2263
|
*/
|
|
2283
2264
|
gridAutoColumns?:
|
|
2284
2265
|
| cssgrid.CSSGridTrack
|
|
@@ -2286,8 +2267,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2286
2267
|
| `{${string}}`;
|
|
2287
2268
|
|
|
2288
2269
|
/**
|
|
2289
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
2290
|
-
* MDN web docs: grid-auto-flow}
|
|
2270
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
2291
2271
|
*/
|
|
2292
2272
|
gridAutoFlow?:
|
|
2293
2273
|
| (cssgrid.CSSGridAutoFlow | keyof typeof cssgrid.CSSGridAutoFlow)
|
|
@@ -2325,7 +2305,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2325
2305
|
*
|
|
2326
2306
|
* Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
|
|
2327
2307
|
*/
|
|
2328
|
-
|
|
2308
|
+
class GridBasicLayout extends GridLayoutBase {
|
|
2329
2309
|
/**
|
|
2330
2310
|
* Constructor for a new GridBasicLayout.
|
|
2331
2311
|
*
|
|
@@ -2389,8 +2369,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2389
2369
|
/**
|
|
2390
2370
|
* Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
|
|
2391
2371
|
*
|
|
2392
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
2393
|
-
* MDN web docs: grid-auto-columns}
|
|
2372
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
2394
2373
|
*
|
|
2395
2374
|
* Default value is `empty string`.
|
|
2396
2375
|
*
|
|
@@ -2400,8 +2379,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2400
2379
|
/**
|
|
2401
2380
|
* Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
|
|
2402
2381
|
*
|
|
2403
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
2404
|
-
* MDN web docs: grid-auto-flow}
|
|
2382
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
2405
2383
|
*
|
|
2406
2384
|
* Default value is `"Row"`.
|
|
2407
2385
|
*
|
|
@@ -2413,8 +2391,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2413
2391
|
/**
|
|
2414
2392
|
* Gets current value of property {@link #getGridAutoRows gridAutoRows}.
|
|
2415
2393
|
*
|
|
2416
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
2417
|
-
* MDN web docs: grid-auto-rows}
|
|
2394
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
2418
2395
|
*
|
|
2419
2396
|
* Default value is `empty string`.
|
|
2420
2397
|
*
|
|
@@ -2424,8 +2401,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2424
2401
|
/**
|
|
2425
2402
|
* Gets current value of property {@link #getGridColumnGap gridColumnGap}.
|
|
2426
2403
|
*
|
|
2427
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
2428
|
-
* MDN web docs: grid-column-gap}
|
|
2404
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
2429
2405
|
*
|
|
2430
2406
|
* Default value is `empty string`.
|
|
2431
2407
|
*
|
|
@@ -2435,8 +2411,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2435
2411
|
/**
|
|
2436
2412
|
* Gets current value of property {@link #getGridGap gridGap}.
|
|
2437
2413
|
*
|
|
2438
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
2439
|
-
* MDN web docs: grid-gap}
|
|
2414
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
2440
2415
|
*
|
|
2441
2416
|
* Default value is `empty string`.
|
|
2442
2417
|
*
|
|
@@ -2446,8 +2421,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2446
2421
|
/**
|
|
2447
2422
|
* Gets current value of property {@link #getGridRowGap gridRowGap}.
|
|
2448
2423
|
*
|
|
2449
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
2450
|
-
* MDN web docs: grid-row-gap}
|
|
2424
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
2451
2425
|
*
|
|
2452
2426
|
* Default value is `empty string`.
|
|
2453
2427
|
*
|
|
@@ -2457,8 +2431,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2457
2431
|
/**
|
|
2458
2432
|
* Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
2459
2433
|
*
|
|
2460
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
2461
|
-
* MDN web docs: grid-template-columns}
|
|
2434
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
2462
2435
|
*
|
|
2463
2436
|
* Default value is `empty string`.
|
|
2464
2437
|
*
|
|
@@ -2468,8 +2441,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2468
2441
|
/**
|
|
2469
2442
|
* Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
|
|
2470
2443
|
*
|
|
2471
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
2472
|
-
* MDN web docs: grid-template-rows}
|
|
2444
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
2473
2445
|
*
|
|
2474
2446
|
* Default value is `empty string`.
|
|
2475
2447
|
*
|
|
@@ -2479,8 +2451,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2479
2451
|
/**
|
|
2480
2452
|
* Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
|
|
2481
2453
|
*
|
|
2482
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
2483
|
-
* MDN web docs: grid-auto-columns}
|
|
2454
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
2484
2455
|
*
|
|
2485
2456
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2486
2457
|
*
|
|
@@ -2497,8 +2468,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2497
2468
|
/**
|
|
2498
2469
|
* Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
|
|
2499
2470
|
*
|
|
2500
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
2501
|
-
* MDN web docs: grid-auto-flow}
|
|
2471
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
2502
2472
|
*
|
|
2503
2473
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2504
2474
|
*
|
|
@@ -2517,8 +2487,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2517
2487
|
/**
|
|
2518
2488
|
* Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
|
|
2519
2489
|
*
|
|
2520
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
2521
|
-
* MDN web docs: grid-auto-rows}
|
|
2490
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
2522
2491
|
*
|
|
2523
2492
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2524
2493
|
*
|
|
@@ -2535,8 +2504,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2535
2504
|
/**
|
|
2536
2505
|
* Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
|
|
2537
2506
|
*
|
|
2538
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
2539
|
-
* MDN web docs: grid-column-gap}
|
|
2507
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
2540
2508
|
*
|
|
2541
2509
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2542
2510
|
*
|
|
@@ -2553,8 +2521,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2553
2521
|
/**
|
|
2554
2522
|
* Sets a new value for property {@link #getGridGap gridGap}.
|
|
2555
2523
|
*
|
|
2556
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
2557
|
-
* MDN web docs: grid-gap}
|
|
2524
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
2558
2525
|
*
|
|
2559
2526
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2560
2527
|
*
|
|
@@ -2571,8 +2538,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2571
2538
|
/**
|
|
2572
2539
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
2573
2540
|
*
|
|
2574
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
2575
|
-
* MDN web docs: grid-row-gap}
|
|
2541
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
2576
2542
|
*
|
|
2577
2543
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2578
2544
|
*
|
|
@@ -2589,8 +2555,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2589
2555
|
/**
|
|
2590
2556
|
* Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
2591
2557
|
*
|
|
2592
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
2593
|
-
* MDN web docs: grid-template-columns}
|
|
2558
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
2594
2559
|
*
|
|
2595
2560
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2596
2561
|
*
|
|
@@ -2607,8 +2572,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2607
2572
|
/**
|
|
2608
2573
|
* Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
|
|
2609
2574
|
*
|
|
2610
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
2611
|
-
* MDN web docs: grid-template-rows}
|
|
2575
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
2612
2576
|
*
|
|
2613
2577
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2614
2578
|
*
|
|
@@ -2623,11 +2587,11 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2623
2587
|
sGridTemplateRows?: cssgrid.CSSGridTrack
|
|
2624
2588
|
): this;
|
|
2625
2589
|
}
|
|
2590
|
+
export default GridBasicLayout;
|
|
2626
2591
|
|
|
2627
2592
|
export interface $GridBasicLayoutSettings extends $GridLayoutBaseSettings {
|
|
2628
2593
|
/**
|
|
2629
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
2630
|
-
* MDN web docs: grid-template-columns}
|
|
2594
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
2631
2595
|
*/
|
|
2632
2596
|
gridTemplateColumns?:
|
|
2633
2597
|
| cssgrid.CSSGridTrack
|
|
@@ -2635,8 +2599,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2635
2599
|
| `{${string}}`;
|
|
2636
2600
|
|
|
2637
2601
|
/**
|
|
2638
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
2639
|
-
* MDN web docs: grid-template-rows}
|
|
2602
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
2640
2603
|
*/
|
|
2641
2604
|
gridTemplateRows?:
|
|
2642
2605
|
| cssgrid.CSSGridTrack
|
|
@@ -2644,32 +2607,27 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2644
2607
|
| `{${string}}`;
|
|
2645
2608
|
|
|
2646
2609
|
/**
|
|
2647
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
2648
|
-
* MDN web docs: grid-row-gap}
|
|
2610
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
2649
2611
|
*/
|
|
2650
2612
|
gridRowGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2651
2613
|
|
|
2652
2614
|
/**
|
|
2653
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
2654
|
-
* MDN web docs: grid-column-gap}
|
|
2615
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
2655
2616
|
*/
|
|
2656
2617
|
gridColumnGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2657
2618
|
|
|
2658
2619
|
/**
|
|
2659
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
2660
|
-
* MDN web docs: grid-gap}
|
|
2620
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
2661
2621
|
*/
|
|
2662
2622
|
gridGap?: cssgrid.CSSGridGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
2663
2623
|
|
|
2664
2624
|
/**
|
|
2665
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
2666
|
-
* MDN web docs: grid-auto-rows}
|
|
2625
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
2667
2626
|
*/
|
|
2668
2627
|
gridAutoRows?: cssgrid.CSSGridTrack | PropertyBindingInfo | `{${string}}`;
|
|
2669
2628
|
|
|
2670
2629
|
/**
|
|
2671
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
2672
|
-
* MDN web docs: grid-auto-columns}
|
|
2630
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
2673
2631
|
*/
|
|
2674
2632
|
gridAutoColumns?:
|
|
2675
2633
|
| cssgrid.CSSGridTrack
|
|
@@ -2677,8 +2635,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2677
2635
|
| `{${string}}`;
|
|
2678
2636
|
|
|
2679
2637
|
/**
|
|
2680
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
2681
|
-
* MDN web docs: grid-auto-flow}
|
|
2638
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
2682
2639
|
*/
|
|
2683
2640
|
gridAutoFlow?:
|
|
2684
2641
|
| (cssgrid.CSSGridAutoFlow | keyof typeof cssgrid.CSSGridAutoFlow)
|
|
@@ -2706,7 +2663,7 @@ declare module "sap/ui/layout/cssgrid/GridBoxLayout" {
|
|
|
2706
2663
|
*
|
|
2707
2664
|
* Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
|
|
2708
2665
|
*/
|
|
2709
|
-
|
|
2666
|
+
class GridBoxLayout extends GridLayoutBase {
|
|
2710
2667
|
/**
|
|
2711
2668
|
* Constructor for a new GridBoxLayout.
|
|
2712
2669
|
*
|
|
@@ -2866,6 +2823,7 @@ declare module "sap/ui/layout/cssgrid/GridBoxLayout" {
|
|
|
2866
2823
|
sBoxWidth?: CSSSize
|
|
2867
2824
|
): this;
|
|
2868
2825
|
}
|
|
2826
|
+
export default GridBoxLayout;
|
|
2869
2827
|
|
|
2870
2828
|
export interface $GridBoxLayoutSettings extends $GridLayoutBaseSettings {
|
|
2871
2829
|
/**
|
|
@@ -2902,7 +2860,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
2902
2860
|
/**
|
|
2903
2861
|
* Holds layout data for a grid item.
|
|
2904
2862
|
*/
|
|
2905
|
-
|
|
2863
|
+
class GridItemLayoutData
|
|
2906
2864
|
extends LayoutData
|
|
2907
2865
|
implements cssgrid.IGridItemLayoutData {
|
|
2908
2866
|
__implements__sap_ui_layout_cssgrid_IGridItemLayoutData: boolean;
|
|
@@ -2969,8 +2927,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
2969
2927
|
/**
|
|
2970
2928
|
* Gets current value of property {@link #getGridColumn gridColumn}.
|
|
2971
2929
|
*
|
|
2972
|
-
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
|
|
2973
|
-
* MDN web docs: grid-column}
|
|
2930
|
+
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
|
|
2974
2931
|
*
|
|
2975
2932
|
* Default value is `empty string`.
|
|
2976
2933
|
*
|
|
@@ -2980,8 +2937,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
2980
2937
|
/**
|
|
2981
2938
|
* Gets current value of property {@link #getGridColumnEnd gridColumnEnd}.
|
|
2982
2939
|
*
|
|
2983
|
-
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
|
|
2984
|
-
* MDN web docs: grid-column-end}
|
|
2940
|
+
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
|
|
2985
2941
|
*
|
|
2986
2942
|
* Default value is `empty string`.
|
|
2987
2943
|
*
|
|
@@ -2991,8 +2947,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
2991
2947
|
/**
|
|
2992
2948
|
* Gets current value of property {@link #getGridColumnStart gridColumnStart}.
|
|
2993
2949
|
*
|
|
2994
|
-
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
|
|
2995
|
-
* MDN web docs: grid-column-start}
|
|
2950
|
+
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
|
|
2996
2951
|
*
|
|
2997
2952
|
* Default value is `empty string`.
|
|
2998
2953
|
*
|
|
@@ -3002,8 +2957,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3002
2957
|
/**
|
|
3003
2958
|
* Gets current value of property {@link #getGridRow gridRow}.
|
|
3004
2959
|
*
|
|
3005
|
-
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
3006
|
-
* MDN web docs: grid-row}
|
|
2960
|
+
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
|
|
3007
2961
|
*
|
|
3008
2962
|
* Default value is `empty string`.
|
|
3009
2963
|
*
|
|
@@ -3013,8 +2967,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3013
2967
|
/**
|
|
3014
2968
|
* Gets current value of property {@link #getGridRowEnd gridRowEnd}.
|
|
3015
2969
|
*
|
|
3016
|
-
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
|
|
3017
|
-
* MDN web docs: grid-row-end}
|
|
2970
|
+
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
|
|
3018
2971
|
*
|
|
3019
2972
|
* Default value is `empty string`.
|
|
3020
2973
|
*
|
|
@@ -3024,8 +2977,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3024
2977
|
/**
|
|
3025
2978
|
* Gets current value of property {@link #getGridRowStart gridRowStart}.
|
|
3026
2979
|
*
|
|
3027
|
-
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
|
|
3028
|
-
* MDN web docs: grid-row-start}
|
|
2980
|
+
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
|
|
3029
2981
|
*
|
|
3030
2982
|
* Default value is `empty string`.
|
|
3031
2983
|
*
|
|
@@ -3035,8 +2987,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3035
2987
|
/**
|
|
3036
2988
|
* Sets a new value for property {@link #getGridColumn gridColumn}.
|
|
3037
2989
|
*
|
|
3038
|
-
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
|
|
3039
|
-
* MDN web docs: grid-column}
|
|
2990
|
+
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
|
|
3040
2991
|
*
|
|
3041
2992
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3042
2993
|
*
|
|
@@ -3053,8 +3004,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3053
3004
|
/**
|
|
3054
3005
|
* Sets a new value for property {@link #getGridColumnEnd gridColumnEnd}.
|
|
3055
3006
|
*
|
|
3056
|
-
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
|
|
3057
|
-
* MDN web docs: grid-column-end}
|
|
3007
|
+
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
|
|
3058
3008
|
*
|
|
3059
3009
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3060
3010
|
*
|
|
@@ -3071,8 +3021,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3071
3021
|
/**
|
|
3072
3022
|
* Sets a new value for property {@link #getGridColumnStart gridColumnStart}.
|
|
3073
3023
|
*
|
|
3074
|
-
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
|
|
3075
|
-
* MDN web docs: grid-column-start}
|
|
3024
|
+
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
|
|
3076
3025
|
*
|
|
3077
3026
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3078
3027
|
*
|
|
@@ -3089,8 +3038,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3089
3038
|
/**
|
|
3090
3039
|
* Sets a new value for property {@link #getGridRow gridRow}.
|
|
3091
3040
|
*
|
|
3092
|
-
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
3093
|
-
* MDN web docs: grid-row}
|
|
3041
|
+
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
|
|
3094
3042
|
*
|
|
3095
3043
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3096
3044
|
*
|
|
@@ -3107,8 +3055,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3107
3055
|
/**
|
|
3108
3056
|
* Sets a new value for property {@link #getGridRowEnd gridRowEnd}.
|
|
3109
3057
|
*
|
|
3110
|
-
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
|
|
3111
|
-
* MDN web docs: grid-row-end}
|
|
3058
|
+
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
|
|
3112
3059
|
*
|
|
3113
3060
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3114
3061
|
*
|
|
@@ -3125,8 +3072,7 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3125
3072
|
/**
|
|
3126
3073
|
* Sets a new value for property {@link #getGridRowStart gridRowStart}.
|
|
3127
3074
|
*
|
|
3128
|
-
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
|
|
3129
|
-
* MDN web docs: grid-row-start}
|
|
3075
|
+
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
|
|
3130
3076
|
*
|
|
3131
3077
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3132
3078
|
*
|
|
@@ -3141,41 +3087,36 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
|
|
|
3141
3087
|
sGridRowStart?: cssgrid.CSSGridLine
|
|
3142
3088
|
): this;
|
|
3143
3089
|
}
|
|
3090
|
+
export default GridItemLayoutData;
|
|
3144
3091
|
|
|
3145
3092
|
export interface $GridItemLayoutDataSettings extends $LayoutDataSettings {
|
|
3146
3093
|
/**
|
|
3147
|
-
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
|
|
3148
|
-
* MDN web docs: grid-column-start}
|
|
3094
|
+
* Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
|
|
3149
3095
|
*/
|
|
3150
3096
|
gridColumnStart?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3151
3097
|
|
|
3152
3098
|
/**
|
|
3153
|
-
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
|
|
3154
|
-
* MDN web docs: grid-column-end}
|
|
3099
|
+
* Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
|
|
3155
3100
|
*/
|
|
3156
3101
|
gridColumnEnd?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3157
3102
|
|
|
3158
3103
|
/**
|
|
3159
|
-
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
|
|
3160
|
-
* MDN web docs: grid-row-start}
|
|
3104
|
+
* Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
|
|
3161
3105
|
*/
|
|
3162
3106
|
gridRowStart?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3163
3107
|
|
|
3164
3108
|
/**
|
|
3165
|
-
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
|
|
3166
|
-
* MDN web docs: grid-row-end}
|
|
3109
|
+
* Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
|
|
3167
3110
|
*/
|
|
3168
3111
|
gridRowEnd?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3169
3112
|
|
|
3170
3113
|
/**
|
|
3171
|
-
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
|
|
3172
|
-
* MDN web docs: grid-column}
|
|
3114
|
+
* Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
|
|
3173
3115
|
*/
|
|
3174
3116
|
gridColumn?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3175
3117
|
|
|
3176
3118
|
/**
|
|
3177
|
-
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
3178
|
-
* MDN web docs: grid-row}
|
|
3119
|
+
* Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
|
|
3179
3120
|
*/
|
|
3180
3121
|
gridRow?: cssgrid.CSSGridLine | PropertyBindingInfo | `{${string}}`;
|
|
3181
3122
|
}
|
|
@@ -3200,14 +3141,14 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
|
|
|
3200
3141
|
*
|
|
3201
3142
|
* Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
|
|
3202
3143
|
*/
|
|
3203
|
-
|
|
3144
|
+
class GridLayoutBase extends ManagedObject {
|
|
3204
3145
|
/**
|
|
3205
3146
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3206
3147
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3207
3148
|
* of the syntax of the settings object.
|
|
3208
3149
|
*
|
|
3209
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor
|
|
3210
|
-
*
|
|
3150
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor sap.ui.base.ManagedObject }
|
|
3151
|
+
* can be used.
|
|
3211
3152
|
*/
|
|
3212
3153
|
constructor(
|
|
3213
3154
|
/**
|
|
@@ -3220,8 +3161,8 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
|
|
|
3220
3161
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3221
3162
|
* of the syntax of the settings object.
|
|
3222
3163
|
*
|
|
3223
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor
|
|
3224
|
-
*
|
|
3164
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor sap.ui.base.ManagedObject }
|
|
3165
|
+
* can be used.
|
|
3225
3166
|
*/
|
|
3226
3167
|
constructor(
|
|
3227
3168
|
/**
|
|
@@ -3330,6 +3271,7 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
|
|
|
3330
3271
|
oEvent: jQuery.Event
|
|
3331
3272
|
): void;
|
|
3332
3273
|
}
|
|
3274
|
+
export default GridLayoutBase;
|
|
3333
3275
|
|
|
3334
3276
|
export interface $GridLayoutBaseSettings extends $ManagedObjectSettings {}
|
|
3335
3277
|
}
|
|
@@ -3341,9 +3283,10 @@ declare module "sap/ui/layout/cssgrid/GridLayoutDelegate" {
|
|
|
3341
3283
|
* Add handlers for a sap.ui.layout.cssgrid.IGridConfigurable control lifecycle events. Applies the grid
|
|
3342
3284
|
* layout when necessary. Calls sap.ui.layout.cssgrid.GridLayoutBase hook functions.
|
|
3343
3285
|
*/
|
|
3344
|
-
|
|
3286
|
+
class GridLayoutDelegate extends BaseObject {
|
|
3345
3287
|
constructor();
|
|
3346
3288
|
}
|
|
3289
|
+
export default GridLayoutDelegate;
|
|
3347
3290
|
}
|
|
3348
3291
|
|
|
3349
3292
|
declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
@@ -3366,7 +3309,7 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3366
3309
|
* Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control. Have to possibility
|
|
3367
3310
|
* to hold multiple sap.ui.layout.cssgrid.GridSettings and apply the currently active GridSettings.
|
|
3368
3311
|
*/
|
|
3369
|
-
|
|
3312
|
+
class GridResponsiveLayout extends GridLayoutBase {
|
|
3370
3313
|
/**
|
|
3371
3314
|
* Constructor for a new GridResponsiveLayout.
|
|
3372
3315
|
*
|
|
@@ -3446,7 +3389,9 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3446
3389
|
/**
|
|
3447
3390
|
* The function to be called when the event occurs
|
|
3448
3391
|
*/
|
|
3449
|
-
fnFunction: (
|
|
3392
|
+
fnFunction: (
|
|
3393
|
+
p1: Event<$GridResponsiveLayoutLayoutChangeEventParameters>
|
|
3394
|
+
) => void,
|
|
3450
3395
|
/**
|
|
3451
3396
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.GridResponsiveLayout`
|
|
3452
3397
|
* itself
|
|
@@ -3467,7 +3412,9 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3467
3412
|
/**
|
|
3468
3413
|
* The function to be called when the event occurs
|
|
3469
3414
|
*/
|
|
3470
|
-
fnFunction: (
|
|
3415
|
+
fnFunction: (
|
|
3416
|
+
p1: Event<$GridResponsiveLayoutLayoutChangeEventParameters>
|
|
3417
|
+
) => void,
|
|
3471
3418
|
/**
|
|
3472
3419
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.GridResponsiveLayout`
|
|
3473
3420
|
* itself
|
|
@@ -3515,7 +3462,9 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3515
3462
|
/**
|
|
3516
3463
|
* The function to be called, when the event occurs
|
|
3517
3464
|
*/
|
|
3518
|
-
fnFunction: (
|
|
3465
|
+
fnFunction: (
|
|
3466
|
+
p1: Event<$GridResponsiveLayoutLayoutChangeEventParameters>
|
|
3467
|
+
) => void,
|
|
3519
3468
|
/**
|
|
3520
3469
|
* Context object on which the given function had to be called
|
|
3521
3470
|
*/
|
|
@@ -3532,12 +3481,7 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3532
3481
|
/**
|
|
3533
3482
|
* Parameters to pass along with the event
|
|
3534
3483
|
*/
|
|
3535
|
-
mParameters?:
|
|
3536
|
-
/**
|
|
3537
|
-
* The name of the newly active layout aggregation
|
|
3538
|
-
*/
|
|
3539
|
-
layout?: string;
|
|
3540
|
-
}
|
|
3484
|
+
mParameters?: $GridResponsiveLayoutLayoutChangeEventParameters
|
|
3541
3485
|
): this;
|
|
3542
3486
|
/**
|
|
3543
3487
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
@@ -3654,6 +3598,7 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3654
3598
|
oLayoutXL: GridSettings
|
|
3655
3599
|
): this;
|
|
3656
3600
|
}
|
|
3601
|
+
export default GridResponsiveLayout;
|
|
3657
3602
|
|
|
3658
3603
|
export interface $GridResponsiveLayoutSettings
|
|
3659
3604
|
extends $GridLayoutBaseSettings {
|
|
@@ -3691,7 +3636,16 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3691
3636
|
/**
|
|
3692
3637
|
* Fired when the currently active GridSettings changes
|
|
3693
3638
|
*/
|
|
3694
|
-
layoutChange?: (
|
|
3639
|
+
layoutChange?: (
|
|
3640
|
+
oEvent: Event<$GridResponsiveLayoutLayoutChangeEventParameters>
|
|
3641
|
+
) => void;
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
export interface $GridResponsiveLayoutLayoutChangeEventParameters {
|
|
3645
|
+
/**
|
|
3646
|
+
* The name of the newly active layout aggregation
|
|
3647
|
+
*/
|
|
3648
|
+
layout?: string;
|
|
3695
3649
|
}
|
|
3696
3650
|
}
|
|
3697
3651
|
|
|
@@ -3713,7 +3667,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3713
3667
|
*
|
|
3714
3668
|
* Holds a set of CSS display:grid properties
|
|
3715
3669
|
*/
|
|
3716
|
-
|
|
3670
|
+
class GridSettings extends ManagedObject {
|
|
3717
3671
|
/**
|
|
3718
3672
|
* Constructor for a new GridSettings.
|
|
3719
3673
|
*
|
|
@@ -3777,8 +3731,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3777
3731
|
/**
|
|
3778
3732
|
* Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
|
|
3779
3733
|
*
|
|
3780
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
3781
|
-
* MDN web docs: grid-auto-columns}
|
|
3734
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
3782
3735
|
*
|
|
3783
3736
|
* Default value is `empty string`.
|
|
3784
3737
|
*
|
|
@@ -3788,8 +3741,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3788
3741
|
/**
|
|
3789
3742
|
* Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
|
|
3790
3743
|
*
|
|
3791
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
3792
|
-
* MDN web docs: grid-auto-flow}
|
|
3744
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
3793
3745
|
*
|
|
3794
3746
|
* Default value is `"Row"`.
|
|
3795
3747
|
*
|
|
@@ -3801,8 +3753,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3801
3753
|
/**
|
|
3802
3754
|
* Gets current value of property {@link #getGridAutoRows gridAutoRows}.
|
|
3803
3755
|
*
|
|
3804
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
3805
|
-
* MDN web docs: grid-auto-rows}
|
|
3756
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
3806
3757
|
*
|
|
3807
3758
|
* Default value is `empty string`.
|
|
3808
3759
|
*
|
|
@@ -3812,8 +3763,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3812
3763
|
/**
|
|
3813
3764
|
* Gets current value of property {@link #getGridColumnGap gridColumnGap}.
|
|
3814
3765
|
*
|
|
3815
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
3816
|
-
* MDN web docs: grid-column-gap}
|
|
3766
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
3817
3767
|
*
|
|
3818
3768
|
* Default value is `empty string`.
|
|
3819
3769
|
*
|
|
@@ -3823,8 +3773,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3823
3773
|
/**
|
|
3824
3774
|
* Gets current value of property {@link #getGridGap gridGap}.
|
|
3825
3775
|
*
|
|
3826
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
3827
|
-
* MDN web docs: grid-gap}
|
|
3776
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
3828
3777
|
*
|
|
3829
3778
|
* Default value is `empty string`.
|
|
3830
3779
|
*
|
|
@@ -3834,8 +3783,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3834
3783
|
/**
|
|
3835
3784
|
* Gets current value of property {@link #getGridRowGap gridRowGap}.
|
|
3836
3785
|
*
|
|
3837
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
3838
|
-
* MDN web docs: grid-row-gap}
|
|
3786
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
3839
3787
|
*
|
|
3840
3788
|
* Default value is `empty string`.
|
|
3841
3789
|
*
|
|
@@ -3845,8 +3793,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3845
3793
|
/**
|
|
3846
3794
|
* Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
3847
3795
|
*
|
|
3848
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
3849
|
-
* MDN web docs: grid-template-columns}
|
|
3796
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
3850
3797
|
*
|
|
3851
3798
|
* Default value is `empty string`.
|
|
3852
3799
|
*
|
|
@@ -3856,8 +3803,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3856
3803
|
/**
|
|
3857
3804
|
* Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
|
|
3858
3805
|
*
|
|
3859
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
3860
|
-
* MDN web docs: grid-template-rows}
|
|
3806
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
3861
3807
|
*
|
|
3862
3808
|
* Default value is `empty string`.
|
|
3863
3809
|
*
|
|
@@ -3867,8 +3813,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3867
3813
|
/**
|
|
3868
3814
|
* Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
|
|
3869
3815
|
*
|
|
3870
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
3871
|
-
* MDN web docs: grid-auto-columns}
|
|
3816
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
3872
3817
|
*
|
|
3873
3818
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3874
3819
|
*
|
|
@@ -3885,8 +3830,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3885
3830
|
/**
|
|
3886
3831
|
* Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
|
|
3887
3832
|
*
|
|
3888
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
3889
|
-
* MDN web docs: grid-auto-flow}
|
|
3833
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
3890
3834
|
*
|
|
3891
3835
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3892
3836
|
*
|
|
@@ -3905,8 +3849,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3905
3849
|
/**
|
|
3906
3850
|
* Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
|
|
3907
3851
|
*
|
|
3908
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
3909
|
-
* MDN web docs: grid-auto-rows}
|
|
3852
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
3910
3853
|
*
|
|
3911
3854
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3912
3855
|
*
|
|
@@ -3923,8 +3866,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3923
3866
|
/**
|
|
3924
3867
|
* Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
|
|
3925
3868
|
*
|
|
3926
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
3927
|
-
* MDN web docs: grid-column-gap}
|
|
3869
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
3928
3870
|
*
|
|
3929
3871
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3930
3872
|
*
|
|
@@ -3941,8 +3883,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3941
3883
|
/**
|
|
3942
3884
|
* Sets a new value for property {@link #getGridGap gridGap}.
|
|
3943
3885
|
*
|
|
3944
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
3945
|
-
* MDN web docs: grid-gap}
|
|
3886
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
3946
3887
|
*
|
|
3947
3888
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3948
3889
|
*
|
|
@@ -3959,8 +3900,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3959
3900
|
/**
|
|
3960
3901
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
3961
3902
|
*
|
|
3962
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
3963
|
-
* MDN web docs: grid-row-gap}
|
|
3903
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
3964
3904
|
*
|
|
3965
3905
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3966
3906
|
*
|
|
@@ -3977,8 +3917,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3977
3917
|
/**
|
|
3978
3918
|
* Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
|
|
3979
3919
|
*
|
|
3980
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
3981
|
-
* MDN web docs: grid-template-columns}
|
|
3920
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
3982
3921
|
*
|
|
3983
3922
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3984
3923
|
*
|
|
@@ -3995,8 +3934,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3995
3934
|
/**
|
|
3996
3935
|
* Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
|
|
3997
3936
|
*
|
|
3998
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
3999
|
-
* MDN web docs: grid-template-rows}
|
|
3937
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
4000
3938
|
*
|
|
4001
3939
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4002
3940
|
*
|
|
@@ -4011,11 +3949,11 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4011
3949
|
sGridTemplateRows?: cssgrid.CSSGridTrack
|
|
4012
3950
|
): this;
|
|
4013
3951
|
}
|
|
3952
|
+
export default GridSettings;
|
|
4014
3953
|
|
|
4015
3954
|
export interface $GridSettingsSettings extends $ManagedObjectSettings {
|
|
4016
3955
|
/**
|
|
4017
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
|
|
4018
|
-
* MDN web docs: grid-template-columns}
|
|
3956
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
|
|
4019
3957
|
*/
|
|
4020
3958
|
gridTemplateColumns?:
|
|
4021
3959
|
| cssgrid.CSSGridTrack
|
|
@@ -4023,8 +3961,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4023
3961
|
| `{${string}}`;
|
|
4024
3962
|
|
|
4025
3963
|
/**
|
|
4026
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
|
|
4027
|
-
* MDN web docs: grid-template-rows}
|
|
3964
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
|
|
4028
3965
|
*/
|
|
4029
3966
|
gridTemplateRows?:
|
|
4030
3967
|
| cssgrid.CSSGridTrack
|
|
@@ -4032,32 +3969,27 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4032
3969
|
| `{${string}}`;
|
|
4033
3970
|
|
|
4034
3971
|
/**
|
|
4035
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
|
|
4036
|
-
* MDN web docs: grid-row-gap}
|
|
3972
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
|
|
4037
3973
|
*/
|
|
4038
3974
|
gridRowGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
4039
3975
|
|
|
4040
3976
|
/**
|
|
4041
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
|
|
4042
|
-
* MDN web docs: grid-column-gap}
|
|
3977
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
|
|
4043
3978
|
*/
|
|
4044
3979
|
gridColumnGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
4045
3980
|
|
|
4046
3981
|
/**
|
|
4047
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
|
|
4048
|
-
* MDN web docs: grid-gap}
|
|
3982
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
4049
3983
|
*/
|
|
4050
3984
|
gridGap?: cssgrid.CSSGridGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
4051
3985
|
|
|
4052
3986
|
/**
|
|
4053
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
|
|
4054
|
-
* MDN web docs: grid-auto-rows}
|
|
3987
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
4055
3988
|
*/
|
|
4056
3989
|
gridAutoRows?: cssgrid.CSSGridTrack | PropertyBindingInfo | `{${string}}`;
|
|
4057
3990
|
|
|
4058
3991
|
/**
|
|
4059
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
|
|
4060
|
-
* MDN web docs: grid-auto-columns}
|
|
3992
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
|
|
4061
3993
|
*/
|
|
4062
3994
|
gridAutoColumns?:
|
|
4063
3995
|
| cssgrid.CSSGridTrack
|
|
@@ -4065,8 +3997,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4065
3997
|
| `{${string}}`;
|
|
4066
3998
|
|
|
4067
3999
|
/**
|
|
4068
|
-
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
|
|
4069
|
-
* MDN web docs: grid-auto-flow}
|
|
4000
|
+
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
|
|
4070
4001
|
*/
|
|
4071
4002
|
gridAutoFlow?:
|
|
4072
4003
|
| (cssgrid.CSSGridAutoFlow | keyof typeof cssgrid.CSSGridAutoFlow)
|
|
@@ -4092,7 +4023,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData" {
|
|
|
4092
4023
|
*
|
|
4093
4024
|
* Holds layout data for an item inside a responsive column layout.
|
|
4094
4025
|
*/
|
|
4095
|
-
|
|
4026
|
+
class ResponsiveColumnItemLayoutData
|
|
4096
4027
|
extends LayoutData
|
|
4097
4028
|
implements cssgrid.IGridItemLayoutData {
|
|
4098
4029
|
__implements__sap_ui_layout_cssgrid_IGridItemLayoutData: boolean;
|
|
@@ -4211,6 +4142,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData" {
|
|
|
4211
4142
|
iRows?: int
|
|
4212
4143
|
): this;
|
|
4213
4144
|
}
|
|
4145
|
+
export default ResponsiveColumnItemLayoutData;
|
|
4214
4146
|
|
|
4215
4147
|
export interface $ResponsiveColumnItemLayoutDataSettings
|
|
4216
4148
|
extends $LayoutDataSettings {
|
|
@@ -4245,7 +4177,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4245
4177
|
*
|
|
4246
4178
|
* Grid row's height is dynamically determined by the height of the highest grid element on this row.
|
|
4247
4179
|
*/
|
|
4248
|
-
|
|
4180
|
+
class ResponsiveColumnLayout extends GridLayoutBase {
|
|
4249
4181
|
/**
|
|
4250
4182
|
* Constructor for a new `ResponsiveColumnLayout`.
|
|
4251
4183
|
*
|
|
@@ -4325,7 +4257,9 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4325
4257
|
/**
|
|
4326
4258
|
* The function to be called when the event occurs
|
|
4327
4259
|
*/
|
|
4328
|
-
fnFunction: (
|
|
4260
|
+
fnFunction: (
|
|
4261
|
+
p1: Event<$ResponsiveColumnLayoutLayoutChangeEventParameters>
|
|
4262
|
+
) => void,
|
|
4329
4263
|
/**
|
|
4330
4264
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`
|
|
4331
4265
|
* itself
|
|
@@ -4346,7 +4280,9 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4346
4280
|
/**
|
|
4347
4281
|
* The function to be called when the event occurs
|
|
4348
4282
|
*/
|
|
4349
|
-
fnFunction: (
|
|
4283
|
+
fnFunction: (
|
|
4284
|
+
p1: Event<$ResponsiveColumnLayoutLayoutChangeEventParameters>
|
|
4285
|
+
) => void,
|
|
4350
4286
|
/**
|
|
4351
4287
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`
|
|
4352
4288
|
* itself
|
|
@@ -4364,7 +4300,9 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4364
4300
|
/**
|
|
4365
4301
|
* The function to be called, when the event occurs
|
|
4366
4302
|
*/
|
|
4367
|
-
fnFunction: (
|
|
4303
|
+
fnFunction: (
|
|
4304
|
+
p1: Event<$ResponsiveColumnLayoutLayoutChangeEventParameters>
|
|
4305
|
+
) => void,
|
|
4368
4306
|
/**
|
|
4369
4307
|
* Context object on which the given function had to be called
|
|
4370
4308
|
*/
|
|
@@ -4381,12 +4319,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4381
4319
|
/**
|
|
4382
4320
|
* Parameters to pass along with the event
|
|
4383
4321
|
*/
|
|
4384
|
-
mParameters?:
|
|
4385
|
-
/**
|
|
4386
|
-
* The name of the newly active layout - "S", "M", "ML", "L", "XL", "XXL" or "XXXL".
|
|
4387
|
-
*/
|
|
4388
|
-
layout?: string;
|
|
4389
|
-
}
|
|
4322
|
+
mParameters?: $ResponsiveColumnLayoutLayoutChangeEventParameters
|
|
4390
4323
|
): this;
|
|
4391
4324
|
/**
|
|
4392
4325
|
* Returns if the Grid Layout is responsive.
|
|
@@ -4395,13 +4328,23 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4395
4328
|
*/
|
|
4396
4329
|
isResponsive(): boolean;
|
|
4397
4330
|
}
|
|
4331
|
+
export default ResponsiveColumnLayout;
|
|
4398
4332
|
|
|
4399
4333
|
export interface $ResponsiveColumnLayoutSettings
|
|
4400
4334
|
extends $GridLayoutBaseSettings {
|
|
4401
4335
|
/**
|
|
4402
4336
|
* Fired when the currently active layout changes
|
|
4403
4337
|
*/
|
|
4404
|
-
layoutChange?: (
|
|
4338
|
+
layoutChange?: (
|
|
4339
|
+
oEvent: Event<$ResponsiveColumnLayoutLayoutChangeEventParameters>
|
|
4340
|
+
) => void;
|
|
4341
|
+
}
|
|
4342
|
+
|
|
4343
|
+
export interface $ResponsiveColumnLayoutLayoutChangeEventParameters {
|
|
4344
|
+
/**
|
|
4345
|
+
* The name of the newly active layout - "S", "M", "ML", "L", "XL", "XXL" or "XXXL".
|
|
4346
|
+
*/
|
|
4347
|
+
layout?: string;
|
|
4405
4348
|
}
|
|
4406
4349
|
}
|
|
4407
4350
|
|
|
@@ -4464,16 +4407,16 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4464
4407
|
*
|
|
4465
4408
|
*
|
|
4466
4409
|
* - Main vs. side content ratio is 66.666 vs. 33.333 percent (with a minimum of 320px each). If the side
|
|
4467
|
-
*
|
|
4468
|
-
*
|
|
4410
|
+
* content width falls below 320 px, it automatically slides under the main content, unless the app development
|
|
4411
|
+
* team specifies that it should disappear.
|
|
4469
4412
|
*
|
|
4470
4413
|
* Screen width <= 720 px (for example on a mobile device)
|
|
4471
4414
|
*
|
|
4472
4415
|
*
|
|
4473
4416
|
* - In this case, the side content automatically disappears from the screen (unless specified to stay
|
|
4474
|
-
*
|
|
4475
|
-
*
|
|
4476
|
-
*
|
|
4417
|
+
* under the content) and can be triggered from a pre-set trigger (specified within the app). When the side
|
|
4418
|
+
* content is triggered, it replaces the main content. We recommend that you always place the trigger for
|
|
4419
|
+
* the side content in the same location, such as in the app footer.
|
|
4477
4420
|
*
|
|
4478
4421
|
* A special case, allows for comparison mode between the main and side content. In this case, the screen
|
|
4479
4422
|
* is split into 50:50 percent for main vs. side content. The responsive behavior of the equal split is
|
|
@@ -4485,7 +4428,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4485
4428
|
* the sticky elements of the control from becoming fixed at the top of the viewport. This applies for example
|
|
4486
4429
|
* to {@link sap.m.Table} and {@link sap.m.PlanningCalendar}.
|
|
4487
4430
|
*/
|
|
4488
|
-
|
|
4431
|
+
class DynamicSideContent extends Control {
|
|
4489
4432
|
/**
|
|
4490
4433
|
* Constructor for a new `DynamicSideContent`.
|
|
4491
4434
|
*
|
|
@@ -4594,7 +4537,9 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4594
4537
|
/**
|
|
4595
4538
|
* The function to be called when the event occurs
|
|
4596
4539
|
*/
|
|
4597
|
-
fnFunction: (
|
|
4540
|
+
fnFunction: (
|
|
4541
|
+
p1: Event<$DynamicSideContentBreakpointChangedEventParameters>
|
|
4542
|
+
) => void,
|
|
4598
4543
|
/**
|
|
4599
4544
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.DynamicSideContent` itself
|
|
4600
4545
|
*/
|
|
@@ -4617,7 +4562,9 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4617
4562
|
/**
|
|
4618
4563
|
* The function to be called when the event occurs
|
|
4619
4564
|
*/
|
|
4620
|
-
fnFunction: (
|
|
4565
|
+
fnFunction: (
|
|
4566
|
+
p1: Event<$DynamicSideContentBreakpointChangedEventParameters>
|
|
4567
|
+
) => void,
|
|
4621
4568
|
/**
|
|
4622
4569
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.DynamicSideContent` itself
|
|
4623
4570
|
*/
|
|
@@ -4649,7 +4596,9 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4649
4596
|
/**
|
|
4650
4597
|
* The function to be called, when the event occurs
|
|
4651
4598
|
*/
|
|
4652
|
-
fnFunction: (
|
|
4599
|
+
fnFunction: (
|
|
4600
|
+
p1: Event<$DynamicSideContentBreakpointChangedEventParameters>
|
|
4601
|
+
) => void,
|
|
4653
4602
|
/**
|
|
4654
4603
|
* Context object on which the given function had to be called
|
|
4655
4604
|
*/
|
|
@@ -4667,9 +4616,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4667
4616
|
/**
|
|
4668
4617
|
* Parameters to pass along with the event
|
|
4669
4618
|
*/
|
|
4670
|
-
mParameters?:
|
|
4671
|
-
currentBreakpoint?: string;
|
|
4672
|
-
}
|
|
4619
|
+
mParameters?: $DynamicSideContentBreakpointChangedEventParameters
|
|
4673
4620
|
): this;
|
|
4674
4621
|
/**
|
|
4675
4622
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
@@ -5020,6 +4967,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5020
4967
|
*/
|
|
5021
4968
|
toggle(): this;
|
|
5022
4969
|
}
|
|
4970
|
+
export default DynamicSideContent;
|
|
5023
4971
|
|
|
5024
4972
|
export interface $DynamicSideContentSettings extends $ControlSettings {
|
|
5025
4973
|
/**
|
|
@@ -5089,7 +5037,13 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5089
5037
|
*
|
|
5090
5038
|
* Fires when the current breakpoint has been changed.
|
|
5091
5039
|
*/
|
|
5092
|
-
breakpointChanged?: (
|
|
5040
|
+
breakpointChanged?: (
|
|
5041
|
+
oEvent: Event<$DynamicSideContentBreakpointChangedEventParameters>
|
|
5042
|
+
) => void;
|
|
5043
|
+
}
|
|
5044
|
+
|
|
5045
|
+
export interface $DynamicSideContentBreakpointChangedEventParameters {
|
|
5046
|
+
currentBreakpoint?: string;
|
|
5093
5047
|
}
|
|
5094
5048
|
}
|
|
5095
5049
|
|
|
@@ -5114,21 +5068,21 @@ declare module "sap/ui/layout/FixFlex" {
|
|
|
5114
5068
|
* - The fix container can hold any number of controls, while the flexible container can hold only one
|
|
5115
5069
|
*
|
|
5116
5070
|
* - In order for the FixFlex to stretch properly, the parent element, in which the control is placed,
|
|
5117
|
-
*
|
|
5071
|
+
* needs to have a specified height or needs to have an absolute position.
|
|
5118
5072
|
* - Avoid nesting FixFlex in other flexbox-based layout controls ({@link sap.ui.layout.FixFlex FixFlex},
|
|
5119
|
-
*
|
|
5120
|
-
*
|
|
5073
|
+
* {@link sap.m.FlexBox FlexBox}, Hbox, Vbox). Otherwise, contents may be not accessible or multiple scrollbars
|
|
5074
|
+
* can appear. Structure: The behavior of the FixFlex is controlled by the following properties:
|
|
5121
5075
|
*
|
|
5122
5076
|
* - `fixContentSize` - The width/height of the fix part of the control
|
|
5123
5077
|
* - `fixFirst` - The ordering of the fix and flex part
|
|
5124
5078
|
* - `minFlexSize` - Scrolling inside the flex part, if its contents are large
|
|
5125
5079
|
* - `vertical` - Alignment of the FixFlex control Responsive Behavior:
|
|
5126
5080
|
* - If the child control of the flex or the fix container has width/height bigger than the container
|
|
5127
|
-
*
|
|
5081
|
+
* itself, the child control will be cropped in the view.
|
|
5128
5082
|
* - If minFlexSize is set, then a scrollbar is shown in the flexible part, depending on the `vertical`
|
|
5129
|
-
*
|
|
5083
|
+
* property.
|
|
5130
5084
|
*/
|
|
5131
|
-
|
|
5085
|
+
class FixFlex extends Control {
|
|
5132
5086
|
/**
|
|
5133
5087
|
* Constructor for a new FixFlex.
|
|
5134
5088
|
*
|
|
@@ -5410,6 +5364,7 @@ declare module "sap/ui/layout/FixFlex" {
|
|
|
5410
5364
|
bVertical?: boolean
|
|
5411
5365
|
): this;
|
|
5412
5366
|
}
|
|
5367
|
+
export default FixFlex;
|
|
5413
5368
|
|
|
5414
5369
|
export interface $FixFlexSettings extends $ControlSettings {
|
|
5415
5370
|
/**
|
|
@@ -5473,7 +5428,7 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5473
5428
|
* Depending on its size, the `Form` control is divided into 1, 2, 3 or 4 columns by the `ColumnLayout`
|
|
5474
5429
|
* control. Using `ColumnContainerData`, the size of the `FormContainer` element can be influenced.
|
|
5475
5430
|
*/
|
|
5476
|
-
|
|
5431
|
+
class ColumnContainerData extends LayoutData {
|
|
5477
5432
|
/**
|
|
5478
5433
|
* Constructor for a new sap.ui.layout.form.ColumnContainerData.
|
|
5479
5434
|
*
|
|
@@ -5624,6 +5579,7 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
|
|
|
5624
5579
|
sColumnsXL?: form.ColumnsXL
|
|
5625
5580
|
): this;
|
|
5626
5581
|
}
|
|
5582
|
+
export default ColumnContainerData;
|
|
5627
5583
|
|
|
5628
5584
|
export interface $ColumnContainerDataSettings extends $LayoutDataSettings {
|
|
5629
5585
|
/**
|
|
@@ -5667,7 +5623,7 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
5667
5623
|
* One `FormElement` element contains 12 cells and has two sizes, small and large. Using `ColumnElementData`,
|
|
5668
5624
|
* the default calculation of the cells used for a field or label can be overwritten.
|
|
5669
5625
|
*/
|
|
5670
|
-
|
|
5626
|
+
class ColumnElementData extends LayoutData {
|
|
5671
5627
|
/**
|
|
5672
5628
|
* Constructor for a new sap.ui.layout.form.ColumnElementData.
|
|
5673
5629
|
*
|
|
@@ -5795,6 +5751,7 @@ declare module "sap/ui/layout/form/ColumnElementData" {
|
|
|
5795
5751
|
sCellsSmall?: form.ColumnCells
|
|
5796
5752
|
): this;
|
|
5797
5753
|
}
|
|
5754
|
+
export default ColumnElementData;
|
|
5798
5755
|
|
|
5799
5756
|
export interface $ColumnElementDataSettings extends $LayoutDataSettings {
|
|
5800
5757
|
/**
|
|
@@ -5863,7 +5820,7 @@ declare module "sap/ui/layout/form/ColumnLayout" {
|
|
|
5863
5820
|
* **Note:** This control cannot be used stand-alone, it just renders a `Form` control, so it must be assigned
|
|
5864
5821
|
* to a `Form` control using the `layout` aggregation.
|
|
5865
5822
|
*/
|
|
5866
|
-
|
|
5823
|
+
class ColumnLayout extends FormLayout {
|
|
5867
5824
|
/**
|
|
5868
5825
|
* Constructor for a new `sap.ui.layout.form.ColumnLayout`.
|
|
5869
5826
|
*
|
|
@@ -6070,6 +6027,7 @@ declare module "sap/ui/layout/form/ColumnLayout" {
|
|
|
6070
6027
|
sLabelCellsLarge?: form.ColumnCells
|
|
6071
6028
|
): this;
|
|
6072
6029
|
}
|
|
6030
|
+
export default ColumnLayout;
|
|
6073
6031
|
|
|
6074
6032
|
export interface $ColumnLayoutSettings extends $FormLayoutSettings {
|
|
6075
6033
|
/**
|
|
@@ -6146,7 +6104,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6146
6104
|
* `false`. If the `editable` property is set incorrectly, there will be visual issues like wrong label
|
|
6147
6105
|
* alignment or wrong spacing between the controls.
|
|
6148
6106
|
*/
|
|
6149
|
-
|
|
6107
|
+
class Form extends Control {
|
|
6150
6108
|
/**
|
|
6151
6109
|
* Constructor for a new sap.ui.layout.form.Form.
|
|
6152
6110
|
*
|
|
@@ -6260,8 +6218,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6260
6218
|
/**
|
|
6261
6219
|
* @SINCE 1.28.0
|
|
6262
6220
|
*
|
|
6263
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
6264
|
-
* ariaLabelledBy}.
|
|
6221
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
6265
6222
|
*/
|
|
6266
6223
|
getAriaLabelledBy(): ID[];
|
|
6267
6224
|
/**
|
|
@@ -6296,9 +6253,8 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6296
6253
|
/**
|
|
6297
6254
|
* Gets content of aggregation {@link #getLayout layout}.
|
|
6298
6255
|
*
|
|
6299
|
-
* Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout
|
|
6300
|
-
*
|
|
6301
|
-
* the best way possible.
|
|
6256
|
+
* Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout }
|
|
6257
|
+
* for rendering a `Form`, as its responsiveness allows the available space to be used in the best way possible.
|
|
6302
6258
|
*/
|
|
6303
6259
|
getLayout(): FormLayout;
|
|
6304
6260
|
/**
|
|
@@ -6311,8 +6267,8 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6311
6267
|
*
|
|
6312
6268
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6313
6269
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6314
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
|
|
6315
|
-
*
|
|
6270
|
+
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6271
|
+
* to the needed value.
|
|
6316
6272
|
*/
|
|
6317
6273
|
getTitle(): Title | string;
|
|
6318
6274
|
/**
|
|
@@ -6336,8 +6292,8 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6336
6292
|
*/
|
|
6337
6293
|
getWidth(): CSSSize;
|
|
6338
6294
|
/**
|
|
6339
|
-
* Checks for the provided `sap.ui.layout.form.FormContainer` in the aggregation {@link #getFormContainers
|
|
6340
|
-
*
|
|
6295
|
+
* Checks for the provided `sap.ui.layout.form.FormContainer` in the aggregation {@link #getFormContainers formContainers}.
|
|
6296
|
+
* and returns its index if found or -1 otherwise.
|
|
6341
6297
|
*
|
|
6342
6298
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6343
6299
|
*/
|
|
@@ -6485,6 +6441,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6485
6441
|
sWidth?: CSSSize
|
|
6486
6442
|
): this;
|
|
6487
6443
|
}
|
|
6444
|
+
export default Form;
|
|
6488
6445
|
|
|
6489
6446
|
export interface $FormSettings extends $ControlSettings {
|
|
6490
6447
|
/**
|
|
@@ -6527,8 +6484,8 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6527
6484
|
*
|
|
6528
6485
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6529
6486
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6530
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
|
|
6531
|
-
*
|
|
6487
|
+
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6488
|
+
* to the needed value.
|
|
6532
6489
|
*/
|
|
6533
6490
|
title?: string | Title | PropertyBindingInfo;
|
|
6534
6491
|
|
|
@@ -6544,9 +6501,8 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6544
6501
|
toolbar?: Toolbar;
|
|
6545
6502
|
|
|
6546
6503
|
/**
|
|
6547
|
-
* Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout
|
|
6548
|
-
*
|
|
6549
|
-
* the best way possible.
|
|
6504
|
+
* Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout }
|
|
6505
|
+
* for rendering a `Form`, as its responsiveness allows the available space to be used in the best way possible.
|
|
6550
6506
|
*/
|
|
6551
6507
|
layout?: FormLayout;
|
|
6552
6508
|
|
|
@@ -6583,7 +6539,7 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
6583
6539
|
* A `FormContainer` represents a group inside a `Form`. It consists of `FormElements`. The rendering of
|
|
6584
6540
|
* the `FormContainer` is done by the `FormLayout` assigned to the `Form`.
|
|
6585
6541
|
*/
|
|
6586
|
-
|
|
6542
|
+
class FormContainer extends UI5Element {
|
|
6587
6543
|
/**
|
|
6588
6544
|
* Constructor for a new sap.ui.layout.form.FormContainer.
|
|
6589
6545
|
*
|
|
@@ -6707,8 +6663,7 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
6707
6663
|
/**
|
|
6708
6664
|
* @SINCE 1.36.0
|
|
6709
6665
|
*
|
|
6710
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
6711
|
-
* ariaLabelledBy}.
|
|
6666
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
6712
6667
|
*/
|
|
6713
6668
|
getAriaLabelledBy(): ID[];
|
|
6714
6669
|
/**
|
|
@@ -6751,8 +6706,8 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
6751
6706
|
*
|
|
6752
6707
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6753
6708
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6754
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
|
|
6755
|
-
*
|
|
6709
|
+
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6710
|
+
* to the needed value.
|
|
6756
6711
|
*/
|
|
6757
6712
|
getTitle(): Title | string;
|
|
6758
6713
|
/**
|
|
@@ -6935,6 +6890,7 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
6935
6890
|
bVisible?: boolean
|
|
6936
6891
|
): this;
|
|
6937
6892
|
}
|
|
6893
|
+
export default FormContainer;
|
|
6938
6894
|
|
|
6939
6895
|
export interface $FormContainerSettings extends $ElementSettings {
|
|
6940
6896
|
/**
|
|
@@ -6973,8 +6929,8 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
6973
6929
|
*
|
|
6974
6930
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6975
6931
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6976
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
|
|
6977
|
-
*
|
|
6932
|
+
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6933
|
+
* to the needed value.
|
|
6978
6934
|
*/
|
|
6979
6935
|
title?: string | Title | PropertyBindingInfo;
|
|
6980
6936
|
|
|
@@ -7021,7 +6977,7 @@ declare module "sap/ui/layout/form/FormElement" {
|
|
|
7021
6977
|
* A `FormElement` represents a row in a `FormContainer`. A `FormElement` is a combination of one label
|
|
7022
6978
|
* and different controls associated to this label.
|
|
7023
6979
|
*/
|
|
7024
|
-
|
|
6980
|
+
class FormElement extends UI5Element {
|
|
7025
6981
|
/**
|
|
7026
6982
|
* Constructor for a new sap.ui.layout.form.FormElement.
|
|
7027
6983
|
*
|
|
@@ -7249,6 +7205,7 @@ declare module "sap/ui/layout/form/FormElement" {
|
|
|
7249
7205
|
bVisible?: boolean
|
|
7250
7206
|
): this;
|
|
7251
7207
|
}
|
|
7208
|
+
export default FormElement;
|
|
7252
7209
|
|
|
7253
7210
|
export interface $FormElementSettings extends $ElementSettings {
|
|
7254
7211
|
/**
|
|
@@ -7292,7 +7249,7 @@ declare module "sap/ui/layout/form/FormLayout" {
|
|
|
7292
7249
|
* **Note:** This control must not be used to render a `Form` in productive applications as it does not
|
|
7293
7250
|
* fulfill any design guidelines and usability standards.
|
|
7294
7251
|
*/
|
|
7295
|
-
|
|
7252
|
+
class FormLayout extends Control {
|
|
7296
7253
|
/**
|
|
7297
7254
|
* Constructor for a new sap.ui.layout.form.FormLayout.
|
|
7298
7255
|
*
|
|
@@ -7389,6 +7346,7 @@ declare module "sap/ui/layout/form/FormLayout" {
|
|
|
7389
7346
|
sBackgroundDesign?: BackgroundDesign | keyof typeof BackgroundDesign
|
|
7390
7347
|
): this;
|
|
7391
7348
|
}
|
|
7349
|
+
export default FormLayout;
|
|
7392
7350
|
|
|
7393
7351
|
export interface $FormLayoutSettings extends $ControlSettings {
|
|
7394
7352
|
/**
|
|
@@ -7420,7 +7378,7 @@ declare module "sap/ui/layout/form/GridContainerData" {
|
|
|
7420
7378
|
*
|
|
7421
7379
|
* The `GridLayout`-specific layout data for `FormContainers`.
|
|
7422
7380
|
*/
|
|
7423
|
-
|
|
7381
|
+
class GridContainerData extends LayoutData {
|
|
7424
7382
|
/**
|
|
7425
7383
|
* Constructor for a new sap.ui.layout.form.GridContainerData.
|
|
7426
7384
|
*
|
|
@@ -7513,6 +7471,7 @@ declare module "sap/ui/layout/form/GridContainerData" {
|
|
|
7513
7471
|
bHalfGrid?: boolean
|
|
7514
7472
|
): this;
|
|
7515
7473
|
}
|
|
7474
|
+
export default GridContainerData;
|
|
7516
7475
|
|
|
7517
7476
|
export interface $GridContainerDataSettings extends $LayoutDataSettings {
|
|
7518
7477
|
/**
|
|
@@ -7541,7 +7500,7 @@ declare module "sap/ui/layout/form/GridElementData" {
|
|
|
7541
7500
|
*
|
|
7542
7501
|
* The `GridLayout`-specific layout data for `FormElement` fields.
|
|
7543
7502
|
*/
|
|
7544
|
-
|
|
7503
|
+
class GridElementData extends LayoutData {
|
|
7545
7504
|
/**
|
|
7546
7505
|
* Constructor for a new sap.ui.layout.form.GridElementData.
|
|
7547
7506
|
*
|
|
@@ -7677,6 +7636,7 @@ declare module "sap/ui/layout/form/GridElementData" {
|
|
|
7677
7636
|
iVCells?: int
|
|
7678
7637
|
): this;
|
|
7679
7638
|
}
|
|
7639
|
+
export default GridElementData;
|
|
7680
7640
|
|
|
7681
7641
|
export interface $GridElementDataSettings extends $LayoutDataSettings {
|
|
7682
7642
|
/**
|
|
@@ -7729,7 +7689,7 @@ declare module "sap/ui/layout/form/GridLayout" {
|
|
|
7729
7689
|
* This control cannot be used stand-alone, it just renders a `Form`, so it must be assigned to a `Form`
|
|
7730
7690
|
* using the `layout` aggregation.
|
|
7731
7691
|
*/
|
|
7732
|
-
|
|
7692
|
+
class GridLayout extends FormLayout {
|
|
7733
7693
|
/**
|
|
7734
7694
|
* Constructor for a new sap.ui.layout.form.GridLayout.
|
|
7735
7695
|
*
|
|
@@ -7826,6 +7786,7 @@ declare module "sap/ui/layout/form/GridLayout" {
|
|
|
7826
7786
|
bSingleColumn?: boolean
|
|
7827
7787
|
): this;
|
|
7828
7788
|
}
|
|
7789
|
+
export default GridLayout;
|
|
7829
7790
|
|
|
7830
7791
|
export interface $GridLayoutSettings extends $FormLayoutSettings {
|
|
7831
7792
|
/**
|
|
@@ -7868,7 +7829,7 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
7868
7829
|
* This control cannot be used stand-alone, it just renders a `Form`, so it must be assigned to a `Form`
|
|
7869
7830
|
* using the `layout` aggregation.
|
|
7870
7831
|
*/
|
|
7871
|
-
|
|
7832
|
+
class ResponsiveGridLayout extends FormLayout {
|
|
7872
7833
|
/**
|
|
7873
7834
|
* Constructor for a new `sap.ui.layout.form.ResponsiveGridLayout`.
|
|
7874
7835
|
*
|
|
@@ -8484,6 +8445,7 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
|
|
|
8484
8445
|
bSingleContainerFullSize?: boolean
|
|
8485
8446
|
): this;
|
|
8486
8447
|
}
|
|
8448
|
+
export default ResponsiveGridLayout;
|
|
8487
8449
|
|
|
8488
8450
|
export interface $ResponsiveGridLayoutSettings extends $FormLayoutSettings {
|
|
8489
8451
|
/**
|
|
@@ -8659,7 +8621,7 @@ declare module "sap/ui/layout/form/ResponsiveLayout" {
|
|
|
8659
8621
|
* This control cannot be used stand-alone, it just renders a `Form`, so it must be assigned to a `Form`
|
|
8660
8622
|
* using the `layout` aggregation.
|
|
8661
8623
|
*/
|
|
8662
|
-
|
|
8624
|
+
class ResponsiveLayout extends FormLayout {
|
|
8663
8625
|
/**
|
|
8664
8626
|
* Constructor for a new sap.ui.layout.form.ResponsiveLayout.
|
|
8665
8627
|
*
|
|
@@ -8667,8 +8629,8 @@ declare module "sap/ui/layout/form/ResponsiveLayout" {
|
|
|
8667
8629
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8668
8630
|
* of the syntax of the settings object.
|
|
8669
8631
|
*
|
|
8670
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
|
|
8671
|
-
*
|
|
8632
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
|
|
8633
|
+
* can be used.
|
|
8672
8634
|
*/
|
|
8673
8635
|
constructor(
|
|
8674
8636
|
/**
|
|
@@ -8683,8 +8645,8 @@ declare module "sap/ui/layout/form/ResponsiveLayout" {
|
|
|
8683
8645
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8684
8646
|
* of the syntax of the settings object.
|
|
8685
8647
|
*
|
|
8686
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
|
|
8687
|
-
*
|
|
8648
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
|
|
8649
|
+
* can be used.
|
|
8688
8650
|
*/
|
|
8689
8651
|
constructor(
|
|
8690
8652
|
/**
|
|
@@ -8727,6 +8689,7 @@ declare module "sap/ui/layout/form/ResponsiveLayout" {
|
|
|
8727
8689
|
*/
|
|
8728
8690
|
static getMetadata(): ElementMetadata;
|
|
8729
8691
|
}
|
|
8692
|
+
export default ResponsiveLayout;
|
|
8730
8693
|
|
|
8731
8694
|
export interface $ResponsiveLayoutSettings extends $FormLayoutSettings {}
|
|
8732
8695
|
}
|
|
@@ -8757,7 +8720,7 @@ declare module "sap/ui/layout/form/SemanticFormElement" {
|
|
|
8757
8720
|
* **Note:** Please use the `ColumnLayout` as `layout` of the `Form`. For other layouts, the field arrangement
|
|
8758
8721
|
* might not be suitable in every case.
|
|
8759
8722
|
*/
|
|
8760
|
-
|
|
8723
|
+
class SemanticFormElement extends FormElement {
|
|
8761
8724
|
/**
|
|
8762
8725
|
* Constructor for a new sap.ui.layout.form.SemanticFormElement.
|
|
8763
8726
|
*
|
|
@@ -8926,6 +8889,7 @@ declare module "sap/ui/layout/form/SemanticFormElement" {
|
|
|
8926
8889
|
sDelimiter?: string
|
|
8927
8890
|
): this;
|
|
8928
8891
|
}
|
|
8892
|
+
export default SemanticFormElement;
|
|
8929
8893
|
|
|
8930
8894
|
export interface $SemanticFormElementSettings extends $FormElementSettings {
|
|
8931
8895
|
/**
|
|
@@ -8971,20 +8935,20 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
8971
8935
|
* @SINCE 1.16.0
|
|
8972
8936
|
*
|
|
8973
8937
|
* The `SimpleForm` control provides an easy-to-use API to create simple forms. Inside a `SimpleForm` control,
|
|
8974
|
-
* a `{@link sap.ui.layout.form.Form Form}` control is created along with its `{@link sap.ui.layout.form.FormContainer
|
|
8975
|
-
*
|
|
8976
|
-
*
|
|
8977
|
-
* - A new `sap.ui.core.Title` element or `Toolbar` control starts a new group (`{@link sap.ui.layout.form.FormContainer
|
|
8978
|
-
*
|
|
8938
|
+
* a `{@link sap.ui.layout.form.Form Form}` control is created along with its `{@link sap.ui.layout.form.FormContainer FormContainer}`
|
|
8939
|
+
* elements and `{@link sap.ui.layout.form.FormElement FormElement}` elements, but the complexity in the
|
|
8940
|
+
* API is not exposed to the user.
|
|
8941
|
+
* - A new `sap.ui.core.Title` element or `Toolbar` control starts a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`)
|
|
8942
|
+
* in the form.
|
|
8979
8943
|
* - A new `Label` control starts a new row (`{@link sap.ui.layout.form.FormElement FormElement}`) in
|
|
8980
|
-
*
|
|
8944
|
+
* the form.
|
|
8981
8945
|
* - All other controls will be assigned to the row (`{@link sap.ui.layout.form.FormElement FormElement}`)
|
|
8982
|
-
*
|
|
8983
|
-
*
|
|
8946
|
+
* that started with the last label. Use `LayoutData` to influence the layout for special cases in
|
|
8947
|
+
* the Input/Display controls.
|
|
8984
8948
|
*
|
|
8985
8949
|
* **Note:** If a more complex form is needed, use the `{@link sap.ui.layout.form.Form Form}` control instead.
|
|
8986
8950
|
*/
|
|
8987
|
-
|
|
8951
|
+
class SimpleForm extends Control {
|
|
8988
8952
|
/**
|
|
8989
8953
|
* Constructor for a new sap.ui.layout.form.SimpleForm.
|
|
8990
8954
|
*
|
|
@@ -9115,8 +9079,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9115
9079
|
/**
|
|
9116
9080
|
* @SINCE 1.32.0
|
|
9117
9081
|
*
|
|
9118
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
9119
|
-
* ariaLabelledBy}.
|
|
9082
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
9120
9083
|
*/
|
|
9121
9084
|
getAriaLabelledBy(): ID[];
|
|
9122
9085
|
/**
|
|
@@ -9225,18 +9188,18 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9225
9188
|
* Gets content of aggregation {@link #getContent content}.
|
|
9226
9189
|
*
|
|
9227
9190
|
* The content of the form is structured in the following way:
|
|
9228
|
-
* - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer
|
|
9229
|
-
*
|
|
9191
|
+
* - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`).
|
|
9192
|
+
*
|
|
9230
9193
|
* - Add a `Label` control to start a new row (`{@link sap.ui.layout.form.FormElement FormElement}`).
|
|
9231
9194
|
*
|
|
9232
9195
|
* - Add controls as input fields, text fields or other as needed.
|
|
9233
9196
|
* - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
|
|
9234
|
-
*
|
|
9235
|
-
*
|
|
9236
|
-
*
|
|
9237
|
-
*
|
|
9238
|
-
*
|
|
9239
|
-
*
|
|
9197
|
+
* a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
|
|
9198
|
+
* cells for the field part, for large size. If there is only little space, the labels are above the fields
|
|
9199
|
+
* and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
|
|
9200
|
+
* to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
|
|
9201
|
+
* not more than 12, as this is the total width of the input control part of each form row. Example
|
|
9202
|
+
* for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
|
|
9240
9203
|
*
|
|
9241
9204
|
* ```javascript
|
|
9242
9205
|
*
|
|
@@ -10135,6 +10098,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10135
10098
|
sWidth?: CSSSize
|
|
10136
10099
|
): this;
|
|
10137
10100
|
}
|
|
10101
|
+
export default SimpleForm;
|
|
10138
10102
|
|
|
10139
10103
|
export interface $SimpleFormSettings extends $ControlSettings {
|
|
10140
10104
|
/**
|
|
@@ -10390,18 +10354,18 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10390
10354
|
|
|
10391
10355
|
/**
|
|
10392
10356
|
* The content of the form is structured in the following way:
|
|
10393
|
-
* - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer
|
|
10394
|
-
*
|
|
10357
|
+
* - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`).
|
|
10358
|
+
*
|
|
10395
10359
|
* - Add a `Label` control to start a new row (`{@link sap.ui.layout.form.FormElement FormElement}`).
|
|
10396
10360
|
*
|
|
10397
10361
|
* - Add controls as input fields, text fields or other as needed.
|
|
10398
10362
|
* - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
|
|
10399
|
-
*
|
|
10400
|
-
*
|
|
10401
|
-
*
|
|
10402
|
-
*
|
|
10403
|
-
*
|
|
10404
|
-
*
|
|
10363
|
+
* a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
|
|
10364
|
+
* cells for the field part, for large size. If there is only little space, the labels are above the fields
|
|
10365
|
+
* and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
|
|
10366
|
+
* to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
|
|
10367
|
+
* not more than 12, as this is the total width of the input control part of each form row. Example
|
|
10368
|
+
* for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
|
|
10405
10369
|
*
|
|
10406
10370
|
* ```javascript
|
|
10407
10371
|
*
|
|
@@ -10494,12 +10458,12 @@ declare module "sap/ui/layout/Grid" {
|
|
|
10494
10458
|
*
|
|
10495
10459
|
* **Notes:**
|
|
10496
10460
|
* - The visibility of the child control does not affect the horizontal space it occupies, meaning that
|
|
10497
|
-
*
|
|
10461
|
+
* even if the control is not visible, its horizontal space still exists, even if it is empty.
|
|
10498
10462
|
* - If it gets wider, the content of the columns is designed to overflow outside of its dimensions.
|
|
10499
|
-
*
|
|
10500
|
-
*
|
|
10463
|
+
* An additional `sapUiRespGridOverflowHidden` CSS class should be added to the control in order to hide
|
|
10464
|
+
* the overflowing part of it.
|
|
10501
10465
|
*/
|
|
10502
|
-
|
|
10466
|
+
class Grid extends Control {
|
|
10503
10467
|
/**
|
|
10504
10468
|
* Constructor for a new `Grid`.
|
|
10505
10469
|
*
|
|
@@ -10508,8 +10472,8 @@ declare module "sap/ui/layout/Grid" {
|
|
|
10508
10472
|
* of the syntax of the settings object.
|
|
10509
10473
|
* See:
|
|
10510
10474
|
* {@link fiori:https://experience.sap.com/fiori-design-web/grid-layout/#responsive-grid Grid}
|
|
10511
|
-
* {@link topic
|
|
10512
|
-
* {@link topic
|
|
10475
|
+
* {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
|
|
10476
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
10513
10477
|
*/
|
|
10514
10478
|
constructor(
|
|
10515
10479
|
/**
|
|
@@ -10525,8 +10489,8 @@ declare module "sap/ui/layout/Grid" {
|
|
|
10525
10489
|
* of the syntax of the settings object.
|
|
10526
10490
|
* See:
|
|
10527
10491
|
* {@link fiori:https://experience.sap.com/fiori-design-web/grid-layout/#responsive-grid Grid}
|
|
10528
|
-
* {@link topic
|
|
10529
|
-
* {@link topic
|
|
10492
|
+
* {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
|
|
10493
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
10530
10494
|
*/
|
|
10531
10495
|
constructor(
|
|
10532
10496
|
/**
|
|
@@ -10611,8 +10575,7 @@ declare module "sap/ui/layout/Grid" {
|
|
|
10611
10575
|
/**
|
|
10612
10576
|
* @SINCE 1.48.7
|
|
10613
10577
|
*
|
|
10614
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
10615
|
-
* ariaLabelledBy}.
|
|
10578
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
10616
10579
|
*/
|
|
10617
10580
|
getAriaLabelledBy(): ID[];
|
|
10618
10581
|
/**
|
|
@@ -10904,6 +10867,7 @@ declare module "sap/ui/layout/Grid" {
|
|
|
10904
10867
|
sWidth?: CSSSize
|
|
10905
10868
|
): this;
|
|
10906
10869
|
}
|
|
10870
|
+
export default Grid;
|
|
10907
10871
|
|
|
10908
10872
|
export interface $GridSettings extends $ControlSettings {
|
|
10909
10873
|
/**
|
|
@@ -10991,7 +10955,7 @@ declare module "sap/ui/layout/GridData" {
|
|
|
10991
10955
|
* to `true` if the next form element has to be displayed on a new line. Otherwise the `GridData` overrides
|
|
10992
10956
|
* the layout provided by the `Form`.
|
|
10993
10957
|
*/
|
|
10994
|
-
|
|
10958
|
+
class GridData extends LayoutData {
|
|
10995
10959
|
/**
|
|
10996
10960
|
* Constructor for a new `GridData`.
|
|
10997
10961
|
*
|
|
@@ -10999,8 +10963,8 @@ declare module "sap/ui/layout/GridData" {
|
|
|
10999
10963
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
11000
10964
|
* of the syntax of the settings object.
|
|
11001
10965
|
* See:
|
|
11002
|
-
* {@link topic
|
|
11003
|
-
* {@link topic
|
|
10966
|
+
* {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
|
|
10967
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
11004
10968
|
*/
|
|
11005
10969
|
constructor(
|
|
11006
10970
|
/**
|
|
@@ -11015,8 +10979,8 @@ declare module "sap/ui/layout/GridData" {
|
|
|
11015
10979
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
11016
10980
|
* of the syntax of the settings object.
|
|
11017
10981
|
* See:
|
|
11018
|
-
* {@link topic
|
|
11019
|
-
* {@link topic
|
|
10982
|
+
* {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
|
|
10983
|
+
* {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
|
|
11020
10984
|
*/
|
|
11021
10985
|
constructor(
|
|
11022
10986
|
/**
|
|
@@ -11891,6 +11855,7 @@ declare module "sap/ui/layout/GridData" {
|
|
|
11891
11855
|
bVisibleXL?: boolean
|
|
11892
11856
|
): this;
|
|
11893
11857
|
}
|
|
11858
|
+
export default GridData;
|
|
11894
11859
|
|
|
11895
11860
|
export interface $GridDataSettings extends $LayoutDataSettings {
|
|
11896
11861
|
/**
|
|
@@ -12109,7 +12074,7 @@ declare module "sap/ui/layout/HorizontalLayout" {
|
|
|
12109
12074
|
*
|
|
12110
12075
|
* A layout that provides support for horizontal alignment of controls
|
|
12111
12076
|
*/
|
|
12112
|
-
|
|
12077
|
+
class HorizontalLayout extends Control {
|
|
12113
12078
|
/**
|
|
12114
12079
|
* Constructor for a new HorizontalLayout.
|
|
12115
12080
|
*
|
|
@@ -12280,6 +12245,7 @@ declare module "sap/ui/layout/HorizontalLayout" {
|
|
|
12280
12245
|
bAllowWrapping?: boolean
|
|
12281
12246
|
): this;
|
|
12282
12247
|
}
|
|
12248
|
+
export default HorizontalLayout;
|
|
12283
12249
|
|
|
12284
12250
|
export interface $HorizontalLayoutSettings extends $ControlSettings {
|
|
12285
12251
|
/**
|
|
@@ -12319,7 +12285,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12319
12285
|
*
|
|
12320
12286
|
* Could be used as an aggregation of ResponsiveSplitter or nested in other PaneContainers.
|
|
12321
12287
|
*/
|
|
12322
|
-
|
|
12288
|
+
class PaneContainer extends UI5Element {
|
|
12323
12289
|
/**
|
|
12324
12290
|
* Constructor for a new PaneContainer.
|
|
12325
12291
|
*
|
|
@@ -12410,7 +12376,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12410
12376
|
/**
|
|
12411
12377
|
* The function to be called when the event occurs
|
|
12412
12378
|
*/
|
|
12413
|
-
fnFunction: (p1: Event) => void,
|
|
12379
|
+
fnFunction: (p1: Event<$PaneContainerResizeEventParameters>) => void,
|
|
12414
12380
|
/**
|
|
12415
12381
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.PaneContainer` itself
|
|
12416
12382
|
*/
|
|
@@ -12430,7 +12396,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12430
12396
|
/**
|
|
12431
12397
|
* The function to be called when the event occurs
|
|
12432
12398
|
*/
|
|
12433
|
-
fnFunction: (p1: Event) => void,
|
|
12399
|
+
fnFunction: (p1: Event<$PaneContainerResizeEventParameters>) => void,
|
|
12434
12400
|
/**
|
|
12435
12401
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.PaneContainer` itself
|
|
12436
12402
|
*/
|
|
@@ -12453,7 +12419,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12453
12419
|
/**
|
|
12454
12420
|
* The function to be called, when the event occurs
|
|
12455
12421
|
*/
|
|
12456
|
-
fnFunction: (p1: Event) => void,
|
|
12422
|
+
fnFunction: (p1: Event<$PaneContainerResizeEventParameters>) => void,
|
|
12457
12423
|
/**
|
|
12458
12424
|
* Context object on which the given function had to be called
|
|
12459
12425
|
*/
|
|
@@ -12470,16 +12436,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12470
12436
|
/**
|
|
12471
12437
|
* Parameters to pass along with the event
|
|
12472
12438
|
*/
|
|
12473
|
-
mParameters?:
|
|
12474
|
-
/**
|
|
12475
|
-
* An array of values representing the old (pixel)sizes of the split panes, which are inside the pane container.
|
|
12476
|
-
*/
|
|
12477
|
-
oldSizes?: float[];
|
|
12478
|
-
/**
|
|
12479
|
-
* An array of values representing the new (pixel)sizes of the split panes, which are inside the pane container.
|
|
12480
|
-
*/
|
|
12481
|
-
newSizes?: float[];
|
|
12482
|
-
}
|
|
12439
|
+
mParameters?: $PaneContainerResizeEventParameters
|
|
12483
12440
|
): this;
|
|
12484
12441
|
/**
|
|
12485
12442
|
* Getter for property layoutData.
|
|
@@ -12558,6 +12515,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12558
12515
|
sOrientation: Orientation | keyof typeof Orientation
|
|
12559
12516
|
): this;
|
|
12560
12517
|
}
|
|
12518
|
+
export default PaneContainer;
|
|
12561
12519
|
|
|
12562
12520
|
export interface $PaneContainerSettings extends $ElementSettings {
|
|
12563
12521
|
/**
|
|
@@ -12576,7 +12534,19 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12576
12534
|
/**
|
|
12577
12535
|
* Fired when contents are resized.
|
|
12578
12536
|
*/
|
|
12579
|
-
resize?: (oEvent: Event) => void;
|
|
12537
|
+
resize?: (oEvent: Event<$PaneContainerResizeEventParameters>) => void;
|
|
12538
|
+
}
|
|
12539
|
+
|
|
12540
|
+
export interface $PaneContainerResizeEventParameters {
|
|
12541
|
+
/**
|
|
12542
|
+
* An array of values representing the old (pixel)sizes of the split panes, which are inside the pane container.
|
|
12543
|
+
*/
|
|
12544
|
+
oldSizes?: float[];
|
|
12545
|
+
|
|
12546
|
+
/**
|
|
12547
|
+
* An array of values representing the new (pixel)sizes of the split panes, which are inside the pane container.
|
|
12548
|
+
*/
|
|
12549
|
+
newSizes?: float[];
|
|
12580
12550
|
}
|
|
12581
12551
|
}
|
|
12582
12552
|
|
|
@@ -12598,7 +12568,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
|
|
|
12598
12568
|
* This is a layout where several controls can be added. These controls are blown up to fit in an entire
|
|
12599
12569
|
* row. If the window resizes, the controls are moved between the rows and resized again.
|
|
12600
12570
|
*/
|
|
12601
|
-
|
|
12571
|
+
class ResponsiveFlowLayout extends Control {
|
|
12602
12572
|
/**
|
|
12603
12573
|
* Constructor for a new ResponsiveFlowLayout.
|
|
12604
12574
|
*
|
|
@@ -12691,8 +12661,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
|
|
|
12691
12661
|
/**
|
|
12692
12662
|
* @SINCE 1.48.7
|
|
12693
12663
|
*
|
|
12694
|
-
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
12695
|
-
* ariaLabelledBy}.
|
|
12664
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
12696
12665
|
*/
|
|
12697
12666
|
getAriaLabelledBy(): ID[];
|
|
12698
12667
|
/**
|
|
@@ -12797,6 +12766,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
|
|
|
12797
12766
|
bResponsive?: boolean
|
|
12798
12767
|
): this;
|
|
12799
12768
|
}
|
|
12769
|
+
export default ResponsiveFlowLayout;
|
|
12800
12770
|
|
|
12801
12771
|
export interface $ResponsiveFlowLayoutSettings extends $ControlSettings {
|
|
12802
12772
|
/**
|
|
@@ -12835,7 +12805,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayoutData" {
|
|
|
12835
12805
|
*
|
|
12836
12806
|
* This is a LayoutData element that can be added to a control if this control is used within a ResponsiveFlowLayout.
|
|
12837
12807
|
*/
|
|
12838
|
-
|
|
12808
|
+
class ResponsiveFlowLayoutData extends LayoutData {
|
|
12839
12809
|
/**
|
|
12840
12810
|
* Constructor for a new ResponsiveFlowLayoutData.
|
|
12841
12811
|
*
|
|
@@ -13042,6 +13012,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayoutData" {
|
|
|
13042
13012
|
iWeight?: int
|
|
13043
13013
|
): this;
|
|
13044
13014
|
}
|
|
13015
|
+
export default ResponsiveFlowLayoutData;
|
|
13045
13016
|
|
|
13046
13017
|
export interface $ResponsiveFlowLayoutDataSettings
|
|
13047
13018
|
extends $LayoutDataSettings {
|
|
@@ -13100,15 +13071,15 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
|
|
|
13100
13071
|
* The control is intended for developing administrative tools and applications. Structure: The responsive
|
|
13101
13072
|
* splitter holds the following hierarchy of containers and controls:
|
|
13102
13073
|
* - {@link sap.ui.layout.PaneContainer Pane Container} - holds one or more Split Panes and determines
|
|
13103
|
-
*
|
|
13104
|
-
*
|
|
13074
|
+
* the pane orientation. The pane which is stored in `rootPaneContainer` holds all other pane containers
|
|
13075
|
+
* and split panes.
|
|
13105
13076
|
* - {@link sap.ui.layout.SplitPane Split Pane} - independent containers that may interact with one another.
|
|
13106
|
-
*
|
|
13077
|
+
* Each pane can hold only one control. Usage: When to use:
|
|
13107
13078
|
* - The application has to display several areas side by side that must be resizable.
|
|
13108
13079
|
* - The application must work on a range of different devices in a responsive manner. Responsive
|
|
13109
|
-
*
|
|
13080
|
+
* Behavior:
|
|
13110
13081
|
* - As soon as views are in the off-canvas mode, the pagination bar at the bottom of the application
|
|
13111
|
-
*
|
|
13082
|
+
* allows the user to switch between them.
|
|
13112
13083
|
* - On touch-enabled devices the bars of the splitter can be moved by touching the grip.
|
|
13113
13084
|
* - Double-clicking on a splitter will collapse or expand it back to its original position.
|
|
13114
13085
|
*
|
|
@@ -13116,7 +13087,7 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
|
|
|
13116
13087
|
* might lead to inconsistent layout. If it is necessary, you need to ensure the sum of all sizes of the
|
|
13117
13088
|
* SplitPanes doesn't exceed the width of the PaneContainer.
|
|
13118
13089
|
*/
|
|
13119
|
-
|
|
13090
|
+
class ResponsiveSplitter extends Control {
|
|
13120
13091
|
/**
|
|
13121
13092
|
* Constructor for a new ResponsiveSplitter.
|
|
13122
13093
|
*
|
|
@@ -13276,6 +13247,7 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
|
|
|
13276
13247
|
sWidth?: CSSSize
|
|
13277
13248
|
): this;
|
|
13278
13249
|
}
|
|
13250
|
+
export default ResponsiveSplitter;
|
|
13279
13251
|
|
|
13280
13252
|
export interface $ResponsiveSplitterSettings extends $ControlSettings {
|
|
13281
13253
|
/**
|
|
@@ -13318,11 +13290,11 @@ declare module "sap/ui/layout/SplitPane" {
|
|
|
13318
13290
|
*
|
|
13319
13291
|
* The behavior of the Split Panes is handled by the following properties:
|
|
13320
13292
|
* - `requiredParentWidth` - determines the minimum width of the parent container (in pixels). When it
|
|
13321
|
-
*
|
|
13293
|
+
* is reached, the pane will be hidden from the screen.
|
|
13322
13294
|
* - `demandPane` - determines if the pane is reachable via the pagination bar after it has been hidden
|
|
13323
|
-
*
|
|
13295
|
+
* from the screen.
|
|
13324
13296
|
*/
|
|
13325
|
-
|
|
13297
|
+
class SplitPane extends UI5Element {
|
|
13326
13298
|
/**
|
|
13327
13299
|
* Constructor for a new SplitPane.
|
|
13328
13300
|
*
|
|
@@ -13469,6 +13441,7 @@ declare module "sap/ui/layout/SplitPane" {
|
|
|
13469
13441
|
iRequiredParentWidth?: int
|
|
13470
13442
|
): this;
|
|
13471
13443
|
}
|
|
13444
|
+
export default SplitPane;
|
|
13472
13445
|
|
|
13473
13446
|
export interface $SplitPaneSettings extends $ElementSettings {
|
|
13474
13447
|
/**
|
|
@@ -13534,7 +13507,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13534
13507
|
*
|
|
13535
13508
|
* Responsive Behavior: On touch-enabled devices the bars of the splitter can be moved by touching the grip.
|
|
13536
13509
|
*/
|
|
13537
|
-
|
|
13510
|
+
class Splitter extends Control {
|
|
13538
13511
|
/**
|
|
13539
13512
|
* Constructor for a new Splitter.
|
|
13540
13513
|
*
|
|
@@ -13625,7 +13598,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13625
13598
|
/**
|
|
13626
13599
|
* The function to be called when the event occurs
|
|
13627
13600
|
*/
|
|
13628
|
-
fnFunction: (p1: Event) => void,
|
|
13601
|
+
fnFunction: (p1: Event<$SplitterResizeEventParameters>) => void,
|
|
13629
13602
|
/**
|
|
13630
13603
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.Splitter` itself
|
|
13631
13604
|
*/
|
|
@@ -13645,7 +13618,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13645
13618
|
/**
|
|
13646
13619
|
* The function to be called when the event occurs
|
|
13647
13620
|
*/
|
|
13648
|
-
fnFunction: (p1: Event) => void,
|
|
13621
|
+
fnFunction: (p1: Event<$SplitterResizeEventParameters>) => void,
|
|
13649
13622
|
/**
|
|
13650
13623
|
* Context object to call the event handler with. Defaults to this `sap.ui.layout.Splitter` itself
|
|
13651
13624
|
*/
|
|
@@ -13668,7 +13641,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13668
13641
|
/**
|
|
13669
13642
|
* The function to be called, when the event occurs
|
|
13670
13643
|
*/
|
|
13671
|
-
fnFunction: (p1: Event) => void,
|
|
13644
|
+
fnFunction: (p1: Event<$SplitterResizeEventParameters>) => void,
|
|
13672
13645
|
/**
|
|
13673
13646
|
* Context object on which the given function had to be called
|
|
13674
13647
|
*/
|
|
@@ -13751,21 +13724,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13751
13724
|
/**
|
|
13752
13725
|
* Parameters to pass along with the event
|
|
13753
13726
|
*/
|
|
13754
|
-
mParameters?:
|
|
13755
|
-
/**
|
|
13756
|
-
* The ID of the splitter control. The splitter control can also be accessed by calling getSource() on the
|
|
13757
|
-
* event.
|
|
13758
|
-
*/
|
|
13759
|
-
id?: string;
|
|
13760
|
-
/**
|
|
13761
|
-
* An array of values representing the old (pixel-)sizes of the splitter contents
|
|
13762
|
-
*/
|
|
13763
|
-
oldSizes?: int[];
|
|
13764
|
-
/**
|
|
13765
|
-
* An array of values representing the new (pixel-)sizes of the splitter contents
|
|
13766
|
-
*/
|
|
13767
|
-
newSizes?: int[];
|
|
13768
|
-
}
|
|
13727
|
+
mParameters?: $SplitterResizeEventParameters
|
|
13769
13728
|
): this;
|
|
13770
13729
|
/**
|
|
13771
13730
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
@@ -13929,6 +13888,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13929
13888
|
forceDirectly?: boolean
|
|
13930
13889
|
): void;
|
|
13931
13890
|
}
|
|
13891
|
+
export default Splitter;
|
|
13932
13892
|
|
|
13933
13893
|
export interface $SplitterSettings extends $ControlSettings {
|
|
13934
13894
|
/**
|
|
@@ -13957,7 +13917,25 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13957
13917
|
/**
|
|
13958
13918
|
* Event is fired when contents are resized.
|
|
13959
13919
|
*/
|
|
13960
|
-
resize?: (oEvent: Event) => void;
|
|
13920
|
+
resize?: (oEvent: Event<$SplitterResizeEventParameters>) => void;
|
|
13921
|
+
}
|
|
13922
|
+
|
|
13923
|
+
export interface $SplitterResizeEventParameters {
|
|
13924
|
+
/**
|
|
13925
|
+
* The ID of the splitter control. The splitter control can also be accessed by calling getSource() on the
|
|
13926
|
+
* event.
|
|
13927
|
+
*/
|
|
13928
|
+
id?: string;
|
|
13929
|
+
|
|
13930
|
+
/**
|
|
13931
|
+
* An array of values representing the old (pixel-)sizes of the splitter contents
|
|
13932
|
+
*/
|
|
13933
|
+
oldSizes?: int[];
|
|
13934
|
+
|
|
13935
|
+
/**
|
|
13936
|
+
* An array of values representing the new (pixel-)sizes of the splitter contents
|
|
13937
|
+
*/
|
|
13938
|
+
newSizes?: int[];
|
|
13961
13939
|
}
|
|
13962
13940
|
}
|
|
13963
13941
|
|
|
@@ -13981,7 +13959,7 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
13981
13959
|
* "%" and the special case "auto". (The CSS value "auto" is used internally to recalculate the size of
|
|
13982
13960
|
* the content dynamically and is not directly set as style property.)
|
|
13983
13961
|
*/
|
|
13984
|
-
|
|
13962
|
+
class SplitterLayoutData extends LayoutData {
|
|
13985
13963
|
/**
|
|
13986
13964
|
* Constructor for a new SplitterLayoutData.
|
|
13987
13965
|
*
|
|
@@ -14130,6 +14108,7 @@ declare module "sap/ui/layout/SplitterLayoutData" {
|
|
|
14130
14108
|
sSize?: CSSSize
|
|
14131
14109
|
): this;
|
|
14132
14110
|
}
|
|
14111
|
+
export default SplitterLayoutData;
|
|
14133
14112
|
|
|
14134
14113
|
export interface $SplitterLayoutDataSettings extends $LayoutDataSettings {
|
|
14135
14114
|
/**
|
|
@@ -14169,7 +14148,7 @@ declare module "sap/ui/layout/VerticalLayout" {
|
|
|
14169
14148
|
*
|
|
14170
14149
|
* In this layout the content controls are rendered one below the other.
|
|
14171
14150
|
*/
|
|
14172
|
-
|
|
14151
|
+
class VerticalLayout extends Control {
|
|
14173
14152
|
/**
|
|
14174
14153
|
* Constructor for a new VerticalLayout.
|
|
14175
14154
|
*
|
|
@@ -14363,6 +14342,7 @@ declare module "sap/ui/layout/VerticalLayout" {
|
|
|
14363
14342
|
sWidth?: CSSSize
|
|
14364
14343
|
): this;
|
|
14365
14344
|
}
|
|
14345
|
+
export default VerticalLayout;
|
|
14366
14346
|
|
|
14367
14347
|
export interface $VerticalLayoutSettings extends $ControlSettings {
|
|
14368
14348
|
/**
|