flysoft-react-ui 0.2.9 → 0.2.10

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,7 +1,7 @@
1
1
  {
2
2
  "name": "flysoft-react-ui",
3
3
  "private": false,
4
- "version": "0.2.9",
4
+ "version": "0.2.10",
5
5
  "type": "module",
6
6
  "description": "A modern React UI component library with Tailwind CSS, TypeScript, and FontAwesome 5. Includes forms, layouts, themes, and templates for rapid development.",
7
7
  "keywords": [
@@ -37,10 +37,14 @@
37
37
  "import": "./dist/index.js",
38
38
  "types": "./dist/index.d.ts"
39
39
  },
40
- "./styles": "./dist/index.css"
40
+ "./styles": {
41
+ "import": "./dist/index.css",
42
+ "types": "./styles.d.ts"
43
+ }
41
44
  },
42
45
  "files": [
43
46
  "dist",
47
+ "styles.d.ts",
44
48
  "README.md"
45
49
  ],
46
50
  "scripts": {
package/styles.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Type declarations for flysoft-react-ui/styles module
3
+ * This allows TypeScript to recognize CSS imports from the package
4
+ */
5
+ declare module "flysoft-react-ui/styles" {
6
+ const styles: string;
7
+ export default styles;
8
+ }
9
+