raise-common-lib-new 0.0.2

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 (171) hide show
  1. package/README.md +24 -0
  2. package/assets/language/fr.d.ts +3377 -0
  3. package/assets/language/ja.d.ts +3351 -0
  4. package/assets/language/ko.d.ts +3351 -0
  5. package/assets/language/zh-CN.d.ts +3064 -0
  6. package/assets/language/zh-TW.d.ts +3354 -0
  7. package/esm2022/assets/language/fr.mjs +3378 -0
  8. package/esm2022/assets/language/ja.mjs +3352 -0
  9. package/esm2022/assets/language/ko.mjs +3352 -0
  10. package/esm2022/assets/language/zh-CN.mjs +3065 -0
  11. package/esm2022/assets/language/zh-TW.mjs +3355 -0
  12. package/esm2022/lib/commentary/constants.mjs +2 -0
  13. package/esm2022/lib/commentary/index.component.mjs +146 -0
  14. package/esm2022/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.mjs +44 -0
  15. package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +18 -0
  16. package/esm2022/lib/common-grid/index.component.mjs +461 -0
  17. package/esm2022/lib/constant/index.mjs +11 -0
  18. package/esm2022/lib/dialog/common-delete-dialog/index.component.mjs +46 -0
  19. package/esm2022/lib/dialog/common-dialog/index.component.mjs +85 -0
  20. package/esm2022/lib/dialog/new-action-notification/new-action-notification.component.mjs +51 -0
  21. package/esm2022/lib/float-box/index.component.mjs +217 -0
  22. package/esm2022/lib/form/checkbox-group/index.component.mjs +57 -0
  23. package/esm2022/lib/form/drawer-form/constants.mjs +10 -0
  24. package/esm2022/lib/form/drawer-form/drawer-form.component.mjs +336 -0
  25. package/esm2022/lib/form/encrypted-input/index.component.mjs +35 -0
  26. package/esm2022/lib/form/radio-group/index.component.mjs +42 -0
  27. package/esm2022/lib/form/switch-input/index.component.mjs +42 -0
  28. package/esm2022/lib/form/tag-input/index.component.mjs +82 -0
  29. package/esm2022/lib/form/toolbar-item/index.component.mjs +56 -0
  30. package/esm2022/lib/layout/drawer/index.component.mjs +165 -0
  31. package/esm2022/lib/layout/grid-box/index.component.mjs +67 -0
  32. package/esm2022/lib/layout/main-container/index.component.mjs +60 -0
  33. package/esm2022/lib/layout/multi-tab/index.component.mjs +263 -0
  34. package/esm2022/lib/layout/nav-card-group/constants.mjs +2 -0
  35. package/esm2022/lib/layout/nav-card-group/index.component.mjs +37 -0
  36. package/esm2022/lib/layout/page-list/index.component.mjs +73 -0
  37. package/esm2022/lib/layout/page-tab/index.component.mjs +56 -0
  38. package/esm2022/lib/layout/rs-aside/index.component.mjs +76 -0
  39. package/esm2022/lib/layout/rs-footer/index.component.mjs +16 -0
  40. package/esm2022/lib/layout/rs-header/index.component.mjs +56 -0
  41. package/esm2022/lib/layout/toolbar/constants.mjs +2 -0
  42. package/esm2022/lib/layout/toolbar/index.component.mjs +79 -0
  43. package/esm2022/lib/raise-common-lib.module.mjs +505 -0
  44. package/esm2022/lib/service/common-function.service.mjs +141 -0
  45. package/esm2022/lib/service/dialog.service.mjs +132 -0
  46. package/esm2022/lib/service/drawer.service.mjs +111 -0
  47. package/esm2022/lib/service/icon-loader.service.mjs +23 -0
  48. package/esm2022/lib/service/keep-alive.service.mjs +83 -0
  49. package/esm2022/lib/service/translation.service.mjs +98 -0
  50. package/esm2022/lib/utils/decorator.mjs +14 -0
  51. package/esm2022/public-api.mjs +35 -0
  52. package/esm2022/raise-common-lib-new.mjs +5 -0
  53. package/fesm2022/raise-common-lib-new.mjs +20114 -0
  54. package/fesm2022/raise-common-lib-new.mjs.map +1 -0
  55. package/index.d.ts +5 -0
  56. package/lib/commentary/constants.d.ts +15 -0
  57. package/lib/commentary/index.component.d.ts +38 -0
  58. package/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.d.ts +10 -0
  59. package/lib/common-grid/grid-action/grid-action.component.d.ts +14 -0
  60. package/lib/common-grid/index.component.d.ts +122 -0
  61. package/lib/constant/index.d.ts +54 -0
  62. package/lib/dialog/common-delete-dialog/index.component.d.ts +29 -0
  63. package/lib/dialog/common-dialog/index.component.d.ts +29 -0
  64. package/lib/dialog/new-action-notification/new-action-notification.component.d.ts +33 -0
  65. package/lib/float-box/index.component.d.ts +33 -0
  66. package/lib/form/checkbox-group/index.component.d.ts +22 -0
  67. package/lib/form/drawer-form/constants.d.ts +34 -0
  68. package/lib/form/drawer-form/drawer-form.component.d.ts +67 -0
  69. package/lib/form/encrypted-input/index.component.d.ts +14 -0
  70. package/lib/form/radio-group/index.component.d.ts +19 -0
  71. package/lib/form/switch-input/index.component.d.ts +15 -0
  72. package/lib/form/tag-input/index.component.d.ts +25 -0
  73. package/lib/form/toolbar-item/index.component.d.ts +17 -0
  74. package/lib/layout/drawer/index.component.d.ts +45 -0
  75. package/lib/layout/grid-box/index.component.d.ts +19 -0
  76. package/lib/layout/main-container/index.component.d.ts +18 -0
  77. package/lib/layout/multi-tab/index.component.d.ts +52 -0
  78. package/lib/layout/nav-card-group/constants.d.ts +14 -0
  79. package/lib/layout/nav-card-group/index.component.d.ts +16 -0
  80. package/lib/layout/page-list/index.component.d.ts +21 -0
  81. package/lib/layout/page-tab/index.component.d.ts +18 -0
  82. package/lib/layout/rs-aside/index.component.d.ts +19 -0
  83. package/lib/layout/rs-footer/index.component.d.ts +8 -0
  84. package/lib/layout/rs-header/index.component.d.ts +21 -0
  85. package/lib/layout/toolbar/constants.d.ts +8 -0
  86. package/lib/layout/toolbar/index.component.d.ts +22 -0
  87. package/lib/raise-common-lib.module.d.ts +54 -0
  88. package/lib/service/common-function.service.d.ts +18 -0
  89. package/lib/service/dialog.service.d.ts +55 -0
  90. package/lib/service/drawer.service.d.ts +46 -0
  91. package/lib/service/icon-loader.service.d.ts +11 -0
  92. package/lib/service/keep-alive.service.d.ts +15 -0
  93. package/lib/service/translation.service.d.ts +12 -0
  94. package/lib/utils/decorator.d.ts +1 -0
  95. package/package.json +25 -0
  96. package/public-api.d.ts +31 -0
  97. package/src/assets/img/arrow_right.svg +4 -0
  98. package/src/assets/img/calendar-disabled.svg +6 -0
  99. package/src/assets/img/calendar.svg +6 -0
  100. package/src/assets/img/calendar_arrow_left.svg +3 -0
  101. package/src/assets/img/calendar_arrow_right.svg +3 -0
  102. package/src/assets/img/checked-vector.svg +3 -0
  103. package/src/assets/img/close-url.svg +10 -0
  104. package/src/assets/img/close.svg +10 -0
  105. package/src/assets/img/comment-cancel.svg +4 -0
  106. package/src/assets/img/comment-check.svg +5 -0
  107. package/src/assets/img/delete.svg +14 -0
  108. package/src/assets/img/desktop-refresh-btn.svg +6 -0
  109. package/src/assets/img/down-arrow.svg +3 -0
  110. package/src/assets/img/drawer-back.svg +4 -0
  111. package/src/assets/img/dropdown-arrow-disabled.svg +3 -0
  112. package/src/assets/img/dropdown-arrow.svg +3 -0
  113. package/src/assets/img/export.svg +5 -0
  114. package/src/assets/img/eye-close.svg +4 -0
  115. package/src/assets/img/eye-open.svg +4 -0
  116. package/src/assets/img/grid-action-copy.svg +6 -0
  117. package/src/assets/img/grid-action-delete.svg +14 -0
  118. package/src/assets/img/grid-action-detail.svg +7 -0
  119. package/src/assets/img/grid-action-download.svg +7 -0
  120. package/src/assets/img/grid-action-edit.svg +4 -0
  121. package/src/assets/img/grid-action-export.svg +12 -0
  122. package/src/assets/img/grid-action-move.svg +8 -0
  123. package/src/assets/img/grid-action-note.svg +10 -0
  124. package/src/assets/img/grid-action-send.svg +5 -0
  125. package/src/assets/img/grid-action-settle.svg +13 -0
  126. package/src/assets/img/grid-menu-arrow-right.svg +3 -0
  127. package/src/assets/img/grid-pager-arrow-left.svg +3 -0
  128. package/src/assets/img/grid-pager-arrows-left.svg +4 -0
  129. package/src/assets/img/icon-more-active.svg +7 -0
  130. package/src/assets/img/icon-more.svg +7 -0
  131. package/src/assets/img/more.svg +5 -0
  132. package/src/assets/img/notification-close.svg +4 -0
  133. package/src/assets/img/notification-collapse.svg +14 -0
  134. package/src/assets/img/notification-status-error.svg +5 -0
  135. package/src/assets/img/notification-status-loading.svg +9 -0
  136. package/src/assets/img/notification-status-success.svg +4 -0
  137. package/src/assets/img/notification-status-warning.svg +5 -0
  138. package/src/assets/img/plus.svg +4 -0
  139. package/src/assets/img/raise_loading.gif +0 -0
  140. package/src/assets/img/raise_logo_main.svg +13 -0
  141. package/src/assets/img/search.svg +4 -0
  142. package/src/assets/img/split-button-arrow.svg +3 -0
  143. package/src/assets/img/table-column-menu.svg +5 -0
  144. package/src/assets/img/table-sort-arrow.svg +6 -0
  145. package/src/assets/img/tag-remove.svg +4 -0
  146. package/src/assets/img/toggle-menu-icon.svg +3 -0
  147. package/src/assets/img/toolbar-action-add.svg +4 -0
  148. package/src/assets/img/toolbar-action-delete.svg +14 -0
  149. package/src/assets/img/toolbar-action-download.svg +5 -0
  150. package/src/assets/img/toolbar-action-duplicate.svg +6 -0
  151. package/src/assets/img/toolbar-action-export.svg +5 -0
  152. package/src/assets/img/toolbar-action-import.svg +5 -0
  153. package/src/assets/img/toolbar-action-refresh.svg +14 -0
  154. package/src/assets/img/toolbar-action-upload.svg +5 -0
  155. package/src/assets/img/tooltip-icon.svg +4 -0
  156. package/src/assets/language/fr.ts +3603 -0
  157. package/src/assets/language/ja.ts +3501 -0
  158. package/src/assets/language/ko.ts +3478 -0
  159. package/src/assets/language/zh-CN.ts +3115 -0
  160. package/src/assets/language/zh-TW.ts +3411 -0
  161. package/src/assets/style/reset/button.scss +187 -0
  162. package/src/assets/style/reset/checkbox.scss +33 -0
  163. package/src/assets/style/reset/dropdown.scss +564 -0
  164. package/src/assets/style/reset/grid.scss +845 -0
  165. package/src/assets/style/reset/input.scss +97 -0
  166. package/src/assets/style/reset/mat-dialog.scss +7 -0
  167. package/src/assets/style/reset/radio.scss +37 -0
  168. package/src/assets/style/reset/switch.scss +32 -0
  169. package/src/assets/style/style.scss +63 -0
  170. package/src/assets/style/syncfusion.min.css +1 -0
  171. package/src/assets/style/variables.scss +60 -0
@@ -0,0 +1,845 @@
1
+ .e-grid,
2
+ .e-treegrid {
3
+ font-family: var(--rs-font-family);
4
+ height: 100%;
5
+ display: flex;
6
+ flex-direction: column;
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
+ }
217
+ }
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
231
+ }
232
+ &.e-leftfreeze {
233
+ border-right: none;
234
+ border-left: none;
235
+ }
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 {
274
+ color: #fff !important;
275
+ background-color: var(--rs-active-color);
276
+ border-color: var(--rs-active-color);
277
+ }
278
+ }
279
+ padding: 0;
280
+ &:first-child + .e-rowcell {
281
+ padding-left: 4px;
282
+ }
283
+ }
284
+ &[style*="text-align: right;"] {
285
+ padding-right: 36px;
286
+ }
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
+ }
315
+ }
316
+ }
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
+ }
374
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
375
+ .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(
376
+ .e-updatedtd
377
+ ):not(.e-indentcell) {
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
+ }
392
+ }
393
+
394
+ .e-row:not(.e-disable-gridhover):not(.e-editedrow):not(.e-detailrow):hover
395
+ .e-rowcell.e-active:not(.e-cellselectionbackground):not(.e-updatedtd):not(
396
+ .e-indentcell
397
+ ) {
398
+ background-color: #e4efff; //selected + hover bg
399
+ }
400
+
401
+ .e-focused:not(.e-menu-item):not(.e-editedbatchcell) {
402
+ box-shadow: none !important;
403
+ }
404
+ .e-gridcontent {
405
+ flex: 1;
406
+ height: 0;
407
+ .e-content {
408
+ height: 100% !important;
409
+ overflow: auto;
410
+ }
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;
440
+ }
441
+ .e-pager {
442
+ position: relative;
443
+
444
+ display: flex;
445
+ flex-flow: row nowrap;
446
+ align-items: center;
447
+ gap: 16px;
448
+ border: 0;
449
+
450
+ .e-pagercontainer {
451
+ margin: 0;
452
+ border: 0;
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;
464
+ border-radius: 6px;
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
+ }
487
+ }
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
+ }
521
+ }
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
+ }
536
+ }
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
+ }
556
+ }
557
+ }
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
+
571
+ color: #929dab;
572
+ font-family: Arial;
573
+ font-size: 11px;
574
+ font-style: normal;
575
+ font-weight: 400;
576
+ line-height: 14px;
577
+ }
578
+
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
+ }
644
+ }
645
+ }
646
+ .e-grid-menu {
647
+ .e-menu-parent {
648
+ .e-menu-item {
649
+ font-family: var(--rs-font-family);
650
+ font-size: var(--rs-grid-row-cell-font-size);
651
+ color: #44566c;
652
+ &.e-focused,
653
+ &.e-selected {
654
+ background-color: #f6faff;
655
+ color: #44566c;
656
+ }
657
+ .e-icons.e-check {
658
+ background-color: var(--rs-active-color);
659
+ border-color: var(--rs-active-color);
660
+ }
661
+ .e-label {
662
+ font-family: var(--rs-font-family);
663
+ font-size: var(--rs-grid-row-cell-font-size);
664
+ color: #44566c;
665
+ }
666
+ }
667
+ }
668
+ }
669
+ .e-checkboxfilter.e-filter-popup {
670
+ .e-searchcontainer {
671
+ .e-searchbox {
672
+ .e-input-group {
673
+ box-shadow: none !important;
674
+ .e-searchclear:hover {
675
+ background-color: var(--rs-active-color);
676
+ border-color: var(--rs-active-color);
677
+ }
678
+ }
679
+ }
680
+ .e-checkboxlist {
681
+ .e-ftrchk {
682
+ height: auto;
683
+ line-height: 26px;
684
+ padding: 0;
685
+ padding-left: 8px;
686
+ .e-chk-hidden {
687
+ display: none;
688
+ }
689
+ .e-icons.e-check,
690
+ .e-icons.e-stop {
691
+ background-color: var(--rs-active-color);
692
+ border-color: var(--rs-active-color);
693
+ }
694
+ .e-label {
695
+ font-family: var(--rs-font-family);
696
+ font-size: var(--rs-grid-row-cell-font-size);
697
+ color: #44566c;
698
+ }
699
+ &:hover {
700
+ background-color: #f6faff;
701
+ }
702
+ &.e-chkfocus {
703
+ background-color: #f6faff;
704
+ }
705
+ }
706
+ }
707
+ }
708
+ .e-footer-content {
709
+ display: flex;
710
+ justify-content: flex-end;
711
+ .e-btn {
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
+ }
799
+ }
800
+ }
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
+ }