@object-ui/plugin-dashboard 3.1.2 → 3.1.3

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @object-ui/plugin-dashboard@3.1.2 build /home/runner/work/objectui/objectui/packages/plugin-dashboard
2
+ > @object-ui/plugin-dashboard@3.1.3 build /home/runner/work/objectui/objectui/packages/plugin-dashboard
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -11,10 +11,10 @@ rendering chunks...
11
11
  computing gzip size...
12
12
  dist/index.css  2.40 kB │ gzip: 0.58 kB
13
13
  dist/index.js 186.28 kB │ gzip: 45.82 kB
14
- [vite:dts] Declaration files built in 28822ms.
14
+ [vite:dts] Declaration files built in 26311ms.
15
15
  
16
16
  No name was provided for external module "lucide-react" in "output.globals" – guessing "LucideIcons".
17
17
  No name was provided for external module "clsx" in "output.globals" – guessing "clsx".
18
18
  dist/index.css  2.40 kB │ gzip: 0.58 kB
19
19
  dist/index.umd.cjs 118.26 kB │ gzip: 36.48 kB
20
- ✓ built in 35.90s
20
+ ✓ built in 32.98s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @object-ui/plugin-dashboard
2
2
 
3
+ ## 3.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.1.3
8
+ - @object-ui/core@3.1.3
9
+ - @object-ui/react@3.1.3
10
+ - @object-ui/components@3.1.3
11
+
3
12
  ## 3.1.2
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-dashboard",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Dashboard plugin for Object UI",
@@ -16,15 +16,15 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "clsx": "^2.1.1",
19
- "lucide-react": "^0.576.0",
19
+ "lucide-react": "^0.577.0",
20
20
  "react": "19.2.4",
21
21
  "react-dom": "19.2.4",
22
22
  "react-grid-layout": "^2.2.2",
23
23
  "tailwind-merge": "^3.5.0",
24
- "@object-ui/components": "3.1.2",
25
- "@object-ui/core": "3.1.2",
26
- "@object-ui/react": "3.1.2",
27
- "@object-ui/types": "3.1.2"
24
+ "@object-ui/components": "3.1.3",
25
+ "@object-ui/core": "3.1.3",
26
+ "@object-ui/react": "3.1.3",
27
+ "@object-ui/types": "3.1.3"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "react": "^18.0.0",
@@ -48,10 +48,10 @@ describe('ObjectDataTable', () => {
48
48
 
49
49
  await waitFor(() => {
50
50
  const errorEl = container.querySelector('[data-testid="table-error"]');
51
- expect(errorEl).toBeDefined();
51
+ expect(errorEl).toBeTruthy();
52
52
  });
53
53
 
54
- expect(screen.getByText('Connection refused')).toBeDefined();
54
+ expect(screen.getByText('Connection refused')).toBeTruthy();
55
55
  });
56
56
 
57
57
  it('should show empty state when no data returned', async () => {