{
  "properties": [
    {
      "name": "opened",
      "type": "Boolean",
      "description": "If this property is true, dialog will be opened"
    },
    {
      "name": "borderColor",
      "type": "String",
      "description": "border color of the Confirm Dialog"
    },
    {
      "name": "width",
      "type": "String",
      "description": "Width of the Confirm Dialog"
    },
    {
      "name": "title",
      "type": "String",
      "description": "Title of the Confirm Dialog"
    },
    {
      "name": "acceptLabel",
      "type": "String",
      "description": "Label for Accept Button"
    },
    {
      "name": "rejectLabel",
      "type": "String",
      "description": "Label for Reject Button"
    },
    {
      "name": "clickOutsideToCloase",
      "type": "Boolean",
      "description": "If this property is false, it is impossible to close the modal by clicking outside, default is true"
    },
    {
      "name": "buttonsWidth",
      "type": "String",
      "description": "Passing this props into bottom's buttons of confirmation modal component set up the width of buttons"
    },
    {
      "name": "acceptButtonColor",
      "type": "String",
      "description": "Can contain color value that in case of exists this property will be passed to accept button"
    },
    {
      "name": "overflowCheck",
      "type": "Boolean",
      "description": "Check overflow depend on it option"
    },
    {
      "name": "modalHeight",
      "type": "String",
      "description": "Height of modal that wrap the whole component"
    },
    {
      "name": "modalWidth",
      "type": "String",
      "description": "Width of modal that wrap the whole component"
    },
    {
      "name": "base",
      "type": "Boolean",
      "description": "Turn off stretch of modal on mobile resolutions"
    }
  ],
  "events": [
    {
      "name": "update:opened",
      "description": "Emitted when the dialog is opened and closed with opened status"
    },
    {
      "name": "accept",
      "description": "Emitted when user click the accept or close button with accepted status, If user click accpet, event is emitted with 'true' status. If user click the cancel button, event is emitted with 'false' status"
    }
  ]
}
