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,28 +1,28 @@
const ProgressbarProps = [
{
name: "value",
type: "number",
default: "null",
description: "Current value of the progress."
name: 'value',
type: 'number',
default: 'null',
description: 'Current value of the progress.'
},
{
name: "mode",
type: "string",
default: "determinate",
name: 'mode',
type: 'string',
default: 'determinate',
description: 'Defines the mode of the progress, valid values are "determinate" and "indeterminate".'
},
{
name: "showValue",
type: "boolean",
default: "true",
description: "Whether to display the progress bar value."
name: 'showValue',
type: 'boolean',
default: 'true',
description: 'Whether to display the progress bar value.'
}
];
module.exports = {
progressbar: {
name: "ProgressBar",
description: "ProgressBar is a process status indicator.",
name: 'ProgressBar',
description: 'ProgressBar is a process status indicator.',
props: ProgressbarProps
}
};