Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UIAD] Add new object type UIAD #586

Merged
merged 35 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ab1cbf1
Adding uiad files
aaronbruchsap Feb 12, 2024
a9b7f45
Adding example file
aaronbruchsap Feb 12, 2024
3be5888
Missing new line
aaronbruchsap Feb 12, 2024
4af2a66
Incorporated feedback from review
aaronbruchsap Feb 15, 2024
6b0c788
Fixed indentation of example
aaronbruchsap Feb 15, 2024
5d659e2
Merge branch 'main' into main
wurzka Feb 16, 2024
9d661ed
Missed some abbreviations
aaronbruchsap Feb 16, 2024
025b4e3
Added custom header description and additional properties
aaronbruchsap Feb 19, 2024
3eebfd8
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
aaronbruchsap Feb 19, 2024
5277c7d
Fixed linting issues
aaronbruchsap Feb 20, 2024
4f9a272
Merge branch 'main' into main
schneidermic0 Mar 1, 2024
3a032cd
Remove ID and add defaultedTile
aaronbruchsap Mar 4, 2024
7ddf29e
Fixed linting issues
aaronbruchsap Mar 4, 2024
3d61064
Updated schema according to latest discussion
aaronbruchsap Mar 11, 2024
bf9cdaf
Fixed example and linting
aaronbruchsap Mar 11, 2024
dc900d3
Renamed default to is_default
aaronbruchsap Mar 11, 2024
89d4587
Removed required from is_legacy
aaronbruchsap Mar 11, 2024
3eeeed6
Incorporated feedback from review
aaronbruchsap Mar 22, 2024
19f0341
Merge branch 'main' into main
albertmink Mar 26, 2024
b4af0fd
Merge branch 'main' into main
schneidermic0 Apr 5, 2024
6b9d0c5
Merge branch 'main' into main
schneidermic0 Apr 10, 2024
b0d6f6b
Fix schema due to changes in issue #582
schneidermic0 Apr 10, 2024
bf4ba1a
Merge branch 'main' into main
schneidermic0 Apr 12, 2024
37ab12d
Merge branch 'main' into main
schneidermic0 Apr 12, 2024
00fd3a3
Update UIAD AFF
ViktoriaFreidel May 6, 2024
983a52c
Update AFF Example filename UIAD
ViktoriaFreidel May 6, 2024
c97e47f
Update UIAD titles, descripions and remove default
ViktoriaFreidel May 13, 2024
a303880
Merge branch 'SAP:main' into main
ViktoriaFreidel Jun 10, 2024
c364211
Rename field definition for navigation parameters
ViktoriaFreidel Jun 10, 2024
c35696a
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
ViktoriaFreidel Jun 10, 2024
e15be42
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
ViktoriaFreidel Jun 10, 2024
5cce477
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
ViktoriaFreidel Jun 10, 2024
0d813d7
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
ViktoriaFreidel Jun 10, 2024
fa23e7f
Update file-formats/uiad/type/zif_aff_uiad_v1.intf.abap
ViktoriaFreidel Jun 10, 2024
a439a5a
Correct name defination after rename
ViktoriaFreidel Jun 10, 2024
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
5 changes: 5 additions & 0 deletions file-formats/uiad/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# UIAD File Format

File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.uiad.json` | 1 | [`zif_aff_uiad_v1.intf.abap`](./type/zif_aff_uiad_v1.intf.abap) | [`uiad-v1.json`](./uiad-v1.json) | [z_ui5_sample_app.uiad.json](./examples/z_ui5_sample_app.uiad.json)
45 changes: 45 additions & 0 deletions file-formats/uiad/examples/z_ui5_sample_app.uiad.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"formatVersion": "1",
"header": {
"description": "UIAD Title",
"originalLanguage": "en"
},
"generalInformation": {
"information": "UIAD Information",
"catalogId": "/UI2/FLP_DEMO_BC1_TEST",
"transaction": "F1234",
"fioriId": "F1234",
"supportComponent": "CA-FLP-FE-UI",
aaronbruchsap marked this conversation as resolved.
Show resolved Hide resolved
"defaultTile": "3WO90XZ1DX19DA1UD5RDXQXWK"
},
"appDetails": {
"appType": "ui5",
"ui5": {
"appId": "sap.ushell.demo.NavigationSample",
"icfPath": "/sap/bc/ui5_ui5/ui2/navigationsample"
}
},
"navigation": {
"targetMappingId": "3WO90XZ1DX1AO4ON8E556YJ10",
"supportedDeviceTypes": {
"desktop": true,
"tablet": true,
"phone": true
},
"semanticObject": "BusinessPartner",
"action": "manage"
},
"tiles": [
{
"id": "3WO90XZ1DX19DA1UD5RDXQXWK",
"tileType": "static",
"standard": {
"title": "Tile Title",
"subtitle": "Tile Subtitle",
"information": "Tile Information",
"keywords": "Tile Keywords",
"icon": "sap-icon://ai"
}
}
]
}
Loading
Loading