{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "sp-split-view.js",
      "declarations": [],
      "exports": [
        {
          "kind": "custom-element-definition",
          "name": "sp-split-view",
          "declaration": {
            "name": "SplitView",
            "module": "/src/SplitView.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/SplitView.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "SplitView",
          "slots": [
            {
              "description": "sibling elements to be sized by the element attritubes",
              "name": "Two"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "controlledEl",
              "type": {
                "text": "HTMLElement | undefined"
              },
              "privacy": "public"
            },
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "privacy": "public",
              "default": "false",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "resizable",
              "type": {
                "text": "boolean"
              },
              "privacy": "public",
              "default": "false",
              "attribute": "resizable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "collapsible",
              "type": {
                "text": "boolean"
              },
              "privacy": "public",
              "default": "false",
              "attribute": "collapsible",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "primaryMin",
              "type": {
                "text": "number"
              },
              "privacy": "public",
              "default": "0",
              "description": "The minimum size of the primary pane",
              "attribute": "primary-min"
            },
            {
              "kind": "field",
              "name": "primaryMax",
              "privacy": "public",
              "default": "3840",
              "description": "The maximum size of the primary pane",
              "attribute": "primary-max",
              "type": {
                "text": "number"
              }
            },
            {
              "kind": "field",
              "name": "primarySize",
              "type": {
                "text": "number | number"
              },
              "privacy": "public",
              "description": "+ \"px\" | number + \"%\" | \"auto\"}",
              "attribute": "primary-size"
            },
            {
              "kind": "field",
              "name": "secondaryMin",
              "type": {
                "text": "number"
              },
              "privacy": "public",
              "default": "0",
              "description": "The minimum size of the secondary pane",
              "attribute": "secondary-min"
            },
            {
              "kind": "field",
              "name": "secondaryMax",
              "privacy": "public",
              "default": "3840",
              "description": "The maximum size of the secondary pane",
              "attribute": "secondary-max",
              "type": {
                "text": "number"
              }
            },
            {
              "kind": "field",
              "name": "splitterPos",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "public",
              "description": "The current splitter position of split-view",
              "attribute": "splitter-pos",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "firstPaneSize",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "'auto'",
              "description": "The current size of first pane of split-view"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "public",
              "description": "Sets the `aria-label` on the splitter component",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "enoughChildren",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "viewSize",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0",
              "attribute": "viewSize"
            },
            {
              "kind": "field",
              "name": "paneSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "splitter",
              "type": {
                "text": "HTMLDivElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "offset",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "minPos",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "maxPos",
              "privacy": "private",
              "default": "3840",
              "type": {
                "text": "number"
              }
            },
            {
              "kind": "field",
              "name": "observer",
              "type": {
                "text": "WithSWCResizeObserver['ResizeObserver'] | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "rect",
              "type": {
                "text": "DOMRect | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_splitterSize",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "splitterSize",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "controlledElIDApplied",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "onContentSlotChange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event & { target: HTMLSlotElement }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "onPointerdown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "onPointermove",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "onPointerup",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getOffset",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              }
            },
            {
              "kind": "method",
              "name": "getPosition",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "movePosition",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                },
                {
                  "name": "offset",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "onKeydown",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "checkResize",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Promise<void>"
                }
              }
            },
            {
              "kind": "method",
              "name": "updateMinMax",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "updatePosition",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "x",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getLimitedPosition",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "input",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "calcStartPos",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Promise<number>"
                }
              }
            },
            {
              "kind": "method",
              "name": "dispatchChangeEvent",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            }
          ],
          "events": [
            {
              "description": "Announces the new position of the splitter",
              "name": "change"
            }
          ],
          "attributes": [
            {
              "name": "primarySize",
              "type": {
                "text": "number | number"
              },
              "description": "+ \"px\" | number + \"%\" | \"auto\"}",
              "fieldName": "primarySize"
            },
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "vertical"
            },
            {
              "name": "resizable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "resizable"
            },
            {
              "name": "collapsible",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "collapsible"
            },
            {
              "name": "primary-min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum size of the primary pane",
              "fieldName": "primaryMin"
            },
            {
              "name": "primary-max",
              "default": "DEFAULT_MAX_SIZE",
              "description": "The maximum size of the primary pane",
              "fieldName": "primaryMax"
            },
            {
              "name": "primary-size",
              "type": {
                "text": "number | number"
              },
              "description": "+ \"px\" | number + \"%\" | \"auto\"}",
              "attribute": "primarySize",
              "fieldName": "primarySize"
            },
            {
              "name": "secondary-min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum size of the secondary pane",
              "fieldName": "secondaryMin"
            },
            {
              "name": "secondary-max",
              "default": "DEFAULT_MAX_SIZE",
              "description": "The maximum size of the secondary pane",
              "fieldName": "secondaryMax"
            },
            {
              "name": "splitter-pos",
              "type": {
                "text": "number | undefined"
              },
              "description": "The current splitter position of split-view",
              "fieldName": "splitterPos"
            },
            {
              "name": "label",
              "type": {
                "text": "string | undefined"
              },
              "description": "Sets the `aria-label` on the splitter component",
              "fieldName": "label"
            },
            {
              "name": "viewSize",
              "type": {
                "text": "number"
              },
              "default": "0",
              "fieldName": "viewSize"
            }
          ],
          "superclass": {
            "name": "SpectrumElement",
            "package": "@spectrum-web-components/base"
          },
          "tagName": "sp-split-view",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "SplitView",
          "declaration": {
            "name": "SplitView",
            "module": "src/SplitView.js"
          }
        }
      ]
    }
  ]
}
