@object-ui/layout 3.0.1 → 3.0.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/layout@3.0.1 build /home/runner/work/objectui/objectui/packages/layout
2
+ > @object-ui/layout@3.0.3 build /home/runner/work/objectui/objectui/packages/layout
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -8,18 +8,9 @@ transforming...
8
8
  rendering chunks...
9
9
  
10
10
  [vite:dts] Start generate declaration files...
11
- src/stories/AppShell.stories.tsx:3:54 - error TS2307: Cannot find module '@object-ui/layout' or its corresponding type declarations.
12
-
13
- 3 import { AppShell, PageHeader, ResponsiveGrid } from '@object-ui/layout';
14
-    ~~~~~~~~~~~~~~~~~~~
15
- src/stories/ResponsiveGrid.stories.tsx:3:32 - error TS2307: Cannot find module '@object-ui/layout' or its corresponding type declarations.
16
-
17
- 3 import { ResponsiveGrid } from '@object-ui/layout';
18
-    ~~~~~~~~~~~~~~~~~~~
19
-
20
11
  computing gzip size...
21
12
  dist/index.js 16.79 kB │ gzip: 5.11 kB
22
- [vite:dts] Declaration files built in 27441ms.
13
+ [vite:dts] Declaration files built in 25592ms.
23
14
  
24
15
  No name was provided for external module "@object-ui/core" in "output.globals" – guessing "core".
25
16
  No name was provided for external module "react" in "output.globals" – guessing "require$$0".
@@ -27,4 +18,4 @@ computing gzip size...
27
18
  No name was provided for external module "@object-ui/react" in "output.globals" – guessing "react".
28
19
  No name was provided for external module "react-router-dom" in "output.globals" – guessing "reactRouterDom".
29
20
  dist/index.umd.cjs 12.10 kB │ gzip: 4.58 kB
30
- ✓ built in 29.98s
21
+ ✓ built in 27.85s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @object-ui/layout
2
2
 
3
+ ## 3.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.0.3
8
+ - @object-ui/core@3.0.3
9
+ - @object-ui/react@3.0.3
10
+ - @object-ui/components@3.0.3
11
+
12
+ ## 3.0.2
13
+
14
+ ### Patch Changes
15
+
16
+ - @object-ui/types@3.0.2
17
+ - @object-ui/core@3.0.2
18
+ - @object-ui/react@3.0.2
19
+ - @object-ui/components@3.0.2
20
+
3
21
  ## 3.0.1
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/layout",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "dist/index.umd.cjs",
@@ -19,10 +19,10 @@
19
19
  "react": "19.2.4",
20
20
  "react-dom": "19.2.4",
21
21
  "tailwind-merge": "^2.6.1",
22
- "@object-ui/components": "3.0.1",
23
- "@object-ui/core": "3.0.1",
24
- "@object-ui/react": "3.0.1",
25
- "@object-ui/types": "3.0.1"
22
+ "@object-ui/components": "3.0.3",
23
+ "@object-ui/core": "3.0.3",
24
+ "@object-ui/react": "3.0.3",
25
+ "@object-ui/types": "3.0.3"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": "^18.0.0 || ^19.0.0",
package/tsconfig.json CHANGED
@@ -4,5 +4,6 @@
4
4
  "outDir": "dist",
5
5
  "jsx": "react-jsx"
6
6
  },
7
- "include": ["src"]
7
+ "include": ["src"],
8
+ "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
8
9
  }
@@ -1,24 +0,0 @@
1
- import { StoryObj } from '@storybook/react';
2
- /**
3
- * AppShell responsive layout stories.
4
- * Demonstrates the shell + responsive grid working together.
5
- *
6
- * Part of Q1 2026 roadmap §1.3 — Responsive layout stories in Storybook.
7
- */
8
- declare const meta: {
9
- title: string;
10
- component: any;
11
- parameters: {
12
- layout: string;
13
- docs: {
14
- description: {
15
- component: string;
16
- };
17
- };
18
- };
19
- tags: string[];
20
- };
21
- export default meta;
22
- type Story = StoryObj<typeof meta>;
23
- export declare const ResponsiveDashboard: Story;
24
- export declare const MinimalShell: Story;
@@ -1,29 +0,0 @@
1
- import { StoryObj } from '@storybook/react';
2
- /**
3
- * ResponsiveGrid stories demonstrating spec-aligned responsive layouts.
4
- * Uses BreakpointColumnMapSchema to configure columns per breakpoint.
5
- *
6
- * Part of Q1 2026 roadmap §1.3 — Responsive layout stories in Storybook.
7
- */
8
- declare const meta: {
9
- title: string;
10
- component: any;
11
- parameters: {
12
- layout: string;
13
- docs: {
14
- description: {
15
- component: string;
16
- };
17
- };
18
- };
19
- tags: string[];
20
- };
21
- export default meta;
22
- type Story = StoryObj<typeof meta>;
23
- export declare const Default: Story;
24
- export declare const SingleColumn: Story;
25
- export declare const TwoColumns: Story;
26
- export declare const FourColumnGrid: Story;
27
- export declare const DashboardLayout: Story;
28
- export declare const CompactGap: Story;
29
- export declare const WideGap: Story;