dt-shared-front 2.2.25 → 2.2.27

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.
@@ -14,7 +14,8 @@ export declare enum EIconVariant {
14
14
  warning = "warning",
15
15
  initial = "initial",
16
16
  light = "light",
17
- inherit = "inherit"
17
+ inherit = "inherit",
18
+ green = "green"
18
19
  }
19
20
  interface IIconProps {
20
21
  size?: keyof typeof EIconSize;
@@ -62,4 +62,4 @@ export declare const Input: React.ForwardRefExoticComponent<{
62
62
  onPointerUp?: (e: any) => void;
63
63
  onChange?: (value: string, event: ChangeEvent<HTMLInputElement>) => void;
64
64
  onSearch?: ((val: string) => void) | ((val: string) => Promise<void>);
65
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLInputElement>>;
65
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "variant" | "size"> & React.RefAttributes<HTMLInputElement>>;
@@ -3,6 +3,7 @@ interface ILoaderProps {
3
3
  absolute?: boolean;
4
4
  fixed?: boolean;
5
5
  active?: boolean;
6
+ id?: string;
6
7
  }
7
8
  export declare const Loader: (props: ILoaderProps) => React.JSX.Element;
8
9
  export {};
@@ -26,4 +26,4 @@ export declare const TextArea: React.ForwardRefExoticComponent<{
26
26
  onClear?: () => void;
27
27
  onSearch?: (e: any) => void;
28
28
  onChange?: (value: string, event?: ChangeEvent<HTMLTextAreaElement>) => void;
29
- } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLTextAreaElement>>;
29
+ } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange" | "variant" | "size"> & React.RefAttributes<HTMLTextAreaElement>>;
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export type { IMediaMatches } from './components/media';
21
21
  export { Menu } from './components/menu';
22
22
  export { Modal, ModalProvider, useModal } from './components/modal';
23
23
  export type { PropsWithModal } from './components/modal';
24
+ export { Gallery } from './components/gallery';
24
25
  export { Radio } from './components/radio';
25
26
  export { RangePicker } from './components/range-picker';
26
27
  export { Select } from './components/select';