@frockbot/client-ui 0.3.12 → 0.3.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/package.json +2 -2
  2. package/src/icons.ts +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/client-ui",
3
- "version": "0.3.12",
3
+ "version": "0.3.14",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,7 +12,7 @@
12
12
  "typecheck": "vue-tsc --noEmit -p tsconfig.json"
13
13
  },
14
14
  "dependencies": {
15
- "@frockbot/client-core": "0.3.12",
15
+ "@frockbot/client-core": "0.3.14",
16
16
  "markdown-it": "15.0.1",
17
17
  "vue": "3.5.41"
18
18
  },
package/src/icons.ts CHANGED
@@ -23,7 +23,9 @@ export type UiIconName =
23
23
  | "search"
24
24
  | "sparkle"
25
25
  | "stop"
26
- | "user";
26
+ | "trash"
27
+ | "user"
28
+ | "waveform";
27
29
 
28
30
  export const uiIconPaths: Record<UiIconName, string[]> = {
29
31
  // An Applet: a window with its own title bar, standing on the shell.
@@ -78,5 +80,11 @@ export const uiIconPaths: Record<UiIconName, string[]> = {
78
80
  search: ["M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16z", "m21 21-4.3-4.3"],
79
81
  sparkle: ["M12 3l1.9 5.6 5.6 1.9-5.6 1.9L12 18l-1.9-5.6L4.5 10.5l5.6-1.9z"],
80
82
  stop: ["M6 6h12v12H6z"],
83
+ // Discard. A lid, a rim, and a body — the same three strokes every bin in
84
+ // this weight is drawn from.
85
+ trash: ["M4 7h16", "M9 7V4h6v3", "M6 7l1 13h10l1-13"],
81
86
  user: ["M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8z", "M20 21a8 8 0 0 0-16 0"],
87
+ // Dictation. Bars rather than a microphone: the control captures speech as
88
+ // *text*, and the same shape animates while it is listening.
89
+ waveform: ["M5 10v4", "M9 7v10", "M12 4v16", "M15 7v10", "M19 10v4"],
82
90
  };