shadcn-glass-ui 2.1.4 → 2.2.0
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/CHANGELOG.md +51 -0
- package/README.md +13 -13
- package/context7.json +30 -4
- package/dist/cli/index.cjs +1 -1
- package/dist/components.cjs +4 -4
- package/dist/components.d.ts +18 -4
- package/dist/components.js +1 -1
- package/dist/hooks.cjs +2 -2
- package/dist/index.cjs +2320 -997
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2284 -996
- package/dist/index.js.map +1 -1
- package/dist/shadcn-glass-ui.css +1 -1
- package/dist/{theme-context-Y98bGvcm.cjs → theme-context-D_cb9KzA.cjs} +2 -2
- package/dist/{theme-context-Y98bGvcm.cjs.map → theme-context-D_cb9KzA.cjs.map} +1 -1
- package/dist/themes.cjs +1 -1
- package/dist/{trust-score-card-glass-2rjz00d_.cjs → trust-score-card-glass-CTsEVRD3.cjs} +178 -35
- package/dist/{trust-score-card-glass-2rjz00d_.cjs.map → trust-score-card-glass-CTsEVRD3.cjs.map} +1 -1
- package/dist/{trust-score-card-glass-zjkx4OC2.js → trust-score-card-glass-CUStm4o_.js} +86 -15
- package/dist/{trust-score-card-glass-zjkx4OC2.js.map → trust-score-card-glass-CUStm4o_.js.map} +1 -1
- package/dist/{use-focus-DbpBEuee.cjs → use-focus--Hw2nevi.cjs} +2 -2
- package/dist/{use-focus-DbpBEuee.cjs.map → use-focus--Hw2nevi.cjs.map} +1 -1
- package/dist/{use-wallpaper-tint-DbawS9zh.cjs → use-wallpaper-tint-B4oMQsXQ.cjs} +2 -2
- package/dist/{use-wallpaper-tint-DbawS9zh.cjs.map → use-wallpaper-tint-B4oMQsXQ.cjs.map} +1 -1
- package/dist/{utils-XlyXIhuP.cjs → utils-BqeJ4aco.cjs} +2 -2
- package/dist/{utils-XlyXIhuP.cjs.map → utils-BqeJ4aco.cjs.map} +1 -1
- package/dist/utils.cjs +1 -1
- package/docs/AI_USAGE.md +5 -5
- package/docs/BEST_PRACTICES.md +1 -1
- package/docs/COMPONENTS_CATALOG.md +215 -0
- package/docs/EXPORTS_MAP.json +140 -14
- package/docs/EXPORTS_STRUCTURE.md +43 -9
- package/docs/GETTING_STARTED.md +1 -1
- package/docs/REGISTRY_USAGE.md +1 -1
- package/docs/api/README.md +1 -1
- package/docs/components/SIDEBAR_GLASS.md +555 -0
- package/docs/components/SPLIT_LAYOUT_GLASS.md +304 -365
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,57 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
|
|
6
6
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.2.0] - 2025-12-18
|
|
9
|
+
|
|
10
|
+
### 🎉 100% shadcn/ui API Compatibility (Issue #3)
|
|
11
|
+
|
|
12
|
+
This release achieves full API compatibility with shadcn/ui components, adding 6 new components and
|
|
13
|
+
completing the compound component API patterns.
|
|
14
|
+
|
|
15
|
+
### ✨ New Components
|
|
16
|
+
|
|
17
|
+
#### Core UI Components (+6)
|
|
18
|
+
|
|
19
|
+
- **SeparatorGlass** - Glass-styled divider with horizontal/vertical orientation
|
|
20
|
+
- **ScrollAreaGlass** - Custom scrollable container with glass-themed scrollbar
|
|
21
|
+
- Sub-components: ScrollAreaGlass, ScrollBarGlass
|
|
22
|
+
- **CollapsibleGlass** - Expandable/collapsible sections with smooth animations
|
|
23
|
+
- Compound API: Root, Trigger (with asChild), Content
|
|
24
|
+
- **RadioGroupGlass** - Glass-styled radio button group with glow effects
|
|
25
|
+
- Compound API: Root, Item
|
|
26
|
+
- **ToggleGroupGlass** - Segmented control / toggle button group
|
|
27
|
+
- Supports type='single'|'multiple', variant='default'|'outline', size='sm'|'default'|'lg'
|
|
28
|
+
- **SheetGlass** - Side panel drawer with glass effects and backdrop blur
|
|
29
|
+
- Compound API: Root, Trigger, Content, Header, Footer, Title, Description, Close, Portal, Overlay
|
|
30
|
+
- Supports side='top'|'right'|'bottom'|'left'
|
|
31
|
+
|
|
32
|
+
#### ModalGlass Enhancements
|
|
33
|
+
|
|
34
|
+
- **ModalGlass.Trigger** - Added trigger component with asChild support
|
|
35
|
+
- **ModalGlass.Portal** - Added portal component for custom positioning
|
|
36
|
+
- Both controlled and uncontrolled modes now fully supported
|
|
37
|
+
|
|
38
|
+
### 📦 Component Count
|
|
39
|
+
|
|
40
|
+
- **Total components:** 57 → 63 (+6)
|
|
41
|
+
- **Core UI:** 18 → 24 (+6)
|
|
42
|
+
|
|
43
|
+
### 📚 Documentation
|
|
44
|
+
|
|
45
|
+
- Updated Context7 index with 9 new component rules
|
|
46
|
+
- Updated README.md component counts and examples
|
|
47
|
+
- Updated Storybook Introduction with new statistics
|
|
48
|
+
- Added Storybook stories for all 6 new components
|
|
49
|
+
|
|
50
|
+
### 🔧 Technical
|
|
51
|
+
|
|
52
|
+
- All components use Radix UI primitives for accessibility
|
|
53
|
+
- Full TypeScript strict mode support
|
|
54
|
+
- Consistent compound component API pattern across all new components
|
|
55
|
+
- ESLint compliant with react-refresh and TypeScript rules
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
8
59
|
## [2.1.1] - 2025-12-14
|
|
9
60
|
|
|
10
61
|
### 🐛 Bug Fixes
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://bundlephobia.com/package/shadcn-glass-ui)
|
|
7
7
|
[](docs/AI_USAGE.md)
|
|
8
8
|
|
|
9
|
-
**Glassmorphism components for React** — drop-in compatible with shadcn/ui.
|
|
9
|
+
**Glassmorphism components for React** — drop-in compatible with shadcn/ui. 63 components, 3 themes,
|
|
10
10
|
zero migration.
|
|
11
11
|
|
|
12
12
|
<div align="center">
|
|
@@ -27,7 +27,7 @@ npm install shadcn-glass-ui
|
|
|
27
27
|
|
|
28
28
|
```tsx
|
|
29
29
|
import { ButtonGlass, ThemeProvider } from 'shadcn-glass-ui';
|
|
30
|
-
import 'shadcn-glass-ui/
|
|
30
|
+
import 'shadcn-glass-ui/styles.css';
|
|
31
31
|
|
|
32
32
|
export default function App() {
|
|
33
33
|
return (
|
|
@@ -92,16 +92,16 @@ import { ButtonGlass } from '@/components/glass/ui/button-glass'; // Glass vari
|
|
|
92
92
|
|
|
93
93
|
## Components
|
|
94
94
|
|
|
95
|
-
| Category | Count | Examples
|
|
96
|
-
| --------------- | ----- |
|
|
97
|
-
| **Core UI** |
|
|
98
|
-
| **Composite** | 14 | MetricCardGlass, SplitLayoutGlass, AICardGlass
|
|
99
|
-
| **Specialized** | 10 | StepperGlass, SparklineGlass, RainbowProgressGlass
|
|
100
|
-
| **Sections** | 7 | HeaderNavGlass, ProfileHeaderGlass
|
|
101
|
-
| **Atomic** | 7 | SearchBoxGlass, ThemeToggleGlass
|
|
102
|
-
| **Primitives** | 3 | TouchTarget, FormFieldWrapper
|
|
95
|
+
| Category | Count | Examples |
|
|
96
|
+
| --------------- | ----- | ---------------------------------------------------- |
|
|
97
|
+
| **Core UI** | 25 | ButtonGlass, ModalGlass, SheetGlass, RadioGroupGlass |
|
|
98
|
+
| **Composite** | 14 | MetricCardGlass, SplitLayoutGlass, AICardGlass |
|
|
99
|
+
| **Specialized** | 10 | StepperGlass, SparklineGlass, RainbowProgressGlass |
|
|
100
|
+
| **Sections** | 7 | HeaderNavGlass, ProfileHeaderGlass |
|
|
101
|
+
| **Atomic** | 7 | SearchBoxGlass, ThemeToggleGlass |
|
|
102
|
+
| **Primitives** | 3 | TouchTarget, FormFieldWrapper |
|
|
103
103
|
|
|
104
|
-
[**Browse all
|
|
104
|
+
[**Browse all 63 components →**](https://yhooi2.github.io/shadcn-glass-ui-library/)
|
|
105
105
|
|
|
106
106
|
---
|
|
107
107
|
|
|
@@ -128,7 +128,7 @@ Built for AI coding assistants:
|
|
|
128
128
|
|
|
129
129
|
| Tool | Integration |
|
|
130
130
|
| ---------------- | ------------------------------------------------------------------------------ |
|
|
131
|
-
| **Context7 MCP** | [Auto-indexed](https://context7.com/yhooi2/shadcn-glass-ui-library) —
|
|
131
|
+
| **Context7 MCP** | [Auto-indexed](https://context7.com/yhooi2/shadcn-glass-ui-library) — 63 rules |
|
|
132
132
|
| **Claude Code** | [CLAUDE.md](CLAUDE.md) — 365 lines of context |
|
|
133
133
|
| **Copilot** | TypeScript strict + JSDoc |
|
|
134
134
|
|
|
@@ -142,7 +142,7 @@ Built for AI coding assistants:
|
|
|
142
142
|
| ------------------------------------------------------------------ | --------------------- |
|
|
143
143
|
| [**Storybook**](https://yhooi2.github.io/shadcn-glass-ui-library/) | Interactive demos |
|
|
144
144
|
| [**Getting Started**](docs/GETTING_STARTED.md) | Installation & setup |
|
|
145
|
-
| [**Component Catalog**](docs/COMPONENTS_CATALOG.md) | All
|
|
145
|
+
| [**Component Catalog**](docs/COMPONENTS_CATALOG.md) | All 63 components |
|
|
146
146
|
| [**Theme Guide**](docs/THEME_CREATION_GUIDE.md) | Custom themes |
|
|
147
147
|
| [**Token Architecture**](docs/TOKEN_ARCHITECTURE.md) | 3-layer CSS system |
|
|
148
148
|
| [**AI Usage**](docs/AI_USAGE.md) | Claude, Copilot, GPT |
|
package/context7.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://context7.com/schema/context7.json",
|
|
3
3
|
"projectTitle": "shadcn-glass-ui",
|
|
4
|
-
"description": "Glassmorphism UI library for React - AI-friendly with
|
|
4
|
+
"description": "Glassmorphism UI library for React - AI-friendly with 63 components, strict TypeScript, and comprehensive docs",
|
|
5
5
|
"branch": "main",
|
|
6
6
|
"folders": ["docs"],
|
|
7
7
|
"includeFiles": ["README.md", "CLAUDE.md", "CHANGELOG.md"],
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"Use 'variant' prop instead of 'type' for AlertGlass and NotificationGlass (v1.0 breaking change)",
|
|
12
12
|
"Use 'variant=\"destructive\"' instead of 'variant=\"danger\"' for ButtonGlass",
|
|
13
13
|
"Always wrap components with ThemeProvider from 'shadcn-glass-ui'",
|
|
14
|
-
"Import CSS: '@import \"shadcn-glass-ui/
|
|
14
|
+
"Import CSS: '@import \"shadcn-glass-ui/styles.css\"' in main CSS file",
|
|
15
15
|
"Use TypeScript strict mode - no 'any' types allowed",
|
|
16
16
|
"ModalGlass and TabsGlass use compound component API (e.g., ModalGlass.Root, ModalGlass.Content)",
|
|
17
17
|
"Three themes available: 'glass' (dark), 'light', 'aurora' (gradient)",
|
|
@@ -48,10 +48,36 @@
|
|
|
48
48
|
"StepperGlass has 3 variants: numbered (default), icon, dots - use variant prop",
|
|
49
49
|
"StepperGlass orientation: horizontal (default) or vertical",
|
|
50
50
|
"StepperGlass supports linear mode (wizard pattern) - set linear prop to lock future steps",
|
|
51
|
-
"Use exported hooks: useFocus, useHover, useResponsive, useWallpaperTint for custom components"
|
|
51
|
+
"Use exported hooks: useFocus, useHover, useResponsive, useWallpaperTint for custom components",
|
|
52
|
+
|
|
53
|
+
"SplitLayoutGlass uses compound component API: Provider, Root, Sidebar, SidebarHeader, SidebarContent, SidebarFooter, Main, MainHeader, MainContent, MainFooter, Trigger, Accordion",
|
|
54
|
+
"SplitLayoutGlass.Provider accepts: selectedKey, onSelectedKeyChange, open, onOpenChange, defaultOpen (true), breakpoint ('sm'|'md'|'lg'|'xl'|'2xl'), mobileMode ('stack'|'accordion'|'drawer'), intensity ('subtle'|'medium'|'strong'), stickyOffset (24), urlParamName, keyboardShortcut ('b')",
|
|
55
|
+
"SplitLayoutGlass.Root accepts: ratio ({ sidebar: number; main: number }, default 1:2 = 33%/67%), minSidebarWidth ('300px'), maxSidebarWidth, gap (number | { mobile?: number; desktop?: number }), breakpoint, mobileLayout ('stack'|'main-only'|'sidebar-only')",
|
|
56
|
+
"SplitLayoutGlass.SidebarContent and MainContent have scrollable prop (default true) - enables ScrollArea wrapper for independent panel scrolling",
|
|
57
|
+
"useSplitLayout() returns: selectedKey, setSelectedKey, isOpen, setIsOpen, isMobileOpen, setMobileOpen, isMobile, toggle, state ('expanded'|'collapsed'), toggleSidebar (shadcn alias)",
|
|
58
|
+
"SplitLayoutGlass supports master-detail pattern via selectedKey state - use for documentation, dashboards, analytics layouts",
|
|
59
|
+
|
|
60
|
+
"SidebarGlass is 100% shadcn/ui Sidebar API compatible with compound component pattern",
|
|
61
|
+
"SidebarGlass compound components: Provider, Root, Header, Content, Footer, Rail, Inset, Trigger, Separator, Group, GroupLabel, GroupAction, GroupContent, Menu, MenuItem, MenuButton, MenuAction, MenuBadge, MenuSkeleton, MenuSub, MenuSubItem, MenuSubButton",
|
|
62
|
+
"SidebarGlass.Provider accepts: side ('left'|'right'), variant ('sidebar'|'floating'|'inset'), collapsible ('offcanvas'|'icon'|'none'), open, onOpenChange, defaultOpen (true), cookieName ('sidebar:state'), keyboardShortcut ('b')",
|
|
63
|
+
"SidebarGlass renders as mobile drawer (ModalGlass sheet) on mobile and collapsible sidebar with glassmorphism on desktop",
|
|
64
|
+
"SidebarGlass.Rail provides interactive collapse/expand rail with hover indicator - click or drag to toggle sidebar",
|
|
65
|
+
"SidebarGlass.MenuButton accepts: isActive (boolean), tooltip (string - shown in icon mode), variant ('default'|'outline'), size ('default'|'sm'|'lg')",
|
|
66
|
+
"useSidebar() returns: state ('expanded'|'collapsed'), open, setOpen, openMobile, setOpenMobile, isMobile, side, variant, collapsible, toggleSidebar",
|
|
67
|
+
|
|
68
|
+
"SeparatorGlass: Simple glass-styled divider with horizontal/vertical orientation. Use decorative=true (default) for visual-only separators",
|
|
69
|
+
"ScrollAreaGlass: Custom scrollable container with glass-styled scrollbar. Supports orientation='vertical'|'horizontal'|'both'",
|
|
70
|
+
"CollapsibleGlass: Expandable/collapsible section with compound API: Root, Trigger (with asChild), Content. Supports controlled/uncontrolled modes",
|
|
71
|
+
"RadioGroupGlass: Glass-styled radio button group with compound API: Root (value/onValueChange), Item. Uses Radix primitives",
|
|
72
|
+
"ToggleGroupGlass: Segmented control / toggle button group. Supports type='single'|'multiple', variant='default'|'outline', size='sm'|'default'|'lg'",
|
|
73
|
+
"SheetGlass: Side panel drawer with compound API: Root, Trigger, Content (side='top'|'right'|'bottom'|'left'), Header, Footer, Title, Description, Close",
|
|
74
|
+
"ModalGlass.Trigger: Opens modal with asChild support. Use inside ModalGlass.Root for uncontrolled modal (no need for useState)",
|
|
75
|
+
"ModalGlass uncontrolled mode: Use defaultOpen prop instead of open/onOpenChange for simpler state management",
|
|
76
|
+
"GlassCard compound components: GlassCardHeader, GlassCardTitle, GlassCardDescription, GlassCardAction, GlassCardContent, GlassCardFooter - 100% shadcn/ui Card compatible"
|
|
52
77
|
],
|
|
53
78
|
"previousVersions": [
|
|
54
|
-
{ "tag": "v2.
|
|
79
|
+
{ "tag": "v2.2.0", "title": "Version 2.2.0 (Latest - shadcn/ui API Compatibility)" },
|
|
80
|
+
{ "tag": "v2.0.0", "title": "Version 2.0.0 (Token Architecture)" },
|
|
55
81
|
{ "tag": "v1.1.0", "title": "Version 1.1.0" },
|
|
56
82
|
{ "tag": "v1.0.11", "title": "Version 1.0.11" },
|
|
57
83
|
{ "tag": "v1.0.0", "title": "Version 1.0.0 (Breaking Changes)" }
|
package/dist/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const require_trust_score_card_glass = require("../trust-score-card-glass-
|
|
2
|
+
const require_trust_score_card_glass = require("../trust-score-card-glass-CTsEVRD3.cjs");
|
|
3
3
|
let node_util = require("node:util");
|
|
4
4
|
let node_fs = require("node:fs");
|
|
5
5
|
let node_path = require("node:path");
|
package/dist/components.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const require_trust_score_card_glass = require("./trust-score-card-glass-
|
|
2
|
-
require("./utils-
|
|
3
|
-
require("./use-focus
|
|
4
|
-
require("./theme-context-
|
|
1
|
+
const require_trust_score_card_glass = require("./trust-score-card-glass-CTsEVRD3.cjs");
|
|
2
|
+
require("./utils-BqeJ4aco.cjs");
|
|
3
|
+
require("./use-focus--Hw2nevi.cjs");
|
|
4
|
+
require("./theme-context-D_cb9KzA.cjs");
|
|
5
5
|
exports.AICardGlass = require_trust_score_card_glass.AICardGlass;
|
|
6
6
|
exports.AlertGlass = require_trust_score_card_glass.AlertGlass;
|
|
7
7
|
exports.AvatarGlass = require_trust_score_card_glass.AvatarGlass;
|
package/dist/components.d.ts
CHANGED
|
@@ -661,7 +661,7 @@ declare interface FormFieldWrapperProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
661
661
|
children: ReactNode;
|
|
662
662
|
}
|
|
663
663
|
|
|
664
|
-
export declare const GlassCard: ForwardRefExoticComponent<GlassCardProps & RefAttributes<HTMLDivElement>>;
|
|
664
|
+
export declare const GlassCard: React_2.ForwardRefExoticComponent<GlassCardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
665
665
|
|
|
666
666
|
/**
|
|
667
667
|
* Props for the GlassCard component
|
|
@@ -719,7 +719,7 @@ export declare const GlassCard: ForwardRefExoticComponent<GlassCardProps & RefAt
|
|
|
719
719
|
* </GlassCard>
|
|
720
720
|
* ```
|
|
721
721
|
*/
|
|
722
|
-
declare interface GlassCardProps extends Omit<
|
|
722
|
+
declare interface GlassCardProps extends Omit<React_2.HTMLAttributes<HTMLDivElement>, 'style'>, VariantProps<typeof cardIntensity> {
|
|
723
723
|
/**
|
|
724
724
|
* Render as child element instead of div (polymorphic rendering).
|
|
725
725
|
* Useful for making cards clickable links or custom interactive elements.
|
|
@@ -1177,6 +1177,8 @@ declare interface ModalFooterProps {
|
|
|
1177
1177
|
*/
|
|
1178
1178
|
export declare const ModalGlass: {
|
|
1179
1179
|
Root: default_2.FC<ModalRootProps>;
|
|
1180
|
+
Trigger: default_2.ForwardRefExoticComponent<ModalTriggerProps & default_2.RefAttributes<HTMLButtonElement>>;
|
|
1181
|
+
Portal: default_2.FC<ModalPortalProps>;
|
|
1180
1182
|
Overlay: default_2.FC<ModalOverlayProps>;
|
|
1181
1183
|
Content: default_2.ForwardRefExoticComponent<ModalContentProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
1182
1184
|
Header: default_2.FC<ModalHeaderProps>;
|
|
@@ -1196,6 +1198,10 @@ declare interface ModalOverlayProps {
|
|
|
1196
1198
|
className?: string;
|
|
1197
1199
|
}
|
|
1198
1200
|
|
|
1201
|
+
declare interface ModalPortalProps {
|
|
1202
|
+
children: ReactNode;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1199
1205
|
/**
|
|
1200
1206
|
* Props for ModalGlass.Root component
|
|
1201
1207
|
*
|
|
@@ -1291,8 +1297,10 @@ declare interface ModalOverlayProps {
|
|
|
1291
1297
|
* ```
|
|
1292
1298
|
*/
|
|
1293
1299
|
declare interface ModalRootProps extends default_2.HTMLAttributes<HTMLDivElement> {
|
|
1294
|
-
/**
|
|
1295
|
-
open
|
|
1300
|
+
/** Controlled open state (optional for uncontrolled mode) */
|
|
1301
|
+
open?: boolean;
|
|
1302
|
+
/** Default open state for uncontrolled mode */
|
|
1303
|
+
defaultOpen?: boolean;
|
|
1296
1304
|
/** Callback when open state changes */
|
|
1297
1305
|
onOpenChange?: (open: boolean) => void;
|
|
1298
1306
|
/** Size variant */
|
|
@@ -1312,6 +1320,12 @@ declare interface ModalTitleProps {
|
|
|
1312
1320
|
className?: string;
|
|
1313
1321
|
}
|
|
1314
1322
|
|
|
1323
|
+
declare interface ModalTriggerProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1324
|
+
/** Render as child element (polymorphic) */
|
|
1325
|
+
asChild?: boolean;
|
|
1326
|
+
children: ReactNode;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1315
1329
|
export declare const NotificationGlass: ForwardRefExoticComponent<NotificationGlassProps & RefAttributes<HTMLDivElement>>;
|
|
1316
1330
|
|
|
1317
1331
|
declare interface NotificationGlassProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' | 'style'>, VariantProps<typeof notificationVariants> {
|
package/dist/components.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as BaseProgressGlass,
|
|
1
|
+
import { $ as BaseProgressGlass, An as InteractiveCard, Dn as AlertGlass, G as SegmentedControlGlass, Ht as DropdownGlass, K as RainbowProgressGlass, Mn as TouchTarget, Nt as InputGlass, Pt as GlassCard, Q as StatusIndicatorGlass, St as SkeletonGlass, X as LanguageBarGlass, Y as ProfileAvatarGlass, Z as FlagAlertGlass, _ as ContributionMetricsGlass, _n as ButtonGlass, _t as SliderGlass, a as HeaderBrandingGlass, b as AICardGlass, c as YearCardGlass, ct as ExpandableHeaderGlass, d as TrustScoreDisplayGlass, et as ThemeToggleGlass, f as RepositoryMetadataGlass, g as MetricCardGlass, gn as CheckboxGlass, gt as TabsGlass, h as MetricsGridGlass, hn as CircularProgressGlass, i as HeaderNavGlass, in as ComboBoxGlass, jn as FormFieldWrapper, jt as ModalGlass, kt as NotificationGlass, l as UserStatsLineGlass, lt as TooltipGlass, m as RepositoryCardGlass, mt as ToggleGlass, n as ProjectsListGlass, nt as SortDropdownGlass, o as FlagsSectionGlass, p as RepositoryHeaderGlass, q as ProgressGlass, r as ProfileHeaderGlass, rt as SearchBoxGlass, s as CareerStatsGlass, st as IconButtonGlass, t as TrustScoreCardGlass, tt as StatItemGlass, u as UserInfoGlass, v as CircularMetricGlass, wt as PopoverGlass, xn as AvatarGlass, y as CareerStatsHeaderGlass, yn as BadgeGlass } from "./trust-score-card-glass-CUStm4o_.js";
|
|
2
2
|
import "./utils-CcyeqpKQ.js";
|
|
3
3
|
import "./use-focus-CX0TJJIj.js";
|
|
4
4
|
import "./theme-context-_T5r1KG4.js";
|
package/dist/hooks.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
const require_use_focus = require("./use-focus
|
|
2
|
-
const require_use_wallpaper_tint = require("./use-wallpaper-tint-
|
|
1
|
+
const require_use_focus = require("./use-focus--Hw2nevi.cjs");
|
|
2
|
+
const require_use_wallpaper_tint = require("./use-wallpaper-tint-B4oMQsXQ.cjs");
|
|
3
3
|
exports.useFocus = require_use_focus.useFocus;
|
|
4
4
|
exports.useHover = require_use_focus.useHover;
|
|
5
5
|
exports.useResponsive = require_use_wallpaper_tint.useResponsive;
|