@axzydev/axzy_ui_system 1.0.159 → 1.0.160
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 +61 -37
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4613,9 +4613,18 @@ import { useMemo as useMemo4 } from "react";
|
|
|
4613
4613
|
import { Fragment as Fragment5, jsx as jsx27, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
4614
4614
|
function ITThemeProvider({ theme: theme2, children }) {
|
|
4615
4615
|
const activeThemeContext = useMemo4(() => {
|
|
4616
|
+
const baseColors = {
|
|
4617
|
+
primary: palette.blue,
|
|
4618
|
+
secondary: palette.gray,
|
|
4619
|
+
success: palette.success,
|
|
4620
|
+
danger: palette.danger,
|
|
4621
|
+
warning: palette.warning,
|
|
4622
|
+
info: palette.cyan,
|
|
4623
|
+
purple: palette.purple
|
|
4624
|
+
};
|
|
4616
4625
|
return {
|
|
4617
4626
|
colors: {
|
|
4618
|
-
...
|
|
4627
|
+
...baseColors,
|
|
4619
4628
|
...theme2?.colors
|
|
4620
4629
|
},
|
|
4621
4630
|
layout: {
|