@almadar/ui 6.18.0 → 6.19.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 +2 -2
- package/themes/index.css +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.19.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"@almadar/evaluator": "^2.45.0",
|
|
123
123
|
"@almadar/logger": "^1.12.0",
|
|
124
124
|
"@almadar/runtime": "^6.78.0",
|
|
125
|
-
"@almadar/std": "^16.
|
|
125
|
+
"@almadar/std": "^16.216.0",
|
|
126
126
|
"@almadar/syntax": "^1.17.0",
|
|
127
127
|
"@dnd-kit/core": "^6.3.1",
|
|
128
128
|
"@dnd-kit/sortable": "^10.0.0",
|
package/themes/index.css
CHANGED
|
@@ -83,6 +83,18 @@
|
|
|
83
83
|
border-color: var(--color-border, #e5e7eb);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
+
/**
|
|
87
|
+
* currentColor anchor. A nested [data-theme] container re-scopes every
|
|
88
|
+
* var-based color utility, but the raw `color` property inherits straight
|
|
89
|
+
* through from the outer theme — `text-current` icons painted the outer
|
|
90
|
+
* theme's foreground on the inner theme's surface (white-on-white when a
|
|
91
|
+
* behavior pins a light theme inside a dark shell). Re-anchor `color` to
|
|
92
|
+
* the innermost theme's foreground so currentColor always matches.
|
|
93
|
+
*/
|
|
94
|
+
[data-theme] {
|
|
95
|
+
color: var(--color-foreground, inherit);
|
|
96
|
+
}
|
|
97
|
+
|
|
86
98
|
/**
|
|
87
99
|
* Font inheritance for headings.
|
|
88
100
|
*
|