cronapp-framework-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-calendar.components.json +1 -0
- package/components/crn-dynamic-image.components.json +8 -0
- package/components/crn-dynamic-menu.components.json +0 -21
- package/components/crn-enterprise-combobox-multiple.components.json +13 -0
- package/components/crn-navbar.components.json +2 -21
- package/components/templates/cron-combobox-multiple.template.html +1 -1
- package/components/templates/navbar.template.html +8 -7
- package/css/app.css +4 -0
- package/css/themes/custom/krypton/custom-krypton.css +827 -223
- package/css/themes/custom/krypton/grid-krypton.css +243 -66
- package/css/themes/custom/krypton/navbar-krypton.css +13 -11
- package/css/themes/custom/krypton/panel-krypton.css +14 -11
- package/css/themes/custom/material/navbar-material.css +2 -0
- package/css/themes/custom/material-round/custom-material-round.css +1062 -47
- package/css/themes/custom/material-round/grid-material-round.css +307 -12
- package/css/themes/custom/material-round/navbar-material-round.css +15 -5
- package/css/themes/custom/material-round/panel-material-round.css +4 -4
- package/css/themes/custom/navigator/custom-navigator.css +47 -20
- package/css/themes/custom/theme-general/menu-vertical-retratil.css +34 -21
- package/css/themes/custom/theme-general/theme-general.css +1 -1
- package/dist/components/templates/cron-combobox-multiple.template.html +1 -1
- package/dist/components/templates/navbar.template.html +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/grid-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/navbar-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/panel-krypton.css +1 -1
- package/dist/css/themes/custom/material/navbar-material.css +1 -1
- package/dist/css/themes/custom/material-round/custom-material-round.css +1 -1
- package/dist/css/themes/custom/material-round/grid-material-round.css +1 -1
- package/dist/css/themes/custom/material-round/navbar-material-round.css +1 -1
- package/dist/css/themes/custom/material-round/panel-material-round.css +1 -1
- package/dist/css/themes/custom/navigator/custom-navigator.css +1 -1
- package/dist/css/themes/custom/theme-general/menu-vertical-retratil.css +1 -1
- package/dist/css/themes/custom/theme-general/theme-general.css +1 -1
- package/dist/i18n/locale_en_us.json +3 -1
- package/dist/i18n/locale_pt_br.json +3 -1
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.js +1 -1
- package/dist/js/directives.js +10 -10
- package/dist/js/reports/reports.service.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.js +10 -5
- package/js/controllers.js +40 -19
- package/js/directives.js +156 -174
- package/js/reports/reports.service.js +5 -5
- package/js/upload.service.js +7 -4
- package/package.json +9 -4
- package/postupdate.json +14 -0
package/postupdate.json
CHANGED
|
@@ -20,6 +20,12 @@
|
|
|
20
20
|
"type": "script",
|
|
21
21
|
"onTop": true
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
"file": "index.html",
|
|
25
|
+
"script": "js/hostApp.js",
|
|
26
|
+
"type": "script",
|
|
27
|
+
"onTop": true
|
|
28
|
+
},
|
|
23
29
|
{
|
|
24
30
|
"file": "index.html",
|
|
25
31
|
"script": "js/customStateProvider.js",
|
|
@@ -387,6 +393,10 @@
|
|
|
387
393
|
"old": "plugins/chart.js/dist/Chart.min.js",
|
|
388
394
|
"new": "node_modules/chart.js/dist/Chart.min.js"
|
|
389
395
|
},
|
|
396
|
+
{
|
|
397
|
+
"old": "node_modules/cronapp-lib-js/dist/js/chart.js/Chart.min.js",
|
|
398
|
+
"new": "node_modules/chart.js/dist/Chart.min.js"
|
|
399
|
+
},
|
|
390
400
|
{
|
|
391
401
|
"old": "plugins/angular-chart.js/dist/angular-chart.min.js",
|
|
392
402
|
"new": "node_modules/angular-chart.js/dist/angular-chart.min.js"
|
|
@@ -471,6 +481,10 @@
|
|
|
471
481
|
"old": "plugins/moment/min/moment-with-locales.min.js",
|
|
472
482
|
"new": "node_modules/moment/min/moment-with-locales.min.js"
|
|
473
483
|
},
|
|
484
|
+
{
|
|
485
|
+
"old": "node_modules/cronapp-lib-js/dist/js/moment/moment-with-locales.min.js",
|
|
486
|
+
"new": "node_modules/moment/min/moment-with-locales.min.js"
|
|
487
|
+
},
|
|
474
488
|
{
|
|
475
489
|
"old": "plugins/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js",
|
|
476
490
|
"new": "node_modules/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js"
|