@skyux/lists 13.11.4 → 13.12.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/index.d.ts CHANGED
@@ -610,12 +610,13 @@ declare class SkyRepeaterModule {
610
610
 
611
611
  /**
612
612
  * Represents a value for a filter item.
613
+ * @typeParam TValue - The type of the filter value. Defaults to `unknown` for backward compatibility.
613
614
  */
614
- interface SkyFilterStateFilterValue {
615
+ interface SkyFilterStateFilterValue<TValue = unknown> {
615
616
  /**
616
617
  * The real value for the filter.
617
618
  */
618
- value: unknown;
619
+ value: TValue;
619
620
  /**
620
621
  * A human-readable string for use with values that can't be displayed to the user.
621
622
  */
@@ -624,8 +625,9 @@ interface SkyFilterStateFilterValue {
624
625
 
625
626
  /**
626
627
  * Represents a filter item that can be applied to data.
628
+ * @typeParam TValue - The type of the filter value. Defaults to `unknown` for backward compatibility.
627
629
  */
628
- interface SkyFilterStateFilterItem {
630
+ interface SkyFilterStateFilterItem<TValue = unknown> {
629
631
  /**
630
632
  * A unique identifier for the filter item.
631
633
  */
@@ -633,7 +635,7 @@ interface SkyFilterStateFilterItem {
633
635
  /**
634
636
  * The value of the filter item.
635
637
  */
636
- filterValue?: SkyFilterStateFilterValue;
638
+ filterValue?: SkyFilterStateFilterValue<TValue>;
637
639
  }
638
640
 
639
641
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/lists",
3
- "version": "13.11.4",
3
+ "version": "13.12.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -20,16 +20,16 @@
20
20
  "@angular/common": "^20.3.15",
21
21
  "@angular/core": "^20.3.15",
22
22
  "@angular/platform-browser": "^20.3.15",
23
- "@skyux-sdk/testing": "13.11.4",
24
- "@skyux/animations": "13.11.4",
25
- "@skyux/core": "13.11.4",
26
- "@skyux/forms": "13.11.4",
27
- "@skyux/i18n": "13.11.4",
28
- "@skyux/icon": "13.11.4",
29
- "@skyux/indicators": "13.11.4",
30
- "@skyux/inline-form": "13.11.4",
31
- "@skyux/popovers": "13.11.4",
32
- "@skyux/theme": "13.11.4"
23
+ "@skyux-sdk/testing": "13.12.0",
24
+ "@skyux/animations": "13.12.0",
25
+ "@skyux/core": "13.12.0",
26
+ "@skyux/forms": "13.12.0",
27
+ "@skyux/i18n": "13.12.0",
28
+ "@skyux/icon": "13.12.0",
29
+ "@skyux/indicators": "13.12.0",
30
+ "@skyux/inline-form": "13.12.0",
31
+ "@skyux/popovers": "13.12.0",
32
+ "@skyux/theme": "13.12.0"
33
33
  },
34
34
  "dependencies": {
35
35
  "@types/dragula": "2.1.36",