@mindly/ui-components 3.29.2 → 3.30.0

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.
@@ -139,3 +139,7 @@ export { default as ImageInput } from './lib/Inputs/ImageInput';
139
139
  export * from './lib/Inputs/ImageInput';
140
140
  export { default as PasswordInput } from './lib/Inputs/PasswordInput';
141
141
  export * from './lib/Inputs/PasswordInput';
142
+ export { default as CustomTextarea } from './lib/Inputs/CustomTextarea';
143
+ export * from './lib/Inputs/CustomTextarea';
144
+ export { default as CustomSelect } from './lib/Inputs/CustomSelect';
145
+ export * from './lib/Inputs/CustomSelect';
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ declare type CustomSelectProps = {
3
+ options: {
4
+ id: string | number;
5
+ label: string | number;
6
+ }[];
7
+ selected?: string | number;
8
+ isError?: boolean;
9
+ } & React.SelectHTMLAttributes<HTMLSelectElement>;
10
+ declare const _default: React.NamedExoticComponent<CustomSelectProps>;
11
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const CustomSelectWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './CustomSelect';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare type CustomTextareaProps = {
3
+ isError?: boolean;
4
+ } & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
5
+ declare const _default: React.NamedExoticComponent<CustomTextareaProps>;
6
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const TextareaWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './CustomTextarea';
@@ -1,3 +1,6 @@
1
1
  import React from 'react';
2
- declare const TextInput: React.FC;
3
- export default TextInput;
2
+ declare type TextInputProps = {
3
+ isError?: boolean;
4
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
5
+ declare const _default: React.NamedExoticComponent<TextInputProps>;
6
+ export default _default;