@sito/ui 0.0.46 → 0.0.48

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.
@@ -0,0 +1,55 @@
1
+ export let screens: {
2
+ "2xl": {
3
+ max: string;
4
+ };
5
+ xl: {
6
+ max: string;
7
+ };
8
+ lg: {
9
+ max: string;
10
+ };
11
+ md: {
12
+ max: string;
13
+ };
14
+ sm: {
15
+ max: string;
16
+ };
17
+ };
18
+ export namespace color {
19
+ namespace dark {
20
+ let _default: string;
21
+ export { _default as default };
22
+ export let alter: string;
23
+ }
24
+ namespace light {
25
+ let _default_1: string;
26
+ export { _default_1 as default };
27
+ let alter_1: string;
28
+ export { alter_1 as alter };
29
+ }
30
+ let primary: {
31
+ default: string;
32
+ 200: string;
33
+ 300: string;
34
+ 400: string;
35
+ 500: string;
36
+ };
37
+ let secondary: {
38
+ default: string;
39
+ 200: string;
40
+ 300: string;
41
+ 400: string;
42
+ 500: string;
43
+ };
44
+ let ternary: {
45
+ default: string;
46
+ 200: string;
47
+ 300: string;
48
+ 400: string;
49
+ 500: string;
50
+ };
51
+ let error: string;
52
+ let warning: string;
53
+ let success: string;
54
+ let info: string;
55
+ }
@@ -1,6 +1,8 @@
1
+ import * as theme from "../assets/styles/theme";
1
2
  import { ReactNode } from "react";
2
3
  export interface StyleProviderProps {
3
4
  children: ReactNode;
4
5
  }
5
- export declare const StyleProvider: (props: StyleProviderProps) => import("react/jsx-runtime").JSX.Element;
6
- export declare const useStyle: () => {};
6
+ declare const StyleProvider: (props: StyleProviderProps) => import("react/jsx-runtime").JSX.Element;
7
+ declare const useStyle: () => {};
8
+ export { StyleProvider, useStyle, theme };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sito/ui",
3
3
  "private": false,
4
- "version": "0.0.46",
4
+ "version": "0.0.48",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/"