@aslaluroba/help-center 4.0.5 → 4.0.7

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
@@ -13,11 +13,11 @@ npm install @aslaluroba/help-center
13
13
 
14
14
  **Important:** You must import the library's styles in your application for the widget to display correctly.
15
15
 
16
- The library provides both CSS and SCSS versions of the stylesheet. Choose the option that works best for your project:
16
+ This library is built with **TailwindCSS v4** and uses utility-first CSS for all styling. The stylesheet contains CSS custom properties for theming and Tailwind configuration.
17
17
 
18
- ### Option 1: Import CSS file (Recommended - Simpler)
18
+ ### Import the stylesheet
19
19
 
20
- Add this import to your application's main `styles.css` or `styles.scss` file:
20
+ Add this import to your application's main `styles.css` file:
21
21
 
22
22
  ```css
23
23
  @import '@aslaluroba/help-center/styles/styles.css';
@@ -33,7 +33,7 @@ Or add it to your `angular.json`:
33
33
  "build": {
34
34
  "options": {
35
35
  "styles": [
36
- "src/styles.scss",
36
+ "src/styles.css",
37
37
  "node_modules/@aslaluroba/help-center/styles/styles.css"
38
38
  ]
39
39
  }
@@ -44,19 +44,11 @@ Or add it to your `angular.json`:
44
44
  }
45
45
  ```
46
46
 
47
- ### Option 2: Import SCSS file (For advanced customization)
48
-
49
- If you need to customize the styles or use SCSS features, import the SCSS version:
50
-
51
- ```scss
52
- @import '@aslaluroba/help-center/styles/styles.scss';
53
- ```
54
-
55
- **Note:** The SCSS version includes Tailwind CSS v4 directives and requires PostCSS support in your build process. The CSS version is pre-compiled and ready to use.
47
+ **Note:** The stylesheet is pre-compiled and ready to use. No SCSS preprocessor or additional build configuration is required.
56
48
 
57
49
  📚 **Helpful Resources:**
58
50
  - [Integration Example](./INTEGRATION_EXAMPLE.md) - Complete step-by-step integration guide
59
- - [Stylesheet Export Guide](./STYLESHEET_EXPORT_GUIDE.md) - Detailed information about CSS vs SCSS options
51
+ - [Stylesheet Export Guide](./STYLESHEET_EXPORT_GUIDE.md) - Detailed information about TailwindCSS styling and the build process
60
52
 
61
53
  ## Setup and Configuration
62
54