cronapp-framework-js 3.0.0-SP.32 → 3.0.0-SP.33
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/templates/cron-grid.designtime.html +5 -4
- package/css/themes/custom/cosmo/custom-cosmo.css +16 -17
- package/css/themes/custom/cosmo/panel-cosmo.css +1 -1
- package/css/themes/custom/cyborg/button-cyborg.css +61 -1
- package/css/themes/custom/cyborg/custom-cyborg.css +226 -39
- package/css/themes/custom/cyborg/navbar-cyborg.css +4 -4
- package/css/themes/custom/cyborg/panel-cyborg.css +2 -2
- package/dist/components/templates/cron-grid.designtime.html +1 -1
- package/dist/css/themes/custom/cosmo/custom-cosmo.css +1 -1
- package/dist/css/themes/custom/cosmo/panel-cosmo.css +1 -1
- package/dist/css/themes/custom/cyborg/button-cyborg.css +1 -1
- package/dist/css/themes/custom/cyborg/custom-cyborg.css +1 -1
- package/dist/css/themes/custom/cyborg/navbar-cyborg.css +1 -1
- package/dist/js/directives.js +7 -2
- package/js/directives.js +166 -62
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<th ng-repeat="item in attrs.options.columns" ng-if="item.visible" scope="col" role="columnheader" data-field="email" aria-haspopup="true" rowspan="1" data-title="Email" data-index="0" id="2b4d0eb0-1cc1-4f89-927b-b8c1fbcf430e" style="text-align: left;" class="k-header k-with-icon k-filterable" data-role="columnsorter">
|
|
31
31
|
<label ng-if="item.dataType == 'Selectable'" class="k-checkbox-label k-no-text"></label>
|
|
32
32
|
<a ng-if="item.dataType !== 'Selectable'" class="k-link" href="#">{{item.headerText?parseProperty(item.headerText):''}}</a>
|
|
33
|
-
<a ng-if="item.filterable && tem.dataType != 'Customized' && item.dataType != 'Command' && item.dataType !== 'Selectable'" class="k-grid-filter" href="#" title="Filtrar" aria-label="Filtrar" tabindex="0">
|
|
33
|
+
<a ng-if="item.filterable && tem.dataType != 'Customized' && item.dataType != 'Command' && item.dataType !== 'Selectable' && item.dataType !== 'GroupedButtons'" class="k-grid-filter" href="#" title="Filtrar" aria-label="Filtrar" tabindex="0">
|
|
34
34
|
<span class="k-icon k-i-filter"></span>
|
|
35
35
|
</a>
|
|
36
36
|
</th>
|
|
@@ -39,13 +39,14 @@
|
|
|
39
39
|
<tbody role="rowgroup">
|
|
40
40
|
<tr data-uid="59430dcb-6ccd-497d-954d-9b5569408cb4" role="row">
|
|
41
41
|
|
|
42
|
-
<td ng-repeat="item in attrs.options.columns | filter: {visible:true}" role="gridcell" class="{{item.dataType == 'Command'|| item.dataType == 'Customized'?'k-command-cell':''}}">
|
|
42
|
+
<td ng-repeat="item in attrs.options.columns | filter: {visible:true}" role="gridcell" class="{{item.dataType == 'Command'|| item.dataType == 'Customized' || item.dataType == 'GroupedButtons'?'k-command-cell':''}}">
|
|
43
43
|
|
|
44
44
|
<label ng-if="item.dataType == 'Selectable'" class="k-checkbox-label k-no-text"></label>
|
|
45
|
-
<span ng-if="item.dataType != 'Customized' && item.dataType != 'Command'">{{item.headerText?parseProperty(item.headerText):''}}</span>
|
|
45
|
+
<span ng-if="item.dataType != 'Customized' && item.dataType != 'Command' && item.dataType != 'GroupedButtons'">{{item.headerText?parseProperty(item.headerText):''}}</span>
|
|
46
46
|
<a ng-if="item.dataType == 'Command' && (item.command == 'edit|destroy' || item.command == 'edit')" role="button" class="k-button k-button-icontext k-grid-edit" href="#"><span class="k-icon k-i-edit"></span> </a>
|
|
47
47
|
<a ng-if="item.dataType == 'Command' && (item.command == 'edit|destroy' || item.command == 'destroy')" role="button" class="k-button k-button-icontext k-grid-delete" href="#"><span class="k-icon k-i-close"></span> </a>
|
|
48
|
-
<a ng-if="item.dataType == 'Customized'" href="" class="k-button k-custom-command k-button-with-label k-grid-f06e"><span class="{{item.iconClass}}"></span
|
|
48
|
+
<a ng-if="item.dataType == 'Customized'" href="" class="k-button k-custom-command {{item.label != ''?'k-button-with-label':''}} k-grid-f06e"><span class="{{item.iconClass}}"></span>{{item.label?' ' + parseProperty(item.label):''}}</a>
|
|
49
|
+
<a ng-if="item.dataType == 'GroupedButtons'" ng-repeat="item2 in item.buttonColumns" href="" class="k-button k-custom-command {{item2.label != ''?'k-button-with-label':''}} k-grid-f06e"><span class="{{item2.iconClass}}"></span>{{item2.label?' ' + parseProperty(item2.label):''}}</a>
|
|
49
50
|
</td>
|
|
50
51
|
</tr>
|
|
51
52
|
</tbody>
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
|
|
38
38
|
/* Menus - Sizes and Distances */
|
|
39
39
|
--menuVerticalWidth: 270px;
|
|
40
|
-
--menuVerticalCollapsedWidth: 225px;
|
|
41
40
|
--menuSideSize: 20px;
|
|
42
41
|
--menuItemBarSize: 6px;
|
|
43
42
|
--menuElementOverallPadding: 10px;
|
|
@@ -89,7 +88,7 @@
|
|
|
89
88
|
--colorDefault40: #222222;
|
|
90
89
|
--colorDefault50: #1e1e1e;
|
|
91
90
|
--colorDefault60: #191919;
|
|
92
|
-
--colorDefault70: #
|
|
91
|
+
--colorDefault70: #f5f5f5;
|
|
93
92
|
--textColorDefault10: #8c8c8c;
|
|
94
93
|
--textColorDefault20: #bbbbbb;
|
|
95
94
|
--textColorDefault30: #dfdfdf;
|
|
@@ -243,26 +242,26 @@
|
|
|
243
242
|
--textColorDark70: #ffffff;
|
|
244
243
|
|
|
245
244
|
/* Color - Neutral (web e mobile) */
|
|
246
|
-
--colorNeutral00: #
|
|
247
|
-
--colorNeutral10: #
|
|
248
|
-
--colorNeutral20: #
|
|
249
|
-
--colorNeutral30: #
|
|
250
|
-
--colorNeutral40: #
|
|
251
|
-
--colorNeutral50: #
|
|
252
|
-
--colorNeutral60: #
|
|
253
|
-
--colorNeutral70: #
|
|
245
|
+
--colorNeutral00: #ffffff;
|
|
246
|
+
--colorNeutral10: #f1f1f1;
|
|
247
|
+
--colorNeutral20: #e3e3e3;
|
|
248
|
+
--colorNeutral30: #d5d5d5;
|
|
249
|
+
--colorNeutral40: #c7c7c7;
|
|
250
|
+
--colorNeutral50: #b9b9b9;
|
|
251
|
+
--colorNeutral60: #acacac;
|
|
252
|
+
--colorNeutral70: #9e9e9e;
|
|
254
253
|
--colorNeutral80: #909090;
|
|
255
254
|
--colorNeutral90: #828282;
|
|
256
255
|
--colorNeutral100: #747474;
|
|
257
256
|
--colorNeutral110: #666666;
|
|
258
|
-
--colorNeutral120: #
|
|
257
|
+
--colorNeutral120: #5d5d5d;
|
|
259
258
|
--colorNeutral130: #535353;
|
|
260
|
-
--colorNeutral140: #
|
|
259
|
+
--colorNeutral140: #4a4a4a;
|
|
261
260
|
--colorNeutral150: #414141;
|
|
262
261
|
--colorNeutral160: #383838;
|
|
263
|
-
--colorNeutral170: #
|
|
262
|
+
--colorNeutral170: #2e2e2e;
|
|
264
263
|
--colorNeutral180: #252525;
|
|
265
|
-
--colorNeutral190: #
|
|
264
|
+
--colorNeutral190: #1c1c1c;
|
|
266
265
|
--colorNeutral200: #131313;
|
|
267
266
|
--colorNeutral210: #090909;
|
|
268
267
|
--colorNeutral220: #000000;
|
|
@@ -386,8 +385,8 @@
|
|
|
386
385
|
--borderOptionDark: transparent;
|
|
387
386
|
|
|
388
387
|
/* Components - Panel */
|
|
389
|
-
--panelDefault: var(--
|
|
390
|
-
--panelPrimary: var(--
|
|
388
|
+
--panelDefault: var(--colorDefault70, #f5f5f5);
|
|
389
|
+
--panelPrimary: var(--colorPrimary40, #2780e3);
|
|
391
390
|
--panelSuccess: var(--colorSuccess40, #3fb618);
|
|
392
391
|
--panelCalm: var(--colorCalm40, #11c1f3);
|
|
393
392
|
--panelWarning: var(--colorWarning40, #ff7518);
|
|
@@ -650,7 +649,7 @@ a:hover {
|
|
|
650
649
|
}
|
|
651
650
|
|
|
652
651
|
.k-treeview .k-in.k-state-selected {
|
|
653
|
-
background: var(--
|
|
652
|
+
background: var(--colorNeutral200, #131313);
|
|
654
653
|
color: var(--textColorDefault40, #ffffff);
|
|
655
654
|
}
|
|
656
655
|
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
/* Default */
|
|
2
|
+
.k-button, .btn, .k-button.k-default, .btn.btn-default {
|
|
3
|
+
background: var(--colorDefault40, #424242);
|
|
4
|
+
border-color: transparent;
|
|
5
|
+
color: var(--textColorDefault40, #ffffff);
|
|
6
|
+
}
|
|
7
|
+
|
|
2
8
|
.k-button.k-default.active,
|
|
3
9
|
.k-button.k-default:active,
|
|
4
10
|
.btn.btn-default.active,
|
|
@@ -8,6 +14,12 @@
|
|
|
8
14
|
}
|
|
9
15
|
|
|
10
16
|
/* Primary */
|
|
17
|
+
.btn.btn-primary {
|
|
18
|
+
background: var( --colorPrimary40, #2a9fd6);
|
|
19
|
+
border-color: transparent;
|
|
20
|
+
color: var(--textColorPrimary40, #ffffff);
|
|
21
|
+
}
|
|
22
|
+
|
|
11
23
|
.btn.btn-primary.active,
|
|
12
24
|
.btn.btn-primary:active,
|
|
13
25
|
.k-button.k-primary.active,
|
|
@@ -17,6 +29,12 @@
|
|
|
17
29
|
}
|
|
18
30
|
|
|
19
31
|
/* Success */
|
|
32
|
+
.btn.btn-success {
|
|
33
|
+
background: var(--colorSuccess40, #77b300);
|
|
34
|
+
border-color: transparent;
|
|
35
|
+
color: var(--textColorSuccess40, #ffffff);
|
|
36
|
+
}
|
|
37
|
+
|
|
20
38
|
.btn.btn-success.active,
|
|
21
39
|
.btn.btn-success:active,
|
|
22
40
|
.k-button.k-success.active,
|
|
@@ -26,6 +44,12 @@
|
|
|
26
44
|
}
|
|
27
45
|
|
|
28
46
|
/* Warning */
|
|
47
|
+
.btn.btn-warning {
|
|
48
|
+
background: var(--colorWarning40, #ff8800);
|
|
49
|
+
border-color: transparent;
|
|
50
|
+
color: var(--textColorWarning40, #ffffff);
|
|
51
|
+
}
|
|
52
|
+
|
|
29
53
|
.btn.btn-warning.active,
|
|
30
54
|
.btn.btn-warning:active,
|
|
31
55
|
.k-button.k-warning.active,
|
|
@@ -35,6 +59,12 @@
|
|
|
35
59
|
}
|
|
36
60
|
|
|
37
61
|
/* Danger */
|
|
62
|
+
.btn.btn-danger {
|
|
63
|
+
background: var(--colorDanger40, #cc0000);
|
|
64
|
+
border-color: transparent;
|
|
65
|
+
color: var(--textColorDanger40, #ffffff);
|
|
66
|
+
}
|
|
67
|
+
|
|
38
68
|
.btn.btn-danger.active,
|
|
39
69
|
.btn.btn-danger:active,
|
|
40
70
|
.k-button.k-danger.active,
|
|
@@ -44,6 +74,12 @@
|
|
|
44
74
|
}
|
|
45
75
|
|
|
46
76
|
/* Info */
|
|
77
|
+
.btn.btn-info {
|
|
78
|
+
background: var(--colorCalm40, #3b448e);
|
|
79
|
+
border-color: transparent;
|
|
80
|
+
color: var(--textColorCalm40, #ffffff);
|
|
81
|
+
}
|
|
82
|
+
|
|
47
83
|
.btn.btn-info.active,
|
|
48
84
|
.btn.btn-info:active,
|
|
49
85
|
.k-button.k-info.active,
|
|
@@ -54,15 +90,27 @@
|
|
|
54
90
|
}
|
|
55
91
|
|
|
56
92
|
/* Light */
|
|
93
|
+
.btn.btn-light {
|
|
94
|
+
background: var(--colorLight40, #222222);
|
|
95
|
+
border-color: transparent;
|
|
96
|
+
color: var(--textColorLight40, #000000);
|
|
97
|
+
}
|
|
98
|
+
|
|
57
99
|
.btn.btn-light.active,
|
|
58
100
|
.btn.btn-light:active,
|
|
59
101
|
.k-button.k-light.active,
|
|
60
102
|
.k-button.k-light:active {
|
|
61
|
-
background: var(--colorLight40, #
|
|
103
|
+
background: var(--colorLight40, #222222);
|
|
62
104
|
color: var(--textColor40, #383838);
|
|
63
105
|
}
|
|
64
106
|
|
|
65
107
|
/* stable */
|
|
108
|
+
.k-button.k-stable, .btn.btn-stable {
|
|
109
|
+
background: var(--colorStable40, #f8f8f8);
|
|
110
|
+
border-color: transparent;
|
|
111
|
+
color: var(--textColorStable40, #444444);
|
|
112
|
+
}
|
|
113
|
+
|
|
66
114
|
.btn.btn-stable.active,
|
|
67
115
|
.btn.btn-stable:active,
|
|
68
116
|
.k-button.k-stable.active,
|
|
@@ -72,6 +120,12 @@
|
|
|
72
120
|
}
|
|
73
121
|
|
|
74
122
|
/* royal */
|
|
123
|
+
.btn.btn-royal {
|
|
124
|
+
background: var(--colorRoyal40, #9933cc);
|
|
125
|
+
border-color: transparent;
|
|
126
|
+
color: var(--textColorRoyal40, #ffffff);
|
|
127
|
+
}
|
|
128
|
+
|
|
75
129
|
.btn.btn-royal.active,
|
|
76
130
|
.btn.btn-royal:active,
|
|
77
131
|
.k-button.k-royal.active,
|
|
@@ -81,6 +135,12 @@
|
|
|
81
135
|
}
|
|
82
136
|
|
|
83
137
|
/* dark */
|
|
138
|
+
.btn.btn-dark {
|
|
139
|
+
background: var(--colorDark40, #adafae);
|
|
140
|
+
border-color: transparent;
|
|
141
|
+
color: var(--textColorDark40, #ffffff);
|
|
142
|
+
}
|
|
143
|
+
|
|
84
144
|
.btn.btn-dark.active,
|
|
85
145
|
.btn.btn-dark:active,
|
|
86
146
|
.k-button.k-dark.active,
|