next-helios-fe 1.7.28 → 1.8.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.
@@ -18,6 +18,7 @@ import { type TextareaProps } from "./other/textarea";
|
|
18
18
|
import { type SelectProps } from "./other/select";
|
19
19
|
import { type MultipleSelectProps } from "./other/multipleSelect";
|
20
20
|
import { type AutocompleteProps } from "./other/autocomplete";
|
21
|
+
import { type RateProps } from "./other/rate";
|
21
22
|
import { type EmojiProps } from "./other/emoji";
|
22
23
|
interface FormProps extends React.FormHTMLAttributes<HTMLFormElement> {
|
23
24
|
children: React.ReactNode;
|
@@ -42,6 +43,7 @@ interface FormComponent extends React.FC<FormProps> {
|
|
42
43
|
Select: React.FC<SelectProps>;
|
43
44
|
MultipleSelect: React.FC<MultipleSelectProps>;
|
44
45
|
Autocomplete: React.FC<AutocompleteProps>;
|
46
|
+
Rate: React.FC<RateProps>;
|
45
47
|
Emoji: React.FC<EmojiProps>;
|
46
48
|
}
|
47
49
|
export declare const Form: FormComponent;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from "react";
|
2
|
+
export interface RateProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
3
|
+
label?: string;
|
4
|
+
description?: string;
|
5
|
+
options?: {
|
6
|
+
height?: "short" | "medium" | "high";
|
7
|
+
};
|
8
|
+
}
|
9
|
+
export declare const Rate: React.FC<RateProps>;
|