@overmap-ai/blocks 1.0.30-softer-icon-error.0 → 1.0.31-fix-error-boundary.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/README.md +3 -3
- package/dist/OvermapErrorBoundary/OvermapErrorBoundary.d.ts +1 -0
- package/dist/blocks.js +21 -5
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +21 -5
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +16 -16
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -509,22 +509,22 @@
|
|
|
509
509
|
overflow: hidden;
|
|
510
510
|
text-overflow: ellipsis;
|
|
511
511
|
display: block;
|
|
512
|
-
}/*
|
|
513
|
-
Doubling up on the radix-themes class to increase specificity over the default.
|
|
514
|
-
Note: the class name must be "radix-themes" for nested themes to work.
|
|
515
|
-
|
|
516
|
-
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
517
|
-
*/
|
|
518
|
-
.radix-themes.radix-themes {
|
|
519
|
-
--cursor-button: pointer;
|
|
520
|
-
--cursor-menu-item: pointer;
|
|
521
|
-
--cursor-checkbox: pointer;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.rt-BaseButton {
|
|
525
|
-
/* fix the cursor token only being applied to HTML buttons */
|
|
526
|
-
cursor: var(--cursor-button);
|
|
527
|
-
}
|
|
512
|
+
}/*
|
|
513
|
+
Doubling up on the radix-themes class to increase specificity over the default.
|
|
514
|
+
Note: the class name must be "radix-themes" for nested themes to work.
|
|
515
|
+
|
|
516
|
+
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
517
|
+
*/
|
|
518
|
+
.radix-themes.radix-themes {
|
|
519
|
+
--cursor-button: pointer;
|
|
520
|
+
--cursor-menu-item: pointer;
|
|
521
|
+
--cursor-checkbox: pointer;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.rt-BaseButton {
|
|
525
|
+
/* fix the cursor token only being applied to HTML buttons */
|
|
526
|
+
cursor: var(--cursor-button);
|
|
527
|
+
}
|
|
528
528
|
._light_1u8fs_1 span {
|
|
529
529
|
color: var(--gray-a3);
|
|
530
530
|
}
|
package/package.json
CHANGED