@stll/workspace-ui 0.3.0 → 0.3.2

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.
@@ -113,6 +113,8 @@ const PersonAvatar = ({ image, name }) => {
113
113
  if (image) return /* @__PURE__ */ jsx("img", {
114
114
  alt: "",
115
115
  className: "size-4 shrink-0 rounded-full object-cover",
116
+ loading: "lazy",
117
+ referrerPolicy: "no-referrer",
116
118
  src: image
117
119
  });
118
120
  return /* @__PURE__ */ jsx("span", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stll/workspace-ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Reusable workspace presentation components and view helpers for Stella.",
5
5
  "keywords": [
6
6
  "calculations",
@@ -97,20 +97,20 @@
97
97
  "lint:fix": "cd ../.. && bun --bun oxlint -c oxlint.config.ts --type-aware --fix packages/workspace-ui",
98
98
  "format": "oxfmt .",
99
99
  "prepack": "bun run build",
100
- "test:property": "bun test $(grep -rlF 'fc.assert' src --include='*.test.ts')"
100
+ "test:property": "bun test --preload @stll/property-testing/preload $(grep -rlF 'fc.assert' src --include='*.test.ts')"
101
101
  },
102
102
  "dependencies": {
103
103
  "@stll/calculations": "^0.1.0",
104
104
  "@stll/conditions": "^0.2.0",
105
105
  "@stll/money": "^0.1.0",
106
- "@stll/ui": "^0.5.1",
106
+ "@stll/ui": "^0.7.0",
107
107
  "better-result": "3.0.0",
108
108
  "lucide-react": "1.30.0",
109
109
  "use-intl": "4.13.5"
110
110
  },
111
111
  "devDependencies": {
112
112
  "@atlaskit/pragmatic-drag-and-drop": "^3.0.0",
113
- "@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.0.1",
113
+ "@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.1.0",
114
114
  "@base-ui/react": "1.7.0",
115
115
  "@stll/property-testing": "0.0.0",
116
116
  "@stll/typescript-config": "0.0.0",
@@ -126,7 +126,7 @@
126
126
  },
127
127
  "peerDependencies": {
128
128
  "@atlaskit/pragmatic-drag-and-drop": "^3.0.0",
129
- "@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.0.1",
129
+ "@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.1.0",
130
130
  "@base-ui/react": "^1.7.0",
131
131
  "@tanstack/react-table": "^9.1.2",
132
132
  "react": ">=19",