loon-bulma-react 2026.0.63 → 2026.0.65
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/dist/components/Calendar/Container.d.ts +8 -0
- package/dist/components/Calendar/DayContainer.d.ts +1 -1
- package/dist/components/Calendar/EventDescriptions.d.ts +7 -3
- package/dist/components/Calendar/Props.d.ts +2 -4
- package/dist/components/Calendar/index.d.ts +8 -6
- package/dist/index.js +3683 -3579
- package/dist/styles/bulma-box.scss +4 -0
- package/dist/styles/calendar.scss +60 -15
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
$color: cv.getVar('text-strong') !default;
|
|
9
9
|
$background-color: cv.getVar('scheme-main') !default;
|
|
10
10
|
|
|
11
|
+
$hour-height: 60px !default;
|
|
12
|
+
|
|
11
13
|
$cell-border-color: cv.getVar('border') !default;
|
|
12
14
|
$cell-border-style: solid !default;
|
|
13
15
|
$cell-border-width: 0 0 1px !default;
|
|
@@ -16,15 +18,25 @@ $cell-heading-color: cv.getVar('text-strong') !default;
|
|
|
16
18
|
$cell-text-align: left !default;
|
|
17
19
|
|
|
18
20
|
div.lbr-grid-container {
|
|
19
|
-
|
|
20
|
-
padding: 3px;
|
|
21
|
-
border-radius: iv.$radius;
|
|
21
|
+
height: 100%;
|
|
22
22
|
display: grid;
|
|
23
|
-
|
|
24
|
-
justify-items: 'stretch';
|
|
25
|
-
align-items: 'stretch';
|
|
23
|
+
// TR: de rows en columns van het grid worden inline geset als overschreven!
|
|
26
24
|
color: $color;
|
|
25
|
+
|
|
26
|
+
&.is-week {
|
|
27
|
+
overflow-y: auto;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
div.lbr-grid-container.is-week {
|
|
32
|
+
.calendar-header-cell {
|
|
33
|
+
position: sticky;
|
|
34
|
+
top: 0;
|
|
35
|
+
z-index: 30;
|
|
36
|
+
background-color: cv.getVar('scheme-main');
|
|
37
|
+
}
|
|
27
38
|
}
|
|
39
|
+
|
|
28
40
|
.calendar-header-cell {
|
|
29
41
|
text-align: center;
|
|
30
42
|
border-bottom: thin solid $cell-border-color;
|
|
@@ -45,7 +57,7 @@ div.lbr-grid-container {
|
|
|
45
57
|
text-align: center;
|
|
46
58
|
font-size: 0.7em;
|
|
47
59
|
padding-top: 1em;
|
|
48
|
-
height:
|
|
60
|
+
height: $hour-height;
|
|
49
61
|
// border-top: thin solid $cell-border-color;
|
|
50
62
|
border-bottom: thin solid $cell-border-color;
|
|
51
63
|
border-right: thin solid $cell-border-color;
|
|
@@ -71,9 +83,13 @@ div.lbr-grid-container {
|
|
|
71
83
|
text-align: center;
|
|
72
84
|
color: $color;
|
|
73
85
|
font-size: 1.1em;
|
|
86
|
+
min-height: 0;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-direction: column;
|
|
74
90
|
|
|
75
91
|
&.is-not-current-period {
|
|
76
|
-
background-color: cv.getVar('scheme-main-ter');
|
|
92
|
+
// background-color: cv.getVar('scheme-main-ter');
|
|
77
93
|
color: cv.getVar('text-weak');
|
|
78
94
|
}
|
|
79
95
|
|
|
@@ -86,9 +102,16 @@ div.lbr-grid-container {
|
|
|
86
102
|
}
|
|
87
103
|
}
|
|
88
104
|
|
|
105
|
+
.calendar-day-events {
|
|
106
|
+
flex: 1 1 auto;
|
|
107
|
+
min-height: 0;
|
|
108
|
+
overflow: hidden;
|
|
109
|
+
}
|
|
110
|
+
|
|
89
111
|
.calendar-time-slot {
|
|
90
|
-
|
|
91
|
-
|
|
112
|
+
position: relative;
|
|
113
|
+
max-height: $hour-height;
|
|
114
|
+
overflow: visible;
|
|
92
115
|
border-bottom: thin solid $cell-border-color;
|
|
93
116
|
border-right: thin solid $cell-border-color;
|
|
94
117
|
border-left: thin solid $cell-border-color;
|
|
@@ -97,6 +120,12 @@ div.lbr-grid-container {
|
|
|
97
120
|
flex-wrap: nowrap;
|
|
98
121
|
}
|
|
99
122
|
|
|
123
|
+
div.lbr-grid-container.is-week {
|
|
124
|
+
.calendar-time-slot > .event-base {
|
|
125
|
+
z-index: 20;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
100
129
|
span.more-events-expander {
|
|
101
130
|
display: inline-block;
|
|
102
131
|
width: 0.9em;
|
|
@@ -140,12 +169,12 @@ div.kleurblok {
|
|
|
140
169
|
transition:
|
|
141
170
|
background-color 0.2s ease-in-out,
|
|
142
171
|
color 0.2s ease-in-out;
|
|
143
|
-
height:
|
|
144
|
-
margin:
|
|
172
|
+
height: 21px;
|
|
173
|
+
margin: 3px 3px;
|
|
145
174
|
border-radius: 5px;
|
|
146
175
|
text-align: start;
|
|
147
|
-
padding-left: 3px;
|
|
148
|
-
padding-right: 3px;
|
|
176
|
+
// padding-left: 3px;
|
|
177
|
+
// padding-right: 3px;
|
|
149
178
|
overflow: clip;
|
|
150
179
|
text-overflow: clip;
|
|
151
180
|
color: $color;
|
|
@@ -154,10 +183,26 @@ div.kleurblok {
|
|
|
154
183
|
|
|
155
184
|
.more-events {
|
|
156
185
|
@extend .event-base;
|
|
157
|
-
|
|
186
|
+
|
|
187
|
+
// background-color: transparent;
|
|
158
188
|
color: $color;
|
|
159
189
|
font-size: 0.75em;
|
|
160
190
|
cursor: pointer;
|
|
191
|
+
|
|
192
|
+
&:hover {
|
|
193
|
+
background-color: cv.getVar('scheme-main-ter');
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.calendar-more-events-overlay {
|
|
198
|
+
z-index: 1100;
|
|
199
|
+
background-color: cv.getVar('scheme-main');
|
|
200
|
+
box-shadow: cv.getVar('shadow');
|
|
201
|
+
|
|
202
|
+
.calendar-more-events-overlay-body {
|
|
203
|
+
flex: 0 0 auto;
|
|
204
|
+
overflow: visible;
|
|
205
|
+
}
|
|
161
206
|
}
|
|
162
207
|
|
|
163
208
|
// ##################################
|