cronapp-framework-js 2.9.4 → 2.9.5-SP.10

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.
Files changed (43) hide show
  1. package/components/crn-datasource.components.json +4 -0
  2. package/components/crn-upload.components.json +1 -0
  3. package/components/templates/cron-calendar.designtime.html +2 -2
  4. package/css/themes/custom/aquamarine/custom-aquamarine.css +1 -5
  5. package/css/themes/custom/fuse/custom-fuse.css +0 -1
  6. package/css/themes/custom/krypton/custom-krypton.css +1137 -0
  7. package/css/themes/custom/krypton/grid-krypton.css +431 -0
  8. package/css/themes/custom/krypton/navbar-krypton.css +157 -0
  9. package/css/themes/custom/krypton/panel-krypton.css +114 -0
  10. package/css/themes/custom/material/custom-material.css +1 -0
  11. package/css/themes/custom/material/grid-material.css +1 -0
  12. package/css/themes/custom/material-round/custom-material-round.css +642 -0
  13. package/css/themes/custom/material-round/grid-material-round.css +347 -0
  14. package/css/themes/custom/material-round/navbar-material-round.css +140 -0
  15. package/css/themes/custom/material-round/panel-material-round.css +94 -0
  16. package/css/themes/custom/navigator/custom-navigator.css +11 -0
  17. package/css/themes/custom/slate/custom-slate.css +1 -0
  18. package/css/themes/custom/united/custom-united.css +1 -0
  19. package/css/themes/custom/yeti/custom-yeti.css +1 -0
  20. package/css/themes/krypton.min.css +9 -0
  21. package/css/themes/material-round.min.css +9 -0
  22. package/dist/components/templates/cron-calendar.designtime.html +1 -1
  23. package/dist/css/themes/custom/aquamarine/custom-aquamarine.css +1 -1
  24. package/dist/css/themes/custom/fuse/custom-fuse.css +1 -1
  25. package/dist/css/themes/custom/krypton/custom-krypton.css +1 -0
  26. package/dist/css/themes/custom/krypton/grid-krypton.css +1 -0
  27. package/dist/css/themes/custom/krypton/navbar-krypton.css +1 -0
  28. package/dist/css/themes/custom/krypton/panel-krypton.css +1 -0
  29. package/dist/css/themes/custom/material/custom-material.css +1 -1
  30. package/dist/css/themes/custom/material/grid-material.css +1 -1
  31. package/dist/css/themes/custom/material-round/custom-material-round.css +1 -0
  32. package/dist/css/themes/custom/material-round/grid-material-round.css +1 -0
  33. package/dist/css/themes/custom/material-round/navbar-material-round.css +1 -0
  34. package/dist/css/themes/custom/material-round/panel-material-round.css +1 -0
  35. package/dist/css/themes/custom/navigator/custom-navigator.css +1 -1
  36. package/dist/css/themes/custom/slate/custom-slate.css +1 -1
  37. package/dist/css/themes/custom/united/custom-united.css +1 -1
  38. package/dist/css/themes/custom/yeti/custom-yeti.css +1 -1
  39. package/dist/css/themes/krypton.min.css +1 -0
  40. package/dist/css/themes/material-round.min.css +1 -0
  41. package/dist/js/directives.js +3 -3
  42. package/js/directives.js +14 -5
  43. package/package.json +1 -1
@@ -113,6 +113,10 @@
113
113
  "order": 2,
114
114
  "mandatory": true
115
115
  },
116
+ "headers": {
117
+ "removable": false,
118
+ "order": 7
119
+ },
116
120
  "on-before-create": {
117
121
  "removable": true,
118
122
  "type": "event",
@@ -3,6 +3,7 @@
3
3
  "text_pt_BR": "Envio de arquivo",
4
4
  "text_en_US": "File Upload",
5
5
  "wrapper": false,
6
+ "pallete": false,
6
7
  "autoWrapper": true,
7
8
  "image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-upload.svg",
8
9
  "description": "Botão com estrutura para armazenar arquivo na fonte de dados",
@@ -1,5 +1,5 @@
1
1
  <div class="component-holder ng-scope" data-component="crn-cron-calendar">
2
- <cron-calendar class="ng-pristine ng-untouched ng-valid k-widget k-calendar ng-empty" data-role="calendar">
2
+ <cron-calendar-design class="ng-pristine ng-untouched ng-valid k-widget k-calendar ng-empty" data-role="calendar">
3
3
  <div class="k-header"><a href="#" role="button" class="k-link k-nav-prev" aria-label="Previous" aria-disabled="false"><span class="k-icon k-i-arrow-60-left"></span></a><a href="#" role="button" aria-live="assertive" aria-atomic="true" class="k-link k-nav-fast" aria-disabled="false">August 2022</a><a href="#" role="button" class="k-link k-nav-next" aria-label="Next" aria-disabled="false"><span class="k-icon k-i-arrow-60-right"></span></a></div>
4
4
  <div class="k-calendar-view">
5
5
  <table tabindex="0" role="grid" class="k-content k-month" cellspacing="0" data-start="2022/6/31">
@@ -73,5 +73,5 @@
73
73
  </table>
74
74
  </div>
75
75
  <div class="k-footer"><a href="#" class="k-link k-nav-today" title="Thursday, August 11, 2022">Thursday, August 11, 2022</a></div>
76
- </cron-calendar>
76
+ </cron-calendar-design>
77
77
  </div>
@@ -771,6 +771,7 @@ span.k-dropdown,
771
771
  /* Calendar */
772
772
  cron-calendar.k-calendar .k-footer,
773
773
  cron-calendar.k-calendar .k-header,
774
+ .k-calendar .k-header,
774
775
  .k-calendar .k-footer .k-nav-today {
775
776
  background: var(--colorDefault40, #2f2f2f);
776
777
  color: var(--textColorDefault40, #ffffff);
@@ -1044,11 +1045,6 @@ table.table thead th {
1044
1045
  display: inline-flex;
1045
1046
  }
1046
1047
 
1047
- .k-grid table .k-button.k-custom-command {
1048
- width: inherit;
1049
- min-width: 64px;
1050
- }
1051
-
1052
1048
  .k-grid-header th.k-header>.k-link {
1053
1049
  display: inline-block;
1054
1050
  }
@@ -460,7 +460,6 @@ h6,
460
460
  margin: 0 -38px;
461
461
  padding: 50px 25px;
462
462
  margin-bottom: 10px;
463
- width: 99vw;
464
463
  }
465
464
 
466
465
  .bg .row {