@zthun/romulator-web 1.18.4 → 1.19.0
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 +22 -0
- package/dist/assets/index-BImCVu5p.js +891 -0
- package/dist/index.html +1 -1
- package/package.json +7 -7
- package/src/app/app.tsx +2 -0
- package/src/jobs/job-tile.tsx +54 -0
- package/src/jobs/jobs-page.cm.mts +31 -0
- package/src/jobs/jobs-page.test.tsx +81 -0
- package/src/jobs/jobs-page.tsx +62 -0
- package/src/jobs/jobs-service.ts +41 -0
- package/src/jobs/use-job-status-metadata.tsx +58 -0
- package/src/jobs/use-job-type-metadata.tsx +39 -0
- package/src/menu/menu.cm.mts +1 -0
- package/src/menu/menu.spec.tsx +7 -3
- package/src/menu/menu.tsx +13 -0
- package/dist/assets/index-CZMAQ_HC.js +0 -891
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.19.0](https://github.com/zthun/romulator/compare/v1.18.5...v1.19.0) (2026-02-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* added jobs routing ([d85373a](https://github.com/zthun/romulator/commit/d85373aea410d2045aa94916760f5440750f22a3))
|
|
12
|
+
* jobs page lists the jobs that are running or completed ([c799e8c](https://github.com/zthun/romulator/commit/c799e8cd93818586b74d0784d3f2be951c8a886a))
|
|
13
|
+
* jobs service manages job retrieval and creation ([73445f1](https://github.com/zthun/romulator/commit/73445f18952aa3b17c502a69e7b25c3a220c49f6))
|
|
14
|
+
* render job information in the tile ([715c162](https://github.com/zthun/romulator/commit/715c16224dc7f377b4ff6577c754756c394b4ade))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## <small>1.18.5 (2026-02-01)</small>
|
|
21
|
+
|
|
22
|
+
* build: update outdated packages ([0bc5866](https://github.com/zthun/romulator/commit/0bc5866))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## <small>1.18.4 (2026-01-31)</small>
|
|
7
29
|
|
|
8
30
|
* build: update outdated packages ([20afb96](https://github.com/zthun/romulator/commit/20afb96))
|