Add missing reflection config in the vertical splitter.
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tp/tp-splitter",
|
"name": "@tp/tp-splitter",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "tp-splitter.js",
|
"main": "tp-splitter.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
+3
-3
@@ -56,9 +56,9 @@ class TpVSplitter extends LitElement {
|
|||||||
|
|
||||||
static get properties() {
|
static get properties() {
|
||||||
return {
|
return {
|
||||||
leftHidden: { type: Boolean },
|
leftHidden: { type: Boolean, reflect: true },
|
||||||
rightHidden: { type: Boolean },
|
rightHidden: { type: Boolean, reflect: true },
|
||||||
dragging: { type: Boolean },
|
dragging: { type: Boolean, reflect: true },
|
||||||
minSideWidth: { type: Number },
|
minSideWidth: { type: Number },
|
||||||
lateResize: { type: Boolean }, // if true, the panels will not be reized until the dragging is finished.
|
lateResize: { type: Boolean }, // if true, the panels will not be reized until the dragging is finished.
|
||||||
initialLeftWidth: { type: String },
|
initialLeftWidth: { type: String },
|
||||||
|
|||||||
Reference in New Issue
Block a user