qcobjects-sdk 2.4.24 → 2.4.26
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/VERSION +1 -1
- package/js/org.qcobjects.components.splashscreen.js +22 -20
- package/package.json +3 -3
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.26
|
|
@@ -27,11 +27,12 @@ logger.debugEnabled = true;
|
|
|
27
27
|
"use strict";
|
|
28
28
|
Package("org.qcobjects.components.base", [
|
|
29
29
|
class SplashScreenComponent extends Component {
|
|
30
|
+
cached = false;
|
|
31
|
+
shadowed= true;
|
|
32
|
+
|
|
30
33
|
constructor () {
|
|
31
34
|
super(...arguments);
|
|
32
35
|
this.name= "splashscreen";
|
|
33
|
-
this.cached= false;
|
|
34
|
-
this.shadowed= true;
|
|
35
36
|
var o = this;
|
|
36
37
|
|
|
37
38
|
var isBrowser = typeof window !== "undefined" && typeof window.self !== "undefined" && window === window.self;
|
|
@@ -113,17 +114,11 @@ Package("org.qcobjects.components.base", [
|
|
|
113
114
|
]);
|
|
114
115
|
|
|
115
116
|
Package("org.qcobjects.components.splashscreen",[
|
|
116
|
-
|
|
117
|
-
|
|
118
117
|
class VideoSplashScreenComponent extends SplashScreenComponent {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
this.cached= false;
|
|
124
|
-
this.shadowed= true;
|
|
125
|
-
this.tplsource= "inline";
|
|
126
|
-
this.template= `
|
|
118
|
+
cached= false;
|
|
119
|
+
shadowed= true;
|
|
120
|
+
tplsource= "inline";
|
|
121
|
+
template= `
|
|
127
122
|
<style>
|
|
128
123
|
:host * {
|
|
129
124
|
box-sizing: border-box;
|
|
@@ -287,18 +282,17 @@ Package("org.qcobjects.components.splashscreen",[
|
|
|
287
282
|
</div>
|
|
288
283
|
|
|
289
284
|
`;
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
285
|
|
|
293
|
-
class CubeSplashScreenComponent extends SplashScreenComponent {
|
|
294
286
|
|
|
295
287
|
constructor () {
|
|
296
288
|
super(...arguments);
|
|
297
|
-
|
|
298
|
-
this.
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
289
|
+
|
|
290
|
+
this.name= "videosplashscreen";
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
|
|
294
|
+
class CubeSplashScreenComponent extends SplashScreenComponent {
|
|
295
|
+
template= `
|
|
302
296
|
<style>
|
|
303
297
|
@keyframes spin {
|
|
304
298
|
0% {
|
|
@@ -611,6 +605,14 @@ Package("org.qcobjects.components.splashscreen",[
|
|
|
611
605
|
</div>
|
|
612
606
|
|
|
613
607
|
`;
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
constructor () {
|
|
611
|
+
super(...arguments);
|
|
612
|
+
this.name= "cubesplashscreen";
|
|
613
|
+
this.cached= false;
|
|
614
|
+
this.shadowed= true;
|
|
615
|
+
this.tplsource= "inline";
|
|
614
616
|
|
|
615
617
|
}
|
|
616
618
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects-sdk",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.26",
|
|
4
4
|
"description": "QCObjects SDK is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using QCObjects, Cross Browser Javascript Framework for MVC Patterns",
|
|
5
5
|
"main": "QCObjects-SDK.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"eslint": "^8.4.0",
|
|
33
|
-
"qcobjects": "^2.4.
|
|
33
|
+
"qcobjects": "^2.4.38"
|
|
34
34
|
},
|
|
35
35
|
"author": "Jean Machuca <correojean@gmail.com>",
|
|
36
36
|
"license": "LGPL-3.0",
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"jasmine": "^3.6.3"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"qcobjects": "
|
|
45
|
+
"qcobjects": "^2.4.38"
|
|
46
46
|
}
|
|
47
47
|
}
|