@olwiba/ui 0.2.26 → 0.2.28
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/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs-manifest.json +1 -6
- package/package.json +3 -2
- package/site/demos/overlay.tsx +1 -1
- package/site/demos/underlay.tsx +1 -1
- package/site/lib/sandboxes.ts +1426 -0
- package/src/app/AuthSection.tsx +9 -1
- package/site/demos/application-sidebar-block.tsx +0 -9
- package/site/demos/auth-split-block.tsx +0 -9
- package/site/demos/dashboard-overview-block.tsx +0 -9
- package/site/demos/dashboard-shell-block.tsx +0 -10
- package/site/demos/marketing-hero-block.tsx +0 -10
package/docs-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@olwiba/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.27",
|
|
4
4
|
"generatedBy": "scripts/check-docs-exports.ts",
|
|
5
5
|
"contentRoot": "content/docs",
|
|
6
6
|
"demosRoot": "site/demos",
|
|
@@ -94,9 +94,7 @@
|
|
|
94
94
|
"animated-swap.tsx",
|
|
95
95
|
"app-shell.tsx",
|
|
96
96
|
"app-ui-page.tsx",
|
|
97
|
-
"application-sidebar-block.tsx",
|
|
98
97
|
"auth-section.tsx",
|
|
99
|
-
"auth-split-block.tsx",
|
|
100
98
|
"billing-page.tsx",
|
|
101
99
|
"billing-panel.tsx",
|
|
102
100
|
"carousel.tsx",
|
|
@@ -108,8 +106,6 @@
|
|
|
108
106
|
"context-menu.tsx",
|
|
109
107
|
"count-up.tsx",
|
|
110
108
|
"cta-section.tsx",
|
|
111
|
-
"dashboard-overview-block.tsx",
|
|
112
|
-
"dashboard-shell-block.tsx",
|
|
113
109
|
"data-table.tsx",
|
|
114
110
|
"demo-brand.tsx",
|
|
115
111
|
"dock.tsx",
|
|
@@ -140,7 +136,6 @@
|
|
|
140
136
|
"marketing-faq-block.tsx",
|
|
141
137
|
"marketing-features-block.tsx",
|
|
142
138
|
"marketing-footer-block.tsx",
|
|
143
|
-
"marketing-hero-block.tsx",
|
|
144
139
|
"marketing-nav-block.tsx",
|
|
145
140
|
"marketing-newsletter-block.tsx",
|
|
146
141
|
"marketing-page.tsx",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olwiba/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"src",
|
|
30
30
|
"content",
|
|
31
31
|
"site/demos",
|
|
32
|
+
"site/lib/sandboxes.ts",
|
|
32
33
|
"docs-manifest.json"
|
|
33
34
|
],
|
|
34
35
|
"scripts": {
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"@content-collections/mdx": "^0.2.2",
|
|
72
73
|
"@olwiba/cn": "0.1.39",
|
|
73
74
|
"@olwiba/docs": "0.1.45",
|
|
74
|
-
"@olwiba/dx": "0.0.
|
|
75
|
+
"@olwiba/dx": "0.0.24",
|
|
75
76
|
"@react-email/render": "^2.1.0",
|
|
76
77
|
"@tailwindcss/vite": "^4.1.18",
|
|
77
78
|
"@tanstack/react-router": "1.154.8",
|
package/site/demos/overlay.tsx
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { Overlay, type OverlayVariant } from '@olwiba/ui';
|
|
5
|
-
import { DemoControls, useUsageCode } from '
|
|
5
|
+
import { DemoControls, useUsageCode } from '@olwiba/docs';
|
|
6
6
|
import { Button, Badge } from '@olwiba/cn';
|
|
7
7
|
|
|
8
8
|
const variants: OverlayVariant[] = ['dim', 'scrim', 'loading'];
|
package/site/demos/underlay.tsx
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { Underlay, type UnderlayVariant } from '@olwiba/ui';
|
|
5
|
-
import { DemoControls, useUsageCode } from '
|
|
5
|
+
import { DemoControls, useUsageCode } from '@olwiba/docs';
|
|
6
6
|
import { Button, Badge } from '@olwiba/cn';
|
|
7
7
|
|
|
8
8
|
const variants: UnderlayVariant[] = ['dots', 'lines', 'cross', 'glow'];
|