@protolabsai/ui 0.8.0 → 0.8.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@protolabsai/ui",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "@radix-ui/react-dropdown-menu": "^2.1.17",
31
31
  "@types/react": "^19.0.0",
32
32
  "@types/react-dom": "^19.0.0",
33
- "@protolabsai/design": "0.4.0"
33
+ "@protolabsai/design": "0.5.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": "^19.0.0",
@@ -5,14 +5,27 @@ export default meta;
5
5
  type Story = StoryObj;
6
6
 
7
7
  const COLORS: Array<[string, string]> = [
8
- ["Brand lavender", "--pl-color-brand-lavender"],
9
8
  ["Lavender light", "--pl-color-brand-lavender-light"],
10
- ["Indigo", "--pl-color-brand-indigo"],
9
+ ["Brand lavender", "--pl-color-brand-lavender"],
10
+ ["Lavender deep", "--pl-color-brand-lavender-deep"],
11
11
  ["Indigo bright", "--pl-color-brand-indigo-bright"],
12
+ ["Indigo", "--pl-color-brand-indigo"],
13
+ ["Indigo deep", "--pl-color-brand-indigo-deep"],
14
+ ["Accent", "--pl-color-accent"],
15
+ ["Accent hover", "--pl-color-accent-hover"],
16
+ ["Accent fg", "--pl-color-accent-fg"],
17
+ ["Focus ring", "--pl-color-focus"],
12
18
  ["Ground", "--pl-color-bg"],
13
19
  ["Raised", "--pl-color-bg-raised"],
20
+ ["Subtle", "--pl-color-bg-subtle"],
21
+ ["Hover", "--pl-color-bg-hover"],
22
+ ["Inset", "--pl-color-bg-inset"],
14
23
  ["Foreground", "--pl-color-fg"],
15
24
  ["Muted", "--pl-color-fg-muted"],
25
+ ["Subtle text", "--pl-color-fg-subtle"],
26
+ ["On accent", "--pl-color-fg-on-accent"],
27
+ ["Border", "--pl-color-border"],
28
+ ["Border strong", "--pl-color-border-strong"],
16
29
  ["Success", "--pl-color-status-success"],
17
30
  ["Warning", "--pl-color-status-warning"],
18
31
  ["Error", "--pl-color-status-error"],