@swimlane/ngx-datatable 22.0.0 → 24.0.0-alpha.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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## HEAD (unreleased)
4
4
 
5
+ ## 24.0.0-alpha.0
6
+
7
+ - Enhancement: Added support for Angular 21
8
+ - Breaking: Removed support for Angular 18 and earlier versions
9
+
10
+ ## 23.0.1
11
+
12
+ - Fix: Fixing scroller Issue in datatable when multiple columns are there in datatable
13
+
5
14
  ## 22.0.0
6
15
 
7
16
  - Enhancement: Added support for Angular 20
package/assets/app.css CHANGED
@@ -37,7 +37,9 @@ body {
37
37
 
38
38
  .selected-column {
39
39
  background: #fff;
40
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
40
+ box-shadow:
41
+ 0 1px 3px 0 rgba(0, 0, 0, 0.12),
42
+ 0 1px 2px 0 rgba(0, 0, 0, 0.24);
41
43
  }
42
44
 
43
45
  .group {
@@ -45,7 +47,8 @@ body {
45
47
  margin-bottom: 45px;
46
48
  }
47
49
 
48
- input[type='text'] {
50
+ input[type='text'],
51
+ input[type='number'] {
49
52
  font-size: 14px;
50
53
  display: block;
51
54
  background: transparent;
@@ -151,7 +154,9 @@ nav {
151
154
  position: fixed;
152
155
  overflow-y: auto;
153
156
  font-size: 14px;
154
- box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14),
157
+ box-shadow:
158
+ 0 7px 8px -4px rgba(0, 0, 0, 0.2),
159
+ 0 13px 19px 2px rgba(0, 0, 0, 0.14),
155
160
  0 5px 24px 4px rgba(0, 0, 0, 0.12);
156
161
  }
157
162