@pyreon/ui-core 0.24.6 → 0.25.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/lib/index.js +5 -1
- package/package.json +6 -6
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { computed, registerSingleton, signal } from "@pyreon/reactivity";
|
|
1
2
|
import { ThemeContext, css, keyframes, styled } from "@pyreon/styler";
|
|
2
3
|
import { createReactiveContext, h, nativeCompat, provide, useContext } from "@pyreon/core";
|
|
3
|
-
import { computed, signal } from "@pyreon/reactivity";
|
|
4
4
|
import { enrichTheme } from "@pyreon/unistyle";
|
|
5
5
|
|
|
6
6
|
//#region src/compose.ts
|
|
@@ -538,6 +538,10 @@ const merge = (target, ...sources) => {
|
|
|
538
538
|
return target;
|
|
539
539
|
};
|
|
540
540
|
|
|
541
|
+
//#endregion
|
|
542
|
+
//#region src/index.ts
|
|
543
|
+
registerSingleton("@pyreon/ui-core", "0.24.6", import.meta.url);
|
|
544
|
+
|
|
541
545
|
//#endregion
|
|
542
546
|
export { HTML_TAGS, HTML_TEXT_TAGS, Provider, PyreonUI, compose, config, context, get, hoistNonReactStatics, init, isEmpty, isEqual, merge, omit, pick, render, set, throttle, useMode, useStableValue };
|
|
543
547
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyreon/ui-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.0",
|
|
4
4
|
"description": "Core utilities, config, and context for Pyreon UI System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -36,16 +36,16 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@pyreon/manifest": "0.13.1",
|
|
39
|
-
"@pyreon/typescript": "^0.
|
|
39
|
+
"@pyreon/typescript": "^0.25.0",
|
|
40
40
|
"@vitus-labs/tools-rolldown": "^2.4.0"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">= 22"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@pyreon/core": "^0.
|
|
47
|
-
"@pyreon/reactivity": "^0.
|
|
48
|
-
"@pyreon/styler": "^0.
|
|
49
|
-
"@pyreon/unistyle": "^0.
|
|
46
|
+
"@pyreon/core": "^0.25.0",
|
|
47
|
+
"@pyreon/reactivity": "^0.25.0",
|
|
48
|
+
"@pyreon/styler": "^0.25.0",
|
|
49
|
+
"@pyreon/unistyle": "^0.25.0"
|
|
50
50
|
}
|
|
51
51
|
}
|