easy-layout 5.0.74 → 5.0.78
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 +516 -1143
- package/index.html +1 -2
- package/lib/div/column.js +3 -5
- package/lib/div/columns.js +3 -5
- package/lib/div/row.js +3 -5
- package/lib/div/rows.js +3 -5
- package/lib/div/sizeable.js +3 -5
- package/lib/div/splitter/horizontal.js +2 -3
- package/lib/div/splitter/vertical.js +2 -3
- package/lib/div/splitter.js +7 -10
- package/lib/example/div/row/blue.js +2 -3
- package/lib/example/div/row/yellow.js +2 -3
- package/lib/example/div/sizeable/bottom.js +2 -3
- package/lib/example/div/sizeable/left.js +2 -3
- package/lib/example/div/sizeable/right.js +2 -3
- package/lib/example/div/splitter/horizontal/main.js +2 -3
- package/lib/example/div/splitter/vertical/left.js +2 -3
- package/lib/example/div/splitter/vertical/right.js +2 -3
- package/package.json +2 -2
- package/src/div/splitter.js +3 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-layout",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.78",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/easy-layout",
|
|
7
7
|
"description": "Layout elements that work with CSS flexbox.",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"easy": "^13.0.18",
|
|
14
|
-
"easy-with-style": "^3.0.
|
|
14
|
+
"easy-with-style": "^3.0.90"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@swc/core": "^1.2.50",
|
package/src/div/splitter.js
CHANGED
|
@@ -262,11 +262,11 @@ class SplitterDiv extends Element {
|
|
|
262
262
|
};
|
|
263
263
|
|
|
264
264
|
static ignoredProperties = [
|
|
265
|
-
"onStartDrag",
|
|
266
|
-
"onStopDrag",
|
|
267
265
|
"onDrag",
|
|
268
266
|
"options",
|
|
269
|
-
"disabled"
|
|
267
|
+
"disabled",
|
|
268
|
+
"onStopDrag",
|
|
269
|
+
"onStartDrag"
|
|
270
270
|
];
|
|
271
271
|
|
|
272
272
|
static fromClass(Class, properties) {
|