@windrun-huaiin/base-ui 3.5.0 → 3.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windrun-huaiin/base-ui",
3
- "version": "3.5.0",
3
+ "version": "3.6.0",
4
4
  "description": "Base UI components for windrun-huaiin projects",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -48,25 +48,24 @@
48
48
  "@radix-ui/react-slot": "^1.2.2",
49
49
  "class-variance-authority": "^0.7.1",
50
50
  "lucide-react": "^0.511.0",
51
- "next": "15.3.2",
52
- "next-intl": "^3.26.5",
53
- "next-themes": "^0.4.6",
54
- "@windrun-huaiin/lib": "^3.3.0"
51
+ "@windrun-huaiin/lib": "^3.4.0"
55
52
  },
56
53
  "peerDependencies": {
57
- "clsx": "^2.0.0",
58
- "next": "^15.3.2",
59
54
  "react": "^19.1.0",
60
55
  "react-dom": "^19.1.0",
56
+ "next": "^15.3.2",
57
+ "next-intl": "^3.26.5",
58
+ "next-themes": "^0.4.6",
59
+ "clsx": "^2.0.0",
61
60
  "tailwind-merge": "^3.0.0",
62
61
  "tailwindcss": "^4.1.7"
63
62
  },
64
63
  "devDependencies": {
65
- "@types/node": "^22.15.33",
66
- "@types/react": "19.1.2",
67
- "@types/react-dom": "19.1.3",
64
+ "typescript": "^5.8.3",
68
65
  "tsup": "^8.3.5",
69
- "typescript": "^5.8.3"
66
+ "@types/node": "^22.15.33",
67
+ "@types/react": "^19.1.2",
68
+ "@types/react-dom": "^19.1.3"
70
69
  },
71
70
  "keywords": [
72
71
  "ui",
@@ -1,8 +1,8 @@
1
1
  /*
2
- * For the icon used in the project, unified management is required
3
- * 1. Strictly control the number of icons introduced to reduce the project package size and use them as needed
4
- * 2. Unify the style customization, and keep the icon style consistent within the project
5
- * 3. Mainly support the introduction of icons in mdx files, and report errors in advance
2
+ * For the icon used in the project, unified management is required
3
+ * 1. Strictly control the number of icons introduced to reduce the project package size and use them as needed
4
+ * 2. Unify the style customization, and keep the icon style consistent within the project
5
+ * 3. Mainly support the introduction of icons in mdx files, and report errors in advance
6
6
  */
7
7
 
8
8
  import { BUILTIN_ICON_COMPONENTS } from '@base-ui/assets';
@@ -12,6 +12,8 @@ import * as limitedIconsModule from '@lib/limited-lucide-icons';
12
12
  import { type LucideProps } from 'lucide-react';
13
13
  import React from 'react';
14
14
 
15
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
16
+ declare const process: any;
15
17
 
16
18
  // Type for styled Lucide icon components (accepts LucideProps)
17
19
  type StyledLucideIconComponent = (props: LucideProps) => React.ReactElement;