timvir 0.2.54 → 0.2.55
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/CHANGELOG.md +7 -0
- package/blocks/Exhibit/index.js +2 -0
- package/blocks/Exhibit/styles.css +8 -0
- package/blocks/styles.css +8 -0
- package/package.json +3 -3
- package/styles.css +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# timvir
|
|
2
2
|
|
|
3
|
+
## 0.2.55
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- **Relax peer dependency version requirement** ([#3894](https://github.com/timvir/timvir/pull/3894)) - A recent change bumped peer dependency requirement for react from ^19 to ^19.2.7. Relax the requirement back to ^19, timvir does not depend on any specific feature added in 19.2.7.
|
|
8
|
+
- **Override text color when forcing light or dark theme** ([#3895](https://github.com/timvir/timvir/pull/3895)) - Forcing a theme now sets both the background image (checkered background) and also text color. This ensures that elements that rely on currentColor remain readable.
|
|
9
|
+
|
|
3
10
|
## 0.2.54
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/blocks/Exhibit/index.js
CHANGED
|
@@ -255,10 +255,12 @@ const styles = {
|
|
|
255
255
|
},
|
|
256
256
|
lightTheme: {
|
|
257
257
|
kKwaWg: "timvir-s-7ns93p",
|
|
258
|
+
kMwMTN: "timvir-s-15r2rl4",
|
|
258
259
|
$$css: true
|
|
259
260
|
},
|
|
260
261
|
darkTheme: {
|
|
261
262
|
kKwaWg: "timvir-s-kt43kk",
|
|
263
|
+
kMwMTN: "timvir-s-igssvo",
|
|
262
264
|
$$css: true
|
|
263
265
|
},
|
|
264
266
|
caption: {
|
package/blocks/styles.css
CHANGED
|
@@ -938,6 +938,14 @@
|
|
|
938
938
|
background-image: var(--timvir-b-Exhibit-background);
|
|
939
939
|
}
|
|
940
940
|
|
|
941
|
+
.timvir-s-15r2rl4 {
|
|
942
|
+
color: #000000c9;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.timvir-s-igssvo {
|
|
946
|
+
color: #ffffffdb;
|
|
947
|
+
}
|
|
948
|
+
|
|
941
949
|
.timvir-s-vgvpxu {
|
|
942
950
|
color: var(--timvir-secondary-text-color);
|
|
943
951
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "timvir",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.55",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"wonka": "^6"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"react": "^19
|
|
49
|
-
"react-dom": "^19
|
|
48
|
+
"react": "^19",
|
|
49
|
+
"react-dom": "^19"
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
package/styles.css
CHANGED
|
@@ -2311,6 +2311,14 @@ body {
|
|
|
2311
2311
|
background-image: var(--timvir-b-Exhibit-background);
|
|
2312
2312
|
}
|
|
2313
2313
|
|
|
2314
|
+
.timvir-s-15r2rl4 {
|
|
2315
|
+
color: #000000c9;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.timvir-s-igssvo {
|
|
2319
|
+
color: #ffffffdb;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2314
2322
|
.timvir-s-vgvpxu {
|
|
2315
2323
|
color: var(--timvir-secondary-text-color);
|
|
2316
2324
|
}
|