@acontplus/ng-components 1.0.13 → 1.1.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/README.md +7 -0
- package/fesm2022/acontplus-ng-components.mjs +100 -91
- package/fesm2022/acontplus-ng-components.mjs.map +1 -1
- package/index.d.ts +35 -28
- package/package.json +1 -1
- package/src/styles/_variables.scss +0 -23
- package/src/styles/index.scss +0 -2
- package/src/styles/_custom-buttons.scss +0 -469
package/README.md
CHANGED
|
@@ -114,6 +114,13 @@ Import the components you need:
|
|
|
114
114
|
import { CardsComponent, ThemeToggleComponent } from '@acontplus/ng-components';
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
+
Note: `tabulator-tables` is a runtime dependency and is installed alongside this package.
|
|
118
|
+
To use table components, install Tabulator in your application:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
npm install tabulator-tables
|
|
122
|
+
```
|
|
123
|
+
|
|
117
124
|
## Running unit tests
|
|
118
125
|
|
|
119
126
|
Run `nx test ng-components` to execute the unit tests.
|