@useloops/design-system 1.4.54 → 1.4.56
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/dist/esm/index.js +10 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +10 -4
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -575,8 +575,8 @@ declare const Switch: _emotion_styled.StyledComponent<SwitchProps & _mui_system.
|
|
|
575
575
|
type InputFieldBaseProps = TextFieldProps$1;
|
|
576
576
|
|
|
577
577
|
type TextareaProps = InputFieldBaseProps & {
|
|
578
|
-
|
|
579
|
-
|
|
578
|
+
startAdornment?: ReactElement;
|
|
579
|
+
endAdornment?: ReactElement;
|
|
580
580
|
internalChange?: () => void;
|
|
581
581
|
};
|
|
582
582
|
declare const Textarea: FunctionComponent<TextareaProps>;
|
|
@@ -597,8 +597,8 @@ interface TextBarDividerProps {
|
|
|
597
597
|
declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;
|
|
598
598
|
|
|
599
599
|
type TextFieldProps = InputFieldBaseProps & {
|
|
600
|
-
|
|
601
|
-
|
|
600
|
+
startAdornment?: ReactElement;
|
|
601
|
+
endAdornment?: ReactElement;
|
|
602
602
|
internalChange?: () => void;
|
|
603
603
|
};
|
|
604
604
|
declare const TextField: FunctionComponent<TextFieldProps>;
|