@julien-wiegandt/open-ui 0.1.39 → 0.1.41
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/open-ui.js +216 -226
- package/dist/open-ui.umd.cjs +16 -16
- package/dist/theme/create-theme.d.ts +0 -1
- package/dist/theme/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/theme/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type Radius = "none" | "sm" | "md" | "lg" | "full";
|
|
2
2
|
export type Variant = "contained" | "outlined" | "text";
|
|
3
3
|
export type Elevation = 0 | 1 | 2 | 3 | 4 | 6 | 8;
|
|
4
|
-
export type Color = "default" | "primary" | "
|
|
4
|
+
export type Color = "default" | "primary" | "error";
|
|
5
5
|
export type Palette = {
|
|
6
6
|
[key in Color]: {
|
|
7
7
|
main: string;
|