@thi.ng/layout 3.0.24 → 3.0.25
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/CHANGELOG.md +1 -1
- package/api.d.ts +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/api.d.ts
CHANGED
|
@@ -88,6 +88,8 @@ export interface IGridLayout<T extends IGridLayout<T>> extends ILayout<CellSpan,
|
|
|
88
88
|
* siblings/ancestors of this current layout.
|
|
89
89
|
*
|
|
90
90
|
* ```
|
|
91
|
+
* import { gridLayout } from "@thi.ng/layout";
|
|
92
|
+
*
|
|
91
93
|
* // single column layout (default config)
|
|
92
94
|
* const outer = gridLayout(null, 0, 0, 200, 1, 16, 4);
|
|
93
95
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/layout",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.25",
|
|
4
4
|
"description": "Configurable nested 2D grid layout generators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"test": "bun test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/arrays": "^2.8.
|
|
38
|
+
"@thi.ng/arrays": "^2.8.5",
|
|
39
39
|
"@thi.ng/checks": "^3.5.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
],
|
|
94
94
|
"year": 2019
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "df9e312af741d87e6b450afcfea6a6e381662b1e\n"
|
|
97
97
|
}
|