Skip to content

Commit a341e97

Browse files
# Release 1.6.0 (#1)
# Release 1.6.0 ## New features - Provide version of module via 'OnNewStatusModuleVersion' - Function 'getParameters' to provide PersistentData parameters - Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function ## Improvements - New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle' - 'loadParameters' returns its success - 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData - Changed log level of some messages from 'info' to 'fine' - Added UI icon and browser tab information ## Bugfix - Legacy bindings of ValueDisplay within UI did not work if deployed with VS Code AppSpace SDK - UI differs if deployed via Appstudio or VS Code AppSpace SDK - Fullscreen icon of iFrame was visible
1 parent 628829a commit a341e97

13 files changed

Lines changed: 1113 additions & 382 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## Release 1.6.0
5+
6+
### New features
7+
- Provide version of module via 'OnNewStatusModuleVersion'
8+
- Function 'getParameters' to provide PersistentData parameters
9+
- Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function
10+
11+
### Improvements
12+
- New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle'
13+
- 'loadParameters' returns its success
14+
- 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData
15+
- Changed log level of some messages from 'info' to 'fine'
16+
- Added UI icon and browser tab information
17+
18+
### Bugfix
19+
- Legacy bindings of ValueDisplay within UI did not work if deployed with VS Code AppSpace SDK
20+
- UI differs if deployed via Appstudio or VS Code AppSpace SDK
21+
- Fullscreen icon of iFrame was visible
22+
423
## Release 1.5.0
524

625
### Improvements
Lines changed: 67 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,73 @@
1+
.myCustomSpacerVert10_CSK_Module_UserManagement {
2+
min-height: 10px;
3+
}
4+
5+
.myCustomSpacerVert20_CSK_Module_UserManagement {
6+
min-height: 20px;
7+
}
8+
9+
.myCustomFrameNoColor_CSK_Module_UserManagement {
10+
margin: 6px;
11+
border-radius: 10px;
12+
border-style: solid;
13+
border-width: 0px;
14+
border-color: 007CC1;
15+
background-color: white;
16+
}
17+
118
.myCustomFrame_CSK_Module_UserManagement {
19+
margin: 6px;
20+
border-radius: 10px;
221
border-style: solid;
322
border-width: 1px;
4-
border-color: grey;
5-
margin: 6px;
23+
border-color: #007CC1;
24+
background-color: white;
25+
}
26+
27+
.myCustomLabel_CSK_Module_UserManagement {
28+
font-size:30px;
29+
color: grey;
30+
margin-top: 10px;
31+
}
32+
33+
.myCustomFrameLabel_CSK_Module_UserManagement {
34+
background: white;
35+
position:relative;
36+
top: calc(-1.2rem);
37+
left: calc(1rem);
38+
font-size: medium;
39+
}
40+
41+
.myCustomPersistentDataMargin_CSK_Module_UserManagement {
42+
margin-top: -53px;
43+
margin-left: 130px;
44+
}
45+
46+
.myCustomPersistentDataMarginBack_CSK_Module_UserManagement {
47+
margin-left: -127px;
48+
}
49+
50+
.myCustomBorderLeft_CSK_Module_UserManagement {
51+
border-left: 1px solid lightgray;
52+
}
53+
54+
.myCustomMarginFirstRow_CSK_Module_UserManagement {
55+
margin-top: -49px;
56+
}
57+
58+
.myCustomBorderBottom_CSK_Module_UserManagement {
59+
border-bottom: 1px solid lightgray;
60+
margin-inline: calc(1rem);
61+
}
62+
63+
.myCustomMarginTop7PX_CSK_Module_UserManagement {
64+
margin-top: 7px;
65+
}
66+
67+
.myCustomBackground_CSK_Module_UserManagement {
668
}
769

8-
.myCustomCssClass_CSK_Module_UserManagement {
70+
.myCustomButton_CSK_Module_UserManagement {
71+
border-radius: 30px;
72+
padding: 11px;
973
}

0 commit comments

Comments
 (0)