@guiexpert/angular-table 19.1.52 → 19.1.55

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 (28) hide show
  1. package/fesm2022/guiexpert-angular-table.mjs +237 -0
  2. package/fesm2022/guiexpert-angular-table.mjs.map +1 -0
  3. package/index.d.ts +5 -0
  4. package/lib/component-renderer.if.d.ts +4 -0
  5. package/lib/service/dom-service.d.ts +17 -0
  6. package/lib/service/render-wrapper-factory.d.ts +13 -0
  7. package/lib/service/renderer-wrapper.d.ts +14 -0
  8. package/lib/table.component.d.ts +43 -0
  9. package/package.json +17 -30
  10. package/{projects/angular-table/src/public-api.ts → public-api.d.ts} +0 -4
  11. package/.editorconfig +0 -16
  12. package/angular.json +0 -40
  13. package/projects/angular-table/README.md +0 -119
  14. package/projects/angular-table/dist/index.mjs +0 -21485
  15. package/projects/angular-table/ng-package.json +0 -7
  16. package/projects/angular-table/package.json +0 -16
  17. package/projects/angular-table/src/lib/angular-table.component.spec.ts +0 -23
  18. package/projects/angular-table/src/lib/angular-table.service.spec.ts +0 -16
  19. package/projects/angular-table/src/lib/component-renderer.if.ts +0 -12
  20. package/projects/angular-table/src/lib/service/dom-service.ts +0 -63
  21. package/projects/angular-table/src/lib/service/render-wrapper-factory.ts +0 -24
  22. package/projects/angular-table/src/lib/service/renderer-wrapper.ts +0 -86
  23. package/projects/angular-table/src/lib/table.component.css +0 -350
  24. package/projects/angular-table/src/lib/table.component.ts +0 -167
  25. package/projects/angular-table/tsconfig.lib.json +0 -14
  26. package/projects/angular-table/tsconfig.lib.prod.json +0 -10
  27. package/projects/angular-table/tsconfig.spec.json +0 -14
  28. package/tsconfig.json +0 -38
@@ -1,119 +0,0 @@
1
- # @guiexpert/angular-table
2
-
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/website-astro/main/src/assets/screens/heatmap.png" width="50%">
10
-
11
- ### Version compatibility
12
-
13
-
14
- | Angular | @guiexpert/angular-table |
15
- |:--------|:-------------------------|
16
- | 19.x.x | ^19.0.0 |
17
- | 18.x.x | ^18.0.0 |
18
- | 17.x.x | ^17.0.0 |
19
- | 16.x.x | ^16.0.7 |
20
- | 15.x.x | ^15.0.2 |
21
- | 14.x.x | ^14.0.3 |
22
- |
23
-
24
-
25
- ### Features
26
- - Handle large datasets easily
27
- - Excellent performance for large tables by vertical and horizontal virtual scrolling
28
- - Fully-featured (advanced sorting and filtering)
29
- - Highly customizable orderData grid
30
- - Outstanding performance
31
- - No third-party dependencies
32
- - UI-agnostic
33
- - Column Interactions (resize, reorder)
34
- - Sorting Rows
35
- - Row, Column, and Range Selection
36
- - Single and Multi Selection
37
- - UI-agnostic
38
- - Row and Column Spanning
39
- - Fixed Columns (Left and Right)
40
- - Tree table (Hierarchical View)
41
- - Accessibility support: Keyboard Shortcuts
42
- - Custom Filtering
43
- - In-place Cell Editing
44
- - Userdefined Key and Mouse Events
45
- - Customizable Look & Feel (via CSS variables)
46
- - Row sorting
47
- - Column Reordering (Drag and Drop)
48
- - State Persistence (Row Sorting, Column Order, Selection)
49
- - Customizable Cell Contents via Renderer for Header, Body and Footer
50
- - Full control over the HTML structure and style
51
-
52
-
53
- ## Links
54
-
55
- - [Demos](https://gui.expert/demos)
56
- - [Documentation](https://gui.expert/doc)
57
- - [API](https://gui.expert/api)
58
-
59
- ## Get Started
60
-
61
- Add the following two NPM packages to your existing angular project (run this in your project root directory):
62
-
63
- ```
64
- npm install --save @guiexpert/table @guiexpert/angular-table
65
- ```
66
-
67
- Import the (standalone) TableComponent in your angular module:
68
-
69
- ```
70
- @NgModule({
71
- imports: [
72
- CommonModule,
73
- TableComponent, ...
74
- ```
75
-
76
- Add guiexpert-table component to a template:
77
-
78
- ```
79
- <guiexpert-table
80
- [tableModel]="tableModel"
81
- [tableOptions]="tableOptions"
82
- class="table-div"
83
- ></guiexpert-table>
84
- ```
85
-
86
-
87
- Add two properties (tableModel and tableOptions) to the component:
88
-
89
- ```
90
- import {
91
- TableFactory,
92
- TableModelIf,
93
- TableOptions,
94
- TableOptionsIf
95
- } from "@guiexpert/table";
96
-
97
- tableModel: TableModelIf = TableFactory.createTableModel({
98
- headerData: [
99
- ['Header 1', 'Header 2']
100
- ],
101
- bodyData: [
102
- ['Text 1a', 'Text 2a'],
103
- ['Text 1b', 'Text 2b'],
104
- ]
105
- });
106
-
107
- tableOptions = {
108
- ...new TableOptions(),
109
- hoverColumnVisible: false,
110
- defaultRowHeights: {
111
- header: 40,
112
- body: 34,
113
- footer: 0
114
- }
115
-
116
- ```
117
-
118
- There are numerous possibilities to create table models.
119
- Please refer to the [Documentation](https://gui.expert/doc) for further information or the [Demo](https://gui.expert/demos) section for examples.