xtreme-ui 0.0.7 → 0.0.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -10
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -41,7 +41,7 @@ declare enum EButtonSize {
41
41
  large = "large"
42
42
  }
43
43
 
44
- declare enum EButtonTypes {
44
+ export declare enum EButtonTypes {
45
45
  primary = "primary",
46
46
  primaryDanger = "primaryDanger",
47
47
  secondary = "secondary",
@@ -55,13 +55,13 @@ declare enum EElementObserverEvent {
55
55
  removed = "removed"
56
56
  }
57
57
 
58
- declare enum EIconSize {
58
+ export declare enum EIconSize {
59
59
  mini = 12,
60
60
  default = 18,
61
61
  large = 24
62
62
  }
63
63
 
64
- declare enum EIconType {
64
+ export declare enum EIconType {
65
65
  thin = "thin",
66
66
  light = "light",
67
67
  regular = "regular",
@@ -147,14 +147,14 @@ export declare const getCssPropertyVw: (property: string, element: RefObject<HTM
147
147
 
148
148
  export declare const Icon: ForwardRefExoticComponent<IIconProps & RefAttributes<HTMLSpanElement>>;
149
149
 
150
- declare type IIconProps = {
150
+ export declare type IIconProps = {
151
151
  className?: string;
152
152
  code: string;
153
153
  type?: keyof typeof EIconType;
154
154
  size?: number | keyof typeof EIconSize;
155
155
  };
156
156
 
157
- declare type IProgressBarProps = {
157
+ export declare type IProgressBarProps = {
158
158
  className?: string;
159
159
  progress?: number;
160
160
  intermediate?: boolean;
@@ -174,23 +174,23 @@ export declare const setCssProperty: (property: string, value: string, element:
174
174
 
175
175
  export declare const Sider: ForwardRefExoticComponent<TSiderProps & RefAttributes<HTMLDivElement>>;
176
176
 
177
- declare type TButtonProps = ButtonWithLabel | ButtonWithIconName;
177
+ export declare type TButtonProps = ButtonWithLabel | ButtonWithIconName;
178
178
 
179
179
  export declare const Textfield: ForwardRefExoticComponent<TTextfieldProps & RefAttributes<HTMLInputElement>>;
180
180
 
181
- declare type TNavigationProps = {
181
+ export declare type TNavigationProps = {
182
182
  className?: string;
183
183
  Routes?: FC<TNavigationRoute>;
184
184
  };
185
185
 
186
- declare type TNavigationRoute = {
186
+ export declare type TNavigationRoute = {
187
187
  className: string;
188
188
  activeClassName: string;
189
189
  iconClassName: string;
190
190
  labelClassName: string;
191
191
  };
192
192
 
193
- declare type TSiderProps = {
193
+ export declare type TSiderProps = {
194
194
  className?: string;
195
195
  children?: ReactNode;
196
196
  leftSider?: ReactNode;
@@ -201,7 +201,7 @@ declare type TSiderProps = {
201
201
  setOpen?: (open: boolean) => void;
202
202
  };
203
203
 
204
- declare type TTextfieldProps = {
204
+ export declare type TTextfieldProps = {
205
205
  className?: string;
206
206
  type?: keyof typeof ETextfieldType;
207
207
  textarea?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xtreme-ui",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "description": "Collection of reusable components that can be used in web projects",
6
6
  "main": "dist/index.umd.js",