pge-front-common 14.1.27 → 14.1.28
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export type TextAlignType = "start" | "end" | "center";
|
|
3
3
|
export interface TextareaBaseProps extends Partial<HTMLTextAreaElement> {
|
|
4
|
-
label?: string;
|
|
4
|
+
label?: string | React.ReactNode;
|
|
5
5
|
hasError?: boolean;
|
|
6
6
|
textError?: string;
|
|
7
7
|
message?: string;
|
package/lib/index.d.ts
CHANGED
|
@@ -394,7 +394,7 @@ declare const Tooltip: ({ text, children, forceVisible }: TooltipProps$1) => Rea
|
|
|
394
394
|
|
|
395
395
|
type TextAlignType = "start" | "end" | "center";
|
|
396
396
|
interface TextareaBaseProps extends Partial<HTMLTextAreaElement> {
|
|
397
|
-
label?: string;
|
|
397
|
+
label?: string | React__default.ReactNode;
|
|
398
398
|
hasError?: boolean;
|
|
399
399
|
textError?: string;
|
|
400
400
|
message?: string;
|