easy-layout 6.0.21 → 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 +4268 -4403
- 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
package/lib/div/rows.js
CHANGED
|
@@ -8,48 +8,37 @@ 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 _easy = require("easy");
|
|
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 isNativeReflectConstruct() {
|
|
25
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
26
|
-
if (Reflect.construct.sham) return false;
|
|
27
|
-
if (typeof Proxy === "function") return true;
|
|
28
|
-
try {
|
|
29
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
30
|
-
return true;
|
|
31
|
-
} catch (e) {
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
24
|
function _construct(Parent, args, Class) {
|
|
36
|
-
if (
|
|
25
|
+
if (_is_native_reflect_construct()) {
|
|
37
26
|
_construct = Reflect.construct;
|
|
38
27
|
} else {
|
|
39
|
-
_construct = function
|
|
28
|
+
_construct = function construct(Parent, args, Class) {
|
|
40
29
|
var a = [
|
|
41
30
|
null
|
|
42
31
|
];
|
|
43
32
|
a.push.apply(a, args);
|
|
44
33
|
var Constructor = Function.bind.apply(Parent, a);
|
|
45
34
|
var instance = new Constructor();
|
|
46
|
-
if (Class)
|
|
35
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
47
36
|
return instance;
|
|
48
37
|
};
|
|
49
38
|
}
|
|
50
39
|
return _construct.apply(null, arguments);
|
|
51
40
|
}
|
|
52
|
-
function
|
|
41
|
+
function _define_property(obj, key, value) {
|
|
53
42
|
if (key in obj) {
|
|
54
43
|
Object.defineProperty(obj, key, {
|
|
55
44
|
value: value,
|
|
@@ -62,11 +51,11 @@ function _defineProperty(obj, key, value) {
|
|
|
62
51
|
}
|
|
63
52
|
return obj;
|
|
64
53
|
}
|
|
65
|
-
function
|
|
66
|
-
|
|
54
|
+
function _get_prototype_of(o) {
|
|
55
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
67
56
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
68
57
|
};
|
|
69
|
-
return
|
|
58
|
+
return _get_prototype_of(o);
|
|
70
59
|
}
|
|
71
60
|
function _inherits(subClass, superClass) {
|
|
72
61
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -79,30 +68,30 @@ function _inherits(subClass, superClass) {
|
|
|
79
68
|
configurable: true
|
|
80
69
|
}
|
|
81
70
|
});
|
|
82
|
-
if (superClass)
|
|
71
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
83
72
|
}
|
|
84
|
-
function
|
|
73
|
+
function _interop_require_default(obj) {
|
|
85
74
|
return obj && obj.__esModule ? obj : {
|
|
86
75
|
default: obj
|
|
87
76
|
};
|
|
88
77
|
}
|
|
89
|
-
function
|
|
78
|
+
function _is_native_function(fn) {
|
|
90
79
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
91
80
|
}
|
|
92
|
-
function
|
|
93
|
-
if (call && (
|
|
81
|
+
function _possible_constructor_return(self, call) {
|
|
82
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
94
83
|
return call;
|
|
95
84
|
}
|
|
96
|
-
return
|
|
85
|
+
return _assert_this_initialized(self);
|
|
97
86
|
}
|
|
98
|
-
function
|
|
99
|
-
|
|
87
|
+
function _set_prototype_of(o, p) {
|
|
88
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
100
89
|
o.__proto__ = p;
|
|
101
90
|
return o;
|
|
102
91
|
};
|
|
103
|
-
return
|
|
92
|
+
return _set_prototype_of(o, p);
|
|
104
93
|
}
|
|
105
|
-
function
|
|
94
|
+
function _tagged_template_literal(strings, raw) {
|
|
106
95
|
if (!raw) {
|
|
107
96
|
raw = strings.slice(0);
|
|
108
97
|
}
|
|
@@ -112,14 +101,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
112
101
|
}
|
|
113
102
|
}));
|
|
114
103
|
}
|
|
115
|
-
|
|
104
|
+
function _type_of(obj) {
|
|
116
105
|
"@swc/helpers - typeof";
|
|
117
106
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
118
|
-
}
|
|
119
|
-
function
|
|
107
|
+
}
|
|
108
|
+
function _wrap_native_super(Class) {
|
|
120
109
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
121
|
-
|
|
122
|
-
if (Class === null || !
|
|
110
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
111
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
123
112
|
if (typeof Class !== "function") {
|
|
124
113
|
throw new TypeError("Super expression must either be null or a function");
|
|
125
114
|
}
|
|
@@ -128,7 +117,7 @@ function _wrapNativeSuper(Class) {
|
|
|
128
117
|
_cache.set(Class, Wrapper);
|
|
129
118
|
}
|
|
130
119
|
function Wrapper() {
|
|
131
|
-
return _construct(Class, arguments,
|
|
120
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
132
121
|
}
|
|
133
122
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
134
123
|
constructor: {
|
|
@@ -138,11 +127,11 @@ function _wrapNativeSuper(Class) {
|
|
|
138
127
|
configurable: true
|
|
139
128
|
}
|
|
140
129
|
});
|
|
141
|
-
return
|
|
130
|
+
return _set_prototype_of(Wrapper, Class);
|
|
142
131
|
};
|
|
143
|
-
return
|
|
132
|
+
return _wrap_native_super(Class);
|
|
144
133
|
}
|
|
145
|
-
function
|
|
134
|
+
function _is_native_reflect_construct() {
|
|
146
135
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
147
136
|
if (Reflect.construct.sham) return false;
|
|
148
137
|
if (typeof Proxy === "function") return true;
|
|
@@ -153,21 +142,21 @@ function _isNativeReflectConstruct() {
|
|
|
153
142
|
return false;
|
|
154
143
|
}
|
|
155
144
|
}
|
|
156
|
-
function
|
|
157
|
-
var hasNativeReflectConstruct =
|
|
145
|
+
function _create_super(Derived) {
|
|
146
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
158
147
|
return function _createSuperInternal() {
|
|
159
|
-
var Super =
|
|
148
|
+
var Super = _get_prototype_of(Derived), result;
|
|
160
149
|
if (hasNativeReflectConstruct) {
|
|
161
|
-
var NewTarget =
|
|
150
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
162
151
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
163
152
|
} else {
|
|
164
153
|
result = Super.apply(this, arguments);
|
|
165
154
|
}
|
|
166
|
-
return
|
|
155
|
+
return _possible_constructor_return(this, result);
|
|
167
156
|
};
|
|
168
157
|
}
|
|
169
158
|
function _templateObject() {
|
|
170
|
-
var data =
|
|
159
|
+
var data = _tagged_template_literal([
|
|
171
160
|
"\n\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n\n"
|
|
172
161
|
]);
|
|
173
162
|
_templateObject = function _templateObject() {
|
|
@@ -177,17 +166,17 @@ function _templateObject() {
|
|
|
177
166
|
}
|
|
178
167
|
var RowsDiv = /*#__PURE__*/ function(Element) {
|
|
179
168
|
_inherits(RowsDiv, Element);
|
|
180
|
-
var _super =
|
|
169
|
+
var _super = _create_super(RowsDiv);
|
|
181
170
|
function RowsDiv() {
|
|
182
|
-
|
|
171
|
+
_class_call_check(this, RowsDiv);
|
|
183
172
|
return _super.apply(this, arguments);
|
|
184
173
|
}
|
|
185
174
|
return RowsDiv;
|
|
186
|
-
}(
|
|
187
|
-
|
|
188
|
-
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(RowsDiv, "tagName", "div");
|
|
177
|
+
_define_property(RowsDiv, "defaultProperties", {
|
|
189
178
|
className: "rows"
|
|
190
179
|
});
|
|
191
|
-
var _default = (0,
|
|
180
|
+
var _default = (0, _easywithstyle.default)(RowsDiv)(_templateObject());
|
|
192
181
|
|
|
193
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
182
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvcm93cy5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmNsYXNzIFJvd3NEaXYgZXh0ZW5kcyBFbGVtZW50IHtcbiAgc3RhdGljIHRhZ05hbWUgPSBcImRpdlwiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwicm93c1wiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShSb3dzRGl2KWBcblxuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWdyb3c6IDE7XG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG5cbmA7XG4iXSwibmFtZXMiOlsiUm93c0RpdiIsIkVsZW1lbnQiLCJ0YWdOYW1lIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiLCJ3aXRoU3R5bGUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQWNBOzs7ZUFBQTs7O29FQVpzQjtvQkFFRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFeEIsSUFBQSxBQUFNQSx3QkFRSCxBQVJIO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtxQkFBZ0JDLGFBQU87QUFDM0IsaUJBRElELFNBQ0dFLFdBQVU7QUFFakIsaUJBSElGLFNBR0dHLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0wifQ==
|
package/lib/div/sizeable.js
CHANGED
|
@@ -8,48 +8,37 @@ 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 _easy = require("easy");
|
|
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 isNativeReflectConstruct() {
|
|
25
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
26
|
-
if (Reflect.construct.sham) return false;
|
|
27
|
-
if (typeof Proxy === "function") return true;
|
|
28
|
-
try {
|
|
29
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
30
|
-
return true;
|
|
31
|
-
} catch (e) {
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
24
|
function _construct(Parent, args, Class) {
|
|
36
|
-
if (
|
|
25
|
+
if (_is_native_reflect_construct()) {
|
|
37
26
|
_construct = Reflect.construct;
|
|
38
27
|
} else {
|
|
39
|
-
_construct = function
|
|
28
|
+
_construct = function construct(Parent, args, Class) {
|
|
40
29
|
var a = [
|
|
41
30
|
null
|
|
42
31
|
];
|
|
43
32
|
a.push.apply(a, args);
|
|
44
33
|
var Constructor = Function.bind.apply(Parent, a);
|
|
45
34
|
var instance = new Constructor();
|
|
46
|
-
if (Class)
|
|
35
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
47
36
|
return instance;
|
|
48
37
|
};
|
|
49
38
|
}
|
|
50
39
|
return _construct.apply(null, arguments);
|
|
51
40
|
}
|
|
52
|
-
function
|
|
41
|
+
function _define_property(obj, key, value) {
|
|
53
42
|
if (key in obj) {
|
|
54
43
|
Object.defineProperty(obj, key, {
|
|
55
44
|
value: value,
|
|
@@ -62,11 +51,11 @@ function _defineProperty(obj, key, value) {
|
|
|
62
51
|
}
|
|
63
52
|
return obj;
|
|
64
53
|
}
|
|
65
|
-
function
|
|
66
|
-
|
|
54
|
+
function _get_prototype_of(o) {
|
|
55
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
67
56
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
68
57
|
};
|
|
69
|
-
return
|
|
58
|
+
return _get_prototype_of(o);
|
|
70
59
|
}
|
|
71
60
|
function _inherits(subClass, superClass) {
|
|
72
61
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -79,30 +68,30 @@ function _inherits(subClass, superClass) {
|
|
|
79
68
|
configurable: true
|
|
80
69
|
}
|
|
81
70
|
});
|
|
82
|
-
if (superClass)
|
|
71
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
83
72
|
}
|
|
84
|
-
function
|
|
73
|
+
function _interop_require_default(obj) {
|
|
85
74
|
return obj && obj.__esModule ? obj : {
|
|
86
75
|
default: obj
|
|
87
76
|
};
|
|
88
77
|
}
|
|
89
|
-
function
|
|
78
|
+
function _is_native_function(fn) {
|
|
90
79
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
91
80
|
}
|
|
92
|
-
function
|
|
93
|
-
if (call && (
|
|
81
|
+
function _possible_constructor_return(self, call) {
|
|
82
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
94
83
|
return call;
|
|
95
84
|
}
|
|
96
|
-
return
|
|
85
|
+
return _assert_this_initialized(self);
|
|
97
86
|
}
|
|
98
|
-
function
|
|
99
|
-
|
|
87
|
+
function _set_prototype_of(o, p) {
|
|
88
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
100
89
|
o.__proto__ = p;
|
|
101
90
|
return o;
|
|
102
91
|
};
|
|
103
|
-
return
|
|
92
|
+
return _set_prototype_of(o, p);
|
|
104
93
|
}
|
|
105
|
-
function
|
|
94
|
+
function _tagged_template_literal(strings, raw) {
|
|
106
95
|
if (!raw) {
|
|
107
96
|
raw = strings.slice(0);
|
|
108
97
|
}
|
|
@@ -112,14 +101,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
112
101
|
}
|
|
113
102
|
}));
|
|
114
103
|
}
|
|
115
|
-
|
|
104
|
+
function _type_of(obj) {
|
|
116
105
|
"@swc/helpers - typeof";
|
|
117
106
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
118
|
-
}
|
|
119
|
-
function
|
|
107
|
+
}
|
|
108
|
+
function _wrap_native_super(Class) {
|
|
120
109
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
121
|
-
|
|
122
|
-
if (Class === null || !
|
|
110
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
111
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
123
112
|
if (typeof Class !== "function") {
|
|
124
113
|
throw new TypeError("Super expression must either be null or a function");
|
|
125
114
|
}
|
|
@@ -128,7 +117,7 @@ function _wrapNativeSuper(Class) {
|
|
|
128
117
|
_cache.set(Class, Wrapper);
|
|
129
118
|
}
|
|
130
119
|
function Wrapper() {
|
|
131
|
-
return _construct(Class, arguments,
|
|
120
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
132
121
|
}
|
|
133
122
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
134
123
|
constructor: {
|
|
@@ -138,11 +127,11 @@ function _wrapNativeSuper(Class) {
|
|
|
138
127
|
configurable: true
|
|
139
128
|
}
|
|
140
129
|
});
|
|
141
|
-
return
|
|
130
|
+
return _set_prototype_of(Wrapper, Class);
|
|
142
131
|
};
|
|
143
|
-
return
|
|
132
|
+
return _wrap_native_super(Class);
|
|
144
133
|
}
|
|
145
|
-
function
|
|
134
|
+
function _is_native_reflect_construct() {
|
|
146
135
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
147
136
|
if (Reflect.construct.sham) return false;
|
|
148
137
|
if (typeof Proxy === "function") return true;
|
|
@@ -153,21 +142,21 @@ function _isNativeReflectConstruct() {
|
|
|
153
142
|
return false;
|
|
154
143
|
}
|
|
155
144
|
}
|
|
156
|
-
function
|
|
157
|
-
var hasNativeReflectConstruct =
|
|
145
|
+
function _create_super(Derived) {
|
|
146
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
158
147
|
return function _createSuperInternal() {
|
|
159
|
-
var Super =
|
|
148
|
+
var Super = _get_prototype_of(Derived), result;
|
|
160
149
|
if (hasNativeReflectConstruct) {
|
|
161
|
-
var NewTarget =
|
|
150
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
162
151
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
163
152
|
} else {
|
|
164
153
|
result = Super.apply(this, arguments);
|
|
165
154
|
}
|
|
166
|
-
return
|
|
155
|
+
return _possible_constructor_return(this, result);
|
|
167
156
|
};
|
|
168
157
|
}
|
|
169
158
|
function _templateObject() {
|
|
170
|
-
var data =
|
|
159
|
+
var data = _tagged_template_literal([
|
|
171
160
|
"\n\n display: flex;\n \n"
|
|
172
161
|
]);
|
|
173
162
|
_templateObject = function _templateObject() {
|
|
@@ -177,17 +166,17 @@ function _templateObject() {
|
|
|
177
166
|
}
|
|
178
167
|
var SizeableDiv = /*#__PURE__*/ function(Element) {
|
|
179
168
|
_inherits(SizeableDiv, Element);
|
|
180
|
-
var _super =
|
|
169
|
+
var _super = _create_super(SizeableDiv);
|
|
181
170
|
function SizeableDiv() {
|
|
182
|
-
|
|
171
|
+
_class_call_check(this, SizeableDiv);
|
|
183
172
|
return _super.apply(this, arguments);
|
|
184
173
|
}
|
|
185
174
|
return SizeableDiv;
|
|
186
|
-
}(
|
|
187
|
-
|
|
188
|
-
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(SizeableDiv, "tagName", "div");
|
|
177
|
+
_define_property(SizeableDiv, "defaultProperties", {
|
|
189
178
|
className: "sizeable"
|
|
190
179
|
});
|
|
191
|
-
var _default = (0,
|
|
180
|
+
var _default = (0, _easywithstyle.default)(SizeableDiv)(_templateObject());
|
|
192
181
|
|
|
193
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
182
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvc2l6ZWFibGUuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5jbGFzcyBTaXplYWJsZURpdiBleHRlbmRzIEVsZW1lbnQge1xuICBzdGF0aWMgdGFnTmFtZSA9IFwiZGl2XCI7XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJzaXplYWJsZVwiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShTaXplYWJsZURpdilgXG5cbiAgZGlzcGxheTogZmxleDtcbiAgXG5gO1xuIl0sIm5hbWVzIjpbIlNpemVhYmxlRGl2IiwiRWxlbWVudCIsInRhZ05hbWUiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBY0E7OztlQUFBOzs7b0VBWnNCO29CQUVFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV4QixJQUFBLEFBQU1BLDRCQVFILEFBUkg7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O1dBQUFBO3FCQUFvQkMsYUFBTztBQUMvQixpQkFESUQsYUFDR0UsV0FBVTtBQUVqQixpQkFISUYsYUFHR0cscUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDTCJ9
|
|
@@ -8,16 +8,16 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
12
|
-
var _splitter = /*#__PURE__*/
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
+
var _splitter = /*#__PURE__*/ _interop_require_default(require("../splitter"));
|
|
13
13
|
var _cursor = require("../../cursor");
|
|
14
|
-
function
|
|
14
|
+
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
16
16
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
17
|
}
|
|
18
18
|
return self;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _class_call_check(instance, Constructor) {
|
|
21
21
|
if (!(instance instanceof Constructor)) {
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
@@ -31,12 +31,12 @@ function _defineProperties(target, props) {
|
|
|
31
31
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
-
function
|
|
34
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
35
35
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
36
36
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
37
37
|
return Constructor;
|
|
38
38
|
}
|
|
39
|
-
function
|
|
39
|
+
function _define_property(obj, key, value) {
|
|
40
40
|
if (key in obj) {
|
|
41
41
|
Object.defineProperty(obj, key, {
|
|
42
42
|
value: value,
|
|
@@ -49,11 +49,11 @@ function _defineProperty(obj, key, value) {
|
|
|
49
49
|
}
|
|
50
50
|
return obj;
|
|
51
51
|
}
|
|
52
|
-
function
|
|
53
|
-
|
|
52
|
+
function _get_prototype_of(o) {
|
|
53
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
54
54
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
55
55
|
};
|
|
56
|
-
return
|
|
56
|
+
return _get_prototype_of(o);
|
|
57
57
|
}
|
|
58
58
|
function _inherits(subClass, superClass) {
|
|
59
59
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -66,27 +66,27 @@ function _inherits(subClass, superClass) {
|
|
|
66
66
|
configurable: true
|
|
67
67
|
}
|
|
68
68
|
});
|
|
69
|
-
if (superClass)
|
|
69
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
70
70
|
}
|
|
71
|
-
function
|
|
71
|
+
function _interop_require_default(obj) {
|
|
72
72
|
return obj && obj.__esModule ? obj : {
|
|
73
73
|
default: obj
|
|
74
74
|
};
|
|
75
75
|
}
|
|
76
|
-
function
|
|
77
|
-
if (call && (
|
|
76
|
+
function _possible_constructor_return(self, call) {
|
|
77
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
78
78
|
return call;
|
|
79
79
|
}
|
|
80
|
-
return
|
|
80
|
+
return _assert_this_initialized(self);
|
|
81
81
|
}
|
|
82
|
-
function
|
|
83
|
-
|
|
82
|
+
function _set_prototype_of(o, p) {
|
|
83
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
84
84
|
o.__proto__ = p;
|
|
85
85
|
return o;
|
|
86
86
|
};
|
|
87
|
-
return
|
|
87
|
+
return _set_prototype_of(o, p);
|
|
88
88
|
}
|
|
89
|
-
function
|
|
89
|
+
function _tagged_template_literal(strings, raw) {
|
|
90
90
|
if (!raw) {
|
|
91
91
|
raw = strings.slice(0);
|
|
92
92
|
}
|
|
@@ -96,11 +96,11 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
96
96
|
}
|
|
97
97
|
}));
|
|
98
98
|
}
|
|
99
|
-
|
|
99
|
+
function _type_of(obj) {
|
|
100
100
|
"@swc/helpers - typeof";
|
|
101
101
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
102
|
-
}
|
|
103
|
-
function
|
|
102
|
+
}
|
|
103
|
+
function _is_native_reflect_construct() {
|
|
104
104
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
105
105
|
if (Reflect.construct.sham) return false;
|
|
106
106
|
if (typeof Proxy === "function") return true;
|
|
@@ -111,21 +111,21 @@ function _isNativeReflectConstruct() {
|
|
|
111
111
|
return false;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
|
-
function
|
|
115
|
-
var hasNativeReflectConstruct =
|
|
114
|
+
function _create_super(Derived) {
|
|
115
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
116
116
|
return function _createSuperInternal() {
|
|
117
|
-
var Super =
|
|
117
|
+
var Super = _get_prototype_of(Derived), result;
|
|
118
118
|
if (hasNativeReflectConstruct) {
|
|
119
|
-
var NewTarget =
|
|
119
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
120
120
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
121
121
|
} else {
|
|
122
122
|
result = Super.apply(this, arguments);
|
|
123
123
|
}
|
|
124
|
-
return
|
|
124
|
+
return _possible_constructor_return(this, result);
|
|
125
125
|
};
|
|
126
126
|
}
|
|
127
127
|
function _templateObject() {
|
|
128
|
-
var data =
|
|
128
|
+
var data = _tagged_template_literal([
|
|
129
129
|
"\n\n height: 1rem;\n\n"
|
|
130
130
|
]);
|
|
131
131
|
_templateObject = function _templateObject() {
|
|
@@ -135,15 +135,15 @@ function _templateObject() {
|
|
|
135
135
|
}
|
|
136
136
|
var HorizontalSplitter = /*#__PURE__*/ function(Splitter) {
|
|
137
137
|
_inherits(HorizontalSplitter, Splitter);
|
|
138
|
-
var _super =
|
|
138
|
+
var _super = _create_super(HorizontalSplitter);
|
|
139
139
|
function HorizontalSplitter() {
|
|
140
|
-
|
|
140
|
+
_class_call_check(this, HorizontalSplitter);
|
|
141
141
|
var _this;
|
|
142
142
|
_this = _super.apply(this, arguments);
|
|
143
|
-
|
|
143
|
+
_define_property(_assert_this_initialized(_this), "mouseOverHandler", function(event, element) {
|
|
144
144
|
_this.setCursor();
|
|
145
145
|
});
|
|
146
|
-
|
|
146
|
+
_define_property(_assert_this_initialized(_this), "startDragHandler", function(element) {
|
|
147
147
|
var disabled = _this.isDisabled();
|
|
148
148
|
if (!disabled) {
|
|
149
149
|
var sizeableDiv = _this.getSizeableDiv(), sizeableDivHeight = sizeableDiv.getHeight(), previousSizeableDivHeight = sizeableDivHeight; ///
|
|
@@ -151,7 +151,7 @@ var HorizontalSplitter = /*#__PURE__*/ function(Splitter) {
|
|
|
151
151
|
}
|
|
152
152
|
_this.setCursor();
|
|
153
153
|
});
|
|
154
|
-
|
|
154
|
+
_define_property(_assert_this_initialized(_this), "dragHandler", function(relativeMouseTop, relativeMouseLeft) {
|
|
155
155
|
var disabled = _this.isDisabled();
|
|
156
156
|
if (!disabled) {
|
|
157
157
|
var direction = _this.getDirection(), sizeableDiv = _this.getSizeableDiv(), previousSizeableDivHeight = _this.getPreviousSizeableDivHeight(), sizeableDivHeight = previousSizeableDivHeight - direction * relativeMouseTop, height = sizeableDivHeight; ///
|
|
@@ -160,7 +160,7 @@ var HorizontalSplitter = /*#__PURE__*/ function(Splitter) {
|
|
|
160
160
|
});
|
|
161
161
|
return _this;
|
|
162
162
|
}
|
|
163
|
-
|
|
163
|
+
_create_class(HorizontalSplitter, [
|
|
164
164
|
{
|
|
165
165
|
key: "setCursor",
|
|
166
166
|
value: function setCursor() {
|
|
@@ -197,9 +197,9 @@ var HorizontalSplitter = /*#__PURE__*/ function(Splitter) {
|
|
|
197
197
|
]);
|
|
198
198
|
return HorizontalSplitter;
|
|
199
199
|
}(_splitter.default);
|
|
200
|
-
|
|
200
|
+
_define_property(HorizontalSplitter, "defaultProperties", {
|
|
201
201
|
className: "horizontal"
|
|
202
202
|
});
|
|
203
|
-
var _default = (0,
|
|
203
|
+
var _default = (0, _easywithstyle.default)(HorizontalSplitter)(_templateObject());
|
|
204
204
|
|
|
205
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9kaXYvc3BsaXR0ZXIvaG9yaXpvbnRhbC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IFNwbGl0dGVyIGZyb20gXCIuLi9zcGxpdHRlclwiO1xuXG5pbXBvcnQgeyByb3dSZXNpemVDdXJzb3IgfSBmcm9tIFwiLi4vLi4vY3Vyc29yXCI7XG5cbmNsYXNzIEhvcml6b250YWxTcGxpdHRlciBleHRlbmRzIFNwbGl0dGVyIHtcbiAgbW91c2VPdmVySGFuZGxlciA9IChldmVudCwgZWxlbWVudCkgPT4ge1xuICAgIHRoaXMuc2V0Q3Vyc29yKCk7XG4gIH1cblxuICBzdGFydERyYWdIYW5kbGVyID0gKGVsZW1lbnQpID0+IHtcbiAgICBjb25zdCBkaXNhYmxlZCA9IHRoaXMuaXNEaXNhYmxlZCgpO1xuXG4gICAgaWYgKCFkaXNhYmxlZCkge1xuICAgICAgY29uc3Qgc2l6ZWFibGVEaXYgPSB0aGlzLmdldFNpemVhYmxlRGl2KCksXG4gICAgICAgICAgICBzaXplYWJsZURpdkhlaWdodCA9IHNpemVhYmxlRGl2LmdldEhlaWdodCgpLFxuICAgICAgICAgICAgcHJldmlvdXNTaXplYWJsZURpdkhlaWdodCA9IHNpemVhYmxlRGl2SGVpZ2h0OyAgLy8vXG5cbiAgICAgIHRoaXMuc2V0UHJldmlvdXNTaXplYWJsZURpdkhlaWdodChwcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0KTtcbiAgICB9XG5cbiAgICB0aGlzLnNldEN1cnNvcigpO1xuICB9XG5cbiAgZHJhZ0hhbmRsZXIgPSAocmVsYXRpdmVNb3VzZVRvcCwgcmVsYXRpdmVNb3VzZUxlZnQpID0+
|
|
205
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9kaXYvc3BsaXR0ZXIvaG9yaXpvbnRhbC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IFNwbGl0dGVyIGZyb20gXCIuLi9zcGxpdHRlclwiO1xuXG5pbXBvcnQgeyByb3dSZXNpemVDdXJzb3IgfSBmcm9tIFwiLi4vLi4vY3Vyc29yXCI7XG5cbmNsYXNzIEhvcml6b250YWxTcGxpdHRlciBleHRlbmRzIFNwbGl0dGVyIHtcbiAgbW91c2VPdmVySGFuZGxlciA9IChldmVudCwgZWxlbWVudCkgPT4ge1xuICAgIHRoaXMuc2V0Q3Vyc29yKCk7XG4gIH1cblxuICBzdGFydERyYWdIYW5kbGVyID0gKGVsZW1lbnQpID0+IHtcbiAgICBjb25zdCBkaXNhYmxlZCA9IHRoaXMuaXNEaXNhYmxlZCgpO1xuXG4gICAgaWYgKCFkaXNhYmxlZCkge1xuICAgICAgY29uc3Qgc2l6ZWFibGVEaXYgPSB0aGlzLmdldFNpemVhYmxlRGl2KCksXG4gICAgICAgICAgICBzaXplYWJsZURpdkhlaWdodCA9IHNpemVhYmxlRGl2LmdldEhlaWdodCgpLFxuICAgICAgICAgICAgcHJldmlvdXNTaXplYWJsZURpdkhlaWdodCA9IHNpemVhYmxlRGl2SGVpZ2h0OyAgLy8vXG5cbiAgICAgIHRoaXMuc2V0UHJldmlvdXNTaXplYWJsZURpdkhlaWdodChwcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0KTtcbiAgICB9XG5cbiAgICB0aGlzLnNldEN1cnNvcigpO1xuICB9XG5cbiAgZHJhZ0hhbmRsZXIgPSAocmVsYXRpdmVNb3VzZVRvcCwgcmVsYXRpdmVNb3VzZUxlZnQpID0+IHtcbiAgICBjb25zdCBkaXNhYmxlZCA9IHRoaXMuaXNEaXNhYmxlZCgpO1xuXG4gICAgaWYgKCFkaXNhYmxlZCkge1xuICAgICAgY29uc3QgZGlyZWN0aW9uID0gdGhpcy5nZXREaXJlY3Rpb24oKSxcbiAgICAgICAgICAgIHNpemVhYmxlRGl2ID0gdGhpcy5nZXRTaXplYWJsZURpdigpLFxuICAgICAgICAgICAgcHJldmlvdXNTaXplYWJsZURpdkhlaWdodCA9IHRoaXMuZ2V0UHJldmlvdXNTaXplYWJsZURpdkhlaWdodCgpLFxuICAgICAgICAgICAgc2l6ZWFibGVEaXZIZWlnaHQgPSBwcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0IC0gZGlyZWN0aW9uICogcmVsYXRpdmVNb3VzZVRvcCxcbiAgICAgICAgICAgIGhlaWdodCA9IHNpemVhYmxlRGl2SGVpZ2h0OyAvLy9cblxuICAgICAgc2l6ZWFibGVEaXYuc2V0SGVpZ2h0KGhlaWdodCk7XG4gICAgfVxuICB9XG5cbiAgc2V0Q3Vyc29yKCkge1xuICAgIGNvbnN0IGRpc2FibGVkID0gdGhpcy5pc0Rpc2FibGVkKCk7XG5cbiAgICBpZiAoIWRpc2FibGVkKSB7XG4gICAgICByb3dSZXNpemVDdXJzb3IoKTtcbiAgICB9XG4gIH1cblxuICBnZXRQcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0KCkge1xuICAgIGNvbnN0IHsgcHJldmlvdXNTaXplYWJsZURpdkhlaWdodCB9ID0gdGhpcy5nZXRTdGF0ZSgpO1xuXG4gICAgcmV0dXJuIHByZXZpb3VzU2l6ZWFibGVEaXZIZWlnaHQ7XG4gIH1cblxuICBzZXRQcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0KHByZXZpb3VzU2l6ZWFibGVEaXZIZWlnaHQpIHtcbiAgICB0aGlzLnVwZGF0ZVN0YXRlKHtcbiAgICAgIHByZXZpb3VzU2l6ZWFibGVEaXZIZWlnaHRcbiAgICB9KTtcbiAgfVxuXG4gIHNldEluaXRpYWxTdGF0ZSgpIHtcbiAgICBjb25zdCBwcmV2aW91c1NpemVhYmxlRGl2SGVpZ2h0ID0gbnVsbDtcblxuICAgIHRoaXMuc2V0U3RhdGUoe1xuICAgICAgcHJldmlvdXNTaXplYWJsZURpdkhlaWdodFxuICAgIH0pO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJob3Jpem9udGFsXCJcbiAgfTtcbn1cblxuZXhwb3J0IGRlZmF1bHQgd2l0aFN0eWxlKEhvcml6b250YWxTcGxpdHRlcilgXG5cbiAgaGVpZ2h0OiAxcmVtO1xuXG5gO1xuIl0sIm5hbWVzIjpbIkhvcml6b250YWxTcGxpdHRlciIsIm1vdXNlT3ZlckhhbmRsZXIiLCJldmVudCIsImVsZW1lbnQiLCJzZXRDdXJzb3IiLCJzdGFydERyYWdIYW5kbGVyIiwiZGlzYWJsZWQiLCJpc0Rpc2FibGVkIiwic2l6ZWFibGVEaXYiLCJnZXRTaXplYWJsZURpdiIsInNpemVhYmxlRGl2SGVpZ2h0IiwiZ2V0SGVpZ2h0IiwicHJldmlvdXNTaXplYWJsZURpdkhlaWdodCIsInNldFByZXZpb3VzU2l6ZWFibGVEaXZIZWlnaHQiLCJkcmFnSGFuZGxlciIsInJlbGF0aXZlTW91c2VUb3AiLCJyZWxhdGl2ZU1vdXNlTGVmdCIsImRpcmVjdGlvbiIsImdldERpcmVjdGlvbiIsImdldFByZXZpb3VzU2l6ZWFibGVEaXZIZWlnaHQiLCJoZWlnaHQiLCJzZXRIZWlnaHQiLCJyb3dSZXNpemVDdXJzb3IiLCJnZXRTdGF0ZSIsInVwZGF0ZVN0YXRlIiwic2V0SW5pdGlhbFN0YXRlIiwic2V0U3RhdGUiLCJTcGxpdHRlciIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkEwRUE7OztlQUFBOzs7b0VBeEVzQjsrREFFRDtzQkFFVzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWhDLElBQUEsQUFBTUEsbUNBa0VILEFBbEVIO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztRQUNKQyxrREFBQUEsb0JBQW1CLFNBQUNDLE9BQU9DLFNBQVk7WUFDckMsTUFBS0MsU0FBUztRQUNoQjtRQUVBQyxrREFBQUEsb0JBQW1CLFNBQUNGLFNBQVk7WUFDOUIsSUFBTUcsV0FBVyxNQUFLQyxVQUFVO1lBRWhDLElBQUksQ0FBQ0QsVUFBVTtnQkFDYixJQUFNRSxjQUFjLE1BQUtDLGNBQWMsSUFDakNDLG9CQUFvQkYsWUFBWUcsU0FBUyxJQUN6Q0MsNEJBQTRCRixtQkFBb0IsR0FBRztnQkFFekQsTUFBS0csNEJBQTRCLENBQUNEO1lBQ3BDLENBQUM7WUFFRCxNQUFLUixTQUFTO1FBQ2hCO1FBRUFVLGtEQUFBQSxlQUFjLFNBQUNDLGtCQUFrQkMsbUJBQXNCO1lBQ3JELElBQU1WLFdBQVcsTUFBS0MsVUFBVTtZQUVoQyxJQUFJLENBQUNELFVBQVU7Z0JBQ2IsSUFBTVcsWUFBWSxNQUFLQyxZQUFZLElBQzdCVixjQUFjLE1BQUtDLGNBQWMsSUFDakNHLDRCQUE0QixNQUFLTyw0QkFBNEIsSUFDN0RULG9CQUFvQkUsNEJBQTRCSyxZQUFZRixrQkFDNURLLFNBQVNWLG1CQUFtQixHQUFHO2dCQUVyQ0YsWUFBWWEsU0FBUyxDQUFDRDtZQUN4QixDQUFDO1FBQ0g7OztrQkEvQklwQjs7WUFpQ0pJLEtBQUFBO21CQUFBQSxTQUFBQSxZQUFZO2dCQUNWLElBQU1FLFdBQVcsSUFBSSxDQUFDQyxVQUFVO2dCQUVoQyxJQUFJLENBQUNELFVBQVU7b0JBQ2JnQixJQUFBQSx1QkFBZTtnQkFDakIsQ0FBQztZQUNIOzs7WUFFQUgsS0FBQUE7bUJBQUFBLFNBQUFBLCtCQUErQjtnQkFDN0IsSUFBTSxBQUFFUCw0QkFBOEIsSUFBSSxDQUFDVyxRQUFRLEdBQTNDWDtnQkFFUixPQUFPQTtZQUNUOzs7WUFFQUMsS0FBQUE7bUJBQUFBLFNBQUFBLDZCQUE2QkQseUJBQXlCLEVBQUU7Z0JBQ3RELElBQUksQ0FBQ1ksV0FBVyxDQUFDO29CQUNmWiwyQkFBQUE7Z0JBQ0Y7WUFDRjs7O1lBRUFhLEtBQUFBO21CQUFBQSxTQUFBQSxrQkFBa0I7Z0JBQ2hCLElBQU1iLDRCQUE0QixJQUFJO2dCQUV0QyxJQUFJLENBQUNjLFFBQVEsQ0FBQztvQkFDWmQsMkJBQUFBO2dCQUNGO1lBQ0Y7OztXQTNESVo7RUFBMkIyQixpQkFBUTtBQTZEdkMsaUJBN0RJM0Isb0JBNkRHNEIscUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDOUIifQ==
|