beads-ui 0.4.3 → 0.5.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/CHANGES.md +39 -0
- package/app/index.html +11 -0
- package/app/main.bundle.js +257 -236
- package/app/main.bundle.js.map +4 -4
- package/app/styles.css +146 -20
- package/package.json +18 -18
- package/server/ws.js +61 -21
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
- [`76964c1`](https://github.com/mantoni/beads-ui/commit/76964c1daf133dded6b8f335cfe9d3184ac96a18)
|
|
6
|
+
Show badge with number of cards per column
|
|
7
|
+
- [`155316c`](https://github.com/mantoni/beads-ui/commit/155316c975a93edc806379e769b538c213ee5ed8)
|
|
8
|
+
Add loading indicator
|
|
9
|
+
- [`80a837a`](https://github.com/mantoni/beads-ui/commit/80a837a0ef9702fbb7cbbf168526a5a5e3e80d54)
|
|
10
|
+
Show fatal errors in UI
|
|
11
|
+
- [`06e8fd9`](https://github.com/mantoni/beads-ui/commit/06e8fd9293b226c88d8b395c7bc28b9c7f4c9610)
|
|
12
|
+
Beads metadata
|
|
13
|
+
- [`233c70a`](https://github.com/mantoni/beads-ui/commit/233c70aa9b6ed6e2d7fef487c7b241ffe721cecd)
|
|
14
|
+
npm audit
|
|
15
|
+
- [`37b3476`](https://github.com/mantoni/beads-ui/commit/37b3476bc7a0061484de913bee00f285a073ea24)
|
|
16
|
+
Upgrade marked
|
|
17
|
+
- [`a1362c9`](https://github.com/mantoni/beads-ui/commit/a1362c97fc770cb18764305453b18f71830bdbef)
|
|
18
|
+
Update express and types
|
|
19
|
+
- [`8efc40d`](https://github.com/mantoni/beads-ui/commit/8efc40dadc051a826c64474a1254641294337a81)
|
|
20
|
+
Update vitest, jsdom and esbuild
|
|
21
|
+
- [`89cac0f`](https://github.com/mantoni/beads-ui/commit/89cac0ff438a7f1d8b790f339064f2b49ef8ab13)
|
|
22
|
+
Update eslint and plugins
|
|
23
|
+
- [`0d7e33e`](https://github.com/mantoni/beads-ui/commit/0d7e33e55259d11c39820c1576db74b7fec26b5e)
|
|
24
|
+
Update prettier and format files
|
|
25
|
+
- [`356a201`](https://github.com/mantoni/beads-ui/commit/356a201af8cfce75d82a7f942b5d04698400715c)
|
|
26
|
+
Rename npm scripts for prettier and tsc
|
|
27
|
+
- [`31b25d4`](https://github.com/mantoni/beads-ui/commit/31b25d42d23e60c4b30b29281c392179104bf813)
|
|
28
|
+
Upgrade @trivago/prettier-plugin-sort-imports
|
|
29
|
+
|
|
30
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-12-08._
|
|
31
|
+
|
|
32
|
+
## 0.4.4
|
|
33
|
+
|
|
34
|
+
- [`d0f8d1d`](https://github.com/mantoni/beads-ui/commit/d0f8d1d088eda78da14d35ac4fd898cbeb68b534)
|
|
35
|
+
Make labels a separate section in the sidebar
|
|
36
|
+
- [`c44fd34`](https://github.com/mantoni/beads-ui/commit/c44fd3484ade8ef7ea56eb608d11bb07ebbf665b)
|
|
37
|
+
Fix flaky board test due to time-sensitive closed filter (Nikolai
|
|
38
|
+
Prokoschenko)
|
|
39
|
+
|
|
40
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-11-13._
|
|
41
|
+
|
|
3
42
|
## 0.4.3
|
|
4
43
|
|
|
5
44
|
- [`4a5b4cd`](https://github.com/mantoni/beads-ui/commit/4a5b4cda8b22437eac2636c0a5556d0b52897f5f)
|
package/app/index.html
CHANGED
|
@@ -13,6 +13,17 @@
|
|
|
13
13
|
<nav id="top-nav" class="header-nav" aria-label="Primary"></nav>
|
|
14
14
|
</div>
|
|
15
15
|
<div class="header-actions">
|
|
16
|
+
<div
|
|
17
|
+
id="header-loading"
|
|
18
|
+
class="header-loading"
|
|
19
|
+
role="status"
|
|
20
|
+
aria-live="polite"
|
|
21
|
+
aria-label="Loading"
|
|
22
|
+
hidden
|
|
23
|
+
>
|
|
24
|
+
<span class="header-loading__spinner" aria-hidden="true"></span>
|
|
25
|
+
<span class="visually-hidden">Loading</span>
|
|
26
|
+
</div>
|
|
16
27
|
<label class="theme-toggle" title="Toggle dark mode">
|
|
17
28
|
<span>Dark</span>
|
|
18
29
|
<input
|