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,15 +1,15 @@
const PortalProps = [
{
name: "appendTo",
type: "string",
default: "body",
name: 'appendTo',
type: 'string',
default: 'body',
description: 'A valid query selector or an HTMLElement to specify where the dialog gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "If disabled, the Portal feature is eliminated and the content is displayed directly."
name: 'disabled',
type: 'boolean',
default: 'false',
description: 'If disabled, the Portal feature is eliminated and the content is displayed directly.'
}
];
@ -19,8 +19,8 @@ const PortalSlots = [];
module.exports = {
portal: {
name: "Portal",
description: "Portal moves its container to a specific location based on target elements. Basically it uses <Teleport> in the background.",
name: 'Portal',
description: 'Portal moves its container to a specific location based on target elements. Basically it uses <Teleport> in the background.',
props: PortalProps,
events: PortalEvents,
slots: PortalSlots