next-helios-fe 1.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.
- package/@types/index.d.ts +2 -0
- package/dist/components/button/index.d.ts +15 -0
- package/dist/components/calendar/big-calendar/event.d.ts +7 -0
- package/dist/components/calendar/big-calendar/index.d.ts +14 -0
- package/dist/components/calendar/big-calendar/toolbar.d.ts +8 -0
- package/dist/components/calendar/calendar/index.d.ts +11 -0
- package/dist/components/chart/index.d.ts +17 -0
- package/dist/components/chip/index.d.ts +12 -0
- package/dist/components/content-container/accordion/index.d.ts +10 -0
- package/dist/components/content-container/accordion/item.d.ts +6 -0
- package/dist/components/content-container/card.d.ts +10 -0
- package/dist/components/content-container/carousel.d.ts +10 -0
- package/dist/components/content-container/drawer.d.ts +8 -0
- package/dist/components/content-container/modal/index.d.ts +21 -0
- package/dist/components/content-container/sortable/index.d.ts +14 -0
- package/dist/components/content-container/sortable/item.d.ts +8 -0
- package/dist/components/content-container/sortable/knob.d.ts +5 -0
- package/dist/components/content-container/tab/index.d.ts +17 -0
- package/dist/components/content-container/tab/window.d.ts +5 -0
- package/dist/components/data-tree/index.d.ts +6 -0
- package/dist/components/dialog/index.d.ts +16 -0
- package/dist/components/dropdown/header.d.ts +5 -0
- package/dist/components/dropdown/index.d.ts +15 -0
- package/dist/components/dropdown/item.d.ts +7 -0
- package/dist/components/form/index.d.ts +44 -0
- package/dist/components/form/input/checkbox.d.ts +9 -0
- package/dist/components/form/input/color.d.ts +10 -0
- package/dist/components/form/input/email.d.ts +9 -0
- package/dist/components/form/input/file.d.ts +14 -0
- package/dist/components/form/input/number.d.ts +9 -0
- package/dist/components/form/input/password.d.ts +9 -0
- package/dist/components/form/input/radio.d.ts +9 -0
- package/dist/components/form/input/range.d.ts +9 -0
- package/dist/components/form/input/search.d.ts +8 -0
- package/dist/components/form/input/text.d.ts +9 -0
- package/dist/components/form/input/time.d.ts +9 -0
- package/dist/components/form/other/autocomplete.d.ts +15 -0
- package/dist/components/form/other/multipleSelect.d.ts +23 -0
- package/dist/components/form/other/phoneNumber.d.ts +10 -0
- package/dist/components/form/other/pin.d.ts +10 -0
- package/dist/components/form/other/secret.d.ts +11 -0
- package/dist/components/form/other/select.d.ts +15 -0
- package/dist/components/form/other/textarea.d.ts +9 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/map/index.d.ts +13 -0
- package/dist/components/map/marker.d.ts +8 -0
- package/dist/components/syntax-highlighter/index.d.ts +9 -0
- package/dist/components/table/action.d.ts +5 -0
- package/dist/components/table/index.d.ts +24 -0
- package/dist/components/timeline/index.d.ts +10 -0
- package/dist/components/timeline/item.d.ts +7 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.js.LICENSE.txt +62 -0
- package/package.json +72 -0
- package/src/components/button/index.tsx +74 -0
- package/src/components/calendar/big-calendar/event.tsx +46 -0
- package/src/components/calendar/big-calendar/index.tsx +102 -0
- package/src/components/calendar/big-calendar/toolbar.tsx +98 -0
- package/src/components/calendar/calendar/index.tsx +26 -0
- package/src/components/chart/index.tsx +121 -0
- package/src/components/chip/index.tsx +47 -0
- package/src/components/content-container/accordion/index.tsx +28 -0
- package/src/components/content-container/accordion/item.tsx +40 -0
- package/src/components/content-container/card.tsx +21 -0
- package/src/components/content-container/carousel.tsx +35 -0
- package/src/components/content-container/drawer.tsx +78 -0
- package/src/components/content-container/modal/index.tsx +127 -0
- package/src/components/content-container/sortable/index.tsx +47 -0
- package/src/components/content-container/sortable/item.tsx +20 -0
- package/src/components/content-container/sortable/knob.tsx +11 -0
- package/src/components/content-container/tab/index.tsx +94 -0
- package/src/components/content-container/tab/window.tsx +10 -0
- package/src/components/data-tree/index.tsx +60 -0
- package/src/components/dialog/index.tsx +88 -0
- package/src/components/dropdown/header.tsx +11 -0
- package/src/components/dropdown/index.tsx +69 -0
- package/src/components/dropdown/item.tsx +22 -0
- package/src/components/form/index.tsx +81 -0
- package/src/components/form/input/checkbox.tsx +49 -0
- package/src/components/form/input/color.tsx +104 -0
- package/src/components/form/input/email.tsx +40 -0
- package/src/components/form/input/file.tsx +189 -0
- package/src/components/form/input/number.tsx +93 -0
- package/src/components/form/input/password.tsx +57 -0
- package/src/components/form/input/radio.tsx +49 -0
- package/src/components/form/input/range.tsx +67 -0
- package/src/components/form/input/search.tsx +50 -0
- package/src/components/form/input/text.tsx +39 -0
- package/src/components/form/input/time.tsx +315 -0
- package/src/components/form/other/autocomplete.tsx +199 -0
- package/src/components/form/other/multipleSelect.tsx +211 -0
- package/src/components/form/other/phoneNumber.tsx +1668 -0
- package/src/components/form/other/pin.tsx +56 -0
- package/src/components/form/other/secret.tsx +74 -0
- package/src/components/form/other/select.tsx +187 -0
- package/src/components/form/other/textarea.tsx +44 -0
- package/src/components/index.ts +29 -0
- package/src/components/map/index.tsx +72 -0
- package/src/components/map/marker.tsx +40 -0
- package/src/components/syntax-highlighter/index.tsx +45 -0
- package/src/components/table/action.tsx +22 -0
- package/src/components/table/index.tsx +431 -0
- package/src/components/timeline/index.tsx +28 -0
- package/src/components/timeline/item.tsx +25 -0
- package/src/index.css +1 -0
- package/src/index.ts +3 -0
- package/src/styles/big-calendar.scss +810 -0
- package/src/styles/calendar.scss +195 -0
- package/src/styles/index.css +2 -0
- package/tsconfig.json +17 -0
- package/webpack.config.js +35 -0
|
@@ -0,0 +1,810 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
.rbc-btn {
|
|
4
|
+
color: inherit;
|
|
5
|
+
font: inherit;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
button.rbc-btn {
|
|
10
|
+
overflow: visible;
|
|
11
|
+
text-transform: none;
|
|
12
|
+
-webkit-appearance: button;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
button[disabled].rbc-btn {
|
|
17
|
+
cursor: not-allowed;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
button.rbc-input::-moz-focus-inner {
|
|
21
|
+
border: 0;
|
|
22
|
+
padding: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rbc-calendar {
|
|
26
|
+
-webkit-box-sizing: border-box;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
height: 100%;
|
|
29
|
+
display: -webkit-box;
|
|
30
|
+
display: -ms-flexbox;
|
|
31
|
+
display: flex;
|
|
32
|
+
-webkit-box-orient: vertical;
|
|
33
|
+
-webkit-box-direction: normal;
|
|
34
|
+
-ms-flex-direction: column;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
-webkit-box-align: stretch;
|
|
37
|
+
-ms-flex-align: stretch;
|
|
38
|
+
align-items: stretch;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.rbc-calendar *,
|
|
42
|
+
.rbc-calendar *:before,
|
|
43
|
+
.rbc-calendar *:after {
|
|
44
|
+
-webkit-box-sizing: inherit;
|
|
45
|
+
box-sizing: inherit;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.rbc-abs-full, .rbc-row-bg {
|
|
49
|
+
overflow: hidden;
|
|
50
|
+
position: absolute;
|
|
51
|
+
top: 0;
|
|
52
|
+
left: 0;
|
|
53
|
+
right: 0;
|
|
54
|
+
bottom: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.rbc-ellipsis, .rbc-show-more, .rbc-row-segment .rbc-event-content, .rbc-event-label {
|
|
58
|
+
display: block;
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
text-overflow: ellipsis;
|
|
61
|
+
white-space: nowrap;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.rbc-rtl {
|
|
65
|
+
direction: rtl;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.rbc-off-range {
|
|
69
|
+
color: var(--color-secondary-dark);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.rbc-off-range-bg {
|
|
73
|
+
background: var(--color-secondary-light);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.rbc-header {
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
-webkit-box-flex: 1;
|
|
79
|
+
-ms-flex: 1 0 0%;
|
|
80
|
+
flex: 1 0 0%;
|
|
81
|
+
text-overflow: ellipsis;
|
|
82
|
+
white-space: nowrap;
|
|
83
|
+
padding: 0 3px;
|
|
84
|
+
text-align: center;
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
font-size: 90%;
|
|
87
|
+
min-height: 0;
|
|
88
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
89
|
+
padding: 10px 0;
|
|
90
|
+
}
|
|
91
|
+
.rbc-rtl .rbc-header + .rbc-header {
|
|
92
|
+
border-left-width: 0;
|
|
93
|
+
border-right: 1px solid var(--border-color-default);
|
|
94
|
+
}
|
|
95
|
+
.rbc-header > a, .rbc-header > a:active, .rbc-header > a:visited {
|
|
96
|
+
color: inherit;
|
|
97
|
+
text-decoration: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.rbc-button-link {
|
|
101
|
+
color: inherit;
|
|
102
|
+
background: none;
|
|
103
|
+
margin: 0;
|
|
104
|
+
padding: 0;
|
|
105
|
+
border: none;
|
|
106
|
+
cursor: pointer;
|
|
107
|
+
-webkit-user-select: text;
|
|
108
|
+
-moz-user-select: text;
|
|
109
|
+
-ms-user-select: text;
|
|
110
|
+
user-select: text;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.rbc-row-content {
|
|
114
|
+
position: relative;
|
|
115
|
+
-moz-user-select: none;
|
|
116
|
+
-ms-user-select: none;
|
|
117
|
+
user-select: none;
|
|
118
|
+
-webkit-user-select: none;
|
|
119
|
+
z-index: 4;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.rbc-row-content-scrollable {
|
|
123
|
+
display: -webkit-box;
|
|
124
|
+
display: -ms-flexbox;
|
|
125
|
+
display: flex;
|
|
126
|
+
-webkit-box-orient: vertical;
|
|
127
|
+
-webkit-box-direction: normal;
|
|
128
|
+
-ms-flex-direction: column;
|
|
129
|
+
flex-direction: column;
|
|
130
|
+
height: 100%;
|
|
131
|
+
}
|
|
132
|
+
.rbc-row-content-scrollable .rbc-row-content-scroll-container {
|
|
133
|
+
height: 100%;
|
|
134
|
+
overflow-y: scroll;
|
|
135
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
136
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
137
|
+
scrollbar-width: none; /* Firefox */
|
|
138
|
+
}
|
|
139
|
+
.rbc-row-content-scrollable .rbc-row-content-scroll-container::-webkit-scrollbar {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.rbc-today {
|
|
144
|
+
background-color: var(--color-primary-transparent);
|
|
145
|
+
color: var(--color-primary);
|
|
146
|
+
font-weight: bold;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.rbc-toolbar {
|
|
150
|
+
display: -webkit-box;
|
|
151
|
+
display: -ms-flexbox;
|
|
152
|
+
display: flex;
|
|
153
|
+
-ms-flex-wrap: wrap;
|
|
154
|
+
flex-wrap: wrap;
|
|
155
|
+
-webkit-box-pack: center;
|
|
156
|
+
-ms-flex-pack: center;
|
|
157
|
+
justify-content: center;
|
|
158
|
+
-webkit-box-align: center;
|
|
159
|
+
-ms-flex-align: center;
|
|
160
|
+
align-items: center;
|
|
161
|
+
margin-bottom: 10px;
|
|
162
|
+
font-size: 16px;
|
|
163
|
+
gap: 16px;
|
|
164
|
+
}
|
|
165
|
+
.rbc-toolbar .rbc-toolbar-label {
|
|
166
|
+
-webkit-box-flex: 1;
|
|
167
|
+
-ms-flex-positive: 1;
|
|
168
|
+
flex-grow: 1;
|
|
169
|
+
padding: 0 10px;
|
|
170
|
+
font-size: 24px;
|
|
171
|
+
}
|
|
172
|
+
.rbc-toolbar button {
|
|
173
|
+
color: var(--color-secondary-dark);
|
|
174
|
+
display: inline-block;
|
|
175
|
+
margin: 0;
|
|
176
|
+
text-align: center;
|
|
177
|
+
vertical-align: middle;
|
|
178
|
+
background: none;
|
|
179
|
+
background-image: none;
|
|
180
|
+
border: 1px solid var(--border-color-default);
|
|
181
|
+
padding: 0.375rem 1rem;
|
|
182
|
+
border-radius: 4px;
|
|
183
|
+
line-height: normal;
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
}
|
|
186
|
+
.rbc-toolbar button:active, .rbc-toolbar button.rbc-active {
|
|
187
|
+
background-image: none;
|
|
188
|
+
background-color: var(--color-primary-transparent);
|
|
189
|
+
border-color: var(--border-color-default);
|
|
190
|
+
color: var(--color-primary);
|
|
191
|
+
}
|
|
192
|
+
.rbc-toolbar button:active:hover, .rbc-toolbar button:active:focus, .rbc-toolbar button.rbc-active:hover, .rbc-toolbar button.rbc-active:focus {
|
|
193
|
+
color: var(--color-primary);
|
|
194
|
+
background-color: var(--color-primary-transparent);
|
|
195
|
+
}
|
|
196
|
+
.rbc-toolbar button:focus {
|
|
197
|
+
color: var(--color-primary);
|
|
198
|
+
background-color: var(--color-primary-transparent);
|
|
199
|
+
border-color: var(--border-color-default);
|
|
200
|
+
}
|
|
201
|
+
.rbc-toolbar button:hover {
|
|
202
|
+
color: var(--color-primary);
|
|
203
|
+
background-color: var(--color-primary-transparent);
|
|
204
|
+
border-color: var(--border-color-default);
|
|
205
|
+
cursor: pointer;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.rbc-btn-group {
|
|
209
|
+
display: inline-block;
|
|
210
|
+
white-space: nowrap;
|
|
211
|
+
}
|
|
212
|
+
.rbc-btn-group > button:first-child:not(:last-child) {
|
|
213
|
+
border-top-right-radius: 0;
|
|
214
|
+
border-bottom-right-radius: 0;
|
|
215
|
+
}
|
|
216
|
+
.rbc-btn-group > button:last-child:not(:first-child) {
|
|
217
|
+
border-top-left-radius: 0;
|
|
218
|
+
border-bottom-left-radius: 0;
|
|
219
|
+
}
|
|
220
|
+
.rbc-rtl .rbc-btn-group > button:first-child:not(:last-child) {
|
|
221
|
+
border-radius: 4px;
|
|
222
|
+
border-top-left-radius: 0;
|
|
223
|
+
border-bottom-left-radius: 0;
|
|
224
|
+
}
|
|
225
|
+
.rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
|
|
226
|
+
border-radius: 4px;
|
|
227
|
+
border-top-right-radius: 0;
|
|
228
|
+
border-bottom-right-radius: 0;
|
|
229
|
+
}
|
|
230
|
+
.rbc-btn-group > button:not(:first-child):not(:last-child) {
|
|
231
|
+
border-radius: 0;
|
|
232
|
+
}
|
|
233
|
+
.rbc-btn-group button + button {
|
|
234
|
+
margin-left: -1px;
|
|
235
|
+
}
|
|
236
|
+
.rbc-rtl .rbc-btn-group button + button {
|
|
237
|
+
margin-left: 0;
|
|
238
|
+
margin-right: -1px;
|
|
239
|
+
}
|
|
240
|
+
.rbc-btn-group + .rbc-btn-group, .rbc-btn-group + button {
|
|
241
|
+
margin-left: 10px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.rbc-event, .rbc-day-slot .rbc-background-event {
|
|
245
|
+
border: none;
|
|
246
|
+
-webkit-box-sizing: border-box;
|
|
247
|
+
box-sizing: border-box;
|
|
248
|
+
-webkit-box-shadow: none;
|
|
249
|
+
box-shadow: none;
|
|
250
|
+
margin: 0;
|
|
251
|
+
padding: 2px 5px;
|
|
252
|
+
background-color: var(--color-primary);
|
|
253
|
+
border-radius: 5px;
|
|
254
|
+
color: #fff;
|
|
255
|
+
cursor: pointer;
|
|
256
|
+
width: 100%;
|
|
257
|
+
text-align: left;
|
|
258
|
+
font-size: 12px;
|
|
259
|
+
}
|
|
260
|
+
.rbc-slot-selecting .rbc-event, .rbc-slot-selecting .rbc-day-slot .rbc-background-event, .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
|
|
261
|
+
cursor: inherit;
|
|
262
|
+
pointer-events: none;
|
|
263
|
+
}
|
|
264
|
+
.rbc-event.rbc-selected, .rbc-day-slot .rbc-selected.rbc-background-event {
|
|
265
|
+
background-color: var(--color-primary-dark);
|
|
266
|
+
outline: 5px auto var(--color-primary-dark);
|
|
267
|
+
}
|
|
268
|
+
.rbc-event:hover, .rbc-day-slot .rbc-background-event:focus {
|
|
269
|
+
background-color: var(--color-primary-dark);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.rbc-event-label {
|
|
273
|
+
font-size: 80%;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.rbc-event-overlaps {
|
|
277
|
+
-webkit-box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
|
|
278
|
+
box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.rbc-event-continues-prior {
|
|
282
|
+
border-top-left-radius: 0;
|
|
283
|
+
border-bottom-left-radius: 0;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.rbc-event-continues-after {
|
|
287
|
+
border-top-right-radius: 0;
|
|
288
|
+
border-bottom-right-radius: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.rbc-event-continues-earlier {
|
|
292
|
+
border-top-left-radius: 0;
|
|
293
|
+
border-top-right-radius: 0;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.rbc-event-continues-later {
|
|
297
|
+
border-bottom-left-radius: 0;
|
|
298
|
+
border-bottom-right-radius: 0;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.rbc-row {
|
|
302
|
+
display: -webkit-box;
|
|
303
|
+
display: -ms-flexbox;
|
|
304
|
+
display: flex;
|
|
305
|
+
-webkit-box-orient: horizontal;
|
|
306
|
+
-webkit-box-direction: normal;
|
|
307
|
+
-ms-flex-direction: row;
|
|
308
|
+
flex-direction: row;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.rbc-row-segment {
|
|
312
|
+
padding: 0 1px 1px 1px;
|
|
313
|
+
}
|
|
314
|
+
.rbc-selected-cell {
|
|
315
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.rbc-show-more {
|
|
319
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
320
|
+
z-index: 4;
|
|
321
|
+
font-weight: bold;
|
|
322
|
+
font-size: 85%;
|
|
323
|
+
height: auto;
|
|
324
|
+
line-height: normal;
|
|
325
|
+
color: var(--color-primary-dark);
|
|
326
|
+
}
|
|
327
|
+
.rbc-show-more:hover, .rbc-show-more:focus {
|
|
328
|
+
color: var(--color-primary-dark);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.rbc-month-view {
|
|
332
|
+
position: relative;
|
|
333
|
+
display: -webkit-box;
|
|
334
|
+
display: -ms-flexbox;
|
|
335
|
+
display: flex;
|
|
336
|
+
-webkit-box-orient: vertical;
|
|
337
|
+
-webkit-box-direction: normal;
|
|
338
|
+
-ms-flex-direction: column;
|
|
339
|
+
flex-direction: column;
|
|
340
|
+
-webkit-box-flex: 1;
|
|
341
|
+
-ms-flex: 1 0 0px;
|
|
342
|
+
flex: 1 0 0;
|
|
343
|
+
width: 100%;
|
|
344
|
+
-moz-user-select: none;
|
|
345
|
+
-ms-user-select: none;
|
|
346
|
+
user-select: none;
|
|
347
|
+
-webkit-user-select: none;
|
|
348
|
+
height: 100%;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.rbc-month-header {
|
|
352
|
+
display: -webkit-box;
|
|
353
|
+
display: -ms-flexbox;
|
|
354
|
+
display: flex;
|
|
355
|
+
-webkit-box-orient: horizontal;
|
|
356
|
+
-webkit-box-direction: normal;
|
|
357
|
+
-ms-flex-direction: row;
|
|
358
|
+
flex-direction: row;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.rbc-month-row {
|
|
362
|
+
display: -webkit-box;
|
|
363
|
+
display: -ms-flexbox;
|
|
364
|
+
display: flex;
|
|
365
|
+
position: relative;
|
|
366
|
+
-webkit-box-orient: vertical;
|
|
367
|
+
-webkit-box-direction: normal;
|
|
368
|
+
-ms-flex-direction: column;
|
|
369
|
+
flex-direction: column;
|
|
370
|
+
-webkit-box-flex: 1;
|
|
371
|
+
-ms-flex: 1 0 0px;
|
|
372
|
+
flex: 1 0 0;
|
|
373
|
+
-ms-flex-preferred-size: 0px;
|
|
374
|
+
flex-basis: 0px;
|
|
375
|
+
overflow: hidden;
|
|
376
|
+
height: 100%;
|
|
377
|
+
}
|
|
378
|
+
.rbc-month-row + .rbc-month-row {
|
|
379
|
+
border-top: 1px solid var(--border-color-default);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.rbc-date-cell {
|
|
383
|
+
-webkit-box-flex: 1;
|
|
384
|
+
-ms-flex: 1 1 0px;
|
|
385
|
+
flex: 1 1 0;
|
|
386
|
+
min-width: 0;
|
|
387
|
+
padding-right: 5px;
|
|
388
|
+
text-align: right;
|
|
389
|
+
}
|
|
390
|
+
.rbc-date-cell.rbc-now {
|
|
391
|
+
font-weight: bold;
|
|
392
|
+
color: var(--color-primary);
|
|
393
|
+
}
|
|
394
|
+
.rbc-date-cell > a, .rbc-date-cell > a:active, .rbc-date-cell > a:visited {
|
|
395
|
+
color: inherit;
|
|
396
|
+
text-decoration: none;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.rbc-row-bg {
|
|
400
|
+
display: -webkit-box;
|
|
401
|
+
display: -ms-flexbox;
|
|
402
|
+
display: flex;
|
|
403
|
+
-webkit-box-orient: horizontal;
|
|
404
|
+
-webkit-box-direction: normal;
|
|
405
|
+
-ms-flex-direction: row;
|
|
406
|
+
flex-direction: row;
|
|
407
|
+
-webkit-box-flex: 1;
|
|
408
|
+
-ms-flex: 1 0 0px;
|
|
409
|
+
flex: 1 0 0;
|
|
410
|
+
overflow: hidden;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.rbc-day-bg {
|
|
414
|
+
-webkit-box-flex: 1;
|
|
415
|
+
-ms-flex: 1 0 0%;
|
|
416
|
+
flex: 1 0 0%;
|
|
417
|
+
}
|
|
418
|
+
.rbc-day-bg + .rbc-day-bg {
|
|
419
|
+
border-left: 1px solid var(--border-color-default);
|
|
420
|
+
}
|
|
421
|
+
.rbc-rtl .rbc-day-bg + .rbc-day-bg {
|
|
422
|
+
border-left-width: 0;
|
|
423
|
+
border-right: 1px solid var(--border-color-default);
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.rbc-overlay {
|
|
427
|
+
position: absolute;
|
|
428
|
+
z-index: 5;
|
|
429
|
+
border: 1px solid var(--border-color-default);
|
|
430
|
+
background-color: #fff;
|
|
431
|
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
|
|
432
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
|
|
433
|
+
padding: 10px;
|
|
434
|
+
}
|
|
435
|
+
.rbc-overlay > * + * {
|
|
436
|
+
margin-top: 1px;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.rbc-overlay-header {
|
|
440
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
441
|
+
margin: -10px -10px 5px -10px;
|
|
442
|
+
padding: 2px 10px;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.rbc-agenda-view {
|
|
446
|
+
display: -webkit-box;
|
|
447
|
+
display: -ms-flexbox;
|
|
448
|
+
display: flex;
|
|
449
|
+
-webkit-box-orient: vertical;
|
|
450
|
+
-webkit-box-direction: normal;
|
|
451
|
+
-ms-flex-direction: column;
|
|
452
|
+
flex-direction: column;
|
|
453
|
+
-webkit-box-flex: 1;
|
|
454
|
+
-ms-flex: 1 0 0px;
|
|
455
|
+
flex: 1 0 0;
|
|
456
|
+
overflow: auto;
|
|
457
|
+
}
|
|
458
|
+
.rbc-agenda-view table.rbc-agenda-table {
|
|
459
|
+
width: 100%;
|
|
460
|
+
border-spacing: 0;
|
|
461
|
+
border-collapse: collapse;
|
|
462
|
+
}
|
|
463
|
+
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
|
|
464
|
+
padding: 5px 10px;
|
|
465
|
+
vertical-align: top;
|
|
466
|
+
}
|
|
467
|
+
.rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
|
|
468
|
+
padding-left: 15px;
|
|
469
|
+
padding-right: 15px;
|
|
470
|
+
text-transform: lowercase;
|
|
471
|
+
}
|
|
472
|
+
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
|
|
473
|
+
border-left: 1px solid var(--border-color-default);
|
|
474
|
+
}
|
|
475
|
+
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
|
|
476
|
+
border-left-width: 0;
|
|
477
|
+
border-right: 1px solid var(--border-color-default);
|
|
478
|
+
}
|
|
479
|
+
.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
|
|
480
|
+
border-top: 1px solid var(--border-color-default);
|
|
481
|
+
}
|
|
482
|
+
.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
|
|
483
|
+
padding: 3px 5px;
|
|
484
|
+
text-align: left;
|
|
485
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
486
|
+
}
|
|
487
|
+
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
|
|
488
|
+
text-align: right;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.rbc-agenda-time-cell {
|
|
492
|
+
text-transform: lowercase;
|
|
493
|
+
}
|
|
494
|
+
.rbc-agenda-time-cell .rbc-continues-after:after {
|
|
495
|
+
content: " »";
|
|
496
|
+
}
|
|
497
|
+
.rbc-agenda-time-cell .rbc-continues-prior:before {
|
|
498
|
+
content: "« ";
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.rbc-agenda-date-cell,
|
|
502
|
+
.rbc-agenda-time-cell {
|
|
503
|
+
white-space: nowrap;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.rbc-agenda-event-cell {
|
|
507
|
+
width: 100%;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.rbc-time-column {
|
|
511
|
+
display: -webkit-box;
|
|
512
|
+
display: -ms-flexbox;
|
|
513
|
+
display: flex;
|
|
514
|
+
-webkit-box-orient: vertical;
|
|
515
|
+
-webkit-box-direction: normal;
|
|
516
|
+
-ms-flex-direction: column;
|
|
517
|
+
flex-direction: column;
|
|
518
|
+
min-height: 100%;
|
|
519
|
+
}
|
|
520
|
+
.rbc-time-column .rbc-timeslot-group {
|
|
521
|
+
-webkit-box-flex: 1;
|
|
522
|
+
-ms-flex: 1;
|
|
523
|
+
flex: 1;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.rbc-timeslot-group {
|
|
527
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
528
|
+
min-height: 40px;
|
|
529
|
+
display: -webkit-box;
|
|
530
|
+
display: -ms-flexbox;
|
|
531
|
+
display: flex;
|
|
532
|
+
-webkit-box-orient: vertical;
|
|
533
|
+
-webkit-box-direction: normal;
|
|
534
|
+
-ms-flex-flow: column nowrap;
|
|
535
|
+
flex-flow: column nowrap;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.rbc-time-gutter,
|
|
539
|
+
.rbc-header-gutter {
|
|
540
|
+
-webkit-box-flex: 0;
|
|
541
|
+
-ms-flex: none;
|
|
542
|
+
flex: none;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.rbc-label {
|
|
546
|
+
padding: 0 5px;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.rbc-day-slot {
|
|
550
|
+
position: relative;
|
|
551
|
+
}
|
|
552
|
+
.rbc-day-slot .rbc-events-container {
|
|
553
|
+
bottom: 0;
|
|
554
|
+
left: 0;
|
|
555
|
+
position: absolute;
|
|
556
|
+
right: 0;
|
|
557
|
+
margin-right: 10px;
|
|
558
|
+
top: 0;
|
|
559
|
+
}
|
|
560
|
+
.rbc-day-slot .rbc-events-container.rbc-rtl {
|
|
561
|
+
left: 10px;
|
|
562
|
+
right: 0;
|
|
563
|
+
}
|
|
564
|
+
.rbc-day-slot .rbc-event, .rbc-day-slot .rbc-background-event {
|
|
565
|
+
border: 1px solid var(--border-color-default);
|
|
566
|
+
display: -webkit-box;
|
|
567
|
+
display: -ms-flexbox;
|
|
568
|
+
display: flex;
|
|
569
|
+
max-height: 100%;
|
|
570
|
+
min-height: 20px;
|
|
571
|
+
-webkit-box-orient: vertical;
|
|
572
|
+
-webkit-box-direction: normal;
|
|
573
|
+
-ms-flex-flow: column wrap;
|
|
574
|
+
flex-flow: column wrap;
|
|
575
|
+
-webkit-box-align: start;
|
|
576
|
+
-ms-flex-align: start;
|
|
577
|
+
align-items: flex-start;
|
|
578
|
+
overflow: hidden;
|
|
579
|
+
position: absolute;
|
|
580
|
+
}
|
|
581
|
+
.rbc-day-slot .rbc-background-event {
|
|
582
|
+
opacity: 0.75;
|
|
583
|
+
}
|
|
584
|
+
.rbc-day-slot .rbc-event-label {
|
|
585
|
+
-webkit-box-flex: 0;
|
|
586
|
+
-ms-flex: none;
|
|
587
|
+
flex: none;
|
|
588
|
+
padding-right: 5px;
|
|
589
|
+
width: auto;
|
|
590
|
+
}
|
|
591
|
+
.rbc-day-slot .rbc-event-content {
|
|
592
|
+
width: 100%;
|
|
593
|
+
-webkit-box-flex: 1;
|
|
594
|
+
-ms-flex: 1 1 0px;
|
|
595
|
+
flex: 1 1 0;
|
|
596
|
+
word-wrap: break-word;
|
|
597
|
+
line-height: 1;
|
|
598
|
+
height: 100%;
|
|
599
|
+
min-height: 1em;
|
|
600
|
+
}
|
|
601
|
+
.rbc-day-slot .rbc-time-slot {
|
|
602
|
+
border-top: 1px solid var(--border-color-default);
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.rbc-time-view-resources .rbc-time-gutter,
|
|
606
|
+
.rbc-time-view-resources .rbc-time-header-gutter {
|
|
607
|
+
position: sticky;
|
|
608
|
+
left: 0;
|
|
609
|
+
background-color: white;
|
|
610
|
+
border-right: 1px solid var(--border-color-default);
|
|
611
|
+
z-index: 10;
|
|
612
|
+
margin-right: -1px;
|
|
613
|
+
}
|
|
614
|
+
.rbc-time-view-resources .rbc-time-header {
|
|
615
|
+
overflow: hidden;
|
|
616
|
+
}
|
|
617
|
+
.rbc-time-view-resources .rbc-time-header-content {
|
|
618
|
+
min-width: auto;
|
|
619
|
+
-webkit-box-flex: 1;
|
|
620
|
+
-ms-flex: 1 0 0px;
|
|
621
|
+
flex: 1 0 0;
|
|
622
|
+
-ms-flex-preferred-size: 0px;
|
|
623
|
+
flex-basis: 0px;
|
|
624
|
+
}
|
|
625
|
+
.rbc-time-view-resources .rbc-time-header-cell-single-day {
|
|
626
|
+
display: none;
|
|
627
|
+
}
|
|
628
|
+
.rbc-time-view-resources .rbc-day-slot {
|
|
629
|
+
min-width: 140px;
|
|
630
|
+
}
|
|
631
|
+
.rbc-time-view-resources .rbc-header,
|
|
632
|
+
.rbc-time-view-resources .rbc-day-bg {
|
|
633
|
+
width: 140px;
|
|
634
|
+
-webkit-box-flex: 1;
|
|
635
|
+
-ms-flex: 1 1 0px;
|
|
636
|
+
flex: 1 1 0;
|
|
637
|
+
-ms-flex-preferred-size: 0 px;
|
|
638
|
+
flex-basis: 0 px;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.rbc-time-header-content + .rbc-time-header-content {
|
|
642
|
+
margin-left: -1px;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.rbc-time-slot {
|
|
646
|
+
-webkit-box-flex: 1;
|
|
647
|
+
-ms-flex: 1 0 0px;
|
|
648
|
+
flex: 1 0 0;
|
|
649
|
+
}
|
|
650
|
+
.rbc-time-slot.rbc-now {
|
|
651
|
+
font-weight: bold;
|
|
652
|
+
color: var(--color-primary);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.rbc-day-header {
|
|
656
|
+
text-align: center;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.rbc-slot-selection {
|
|
660
|
+
z-index: 10;
|
|
661
|
+
position: absolute;
|
|
662
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
663
|
+
color: white;
|
|
664
|
+
font-size: 75%;
|
|
665
|
+
width: 100%;
|
|
666
|
+
padding: 3px;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.rbc-slot-selecting {
|
|
670
|
+
cursor: move;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.rbc-time-view {
|
|
674
|
+
display: -webkit-box;
|
|
675
|
+
display: -ms-flexbox;
|
|
676
|
+
display: flex;
|
|
677
|
+
-webkit-box-orient: vertical;
|
|
678
|
+
-webkit-box-direction: normal;
|
|
679
|
+
-ms-flex-direction: column;
|
|
680
|
+
flex-direction: column;
|
|
681
|
+
-webkit-box-flex: 1;
|
|
682
|
+
-ms-flex: 1;
|
|
683
|
+
flex: 1;
|
|
684
|
+
width: 100%;
|
|
685
|
+
min-height: 0;
|
|
686
|
+
}
|
|
687
|
+
.rbc-time-view .rbc-time-gutter {
|
|
688
|
+
white-space: nowrap;
|
|
689
|
+
text-align: right;
|
|
690
|
+
}
|
|
691
|
+
.rbc-time-view .rbc-allday-cell {
|
|
692
|
+
-webkit-box-sizing: content-box;
|
|
693
|
+
box-sizing: content-box;
|
|
694
|
+
width: 100%;
|
|
695
|
+
height: 100%;
|
|
696
|
+
position: relative;
|
|
697
|
+
}
|
|
698
|
+
.rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
|
|
699
|
+
border-left: 1px solid var(--border-color-default);
|
|
700
|
+
}
|
|
701
|
+
.rbc-time-view .rbc-allday-events {
|
|
702
|
+
position: relative;
|
|
703
|
+
z-index: 4;
|
|
704
|
+
}
|
|
705
|
+
.rbc-time-view .rbc-row {
|
|
706
|
+
-webkit-box-sizing: border-box;
|
|
707
|
+
box-sizing: border-box;
|
|
708
|
+
min-height: 20px;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.rbc-time-header {
|
|
712
|
+
display: -webkit-box;
|
|
713
|
+
display: -ms-flexbox;
|
|
714
|
+
display: flex;
|
|
715
|
+
-webkit-box-flex: 0;
|
|
716
|
+
-ms-flex: 0 0 auto;
|
|
717
|
+
flex: 0 0 auto;
|
|
718
|
+
-webkit-box-orient: horizontal;
|
|
719
|
+
-webkit-box-direction: normal;
|
|
720
|
+
-ms-flex-direction: row;
|
|
721
|
+
flex-direction: row;
|
|
722
|
+
}
|
|
723
|
+
.rbc-time-header.rbc-overflowing {
|
|
724
|
+
border-right: 1px solid var(--border-color-default);
|
|
725
|
+
}
|
|
726
|
+
.rbc-rtl .rbc-time-header.rbc-overflowing {
|
|
727
|
+
border-right-width: 0;
|
|
728
|
+
border-left: 1px solid var(--border-color-default);
|
|
729
|
+
}
|
|
730
|
+
.rbc-time-header > .rbc-row:first-child {
|
|
731
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
732
|
+
}
|
|
733
|
+
.rbc-time-header > .rbc-row.rbc-row-resource {
|
|
734
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.rbc-time-header-cell-single-day {
|
|
738
|
+
display: none;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.rbc-time-header-content {
|
|
742
|
+
-webkit-box-flex: 1;
|
|
743
|
+
-ms-flex: 1;
|
|
744
|
+
flex: 1;
|
|
745
|
+
display: -webkit-box;
|
|
746
|
+
display: -ms-flexbox;
|
|
747
|
+
display: flex;
|
|
748
|
+
min-width: 0;
|
|
749
|
+
-webkit-box-orient: vertical;
|
|
750
|
+
-webkit-box-direction: normal;
|
|
751
|
+
-ms-flex-direction: column;
|
|
752
|
+
flex-direction: column;
|
|
753
|
+
border-left: 1px solid var(--border-color-default);
|
|
754
|
+
}
|
|
755
|
+
.rbc-rtl .rbc-time-header-content {
|
|
756
|
+
border-left-width: 0;
|
|
757
|
+
border-right: 1px solid var(--border-color-default);
|
|
758
|
+
}
|
|
759
|
+
.rbc-time-header-content > .rbc-row.rbc-row-resource {
|
|
760
|
+
border-bottom: 1px solid var(--border-color-default);
|
|
761
|
+
-ms-flex-negative: 0;
|
|
762
|
+
flex-shrink: 0;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.rbc-time-content {
|
|
766
|
+
display: -webkit-box;
|
|
767
|
+
display: -ms-flexbox;
|
|
768
|
+
display: flex;
|
|
769
|
+
-webkit-box-flex: 1;
|
|
770
|
+
-ms-flex: 1 0 0%;
|
|
771
|
+
flex: 1 0 0%;
|
|
772
|
+
-webkit-box-align: start;
|
|
773
|
+
-ms-flex-align: start;
|
|
774
|
+
align-items: flex-start;
|
|
775
|
+
width: 100%;
|
|
776
|
+
border-top: 2px solid var(--border-color-default);
|
|
777
|
+
overflow-y: auto;
|
|
778
|
+
position: relative;
|
|
779
|
+
}
|
|
780
|
+
.rbc-time-content > .rbc-time-gutter {
|
|
781
|
+
-webkit-box-flex: 0;
|
|
782
|
+
-ms-flex: none;
|
|
783
|
+
flex: none;
|
|
784
|
+
}
|
|
785
|
+
.rbc-time-content > * + * > * {
|
|
786
|
+
border-left: 1px solid var(--border-color-default);
|
|
787
|
+
}
|
|
788
|
+
.rbc-rtl .rbc-time-content > * + * > * {
|
|
789
|
+
border-left-width: 0;
|
|
790
|
+
border-right: 1px solid var(--border-color-default);
|
|
791
|
+
}
|
|
792
|
+
.rbc-time-content > .rbc-day-slot {
|
|
793
|
+
width: 100%;
|
|
794
|
+
-moz-user-select: none;
|
|
795
|
+
-ms-user-select: none;
|
|
796
|
+
user-select: none;
|
|
797
|
+
-webkit-user-select: none;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.rbc-current-time-indicator {
|
|
801
|
+
position: absolute;
|
|
802
|
+
z-index: 3;
|
|
803
|
+
left: 0;
|
|
804
|
+
right: 0;
|
|
805
|
+
height: 1px;
|
|
806
|
+
background-color: var(--color-primary);
|
|
807
|
+
pointer-events: none;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
/*# sourceMappingURL=react-big-calendar.css.map */
|