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/column.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\n"
|
|
172
161
|
]);
|
|
173
162
|
_templateObject = function _templateObject() {
|
|
@@ -177,17 +166,17 @@ function _templateObject() {
|
|
|
177
166
|
}
|
|
178
167
|
var ColumnDiv = /*#__PURE__*/ function(Element) {
|
|
179
168
|
_inherits(ColumnDiv, Element);
|
|
180
|
-
var _super =
|
|
169
|
+
var _super = _create_super(ColumnDiv);
|
|
181
170
|
function ColumnDiv() {
|
|
182
|
-
|
|
171
|
+
_class_call_check(this, ColumnDiv);
|
|
183
172
|
return _super.apply(this, arguments);
|
|
184
173
|
}
|
|
185
174
|
return ColumnDiv;
|
|
186
|
-
}(
|
|
187
|
-
|
|
188
|
-
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(ColumnDiv, "tagName", "div");
|
|
177
|
+
_define_property(ColumnDiv, "defaultProperties", {
|
|
189
178
|
className: "column"
|
|
190
179
|
});
|
|
191
|
-
var _default = (0,
|
|
180
|
+
var _default = (0, _easywithstyle.default)(ColumnDiv)(_templateObject());
|
|
192
181
|
|
|
193
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
182
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvY29sdW1uLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBFbGVtZW50IH0gZnJvbSBcImVhc3lcIjtcblxuY2xhc3MgQ29sdW1uRGl2IGV4dGVuZHMgRWxlbWVudCB7XG4gIHN0YXRpYyB0YWdOYW1lID0gXCJkaXZcIjtcblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImNvbHVtblwiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShDb2x1bW5EaXYpYFxuXG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZ3JvdzogMTtcblxuYDtcbiJdLCJuYW1lcyI6WyJDb2x1bW5EaXYiLCJFbGVtZW50IiwidGFnTmFtZSIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFjQTs7O2VBQUE7OztvRUFac0I7b0JBRUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXhCLElBQUEsQUFBTUEsMEJBUUgsQUFSSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7cUJBQWtCQyxhQUFPO0FBQzdCLGlCQURJRCxXQUNHRSxXQUFVO0FBRWpCLGlCQUhJRixXQUdHRyxxQkFBb0I7SUFDekJDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNMIn0=
|
package/lib/div/columns.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: row;\n\n"
|
|
172
161
|
]);
|
|
173
162
|
_templateObject = function _templateObject() {
|
|
@@ -177,17 +166,17 @@ function _templateObject() {
|
|
|
177
166
|
}
|
|
178
167
|
var ColumnsDiv = /*#__PURE__*/ function(Element) {
|
|
179
168
|
_inherits(ColumnsDiv, Element);
|
|
180
|
-
var _super =
|
|
169
|
+
var _super = _create_super(ColumnsDiv);
|
|
181
170
|
function ColumnsDiv() {
|
|
182
|
-
|
|
171
|
+
_class_call_check(this, ColumnsDiv);
|
|
183
172
|
return _super.apply(this, arguments);
|
|
184
173
|
}
|
|
185
174
|
return ColumnsDiv;
|
|
186
|
-
}(
|
|
187
|
-
|
|
188
|
-
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(ColumnsDiv, "tagName", "div");
|
|
177
|
+
_define_property(ColumnsDiv, "defaultProperties", {
|
|
189
178
|
className: "columns"
|
|
190
179
|
});
|
|
191
|
-
var _default = (0,
|
|
180
|
+
var _default = (0, _easywithstyle.default)(ColumnsDiv)(_templateObject());
|
|
192
181
|
|
|
193
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
182
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvY29sdW1ucy5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmNsYXNzIENvbHVtbnNEaXYgZXh0ZW5kcyBFbGVtZW50IHtcbiAgc3RhdGljIHRhZ05hbWUgPSBcImRpdlwiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwiY29sdW1uc1wiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShDb2x1bW5zRGl2KWBcblxuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWdyb3c6IDE7XG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XG5cbmA7XG4iXSwibmFtZXMiOlsiQ29sdW1uc0RpdiIsIkVsZW1lbnQiLCJ0YWdOYW1lIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiLCJ3aXRoU3R5bGUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQWNBOzs7ZUFBQTs7O29FQVpzQjtvQkFFRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFeEIsSUFBQSxBQUFNQSwyQkFRSCxBQVJIO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtxQkFBbUJDLGFBQU87QUFDOUIsaUJBRElELFlBQ0dFLFdBQVU7QUFFakIsaUJBSElGLFlBR0dHLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0wifQ==
|
package/lib/div/row.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\n"
|
|
172
161
|
]);
|
|
173
162
|
_templateObject = function _templateObject() {
|
|
@@ -177,17 +166,17 @@ function _templateObject() {
|
|
|
177
166
|
}
|
|
178
167
|
var RowDiv = /*#__PURE__*/ function(Element) {
|
|
179
168
|
_inherits(RowDiv, Element);
|
|
180
|
-
var _super =
|
|
169
|
+
var _super = _create_super(RowDiv);
|
|
181
170
|
function RowDiv() {
|
|
182
|
-
|
|
171
|
+
_class_call_check(this, RowDiv);
|
|
183
172
|
return _super.apply(this, arguments);
|
|
184
173
|
}
|
|
185
174
|
return RowDiv;
|
|
186
|
-
}(
|
|
187
|
-
|
|
188
|
-
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(RowDiv, "tagName", "div");
|
|
177
|
+
_define_property(RowDiv, "defaultProperties", {
|
|
189
178
|
className: "row"
|
|
190
179
|
});
|
|
191
|
-
var _default = (0,
|
|
180
|
+
var _default = (0, _easywithstyle.default)(RowDiv)(_templateObject());
|
|
192
181
|
|
|
193
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
182
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvcm93LmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBFbGVtZW50IH0gZnJvbSBcImVhc3lcIjtcblxuY2xhc3MgUm93RGl2IGV4dGVuZHMgRWxlbWVudCB7XG4gIHN0YXRpYyB0YWdOYW1lID0gXCJkaXZcIjtcblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcInJvd1wiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShSb3dEaXYpYFxuXG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZ3JvdzogMTtcblxuYDtcbiJdLCJuYW1lcyI6WyJSb3dEaXYiLCJFbGVtZW50IiwidGFnTmFtZSIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFjQTs7O2VBQUE7OztvRUFac0I7b0JBRUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXhCLElBQUEsQUFBTUEsdUJBUUgsQUFSSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7cUJBQWVDLGFBQU87QUFDMUIsaUJBRElELFFBQ0dFLFdBQVU7QUFFakIsaUJBSElGLFFBR0dHLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiO0lBR0YsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0wifQ==
|