@reservi/theme 2.0.0-beta.1 → 2.0.0-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reservi/theme",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.2",
4
4
  "description": "Tema de Reservi Calendar: design tokens (TailwindCSS 4 @theme) y estilos base.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -674,6 +674,12 @@
674
674
  opacity: 0.6;
675
675
  pointer-events: none;
676
676
  }
677
+ /* La banda no intercepta el puntero —el click tiene que llegar a la columna para
678
+ la parte abierta del día—, así que el cursor se pone en la columna cuando el
679
+ día no abre en absoluto. */
680
+ [data-rsv="tg-col"][data-business="false"] {
681
+ cursor: not-allowed;
682
+ }
677
683
  [data-rsv="resize-handle"] {
678
684
  position: absolute;
679
685
  left: 0;
@@ -36,7 +36,9 @@
36
36
  /* Estados */
37
37
  --color-rsv-now: #d85353;
38
38
  --color-rsv-selection: #f6f0fa;
39
- --color-rsv-nonbusiness: rgba(250, 250, 255, 0.5);
39
+ /* Gris con cuerpo, no un blanco roto: estas franjas tienen que leerse como
40
+ "aqui no se puede", no como un matiz del fondo. */
41
+ --color-rsv-nonbusiness: #f1f2f4;
40
42
 
41
43
  /* Geometría */
42
44
  --radius-rsv: 8px;