@reservi/theme 1.1.0 → 1.2.0-beta.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/package.json +18 -1
- package/src/components.css +4 -1
package/package.json
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reservi/theme",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0-beta.0",
|
|
4
4
|
"description": "Tema de Reservi Calendar: design tokens (TailwindCSS 4 @theme) y estilos base.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Reservi-develop/reservi-calendar.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/Reservi-develop/reservi-calendar#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Reservi-develop/reservi-calendar/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"calendar",
|
|
16
|
+
"scheduler",
|
|
17
|
+
"tailwindcss",
|
|
18
|
+
"theme"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
6
23
|
"type": "module",
|
|
7
24
|
"sideEffects": [
|
|
8
25
|
"*.css"
|
package/src/components.css
CHANGED
|
@@ -287,7 +287,10 @@
|
|
|
287
287
|
/* Columna de número de semana (cuando weekNumbers está activo). */
|
|
288
288
|
[data-rsv="daygrid"][data-weeknumbers="true"] [data-rsv="daygrid-header"],
|
|
289
289
|
[data-rsv="daygrid"][data-weeknumbers="true"] [data-rsv="daygrid-week"] {
|
|
290
|
-
grid-template-columns: var(--rsv-weeknum-width, 2.25rem) repeat(
|
|
290
|
+
grid-template-columns: var(--rsv-weeknum-width, 2.25rem) repeat(
|
|
291
|
+
var(--rsv-cols, 7),
|
|
292
|
+
minmax(0, 1fr)
|
|
293
|
+
);
|
|
291
294
|
}
|
|
292
295
|
[data-rsv="daygrid-weeknum-header"],
|
|
293
296
|
[data-rsv="daygrid-weeknum"] {
|