get totalSize()

in src/components/utilities/split-panel/index.js [90:98]


  get totalSize() {
    const {container} = this.state;
    if (container) {
      return this.isVertical
        ? container.offsetHeight || container.clientHeight
        : container.offsetWidth || container.clientWidth;
    }
    return null;
  }