{
  "name": "selection-card",
  "version": "20.0.2",
  "jetVersion": "^20.0.2",
  "pack": "oj-c",
  "type": "composite",
  "dependencyScope": "runtime",
  "license": "https://opensource.org/licenses/UPL",
  "implements": [
    "CSelectionCardElement"
  ],
  "description": "A Selection Card is a container that can be set as selected with a collection",
  "displayName": "Selection Card",
  "status": [
    {
      "type": "production",
      "since": "19.0.0"
    }
  ],
  "extension": {
    "catalog": {
      "category": "Collections"
    },
    "oracle": {
      "icon": "oj-ux-ico-object-card",
      "uxSpecs": [
        "card"
      ]
    },
    "vbdt": {
      "module": "oj-c/selection-card",
      "defaultColumns": 1,
      "minColumns": 1
    },
    "webelement": {
      "package": "@oracle/oraclejet-core-pack",
      "version": "20.0.2",
      "docUrl": "https://www.oracle.com/webfolder/technetwork/jet/cpwdtsdoc/classes/SelectionCardWebElement.html",
      "export": "findSelectionCard",
      "main": "@oracle/oraclejet-core-pack/webdriver"
    }
  },
  "since": "16.0.0",
  "main": "oj-c/selection-card",
  "slots": {
    "": {
      "description": "The default slot is the content of the card.",
      "displayName": "Default",
      "help": "#default"
    }
  },
  "properties": {
    "selected": {
      "type": "boolean",
      "description": "Boolean that marks this card as selected.",
      "displayName": "Selected",
      "help": "#selected"
    }
  },
  "methods": {
    "setProperty": {
      "description": "Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.",
      "help": "#setProperty",
      "params": [
        {
          "name": "property",
          "description": "The property name to set. Supports dot notation for subproperty access.",
          "type": "string"
        },
        {
          "name": "value",
          "description": "The new value to set the property to.",
          "type": "any"
        }
      ],
      "return": "void"
    },
    "getProperty": {
      "description": "Retrieves the value of a property or a subproperty.",
      "help": "#getProperty",
      "params": [
        {
          "name": "property",
          "description": "The property name to get. Supports dot notation for subproperty access.",
          "type": "string"
        }
      ],
      "return": "any"
    },
    "setProperties": {
      "description": "Performs a batch set of properties.",
      "help": "#setProperties",
      "params": [
        {
          "name": "properties",
          "description": "An object containing the property and value pairs to set.",
          "type": "object"
        }
      ],
      "return": "void"
    }
  }
}