-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest10.json
95 lines (95 loc) · 2.23 KB
/
manifest10.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"_version": "1.15.0",
"sap.app": {
"id": "card.explorer.members.timeline.card",
"type": "card",
"title": "Sample of a Members Timeline",
"subTitle": "Sample of a Members Timeline",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"Timeline",
"Card",
"Sample"
]
}
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "sap-icon://activity-individual"
}
},
"sap.card": {
"type": "Timeline",
"header": {
"title": "New Team Members",
"icon": {
"src": "sap-icon://group"
}
},
"content": {
"data": {
"json": [
{
"Name": "Laurent Dubois",
"JobTitle": "Accounts Payable Manager",
"Photo": "./images/Laurent_Dubois.png",
"Icon": "sap-icon://activity-individual",
"JobResponsibilities": "I am Laurent. I put great attention to detail.",
"HireDate": "Date(1371020400000)"
},
{
"Name": "Sabine Mayer",
"JobTitle": "Configuration Expert",
"Photo": "./images/Sabine_Mayer.png",
"Icon": "sap-icon://settings",
"JobResponsibilities": "I am Sabine. And can't wait to get to know the team.",
"HireDate": "Date(1376290800000)"
},
{
"Name": "Alain Chevalier",
"JobTitle": "Credit Analyst",
"Photo": "./images/Alain_Chevalier.png",
"Icon": "sap-icon://manager-insight",
"JobResponsibilities": "I am Alain. I put great attention to detail.",
"HireDate": "Date(1332403200000)"
},
{
"Name": "Monique Legrand",
"JobTitle": "Accountant Manager",
"Photo": "./images/Monique_Legrand.png",
"JobResponsibilities": "I am Monique. And i am the new head of Accounting.",
"Icon": "sap-icon://account",
"HireDate": "Date(1422777600000)"
}
]
},
"item": {
"dateTime": {
"value": "{HireDate}"
},
"description": {
"value": "{JobResponsibilities}"
},
"title": {
"value": "{JobTitle}"
},
"owner": {
"value": "{Name}"
},
"ownerImage": {
"value": "{Photo}"
},
"icon": {
"src": "{Icon}"
}
}
}
}
}