{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutengrow/team",
  "version": "1.0.0",
  "title": "Team",
  "category": "gutengrow-blocks",
  "icon": "groups",
  "description": "Display team members in a responsive grid layout with customizable styling options.",
  "supports": {
    "html": false,
    "multiple": true,
    "reusable": true,
    "align": [
      "wide",
      "full"
    ],
    "color": {
      "background": true,
      "text": true
    },
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "textdomain": "gutengrow-blocks",
  "editorScript": "file:index.js",
  "editorStyle": "file:index.css",
  "style": "file:style-index.css",
  "viewScript": "file:view.js",
  "attributes": {
    "teamMembers": {
      "type": "array",
      "default": [
        {
          "id": "member-1",
          "name": "Stein Henriksen",
          "role": "Frontend Developer",
          "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
          "image": "",
          "imageId": 0,
          "nameColor": "#333333",
          "nameFontSize": 20,
          "roleColor": "#666666",
          "roleFontSize": 16,
          "descriptionColor": "#777777",
          "descriptionFontSize": 14,
          "cardBackground": "#ffffff",
          "cardBorderColor": "#e0e0e0",
          "cardBorderWidth": 1,
          "cardBorderRadius": 8,
          "cardPadding": 20,
          "imageSize": 120,
          "imageWidth": 120,
          "imageHeight": 120,
          "imageVariant": "circle",
          "imageBorderRadius": 50,
          "imageBorderWidth": 4,
          "imageBorderColor": "#e0e0e0",
          "socialLinks": {
            "facebook": "",
            "twitter": "",
            "linkedin": "",
            "instagram": "",
            "website": ""
          }
        }
      ]
    },
    "columns": {
      "type": "number",
      "default": 4
    },
    "columnGap": {
      "type": "number",
      "default": 30
    },
    "rowGap": {
      "type": "number",
      "default": 30
    },
    "mobileColumns": {
      "type": "number",
      "default": 1
    },
    "tabletColumns": {
      "type": "number",
      "default": 2
    },
    "useCustomColors": {
      "type": "boolean",
      "default": false
    },
    "customColorsPalette": {
      "type": "array",
      "default": []
    },
    "enableBoxShadow": {
      "type": "boolean",
      "default": false
    },
    "boxShadowNote": {
      "type": "string",
      "default": "Box shadow is disabled"
    },
    "borderRadius": {
      "type": "number",
      "default": 0
    },
    "borderStyle": {
      "type": "string",
      "default": "solid"
    },
    "borderWidth": {
      "type": "number",
      "default": 1
    },
    "borderColor": {
      "type": "string",
      "default": "#000000"
    },
    "borderHoverColor": {
      "type": "string",
      "default": "#000000"
    },
    "backgroundColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "hoverBackgroundColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "textAlignment": {
      "type": "string",
      "default": "center"
    },
    "showAddButton": {
      "type": "boolean",
      "default": true
    }
  }
}