
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@felixgeelhaar/glaze-react
Advanced tools
React components for the Glaze Design System
npm install @felixgeelhaar/glaze-react @felixgeelhaar/glaze-components
# or
pnpm add @felixgeelhaar/glaze-react @felixgeelhaar/glaze-components
# or
yarn add @felixgeelhaar/glaze-react @felixgeelhaar/glaze-components
// Import styles (in your app's entry point)
import '@felixgeelhaar/glaze-components/dist/styles/tokens.css';
import '@felixgeelhaar/glaze-components/dist/styles/components.css';
// Import components
import { Button, Card, Dialog, Input, Select, Toast } from '@felixgeelhaar/glaze-react';
import React, { useState } from 'react';
import { Button, Card, Dialog, Input } from '@felixgeelhaar/glaze-react';
function App() {
const [dialogOpen, setDialogOpen] = useState(false);
return (
<Card variant="glass" size="lg">
<h2>Welcome to Glaze</h2>
<Input
label="Your Name"
placeholder="Enter your name"
helperText="We'll use this to personalize your experience"
/>
<Button
variant="glass"
tone="primary"
onClick={() => setDialogOpen(true)}
>
Open Dialog
</Button>
<Dialog
open={dialogOpen}
onGlzDialogClose={() => setDialogOpen(false)}
label="Hello!"
>
<p>This is a beautiful glassmorphism dialog.</p>
<Button onClick={() => setDialogOpen(false)}>
Close
</Button>
</Dialog>
</Card>
);
}
<Button
variant="glass" // "glass" | "solid" | "ghost"
size="md" // "sm" | "md" | "lg"
tone="primary" // "primary" | "accent" | "neutral"
disabled={false}
loading={false}
onClick={handleClick}
>
Click Me
</Button>
<Card
variant="glass"
size="md"
tone="neutral"
className="custom-class"
>
<h3>Card Title</h3>
<p>Card content goes here</p>
</Card>
<Dialog
open={isOpen}
variant="glass"
label="Dialog Title"
onGlzDialogClose={handleClose}
>
<p>Dialog content</p>
<Button onClick={handleClose}>Close</Button>
</Dialog>
<Input
type="text"
label="Email Address"
placeholder="email@example.com"
helperText="We'll never share your email"
error={false}
errorMessage=""
required={true}
disabled={false}
value={value}
onChange={(e) => setValue(e.target.value)}
/>
<Select
label="Choose an option"
options={[
{ value: 'option1', label: 'Option 1' },
{ value: 'option2', label: 'Option 2' },
{ value: 'option3', label: 'Option 3', disabled: true }
]}
value={selectedValue}
onChange={(e) => setSelectedValue(e.target.value)}
placeholder="Select..."
helperText="Pick your favorite"
/>
<Toast
type="success" // "info" | "success" | "warning" | "error"
title="Success!"
message="Your changes have been saved"
position="bottom-right"
duration={5000}
open={showToast}
onGlzToastClose={() => setShowToast(false)}
/>
<Navbar
variant="glass"
brand="My App"
brandHref="/"
sticky={true}
>
<a href="/features">Features</a>
<a href="/pricing">Pricing</a>
<a href="/about">About</a>
</Navbar>
All components are fully typed. Import types for better IDE support:
import {
Button,
ButtonProps,
Card,
CardProps,
Dialog,
DialogProps
} from '@felixgeelhaar/glaze-react';
const MyButton: React.FC<ButtonProps> = (props) => {
return <Button {...props} />;
};
Components accept standard className props:
<Button className="my-custom-button" variant="glass">
Styled Button
</Button>
Customize the theme using CSS variables:
:root {
--glz-primary: #6366f1;
--glz-accent: #f472b6;
--glz-radius-md: 0.75rem;
--glz-blur-md: 12px;
}
Components work great with Tailwind CSS:
<Card className="p-6 m-4 hover:scale-105 transition-transform">
<h2 className="text-2xl font-bold mb-4">Tailwind + Glaze</h2>
</Card>
The components work with Next.js, Remix, and other SSR frameworks:
// Next.js app/layout.tsx
import '@felixgeelhaar/glaze-components/dist/styles/tokens.css';
import '@felixgeelhaar/glaze-components/dist/styles/components.css';
// Next.js pages or app directory
import { Button } from '@felixgeelhaar/glaze-react';
export default function Page() {
return <Button>Works with SSR!</Button>;
}
MIT
FAQs
React components for the Glaze Design System
We found that @felixgeelhaar/glaze-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.