Fixed #7209 - Form components: wrong default value of variant prop in .d.ts files
parent
df90418496
commit
61cb4594b0
|
@ -391,9 +391,9 @@ export interface AutoCompleteProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* A property to uniquely identify an option.
|
* A property to uniquely identify an option.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -324,9 +324,9 @@ export interface CascadeSelectProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* A property to uniquely identify an option.
|
* A property to uniquely identify an option.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -136,9 +136,9 @@ export interface CheckboxProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* When present, it specifies that an input field is read-only.
|
* When present, it specifies that an input field is read-only.
|
||||||
* @default false
|
* @default false
|
||||||
|
|
|
@ -719,9 +719,9 @@ export interface DatePickerProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* When present, it specifies that an input field is read-only.
|
* When present, it specifies that an input field is read-only.
|
||||||
* @defaultValue false
|
* @defaultValue false
|
||||||
|
|
|
@ -162,9 +162,9 @@ export interface InputMaskProps {
|
||||||
size?: 'small' | 'large' | undefined;
|
size?: 'small' | 'large' | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Spans 100% width of the container when enabled.
|
* Spans 100% width of the container when enabled.
|
||||||
* @defaultValue null
|
* @defaultValue null
|
||||||
|
|
|
@ -339,9 +339,9 @@ export interface InputNumberProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* When present, it specifies that an input field is read-only.
|
* When present, it specifies that an input field is read-only.
|
||||||
* @defaultValue false
|
* @defaultValue false
|
||||||
|
|
|
@ -187,9 +187,9 @@ export interface InputOtpProps {
|
||||||
readonly?: boolean | undefined;
|
readonly?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Index of the element in tabbing order.
|
* Index of the element in tabbing order.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -106,7 +106,7 @@ export interface InputTextProps extends Omit<InputHTMLAttributes, 'size'> {
|
||||||
invalid?: boolean | undefined | null;
|
invalid?: boolean | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined | null;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -377,9 +377,9 @@ export interface MultiSelectProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Spans 100% width of the container when enabled.
|
* Spans 100% width of the container when enabled.
|
||||||
* @defaultValue null
|
* @defaultValue null
|
||||||
|
|
|
@ -247,9 +247,9 @@ export interface PasswordProps extends Omit<InputHTMLAttributes, 'size'> {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Placeholder text for the input.
|
* Placeholder text for the input.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -130,9 +130,9 @@ export interface RadioButtonProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* When present, it specifies that an input field is read-only.
|
* When present, it specifies that an input field is read-only.
|
||||||
* @default false
|
* @default false
|
||||||
|
|
|
@ -379,9 +379,9 @@ export interface SelectProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* A property to uniquely identify an option.
|
* A property to uniquely identify an option.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -115,9 +115,9 @@ export interface TextareaProps extends TextareaHTMLAttributes {
|
||||||
invalid?: boolean | undefined;
|
invalid?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Spans 100% width of the container when enabled.
|
* Spans 100% width of the container when enabled.
|
||||||
* @defaultValue null
|
* @defaultValue null
|
||||||
|
|
|
@ -303,9 +303,9 @@ export interface TreeSelectProps {
|
||||||
disabled?: boolean | undefined;
|
disabled?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Specifies the input variant of the component.
|
* Specifies the input variant of the component.
|
||||||
* @defaultValue outlined
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
variant?: 'outlined' | 'filled' | undefined;
|
variant?: 'outlined' | 'filled' | undefined | null;
|
||||||
/**
|
/**
|
||||||
* Index of the element in tabbing order.
|
* Index of the element in tabbing order.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue