kandown 0.13.0 → 0.14.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/bin/tui.js CHANGED
@@ -53993,7 +53993,8 @@ var DEFAULT_CONFIG = {
53993
53993
  board: {
53994
53994
  columns: ["Backlog", "Todo", "In Progress", "Review", "Done"],
53995
53995
  defaultPriority: "P3",
53996
- defaultOwnerType: "human"
53996
+ defaultOwnerType: "human",
53997
+ stackDefaultState: "collapsed"
53997
53998
  },
53998
53999
  fields: {
53999
54000
  priority: false,
@@ -54107,6 +54108,13 @@ var SETTINGS = [
54107
54108
  max: 5
54108
54109
  },
54109
54110
  // Board
54111
+ {
54112
+ key: "board.stackDefaultState",
54113
+ label: "Task groups",
54114
+ section: "Board",
54115
+ type: "select",
54116
+ options: ["collapsed", "expanded"]
54117
+ },
54110
54118
  {
54111
54119
  key: "board.defaultPriority",
54112
54120
  label: "Default priority",
Binary file
Binary file
Binary file
package/dist/favicon.ico CHANGED
Binary file
package/dist/favicon.svg CHANGED
@@ -1,25 +1,39 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!--
3
3
  @file public/favicon.svg
4
- @description Kandown brand mark — vector favicon.
5
- 📖 Hand-traced from kandownlogo.png. Optimised for 16–256px rendering.
6
- Colors: dark surface #0a0a0a, K strokes #ffffff, lime accent #cef867.
7
- The lime slash is a parallelogram that slices from top-right to bottom-left,
8
- crossing the K. Z-order is: surface → K strokes → lime slash.
4
+ @description Kandown brand mark — adaptive favicon.
5
+ 📖 Transparent background so the icon adapts to the browser's tab-strip
6
+ color (no more black-on-black on dark themes). The K recolors itself
7
+ via @media (prefers-color-scheme: dark) so the contrast holds in both
8
+ light and dark browser themes:
9
+ • light browser: dark K (#0a0a0a) on white/cream tab → high contrast
10
+ • dark browser: white K (#ffffff) on dark tab → high contrast
11
+ The lime slash (#cef867) is the constant brand element on top.
12
+ 📖 PNG fallbacks (16/32/48/ico) ship in the light-mode variant (dark K on
13
+ transparent) for browsers that don't honor SVG media queries. PWA /
14
+ OS-launcher icons (apple-touch, android-chrome, mstile, og-image)
15
+ still use the dark surface — those have a different use case (solid
16
+ background required by the platform).
9
17
  -->
10
18
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img" aria-label="Kandown">
11
19
  <title>Kandown</title>
12
- <rect width="256" height="256" rx="48" ry="48" fill="#0a0a0a"/>
20
+ <style>
21
+ .k { fill: #0a0a0a; }
22
+ .slash { fill: #cef867; }
23
+ @media (prefers-color-scheme: dark) {
24
+ .k { fill: #ffffff; }
25
+ }
26
+ </style>
13
27
 
14
28
  <!-- K vertical bar (left stem) -->
15
- <rect x="50" y="36" width="34" height="184" rx="3" ry="3" fill="#ffffff"/>
29
+ <rect class="k" x="50" y="36" width="34" height="184" rx="3" ry="3"/>
16
30
 
17
31
  <!-- K upper diagonal: middle-left → top-right -->
18
- <path d="M 84 128 L 200 36 L 222 36 L 84 152 Z" fill="#ffffff"/>
32
+ <path class="k" d="M 84 128 L 200 36 L 222 36 L 84 152 Z"/>
19
33
 
20
34
  <!-- K lower diagonal: middle-left → bottom-right (with the small flag/notch on the right) -->
21
- <path d="M 84 128 L 200 220 L 222 220 L 188 186 L 200 174 L 84 132 Z" fill="#ffffff"/>
35
+ <path class="k" d="M 84 128 L 200 220 L 222 220 L 188 186 L 200 174 L 84 132 Z"/>
22
36
 
23
37
  <!-- Lime diagonal slash: thick parallelogram from top-right to bottom-left -->
24
- <path d="M 232 22 L 174 22 L 24 172 L 24 230 Z" fill="#cef867"/>
38
+ <path class="slash" d="M 232 22 L 174 22 L 24 172 L 24 230 Z"/>
25
39
  </svg>