cats-data-grid 2.0.1 → 2.0.31

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/index.d.ts CHANGED
@@ -496,13 +496,19 @@ declare class CommonRendererComponent {
496
496
  * @author Anand Pandey
497
497
  * @returns {string[]}
498
498
  */
499
- get allTags(): any[];
499
+ get allTags(): {
500
+ tagValue: any;
501
+ class: any;
502
+ }[];
500
503
  /**
501
504
  * @description Returns the subset of tags that should be visibly displayed in the UI based on maxVisible count.
502
505
  * @author Anand Pandey
503
506
  * @returns {string[]}
504
507
  */
505
- get visibleTags(): any[];
508
+ get visibleTags(): {
509
+ tagValue: any;
510
+ class: any;
511
+ }[];
506
512
  /**
507
513
  * @description Returns the count of tags hidden behind the "+" more indicator.
508
514
  * @author Anand Pandey
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "cats-data-grid",
3
- "version": "2.0.1",
3
+ "version": "2.0.31",
4
4
  "peerDependencies": {
5
- "@angular/common": "^20.3.15",
6
- "@angular/core": "^20.3.15"
5
+ "@angular/core": ">=18 <22",
6
+ "@angular/common": ">=18 <22"
7
7
  },
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0"
@@ -170,8 +170,8 @@ sup {
170
170
  input[type="checkbox"]:checked {
171
171
  &[disabled] {
172
172
  cursor: default;
173
- background-color: var(--neutral-100);
174
- border-color: var(--neutral-100);
173
+ background-color: var(--neutral-300);
174
+ border-color: var(--neutral-300);
175
175
  & + span {
176
176
  color: var(--neutral-300);
177
177
  }
@@ -371,3 +371,10 @@ sup {
371
371
  }
372
372
  }
373
373
  }
374
+
375
+ .text-primary {
376
+ color: var(--blue-600);
377
+ }
378
+ .text-danger {
379
+ color: var(--red) !important;
380
+ }