Lint changes

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 17:26:41 +03:00
parent eb2de5460c
commit 4d3a071e66
291 changed files with 28450 additions and 26621 deletions

View file

@ -1,86 +1,86 @@
const RadioButtonProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value of the checkbox."
name: 'value',
type: 'any',
default: 'null',
description: 'Value of the checkbox.'
},
{
name: "modelValue",
type: "any",
default: "null",
description: "Value binding of the checkbox."
name: 'modelValue',
type: 'any',
default: 'null',
description: 'Value binding of the checkbox.'
},
{
name: "name",
type: "string",
default: "null",
description: "Name of the input element."
name: 'name',
type: 'string',
default: 'null',
description: 'Name of the input element.'
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the element should be disabled."
name: 'disabled',
type: 'boolean',
default: 'false',
description: 'When present, it specifies that the element should be disabled.'
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
name: 'inputId',
type: 'string',
default: 'null',
description: 'Identifier of the underlying input element.'
},
{
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
name: 'inputClass',
type: 'string',
default: 'null',
description: 'Style class of the input field.'
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
name: 'inputStyle',
type: 'any',
default: 'null',
description: 'Inline style of the input field.'
},
{
name: "inputProps",
type: "object",
default: "null",
description: "Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component."
name: 'inputProps',
type: 'object',
default: 'null',
description: 'Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.'
},
{
name: "aria-labelledby",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
name: 'aria-labelledby',
type: 'string',
default: 'null',
description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.'
},
{
name: "aria-label",
type: "string",
default: "null",
description: "Used to define a string that labels the element."
name: 'aria-label',
type: 'string',
default: 'null',
description: 'Used to define a string that labels the element.'
}
];
const RadioButtonEvents = [
{
name: "click",
description: "Callback to invoke on radio button click.",
name: 'click',
description: 'Callback to invoke on radio button click.',
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
name: 'event',
type: 'object',
description: 'Browser event'
}
]
},
{
name: "change",
description: "Callback to invoke on radio button value change.",
name: 'change',
description: 'Callback to invoke on radio button value change.',
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
name: 'event',
type: 'object',
description: 'Browser event'
}
]
}
@ -88,8 +88,8 @@ const RadioButtonEvents = [
module.exports = {
radiobutton: {
name: "RadioButton",
description: "RadioButton is an extension to standard radio button element with theming.",
name: 'RadioButton',
description: 'RadioButton is an extension to standard radio button element with theming.',
props: RadioButtonProps,
events: RadioButtonEvents
}