@object-ui/layout 3.0.2 → 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.
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @object-ui/layout@3.0.
|
|
2
|
+
> @object-ui/layout@3.0.3 build /home/runner/work/objectui/objectui/packages/layout
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
@@ -8,18 +8,9 @@ transforming...
|
|
|
8
8
|
rendering chunks...
|
|
9
9
|
[32m
|
|
10
10
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
|
-
[96msrc/stories/AppShell.stories.tsx[0m:[93m3[0m:[93m54[0m - [91merror[0m[90m TS2307: [0mCannot find module '@object-ui/layout' or its corresponding type declarations.
|
|
12
|
-
|
|
13
|
-
[7m3[0m import { AppShell, PageHeader, ResponsiveGrid } from '@object-ui/layout';
|
|
14
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~[0m
|
|
15
|
-
[96msrc/stories/ResponsiveGrid.stories.tsx[0m:[93m3[0m:[93m32[0m - [91merror[0m[90m TS2307: [0mCannot find module '@object-ui/layout' or its corresponding type declarations.
|
|
16
|
-
|
|
17
|
-
[7m3[0m import { ResponsiveGrid } from '@object-ui/layout';
|
|
18
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~[0m
|
|
19
|
-
|
|
20
11
|
computing gzip size...
|
|
21
12
|
[2mdist/[22m[36mindex.js [39m[1m[2m16.79 kB[22m[1m[22m[2m │ gzip: 5.11 kB[22m
|
|
22
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
13
|
+
[32m[36m[vite:dts][32m Declaration files built in 25592ms.
|
|
23
14
|
[39m
|
|
24
15
|
[33mNo name was provided for external module "@object-ui/core" in "output.globals" – guessing "core".[39m
|
|
25
16
|
[33mNo name was provided for external module "react" in "output.globals" – guessing "require$$0".[39m
|
|
@@ -27,4 +18,4 @@ computing gzip size...
|
|
|
27
18
|
[33mNo name was provided for external module "@object-ui/react" in "output.globals" – guessing "react".[39m
|
|
28
19
|
[33mNo name was provided for external module "react-router-dom" in "output.globals" – guessing "reactRouterDom".[39m
|
|
29
20
|
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m12.10 kB[22m[1m[22m[2m │ gzip: 4.58 kB[22m
|
|
30
|
-
[32m✓ built in
|
|
21
|
+
[32m✓ built in 27.85s[39m
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/layout",
|
|
3
|
-
"version": "3.0.
|
|
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.
|
|
23
|
-
"@object-ui/core": "3.0.
|
|
24
|
-
"@object-ui/
|
|
25
|
-
"@object-ui/
|
|
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
|
@@ -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;
|