@guiexpert/angular-table 16.0.0 → 16.0.3

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.
Files changed (2) hide show
  1. package/README.md +104 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,3 +1,105 @@
1
- # angular-table
1
+ # @guiexpert/angular-table
2
2
 
3
- coming soon
3
+ This is the angular component of the GuiExpert Table Project.
4
+
5
+ ## Become a master at creating web applications with large tables
6
+
7
+ This is the UI-agnostic table component for your next web app. 😊
8
+
9
+ <img src="https://raw.githubusercontent.com/guiexperttable/table-website/main/src/assets/screens/heatmap.png" width="50%">
10
+
11
+ ### Features
12
+ - Handle large datasets easily
13
+ - Excellent performance for large tables by vertical and horizontal virtual scrolling
14
+ - Fully-featured (advanced sorting and filtering)
15
+ - Highly customizable data grid
16
+ - Outstanding performance
17
+ - No third-party dependencies
18
+ - UI-agnostic
19
+ - Column Interactions (resize, reorder)
20
+ - Sorting Rows
21
+ - Row, Column, and Range Selection
22
+ - Single and Multi Selection
23
+ - UI-agnostic
24
+ - Row and Column Spanning
25
+ - Fixed Columns (Left and Right)
26
+ - Tree table (Hierarchical View)
27
+ - Accessibility support: Keyboard Shortcuts
28
+ - Custom Filtering
29
+ - In-place Cell Editing
30
+ - Userdefined Key and Mouse Events
31
+ - Customizable Look & Feel (via CSS variables)
32
+ - Row sorting
33
+ - Column Reordering (Drag and Drop)
34
+ - State Persistence (Row Sorting, Column Order, Selection)
35
+ - Customizable Cell Contents via Renderer for Header, Body and Footer
36
+ - Full control over the HTML structure and style
37
+
38
+
39
+ ## Links
40
+
41
+ - [Demos](https://gui.expert/demos)
42
+ - [Documentation](https://gui.expert/doc)
43
+ - [API](https://gui.expert/api)
44
+
45
+ ## Get Started
46
+
47
+ Add the following two NPM packages to your existing angular project (run this in your project root directory):
48
+
49
+ ```
50
+ npm install --save @guiexpert/table @guiexpert/angular-table
51
+ ```
52
+
53
+ Import the (standalone) TableComponent in your angular module:
54
+
55
+ ```
56
+ @NgModule({
57
+ imports: [
58
+ CommonModule,
59
+ TableComponent, ...
60
+ ```
61
+
62
+ Add guiexpert-table component to a template:
63
+
64
+ ```
65
+ <guiexpert-table
66
+ [tableModel]="tableModel"
67
+ [tableOptions]="tableOptions"
68
+ class="table-div"
69
+ ></guiexpert-table>
70
+ ```
71
+
72
+
73
+ Add two properties (tableModel and tableOptions) to the component:
74
+
75
+ ```
76
+ import {
77
+ TableModelFactory,
78
+ TableModelIf,
79
+ TableOptions,
80
+ TableOptionsIf
81
+ } from "@guiexpert/table";
82
+
83
+ tableModel = TableModelFactory.createByArrayOfArraysParams<any>({
84
+ columnLabels: [
85
+ ['Header 1', 'Header 2']
86
+ ],
87
+ data: [
88
+ ['Text 1a', 'Text 2a'],
89
+ ['Text 1b', 'Text 2b'],
90
+ ]
91
+ };
92
+
93
+ tableOptions = {
94
+ ...new TableOptions(),
95
+ hoverColumnVisible: false,
96
+ defaultRowHeights: {
97
+ header: 40,
98
+ body: 34,
99
+ footer: 0
100
+ }
101
+
102
+ ```
103
+
104
+ There are numerous possibilities to create table models.
105
+ Please refer to the [Documentation](https://gui.expert/doc) for further information or the [Demo](https://gui.expert/demos) section for examples.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guiexpert/angular-table",
3
- "version": "16.0.0",
3
+ "version": "16.0.3",
4
4
  "scripts": {
5
5
  "publish": "npm publish"
6
6
  },