@thi.ng/layout 3.1.12 → 3.1.14

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -63
  2. package/package.json +6 -7
package/CHANGELOG.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-14T12:23:33Z
3
+ - **Last updated**: 2025-01-23T13:39:11Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
7
+ Only versions published since **2022-01-01** are listed here.
8
+ Please consult the Git history for older version information.
7
9
  See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
8
10
 
9
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
@@ -46,65 +48,3 @@ and/or version bumps of transitive dependencies.
46
48
  - add StackedLayout, update types & GridLayout ([1c1281f](https://github.com/thi-ng/umbrella/commit/1c1281f))
47
49
  - update StackedLayout.largestSpan() ([9ce54cd](https://github.com/thi-ng/umbrella/commit/9ce54cd))
48
50
  - add optional max. size constraint arg
49
-
50
- ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/layout@2.1.0) (2021-11-17)
51
-
52
- #### 🚀 Features
53
-
54
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
55
- Improving the overall build ergonomics
56
- - introduced a tools workspaces
57
- - imported it in all needed packages/examples
58
- - inclusive project root
59
-
60
- #### ♻️ Refactoring
61
-
62
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
63
- this commit reverts (partly) changes made in:
64
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
65
- overall purpose is better testament ergonomics:
66
- instead of having to pass NODE_OPTIONS with every invocation
67
- having a binary to handle this for us.
68
-
69
- ### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/layout@2.0.1) (2021-10-13)
70
-
71
- #### ♻️ Refactoring
72
-
73
- - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
74
- - add .js suffix for all relative imports
75
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
76
-
77
- # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/layout@2.0.0) (2021-10-12)
78
-
79
- #### 🛑 Breaking changes
80
-
81
- - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
82
- - BREAKING CHANGE: discontinue CommonJS & UMD versions
83
- - only ESM modules will be published from now on
84
- - CJS obsolete due to ESM support in recent versions of node:
85
- - i.e. launch NodeJS via:
86
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
87
- - in the node REPL use `await import(...)` instead of `require()`
88
- - UMD obsolete due to widespread browser support for ESM
89
- Also:
90
- - normalize/restructure/reorg all package.json files
91
- - cleanup all build scripts, remove obsolete
92
- - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
93
-
94
- #### ♻️ Refactoring
95
-
96
- - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
97
- - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
98
- - update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
99
- - update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
100
- - minor pkg restructure ([2bdebe6](https://github.com/thi-ng/umbrella/commit/2bdebe6))
101
-
102
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/layout@0.1.0) (2020-02-25)
103
-
104
- #### 🚀 Features
105
-
106
- - import as new pkg (extracted from [@thi.ng/imgui](https://github.com/thi-ng/umbrella/tree/main/packages/imgui)) ([e5efc16](https://github.com/thi-ng/umbrella/commit/e5efc16))
107
-
108
- #### ♻️ Refactoring
109
-
110
- - update imports ([f833b4d](https://github.com/thi-ng/umbrella/commit/f833b4d))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/layout",
3
- "version": "3.1.12",
3
+ "version": "3.1.14",
4
4
  "description": "Configurable nested 2D grid layout generators",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,15 +40,14 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.16",
44
- "@thi.ng/arrays": "^2.10.11",
45
- "@thi.ng/checks": "^3.6.19"
43
+ "@thi.ng/api": "^8.11.18",
44
+ "@thi.ng/arrays": "^2.10.13",
45
+ "@thi.ng/checks": "^3.6.21"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.48.1",
49
48
  "esbuild": "^0.24.2",
50
49
  "typedoc": "^0.27.6",
51
- "typescript": "^5.7.2"
50
+ "typescript": "^5.7.3"
52
51
  },
53
52
  "keywords": [
54
53
  "2d",
@@ -100,5 +99,5 @@
100
99
  ],
101
100
  "year": 2019
102
101
  },
103
- "gitHead": "d888087b36b086fd8c3e7dc98d35857266f78942\n"
102
+ "gitHead": "b92b48abda9941d608be8a2e1c83447e679a6f79\n"
104
103
  }