@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.
@@ -2,7 +2,6 @@ import { Radius, Theme } from './types';
2
2
  export declare const createTheme: (props: {
3
3
  radius: Radius;
4
4
  primary: string;
5
- secondary: string;
6
5
  default?: string;
7
6
  error?: string;
8
7
  }) => Theme;
@@ -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" | "secondary" | "error";
4
+ export type Color = "default" | "primary" | "error";
5
5
  export type Palette = {
6
6
  [key in Color]: {
7
7
  main: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@julien-wiegandt/open-ui",
3
3
  "private": false,
4
- "version": "0.1.39",
4
+ "version": "0.1.41",
5
5
  "description": "The best open source react UI library",
6
6
  "type": "module",
7
7
  "main": "./dist/open-ui.umd.cjs",