easy-layout 6.0.23 → 6.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example.js +4264 -4332
- package/lib/div/column.js +42 -53
- package/lib/div/columns.js +42 -53
- package/lib/div/row.js +42 -53
- package/lib/div/rows.js +42 -53
- package/lib/div/sizeable.js +42 -53
- package/lib/div/splitter/horizontal.js +36 -36
- package/lib/div/splitter/vertical.js +36 -36
- package/lib/div/splitter.js +50 -61
- package/lib/example/div/bottomLeft.js +6 -6
- package/lib/example/div/column/middle.js +30 -30
- package/lib/example/div/row/blue.js +30 -30
- package/lib/example/div/row/yellow.js +30 -30
- package/lib/example/div/sizeable/bottom.js +30 -30
- package/lib/example/div/sizeable/left.js +30 -30
- package/lib/example/div/sizeable/right.js +30 -30
- package/lib/example/div/splitter/horizontal/main.js +30 -30
- package/lib/example/div/splitter/pseudo.js +6 -6
- package/lib/example/div/splitter/vertical/left.js +30 -30
- package/lib/example/div/splitter/vertical/right.js +30 -30
- package/lib/example/section/text.js +6 -6
- package/lib/example/view.js +18 -18
- package/lib/example.js +5 -5
- package/lib/index.js +11 -11
- package/package.json +3 -3
|
@@ -8,20 +8,20 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _index = require("../../../index");
|
|
13
|
-
function
|
|
13
|
+
function _assert_this_initialized(self) {
|
|
14
14
|
if (self === void 0) {
|
|
15
15
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
16
|
}
|
|
17
17
|
return self;
|
|
18
18
|
}
|
|
19
|
-
function
|
|
19
|
+
function _class_call_check(instance, Constructor) {
|
|
20
20
|
if (!(instance instanceof Constructor)) {
|
|
21
21
|
throw new TypeError("Cannot call a class as a function");
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function _define_property(obj, key, value) {
|
|
25
25
|
if (key in obj) {
|
|
26
26
|
Object.defineProperty(obj, key, {
|
|
27
27
|
value: value,
|
|
@@ -34,11 +34,11 @@ function _defineProperty(obj, key, value) {
|
|
|
34
34
|
}
|
|
35
35
|
return obj;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
38
|
-
|
|
37
|
+
function _get_prototype_of(o) {
|
|
38
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
39
39
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
40
40
|
};
|
|
41
|
-
return
|
|
41
|
+
return _get_prototype_of(o);
|
|
42
42
|
}
|
|
43
43
|
function _inherits(subClass, superClass) {
|
|
44
44
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -51,27 +51,27 @@ function _inherits(subClass, superClass) {
|
|
|
51
51
|
configurable: true
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
if (superClass)
|
|
54
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
55
55
|
}
|
|
56
|
-
function
|
|
56
|
+
function _interop_require_default(obj) {
|
|
57
57
|
return obj && obj.__esModule ? obj : {
|
|
58
58
|
default: obj
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
function
|
|
62
|
-
if (call && (
|
|
61
|
+
function _possible_constructor_return(self, call) {
|
|
62
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
63
63
|
return call;
|
|
64
64
|
}
|
|
65
|
-
return
|
|
65
|
+
return _assert_this_initialized(self);
|
|
66
66
|
}
|
|
67
|
-
function
|
|
68
|
-
|
|
67
|
+
function _set_prototype_of(o, p) {
|
|
68
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
69
69
|
o.__proto__ = p;
|
|
70
70
|
return o;
|
|
71
71
|
};
|
|
72
|
-
return
|
|
72
|
+
return _set_prototype_of(o, p);
|
|
73
73
|
}
|
|
74
|
-
function
|
|
74
|
+
function _tagged_template_literal(strings, raw) {
|
|
75
75
|
if (!raw) {
|
|
76
76
|
raw = strings.slice(0);
|
|
77
77
|
}
|
|
@@ -81,11 +81,11 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
81
81
|
}
|
|
82
82
|
}));
|
|
83
83
|
}
|
|
84
|
-
|
|
84
|
+
function _type_of(obj) {
|
|
85
85
|
"@swc/helpers - typeof";
|
|
86
86
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
87
|
-
}
|
|
88
|
-
function
|
|
87
|
+
}
|
|
88
|
+
function _is_native_reflect_construct() {
|
|
89
89
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
90
90
|
if (Reflect.construct.sham) return false;
|
|
91
91
|
if (typeof Proxy === "function") return true;
|
|
@@ -96,21 +96,21 @@ function _isNativeReflectConstruct() {
|
|
|
96
96
|
return false;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
var hasNativeReflectConstruct =
|
|
99
|
+
function _create_super(Derived) {
|
|
100
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
101
101
|
return function _createSuperInternal() {
|
|
102
|
-
var Super =
|
|
102
|
+
var Super = _get_prototype_of(Derived), result;
|
|
103
103
|
if (hasNativeReflectConstruct) {
|
|
104
|
-
var NewTarget =
|
|
104
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
105
105
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
106
106
|
} else {
|
|
107
107
|
result = Super.apply(this, arguments);
|
|
108
108
|
}
|
|
109
|
-
return
|
|
109
|
+
return _possible_constructor_return(this, result);
|
|
110
110
|
};
|
|
111
111
|
}
|
|
112
112
|
function _templateObject() {
|
|
113
|
-
var data =
|
|
113
|
+
var data = _tagged_template_literal([
|
|
114
114
|
"\n\n width: 24rem;\n min-width: 12rem;\n max-width: 36rem;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var LeftSizeableDiv = /*#__PURE__*/ function(SizeableDiv) {
|
|
122
122
|
_inherits(LeftSizeableDiv, SizeableDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(LeftSizeableDiv);
|
|
124
124
|
function LeftSizeableDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, LeftSizeableDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return LeftSizeableDiv;
|
|
129
129
|
}(_index.SizeableDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(LeftSizeableDiv, "defaultProperties", {
|
|
131
131
|
className: "left"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(LeftSizeableDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zaXplYWJsZS9sZWZ0LmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBTaXplYWJsZURpdiB9IGZyb20gXCIuLi8uLi8uLi9pbmRleFwiOyAvLy9cblxuY2xhc3MgTGVmdFNpemVhYmxlRGl2IGV4dGVuZHMgU2l6ZWFibGVEaXYge1xuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImxlZnRcIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoTGVmdFNpemVhYmxlRGl2KWBcblxuICB3aWR0aDogMjRyZW07XG4gIG1pbi13aWR0aDogMTJyZW07XG4gIG1heC13aWR0aDogMzZyZW07XG5cbmA7XG4iXSwibmFtZXMiOlsiTGVmdFNpemVhYmxlRGl2IiwiU2l6ZWFibGVEaXYiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBWUE7OztlQUFBOzs7b0VBVnNCO3FCQUVNOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRTVCLElBQUEsQUFBTUEsZ0NBTUgsQUFOSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7RUFBd0JDLGtCQUFXO0FBQ3ZDLGlCQURJRCxpQkFDR0UscUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDSiJ9
|
|
@@ -8,20 +8,20 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _index = require("../../../index");
|
|
13
|
-
function
|
|
13
|
+
function _assert_this_initialized(self) {
|
|
14
14
|
if (self === void 0) {
|
|
15
15
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
16
|
}
|
|
17
17
|
return self;
|
|
18
18
|
}
|
|
19
|
-
function
|
|
19
|
+
function _class_call_check(instance, Constructor) {
|
|
20
20
|
if (!(instance instanceof Constructor)) {
|
|
21
21
|
throw new TypeError("Cannot call a class as a function");
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function _define_property(obj, key, value) {
|
|
25
25
|
if (key in obj) {
|
|
26
26
|
Object.defineProperty(obj, key, {
|
|
27
27
|
value: value,
|
|
@@ -34,11 +34,11 @@ function _defineProperty(obj, key, value) {
|
|
|
34
34
|
}
|
|
35
35
|
return obj;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
38
|
-
|
|
37
|
+
function _get_prototype_of(o) {
|
|
38
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
39
39
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
40
40
|
};
|
|
41
|
-
return
|
|
41
|
+
return _get_prototype_of(o);
|
|
42
42
|
}
|
|
43
43
|
function _inherits(subClass, superClass) {
|
|
44
44
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -51,27 +51,27 @@ function _inherits(subClass, superClass) {
|
|
|
51
51
|
configurable: true
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
if (superClass)
|
|
54
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
55
55
|
}
|
|
56
|
-
function
|
|
56
|
+
function _interop_require_default(obj) {
|
|
57
57
|
return obj && obj.__esModule ? obj : {
|
|
58
58
|
default: obj
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
function
|
|
62
|
-
if (call && (
|
|
61
|
+
function _possible_constructor_return(self, call) {
|
|
62
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
63
63
|
return call;
|
|
64
64
|
}
|
|
65
|
-
return
|
|
65
|
+
return _assert_this_initialized(self);
|
|
66
66
|
}
|
|
67
|
-
function
|
|
68
|
-
|
|
67
|
+
function _set_prototype_of(o, p) {
|
|
68
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
69
69
|
o.__proto__ = p;
|
|
70
70
|
return o;
|
|
71
71
|
};
|
|
72
|
-
return
|
|
72
|
+
return _set_prototype_of(o, p);
|
|
73
73
|
}
|
|
74
|
-
function
|
|
74
|
+
function _tagged_template_literal(strings, raw) {
|
|
75
75
|
if (!raw) {
|
|
76
76
|
raw = strings.slice(0);
|
|
77
77
|
}
|
|
@@ -81,11 +81,11 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
81
81
|
}
|
|
82
82
|
}));
|
|
83
83
|
}
|
|
84
|
-
|
|
84
|
+
function _type_of(obj) {
|
|
85
85
|
"@swc/helpers - typeof";
|
|
86
86
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
87
|
-
}
|
|
88
|
-
function
|
|
87
|
+
}
|
|
88
|
+
function _is_native_reflect_construct() {
|
|
89
89
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
90
90
|
if (Reflect.construct.sham) return false;
|
|
91
91
|
if (typeof Proxy === "function") return true;
|
|
@@ -96,21 +96,21 @@ function _isNativeReflectConstruct() {
|
|
|
96
96
|
return false;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
var hasNativeReflectConstruct =
|
|
99
|
+
function _create_super(Derived) {
|
|
100
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
101
101
|
return function _createSuperInternal() {
|
|
102
|
-
var Super =
|
|
102
|
+
var Super = _get_prototype_of(Derived), result;
|
|
103
103
|
if (hasNativeReflectConstruct) {
|
|
104
|
-
var NewTarget =
|
|
104
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
105
105
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
106
106
|
} else {
|
|
107
107
|
result = Super.apply(this, arguments);
|
|
108
108
|
}
|
|
109
|
-
return
|
|
109
|
+
return _possible_constructor_return(this, result);
|
|
110
110
|
};
|
|
111
111
|
}
|
|
112
112
|
function _templateObject() {
|
|
113
|
-
var data =
|
|
113
|
+
var data = _tagged_template_literal([
|
|
114
114
|
"\n\n width: 24rem;\n max-width: 56rem;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var RightSizeableDiv = /*#__PURE__*/ function(SizeableDiv) {
|
|
122
122
|
_inherits(RightSizeableDiv, SizeableDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(RightSizeableDiv);
|
|
124
124
|
function RightSizeableDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, RightSizeableDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return RightSizeableDiv;
|
|
129
129
|
}(_index.SizeableDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(RightSizeableDiv, "defaultProperties", {
|
|
131
131
|
className: "right"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(RightSizeableDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zaXplYWJsZS9yaWdodC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgU2l6ZWFibGVEaXYgfSBmcm9tIFwiLi4vLi4vLi4vaW5kZXhcIjsgLy8vXG5cbmNsYXNzIFJpZ2h0U2l6ZWFibGVEaXYgZXh0ZW5kcyBTaXplYWJsZURpdiB7XG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwicmlnaHRcIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoUmlnaHRTaXplYWJsZURpdilgXG5cbiAgd2lkdGg6IDI0cmVtO1xuICBtYXgtd2lkdGg6IDU2cmVtO1xuXG5gO1xuIl0sIm5hbWVzIjpbIlJpZ2h0U2l6ZWFibGVEaXYiLCJTaXplYWJsZURpdiIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFZQTs7O2VBQUE7OztvRUFWc0I7cUJBRU07Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFNUIsSUFBQSxBQUFNQSxpQ0FNSCxBQU5IO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtFQUF5QkMsa0JBQVc7QUFDeEMsaUJBRElELGtCQUNHRSxxQkFBb0I7SUFDekJDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNKIn0=
|
|
@@ -8,20 +8,20 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _index = require("../../../../index");
|
|
13
|
-
function
|
|
13
|
+
function _assert_this_initialized(self) {
|
|
14
14
|
if (self === void 0) {
|
|
15
15
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
16
|
}
|
|
17
17
|
return self;
|
|
18
18
|
}
|
|
19
|
-
function
|
|
19
|
+
function _class_call_check(instance, Constructor) {
|
|
20
20
|
if (!(instance instanceof Constructor)) {
|
|
21
21
|
throw new TypeError("Cannot call a class as a function");
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function _define_property(obj, key, value) {
|
|
25
25
|
if (key in obj) {
|
|
26
26
|
Object.defineProperty(obj, key, {
|
|
27
27
|
value: value,
|
|
@@ -34,11 +34,11 @@ function _defineProperty(obj, key, value) {
|
|
|
34
34
|
}
|
|
35
35
|
return obj;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
38
|
-
|
|
37
|
+
function _get_prototype_of(o) {
|
|
38
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
39
39
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
40
40
|
};
|
|
41
|
-
return
|
|
41
|
+
return _get_prototype_of(o);
|
|
42
42
|
}
|
|
43
43
|
function _inherits(subClass, superClass) {
|
|
44
44
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -51,27 +51,27 @@ function _inherits(subClass, superClass) {
|
|
|
51
51
|
configurable: true
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
if (superClass)
|
|
54
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
55
55
|
}
|
|
56
|
-
function
|
|
56
|
+
function _interop_require_default(obj) {
|
|
57
57
|
return obj && obj.__esModule ? obj : {
|
|
58
58
|
default: obj
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
function
|
|
62
|
-
if (call && (
|
|
61
|
+
function _possible_constructor_return(self, call) {
|
|
62
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
63
63
|
return call;
|
|
64
64
|
}
|
|
65
|
-
return
|
|
65
|
+
return _assert_this_initialized(self);
|
|
66
66
|
}
|
|
67
|
-
function
|
|
68
|
-
|
|
67
|
+
function _set_prototype_of(o, p) {
|
|
68
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
69
69
|
o.__proto__ = p;
|
|
70
70
|
return o;
|
|
71
71
|
};
|
|
72
|
-
return
|
|
72
|
+
return _set_prototype_of(o, p);
|
|
73
73
|
}
|
|
74
|
-
function
|
|
74
|
+
function _tagged_template_literal(strings, raw) {
|
|
75
75
|
if (!raw) {
|
|
76
76
|
raw = strings.slice(0);
|
|
77
77
|
}
|
|
@@ -81,11 +81,11 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
81
81
|
}
|
|
82
82
|
}));
|
|
83
83
|
}
|
|
84
|
-
|
|
84
|
+
function _type_of(obj) {
|
|
85
85
|
"@swc/helpers - typeof";
|
|
86
86
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
87
|
-
}
|
|
88
|
-
function
|
|
87
|
+
}
|
|
88
|
+
function _is_native_reflect_construct() {
|
|
89
89
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
90
90
|
if (Reflect.construct.sham) return false;
|
|
91
91
|
if (typeof Proxy === "function") return true;
|
|
@@ -96,21 +96,21 @@ function _isNativeReflectConstruct() {
|
|
|
96
96
|
return false;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
var hasNativeReflectConstruct =
|
|
99
|
+
function _create_super(Derived) {
|
|
100
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
101
101
|
return function _createSuperInternal() {
|
|
102
|
-
var Super =
|
|
102
|
+
var Super = _get_prototype_of(Derived), result;
|
|
103
103
|
if (hasNativeReflectConstruct) {
|
|
104
|
-
var NewTarget =
|
|
104
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
105
105
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
106
106
|
} else {
|
|
107
107
|
result = Super.apply(this, arguments);
|
|
108
108
|
}
|
|
109
|
-
return
|
|
109
|
+
return _possible_constructor_return(this, result);
|
|
110
110
|
};
|
|
111
111
|
}
|
|
112
112
|
function _templateObject() {
|
|
113
|
-
var data =
|
|
113
|
+
var data = _tagged_template_literal([
|
|
114
114
|
"\n\n background-color: black;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var MainHorizontalSplitterDiv = /*#__PURE__*/ function(HorizontalSplitterDiv) {
|
|
122
122
|
_inherits(MainHorizontalSplitterDiv, HorizontalSplitterDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(MainHorizontalSplitterDiv);
|
|
124
124
|
function MainHorizontalSplitterDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, MainHorizontalSplitterDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return MainHorizontalSplitterDiv;
|
|
129
129
|
}(_index.HorizontalSplitterDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(MainHorizontalSplitterDiv, "defaultProperties", {
|
|
131
131
|
className: "main"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(MainHorizontalSplitterDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zcGxpdHRlci9ob3Jpem9udGFsL21haW4uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCB7IEhvcml6b250YWxTcGxpdHRlckRpdiB9IGZyb20gXCIuLi8uLi8uLi8uLi9pbmRleFwiOyAgLy8vXG5cbmNsYXNzIE1haW5Ib3Jpem9udGFsU3BsaXR0ZXJEaXYgZXh0ZW5kcyBIb3Jpem9udGFsU3BsaXR0ZXJEaXYge1xuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcIm1haW5cIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoTWFpbkhvcml6b250YWxTcGxpdHRlckRpdilgXG5cbiAgYmFja2dyb3VuZC1jb2xvcjogYmxhY2s7XG5cbmA7XG4iXSwibmFtZXMiOlsiTWFpbkhvcml6b250YWxTcGxpdHRlckRpdiIsIkhvcml6b250YWxTcGxpdHRlckRpdiIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFZQTs7O2VBQUE7OztvRUFWc0I7cUJBRWdCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXRDLElBQUEsQUFBTUEsMENBTUgsQUFOSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7RUFBa0NDLDRCQUFxQjtBQUMzRCxpQkFESUQsMkJBQ0dFLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0oifQ==
|
|
@@ -8,13 +8,13 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
12
|
-
function
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
+
function _interop_require_default(obj) {
|
|
13
13
|
return obj && obj.__esModule ? obj : {
|
|
14
14
|
default: obj
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
function
|
|
17
|
+
function _tagged_template_literal(strings, raw) {
|
|
18
18
|
if (!raw) {
|
|
19
19
|
raw = strings.slice(0);
|
|
20
20
|
}
|
|
@@ -25,7 +25,7 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
25
25
|
}));
|
|
26
26
|
}
|
|
27
27
|
function _templateObject() {
|
|
28
|
-
var data =
|
|
28
|
+
var data = _tagged_template_literal([
|
|
29
29
|
"\n\n height: 0.8rem;\n flex-shrink: 0;\n background-color: black;\n\n"
|
|
30
30
|
]);
|
|
31
31
|
_templateObject = function _templateObject() {
|
|
@@ -39,6 +39,6 @@ var PseudoHorizontalSplitterDiv = function(properties) {
|
|
|
39
39
|
className: "".concat(className, " pseudo horizontal splitter")
|
|
40
40
|
});
|
|
41
41
|
};
|
|
42
|
-
var _default = (0,
|
|
42
|
+
var _default = (0, _easywithstyle.default)(PseudoHorizontalSplitterDiv)(_templateObject());
|
|
43
43
|
|
|
44
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zcGxpdHRlci9wc2V1ZG8uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmNvbnN0IFBzZXVkb0hvcml6b250YWxTcGxpdHRlckRpdiA9IChwcm9wZXJ0aWVzKSA9PiB7XG4gIGNvbnN0IHsgY2xhc3NOYW1lIH0gPSBwcm9wZXJ0aWVzO1xuXG4gIHJldHVybiAoXG5cbiAgICA8ZGl2IGNsYXNzTmFtZT17YCR7Y2xhc3NOYW1lfSBwc2V1ZG8gaG9yaXpvbnRhbCBzcGxpdHRlcmB9IC8+
|
|
44
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zcGxpdHRlci9wc2V1ZG8uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmNvbnN0IFBzZXVkb0hvcml6b250YWxTcGxpdHRlckRpdiA9IChwcm9wZXJ0aWVzKSA9PiB7XG4gIGNvbnN0IHsgY2xhc3NOYW1lIH0gPSBwcm9wZXJ0aWVzO1xuXG4gIHJldHVybiAoXG5cbiAgICA8ZGl2IGNsYXNzTmFtZT17YCR7Y2xhc3NOYW1lfSBwc2V1ZG8gaG9yaXpvbnRhbCBzcGxpdHRlcmB9IC8+XG5cbiAgKTtcbn07XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShQc2V1ZG9Ib3Jpem9udGFsU3BsaXR0ZXJEaXYpYFxuXG4gIGhlaWdodDogMC44cmVtO1xuICBmbGV4LXNocmluazogMDtcbiAgYmFja2dyb3VuZC1jb2xvcjogYmxhY2s7XG5cbmA7XG4iXSwibmFtZXMiOlsiUHNldWRvSG9yaXpvbnRhbFNwbGl0dGVyRGl2IiwicHJvcGVydGllcyIsImNsYXNzTmFtZSIsImRpdiIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBY0E7OztlQUFBOzs7b0VBWnNCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXRCLElBQU1BLDhCQUE4QixTQUFDQyxZQUFlO0lBQ2xELElBQU0sQUFBRUMsWUFBY0QsV0FBZEM7SUFFUixxQkFFRSxvQkFBQ0M7UUFBSUQsV0FBVyxBQUFDLEdBQVksT0FBVkEsV0FBVTs7QUFHakM7SUFFQSxXQUFlRSxJQUFBQSxzQkFBUyxFQUFDSiJ9
|
|
@@ -8,20 +8,20 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _index = require("../../../../index");
|
|
13
|
-
function
|
|
13
|
+
function _assert_this_initialized(self) {
|
|
14
14
|
if (self === void 0) {
|
|
15
15
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
16
|
}
|
|
17
17
|
return self;
|
|
18
18
|
}
|
|
19
|
-
function
|
|
19
|
+
function _class_call_check(instance, Constructor) {
|
|
20
20
|
if (!(instance instanceof Constructor)) {
|
|
21
21
|
throw new TypeError("Cannot call a class as a function");
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function _define_property(obj, key, value) {
|
|
25
25
|
if (key in obj) {
|
|
26
26
|
Object.defineProperty(obj, key, {
|
|
27
27
|
value: value,
|
|
@@ -34,11 +34,11 @@ function _defineProperty(obj, key, value) {
|
|
|
34
34
|
}
|
|
35
35
|
return obj;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
38
|
-
|
|
37
|
+
function _get_prototype_of(o) {
|
|
38
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
39
39
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
40
40
|
};
|
|
41
|
-
return
|
|
41
|
+
return _get_prototype_of(o);
|
|
42
42
|
}
|
|
43
43
|
function _inherits(subClass, superClass) {
|
|
44
44
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -51,27 +51,27 @@ function _inherits(subClass, superClass) {
|
|
|
51
51
|
configurable: true
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
if (superClass)
|
|
54
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
55
55
|
}
|
|
56
|
-
function
|
|
56
|
+
function _interop_require_default(obj) {
|
|
57
57
|
return obj && obj.__esModule ? obj : {
|
|
58
58
|
default: obj
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
function
|
|
62
|
-
if (call && (
|
|
61
|
+
function _possible_constructor_return(self, call) {
|
|
62
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
63
63
|
return call;
|
|
64
64
|
}
|
|
65
|
-
return
|
|
65
|
+
return _assert_this_initialized(self);
|
|
66
66
|
}
|
|
67
|
-
function
|
|
68
|
-
|
|
67
|
+
function _set_prototype_of(o, p) {
|
|
68
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
69
69
|
o.__proto__ = p;
|
|
70
70
|
return o;
|
|
71
71
|
};
|
|
72
|
-
return
|
|
72
|
+
return _set_prototype_of(o, p);
|
|
73
73
|
}
|
|
74
|
-
function
|
|
74
|
+
function _tagged_template_literal(strings, raw) {
|
|
75
75
|
if (!raw) {
|
|
76
76
|
raw = strings.slice(0);
|
|
77
77
|
}
|
|
@@ -81,11 +81,11 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
81
81
|
}
|
|
82
82
|
}));
|
|
83
83
|
}
|
|
84
|
-
|
|
84
|
+
function _type_of(obj) {
|
|
85
85
|
"@swc/helpers - typeof";
|
|
86
86
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
87
|
-
}
|
|
88
|
-
function
|
|
87
|
+
}
|
|
88
|
+
function _is_native_reflect_construct() {
|
|
89
89
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
90
90
|
if (Reflect.construct.sham) return false;
|
|
91
91
|
if (typeof Proxy === "function") return true;
|
|
@@ -96,21 +96,21 @@ function _isNativeReflectConstruct() {
|
|
|
96
96
|
return false;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
var hasNativeReflectConstruct =
|
|
99
|
+
function _create_super(Derived) {
|
|
100
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
101
101
|
return function _createSuperInternal() {
|
|
102
|
-
var Super =
|
|
102
|
+
var Super = _get_prototype_of(Derived), result;
|
|
103
103
|
if (hasNativeReflectConstruct) {
|
|
104
|
-
var NewTarget =
|
|
104
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
105
105
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
106
106
|
} else {
|
|
107
107
|
result = Super.apply(this, arguments);
|
|
108
108
|
}
|
|
109
|
-
return
|
|
109
|
+
return _possible_constructor_return(this, result);
|
|
110
110
|
};
|
|
111
111
|
}
|
|
112
112
|
function _templateObject() {
|
|
113
|
-
var data =
|
|
113
|
+
var data = _tagged_template_literal([
|
|
114
114
|
"\n\n background-color: black;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var LeftVerticalSplitterDiv = /*#__PURE__*/ function(VerticalSplitterDiv) {
|
|
122
122
|
_inherits(LeftVerticalSplitterDiv, VerticalSplitterDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(LeftVerticalSplitterDiv);
|
|
124
124
|
function LeftVerticalSplitterDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, LeftVerticalSplitterDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return LeftVerticalSplitterDiv;
|
|
129
129
|
}(_index.VerticalSplitterDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(LeftVerticalSplitterDiv, "defaultProperties", {
|
|
131
131
|
className: "left"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(LeftVerticalSplitterDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zcGxpdHRlci92ZXJ0aWNhbC9sZWZ0LmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBWZXJ0aWNhbFNwbGl0dGVyRGl2IH0gZnJvbSBcIi4uLy4uLy4uLy4uL2luZGV4XCI7IC8vL1xuXG5jbGFzcyBMZWZ0VmVydGljYWxTcGxpdHRlckRpdiBleHRlbmRzIFZlcnRpY2FsU3BsaXR0ZXJEaXYge1xuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImxlZnRcIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoTGVmdFZlcnRpY2FsU3BsaXR0ZXJEaXYpYFxuXG4gIGJhY2tncm91bmQtY29sb3I6IGJsYWNrO1xuXG5gO1xuIl0sIm5hbWVzIjpbIkxlZnRWZXJ0aWNhbFNwbGl0dGVyRGl2IiwiVmVydGljYWxTcGxpdHRlckRpdiIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFZQTs7O2VBQUE7OztvRUFWc0I7cUJBRWM7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFcEMsSUFBQSxBQUFNQSx3Q0FNSCxBQU5IO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtFQUFnQ0MsMEJBQW1CO0FBQ3ZELGlCQURJRCx5QkFDR0UscUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDSiJ9
|