@qwickapps/react-framework 1.4.3 → 1.4.4

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/README.md CHANGED
@@ -4,7 +4,7 @@ A complete React framework for building modern, responsive applications with int
4
4
 
5
5
  ## What's New
6
6
 
7
- ### September 29, 2025 - Production Ready Release (v1.4.3)
7
+ ### September 29, 2025 - Production Ready Release (v1.4.4)
8
8
 
9
9
  - **NPM Publishing Ready**: Package prepared for official NPM distribution with optimized build configuration and comprehensive exports
10
10
  - **Enhanced Build System**: Improved rollup configuration with both development and production builds, automatic CSS bundling, and TypeScript declarations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwickapps/react-framework",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "type": "module",
5
5
  "description": "Complete React framework with responsive navigation, flexible layouts, theming system, and reusable components for building modern applications.",
6
6
  "main": "dist/index.js",
@@ -20,7 +20,8 @@
20
20
  "require": "./dist/config.js",
21
21
  "import": "./dist/config.esm.js"
22
22
  },
23
- "./dist/index.css": "./dist/index.css"
23
+ "./dist/index.css": "./dist/index.css",
24
+ "./index.css": "./dist/index.css"
24
25
  },
25
26
  "files": [
26
27
  "dist",
@@ -81,7 +81,7 @@ createReactApp.on('close', (code) => {
81
81
  console.log('⚙️ Step 3: Setting up QwickApps application template...');
82
82
 
83
83
  const appTsxContent = `import React from 'react';
84
- import '@qwickapps/react-framework/dist/index.css';
84
+ import '@qwickapps/react-framework/index.css';
85
85
  import './App.css';
86
86
  import {
87
87
  QwickApp,
@@ -162,7 +162,7 @@ export default App;
162
162
  // Step 4: Update index.tsx to import CSS
163
163
  const indexTsxContent = `import React from 'react';
164
164
  import ReactDOM from 'react-dom/client';
165
- import '@qwickapps/react-framework/dist/index.css';
165
+ import '@qwickapps/react-framework/index.css';
166
166
  import './index.css';
167
167
  import App from './App';
168
168
  import reportWebVitals from './reportWebVitals';