@skyux/grids 10.0.0-alpha.0 → 10.0.0-alpha.2

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.
@@ -30,13 +30,13 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
30
30
  /**
31
31
  * Columns and column properties for the grid.
32
32
  */
33
- set columns(newColumns: Array<SkyGridColumnModel>);
34
- get columns(): Array<SkyGridColumnModel>;
33
+ set columns(newColumns: SkyGridColumnModel[]);
34
+ get columns(): SkyGridColumnModel[];
35
35
  /**
36
36
  * The data for the grid. Each item requires an `id` and a property that maps
37
37
  * to the `field` or `id` property of each column in the grid.
38
38
  */
39
- data: Array<any>;
39
+ data: any[];
40
40
  /**
41
41
  * Whether to enable the multiselect feature to display a column of
42
42
  * checkboxes on the left side of the grid. You can specify a unique ID with
@@ -85,15 +85,15 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
85
85
  * The columns to display in the grid based on the `id` or `field` properties
86
86
  * of the columns. If no columns are specified, then the grid displays all columns.
87
87
  */
88
- set selectedColumnIds(value: Array<string>);
89
- get selectedColumnIds(): Array<string>;
88
+ set selectedColumnIds(value: string[]);
89
+ get selectedColumnIds(): string[];
90
90
  /**
91
91
  * The set of IDs for the rows to select in a multiselect grid.
92
92
  * The IDs match the `id` properties of the `data` objects.
93
93
  * Rows with IDs that are not included are de-selected in the grid.
94
94
  */
95
- set selectedRowIds(value: Array<string>);
96
- get selectedRowIds(): Array<string>;
95
+ set selectedRowIds(value: string[]);
96
+ get selectedRowIds(): string[];
97
97
  /**
98
98
  * The unique key for the UI Config Service to retrieve stored settings from a database.
99
99
  * The UI Config Service saves configuration settings for users and returns
@@ -143,11 +143,11 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
143
143
  sortFieldChange: EventEmitter<ListSortFieldSelectorModel>;
144
144
  columnResizeStep: number;
145
145
  currentSortField: BehaviorSubject<ListSortFieldSelectorModel>;
146
- displayedColumns: Array<SkyGridColumnModel>;
146
+ displayedColumns: SkyGridColumnModel[];
147
147
  dragulaGroupName: string;
148
148
  gridId: number;
149
149
  rowDeleteConfigs: SkyGridRowDeleteConfig[];
150
- items: Array<any>;
150
+ items: any[];
151
151
  maxColWidth: number;
152
152
  minColWidth: number;
153
153
  showResizeBar: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/grids",
3
- "version": "10.0.0-alpha.0",
3
+ "version": "10.0.0-alpha.2",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -30,16 +30,16 @@
30
30
  }
31
31
  },
32
32
  "peerDependencies": {
33
- "@angular/common": "^17.1.0",
34
- "@angular/core": "^17.1.0",
35
- "@angular/forms": "^17.1.0",
36
- "@skyux/core": "10.0.0-alpha.0",
37
- "@skyux/forms": "10.0.0-alpha.0",
38
- "@skyux/i18n": "10.0.0-alpha.0",
39
- "@skyux/indicators": "10.0.0-alpha.0",
40
- "@skyux/layout": "10.0.0-alpha.0",
41
- "@skyux/list-builder-common": "10.0.0-alpha.0",
42
- "@skyux/popovers": "10.0.0-alpha.0"
33
+ "@angular/common": "^17.1.1",
34
+ "@angular/core": "^17.1.1",
35
+ "@angular/forms": "^17.1.1",
36
+ "@skyux/core": "10.0.0-alpha.2",
37
+ "@skyux/forms": "10.0.0-alpha.2",
38
+ "@skyux/i18n": "10.0.0-alpha.2",
39
+ "@skyux/indicators": "10.0.0-alpha.2",
40
+ "@skyux/layout": "10.0.0-alpha.2",
41
+ "@skyux/list-builder-common": "10.0.0-alpha.2",
42
+ "@skyux/popovers": "10.0.0-alpha.2"
43
43
  },
44
44
  "dependencies": {
45
45
  "@types/dragula": "2.1.36",