@pyreon/ui-core 0.11.9 → 0.11.10
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 +6 -6
- package/src/context.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyreon/ui-core",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.10",
|
|
4
4
|
"description": "Core utilities, config, and context for Pyreon UI System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"typecheck": "tsc --noEmit"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@pyreon/typescript": "^0.11.
|
|
40
|
+
"@pyreon/typescript": "^0.11.10",
|
|
41
41
|
"@vitus-labs/tools-rolldown": "^1.15.3"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@pyreon/core": "^0.11.
|
|
45
|
-
"@pyreon/reactivity": "^0.11.
|
|
46
|
-
"@pyreon/styler": "^0.11.
|
|
47
|
-
"@pyreon/unistyle": "^0.11.
|
|
44
|
+
"@pyreon/core": "^0.11.10",
|
|
45
|
+
"@pyreon/reactivity": "^0.11.10",
|
|
46
|
+
"@pyreon/styler": "^0.11.10",
|
|
47
|
+
"@pyreon/unistyle": "^0.11.10"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">= 22"
|
package/src/context.tsx
CHANGED
|
@@ -52,7 +52,7 @@ const __DEV__ = typeof process !== 'undefined' && process?.env?.NODE_ENV !== 'pr
|
|
|
52
52
|
|
|
53
53
|
function Provider({ theme, children, ...props }: ProviderType): VNodeChild {
|
|
54
54
|
if (__DEV__) {
|
|
55
|
-
//
|
|
55
|
+
// oxlint-disable-next-line no-console
|
|
56
56
|
console.warn(
|
|
57
57
|
'[Pyreon] CoreProvider is internal. Use <PyreonUI theme={theme}> instead — it handles all context layers (styler, core, mode) in one component.',
|
|
58
58
|
)
|