404!
Nothing was found at this location. Try searching, or check out the links below.
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "flexa/social-icon",
"version": "1.0.0",
"title": "Social Icons",
"category": "flexa",
"description": "Linked row of social network icons — official brand artwork or custom light/dark tints per icon, with per-device size, gap, alignment and a hover motion.",
"keywords": [
"flexa",
"social",
"icon",
"profile",
"follow",
"network"
],
"textdomain": "flexa-block",
"example": {
"attributes": {
"isExamplePreview": true
},
"viewportWidth": 500
},
"attributes": {
"isExamplePreview": {
"type": "boolean",
"default": false
},
"blockId": {
"type": "string"
},
"htmlTag": {
"type": "string",
"default": "div"
},
"items": {
"type": "array",
"default": [
{
"platform": "facebook",
"link": {
"url": "",
"target": "",
"rel": ""
},
"colorMode": "official",
"color": {
"light": "",
"dark": ""
}
},
{
"platform": "x",
"link": {
"url": "",
"target": "",
"rel": ""
},
"colorMode": "official",
"color": {
"light": "",
"dark": ""
}
},
{
"platform": "instagram",
"link": {
"url": "",
"target": "",
"rel": ""
},
"colorMode": "official",
"color": {
"light": "",
"dark": ""
}
}
]
},
"iconSize": {
"type": "object",
"default": {
"desktop": {},
"tablet": {},
"mobile": {}
}
},
"gap": {
"type": "object",
"default": {
"desktop": {},
"tablet": {},
"mobile": {}
}
},
"alignment": {
"type": "object",
"default": {
"desktop": "",
"tablet": "",
"mobile": ""
}
},
"hoverEffect": {
"type": "string",
"default": "",
"enum": [
"",
"grow",
"shrink",
"lift",
"rotate"
]
},
"spacing": {
"type": "object",
"default": {
"desktop": {},
"tablet": {},
"mobile": {}
}
},
"background": {
"type": "object",
"default": {
"type": "none",
"color": {
"light": "",
"dark": ""
},
"gradient": {
"light": "",
"dark": ""
}
}
},
"border": {
"type": "object",
"default": {
"desktop": {
"style": "",
"width": {
"top": "",
"right": "",
"bottom": "",
"left": "",
"unit": "px"
},
"color": {
"light": "",
"dark": ""
},
"radius": {
"topLeft": "",
"topRight": "",
"bottomRight": "",
"bottomLeft": "",
"unit": "px"
}
},
"tablet": {},
"mobile": {}
}
},
"boxShadow": {
"type": "object",
"default": {
"horizontal": "0",
"vertical": "4",
"blur": "12",
"spread": "0",
"color": {
"light": "rgba(0,0,0,0.1)",
"dark": ""
},
"inset": false,
"enabled": false
}
},
"responsiveVisibility": {
"type": "object",
"default": {
"hideOnDesktop": false,
"hideOnTablet": false,
"hideOnMobile": false
}
},
"animation": {
"type": "object",
"default": {
"type": "none",
"duration": "normal",
"delay": ""
}
},
"htmlAttributes": {
"type": "object",
"default": {
"customAttributes": []
}
}
},
"supports": {
"anchor": true,
"className": true,
"html": false,
"align": false
},
"editorScript": "file:./index.js",
"editorStyle": "file:./index.css",
"style": "file:./style-index.css",
"render": "file:./render.php"
}import { useState } from 'react';
import { __ } from '@wordpress/i18n';
import {
Box,
Typography,
CircularProgress,
FormControlLabel,
Checkbox,
Grid,
Button,
Stack,
} from '@elementor/ui';
import * as PropTypes from 'prop-types';
import { htmlDecodeTextContent } from 'elementor-pro-app/utils';
import { UpgradeTooltip } from './upgrade-tooltip';
const DEFAULT_VISIBLE_ITEMS_COUNT = 16;
export function ListSettingSection( {
items,
title,
loading,
settings,
onSettingChange,
settingKey,
disabled = false,
tooltip = false,
} ) {
const [ showMore, setShowMore ] = useState( false );
return (
Nothing was found at this location. Try searching, or check out the links below.