raise-common-lib-new 0.0.15 → 0.0.21

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 (135) hide show
  1. package/assets/language/fr.d.ts +3377 -0
  2. package/assets/language/ja.d.ts +3351 -0
  3. package/assets/language/ko.d.ts +3351 -0
  4. package/assets/language/zh-CN.d.ts +3064 -0
  5. package/assets/language/zh-TW.d.ts +3354 -0
  6. package/esm2022/assets/language/fr.mjs +3378 -0
  7. package/esm2022/assets/language/ja.mjs +3352 -0
  8. package/esm2022/assets/language/ko.mjs +3352 -0
  9. package/esm2022/assets/language/zh-CN.mjs +3065 -0
  10. package/esm2022/assets/language/zh-TW.mjs +3355 -0
  11. package/esm2022/lib/commentary/constants.mjs +2 -0
  12. package/esm2022/lib/commentary/index.component.mjs +146 -0
  13. package/esm2022/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.mjs +44 -0
  14. package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +18 -0
  15. package/esm2022/lib/common-grid/index.component.mjs +52 -30
  16. package/esm2022/lib/dialog/common-delete-dialog/index.component.mjs +2 -2
  17. package/esm2022/lib/dialog/common-dialog/index.component.mjs +4 -4
  18. package/esm2022/lib/form/checkbox-group/index.component.mjs +2 -2
  19. package/esm2022/lib/form/drawer-form/constants.mjs +10 -0
  20. package/esm2022/lib/form/drawer-form/drawer-form.component.mjs +336 -0
  21. package/esm2022/lib/form/encrypted-input/index.component.mjs +35 -0
  22. package/esm2022/lib/form/radio-group/index.component.mjs +2 -2
  23. package/esm2022/lib/form/switch-input/index.component.mjs +2 -2
  24. package/esm2022/lib/form/tag-input/index.component.mjs +31 -11
  25. package/esm2022/lib/form/toolbar-item/index.component.mjs +56 -0
  26. package/esm2022/lib/layout/drawer/index.component.mjs +165 -0
  27. package/esm2022/lib/layout/grid-box/index.component.mjs +67 -0
  28. package/esm2022/lib/layout/main-container/index.component.mjs +50 -8
  29. package/esm2022/lib/layout/multi-tab/index.component.mjs +267 -0
  30. package/esm2022/lib/layout/nav-card-group/constants.mjs +2 -0
  31. package/esm2022/lib/layout/nav-card-group/index.component.mjs +37 -0
  32. package/esm2022/lib/layout/page-list/index.component.mjs +73 -0
  33. package/esm2022/lib/layout/page-tab/index.component.mjs +56 -0
  34. package/esm2022/lib/layout/rs-aside/index.component.mjs +55 -10
  35. package/esm2022/lib/layout/rs-footer/index.component.mjs +2 -2
  36. package/esm2022/lib/layout/rs-header/index.component.mjs +38 -29
  37. package/esm2022/lib/layout/toolbar/constants.mjs +2 -0
  38. package/esm2022/lib/layout/toolbar/index.component.mjs +79 -0
  39. package/esm2022/lib/raise-common-lib.module.mjs +116 -17
  40. package/esm2022/lib/service/common-function.service.mjs +125 -1
  41. package/esm2022/lib/service/dialog.service.mjs +5 -5
  42. package/esm2022/lib/service/drawer.service.mjs +111 -0
  43. package/esm2022/lib/service/icon-loader.service.mjs +12 -9
  44. package/esm2022/lib/service/keep-alive.service.mjs +83 -0
  45. package/esm2022/lib/service/translation.service.mjs +98 -0
  46. package/esm2022/lib/utils/decorator.mjs +14 -0
  47. package/esm2022/public-api.mjs +35 -16
  48. package/fesm2022/raise-common-lib-new.mjs +18952 -538
  49. package/fesm2022/raise-common-lib-new.mjs.map +1 -1
  50. package/lib/commentary/constants.d.ts +15 -0
  51. package/lib/commentary/index.component.d.ts +38 -0
  52. package/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.d.ts +10 -0
  53. package/lib/common-grid/grid-action/grid-action.component.d.ts +14 -0
  54. package/lib/common-grid/index.component.d.ts +8 -5
  55. package/lib/float-box/index.component.d.ts +2 -2
  56. package/lib/form/drawer-form/constants.d.ts +34 -0
  57. package/lib/form/drawer-form/drawer-form.component.d.ts +67 -0
  58. package/lib/form/encrypted-input/index.component.d.ts +14 -0
  59. package/lib/form/tag-input/index.component.d.ts +9 -3
  60. package/lib/form/toolbar-item/index.component.d.ts +17 -0
  61. package/lib/layout/drawer/index.component.d.ts +45 -0
  62. package/lib/layout/grid-box/index.component.d.ts +19 -0
  63. package/lib/layout/main-container/index.component.d.ts +11 -1
  64. package/lib/layout/multi-tab/index.component.d.ts +53 -0
  65. package/lib/layout/nav-card-group/constants.d.ts +14 -0
  66. package/lib/layout/nav-card-group/index.component.d.ts +16 -0
  67. package/lib/layout/page-list/index.component.d.ts +21 -0
  68. package/lib/layout/page-tab/index.component.d.ts +18 -0
  69. package/lib/layout/rs-aside/index.component.d.ts +8 -3
  70. package/lib/layout/rs-header/index.component.d.ts +12 -12
  71. package/lib/layout/toolbar/constants.d.ts +8 -0
  72. package/lib/layout/toolbar/index.component.d.ts +22 -0
  73. package/lib/raise-common-lib.module.d.ts +48 -34
  74. package/lib/service/common-function.service.d.ts +11 -0
  75. package/lib/service/drawer.service.d.ts +46 -0
  76. package/lib/service/icon-loader.service.d.ts +5 -3
  77. package/lib/service/keep-alive.service.d.ts +15 -0
  78. package/lib/service/translation.service.d.ts +12 -0
  79. package/lib/utils/decorator.d.ts +1 -0
  80. package/package.json +1 -1
  81. package/public-api.d.ts +34 -15
  82. package/src/assets/img/close-url.svg +10 -0
  83. package/src/assets/img/comment-cancel.svg +4 -0
  84. package/src/assets/img/comment-check.svg +5 -0
  85. package/src/assets/img/desktop-refresh-btn.svg +6 -0
  86. package/src/assets/img/down-arrow.svg +3 -0
  87. package/src/assets/img/drawer-back.svg +4 -0
  88. package/src/assets/img/eye-close.svg +4 -0
  89. package/src/assets/img/eye-open.svg +4 -0
  90. package/src/assets/img/grid-action-copy.svg +6 -0
  91. package/src/assets/img/grid-action-delete.svg +14 -0
  92. package/src/assets/img/grid-action-detail.svg +7 -0
  93. package/src/assets/img/grid-action-download.svg +7 -0
  94. package/src/assets/img/grid-action-edit.svg +4 -0
  95. package/src/assets/img/grid-action-export.svg +12 -0
  96. package/src/assets/img/grid-action-move.svg +8 -0
  97. package/src/assets/img/grid-action-note.svg +10 -0
  98. package/src/assets/img/grid-action-send.svg +5 -0
  99. package/src/assets/img/grid-action-settle.svg +13 -0
  100. package/src/assets/img/grid-menu-arrow-right.svg +3 -0
  101. package/src/assets/img/grid-pager-arrow-left.svg +3 -0
  102. package/src/assets/img/grid-pager-arrows-left.svg +4 -0
  103. package/src/assets/img/icon-more-active.svg +7 -0
  104. package/src/assets/img/icon-more.svg +7 -0
  105. package/src/assets/img/more.svg +5 -0
  106. package/src/assets/img/split-button-arrow.svg +3 -0
  107. package/src/assets/img/table-column-menu.svg +5 -0
  108. package/src/assets/img/table-sort-arrow.svg +6 -0
  109. package/src/assets/img/toolbar-action-add.svg +4 -0
  110. package/src/assets/img/toolbar-action-delete.svg +14 -0
  111. package/src/assets/img/toolbar-action-download.svg +5 -0
  112. package/src/assets/img/toolbar-action-duplicate.svg +6 -0
  113. package/src/assets/img/toolbar-action-export.svg +5 -0
  114. package/src/assets/img/toolbar-action-import.svg +5 -0
  115. package/src/assets/img/toolbar-action-refresh.svg +14 -0
  116. package/src/assets/img/toolbar-action-upload.svg +5 -0
  117. package/src/assets/img/tooltip-icon.svg +4 -0
  118. package/src/assets/language/fr.ts +3603 -0
  119. package/src/assets/language/ja.ts +3501 -0
  120. package/src/assets/language/ko.ts +3478 -0
  121. package/src/assets/language/zh-CN.ts +3115 -0
  122. package/src/assets/language/zh-TW.ts +3411 -0
  123. package/src/assets/style/reset/button.scss +78 -10
  124. package/src/assets/style/reset/checkbox.scss +33 -0
  125. package/src/assets/style/reset/dropdown.scss +42 -10
  126. package/src/assets/style/reset/grid.scss +733 -132
  127. package/src/assets/style/reset/input.scss +45 -12
  128. package/src/assets/style/reset/mat-dialog.scss +6 -2
  129. package/src/assets/style/reset/radio.scss +37 -0
  130. package/src/assets/style/reset/switch.scss +32 -0
  131. package/src/assets/style/style.scss +6 -0
  132. package/src/assets/style/syncfusion.min.css +1 -1
  133. package/src/assets/style/variables.scss +4 -4
  134. package/esm2022/lib/layout/common-list/index.component.mjs +0 -43
  135. package/lib/layout/common-list/index.component.d.ts +0 -15
@@ -1,91 +1,401 @@
1
- .e-grid {
1
+ .e-grid,
2
+ .e-treegrid {
2
3
  font-family: var(--rs-font-family);
3
4
  height: 100%;
4
5
  display: flex;
5
6
  flex-direction: column;
6
- .e-headercell {
7
- height: var(--rs-grid-header-row-height);
8
- .e-headercelldiv {
9
- color: #44566c;
10
- font-family: Arial;
11
- font-size: var(--rs-grid-header-cell-font-size);
12
- font-weight: 700;
13
- line-height: 29px;
14
- height: 29px;
7
+ border: 0;
8
+
9
+ .e-gridheader {
10
+ height: auto;
11
+ border-top: none;
12
+ border-bottom: none;
13
+ padding-right: 5px !important;
14
+ .e-headercell {
15
+ &:first-child {
16
+ padding-left: 8px;
17
+ }
18
+ height: 32px;
19
+ padding: 4px 8px;
20
+ --header-column-width: 0px;
21
+ --header-sort-width: 0px;
22
+
23
+ &.e-defaultcursor:first-child + .e-headercell {
24
+ padding-left: 0;
25
+ }
26
+
27
+ &.e-freezeleftborder {
28
+ border: none;
29
+ }
30
+
31
+ .e-rhandler {
32
+ border-right: 0 !important;
33
+ }
34
+
35
+ .e-rsuppress {
36
+ border-right: 0 !important;
37
+ }
38
+
39
+ .e-icons.e-columnmenu {
40
+ position: absolute;
41
+ top: 50%;
42
+ right: 8px;
43
+ transform: translateY(-50%);
44
+ padding: 4px;
45
+ border-radius: 4px;
46
+ margin: 0;
47
+ float: unset;
48
+ }
49
+ .e-icons.e-filtermenudiv {
50
+ position: absolute;
51
+ top: 50%;
52
+ right: 8px;
53
+ transform: translateY(-50%);
54
+ padding: 4px;
55
+ border-radius: 4px;
56
+ margin: 0;
57
+ float: unset;
58
+ }
59
+ .e-headerchkcelldiv .e-checkbox-wrapper {
60
+ .e-icons {
61
+ margin: 0;
62
+ display: none;
63
+ &.e-check,
64
+ &.e-stop {
65
+ display: inline-block;
66
+ color: #fff !important;
67
+ background-color: var(--rs-active-color);
68
+ border-color: var(--rs-active-color);
69
+ }
70
+ }
71
+ }
72
+ &:hover {
73
+ .e-headerchkcelldiv .e-checkbox-wrapper .e-icons {
74
+ display: inline-block;
75
+ }
76
+ }
77
+
78
+ .e-headercelldiv {
79
+ height: 24px;
80
+ padding: 4px !important;
81
+ padding-right: calc(
82
+ 4px + var(--header-column-width) + var(--header-sort-width)
83
+ ) !important;
84
+ margin: 0 !important;
85
+
86
+ border-radius: 4px;
87
+
88
+ display: flex;
89
+ flex-flow: row nowrap;
90
+ justify-content: flex-start;
91
+ align-items: center;
92
+
93
+ color: #44566c;
94
+ font-family: Arial;
95
+ font-size: var(--rs-grid-header-cell-font-size);
96
+ font-weight: 700;
97
+
98
+ &:hover {
99
+ background-color: #f6faff;
100
+ }
101
+
102
+ &.e-headerchkcelldiv {
103
+ padding: 0 !important;
104
+
105
+ .e-checkbox-wrapper {
106
+ width: 100%;
107
+ position: static;
108
+
109
+ display: flex;
110
+ flex-flow: row nowrap;
111
+ justify-content: center;
112
+ align-items: center;
113
+
114
+ .e-label {
115
+ display: none;
116
+ }
117
+ }
118
+ }
119
+
120
+ .e-headertext {
121
+ display: block;
122
+ width: 100%;
123
+ overflow: hidden;
124
+ }
125
+ }
126
+
127
+ &.e-ellipsistooltip .e-headercelldiv .e-headertext {
128
+ text-overflow: ellipsis;
129
+ }
130
+
131
+ .e-sortfilterdiv {
132
+ float: none;
133
+ clear: both;
134
+
135
+ width: 16px;
136
+ height: 16px;
137
+ padding: 0;
138
+ margin: 0 !important;
139
+
140
+ position: absolute;
141
+ top: 50%;
142
+ right: 32px;
143
+ transform: translateY(-50%);
144
+
145
+ &.e-ascending::before,
146
+ &.e-descending::before {
147
+ content: " ";
148
+ display: block;
149
+ width: 16px;
150
+ height: 16px;
151
+ background-image: url("/assets/img/table-sort-arrow.svg");
152
+ background-repeat: no-repeat;
153
+ background-position: center center;
154
+ }
155
+
156
+ &.e-ascending::before {
157
+ transform: rotate(180deg);
158
+ }
159
+ }
160
+
161
+ &[aria-sort]:not(.e-rightalign):not([aria-sort="none"]) {
162
+ --header-sort-width: 16px;
163
+ }
164
+
165
+ &.e-mousepointer {
166
+ --header-column-width: 24px;
167
+ }
168
+
169
+ &.e-rightalign {
170
+ .e-headercelldiv {
171
+ justify-content: flex-end;
172
+ }
173
+
174
+ &[aria-sort]:not([aria-sort="none"]) .e-headercelldiv {
175
+ padding-left: 20px !important;
176
+ }
177
+
178
+ .e-sortfilterdiv {
179
+ right: auto;
180
+ left: 8px;
181
+ }
182
+ }
183
+
184
+ .e-headerchkcelldiv + .e-sortfilterdiv {
185
+ display: none;
186
+ }
187
+
188
+ .e-columnmenu {
189
+ position: absolute;
190
+ top: 50%;
191
+ right: 8px;
192
+ transform: translateY(-50%);
193
+
194
+ padding: 4px;
195
+ border-radius: 4px;
196
+
197
+ &:hover {
198
+ background-color: #edf5ff;
199
+ }
200
+
201
+ &::before {
202
+ content: url("/assets/img/table-column-menu.svg");
203
+ display: block;
204
+ width: 16px;
205
+ height: 16px;
206
+ }
207
+ }
208
+
209
+ &:not(.e-rcursor):hover .e-rhandler {
210
+ width: 8px;
211
+ border-right: 1px solid #dbe1e7;
212
+
213
+ &:hover {
214
+ border-color: #1f7bff;
215
+ }
216
+ }
15
217
  }
16
- .e-rhandler {
17
- border-right: 0 !important;
218
+ }
219
+ .e-rowcell {
220
+ padding: 2px 12px;
221
+ border-top: 0;
222
+ border-bottom: 1px solid #eaedf0;
223
+ color: var(--rs-text-color) !important;
224
+ font-family: Arial;
225
+ font-size: var(--rs-grid-row-cell-font-size);
226
+ font-weight: 400;
227
+ line-height: 24px;
228
+ height: var(--rs-grid-row-height) !important;
229
+ &.e-updatedtd {
230
+ background-color: #edf5ff; // selected bg
18
231
  }
19
- .e-icons.e-columnmenu {
20
- color: #929dab !important;
21
- margin: 0;
22
- padding: 0;
23
- position: absolute;
24
- top: 0;
25
- right: 10px;
26
- height: 100%;
27
- display: flex;
28
- align-items: center;
232
+ &.e-leftfreeze {
233
+ border-right: none;
234
+ border-left: none;
29
235
  }
30
- .e-checkbox-wrapper {
31
- .e-icons {
32
- margin: 0;
33
- &.e-check,
34
- &.e-stop {
236
+ &.e-active {
237
+ background-color: #edf5ff; // selected bg
238
+ &.e-gridchkbox {
239
+ .e-checkbox-wrapper {
240
+ display: block;
241
+ }
242
+ }
243
+ .rowcell-menu {
244
+ display: block;
245
+ }
246
+ }
247
+ .rowcell-menu {
248
+ display: none;
249
+ }
250
+ &.e-gridchkbox {
251
+ &.e-active {
252
+ .e-checkbox-wrapper {
253
+ display: flex;
254
+ }
255
+ }
256
+ .e-checkbox-wrapper {
257
+ display: none;
258
+ }
259
+ }
260
+
261
+ &.e-gridchkbox {
262
+ .e-checkbox-wrapper {
263
+ width: 100%;
264
+ position: static;
265
+
266
+ flex-flow: row nowrap;
267
+ justify-content: center;
268
+ align-items: center;
269
+
270
+ .e-label {
271
+ display: none;
272
+ }
273
+ .e-icons.e-check {
35
274
  color: #fff !important;
36
275
  background-color: var(--rs-active-color);
37
276
  border-color: var(--rs-active-color);
38
277
  }
39
278
  }
279
+ padding: 0;
280
+ &:first-child + .e-rowcell {
281
+ padding-left: 4px;
282
+ }
40
283
  }
41
- }
42
- .e-gridheader {
43
- border-bottom-color: transparent;
44
- }
45
- .e-gridheader .e-fltr-icon .e-sortfilterdiv {
46
- color: #929dab !important;
47
- font-size: 13px !important;
48
- margin: 0;
49
- position: absolute;
50
- right: 30px;
51
- top: 0;
52
- height: 100%;
53
- display: flex;
54
- align-items: center;
55
- }
56
- .e-rowcell {
57
- padding: 2px 8px 3px;
58
- &:not(.e-editedbatchcell):not(.e-updatedtd) {
59
- color: var(--rs-text-color);
60
- font-family: Arial;
61
- font-size: var(--rs-grid-row-cell-font-size);
62
- font-weight: 400;
63
- line-height: 23px;
64
- height: var(--rs-grid-row-height);
65
- }
66
- &.e-active {
67
- background: rgba(31, 123, 255, 0.08); // selected bg
284
+ &[style*="text-align: right;"] {
285
+ padding-right: 36px;
68
286
  }
69
- .e-checkbox-wrapper {
70
- .e-icons.e-check {
71
- color: #fff !important;
72
- background-color: var(--rs-active-color);
73
- border-color: var(--rs-active-color);
287
+
288
+ .e-treecolumn-container {
289
+ display: flex !important;
290
+ flex-flow: row nowrap;
291
+ align-items: center;
292
+
293
+ .e-none {
294
+ flex: none;
295
+ display: block !important;
296
+
297
+ &[style*="width: 10px"] {
298
+ width: 12px !important;
299
+ }
300
+
301
+ &[style*="width: 4px"] {
302
+ width: 8px !important;
303
+ }
304
+ }
305
+
306
+ .e-treegridexpand,
307
+ .e-treegridcollapse {
308
+ flex: none;
309
+ width: 16px;
310
+ height: 16px;
311
+
312
+ &::before {
313
+ content: url("/assets/img/grid-menu-arrow-right.svg");
314
+ }
74
315
  }
75
316
  }
76
317
  }
318
+ .e-row
319
+ tr:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
320
+ .e-rowcell.e-leftfreeze:not(.e-cellselectionbackground):not(.e-active):not(
321
+ .e-updatedtd
322
+ ):not(.e-indentcell),
323
+ .e-grid.e-gridhover
324
+ .e-row
325
+ tr:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
326
+ .e-rowcell.e-rightfreeze:not(.e-cellselectionbackground):not(.e-active):not(
327
+ .e-updatedtd
328
+ ):not(.e-indentcell),
329
+ .e-grid.e-gridhover
330
+ .e-row
331
+ tr:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
332
+ .e-rowcell.e-unfreeze:not(.e-cellselectionbackground):not(.e-active):not(
333
+ .e-updatedtd
334
+ ):not(.e-indentcell),
335
+ .e-grid.e-gridhover
336
+ .e-row
337
+ tr:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
338
+ .e-rowcell.e-fixedfreeze:not(.e-cellselectionbackground):not(.e-active):not(
339
+ .e-updatedtd
340
+ ):not(.e-indentcell),
341
+ .e-grid.e-gridhover
342
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
343
+ .e-rowcell.e-leftfreeze:not(.e-cellselectionbackground):not(.e-active):not(
344
+ .e-updatedtd
345
+ ):not(.e-indentcell),
346
+ .e-grid.e-gridhover
347
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
348
+ .e-rowcell.e-rightfreeze:not(.e-cellselectionbackground):not(.e-active):not(
349
+ .e-updatedtd
350
+ ):not(.e-indentcell),
351
+ .e-grid.e-gridhover
352
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
353
+ .e-rowcell.e-unfreeze:not(.e-cellselectionbackground):not(.e-active):not(
354
+ .e-updatedtd
355
+ ):not(.e-indentcell),
356
+ .e-grid.e-gridhover
357
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
358
+ .e-rowcell.e-fixedfreeze:not(.e-cellselectionbackground):not(.e-active):not(
359
+ .e-updatedtd
360
+ ):not(.e-indentcell) {
361
+ background-color: var(--rs-grid-row-hover-bg); // hover bg
362
+ }
363
+
364
+ td.e-active.e-leftfreeze:not(.e-updatedtd),
365
+ td.e-active.e-unfreeze:not(.e-updatedtd),
366
+ td.e-active.e-rightfreeze:not(.e-updatedtd),
367
+ td.e-active.e-fixedfreeze:not(.e-updatedtd),
368
+ .e-columnselection.e-leftfreeze:not(.e-updatedtd),
369
+ .e-columnselection.e-unfreeze:not(.e-updatedtd),
370
+ .e-columnselection.e-rightfreeze:not(.e-updatedtd),
371
+ .e-columnselection.e-fixedfreeze:not(.e-updatedtd) {
372
+ background-color: #edf5ff; // selected bg
373
+ }
77
374
  .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
78
375
  .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(
79
376
  .e-updatedtd
80
377
  ):not(.e-indentcell) {
81
- background-color: var(--rs-grid-row-hover-bg) !important; // hover bg
378
+ &.e-gridchkbox {
379
+ .e-checkbox-wrapper {
380
+ display: flex;
381
+ }
382
+ }
383
+ .rowcell-menu {
384
+ display: block;
385
+ }
386
+ }
387
+ .e-row:not(:hover) {
388
+ kt-grid-action,
389
+ rs-grid-action {
390
+ display: none;
391
+ }
82
392
  }
83
393
 
84
394
  .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
85
395
  .e-rowcell.e-active:not(.e-cellselectionbackground):not(.e-updatedtd):not(
86
396
  .e-indentcell
87
397
  ) {
88
- background-color: rgba(31, 123, 255, 0.12) !important; //selected + hover bg
398
+ background-color: #e4efff; //selected + hover bg
89
399
  }
90
400
 
91
401
  .e-focused:not(.e-menu-item):not(.e-editedbatchcell) {
@@ -99,82 +409,238 @@
99
409
  overflow: auto;
100
410
  }
101
411
  }
412
+
413
+ .first-action-column {
414
+ display: flex;
415
+ flex-flow: row nowrap;
416
+ align-items: center;
417
+
418
+ width: 100%;
419
+
420
+ .first-column-text {
421
+ flex: auto;
422
+ overflow: hidden;
423
+ text-overflow: ellipsis;
424
+
425
+ &.flex-text {
426
+ display: flex;
427
+ flex-flow: row nowrap;
428
+ }
429
+
430
+ .first-column-alert {
431
+ width: 4px;
432
+ margin-right: 8px;
433
+ color: red;
434
+ }
435
+ }
436
+ }
437
+ }
438
+ .e-gridpager {
439
+ padding: 12px 0 0;
102
440
  }
103
441
  .e-pager {
104
- padding: 12px 0;
105
- height: 48px;
106
- font-family: Arial;
442
+ position: relative;
443
+
444
+ display: flex;
445
+ flex-flow: row nowrap;
446
+ align-items: center;
447
+ gap: 16px;
107
448
  border: 0;
108
- .e-pp,
109
- .e-pp:hover,
110
- .e-np,
111
- .e-np:hover,
112
- .e-parentmsgbar {
113
- padding: 0 !important;
114
- }
115
- .e-icons {
116
- padding: 5px !important;
117
- min-width: 20px !important;
118
- border: 0 !important;
119
- }
120
- .e-pagercontainer,
121
- .e-parentmsgbar {
122
- line-height: 24px;
449
+
450
+ .e-pagercontainer {
451
+ margin: 0;
123
452
  border: 0;
124
- color: #929dab;
125
- font-size: 10px;
126
- }
127
- .e-numericitem {
128
- &:hover {
129
- padding: 0 !important;
130
- }
131
- &.e-active {
132
- color: #1f3f5c;
453
+
454
+ display: flex;
455
+ flex-flow: row nowrap;
456
+ align-items: center;
457
+
458
+ .e-icons,
459
+ .e-spacing {
460
+ min-width: 24px;
461
+ height: 24px;
462
+
463
+ border: none;
133
464
  border-radius: 6px;
134
- border: 1px solid rgba(31, 123, 255, 0.66);
465
+
466
+ display: flex;
467
+ flex-flow: row nowrap;
468
+ justify-content: center;
469
+ align-items: center;
470
+
471
+ color: #6c7c90;
472
+ font-family: Arial;
473
+ font-size: 11px;
474
+ font-style: normal;
475
+ font-weight: 400;
476
+ line-height: 14px;
477
+
478
+ &:hover,
479
+ &.e-focused {
480
+ background-color: #1f7bff0a;
481
+ }
482
+
483
+ &.e-disable {
484
+ opacity: 0.3;
485
+ cursor: not-allowed;
486
+ }
135
487
  }
136
- &.e-focused {
137
- background: #fff !important;
138
- box-shadow: none !important;
488
+
489
+ .e-icons {
490
+ &::before {
491
+ display: block;
492
+ width: 16px;
493
+ height: 16px;
494
+ }
495
+
496
+ &.e-first::before {
497
+ content: url("/assets/img/grid-pager-arrows-left.svg");
498
+ }
499
+
500
+ &.e-prev {
501
+ margin: 0 16px 0 12px;
502
+
503
+ &::before {
504
+ content: url("/assets/img/grid-pager-arrow-left.svg");
505
+ }
506
+ }
507
+
508
+ &.e-next {
509
+ margin: 0 12px 0 16px;
510
+
511
+ &::before {
512
+ content: url("/assets/img/grid-pager-arrow-left.svg");
513
+ transform: rotate(180deg);
514
+ }
515
+ }
516
+
517
+ &.e-last::before {
518
+ content: url("/assets/img/grid-pager-arrows-left.svg");
519
+ transform: rotate(180deg);
520
+ }
139
521
  }
140
- min-width: 24px;
141
- width: 24px;
142
- height: 24px;
143
- padding: 0 !important;
144
- line-height: 24px !important;
145
- border: 0;
146
- color: #6c7c90;
147
- font-size: 12px;
148
- }
149
- .e-numericcontainer {
150
- div {
151
- height: 24px;
522
+
523
+ .e-spacing {
524
+ &.e-pp {
525
+ margin-right: 12px;
526
+ }
527
+
528
+ &.e-np {
529
+ margin-left: 12px;
530
+ }
531
+
532
+ &.e-pp.e-disable,
533
+ &.e-np.e-disable {
534
+ display: none;
535
+ }
152
536
  }
153
- .e-currentitem {
154
- padding: 0;
155
- background: #fff;
537
+
538
+ .e-numericcontainer {
539
+ display: flex;
540
+ flex-flow: row nowrap;
541
+ justify-content: center;
542
+ align-items: center;
543
+
544
+ .e-numericitem {
545
+ border: 1px solid transparent;
546
+
547
+ &.e-currentitem {
548
+ border-color: #1f7bff66;
549
+ background-color: #fff;
550
+ }
551
+ }
552
+
553
+ div:not(:first-child) > .e-numericitem {
554
+ margin-left: 12px;
555
+ }
156
556
  }
157
557
  }
158
- .e-pagerconstant {
159
- margin: 0 0 0 16px;
160
- line-height: 24px;
558
+
559
+ .e-parentmsgbar {
560
+ float: none;
561
+ clear: both;
562
+
563
+ height: auto;
564
+ padding: 0;
565
+
566
+ position: absolute;
567
+ top: 50%;
568
+ right: 0;
569
+ transform: translateY(-50%);
570
+
161
571
  color: #929dab;
162
- font-size: 11px;
163
- }
164
- div.e-icons.e-pager-default {
165
- color: #6b6b6b;
166
- }
167
- .e-icons:not(.e-btn-icon) {
168
- color: #adb5bd;
169
- }
170
- .e-currentitem {
171
- font-size: 11px;
172
572
  font-family: Arial;
573
+ font-size: 11px;
574
+ font-style: normal;
575
+ font-weight: 400;
576
+ line-height: 14px;
173
577
  }
174
578
 
175
- .e-pagerdropdown {
176
- height: 24px !important;
177
- margin-top: -14px;
579
+ .e-pagesizes {
580
+ height: 24px;
581
+
582
+ display: flex;
583
+ flex-flow: row nowrap;
584
+ align-items: center;
585
+ gap: 8px;
586
+
587
+ .e-pagerdropdown {
588
+ margin: 0;
589
+ width: 60px;
590
+ height: 24px;
591
+
592
+ .e-input-group {
593
+ height: 24px;
594
+ padding: 0 0 0 8px;
595
+
596
+ border-radius: 4px;
597
+ border: 1px solid #eaedf0;
598
+ background-color: #fff;
599
+
600
+ display: flex;
601
+ flex-flow: row nowrap;
602
+ align-items: center;
603
+
604
+ &.e-icon-anim,
605
+ &:focus-within {
606
+ border-color: #1f7bffb8;
607
+ box-shadow: none;
608
+ }
609
+
610
+ &:hover {
611
+ border-color: #1f7bff80;
612
+ box-shadow: 0px 0px 3px 0px #1f7bff66;
613
+ }
614
+
615
+ &.e-icon-anim:hover,
616
+ &:not(.e-disabled):focus-within:hover {
617
+ border-color: #1f7bffb8;
618
+ }
619
+
620
+ .e-input {
621
+ height: 100%;
622
+ padding: 0 !important;
623
+
624
+ color: #062c4f !important;
625
+ font-family: Arial;
626
+ font-size: 11px !important;
627
+ font-style: normal;
628
+ font-weight: 400;
629
+ line-height: 12px;
630
+ }
631
+ }
632
+ }
633
+
634
+ .e-pagerconstant {
635
+ margin: 0;
636
+
637
+ color: #929dab;
638
+ font-family: Arial;
639
+ font-size: 11px;
640
+ font-style: normal;
641
+ font-weight: 400;
642
+ line-height: 12px;
643
+ }
178
644
  }
179
645
  }
180
646
  .e-grid-menu {
@@ -185,7 +651,7 @@
185
651
  color: #44566c;
186
652
  &.e-focused,
187
653
  &.e-selected {
188
- background-color: rgba(31, 123, 255, 0.04);
654
+ background-color: #f6faff;
189
655
  color: #44566c;
190
656
  }
191
657
  .e-icons.e-check {
@@ -200,12 +666,12 @@
200
666
  }
201
667
  }
202
668
  }
203
- .e-checkboxfilter.e-col-menu {
669
+ .e-checkboxfilter.e-filter-popup {
204
670
  .e-searchcontainer {
205
671
  .e-searchbox {
206
672
  .e-input-group {
207
673
  box-shadow: none !important;
208
- .e-search-icon:hover {
674
+ .e-searchclear:hover {
209
675
  background-color: var(--rs-active-color);
210
676
  border-color: var(--rs-active-color);
211
677
  }
@@ -213,10 +679,15 @@
213
679
  }
214
680
  .e-checkboxlist {
215
681
  .e-ftrchk {
216
- height: 26px;
682
+ height: auto;
217
683
  line-height: 26px;
218
684
  padding: 0;
219
- .e-icons.e-check {
685
+ padding-left: 8px;
686
+ .e-chk-hidden {
687
+ display: none;
688
+ }
689
+ .e-icons.e-check,
690
+ .e-icons.e-stop {
220
691
  background-color: var(--rs-active-color);
221
692
  border-color: var(--rs-active-color);
222
693
  }
@@ -226,19 +697,149 @@
226
697
  color: #44566c;
227
698
  }
228
699
  &:hover {
229
- background-color: rgba(31, 123, 255, 0.04);
700
+ background-color: #f6faff;
230
701
  }
231
702
  &.e-chkfocus {
232
- background-color: rgba(31, 123, 255, 0.04);
703
+ background-color: #f6faff;
233
704
  }
234
705
  }
235
706
  }
236
707
  }
237
708
  .e-footer-content {
238
709
  display: flex;
239
- justify-content: space-between;
710
+ justify-content: flex-end;
240
711
  .e-btn {
241
- margin-left: 0;
712
+ font-family: var(--rs-font-family);
713
+ display: flex;
714
+ justify-content: center;
715
+ align-items: center;
716
+ gap: 6px;
717
+ font-style: normal;
718
+ border: 1px solid #adb5bd !important;
719
+ background: transparent !important;
720
+ color: var(--rs-cancel-btn-color) !important;
721
+ height: 32px;
722
+ min-width: 80px;
723
+ padding: 0 10px;
724
+ font-size: 12px;
725
+ border-radius: 4px;
726
+ box-shadow: none !important;
727
+ line-height: normal;
728
+ &.e-primary {
729
+ color: #fff !important;
730
+ border-color: var(--rs-primary-btn-bg) !important;
731
+ background: var(--rs-primary-btn-bg) !important;
732
+ font-weight: 700;
733
+ &:not([disabled]):hover,
734
+ &:not([disabled]):active,
735
+ &:not([disabled]):focus {
736
+ border-color: var(--rs-primary-btn-hover-bg) !important;
737
+ background: var(--rs-primary-btn-hover-bg) !important;
738
+ color: #fff !important;
739
+ }
740
+ &[disabled] {
741
+ color: #fff !important;
742
+ background: var(--rs-primary-btn-bg) !important;
743
+ border-color: var(--rs-primary-btn-bg) !important;
744
+ }
745
+ }
746
+ }
747
+ }
748
+ }
749
+ .grid-loading {
750
+ .e-gridcontent {
751
+ .e-rowcell {
752
+ border-bottom: 0;
753
+ position: relative;
754
+ color: transparent !important;
755
+
756
+ .text-ellipsis,
757
+ .e-checkbox-wrapper,
758
+ img,
759
+ div,
760
+ span,
761
+ .mat-chip-list-wrapper {
762
+ visibility: hidden !important;
763
+ }
764
+
765
+ &::after {
766
+ content: "";
767
+ position: absolute;
768
+ top: 0;
769
+ bottom: 0;
770
+ right: 0;
771
+ width: calc(200% + 200px);
772
+ animation: e-shimmer-wave 1s infinite;
773
+ animation-timing-function: ease-in-out;
774
+ background-image: linear-gradient(
775
+ 90deg,
776
+ transparent calc(50% - 100px),
777
+ rgb(255, 255, 255) 50%,
778
+ transparent calc(50% + 100px)
779
+ );
780
+ transition: 0.5s;
781
+ }
782
+
783
+ &::before {
784
+ content: "";
785
+ position: absolute;
786
+ left: 0px;
787
+ right: 8px;
788
+ top: 50%;
789
+ transform: translateY(-50%);
790
+ height: 15px;
791
+ border-radius: 4px;
792
+ background: linear-gradient(
793
+ 0deg,
794
+ rgba(103, 80, 164, 0.08),
795
+ rgba(103, 80, 164, 0.08)
796
+ ),
797
+ white;
798
+ }
242
799
  }
243
800
  }
244
801
  }
802
+
803
+ .e-grid.e-gridhover
804
+ .e-frozenhover:not(.e-cellselectionbackground):not(.e-active):not(
805
+ .e-updatedtd
806
+ ):not(.e-indentcell),
807
+ .e-grid.e-gridhover
808
+ .e-row
809
+ tr:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
810
+ .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(
811
+ .e-updatedtd
812
+ ):not(.e-indentcell),
813
+ .e-grid.e-gridhover:not(.e-rowdrag)
814
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
815
+ .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(
816
+ .e-updatedtd
817
+ ):not(.e-indentcell),
818
+ .e-grid.e-gridhover
819
+ .e-row:not(.e-disable-gridhover):not(.e-detailrow):hover
820
+ .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(
821
+ .e-updatedtd
822
+ ):not(.e-indentcell),
823
+ .e-grid.e-gridhover:not(.e-rowdrag)
824
+ .e-row:not(.e-disable-gridhover):not(.e-detailrow):hover
825
+ .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(
826
+ .e-updatedtd
827
+ ):not(.e-indentcell),
828
+ .e-grid.e-rtl
829
+ .e-gridhover
830
+ .e-row:not(.e-disable-gridhover):not(.e-detailrow):hover
831
+ .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(
832
+ .e-updatedtd
833
+ ):not(.e-indentcell),
834
+ .e-grid.e-gridhover
835
+ .e-row.e-addedrow:not(.e-disable-gridhover):not(.e-detailrow):hover
836
+ .e-dragindentcell:not(.e-cellselectionbackground):not(.e-active):not(
837
+ .e-updatedtd
838
+ ):not(.e-indentcell),
839
+ .e-grid.e-gridhover
840
+ .e-row:not(.e-disable-gridhover):not(.e-detailrow):hover
841
+ .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(
842
+ .e-updatedtd
843
+ ):not(.e-indentcell) {
844
+ background-color: var(--rs-grid-row-hover-bg); // hover bg
845
+ }