dt-shared-front 2.2.125 → 2.2.127

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.
@@ -70,4 +70,4 @@ export declare const Input: React.ForwardRefExoticComponent<{
70
70
  onChange?: (value: string, event: ChangeEvent<HTMLInputElement>) => void;
71
71
  onSearch?: ((val: string) => void) | ((val: string) => Promise<void>);
72
72
  valueTransformer?: (value: string) => string;
73
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLInputElement>>;
73
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "variant" | "size"> & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Modal } from './modal';
3
+ declare const meta: Meta<typeof Modal>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof Modal>;
6
+ export declare const Default: Story;
@@ -19,6 +19,7 @@ declare type IStackedInputProps<T> = {
19
19
  value?: string;
20
20
  isWbTheme?: boolean;
21
21
  onRenderOption?: (item: T) => ReactNode;
22
+ disabled?: boolean;
22
23
  } & ComponentProps<typeof Input> & Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'variant' | 'onChange'>;
23
24
  export declare const StackedInput: <T>(props: IStackedInputProps<T>, ref: Ref<HTMLInputElement>) => ReactElement;
24
25
  export {};
@@ -28,4 +28,4 @@ export declare const TextArea: React.ForwardRefExoticComponent<{
28
28
  onClear?: () => void;
29
29
  onSearch?: (e: any) => void;
30
30
  onChange?: (value: string, event?: ChangeEvent<HTMLTextAreaElement>) => void;
31
- } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLTextAreaElement>>;
31
+ } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange" | "variant" | "size"> & React.RefAttributes<HTMLTextAreaElement>>;