-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Release 2.1.0 ## New features - Provide version of module via 'OnNewStatusModuleVersion' - 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' - Added UI icon and browser tab information ## Bugfix - No deselection of device via UI table
- Loading branch information
1 parent
a74b249
commit ac82c0d
Showing
18 changed files
with
864 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+15.2 KB
CSK_Module_DeviceScanner/pages/assets/CSK_Module_DeviceScanner/UI_sample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
{ | ||
"showLoginButton": false | ||
"canChangeLanguage": true, | ||
"showLoginButton": false, | ||
"defaultLanguage": "en", | ||
"disableEditMode": true, | ||
"showPageHistory": true, | ||
"compactMode": false, | ||
"canChangeCompactMode": false | ||
} |
53 changes: 53 additions & 0 deletions
53
CSK_Module_DeviceScanner/pages/pages/CSK_Module_DeviceScanner/CSK_Module_DeviceScanner.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
.myCustomSpace10px_CSK_Module_DeviceScanner { | ||
min-height: 10px; | ||
} | ||
|
||
.myCustomSpacerVert10_CSK_Module_DeviceScanner { | ||
min-height: 10px; | ||
} | ||
|
||
.myCustomSpacerVert20_CSK_Module_DeviceScanner { | ||
min-height: 20px; | ||
} | ||
|
||
.myCustomFrameNoColor_CSK_Module_DeviceScanner { | ||
margin: 6px; | ||
border-radius: 10px; | ||
border-style: solid; | ||
border-width: 0px; | ||
border-color: 007CC1; | ||
background-color: white; | ||
} | ||
|
||
.myCustomFrame_CSK_Module_DeviceScanner { | ||
margin: 6px; | ||
border-radius: 10px; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: #007CC1; | ||
background-color: white; | ||
} | ||
|
||
.myCustomLabel_CSK_Module_DeviceScanner { | ||
font-size:30px; | ||
color: grey; | ||
margin-top: 10px; | ||
} | ||
|
||
.myCustomFrameLabel_CSK_Module_DeviceScanner { | ||
background: white; | ||
position:relative; | ||
top: calc(-1.2rem); | ||
left: calc(1rem); | ||
font-size: medium; | ||
} | ||
|
||
.myCustomBorderBottom_CSK_Module_DeviceScanner { | ||
border-bottom: 1px solid lightgray; | ||
margin-inline: calc(1rem); | ||
} | ||
|
||
.myCustomBackground_CSK_Module_DeviceScanner { | ||
} | ||
|
||
.myCustomButton_CSK_Module_DeviceScanner { | ||
border-radius: 30px; | ||
padding-right: 0px; | ||
} |
560 changes: 320 additions & 240 deletions
560
CSK_Module_DeviceScanner/pages/pages/CSK_Module_DeviceScanner/CSK_Module_DeviceScanner.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{ | ||
"version": "1.0", | ||
"pages": [] | ||
"version": "1.0", | ||
"pages": [ | ||
|
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
document.addEventListener('sopasjs-ready', () => { | ||
const page_1 = document.querySelector('div.sopasjs-ui-navbar-wrapper > div > ul > li:nth-child(3) > a > i'); | ||
page_1.classList.remove('fa-file'); | ||
page_1.classList.add('fa-search'); | ||
|
||
const page_FirstLabel = document.querySelector('div.sopasjs-ui-navbar-wrapper > div > ul > li:nth-child(2)'); | ||
const page_App = document.querySelector('div.sopasjs-ui-navbar-wrapper > div > ul > li:nth-child(4)'); | ||
const page_Setup = document.querySelector('div.sopasjs-ui-navbar-wrapper > div > ul > li:nth-child(5) > a'); | ||
|
||
page_FirstLabel.remove(); | ||
page_App.remove(); | ||
page_Setup.remove(); | ||
|
||
setTimeout(() => { | ||
document.title = 'CSK_Module_DeviceScanner' | ||
}, 500); | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.