@clickpalm/react 1.2.17 → 1.3.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.
- package/dist/index.d.ts +4 -0
- package/dist/index.js +566 -247
- package/dist/index.mjs +542 -222
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2309,6 +2309,7 @@ declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxProps, "ref
|
|
|
2309
2309
|
|
|
2310
2310
|
interface DatePickerInputProps {
|
|
2311
2311
|
label: string;
|
|
2312
|
+
placeholder?: string;
|
|
2312
2313
|
value?: string;
|
|
2313
2314
|
onChange: (date: string) => void;
|
|
2314
2315
|
errorMessage?: string;
|
|
@@ -2613,6 +2614,7 @@ declare const Tabs: React.FC<TabsProps> & {
|
|
|
2613
2614
|
|
|
2614
2615
|
declare const TextAreaElement: _stitches_react_types_styled_component.StyledComponent<"textarea", {
|
|
2615
2616
|
hasError?: boolean | "true" | undefined;
|
|
2617
|
+
hasCounter?: boolean | "true" | undefined;
|
|
2616
2618
|
}, {
|
|
2617
2619
|
sm: "(min-width: 375px)";
|
|
2618
2620
|
md: "(min-width: 768px)";
|
|
@@ -3055,6 +3057,7 @@ interface TextAreaProps extends ComponentPropsWithoutRef<'textarea'>, VariantPro
|
|
|
3055
3057
|
label?: string;
|
|
3056
3058
|
htmlFor?: string;
|
|
3057
3059
|
errorMessage?: string;
|
|
3060
|
+
maxLength?: number;
|
|
3058
3061
|
}
|
|
3059
3062
|
declare const TextArea: react.ForwardRefExoticComponent<TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
3060
3063
|
|
|
@@ -3084,6 +3087,7 @@ interface TextInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
3084
3087
|
suffix?: react__default.ReactNode;
|
|
3085
3088
|
noMargin?: boolean;
|
|
3086
3089
|
errorMessage?: string;
|
|
3090
|
+
maxLength?: number;
|
|
3087
3091
|
}
|
|
3088
3092
|
declare const Input: react__default.ForwardRefExoticComponent<TextInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
3089
3093
|
|