@reservi/calendar 1.5.0 → 1.6.0
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.cjs +13 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +24 -6
- package/dist/index.js +2769 -2743
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/dist/themes.css +3 -1
- package/package.json +6 -6
package/dist/styles.css
CHANGED
|
@@ -763,6 +763,12 @@
|
|
|
763
763
|
opacity: 0.6;
|
|
764
764
|
pointer-events: none;
|
|
765
765
|
}
|
|
766
|
+
/* La banda no intercepta el puntero —el click tiene que llegar a la columna para
|
|
767
|
+
la parte abierta del día—, así que el cursor se pone en la columna cuando el
|
|
768
|
+
día no abre en absoluto. */
|
|
769
|
+
[data-rsv="tg-col"][data-business="false"] {
|
|
770
|
+
cursor: not-allowed;
|
|
771
|
+
}
|
|
766
772
|
[data-rsv="resize-handle"] {
|
|
767
773
|
position: absolute;
|
|
768
774
|
left: 0;
|
package/dist/themes.css
CHANGED
|
@@ -219,7 +219,9 @@
|
|
|
219
219
|
/* Estados */
|
|
220
220
|
--color-rsv-now: #d85353;
|
|
221
221
|
--color-rsv-selection: #f6f0fa;
|
|
222
|
-
|
|
222
|
+
/* Gris con cuerpo, no un blanco roto: estas franjas tienen que leerse como
|
|
223
|
+
"aqui no se puede", no como un matiz del fondo. */
|
|
224
|
+
--color-rsv-nonbusiness: #f1f2f4;
|
|
223
225
|
|
|
224
226
|
/* Geometría */
|
|
225
227
|
--radius-rsv: 8px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reservi/calendar",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Build autocontenido de Reservi Calendar para React: núcleo + UI + tema en un solo paquete, con sus dependencias inlineadas (solo react y react-dom quedan como peers).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"typescript": "^5.7.2",
|
|
55
55
|
"vite": "^6.0.0",
|
|
56
56
|
"vite-plugin-dts": "^4.3.0",
|
|
57
|
-
"@reservi/
|
|
58
|
-
"@reservi/
|
|
59
|
-
"@reservi/
|
|
60
|
-
"@reservi/
|
|
61
|
-
"@reservi/
|
|
57
|
+
"@reservi/core": "1.6.0",
|
|
58
|
+
"@reservi/preact": "1.6.0",
|
|
59
|
+
"@reservi/react": "1.6.0",
|
|
60
|
+
"@reservi/theme": "1.6.0",
|
|
61
|
+
"@reservi/tsconfig": "2.0.0-beta.0"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "vite build && node scripts/build-css.mjs",
|