accomadesc 0.2.5 → 0.2.6
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.
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
const ldays: DayHelper[] = [];
|
|
90
90
|
if (!browser) return ldays;
|
|
91
91
|
if (!occupationState || occupationState.loading) return ldays;
|
|
92
|
+
|
|
92
93
|
for (const m of months) {
|
|
93
94
|
for (let d: DayNumbers = 1; d <= 31; d++) {
|
|
94
95
|
const day: DayHelper = {
|
|
@@ -130,15 +131,13 @@
|
|
|
130
131
|
}, [] as OccupationType[])
|
|
131
132
|
: [],
|
|
132
133
|
);
|
|
133
|
-
|
|
134
|
-
let width = $state(0);
|
|
135
134
|
</script>
|
|
136
135
|
|
|
137
136
|
{#if !occupationState || occupationState.loading}
|
|
138
137
|
<Spinner />
|
|
139
138
|
{/if}
|
|
140
139
|
|
|
141
|
-
<section class="occuplan-wrapper"
|
|
140
|
+
<section class="occuplan-wrapper" style="max-width: {maxWidth};">
|
|
142
141
|
<header class="occupation-plan-header">
|
|
143
142
|
<div class="header-controls">
|
|
144
143
|
{#if rfMonth >= minDate}
|
|
@@ -273,6 +272,7 @@
|
|
|
273
272
|
container-type: size;
|
|
274
273
|
container-name: month-label;
|
|
275
274
|
padding-left: 0.3rem;
|
|
275
|
+
height: 100%;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
@container month-label (min-height: 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accomadesc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build && npm run package",
|
|
@@ -61,5 +61,11 @@
|
|
|
61
61
|
"leaflet": "^1.9.4",
|
|
62
62
|
"luxon": "^3.5.0",
|
|
63
63
|
"squirrelly": "^9.1.0"
|
|
64
|
+
},
|
|
65
|
+
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
|
|
66
|
+
"pnpm": {
|
|
67
|
+
"onlyBuiltDependencies": [
|
|
68
|
+
"esbuild"
|
|
69
|
+
]
|
|
64
70
|
}
|
|
65
71
|
}
|