rupoui 1.3.0 → 1.3.2

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 CHANGED
@@ -42,7 +42,7 @@ export default {
42
42
 
43
43
  Wrap your application with the `RupoUIProvider` to enable global configurations and styles:
44
44
 
45
- ````tsx
45
+ ```tsx
46
46
  import { RupoUIProvider } from "rupoui";
47
47
 
48
48
  function App() {
@@ -52,6 +52,7 @@ function App() {
52
52
  </RupoUIProvider>
53
53
  );
54
54
  }
55
+ ```
55
56
 
56
57
  ## 🎨 Theming & Semantic Colors
57
58
 
@@ -83,7 +84,7 @@ export default {
83
84
  }),
84
85
  ],
85
86
  };
86
- ````
87
+ ```
87
88
 
88
89
  ### Usage
89
90
 
@@ -32,6 +32,7 @@ export declare const spinner: import('tailwind-variants').TVReturnType<{
32
32
  };
33
33
  }, {
34
34
  base: string;
35
+ wrapper: string;
35
36
  }, undefined, {
36
37
  size: {
37
38
  sm: {
@@ -66,6 +67,7 @@ export declare const spinner: import('tailwind-variants').TVReturnType<{
66
67
  };
67
68
  }, {
68
69
  base: string;
70
+ wrapper: string;
69
71
  }, import('tailwind-variants').TVReturnType<{
70
72
  size: {
71
73
  sm: {
@@ -100,4 +102,5 @@ export declare const spinner: import('tailwind-variants').TVReturnType<{
100
102
  };
101
103
  }, {
102
104
  base: string;
105
+ wrapper: string;
103
106
  }, undefined, unknown, unknown, undefined>>;
@@ -1,6 +1,6 @@
1
1
  export type SpinnerProps = {
2
2
  size?: "sm" | "md" | "lg";
3
- color?: "current" | "primary" | "danger" | "success";
3
+ color?: "current" | "primary" | "secondary" | "success" | "warning" | "danger";
4
4
  className?: string;
5
5
  classNames?: Partial<Record<"base", string>>;
6
6
  };