@bizy/core 19.0.0

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 (155) hide show
  1. package/fesm2022/bizy-core.mjs +6836 -0
  2. package/fesm2022/bizy-core.mjs.map +1 -0
  3. package/index.d.ts +5 -0
  4. package/lib/components/accordion/accordion.component.d.ts +15 -0
  5. package/lib/components/accordion/index.d.ts +2 -0
  6. package/lib/components/bar-line-chart/bar-line-chart.component.d.ts +29 -0
  7. package/lib/components/bar-line-chart/bar-line-chart.types.d.ts +17 -0
  8. package/lib/components/bar-line-chart/index.d.ts +3 -0
  9. package/lib/components/breadcrumb/breadcrumb.component.d.ts +15 -0
  10. package/lib/components/breadcrumb/breadcrumb.types.d.ts +6 -0
  11. package/lib/components/breadcrumb/index.d.ts +3 -0
  12. package/lib/components/button/button.component.d.ts +13 -0
  13. package/lib/components/button/index.d.ts +2 -0
  14. package/lib/components/calendar/calendar.component.d.ts +47 -0
  15. package/lib/components/calendar/calendar.formatter.d.ts +7 -0
  16. package/lib/components/calendar/calendar.types.d.ts +32 -0
  17. package/lib/components/calendar/index.d.ts +3 -0
  18. package/lib/components/card/card.component.d.ts +12 -0
  19. package/lib/components/card/index.d.ts +2 -0
  20. package/lib/components/checkbox/checkbox.component.d.ts +13 -0
  21. package/lib/components/checkbox/index.d.ts +2 -0
  22. package/lib/components/date-picker/date-picker.component.d.ts +45 -0
  23. package/lib/components/date-picker/index.d.ts +2 -0
  24. package/lib/components/file-uploader/file-uploader.component.d.ts +46 -0
  25. package/lib/components/file-uploader/file-uploader.service.d.ts +51 -0
  26. package/lib/components/file-uploader/index.d.ts +4 -0
  27. package/lib/components/filter/filter-content/filter-content.component.d.ts +5 -0
  28. package/lib/components/filter/filter-section/filter-section.component.d.ts +24 -0
  29. package/lib/components/filter/filter-section-checkbox-option/filter-section-checkbox-option.component.d.ts +17 -0
  30. package/lib/components/filter/filter-section-range-option/filter-section-range-option.component.d.ts +34 -0
  31. package/lib/components/filter/filter-section-search-option/filter-section-search-option.component.d.ts +21 -0
  32. package/lib/components/filter/filter-sections/filter-sections.component.d.ts +5 -0
  33. package/lib/components/filter/filter.component.d.ts +27 -0
  34. package/lib/components/filter/index.d.ts +10 -0
  35. package/lib/components/filter/pipes/filter.pipe.d.ts +10 -0
  36. package/lib/components/filter/pipes/index.d.ts +2 -0
  37. package/lib/components/filter/pipes/range-filter.pipe.d.ts +10 -0
  38. package/lib/components/form/form.component.d.ts +19 -0
  39. package/lib/components/form/index.d.ts +2 -0
  40. package/lib/components/grid/grid-row/grid-row.component.d.ts +12 -0
  41. package/lib/components/grid/grid.component.d.ts +26 -0
  42. package/lib/components/grid/grid.directive.d.ts +13 -0
  43. package/lib/components/grid/index.d.ts +5 -0
  44. package/lib/components/index.d.ts +26 -0
  45. package/lib/components/input/index.d.ts +3 -0
  46. package/lib/components/input/input-option/input-option.component.d.ts +16 -0
  47. package/lib/components/input/input.component.d.ts +56 -0
  48. package/lib/components/list/index.d.ts +2 -0
  49. package/lib/components/list/list.component.d.ts +7 -0
  50. package/lib/components/menu/index.d.ts +4 -0
  51. package/lib/components/menu/menu-option/menu-option.component.d.ts +20 -0
  52. package/lib/components/menu/menu-title/menu-title.component.d.ts +6 -0
  53. package/lib/components/menu/menu.component.d.ts +26 -0
  54. package/lib/components/pie-chart/index.d.ts +3 -0
  55. package/lib/components/pie-chart/pie-chart.component.d.ts +28 -0
  56. package/lib/components/pie-chart/pie-chart.types.d.ts +5 -0
  57. package/lib/components/radio/index.d.ts +2 -0
  58. package/lib/components/radio/radio.component.d.ts +13 -0
  59. package/lib/components/select/index.d.ts +3 -0
  60. package/lib/components/select/select-option/select-option.component.d.ts +21 -0
  61. package/lib/components/select/select.component.d.ts +37 -0
  62. package/lib/components/sidebar/index.d.ts +5 -0
  63. package/lib/components/sidebar/sidebar-floating-option/sidebar-floating-option.component.d.ts +34 -0
  64. package/lib/components/sidebar/sidebar-floating-option-title/sidebar-floating-option-title.component.d.ts +7 -0
  65. package/lib/components/sidebar/sidebar-option/sidebar-option.component.d.ts +23 -0
  66. package/lib/components/sidebar/sidebar.component.d.ts +19 -0
  67. package/lib/components/skeleton/index.d.ts +3 -0
  68. package/lib/components/skeleton/skeleton.component.d.ts +12 -0
  69. package/lib/components/skeleton/skeleton.types.d.ts +4 -0
  70. package/lib/components/slider/index.d.ts +2 -0
  71. package/lib/components/slider/slider.component.d.ts +20 -0
  72. package/lib/components/table/directives/index.d.ts +1 -0
  73. package/lib/components/table/directives/table-column-fixed.directive.d.ts +9 -0
  74. package/lib/components/table/index.d.ts +12 -0
  75. package/lib/components/table/table-column/table-column.component.d.ts +12 -0
  76. package/lib/components/table/table-column-arrows/table-column-arrows.component.d.ts +8 -0
  77. package/lib/components/table/table-footer/table-footer.component.d.ts +19 -0
  78. package/lib/components/table/table-header/table-header.component.d.ts +23 -0
  79. package/lib/components/table/table-row/table-row.component.d.ts +28 -0
  80. package/lib/components/table/table-row-expand-content/table-row-expand-content.component.d.ts +5 -0
  81. package/lib/components/table/table-scrolling/table-scrolling.component.d.ts +23 -0
  82. package/lib/components/table/table-scrolling/table-scrolling.directive.d.ts +15 -0
  83. package/lib/components/table/table.component.d.ts +30 -0
  84. package/lib/components/tabs/index.d.ts +3 -0
  85. package/lib/components/tabs/tab/tab.component.d.ts +16 -0
  86. package/lib/components/tabs/tabs.component.d.ts +21 -0
  87. package/lib/components/tag/index.d.ts +3 -0
  88. package/lib/components/tag/tag.component.d.ts +11 -0
  89. package/lib/components/tag/tag.types.d.ts +7 -0
  90. package/lib/components/toggle/index.d.ts +3 -0
  91. package/lib/components/toggle/toggle.component.d.ts +12 -0
  92. package/lib/components/toggle/toggle.types.d.ts +1 -0
  93. package/lib/components/toolbar/index.d.ts +2 -0
  94. package/lib/components/toolbar/toolbar.component.d.ts +5 -0
  95. package/lib/directives/copy-to-clipboard.directive.d.ts +16 -0
  96. package/lib/directives/currency-format.directive.d.ts +16 -0
  97. package/lib/directives/index.d.ts +11 -0
  98. package/lib/directives/loading.directive.d.ts +16 -0
  99. package/lib/directives/long-press.directive.d.ts +12 -0
  100. package/lib/directives/only-numbers.directive.d.ts +12 -0
  101. package/lib/directives/only-phone-digits.directive.d.ts +8 -0
  102. package/lib/directives/text-ellipsis.directive.d.ts +12 -0
  103. package/lib/directives/tooltip.directive.d.ts +24 -0
  104. package/lib/directives/track-by-id.directive.d.ts +12 -0
  105. package/lib/pipes/average.pipe.d.ts +7 -0
  106. package/lib/pipes/enum-to-array.pipe.d.ts +10 -0
  107. package/lib/pipes/format-seconds.pipe.d.ts +13 -0
  108. package/lib/pipes/index.d.ts +13 -0
  109. package/lib/pipes/order-by.pipe.d.ts +8 -0
  110. package/lib/pipes/reduce.pipe.d.ts +7 -0
  111. package/lib/pipes/repeat.pipe.d.ts +7 -0
  112. package/lib/pipes/safe.pipe.d.ts +10 -0
  113. package/lib/pipes/search/index.d.ts +2 -0
  114. package/lib/pipes/search/search.model.d.ts +45 -0
  115. package/lib/pipes/search/search.pipe.d.ts +16 -0
  116. package/lib/pipes/selected.pipe.d.ts +11 -0
  117. package/lib/pipes/set-to-array.pipe.d.ts +7 -0
  118. package/lib/pipes/translate.pipe.d.ts +10 -0
  119. package/lib/services/animation.service.d.ts +24 -0
  120. package/lib/services/cache.service.d.ts +13 -0
  121. package/lib/services/copy-to-clipboard.service.d.ts +10 -0
  122. package/lib/services/export-to-csv.service.d.ts +19 -0
  123. package/lib/services/format-seconds.service.d.ts +22 -0
  124. package/lib/services/index.d.ts +17 -0
  125. package/lib/services/keyboard.service.d.ts +11 -0
  126. package/lib/services/log.service.d.ts +27 -0
  127. package/lib/services/popup/index.d.ts +2 -0
  128. package/lib/services/popup/popup-wrapper/popup-wrapper.component.d.ts +11 -0
  129. package/lib/services/popup/popup.service.d.ts +24 -0
  130. package/lib/services/popup/popup.types.d.ts +4 -0
  131. package/lib/services/router.service.d.ts +29 -0
  132. package/lib/services/storage.service.d.ts +9 -0
  133. package/lib/services/toast/index.d.ts +1 -0
  134. package/lib/services/toast/toast-wrapper/toast-wrapper.component.d.ts +19 -0
  135. package/lib/services/toast/toast.service.d.ts +45 -0
  136. package/lib/services/translate/index.d.ts +2 -0
  137. package/lib/services/translate/translate.module.d.ts +7 -0
  138. package/lib/services/translate/translate.service.d.ts +23 -0
  139. package/lib/services/user-agent/uach-retrofill.d.ts +34 -0
  140. package/lib/services/user-agent/user-agent.service.d.ts +6 -0
  141. package/lib/services/validator.service.d.ts +16 -0
  142. package/lib/services/viewport.service.d.ts +17 -0
  143. package/package.json +41 -0
  144. package/public-api.d.ts +4 -0
  145. package/styles/animations.css +186 -0
  146. package/styles/calendar.css +851 -0
  147. package/styles/date-picker.css +2 -0
  148. package/styles/file-uploader.css +2 -0
  149. package/styles/loading.css +90 -0
  150. package/styles/normalize.css +102 -0
  151. package/styles/overlay.css +1 -0
  152. package/styles/popup.css +21 -0
  153. package/styles/toast.css +83 -0
  154. package/styles/tooltip.css +55 -0
  155. package/styles/variables.css +288 -0
@@ -0,0 +1,851 @@
1
+ /*
2
+ * Angular calendar styles START
3
+ */
4
+ @charset "UTF-8";
5
+
6
+ .cal-month-view .cal-header {
7
+ text-align: center;
8
+ font-weight: bolder;
9
+ }
10
+
11
+ .cal-month-view .cal-header .cal-cell {
12
+ padding: 5px 0;
13
+ overflow: hidden;
14
+ -o-text-overflow: ellipsis;
15
+ text-overflow: ellipsis;
16
+ display: block;
17
+ white-space: nowrap;
18
+ }
19
+
20
+ .cal-month-view .cal-days {
21
+ border: 1px solid;
22
+ border-bottom: 0;
23
+ }
24
+
25
+ .cal-month-view .cal-cell-top {
26
+ min-height: 78px;
27
+ -webkit-box-flex: 1;
28
+ -ms-flex: 1;
29
+ flex: 1;
30
+ }
31
+
32
+ .cal-month-view .cal-cell-row {
33
+ display: -webkit-box;
34
+ display: -ms-flexbox;
35
+ display: flex;
36
+ }
37
+
38
+ .cal-month-view .cal-cell {
39
+ float: left;
40
+ -webkit-box-flex: 1;
41
+ -ms-flex: 1;
42
+ flex: 1;
43
+ display: -webkit-box;
44
+ display: -ms-flexbox;
45
+ display: flex;
46
+ -webkit-box-orient: vertical;
47
+ -webkit-box-direction: normal;
48
+ -ms-flex-direction: column;
49
+ flex-direction: column;
50
+ -webkit-box-align: stretch;
51
+ -ms-flex-align: stretch;
52
+ align-items: stretch;
53
+ }
54
+
55
+ .cal-month-view .cal-cell .cal-event {
56
+ pointer-events: all !important;
57
+ }
58
+
59
+ .cal-month-view .cal-day-cell {
60
+ min-height: 100px;
61
+ }
62
+
63
+ .cal-month-view .cal-day-cell:not(:last-child) {
64
+ border-right: 1px solid;
65
+ }
66
+
67
+ [dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
68
+ border-right: initial;
69
+ border-left: 1px solid;
70
+ }
71
+
72
+ .cal-month-view .cal-days .cal-cell-row {
73
+ border-bottom: 1px solid;
74
+ }
75
+
76
+ .cal-month-view .cal-day-badge {
77
+ margin-top: 18px;
78
+ margin-left: 10px;
79
+ display: inline-block;
80
+ min-width: 10px;
81
+ padding: 3px 7px;
82
+ font-size: 12px;
83
+ font-weight: 700;
84
+ line-height: 1;
85
+ text-align: center;
86
+ white-space: nowrap;
87
+ vertical-align: middle;
88
+ border-radius: 10px;
89
+ float: left;
90
+ }
91
+
92
+ .cal-month-view .cal-day-number {
93
+ font-size: 1.2em;
94
+ font-weight: 400;
95
+ opacity: 0.5;
96
+ margin-top: 15px;
97
+ margin-right: 15px;
98
+ float: right;
99
+ margin-bottom: 10px;
100
+ }
101
+
102
+ .cal-month-view .cal-events {
103
+ -webkit-box-flex: 1;
104
+ -ms-flex: 1;
105
+ flex: 1;
106
+ -webkit-box-align: end;
107
+ -ms-flex-align: end;
108
+ align-items: flex-end;
109
+ margin: 3px;
110
+ line-height: 10px;
111
+ display: -webkit-box;
112
+ display: -ms-flexbox;
113
+ display: flex;
114
+ -ms-flex-wrap: wrap;
115
+ flex-wrap: wrap;
116
+ }
117
+
118
+ .cal-month-view .cal-event {
119
+ width: 10px;
120
+ height: 10px;
121
+ border-radius: 50%;
122
+ display: inline-block;
123
+ margin: 2px;
124
+ }
125
+
126
+ .cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
127
+ cursor: pointer;
128
+ }
129
+
130
+ .cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
131
+ opacity: 0.1;
132
+ cursor: default;
133
+ }
134
+
135
+ .cal-month-view .cal-day-cell.cal-today .cal-day-number {
136
+ font-size: 1.9em;
137
+ }
138
+
139
+ .cal-month-view .cal-open-day-events {
140
+ padding: 15px;
141
+ }
142
+
143
+ .cal-month-view .cal-open-day-events .cal-event {
144
+ position: relative;
145
+ top: 2px;
146
+ }
147
+
148
+ .cal-month-view .cal-out-month .cal-day-badge,
149
+ .cal-month-view .cal-out-month .cal-event {
150
+ opacity: 0.3;
151
+ }
152
+
153
+ .cal-month-view .cal-draggable {
154
+ cursor: move;
155
+ }
156
+
157
+ .cal-month-view .cal-drag-active * {
158
+ pointer-events: none;
159
+ }
160
+
161
+ .cal-month-view .cal-event-title {
162
+ cursor: pointer;
163
+ }
164
+
165
+ .cal-month-view .cal-event-title:hover {
166
+ text-decoration: underline;
167
+ }
168
+
169
+ .cal-month-view {
170
+ background-color: #fff;
171
+ }
172
+
173
+ .cal-month-view .cal-cell-row:hover {
174
+ background-color: #fafafa;
175
+ }
176
+
177
+ .cal-month-view .cal-cell-row .cal-cell:hover,
178
+ .cal-month-view .cal-cell.cal-has-events.cal-open {
179
+ background-color: #ededed;
180
+ }
181
+
182
+ .cal-month-view .cal-days {
183
+ border-color: #e1e1e1;
184
+ }
185
+
186
+ .cal-month-view .cal-day-cell:not(:last-child) {
187
+ border-right-color: #e1e1e1;
188
+ }
189
+
190
+ [dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
191
+ border-right-color: initial;
192
+ border-left-color: #e1e1e1;
193
+ }
194
+
195
+ .cal-month-view .cal-days .cal-cell-row {
196
+ border-bottom-color: #e1e1e1;
197
+ }
198
+
199
+ .cal-month-view .cal-day-badge {
200
+ background-color: #b94a48;
201
+ color: #fff;
202
+ }
203
+
204
+ .cal-month-view .cal-event {
205
+ background-color: #1e90ff;
206
+ border-color: #d1e8ff;
207
+ color: #fff;
208
+ }
209
+
210
+ .cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
211
+ color: #8b0000;
212
+ }
213
+
214
+ .cal-month-view .cal-day-cell.cal-today {
215
+ background-color: #e8fde7;
216
+ }
217
+
218
+ .cal-month-view .cal-day-cell.cal-drag-over {
219
+ background-color: #e0e0e0 !important;
220
+ }
221
+
222
+ .cal-month-view .cal-open-day-events {
223
+ color: #fff;
224
+ background-color: #555;
225
+ -webkit-box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
226
+ box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
227
+ }
228
+
229
+ .cal-week-view {
230
+ /* stylelint-disable-next-line selector-type-no-unknown */
231
+ }
232
+
233
+ .cal-week-view * {
234
+ -webkit-box-sizing: border-box;
235
+ box-sizing: border-box;
236
+ }
237
+
238
+ .cal-week-view .cal-day-headers {
239
+ display: -webkit-box;
240
+ display: -ms-flexbox;
241
+ display: flex;
242
+ padding-left: 70px;
243
+ border: 1px solid;
244
+ }
245
+
246
+ [dir=rtl] .cal-week-view .cal-day-headers {
247
+ padding-left: initial;
248
+ padding-right: 70px;
249
+ }
250
+
251
+ .cal-week-view .cal-day-headers .cal-header {
252
+ -webkit-box-flex: 1;
253
+ -ms-flex: 1;
254
+ flex: 1;
255
+ text-align: center;
256
+ padding: 5px;
257
+ }
258
+
259
+ .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
260
+ border-right: 1px solid;
261
+ }
262
+
263
+ [dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
264
+ border-right: initial;
265
+ border-left: 1px solid;
266
+ }
267
+
268
+ .cal-week-view .cal-day-headers .cal-header:first-child {
269
+ border-left: 1px solid;
270
+ }
271
+
272
+ [dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
273
+ border-left: initial;
274
+ border-right: 1px solid;
275
+ }
276
+
277
+ .cal-week-view .cal-day-headers span {
278
+ font-weight: 400;
279
+ opacity: 0.5;
280
+ }
281
+
282
+ .cal-week-view .cal-day-column {
283
+ -webkit-box-flex: 1;
284
+ -ms-flex-positive: 1;
285
+ flex-grow: 1;
286
+ border-left: solid 1px;
287
+ }
288
+
289
+ [dir=rtl] .cal-week-view .cal-day-column {
290
+ border-left: initial;
291
+ border-right: solid 1px;
292
+ }
293
+
294
+ .cal-week-view .cal-event {
295
+ font-size: 12px;
296
+ border: 1px solid;
297
+ direction: ltr;
298
+ }
299
+
300
+ .cal-week-view .cal-time-label-column {
301
+ width: 70px;
302
+ height: 100%;
303
+ }
304
+
305
+ .cal-week-view .cal-current-time-marker {
306
+ position: absolute;
307
+ width: 100%;
308
+ height: 2px;
309
+ z-index: 2;
310
+ }
311
+
312
+ .cal-week-view .cal-all-day-events {
313
+ border: solid 1px;
314
+ border-top: 0;
315
+ border-bottom-width: 3px;
316
+ padding-top: 3px;
317
+ position: relative;
318
+ }
319
+
320
+ .cal-week-view .cal-all-day-events .cal-day-columns {
321
+ height: 100%;
322
+ width: 100%;
323
+ display: -webkit-box;
324
+ display: -ms-flexbox;
325
+ display: flex;
326
+ position: absolute;
327
+ top: 0;
328
+ z-index: 0;
329
+ }
330
+
331
+ .cal-week-view .cal-all-day-events .cal-events-row {
332
+ position: relative;
333
+ height: 31px;
334
+ margin-left: 70px;
335
+ }
336
+
337
+ [dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
338
+ margin-left: initial;
339
+ margin-right: 70px;
340
+ }
341
+
342
+ .cal-week-view .cal-all-day-events .cal-event-container {
343
+ display: inline-block;
344
+ position: absolute;
345
+ }
346
+
347
+ .cal-week-view .cal-all-day-events .cal-event-container.resize-active {
348
+ z-index: 1;
349
+ pointer-events: none;
350
+ }
351
+
352
+ .cal-week-view .cal-all-day-events .cal-event {
353
+ padding: 0 5px;
354
+ margin-left: 2px;
355
+ margin-right: 2px;
356
+ height: 28px;
357
+ line-height: 28px;
358
+ }
359
+
360
+ .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
361
+ border-top-left-radius: 5px;
362
+ border-bottom-left-radius: 5px;
363
+ }
364
+
365
+ [dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
366
+ border-top-left-radius: initial;
367
+ border-bottom-left-radius: initial;
368
+ border-top-right-radius: 5px !important;
369
+ border-bottom-right-radius: 5px !important;
370
+ }
371
+
372
+ .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
373
+ border-top-right-radius: 5px;
374
+ border-bottom-right-radius: 5px;
375
+ }
376
+
377
+ [dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
378
+ border-top-right-radius: initial;
379
+ border-bottom-right-radius: initial;
380
+ border-top-left-radius: 5px;
381
+ border-bottom-left-radius: 5px;
382
+ }
383
+
384
+ .cal-week-view .cal-all-day-events .cal-time-label-column {
385
+ display: -webkit-box;
386
+ display: -ms-flexbox;
387
+ display: flex;
388
+ -webkit-box-align: center;
389
+ -ms-flex-align: center;
390
+ align-items: center;
391
+ -webkit-box-pack: center;
392
+ -ms-flex-pack: center;
393
+ justify-content: center;
394
+ font-size: 14px;
395
+ }
396
+
397
+ .cal-week-view .cal-all-day-events .cal-resize-handle {
398
+ width: 6px;
399
+ height: 100%;
400
+ cursor: col-resize;
401
+ position: absolute;
402
+ top: 0;
403
+ }
404
+
405
+ .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
406
+ right: 0;
407
+ }
408
+
409
+ [dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
410
+ right: initial;
411
+ left: 0;
412
+ }
413
+
414
+ .cal-week-view .cal-event,
415
+ .cal-week-view .cal-header {
416
+ overflow: hidden;
417
+ -o-text-overflow: ellipsis;
418
+ text-overflow: ellipsis;
419
+ white-space: nowrap;
420
+ }
421
+
422
+ .cal-week-view .cal-drag-active {
423
+ pointer-events: none;
424
+ z-index: 1;
425
+ }
426
+
427
+ .cal-week-view .cal-drag-active * {
428
+ pointer-events: none;
429
+ }
430
+
431
+ .cal-week-view .cal-time-events {
432
+ position: relative;
433
+ border: solid 1px;
434
+ border-top: 0;
435
+ display: -webkit-box;
436
+ display: -ms-flexbox;
437
+ display: flex;
438
+ }
439
+
440
+ .cal-week-view .cal-time-events .cal-day-columns {
441
+ display: -webkit-box;
442
+ display: -ms-flexbox;
443
+ display: flex;
444
+ -webkit-box-flex: 1;
445
+ -ms-flex-positive: 1;
446
+ flex-grow: 1;
447
+ }
448
+
449
+ .cal-week-view .cal-time-events .cal-day-column {
450
+ position: relative;
451
+ }
452
+
453
+ .cal-week-view .cal-time-events .cal-events-container {
454
+ position: relative;
455
+ }
456
+
457
+ .cal-week-view .cal-time-events .cal-event-container {
458
+ position: absolute;
459
+ z-index: 1;
460
+ }
461
+
462
+ .cal-week-view .cal-time-events .cal-event {
463
+ width: calc(100% - 2px);
464
+ height: calc(100% - 2px);
465
+ margin: 1px;
466
+ padding: 0 5px;
467
+ line-height: 25px;
468
+ }
469
+
470
+ .cal-week-view .cal-time-events .cal-resize-handle {
471
+ width: 100%;
472
+ height: 4px;
473
+ cursor: row-resize;
474
+ position: absolute;
475
+ }
476
+
477
+ .cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
478
+ bottom: 0;
479
+ }
480
+
481
+ .cal-week-view .cal-hour-segment {
482
+ position: relative;
483
+ }
484
+
485
+ .cal-week-view .cal-hour-segment::after {
486
+ content: " ";
487
+ }
488
+
489
+ .cal-week-view .cal-event-container:not(.cal-draggable) {
490
+ cursor: pointer;
491
+ }
492
+
493
+ .cal-week-view .cal-draggable {
494
+ cursor: move;
495
+ }
496
+
497
+ .cal-week-view mwl-calendar-week-view-hour-segment,
498
+ .cal-week-view .cal-hour-segment {
499
+ display: block;
500
+ }
501
+
502
+ .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
503
+ .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
504
+ border-bottom: thin dashed;
505
+ }
506
+
507
+ .cal-week-view .cal-time {
508
+ font-weight: bold;
509
+ padding-top: 5px;
510
+ width: 70px;
511
+ text-align: center;
512
+ }
513
+
514
+ .cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
515
+ display: none;
516
+ }
517
+
518
+ .cal-week-view .cal-starts-within-day .cal-event {
519
+ border-top-left-radius: 5px;
520
+ border-top-right-radius: 5px;
521
+ }
522
+
523
+ .cal-week-view .cal-ends-within-day .cal-event {
524
+ border-bottom-left-radius: 5px;
525
+ border-bottom-right-radius: 5px;
526
+ }
527
+
528
+ .cal-week-view {
529
+ background-color: #fff;
530
+ border-top: solid 1px #e1e1e1;
531
+ }
532
+
533
+ .cal-week-view .cal-day-headers {
534
+ border-color: #e1e1e1;
535
+ border-top: 0;
536
+ }
537
+
538
+ .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
539
+ border-right-color: #e1e1e1;
540
+ }
541
+
542
+ [dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
543
+ border-right-color: initial;
544
+ border-left: solid 1px #e1e1e1 !important;
545
+ }
546
+
547
+ .cal-week-view .cal-day-headers .cal-header:first-child {
548
+ border-left-color: #e1e1e1;
549
+ }
550
+
551
+ [dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
552
+ border-left-color: initial;
553
+ border-right-color: #e1e1e1;
554
+ }
555
+
556
+ .cal-week-view .cal-day-headers .cal-header:hover,
557
+ .cal-week-view .cal-day-headers .cal-drag-over {
558
+ background-color: #ededed;
559
+ }
560
+
561
+ .cal-week-view .cal-day-column {
562
+ border-left-color: #e1e1e1;
563
+ }
564
+
565
+ [dir=rtl] .cal-week-view .cal-day-column {
566
+ border-left-color: initial;
567
+ border-right-color: #e1e1e1;
568
+ }
569
+
570
+ .cal-week-view .cal-event {
571
+ background-color: #d1e8ff;
572
+ border-color: #1e90ff;
573
+ color: #1e90ff;
574
+ }
575
+
576
+ .cal-week-view .cal-all-day-events {
577
+ border-color: #e1e1e1;
578
+ }
579
+
580
+ .cal-week-view .cal-header.cal-today {
581
+ background-color: #e8fde7;
582
+ }
583
+
584
+ .cal-week-view .cal-header.cal-weekend span {
585
+ color: #8b0000;
586
+ }
587
+
588
+ .cal-week-view .cal-time-events {
589
+ border-color: #e1e1e1;
590
+ }
591
+
592
+ .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
593
+ background-color: #ededed;
594
+ }
595
+
596
+ .cal-week-view .cal-hour-odd {
597
+ background-color: #fafafa;
598
+ }
599
+
600
+ .cal-week-view .cal-drag-over .cal-hour-segment {
601
+ background-color: #ededed;
602
+ }
603
+
604
+ .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
605
+ .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
606
+ border-bottom-color: #e1e1e1;
607
+ }
608
+
609
+ .cal-week-view .cal-current-time-marker {
610
+ background-color: #ea4334;
611
+ }
612
+
613
+ .cal-day-view {
614
+ /* stylelint-disable-next-line selector-type-no-unknown */
615
+ }
616
+
617
+ .cal-day-view mwl-calendar-week-view-header {
618
+ display: none;
619
+ }
620
+
621
+ .cal-day-view .cal-events-container {
622
+ margin-left: 70px;
623
+ }
624
+
625
+ [dir=rtl] .cal-day-view .cal-events-container {
626
+ margin-left: initial;
627
+ margin-right: 70px;
628
+ }
629
+
630
+ .cal-day-view .cal-day-column {
631
+ border-left: 0;
632
+ }
633
+
634
+ .cal-day-view .cal-current-time-marker {
635
+ margin-left: 70px;
636
+ width: calc(100% - 70px);
637
+ }
638
+
639
+ [dir=rtl] .cal-day-view .cal-current-time-marker {
640
+ margin-left: initial;
641
+ margin-right: 70px;
642
+ }
643
+
644
+ .cal-tooltip {
645
+ position: absolute;
646
+ z-index: 1070;
647
+ display: block;
648
+ font-style: normal;
649
+ font-weight: normal;
650
+ letter-spacing: normal;
651
+ line-break: auto;
652
+ line-height: 1.5;
653
+ text-align: start;
654
+ text-decoration: none;
655
+ text-shadow: none;
656
+ text-transform: none;
657
+ white-space: normal;
658
+ word-break: normal;
659
+ word-spacing: normal;
660
+ font-size: 11px;
661
+ word-wrap: break-word;
662
+ opacity: 0.9;
663
+ }
664
+
665
+ .cal-tooltip.cal-tooltip-top {
666
+ padding: 5px 0;
667
+ margin-top: -3px;
668
+ }
669
+
670
+ .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
671
+ bottom: 0;
672
+ left: 50%;
673
+ margin-left: -5px;
674
+ border-width: 5px 5px 0;
675
+ }
676
+
677
+ .cal-tooltip.cal-tooltip-right {
678
+ padding: 0 5px;
679
+ margin-left: 3px;
680
+ }
681
+
682
+ .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
683
+ top: 50%;
684
+ left: 0;
685
+ margin-top: -5px;
686
+ border-width: 5px 5px 5px 0;
687
+ }
688
+
689
+ .cal-tooltip.cal-tooltip-bottom {
690
+ padding: 5px 0;
691
+ margin-top: 3px;
692
+ }
693
+
694
+ .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
695
+ top: 0;
696
+ left: 50%;
697
+ margin-left: -5px;
698
+ border-width: 0 5px 5px;
699
+ }
700
+
701
+ .cal-tooltip.cal-tooltip-left {
702
+ padding: 0 5px;
703
+ margin-left: -3px;
704
+ }
705
+
706
+ .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
707
+ top: 50%;
708
+ right: 0;
709
+ margin-top: -5px;
710
+ border-width: 5px 0 5px 5px;
711
+ }
712
+
713
+ .cal-tooltip-inner {
714
+ max-width: 200px;
715
+ padding: 3px 8px;
716
+ text-align: center;
717
+ border-radius: 0.25rem;
718
+ }
719
+
720
+ .cal-tooltip-arrow {
721
+ position: absolute;
722
+ width: 0;
723
+ height: 0;
724
+ border-color: transparent;
725
+ border-style: solid;
726
+ }
727
+
728
+ .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
729
+ border-top-color: #000;
730
+ }
731
+
732
+ .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
733
+ border-right-color: #000;
734
+ }
735
+
736
+ .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
737
+ border-bottom-color: #000;
738
+ }
739
+
740
+ .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
741
+ border-left-color: #000;
742
+ }
743
+
744
+ .cal-tooltip-inner {
745
+ color: #fff;
746
+ background-color: #000;
747
+ }
748
+ /*
749
+ * Angular calendar styles END
750
+ */
751
+
752
+ .bizy-calendar--hide-header-date .cal-week-view .cal-header.cal-weekend span {
753
+ display: none !important;
754
+ }
755
+
756
+ .bizy-calendar--hide-header-date .cal-week-view .cal-day-headers span {
757
+ display: none !important;
758
+ }
759
+
760
+ .bizy-calendar-event .cal-event {
761
+ font-weight: bold;
762
+ color: var(--bizy-calendar-event-color);
763
+ }
764
+
765
+ .bizy-calendar-event .cal-event-action {
766
+ position: absolute;
767
+ top: 0;
768
+ }
769
+
770
+ .bizy-calendar-event .cal-event-actions {
771
+ margin-right: 1.2rem;
772
+ }
773
+
774
+ .bizy-calendar-event .cal-event-actions:empty {
775
+ margin-right: 0;
776
+ }
777
+
778
+ .bizy-calendar-event-delete-action__icon {
779
+ position: relative;
780
+ top: 0.4rem;
781
+ width: var(--bizy-calendar-event-delete-action-width);
782
+ height: var(--bizy-calendar-event-delete-action-height);
783
+ }
784
+
785
+ .bizy-calendar-event-delete-action__icon:hover .bizy-calendar-event-delete-action__icon__trash-lid,
786
+ .bizy-calendar-event-delete-action__icon:hover .bizy-calendar-event-delete-action__icon__trash-container {
787
+ background-color: var(--bizy-calendar-event-delete-action-hover-color);
788
+ }
789
+
790
+
791
+ .bizy-calendar-event-delete-action__icon__trash-lid {
792
+ position: absolute;
793
+ width: 0.65rem;
794
+ height: 0.1rem;
795
+ left: 0.18rem;
796
+ top: 0.07rem;
797
+ background-color: var(--bizy-calendar-event-delete-action-color);
798
+ border-top-left-radius: 80%;
799
+ border-top-right-radius: 80%;
800
+ }
801
+
802
+ .bizy-calendar-event-delete-action__icon__trash-lid::after {
803
+ content: "";
804
+ width: 0.26rem;
805
+ height: 100%;
806
+ position: absolute;
807
+ left: 0.2rem;
808
+ margin-top: -0.05rem;
809
+ background-color: inherit;
810
+ border-top-left-radius: 30%;
811
+ border-top-right-radius: 30%;
812
+ }
813
+
814
+
815
+ .bizy-calendar-event-delete-action__icon__trash-container {
816
+ width: 0.58rem;
817
+ height: 0.65rem;
818
+ position: absolute;
819
+ left: 0.22rem;
820
+ bottom: 0.1rem;
821
+ background-color: var(--bizy-calendar-event-delete-action-color);
822
+ border-bottom-left-radius: 15%;
823
+ border-bottom-right-radius: 15%;
824
+ }
825
+
826
+ .bizy-calendar-event-delete-action__icon__trash-line-1 {
827
+ width: 0.05rem;
828
+ height: 0.5rem;
829
+ position: absolute;
830
+ left: 0.33rem;
831
+ bottom: 0.17rem;
832
+ background-color: var(--bizy-calendar-event-delete-action-line-color);
833
+ }
834
+
835
+ .bizy-calendar-event-delete-action__icon__trash-line-2 {
836
+ width: 0.05rem;
837
+ height: 0.5rem;
838
+ position: absolute;
839
+ left: 0.46rem;
840
+ bottom: 0.17rem;
841
+ background-color: var(--bizy-calendar-event-delete-action-line-color);
842
+ }
843
+
844
+ .bizy-calendar-event-delete-action__icon__trash-line-3 {
845
+ width: 0.05rem;
846
+ height: 0.5rem;
847
+ position: absolute;
848
+ left: 0.62rem;
849
+ bottom: 0.17rem;
850
+ background-color: var(--bizy-calendar-event-delete-action-line-color);
851
+ }