Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ mta_archives/

# IDEs
.vscode
.idea
.idea
@cds-models
1,235 changes: 750 additions & 485 deletions README.md

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion _i18n/i18n.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ sumTargetValue=Sum of target values
connectedField=Connected fields

changeCriticality=Change Criticality (Bound)
changeProgress=Change Progress (Bound)
unboundAction=Show input (Unbound)
subSection=Subsection
customSubSection=Custom subsection
Expand Down Expand Up @@ -74,6 +75,7 @@ fieldWithUoM=Property with unit
fieldWithCriticality=Property with criticality
fieldWithPerCent=Percentage property
fieldWithToolTip=Field with tool tip
toolTip=This is a tip 😄
adminData=Admin data (field group)
dataFieldWithURL=URL property
contactQuickView=Contact with quick view
Expand Down Expand Up @@ -125,4 +127,13 @@ region=Region
description2=Second description
MultiInputField=Multi input field

MultiInputFieldWithVH=Multi input with value help and input filter
MultiInputFieldWithVH=Multi input with value help and input filter

ID=ID
ExternalId=External ID
IsActive=Is Active
Category=Category
SuperOrdinateOrgUnit=Super ordinate Org-Unit
SubordinaryOrgUnits=Subordinary Org-Units
OrganizationalUnit=Organizational unit
OrganizationalUnits=Organizational units
13 changes: 12 additions & 1 deletion _i18n/i18n_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ sumTargetValue=Sum of target values
connectedField=Connected fields

changeCriticality=Change Criticality (Bound)
changeProgress=Change Progress (Bound)
unboundAction=Show input (Unbound)
subSection=Subsection
customSubSection=Custom subsection
Expand Down Expand Up @@ -74,6 +75,7 @@ fieldWithUoM=Property with unit
fieldWithCriticality=Property with criticality
fieldWithPerCent=Percentage property
fieldWithToolTip=Field with tool tip
toolTip=This is a tip 😄
adminData=Admin data (field group)
dataFieldWithURL=URL property
contactQuickView=Contact with quick view
Expand Down Expand Up @@ -125,4 +127,13 @@ region=Region
description2=Second description
MultiInputField=Multi input field

MultiInputFieldWithVH=Multi input with value help and input filter
MultiInputFieldWithVH=Multi input with value help and input filter

ID=ID
ExternalId=External ID
IsActive=Is Active
Category=Category
SuperOrdinateOrgUnit=Super ordinate Org-Unit
SubordinaryOrgUnits=Subordinary Org-Units
OrganizationalUnit=Organizational unit
OrganizationalUnits=Organizational units
28 changes: 28 additions & 0 deletions app/ControllerExtension.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/**
* Helper to be able to define how to get the page specific extension API when writing a controller extension.
*/
declare module 'sap/ui/core/mvc/ControllerExtension' {
import View from 'sap/ui/core/mvc/View';
import AppComponent from 'sap/fe/core/AppComponent';
import Controller from 'sap/ui/core/mvc/Controller';
import EditFlow from 'sap/fe/core/controllerextensions/EditFlow';
import IntentBasedNavigation from 'sap/fe/core/controllerextensions/IntentBasedNavigation';
import ViewState from 'sap/fe/core/controllerextensions/ViewState';
import Routing from 'sap/fe/core/controllerextensions/Routing';

export default class ControllerExtension<ExtensionAPI> {
override?: Overrides;
base: {
getExtensionAPI(): ExtensionAPI;
getView(): View;
getAppComponent(): AppComponent;
};
}

export type Overrides<GenericController extends Controller = Controller> = {
editFlow?: Partial<EditFlow>;
intentBasedNavigation?: Partial<IntentBasedNavigation>;
routing?: Partial<Routing>;
viewState?: Partial<ViewState>;
} & Partial<GenericController>;
}
97 changes: 0 additions & 97 deletions app/featureShowcase/capabilities.cds

This file was deleted.

13 changes: 0 additions & 13 deletions app/featureShowcase/layouts_GrandChildEntities.cds

This file was deleted.

22 changes: 0 additions & 22 deletions app/featureShowcase/package.json

This file was deleted.

24 changes: 0 additions & 24 deletions app/featureShowcase/ui5.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions app/featureShowcase/webapp/Component.js

This file was deleted.

21 changes: 0 additions & 21 deletions app/featureShowcase/webapp/ext/CustomActions.js

This file was deleted.

10 changes: 0 additions & 10 deletions app/featureShowcase/webapp/ext/CustomFilter-Rating.js

This file was deleted.

12 changes: 0 additions & 12 deletions app/featureShowcase/webapp/ext/SideContent.js

This file was deleted.

Loading