cronapp-framework-mobile-js 2.9.6-SP.5 → 2.9.6-SP.50
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/components/crn-dynamic-file.components.json +5 -7
- package/components/crn-dynamic-image.components.json +2 -8
- package/css/app_2.9.css +21 -0
- package/css/themes/custom/krypton/custom-krypton.css +839 -224
- package/css/themes/custom/material-round/custom-material-round.css +1765 -0
- package/css/themes/material-round.min.css +5 -0
- package/dist/css/app_2.9.css +1 -1
- package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
- package/dist/css/themes/custom/material-round/custom-material-round.css +1 -0
- package/dist/css/themes/material-round.min.css +1 -0
- package/dist/i18n/locale_en_us.json +3 -1
- package/dist/i18n/locale_pt_br.json +3 -1
- package/dist/js/app.authentication.js +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.authentication.js +1 -1
- package/dist/js/upload.service.js +1 -1
- package/i18n/locale_en_us.json +3 -1
- package/i18n/locale_pt_br.json +3 -1
- package/js/app.authentication.js +8 -4
- package/js/app.js +4 -2
- package/js/controllers.authentication.js +7 -1
- package/js/upload.service.js +7 -4
- package/package.json +9 -4
- package/postupdate.json +8 -0
|
@@ -19,12 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"class": {
|
|
21
21
|
"order": 9999
|
|
22
|
-
},
|
|
23
|
-
"ng-model": {
|
|
24
|
-
"onSave": "javascript:function() { var result = arguments[0]; if (result.indexOf('.') == -1 && result.trim().length > 0 ) { result = 'vars.'+result; } return result; }",
|
|
25
|
-
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }",
|
|
26
|
-
"mandatory": true,
|
|
27
|
-
"order": 1
|
|
28
22
|
}
|
|
29
23
|
},
|
|
30
24
|
"childrenProperties": [
|
|
@@ -39,8 +33,12 @@
|
|
|
39
33
|
{
|
|
40
34
|
"name": "ng-model",
|
|
41
35
|
"selector": "div[dynamic-file]",
|
|
36
|
+
"onSave": "javascript:function() { var result = arguments[0]; if (result.indexOf('.') == -1 && result.trim().length > 0 ) { result = 'vars.'+result; } return result; }",
|
|
37
|
+
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }",
|
|
42
38
|
"type": "text",
|
|
43
|
-
"order":
|
|
39
|
+
"order": 2,
|
|
40
|
+
"displayName_pt_BR": "Valor",
|
|
41
|
+
"displayName_en_US": "Value",
|
|
44
42
|
"mandatory": true
|
|
45
43
|
},
|
|
46
44
|
{
|
|
@@ -67,6 +67,8 @@
|
|
|
67
67
|
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }",
|
|
68
68
|
"type": "text",
|
|
69
69
|
"order": 2,
|
|
70
|
+
"displayName_pt_BR": "Valor",
|
|
71
|
+
"displayName_en_US": "Value",
|
|
70
72
|
"mandatory": true
|
|
71
73
|
},
|
|
72
74
|
{
|
|
@@ -84,14 +86,6 @@
|
|
|
84
86
|
"selector": "div[dynamic-image]",
|
|
85
87
|
"type": "text"
|
|
86
88
|
},
|
|
87
|
-
{
|
|
88
|
-
"name":"ng-model",
|
|
89
|
-
"displayName_pt_BR": "Valor",
|
|
90
|
-
"displayName_en_US": "Value",
|
|
91
|
-
"selector": "div[dynamic-image]",
|
|
92
|
-
"type": "text",
|
|
93
|
-
"mandatory": true
|
|
94
|
-
},
|
|
95
89
|
{
|
|
96
90
|
"name": "allow-edit",
|
|
97
91
|
"selector": "div[dynamic-image]",
|
package/css/app_2.9.css
CHANGED
|
@@ -403,4 +403,25 @@ textarea.item {
|
|
|
403
403
|
|
|
404
404
|
.login-social .button-bar button span {
|
|
405
405
|
display: none;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@media (max-width: 767px) {
|
|
409
|
+
.hidden-xs {
|
|
410
|
+
display: none !important;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
414
|
+
.hidden-sm {
|
|
415
|
+
display: none !important;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
419
|
+
.hidden-md {
|
|
420
|
+
display: none !important;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
@media (min-width: 1200px) {
|
|
424
|
+
.hidden-lg {
|
|
425
|
+
display: none !important;
|
|
426
|
+
}
|
|
406
427
|
}
|