loon-bulma-react 2026.0.64 → 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 +3673 -3579
- package/dist/styles/bulma-box.scss +4 -0
- package/dist/styles/calendar.scss +60 -16
- 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,16 +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
|
-
// TR: de columns van het grid worden inline geset!
|
|
25
|
-
justify-items: 'stretch';
|
|
26
|
-
align-items: 'stretch';
|
|
23
|
+
// TR: de rows en columns van het grid worden inline geset als overschreven!
|
|
27
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
|
+
}
|
|
28
38
|
}
|
|
39
|
+
|
|
29
40
|
.calendar-header-cell {
|
|
30
41
|
text-align: center;
|
|
31
42
|
border-bottom: thin solid $cell-border-color;
|
|
@@ -46,7 +57,7 @@ div.lbr-grid-container {
|
|
|
46
57
|
text-align: center;
|
|
47
58
|
font-size: 0.7em;
|
|
48
59
|
padding-top: 1em;
|
|
49
|
-
height:
|
|
60
|
+
height: $hour-height;
|
|
50
61
|
// border-top: thin solid $cell-border-color;
|
|
51
62
|
border-bottom: thin solid $cell-border-color;
|
|
52
63
|
border-right: thin solid $cell-border-color;
|
|
@@ -72,9 +83,13 @@ div.lbr-grid-container {
|
|
|
72
83
|
text-align: center;
|
|
73
84
|
color: $color;
|
|
74
85
|
font-size: 1.1em;
|
|
86
|
+
min-height: 0;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-direction: column;
|
|
75
90
|
|
|
76
91
|
&.is-not-current-period {
|
|
77
|
-
background-color: cv.getVar('scheme-main-ter');
|
|
92
|
+
// background-color: cv.getVar('scheme-main-ter');
|
|
78
93
|
color: cv.getVar('text-weak');
|
|
79
94
|
}
|
|
80
95
|
|
|
@@ -87,9 +102,16 @@ div.lbr-grid-container {
|
|
|
87
102
|
}
|
|
88
103
|
}
|
|
89
104
|
|
|
105
|
+
.calendar-day-events {
|
|
106
|
+
flex: 1 1 auto;
|
|
107
|
+
min-height: 0;
|
|
108
|
+
overflow: hidden;
|
|
109
|
+
}
|
|
110
|
+
|
|
90
111
|
.calendar-time-slot {
|
|
91
|
-
|
|
92
|
-
|
|
112
|
+
position: relative;
|
|
113
|
+
max-height: $hour-height;
|
|
114
|
+
overflow: visible;
|
|
93
115
|
border-bottom: thin solid $cell-border-color;
|
|
94
116
|
border-right: thin solid $cell-border-color;
|
|
95
117
|
border-left: thin solid $cell-border-color;
|
|
@@ -98,6 +120,12 @@ div.lbr-grid-container {
|
|
|
98
120
|
flex-wrap: nowrap;
|
|
99
121
|
}
|
|
100
122
|
|
|
123
|
+
div.lbr-grid-container.is-week {
|
|
124
|
+
.calendar-time-slot > .event-base {
|
|
125
|
+
z-index: 20;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
101
129
|
span.more-events-expander {
|
|
102
130
|
display: inline-block;
|
|
103
131
|
width: 0.9em;
|
|
@@ -141,12 +169,12 @@ div.kleurblok {
|
|
|
141
169
|
transition:
|
|
142
170
|
background-color 0.2s ease-in-out,
|
|
143
171
|
color 0.2s ease-in-out;
|
|
144
|
-
height:
|
|
145
|
-
margin:
|
|
172
|
+
height: 21px;
|
|
173
|
+
margin: 3px 3px;
|
|
146
174
|
border-radius: 5px;
|
|
147
175
|
text-align: start;
|
|
148
|
-
padding-left: 3px;
|
|
149
|
-
padding-right: 3px;
|
|
176
|
+
// padding-left: 3px;
|
|
177
|
+
// padding-right: 3px;
|
|
150
178
|
overflow: clip;
|
|
151
179
|
text-overflow: clip;
|
|
152
180
|
color: $color;
|
|
@@ -155,10 +183,26 @@ div.kleurblok {
|
|
|
155
183
|
|
|
156
184
|
.more-events {
|
|
157
185
|
@extend .event-base;
|
|
158
|
-
|
|
186
|
+
|
|
187
|
+
// background-color: transparent;
|
|
159
188
|
color: $color;
|
|
160
189
|
font-size: 0.75em;
|
|
161
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
|
+
}
|
|
162
206
|
}
|
|
163
207
|
|
|
164
208
|
// ##################################
|