@acontplus/ng-components 1.3.0 → 1.3.1
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 +8 -0
- package/fesm2022/acontplus-ng-components.mjs +226 -98
- package/fesm2022/acontplus-ng-components.mjs.map +1 -1
- package/index.d.ts +57 -17
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -5,7 +5,11 @@ Angular Material UI component library with dynamic tables, theming support, dial
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
# Using npm
|
|
8
9
|
npm install @acontplus/ng-components
|
|
10
|
+
|
|
11
|
+
# Using pnpm
|
|
12
|
+
pnpm add @acontplus/ng-components
|
|
9
13
|
```
|
|
10
14
|
|
|
11
15
|
## Features
|
|
@@ -186,7 +190,11 @@ const data = [
|
|
|
186
190
|
**Note**: Tabulator tables require `tabulator-tables` as a peer dependency:
|
|
187
191
|
|
|
188
192
|
```bash
|
|
193
|
+
# Using npm
|
|
189
194
|
npm install tabulator-tables
|
|
195
|
+
|
|
196
|
+
# Using pnpm
|
|
197
|
+
pnpm add tabulator-tables
|
|
190
198
|
```
|
|
191
199
|
|
|
192
200
|
#### Theme Integration
|