loon-bulma-react 2026.0.66 → 2026.0.67

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/index.js CHANGED
@@ -16917,7 +16917,7 @@ function rb({ event: e, options: n, onClick: r }) {
16917
16917
  e,
16918
16918
  n,
16919
16919
  i
16920
- ]), s = typeof e.title == "function" ? e.title() : e.title, c = `allday-evt-timespan has-text-weight-bold has-text-centered m-1 ${e.allDay ? "is-allday" : "is-timed"} ${r ? "is-clickable" : ""}`.trim(), l = `allday-evt-description m-1 ${e.allDay ? "is-allday" : "is-timed"} ${r ? "is-clickable" : ""}`.trim();
16920
+ ]), s = typeof e.title == "function" ? e.title() : e.title, c = `event-timespan has-text-weight-light has-text-left m-1 ${e.allDay ? "is-allday" : "is-timed"} ${r ? "is-clickable" : ""}`.trim(), l = `event-description m-1 ${e.allDay ? "is-allday" : "is-timed"} ${r ? "is-clickable" : ""}`.trim();
16921
16921
  return /* @__PURE__ */ x(t.Fragment, { children: [/* @__PURE__ */ x("div", {
16922
16922
  className: c,
16923
16923
  onClick: (t) => r && r(e, t),
@@ -16928,14 +16928,23 @@ function rb({ event: e, options: n, onClick: r }) {
16928
16928
  className: "kleurblok mt-1",
16929
16929
  style: o
16930
16930
  }),
16931
- /* @__PURE__ */ b("span", {
16932
- className: "time",
16933
- children: e._startDateTime?.timeHM
16931
+ e.allDay && /* @__PURE__ */ b("span", {
16932
+ className: "mx-2",
16933
+ children: "Hele dag"
16934
16934
  }),
16935
- /* @__PURE__ */ b("span", { children: " - " }),
16936
- /* @__PURE__ */ b("span", {
16937
- className: "time",
16938
- children: e._endDateTime?.timeHM
16935
+ !e.allDay && /* @__PURE__ */ x("span", {
16936
+ className: "mx-2",
16937
+ children: [
16938
+ /* @__PURE__ */ b("span", {
16939
+ className: "time",
16940
+ children: e._startDateTime?.timeHM
16941
+ }),
16942
+ /* @__PURE__ */ b("span", { children: " - " }),
16943
+ /* @__PURE__ */ b("span", {
16944
+ className: "time",
16945
+ children: e._endDateTime?.timeHM
16946
+ })
16947
+ ]
16939
16948
  })
16940
16949
  ]
16941
16950
  }), /* @__PURE__ */ b("div", {
@@ -219,22 +219,23 @@ span.kleurblok {
219
219
  .calendar-listitem-grid {
220
220
  display: grid;
221
221
  grid-template-columns: 10em auto;
222
- grid-template-rows: repeat(auto-fill, 22px);
222
+ grid-auto-rows: 22px;
223
223
  padding: 0.5em;
224
224
  padding-left: 0.25em;
225
225
  border: thin solid $cell-border-color;
226
226
 
227
- .allday-evt-timespan,
228
- .timed-evt-timespan {
227
+ .event-timespan {
229
228
  vertical-align: baseline;
230
-
231
229
  display: grid;
232
- grid-template-columns: 1em 1fr 0.5em 1fr;
230
+ grid-template-columns: 1em 1fr;
233
231
  grid-template-rows: 1fr;
232
+
233
+ // .allday {
234
+ // grid-column: span 3;
235
+ // }
234
236
  }
235
237
 
236
- .allday-evt-description,
237
- .timed-evt-description {
238
+ .event-description {
238
239
  vertical-align: baseline;
239
240
  }
240
241
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "loon-bulma-react",
3
3
  "private": false,
4
- "version": "2026.0.66",
4
+ "version": "2026.0.67",
5
5
  "description": "Bulma & React componenten voor Loon Salarissoftware",
6
6
  "type": "module",
7
7
  "license": "MIT",