@moul-dev/ui 2026.8.25 → 2026.8.27

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.
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const ChartsSection: React.FC;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const FeedbackSection: React.FC;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const FormsSection: React.FC;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const LayoutSection: React.FC;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const NavigationSection: React.FC;
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ interface OverlaysSectionProps {
3
+ onOpenCommandPalette?: () => void;
4
+ }
5
+ export declare const OverlaysSection: React.FC<OverlaysSectionProps>;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ export type SandboxCategoryId = 'all' | 'actions' | 'forms' | 'overlays' | 'feedback' | 'navigation' | 'layout' | 'charts' | 'blocks';
2
+ export interface SandboxCategory {
3
+ id: SandboxCategoryId;
4
+ label: string;
5
+ count: number;
6
+ description: string;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moul-dev/ui",
3
- "version": "2026.08.25",
3
+ "version": "2026.08.27",
4
4
  "description": "Accessible, zero-runtime React component library built on React Aria and StyleX",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -60,7 +60,9 @@
60
60
  "dev": "vite",
61
61
  "build": "tsc -b && vite build",
62
62
  "build:watch": "vite build --watch",
63
- "lint": "eslint .",
63
+ "lint": "biome check",
64
+ "format": "biome format --write",
65
+ "gen:component": "bun ../scripts/gen-component.ts",
64
66
  "preview": "vite preview",
65
67
  "test": "vitest run"
66
68
  },
@@ -77,7 +79,7 @@
77
79
  "recharts": "^3.9.2"
78
80
  },
79
81
  "devDependencies": {
80
- "@eslint/js": "^10.0.1",
82
+ "@biomejs/biome": "^2.5.0",
81
83
  "@stylexjs/unplugin": "^0.19.0",
82
84
  "@testing-library/jest-dom": "^6.6.3",
83
85
  "@testing-library/react": "^16.1.0",
@@ -85,17 +87,12 @@
85
87
  "@types/react": "^19.2.14",
86
88
  "@types/react-dom": "^19.2.3",
87
89
  "@vitejs/plugin-react": "^6.0.1",
88
- "eslint": "^10.3.0",
89
- "eslint-plugin-react-hooks": "^7.1.1",
90
- "eslint-plugin-react-refresh": "^0.5.2",
91
90
  "fast-check": "^3.23.2",
92
91
  "glob": "^11.0.0",
93
- "globals": "^17.6.0",
94
92
  "jsdom": "^25.0.1",
95
93
  "react": "^19.2.6",
96
94
  "react-dom": "^19.2.6",
97
95
  "typescript": "~6.0.2",
98
- "typescript-eslint": "^8.59.2",
99
96
  "vite": "^8.0.12",
100
97
  "vite-plugin-dts": "^5.0.2",
101
98
  "vitest": "^2.1.8"