@sellgar/kit 0.0.152 → 0.0.154

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sellgar/kit",
3
3
  "type": "module",
4
- "version": "0.0.152",
4
+ "version": "0.0.154",
5
5
  "description": "Sellgar kit",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { iconName, TIconName } from './icon.types.ts';
3
3
  interface IProps {
4
+ className?: string;
4
5
  icon: TIconName;
5
6
  }
6
7
  export declare const IconComponent: React.FC<IProps>;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const Exception: () => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { Exception } from './exception.tsx';
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface IProps extends Omit<React.ImgHTMLAttributes<HTMLImageElement>, 'alt' | 'width' | 'height'> {
3
+ width?: number;
4
+ height?: number;
5
+ }
6
+ export declare const Image: React.FC<IProps>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export { Image } from './image.tsx';
@@ -0,0 +1 @@
1
+ export { Process } from './process.tsx';
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const Process: () => React.JSX.Element;
@@ -24,6 +24,7 @@ export * from './select';
24
24
  export * from './select-tree';
25
25
  export * from './datepicker';
26
26
  export * from './tab-menu';
27
+ export * from './image';
27
28
  export * from './card';
28
29
  export * from './container';
29
30
  export * from './typography';