@sellgar/kit 0.0.73 → 0.0.74

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.73",
4
+ "version": "0.0.74",
5
5
  "description": "Storybook",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
@@ -3,7 +3,7 @@ interface IProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'st
3
3
  form?: 'icon-only';
4
4
  style?: 'primary' | 'secondary' | 'tertiary' | 'ghost';
5
5
  size?: 'lg' | 'md' | 'sm' | 'xs';
6
- target?: 'destructive';
6
+ target?: 'default' | 'destructive' | 'success' | 'info';
7
7
  shape?: 'rounded' | 'pill';
8
8
  leadIcon?: React.ReactNode;
9
9
  tailIcon?: React.ReactNode;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ interface IProps {
3
+ }
4
+ export declare const Container: React.FC<React.PropsWithChildren<IProps>>;
5
+ export {};
@@ -0,0 +1 @@
1
+ export { Container } from './container.tsx';
@@ -1,5 +1,4 @@
1
1
  export * from './icon';
2
- export * from './card';
3
2
  export * from './badge';
4
3
  export * from './button';
5
4
  export * from './button-icon';
@@ -8,6 +7,7 @@ export * from './button-dropdown';
8
7
  export * from './radio';
9
8
  export * from './checkbox';
10
9
  export * from './input';
10
+ export * from './input-mask';
11
11
  export * from './input-select';
12
12
  export * from './textarea';
13
13
  export * from './label-field';
@@ -25,5 +25,8 @@ export * from './notification';
25
25
  export * from './modal';
26
26
  export * from './select';
27
27
  export * from './datepicker';
28
+ export * from './card';
29
+ export * from './container';
28
30
  export * from './typography';
29
31
  export * from './link-typography';
32
+ export * from './spinner';
@@ -1 +1,2 @@
1
1
  export { Input } from './input.tsx';
2
+ export type { IProps as IInputProps } from './input.tsx';
@@ -1 +1,2 @@
1
1
  export { InputMask } from './input-mask.tsx';
2
+ export type { IProps as IInputMaskProps } from './input-mask.tsx';
@@ -4,5 +4,6 @@ import { IProps as IInputProps } from '../input/input.tsx';
4
4
  export interface IProps extends IInputProps {
5
5
  mask: string;
6
6
  replacement?: Replacement;
7
+ showMask?: boolean;
7
8
  }
8
9
  export declare const InputMask: React.FC<IProps>;
@@ -0,0 +1 @@
1
+ export { Spinner } from './spinner.tsx';
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const Spinner: React.FC;