@julseb-lib/react 1.0.59 → 1.0.61
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.
|
@@ -359,6 +359,7 @@ type ILibSelectInput = Omit<SelectHTMLAttributes<HTMLSelectElement>, "prefix"> &
|
|
|
359
359
|
type ILibTextareaInput = TextareaHTMLAttributes<HTMLTextAreaElement> & Omit<ILibInputExtended, "inputVariant"> & ILibInputWithValidation & {
|
|
360
360
|
ref?: Ref<HTMLTextAreaElement>;
|
|
361
361
|
type: "textarea";
|
|
362
|
+
counter?: boolean;
|
|
362
363
|
};
|
|
363
364
|
type ILibTextInput = Omit<InputHTMLAttributes<HTMLInputElement>, "prefix"> & ILibInputExtended & ILibInputWithIcon & ILibInputWithValidation & ILibInputWithPrefix & ILibInputWithSuffix & {
|
|
364
365
|
type?: "email" | "number" | "tel" | "text" | "url" | undefined;
|
|
@@ -523,7 +524,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
523
524
|
};
|
|
524
525
|
|
|
525
526
|
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
526
|
-
legend:
|
|
527
|
+
legend: ReactChildren;
|
|
527
528
|
borderRadius?: LibRadiuses;
|
|
528
529
|
};
|
|
529
530
|
|
|
@@ -359,6 +359,7 @@ type ILibSelectInput = Omit<SelectHTMLAttributes<HTMLSelectElement>, "prefix"> &
|
|
|
359
359
|
type ILibTextareaInput = TextareaHTMLAttributes<HTMLTextAreaElement> & Omit<ILibInputExtended, "inputVariant"> & ILibInputWithValidation & {
|
|
360
360
|
ref?: Ref<HTMLTextAreaElement>;
|
|
361
361
|
type: "textarea";
|
|
362
|
+
counter?: boolean;
|
|
362
363
|
};
|
|
363
364
|
type ILibTextInput = Omit<InputHTMLAttributes<HTMLInputElement>, "prefix"> & ILibInputExtended & ILibInputWithIcon & ILibInputWithValidation & ILibInputWithPrefix & ILibInputWithSuffix & {
|
|
364
365
|
type?: "email" | "number" | "tel" | "text" | "url" | undefined;
|
|
@@ -523,7 +524,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
523
524
|
};
|
|
524
525
|
|
|
525
526
|
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
526
|
-
legend:
|
|
527
|
+
legend: ReactChildren;
|
|
527
528
|
borderRadius?: LibRadiuses;
|
|
528
529
|
};
|
|
529
530
|
|