@elementos-development/alchemy-ui 0.1.22 → 0.1.23
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/dist/forms/index.cjs +3 -1
- package/dist/forms/index.cjs.map +1 -1
- package/dist/forms/index.js +3 -1
- package/dist/forms/index.js.map +1 -1
- package/dist/index.cjs +33 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +64 -3
- package/dist/index.d.ts +64 -3
- package/dist/index.js +33 -3
- package/dist/index.js.map +1 -1
- package/dist/theme/index.d.mts +2 -2
- package/dist/theme/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/theme/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _mui_material from '@mui/material';
|
|
2
2
|
import { PaletteOptions, ThemeOptions, Components, Theme, Shadows } from '@mui/material/styles';
|
|
3
3
|
export { Theme } from '@mui/material/styles';
|
|
4
4
|
|
|
@@ -213,6 +213,6 @@ declare const opacities: {
|
|
|
213
213
|
96: number;
|
|
214
214
|
100: number;
|
|
215
215
|
};
|
|
216
|
-
declare const alchemyTheme:
|
|
216
|
+
declare const alchemyTheme: _mui_material.Theme;
|
|
217
217
|
|
|
218
218
|
export { type BrandTokens, alchemyTheme, borderRadius, components, createAlchemyTheme, customColors, opacities, palette, shadows, shapeConfig, spacingTokens, spacingUnit, transitionsConfig, typography, zIndex };
|
package/dist/theme/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _mui_material from '@mui/material';
|
|
2
2
|
import { PaletteOptions, ThemeOptions, Components, Theme, Shadows } from '@mui/material/styles';
|
|
3
3
|
export { Theme } from '@mui/material/styles';
|
|
4
4
|
|
|
@@ -213,6 +213,6 @@ declare const opacities: {
|
|
|
213
213
|
96: number;
|
|
214
214
|
100: number;
|
|
215
215
|
};
|
|
216
|
-
declare const alchemyTheme:
|
|
216
|
+
declare const alchemyTheme: _mui_material.Theme;
|
|
217
217
|
|
|
218
218
|
export { type BrandTokens, alchemyTheme, borderRadius, components, createAlchemyTheme, customColors, opacities, palette, shadows, shapeConfig, spacingTokens, spacingUnit, transitionsConfig, typography, zIndex };
|
package/package.json
CHANGED