kc-sdk 6.4.7971 → 6.8.10819
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -2
- package/src/3rdpartylicenses.txt +323 -0
- package/src/app.component.css.map +7 -0
- package/src/assets/images/optum_favicon.png +0 -0
- package/src/assets/sdk/kc-sdk-config.js +8 -0
- package/src/assets/sdk/kc-sdk-config.json +8 -0
- package/src/{kc-sdk-support.js → assets/sdk/kc-sdk-support.js} +48 -51
- package/src/assets/sdk/kc-sdk.js +736 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +21 -0
- package/src/main.js +13 -0
- package/src/main.js.map +1 -0
- package/src/polyfills.js +3 -0
- package/src/polyfills.js.map +1 -0
- package/src/styles.css +2 -0
- package/src/styles.css.map +7 -0
- package/src/angular.min.js +0 -294
- package/src/build/config.gypi +0 -77
- package/src/kc-messaging-provider.js +0 -26
- package/src/kc-sdk-config.js +0 -6
- package/src/kc-sdk.js +0 -558
- package/src/kcSdkConfigs/kc-sdk-config.cloud.js +0 -6
- package/src/kcSdkConfigs/kc-sdk-config.local.js +0 -6
- package/src/lodash.min.js +0 -121
- package/src/package-lock.json +0 -13
- package/src/requirenoop.js +0 -1
- package/src/sdk-show-last.directive.js +0 -11
- package/src/sdk-string.service.js +0 -70
- package/src/sdk-tester-signin.service.js +0 -52
- package/src/sdk-tester.js +0 -591
- package/src/sdk-tester.module.js +0 -1
- package/src/sdkTester.html +0 -120
- package/src/sign-in.html +0 -247
- package/src/tester.css +0 -271
- package/src/theme-changer.css +0 -142
- package/src/theme-changer.js +0 -27
- /package/src/{bootstrap.min.css → assets/styles/bootstrap.min.css} +0 -0
- /package/src/{uitk-defaults.css → assets/styles/uitk-defaults.css} +0 -0
package/src/theme-changer.css
DELETED
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--white: #afafaf;
|
|
3
|
-
--red: #e31b23;
|
|
4
|
-
--bodyColor: #292a2b;
|
|
5
|
-
--borderFormEls: hsl(0, 0%, 10%);
|
|
6
|
-
--bgFormEls: hsl(0, 0%, 14%);
|
|
7
|
-
--bgFormElsFocus: hsl(0, 7%, 20%);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.theme-light input,
|
|
11
|
-
.theme-light label input,
|
|
12
|
-
.theme-light select,
|
|
13
|
-
.theme-light textarea,
|
|
14
|
-
.theme-light input[type="checkbox"] {
|
|
15
|
-
color: inherit !important;
|
|
16
|
-
background: #ffffff !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.theme-light button {
|
|
20
|
-
color: inherit;
|
|
21
|
-
background: #efefef;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.theme-light label,
|
|
25
|
-
.theme-light td label {
|
|
26
|
-
color: inherit;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.theme-light body {
|
|
30
|
-
color: inherit;
|
|
31
|
-
background: #fbfbfe;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.theme-dark input,
|
|
35
|
-
.theme-dark label input,
|
|
36
|
-
.theme-dark select,
|
|
37
|
-
.theme-dark textarea,
|
|
38
|
-
.theme-dark input[type="checkbox"] {
|
|
39
|
-
color: #afafaf !important;
|
|
40
|
-
background: #242424 !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.theme-dark button {
|
|
44
|
-
color: #afafaf;
|
|
45
|
-
background: #242424;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.theme-dark label,
|
|
49
|
-
.theme-dark td label {
|
|
50
|
-
color: #afafaf;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.theme-dark body {
|
|
54
|
-
color: #afafaf;
|
|
55
|
-
background: #292a2b;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
/* textarea::-webkit-scrollbar-track,
|
|
59
|
-
body::-webkit-scrollbar-track {
|
|
60
|
-
background: var(--scrollbar-bg);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
textarea::-webkit-scrollbar-thumb,
|
|
64
|
-
body::-webkit-scrollbar-thumb {
|
|
65
|
-
background-color: var(--thumb-bg);
|
|
66
|
-
border-radius: 6px;
|
|
67
|
-
border: 3px solid var(--scrollbar-bg);
|
|
68
|
-
}*/
|
|
69
|
-
|
|
70
|
-
/* The switch - the box around the slider */
|
|
71
|
-
.switch {
|
|
72
|
-
display: inline-block;
|
|
73
|
-
width: 45px;
|
|
74
|
-
height: 20px;
|
|
75
|
-
position: fixed;
|
|
76
|
-
bottom: 20px;
|
|
77
|
-
right: 20px;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
/* Hide default HTML checkbox */
|
|
81
|
-
.switch input {
|
|
82
|
-
opacity: 0;
|
|
83
|
-
width: 0;
|
|
84
|
-
height: 0;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
/* The slider */
|
|
88
|
-
.slider {
|
|
89
|
-
position: absolute;
|
|
90
|
-
cursor: pointer;
|
|
91
|
-
top: 0;
|
|
92
|
-
left: 0;
|
|
93
|
-
right: 0;
|
|
94
|
-
bottom: 0;
|
|
95
|
-
background-color: #ccc;
|
|
96
|
-
-webkit-transition: 0.4s;
|
|
97
|
-
transition: 0.4s;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.slider:before {
|
|
101
|
-
position: absolute;
|
|
102
|
-
content: "";
|
|
103
|
-
height: 25px;
|
|
104
|
-
width: 25px;
|
|
105
|
-
left: 0px;
|
|
106
|
-
bottom: 4px;
|
|
107
|
-
top: 0;
|
|
108
|
-
bottom: 0;
|
|
109
|
-
margin: auto 0;
|
|
110
|
-
-webkit-transition: 0.4s;
|
|
111
|
-
transition: 0.4s;
|
|
112
|
-
box-shadow: 0 0px 15px #2020203d;
|
|
113
|
-
background: white url('https://i.ibb.co/FxzBYR9/night.png');
|
|
114
|
-
background-repeat: no-repeat;
|
|
115
|
-
background-position: center;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
input:checked + .slider {
|
|
119
|
-
background-color: #2196f3;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
input:focus + .slider {
|
|
123
|
-
box-shadow: 0 0 1px #2196f3;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
input:checked + .slider:before {
|
|
127
|
-
-webkit-transform: translateX(24px);
|
|
128
|
-
-ms-transform: translateX(24px);
|
|
129
|
-
transform: translateX(24px);
|
|
130
|
-
background: white url('https://i.ibb.co/7JfqXxB/sunny.png');
|
|
131
|
-
background-repeat: no-repeat;
|
|
132
|
-
background-position: center;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
/* Rounded sliders */
|
|
136
|
-
.slider.round {
|
|
137
|
-
border-radius: 34px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.slider.round:before {
|
|
141
|
-
border-radius: 50%;
|
|
142
|
-
}
|
package/src/theme-changer.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
var THEME = "theme";
|
|
2
|
-
var DARK_THEME = "theme-dark";
|
|
3
|
-
var LIGHT_THEME = "theme-light";
|
|
4
|
-
|
|
5
|
-
// function to set a given theme/color-scheme
|
|
6
|
-
function setTheme(themeName) {
|
|
7
|
-
localStorage.setItem(THEME, themeName);
|
|
8
|
-
document.documentElement.className = themeName;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
// function to toggle between light and dark theme
|
|
12
|
-
function toggleTheme() {
|
|
13
|
-
if (localStorage.getItem(THEME) === DARK_THEME) {
|
|
14
|
-
setTheme(LIGHT_THEME);
|
|
15
|
-
} else {
|
|
16
|
-
setTheme(DARK_THEME);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// Immediately invoked function to set the theme on initial load
|
|
21
|
-
(function () {
|
|
22
|
-
if (localStorage.getItem(THEME) === DARK_THEME) {
|
|
23
|
-
setTheme(DARK_THEME);
|
|
24
|
-
} else {
|
|
25
|
-
setTheme(LIGHT_THEME);
|
|
26
|
-
}
|
|
27
|
-
})();
|
|
File without changes
|
|
File without changes
|