Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.2] - 2026-05-07

### Fixes
- **Tooltip**: Added missing `TooltipPortal` export
- **Hooks**: Exported `useIsMobile` hook for mobile detection

---

## [1.1.1] - 2026-05-03

### Features
Expand Down Expand Up @@ -74,6 +82,7 @@ If you have custom themes or override theme variables, you'll need to update the

## Version Reference

- **1.1.1** - Current release (sidebar active state underline)
- **1.1.2** - Current release (missing exports fix)
- **1.1.1** - Sidebar active state underline
- **1.1.0** - Theming refactor
- **1.0.0** - Initial release
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nipsys/lsd-monorepo",
"version": "1.1.1",
"version": "1.1.2",
"private": true,
"description": "Monorepo for the @nipsys/lsd component library and documentation",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/lsd-docs/app/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const siteConfig = {
title: 'LSD Documentation',
description: 'LSD Component Library Documentation',
url: 'https://lsd.nipsys.dev',
version: '1.1.1',
version: '1.1.2',
github: 'https://github.com/nipsysdev/lsd',
} as const;

Expand Down
2 changes: 1 addition & 1 deletion packages/lsd-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nipsys/lsd-docs",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
Expand Down
2 changes: 1 addition & 1 deletion packages/lsd-docs/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
testDir: './e2e',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
retries: process.env.CI ? 5 : 0,
workers: undefined,
reporter: [['html'], ['list']],
use: {
Expand Down
2 changes: 1 addition & 1 deletion packages/lsd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.1.1",
"version": "1.1.2",
"type": "module",
"module": "./dist/main.js",
"exports": {
Expand Down
1 change: 1 addition & 0 deletions packages/lsd/src/components/ui/tooltip/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export { Tooltip } from './Tooltip';
export { TooltipContent } from './TooltipContent';
export { TooltipPortal } from './TooltipPortal';
export { TooltipProvider } from './TooltipProvider';
export { TooltipTrigger } from './TooltipTrigger';
1 change: 1 addition & 0 deletions packages/lsd/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ export * from '@/components/ui/toggle';
export * from '@/components/ui/toggle-group';
export * from '@/components/ui/tooltip';
export * from '@/components/ui/typography';
export * from '@/hooks/use-mobile';
2 changes: 1 addition & 1 deletion skills/nipsys-lsd/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: nipsys-lsd
description: Use when working with @nipsys/lsd in React 19+ projects for UI component implementation, theming, and design system integration. Provides comprehensive guidance for the LSD monochromatic component library including 39 accessible components with semantic styling, spacing tokens (--lsd-spacing-*), keyboard navigation patterns, and proper composition patterns. Ideal for developers building React applications.
metadata:
version: 1.1.1
version: 1.1.2
category: frontend
sources:
- https://github.com/nipsysdev/lsd
Expand Down
Loading