@skyux/data-manager 12.0.0-alpha.10 → 12.0.0-alpha.11

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.
@@ -2,13 +2,9 @@ export interface SkyDataViewColumnWidths {
2
2
  /**
3
3
  * A map of columnIds to column widths at the xs breakpoint size.
4
4
  */
5
- xs: {
6
- [colId: string]: number;
7
- };
5
+ xs: Record<string, number>;
8
6
  /**
9
7
  * A map of columnIds to column widths at the sm or larger breakpoint size.
10
8
  */
11
- sm: {
12
- [colId: string]: number;
13
- };
9
+ sm: Record<string, number>;
14
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/data-manager",
3
- "version": "12.0.0-alpha.10",
3
+ "version": "12.0.0-alpha.11",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -31,15 +31,15 @@
31
31
  "@angular/common": "^19.2.1",
32
32
  "@angular/core": "^19.2.1",
33
33
  "@angular/forms": "^19.2.1",
34
- "@skyux/core": "12.0.0-alpha.10",
35
- "@skyux/forms": "12.0.0-alpha.10",
36
- "@skyux/i18n": "12.0.0-alpha.10",
37
- "@skyux/icon": "12.0.0-alpha.10",
38
- "@skyux/indicators": "12.0.0-alpha.10",
39
- "@skyux/layout": "12.0.0-alpha.10",
40
- "@skyux/lists": "12.0.0-alpha.10",
41
- "@skyux/lookup": "12.0.0-alpha.10",
42
- "@skyux/modals": "12.0.0-alpha.10"
34
+ "@skyux/core": "12.0.0-alpha.11",
35
+ "@skyux/forms": "12.0.0-alpha.11",
36
+ "@skyux/i18n": "12.0.0-alpha.11",
37
+ "@skyux/icon": "12.0.0-alpha.11",
38
+ "@skyux/indicators": "12.0.0-alpha.11",
39
+ "@skyux/layout": "12.0.0-alpha.11",
40
+ "@skyux/lists": "12.0.0-alpha.11",
41
+ "@skyux/lookup": "12.0.0-alpha.11",
42
+ "@skyux/modals": "12.0.0-alpha.11"
43
43
  },
44
44
  "dependencies": {
45
45
  "tslib": "^2.8.1"