@sap/ux-specification 1.96.14 → 1.96.15
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/CHANGELOG.md +62 -15
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/schemas/v2/AnalyticalListPageConfig.json +1 -0
- package/dist/schemas/v2/ListReportConfig.json +1 -0
- package/dist/schemas/v2/ObjectPageConfig.json +1 -0
- package/dist/src/specification/v2/controls/Table.d.ts +1 -0
- package/dist/src/specification/v2/controls/index.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +2 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export * from './Table';
|
|
|
7
7
|
export * from './ToolBar';
|
|
8
8
|
export * from './Footer';
|
|
9
9
|
export * from './AnalyticalListPageChart';
|
|
10
|
+
export * from './AnalyticalListPageKPI';
|
|
10
11
|
export * from './ObjectPageHeader';
|
|
11
12
|
export * from './ObjectPageLayout';
|
|
12
13
|
export * from './ObjectPageSection';
|
|
@@ -7,9 +7,10 @@ export declare const SAP_UI_TABLE = "sap.ui.table";
|
|
|
7
7
|
/**
|
|
8
8
|
* Method which receives fragment definition node and reads root column definition.
|
|
9
9
|
* @param {unknown} definition - Application or Page Config object.
|
|
10
|
+
* @param {unknown} fragment - fragment definition
|
|
10
11
|
* @returns {unknown | undefined} Root column read from definition.
|
|
11
12
|
*/
|
|
12
|
-
export declare function getRootCustomColumnFromFragmentJSON(definition: unknown): string | unknown | undefined;
|
|
13
|
+
export declare function getRootCustomColumnFromFragmentJSON(definition: unknown, fragment?: unknown): string | unknown | undefined;
|
|
13
14
|
/**
|
|
14
15
|
* Identifies the right extensions based on a pattern, then deletes all corresponding columns and cells
|
|
15
16
|
* @param manifestSection - Section in manifest.json comprising the extensions
|