Update api-generator

pull/4101/head^2
Tuğçe Küçükoğlu 2023-07-06 16:20:37 +03:00
parent 5f53eb3919
commit f8f071f5ff
81 changed files with 496 additions and 0 deletions

View File

@ -46,6 +46,12 @@ const AccordionProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -256,6 +256,12 @@ const AutoCompleteProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const AvatarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const AvatarGroupProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const BadgeProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const BlockUIProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const BreadcrumbProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -100,6 +100,12 @@ const ButtonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -322,6 +322,12 @@ const CalendarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -1,3 +1,18 @@
const CardProps = [
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
}
];
const CardSlots = [ const CardSlots = [
{ {
name: 'header', name: 'header',
@ -25,6 +40,7 @@ module.exports = {
card: { card: {
name: 'Card', name: 'Card',
description: 'Card is a flexible container component.', description: 'Card is a flexible container component.',
props: CardProps,
slots: CardSlots slots: CardSlots
} }
}; };

View File

@ -88,6 +88,12 @@ const CarouselProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -190,6 +190,12 @@ const CascadeSelectProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const ChartProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -94,6 +94,12 @@ const CheckboxProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const ChipProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -70,6 +70,12 @@ const ChipsProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -76,6 +76,12 @@ const ColorPickerProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const ConfirmDialogProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -10,6 +10,12 @@ const ConfirmPopupProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const ContextMenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -383,6 +383,12 @@ const DataTableProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -100,6 +100,12 @@ const DataViewProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -4,6 +4,12 @@ const DeferredContentProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -136,6 +136,12 @@ const DialogProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const DividerProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const DockProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -262,6 +262,12 @@ const DropdownProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const EditorProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const FieldsetProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -148,6 +148,12 @@ const FileUploadProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -148,6 +148,12 @@ const GalleriaProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const ImageProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -16,6 +16,12 @@ const InlineMessageProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const InplaceProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const InputMaskProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -188,6 +188,12 @@ const InputNumberProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -46,6 +46,12 @@ const InputSwitchProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -16,6 +16,12 @@ const InputTextProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -100,6 +100,12 @@ const KnobProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -179,6 +179,12 @@ const ListboxProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const MegaMenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const MenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -16,6 +16,12 @@ const MenubarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const MessageProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -298,6 +298,12 @@ const MultiSelectProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -53,6 +53,12 @@ const OrderListProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const OrganizationChartProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -52,6 +52,12 @@ const OverlayPanelProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -52,6 +52,12 @@ const PaginatorProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const PanelProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const PanelMenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -142,6 +142,12 @@ const PasswordProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -65,6 +65,12 @@ const PickListProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const ProgressbarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const ProgressSpinnerProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -64,6 +64,12 @@ const RadioButtonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -52,6 +52,12 @@ const RatingProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -10,6 +10,12 @@ const ScrollPanelProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const ScrollTopProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -64,6 +64,12 @@ const SelectButtonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -64,6 +64,12 @@ const SidebarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const SkeletonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -64,6 +64,12 @@ const SliderProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -112,6 +112,12 @@ const SpeedDialProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -106,6 +106,12 @@ const SplitButtonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const SplitterProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const StepsProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -22,6 +22,12 @@ const TabMenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -58,6 +58,12 @@ const TabViewProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const TagProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -16,6 +16,12 @@ const TerminalProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -16,6 +16,12 @@ const TextareaProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const TieredMenuProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -28,6 +28,12 @@ const TimelineProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -34,6 +34,12 @@ const ToastProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -76,6 +76,12 @@ const ToggleButtonProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -10,6 +10,12 @@ const ToolbarProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -83,6 +83,12 @@ const TreeProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -107,6 +107,12 @@ const TreeSelectProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -227,6 +227,12 @@ const TreeTableProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];

View File

@ -46,6 +46,12 @@ const TriStateCheckboxProps = [
type: 'any', type: 'any',
default: 'null', default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.' description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
} }
]; ];