@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.
- package/dist/assets/stylex.css +48 -4
- package/dist/moul-ui.js +3033 -2675
- package/dist/src/App.d.ts +1 -1
- package/dist/src/components/Alert/Alert.styles.d.ts +11 -14
- package/dist/src/components/Sidebar/Sidebar.d.ts +32 -0
- package/dist/src/components/Sidebar/Sidebar.styles.d.ts +190 -1
- package/dist/src/components/Sidebar/index.d.ts +2 -2
- package/dist/src/components/Table/Table.d.ts +10 -0
- package/dist/src/components/Table/Table.styles.d.ts +33 -2
- package/dist/src/components/Table/index.d.ts +1 -1
- package/dist/src/index.d.ts +6 -4
- package/dist/src/sandbox/icons.d.ts +13 -0
- package/dist/src/sandbox/sections/ActionsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/BlocksSection.d.ts +14 -0
- package/dist/src/sandbox/sections/ChartsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/FeedbackSection.d.ts +2 -0
- package/dist/src/sandbox/sections/FormsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/LayoutSection.d.ts +2 -0
- package/dist/src/sandbox/sections/NavigationSection.d.ts +2 -0
- package/dist/src/sandbox/sections/OverlaysSection.d.ts +6 -0
- package/dist/src/sandbox/types.d.ts +7 -0
- package/package.json +5 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moul-dev/ui",
|
|
3
|
-
"version": "2026.08.
|
|
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": "
|
|
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
|
-
"@
|
|
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"
|