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 position: relative;\n \n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var MiddleColumnDiv = /*#__PURE__*/ function(ColumnDiv) {
|
|
122
122
|
_inherits(MiddleColumnDiv, ColumnDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(MiddleColumnDiv);
|
|
124
124
|
function MiddleColumnDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, MiddleColumnDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return MiddleColumnDiv;
|
|
129
129
|
}(_index.ColumnDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(MiddleColumnDiv, "defaultProperties", {
|
|
131
131
|
className: "middle"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(MiddleColumnDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9jb2x1bW4vbWlkZGxlLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBDb2x1bW5EaXYgfSBmcm9tIFwiLi4vLi4vLi4vaW5kZXhcIjsgLy8vXG5cbmNsYXNzIE1pZGRsZUNvbHVtbkRpdiBleHRlbmRzIENvbHVtbkRpdiB7XG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwibWlkZGxlXCJcbiAgfTtcbn1cblxuZXhwb3J0IGRlZmF1bHQgd2l0aFN0eWxlKE1pZGRsZUNvbHVtbkRpdilgXG5cbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBcbmA7XG4iXSwibmFtZXMiOlsiTWlkZGxlQ29sdW1uRGl2IiwiQ29sdW1uRGl2IiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiLCJ3aXRoU3R5bGUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQVlBOzs7ZUFBQTs7O29FQVZzQjtxQkFFSTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUUxQixJQUFBLEFBQU1BLGdDQU1ILEFBTkg7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O1dBQUFBO0VBQXdCQyxnQkFBUztBQUNyQyxpQkFESUQsaUJBQ0dFLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0oifQ==
|
|
@@ -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: blue;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var BlueRowDiv = /*#__PURE__*/ function(RowDiv) {
|
|
122
122
|
_inherits(BlueRowDiv, RowDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(BlueRowDiv);
|
|
124
124
|
function BlueRowDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, BlueRowDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return BlueRowDiv;
|
|
129
129
|
}(_index.RowDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(BlueRowDiv, "defaultProperties", {
|
|
131
131
|
className: "blue"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(BlueRowDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9yb3cvYmx1ZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgUm93RGl2IH0gZnJvbSBcIi4uLy4uLy4uL2luZGV4XCI7ICAvLy9cblxuY2xhc3MgQmx1ZVJvd0RpdiBleHRlbmRzIFJvd0RpdiB7XG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwiYmx1ZVwiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShCbHVlUm93RGl2KWBcblxuICBiYWNrZ3JvdW5kLWNvbG9yOiBibHVlO1xuXG5gO1xuIl0sIm5hbWVzIjpbIkJsdWVSb3dEaXYiLCJSb3dEaXYiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBWUE7OztlQUFBOzs7b0VBVnNCO3FCQUVDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXZCLElBQUEsQUFBTUEsMkJBTUgsQUFOSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7RUFBbUJDLGFBQU07QUFDN0IsaUJBRElELFlBQ0dFLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0oifQ==
|
|
@@ -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: yellow;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var YellowRowDiv = /*#__PURE__*/ function(RowDiv) {
|
|
122
122
|
_inherits(YellowRowDiv, RowDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(YellowRowDiv);
|
|
124
124
|
function YellowRowDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, YellowRowDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return YellowRowDiv;
|
|
129
129
|
}(_index.RowDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(YellowRowDiv, "defaultProperties", {
|
|
131
131
|
className: "yellow"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(YellowRowDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9yb3cveWVsbG93LmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBSb3dEaXYgfSBmcm9tIFwiLi4vLi4vLi4vaW5kZXhcIjsgIC8vL1xuXG5jbGFzcyBZZWxsb3dSb3dEaXYgZXh0ZW5kcyBSb3dEaXYge1xuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcInllbGxvd1wiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShZZWxsb3dSb3dEaXYpYFxuXG4gIGJhY2tncm91bmQtY29sb3I6IHllbGxvdztcblxuYDtcbiJdLCJuYW1lcyI6WyJZZWxsb3dSb3dEaXYiLCJSb3dEaXYiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBWUE7OztlQUFBOzs7b0VBVnNCO3FCQUVDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXZCLElBQUEsQUFBTUEsNkJBTUgsQUFOSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7RUFBcUJDLGFBQU07QUFDL0IsaUJBRElELGNBQ0dFLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0oifQ==
|
|
@@ -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 height: 24rem;\n\n"
|
|
115
115
|
]);
|
|
116
116
|
_templateObject = function _templateObject() {
|
|
@@ -120,16 +120,16 @@ function _templateObject() {
|
|
|
120
120
|
}
|
|
121
121
|
var BottomSizeableDiv = /*#__PURE__*/ function(SizeableDiv) {
|
|
122
122
|
_inherits(BottomSizeableDiv, SizeableDiv);
|
|
123
|
-
var _super =
|
|
123
|
+
var _super = _create_super(BottomSizeableDiv);
|
|
124
124
|
function BottomSizeableDiv() {
|
|
125
|
-
|
|
125
|
+
_class_call_check(this, BottomSizeableDiv);
|
|
126
126
|
return _super.apply(this, arguments);
|
|
127
127
|
}
|
|
128
128
|
return BottomSizeableDiv;
|
|
129
129
|
}(_index.SizeableDiv);
|
|
130
|
-
|
|
130
|
+
_define_property(BottomSizeableDiv, "defaultProperties", {
|
|
131
131
|
className: "bottom"
|
|
132
132
|
});
|
|
133
|
-
var _default = (0,
|
|
133
|
+
var _default = (0, _easywithstyle.default)(BottomSizeableDiv)(_templateObject());
|
|
134
134
|
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
135
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9leGFtcGxlL2Rpdi9zaXplYWJsZS9ib3R0b20uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCB7IFNpemVhYmxlRGl2IH0gZnJvbSBcIi4uLy4uLy4uL2luZGV4XCI7IC8vL1xuXG5jbGFzcyBCb3R0b21TaXplYWJsZURpdiBleHRlbmRzIFNpemVhYmxlRGl2IHtcbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJib3R0b21cIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoQm90dG9tU2l6ZWFibGVEaXYpYFxuXG4gIGhlaWdodDogMjRyZW07XG5cbmA7XG4iXSwibmFtZXMiOlsiQm90dG9tU2l6ZWFibGVEaXYiLCJTaXplYWJsZURpdiIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFZQTs7O2VBQUE7OztvRUFWc0I7cUJBRU07Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFNUIsSUFBQSxBQUFNQSxrQ0FNSCxBQU5IO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtFQUEwQkMsa0JBQVc7QUFDekMsaUJBRElELG1CQUNHRSxxQkFBb0I7SUFDekJDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNKIn0=
|