loon-bulma-react 2026.0.70 → 2026.0.71
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 +1 -2
- package/dist/styles/_all.scss +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16787,7 +16787,6 @@ function $y({ viewDate: e = r_.now(), selectedDate: n = void 0, selectedViewType
|
|
|
16787
16787
|
for (; e <= t;) n = [...n, ...u(e)], e = e.plus({ weeks: 1 });
|
|
16788
16788
|
return n.length < 42 && (n = [...n, ...u(e)]), n;
|
|
16789
16789
|
}, [c]);
|
|
16790
|
-
console.log(n, r);
|
|
16791
16790
|
function h(e) {
|
|
16792
16791
|
if (!n || !r) return !1;
|
|
16793
16792
|
let t = n instanceof Date ? r_.fromDate(n) : n;
|
|
@@ -35252,7 +35251,7 @@ function oH({ value: e, icon: t = ls, onValueChanged: n, onDateValueChanged: r,
|
|
|
35252
35251
|
let o = "";
|
|
35253
35252
|
typeof e == "string" && e.length === 8 ? o = `${e.substring(0, 4)}-${e.substring(4, 6)}-${e.substring(6, 8)}` : typeof e == "string" ? o = e.length > 10 ? e.substring(0, 10) : e : e instanceof Date ? o = e.toISOString().substring(0, 10) : e instanceof r_ && (o = e.ISO.substring(0, 10));
|
|
35254
35253
|
function s(e) {
|
|
35255
|
-
n && n(e), r && r(new Date(e)), i && i(r_.fromISO(e));
|
|
35254
|
+
console.log("val=", e), n && n(e), r && r(new Date(e)), i && i(r_.fromISO(e));
|
|
35256
35255
|
}
|
|
35257
35256
|
return /* @__PURE__ */ b(jh, {
|
|
35258
35257
|
icon: t,
|
package/dist/styles/_all.scss
CHANGED
|
@@ -51,6 +51,7 @@ $modal-content-spacing-tablet: 2.5rem !default;
|
|
|
51
51
|
$modal-content-spacing-mobile: 2.5rem !default;
|
|
52
52
|
$table-row-hover-background-color: #f0f0f0 !default;
|
|
53
53
|
$table-striped-row-even-hover-background-color: #f0f0f0 !default;
|
|
54
|
+
$body-overflow-y: auto !default;
|
|
54
55
|
|
|
55
56
|
@use 'bulma/sass/utilities' with (
|
|
56
57
|
$primary: $primary,
|
|
@@ -79,7 +80,8 @@ $table-striped-row-even-hover-background-color: #f0f0f0 !default;
|
|
|
79
80
|
|
|
80
81
|
@use 'bulma/sass/base' with (
|
|
81
82
|
$body-size: $body-size,
|
|
82
|
-
$body-font-size: $body-font-size
|
|
83
|
+
$body-font-size: $body-font-size,
|
|
84
|
+
$body-overflow-y: $body-overflow-y
|
|
83
85
|
);
|
|
84
86
|
|
|
85
87
|
// import bulma elements
|