@aslaluroba/help-center 4.0.6 → 4.0.8
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 +6 -14
- package/fesm2022/aslaluroba-help-center.mjs +69 -70
- package/fesm2022/aslaluroba-help-center.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/styles.css +121 -47
- package/types/aslaluroba-help-center.d.ts +3 -3
- package/styles/styles.scss +0 -193
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
|
-
|
|
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
|
-
###
|
|
18
|
+
### Import the stylesheet
|
|
19
19
|
|
|
20
|
-
Add this import to your application's main `styles.css`
|
|
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.
|
|
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
|
-
|
|
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
|
|
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
|
|