mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-06 15:30:30 +08:00
feat(blocks): Remove skeleton definition on blocks.
This commit is contained in:
parent
3ec944b752
commit
f938a51268
@ -39,7 +39,6 @@ const AffixBlock = ({ blockId, content, methods, properties, rename }) => (
|
||||
AffixBlock.defaultProps = blockDefaultProps;
|
||||
AffixBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Affix/style.less'],
|
||||
};
|
||||
|
@ -53,14 +53,6 @@ const AlertBlock = ({ blockId, content, events, components: { Icon }, methods, p
|
||||
AlertBlock.defaultProps = blockDefaultProps;
|
||||
AlertBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 40,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Alert/style.less'],
|
||||
};
|
||||
|
@ -113,7 +113,6 @@ AutoCompleteInput.defaultProps = blockDefaultProps;
|
||||
AutoCompleteInput.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/AutoComplete/style.less'],
|
||||
};
|
||||
|
@ -47,11 +47,6 @@ const AvatarBlock = ({ blockId, events, components: { Icon }, methods, propertie
|
||||
AvatarBlock.defaultProps = blockDefaultProps;
|
||||
AvatarBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonAvatar',
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Avatar/style.less'],
|
||||
};
|
||||
|
@ -45,7 +45,6 @@ const BadgeBlock = ({ blockId, events, content, components: { Icon }, properties
|
||||
BadgeBlock.defaultProps = blockDefaultProps;
|
||||
BadgeBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Badge/style.less'],
|
||||
};
|
||||
|
@ -78,14 +78,6 @@ const BreadcrumbBlock = ({
|
||||
BreadcrumbBlock.defaultProps = blockDefaultProps;
|
||||
BreadcrumbBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Breadcrumb/style.less'],
|
||||
};
|
||||
|
@ -78,7 +78,6 @@ const ButtonBlock = ({
|
||||
ButtonBlock.defaultProps = blockDefaultProps;
|
||||
ButtonBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Button/style.less'],
|
||||
};
|
||||
|
@ -100,7 +100,6 @@ ButtonSelector.defaultProps = blockDefaultProps;
|
||||
ButtonSelector.meta = {
|
||||
valueType: 'any',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/ButtonSelector/style.less'],
|
||||
};
|
||||
|
@ -42,14 +42,6 @@ const CardBlock = ({ blockId, content, properties, methods, events }) => (
|
||||
CardBlock.defaultProps = blockDefaultProps;
|
||||
CardBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Card/style.less'],
|
||||
};
|
||||
|
@ -107,7 +107,6 @@ CheckboxSelector.defaultProps = blockDefaultProps;
|
||||
CheckboxSelector.meta = {
|
||||
valueType: 'array',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/CheckboxSelector/style.less'],
|
||||
};
|
||||
|
@ -74,7 +74,6 @@ CheckboxSwitch.defaultProps = blockDefaultProps;
|
||||
CheckboxSwitch.meta = {
|
||||
valueType: 'boolean',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/CheckboxSwitch/style.less'],
|
||||
};
|
||||
|
@ -74,14 +74,6 @@ const CollapseBlock = ({ blockId, events, content, components: { Icon }, methods
|
||||
CollapseBlock.defaultProps = blockDefaultProps;
|
||||
CollapseBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Collapse/style.less'],
|
||||
};
|
||||
|
@ -50,11 +50,6 @@ const CommentBlock = ({ blockId, components, content, properties, methods }) =>
|
||||
CommentBlock.defaultProps = blockDefaultProps;
|
||||
CommentBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Comment/style.less'],
|
||||
};
|
||||
|
@ -64,7 +64,6 @@ const ConfirmModal = ({ blockId, events, content, components: { Icon }, methods,
|
||||
ConfirmModal.defaultProps = blockDefaultProps;
|
||||
ConfirmModal.meta = {
|
||||
category: 'container',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/ConfirmModal/style.less'],
|
||||
};
|
||||
|
@ -29,7 +29,6 @@ const ContentBlock = ({ blockId, content, methods, properties }) => (
|
||||
ContentBlock.defaultProps = blockDefaultProps;
|
||||
ContentBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Content/style.less'],
|
||||
};
|
||||
|
@ -146,14 +146,6 @@ ControlledListBlock.defaultProps = blockDefaultProps;
|
||||
ControlledListBlock.meta = {
|
||||
valueType: 'array',
|
||||
category: 'list',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: ['AiOutlinePlus', 'AiOutlineMinusCircle'],
|
||||
styles: ['blocks/ControlledList/style.less'],
|
||||
};
|
||||
|
@ -104,7 +104,6 @@ DateRangeSelector.defaultProps = blockDefaultProps;
|
||||
DateRangeSelector.meta = {
|
||||
valueType: 'array',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCalendar'],
|
||||
styles: ['blocks/DateRangeSelector/style.less'],
|
||||
};
|
||||
|
@ -89,7 +89,6 @@ DateSelector.defaultProps = blockDefaultProps;
|
||||
DateSelector.meta = {
|
||||
valueType: 'date',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCalendar'],
|
||||
styles: ['blocks/DateSelector/style.less'],
|
||||
};
|
||||
|
@ -112,7 +112,6 @@ DateTimeSelector.defaultProps = blockDefaultProps;
|
||||
DateTimeSelector.meta = {
|
||||
valueType: 'date',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCalendar'],
|
||||
styles: ['blocks/DateTimeSelector/style.less'],
|
||||
};
|
||||
|
@ -79,14 +79,6 @@ const DescriptionsBlock = ({ blockId, content, properties, methods }) => {
|
||||
DescriptionsBlock.defaultProps = blockDefaultProps;
|
||||
DescriptionsBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Descriptions/style.less'],
|
||||
};
|
||||
|
@ -34,14 +34,6 @@ const DividerBlock = ({ blockId, properties, methods }) => (
|
||||
DividerBlock.defaultProps = blockDefaultProps;
|
||||
DividerBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 5,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Divider/style.less'],
|
||||
};
|
||||
|
@ -79,7 +79,6 @@ const DrawerBlock = ({ blockId, content, properties, methods, rename, onClose })
|
||||
DrawerBlock.defaultProps = blockDefaultProps;
|
||||
DrawerBlock.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Drawer/style.less'],
|
||||
};
|
||||
|
@ -32,7 +32,6 @@ const FooterBlock = ({ blockId, content, methods, properties }) => (
|
||||
FooterBlock.defaultProps = blockDefaultProps;
|
||||
FooterBlock.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Footer/style.less'],
|
||||
};
|
||||
|
@ -38,7 +38,6 @@ const HeaderBlock = ({ blockId, content, methods, properties }) => (
|
||||
HeaderBlock.defaultProps = blockDefaultProps;
|
||||
HeaderBlock.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Header/style.less'],
|
||||
};
|
||||
|
@ -105,7 +105,6 @@ const Label = ({
|
||||
Label.defaultProps = blockDefaultProps;
|
||||
Label.meta = {
|
||||
category: 'container',
|
||||
skeleton: false,
|
||||
icons: ['AiFillCloseCircle', 'AiFillCheckCircle', 'AiOutlineLoading', 'AiFillExclamationCircle'],
|
||||
styles: ['blocks/Label/style.less'],
|
||||
};
|
||||
|
@ -27,14 +27,6 @@ const LayoutBlock = ({ blockId, content, properties, methods }) => (
|
||||
LayoutBlock.defaultProps = blockDefaultProps;
|
||||
LayoutBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Layout/style.less'],
|
||||
};
|
||||
|
@ -344,7 +344,6 @@ const MenuComp = ({
|
||||
MenuComp.defaultProps = blockDefaultProps;
|
||||
MenuComp.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Menu/style.less'],
|
||||
};
|
||||
|
@ -44,7 +44,6 @@ const MessageBlock = ({ blockId, components: { Icon }, events, methods, properti
|
||||
MessageBlock.defaultProps = blockDefaultProps;
|
||||
MessageBlock.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Message/style.less'],
|
||||
};
|
||||
|
@ -121,7 +121,6 @@ const MobileMenu = ({
|
||||
MobileMenu.defaultProps = blockDefaultProps;
|
||||
MobileMenu.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: ['AiOutlineMenuUnfold', 'AiOutlineMenuFold'],
|
||||
styles: ['blocks/MobileMenu/style.less'],
|
||||
};
|
||||
|
@ -93,7 +93,6 @@ const ModalBlock = ({ blockId, content, events, methods, properties }) => {
|
||||
ModalBlock.defaultProps = blockDefaultProps;
|
||||
ModalBlock.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Modal/style.less'],
|
||||
};
|
||||
|
@ -93,7 +93,6 @@ MonthSelector.defaultProps = blockDefaultProps;
|
||||
MonthSelector.meta = {
|
||||
valueType: 'date',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCalendar'],
|
||||
styles: ['blocks/MonthSelector/style.less'],
|
||||
};
|
||||
|
@ -152,7 +152,6 @@ MultipleSelector.defaultProps = blockDefaultProps;
|
||||
MultipleSelector.meta = {
|
||||
valueType: 'array',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/MultipleSelector/style.less'],
|
||||
};
|
||||
|
@ -62,7 +62,6 @@ const NotificationBlock = ({ blockId, components: { Icon }, events, methods, pro
|
||||
NotificationBlock.defaultProps = blockDefaultProps;
|
||||
NotificationBlock.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Notification/style.less'],
|
||||
};
|
||||
|
@ -77,7 +77,6 @@ NumberInput.defaultProps = blockDefaultProps;
|
||||
NumberInput.meta = {
|
||||
valueType: 'number',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/NumberInput/style.less'],
|
||||
};
|
||||
|
@ -74,14 +74,6 @@ const PageHCF = ({ blockId, components, content, events, properties }) => (
|
||||
PageHCF.defaultProps = blockDefaultProps;
|
||||
PageHCF.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/PageHCF/style.less'],
|
||||
};
|
||||
|
@ -109,14 +109,6 @@ const PageHCSF = ({ blockId, components, content, events, methods, properties })
|
||||
PageHCSF.defaultProps = blockDefaultProps;
|
||||
PageHCSF.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/PageHCSF/style.less'],
|
||||
};
|
||||
|
@ -109,14 +109,6 @@ const PageHSCF = ({ blockId, components, content, events, methods, properties })
|
||||
PageHSCF.defaultProps = blockDefaultProps;
|
||||
PageHSCF.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/PageHSCF/style.less'],
|
||||
};
|
||||
|
@ -252,14 +252,6 @@ const PageHeaderMenu = ({
|
||||
PageHeaderMenu.defaultProps = blockDefaultProps;
|
||||
PageHeaderMenu.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [...MobileMenu.meta.icons],
|
||||
styles: ['blocks/PageHeaderMenu/style.less'],
|
||||
};
|
||||
|
@ -109,14 +109,6 @@ const PageSHCF = ({ blockId, components, events, content, properties, methods })
|
||||
PageSHCF.defaultProps = blockDefaultProps;
|
||||
PageSHCF.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/PageSHCF/style.less'],
|
||||
};
|
||||
|
@ -380,14 +380,6 @@ const PageSiderMenu = ({
|
||||
PageSiderMenu.defaultProps = blockDefaultProps;
|
||||
PageSiderMenu.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: ['AiOutlineMenuFold', 'AiOutlineMenuUnfold', ...MobileMenu.meta.icons],
|
||||
styles: ['blocks/PageSiderMenu/style.less'],
|
||||
};
|
||||
|
@ -84,7 +84,6 @@ PaginationBlock.meta = {
|
||||
skip: 0,
|
||||
},
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Pagination/style.less'],
|
||||
};
|
||||
|
@ -108,11 +108,6 @@ const ParagraphBlock = ({ blockId, components: { Icon }, events, methods, proper
|
||||
ParagraphBlock.defaultProps = blockDefaultProps;
|
||||
ParagraphBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Paragraph/style.less'],
|
||||
};
|
||||
|
@ -143,7 +143,6 @@ ParagraphInput.defaultProps = blockDefaultProps;
|
||||
ParagraphInput.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/ParagraphInput/style.less'],
|
||||
};
|
||||
|
@ -78,7 +78,6 @@ PasswordInput.defaultProps = blockDefaultProps;
|
||||
PasswordInput.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/PasswordInput/style.less'],
|
||||
};
|
||||
|
@ -40,14 +40,6 @@ const ProgressBlock = ({ blockId, properties }) => (
|
||||
ProgressBlock.defaultProps = blockDefaultProps;
|
||||
ProgressBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 40,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Progress/style.less'],
|
||||
};
|
||||
|
@ -107,7 +107,6 @@ RadioSelector.defaultProps = blockDefaultProps;
|
||||
RadioSelector.meta = {
|
||||
valueType: 'any',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/RadioSelector/style.less'],
|
||||
};
|
||||
|
@ -240,11 +240,6 @@ RatingSlider.defaultProps = blockDefaultProps;
|
||||
RatingSlider.meta = {
|
||||
valueType: 'any',
|
||||
category: 'input',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonInput',
|
||||
},
|
||||
],
|
||||
icons: [...Label.meta.icons, 'AiOutlineFrown', 'AiOutlineSmile'],
|
||||
styles: ['blocks/RatingSlider/style.less'],
|
||||
};
|
||||
|
@ -38,14 +38,6 @@ const ResultBlock = ({ blockId, components: { Icon }, events, content, methods,
|
||||
ResultBlock.defaultProps = blockDefaultProps;
|
||||
ResultBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Spinner',
|
||||
properties: {
|
||||
height: '100vh',
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Result/style.less'],
|
||||
};
|
||||
|
@ -141,7 +141,6 @@ Selector.defaultProps = blockDefaultProps;
|
||||
Selector.meta = {
|
||||
valueType: 'any',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/Selector/style.less'],
|
||||
};
|
||||
|
@ -67,7 +67,6 @@ const SiderBlock = ({ blockId, properties, content, methods, rename }) => {
|
||||
SiderBlock.defaultProps = blockDefaultProps;
|
||||
SiderBlock.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Sider/style.less'],
|
||||
};
|
||||
|
@ -58,14 +58,6 @@ const StatisticBlock = ({ blockId, components: { Icon }, events, properties, met
|
||||
StatisticBlock.defaultProps = blockDefaultProps;
|
||||
StatisticBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Statistic/style.less'],
|
||||
};
|
||||
|
@ -105,7 +105,6 @@ SwitchBlock.defaultProps = blockDefaultProps;
|
||||
SwitchBlock.meta = {
|
||||
valueType: 'boolean',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCheck', 'AiOutlineClose'],
|
||||
styles: ['blocks/Switch/style.less'],
|
||||
};
|
||||
|
@ -83,14 +83,6 @@ const TabsBlock = ({ blockId, components: { Icon }, events, content, methods, pr
|
||||
TabsBlock.defaultProps = blockDefaultProps;
|
||||
TabsBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Tabs/style.less'],
|
||||
};
|
||||
|
@ -90,7 +90,6 @@ TextAreaBlock.defaultProps = blockDefaultProps;
|
||||
TextAreaBlock.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/TextArea/style.less'],
|
||||
};
|
||||
|
@ -99,7 +99,6 @@ TextInput.defaultProps = blockDefaultProps;
|
||||
TextInput.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/TextInput/style.less'],
|
||||
};
|
||||
|
@ -81,14 +81,6 @@ const TimelineList = ({ blockId, components: { Icon }, events, list, methods, pr
|
||||
TimelineList.defaultProps = blockDefaultProps;
|
||||
TimelineList.meta = {
|
||||
category: 'list',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/TimelineList/style.less'],
|
||||
};
|
||||
|
@ -113,14 +113,6 @@ const TitleBlock = ({ blockId, components: { Icon }, events, properties, methods
|
||||
TitleBlock.defaultProps = blockDefaultProps;
|
||||
TitleBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Title/style.less'],
|
||||
};
|
||||
|
@ -139,7 +139,6 @@ TitleInput.defaultProps = blockDefaultProps;
|
||||
TitleInput.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [],
|
||||
styles: ['blocks/TitleInput/style.less'],
|
||||
};
|
||||
|
@ -45,14 +45,6 @@ const TooltipBlock = ({ blockId, content, properties, methods }) => (
|
||||
TooltipBlock.defaultProps = blockDefaultProps;
|
||||
TooltipBlock.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 80,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: ['blocks/Tooltip/style.less'],
|
||||
};
|
||||
|
@ -90,7 +90,6 @@ WeekSelector.defaultProps = blockDefaultProps;
|
||||
WeekSelector.meta = {
|
||||
valueType: 'date',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons, 'AiOutlineCalendar'],
|
||||
styles: ['blocks/WeekSelector/style.less'],
|
||||
};
|
||||
|
@ -55,14 +55,6 @@ const AnchorBlock = ({ blockId, events, components: { Icon, Link }, methods, pro
|
||||
AnchorBlock.defaultProps = blockDefaultProps;
|
||||
AnchorBlock.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: ['AiOutlineLoading3Quarters'],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -34,7 +34,6 @@ const Box = ({ blockId, content, events, methods, properties }) => (
|
||||
Box.defaultProps = blockDefaultProps;
|
||||
Box.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -63,7 +63,6 @@ class DangerousHtml extends React.Component {
|
||||
DangerousHtml.defaultProps = blockDefaultProps;
|
||||
DangerousHtml.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -30,7 +30,6 @@ const HtmlBlock = ({ blockId, properties, methods }) => (
|
||||
HtmlBlock.defaultProps = blockDefaultProps;
|
||||
HtmlBlock.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -22,7 +22,6 @@ const IconBlock = ({ components: { Icon }, ...props }) => <Icon {...props} />;
|
||||
IconBlock.defaultProps = blockDefaultProps;
|
||||
IconBlock.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -36,7 +36,6 @@ const ImgBlock = ({ blockId, events, properties, methods }) => {
|
||||
ImgBlock.defaultProps = blockDefaultProps;
|
||||
ImgBlock.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -55,7 +55,6 @@ List.defaultProps = blockDefaultProps;
|
||||
List.meta = {
|
||||
category: 'list',
|
||||
valueType: 'array',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -34,7 +34,6 @@ const Span = ({ blockId, content, events, methods, properties }) => (
|
||||
Span.defaultProps = blockDefaultProps;
|
||||
Span.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -69,7 +69,6 @@ ColorSelector.defaultProps = blockDefaultProps;
|
||||
ColorSelector.meta = {
|
||||
valueType: 'string',
|
||||
category: 'input',
|
||||
skeleton: false,
|
||||
icons: [...Label.meta.icons],
|
||||
styles: ['blocks/ColorSelector/style.less'],
|
||||
};
|
||||
|
@ -103,14 +103,6 @@ class EChart extends React.Component {
|
||||
EChart.defaultProps = blockDefaultProps;
|
||||
EChart.meta = {
|
||||
category: 'display',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'Skeleton',
|
||||
properties: {
|
||||
height: 300,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -66,7 +66,6 @@ const IconSpinner = ({ properties, methods }) => {
|
||||
IconSpinner.defaultProps = blockDefaultProps;
|
||||
IconSpinner.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/IconSpinner/style.less'],
|
||||
};
|
||||
|
@ -53,7 +53,6 @@ const ProgressBar = ({ blockId, methods, style, properties, content }) => {
|
||||
ProgressBar.defaultProps = blockDefaultProps;
|
||||
ProgressBar.meta = {
|
||||
category: 'container',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/ProgressBar/style.less'],
|
||||
};
|
||||
|
@ -17,7 +17,7 @@
|
||||
.progress-bar-loader {
|
||||
height: 100%;
|
||||
width: var(--progress); // initial 0%
|
||||
background: @primary-color; // TODO: test if this works
|
||||
background: @primary-color;
|
||||
transition: var(--transition);
|
||||
opacity: var(--opacity);
|
||||
}
|
||||
|
@ -29,7 +29,6 @@ const Skeleton = ({ properties, methods }) => {
|
||||
Skeleton.defaultProps = blockDefaultProps;
|
||||
Skeleton.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Skeleton/style.less'],
|
||||
};
|
||||
|
@ -52,7 +52,6 @@ const SkeletonAvatar = ({ properties, methods }) => {
|
||||
SkeletonAvatar.defaultProps = blockDefaultProps;
|
||||
SkeletonAvatar.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/SkeletonAvatar/style.less'],
|
||||
};
|
||||
|
@ -49,7 +49,6 @@ const SkeletonButton = ({ properties, methods }) => {
|
||||
SkeletonButton.defaultProps = blockDefaultProps;
|
||||
SkeletonButton.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/SkeletonButton/style.less'],
|
||||
};
|
||||
|
@ -58,7 +58,6 @@ const SkeletonInput = ({ properties, methods }) => {
|
||||
SkeletonInput.defaultProps = blockDefaultProps;
|
||||
SkeletonInput.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/SkeletonInput/style.less'],
|
||||
};
|
||||
|
@ -44,7 +44,6 @@ const SkeletonParagraph = ({ properties, methods }) => {
|
||||
SkeletonParagraph.defaultProps = blockDefaultProps;
|
||||
SkeletonParagraph.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/SkeletonParagraph/style.less'],
|
||||
};
|
||||
|
@ -49,7 +49,6 @@ const Spinner = ({ properties, methods }) => {
|
||||
Spinner.defaultProps = blockDefaultProps;
|
||||
Spinner.meta = {
|
||||
category: 'display',
|
||||
loading: false,
|
||||
icons: [],
|
||||
styles: ['blocks/Spinner/style.less'],
|
||||
};
|
||||
|
@ -49,14 +49,6 @@ class DangerousMarkdown extends React.Component {
|
||||
DangerousMarkdown.defaultProps = blockDefaultProps;
|
||||
DangerousMarkdown.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 7,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -31,14 +31,6 @@ const Markdown = ({ blockId, properties, methods }) => (
|
||||
Markdown.defaultProps = blockDefaultProps;
|
||||
Markdown.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 7,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -72,14 +72,6 @@ const MarkdownWithCode = ({ blockId, properties, methods }) => (
|
||||
MarkdownWithCode.defaultProps = blockDefaultProps;
|
||||
MarkdownWithCode.meta = {
|
||||
category: 'container',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonParagraph',
|
||||
properties: {
|
||||
lines: 7,
|
||||
},
|
||||
},
|
||||
],
|
||||
icons: [],
|
||||
styles: [],
|
||||
};
|
||||
|
@ -150,11 +150,6 @@ S3UploadButtonBlock.defaultProps = blockDefaultProps;
|
||||
S3UploadButtonBlock.meta = {
|
||||
valueType: 'object',
|
||||
category: 'input',
|
||||
skeleton: [
|
||||
{
|
||||
type: 'SkeletonButton',
|
||||
},
|
||||
],
|
||||
icons: ['AiOutlineUpload'],
|
||||
styles: ['blocks/S3UploadButton/style.less'],
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user