@skyux/grids 6.0.0-beta.4 → 6.0.0-beta.7
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/documentation.json +374 -303
- package/esm2020/lib/modules/grid/grid-cell.component.mjs +2 -1
- package/esm2020/lib/modules/grid/grid-column.component.mjs +2 -1
- package/esm2020/lib/modules/grid/grid-column.model.mjs +2 -1
- package/esm2020/lib/modules/grid/grid.component.mjs +13 -5
- package/esm2020/lib/modules/grid/grid.module.mjs +4 -1
- package/esm2020/lib/modules/grid/types/grid-column-alignment.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-column-description-model-change.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-column-heading-model-change.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-column-inline-help-popover-model-change.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-column-width-model-change.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-message-type.mjs +4 -1
- package/esm2020/lib/modules/grid/types/grid-message.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-row-delete-cancel-args.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-row-delete-config.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-row-delete-confirm-args.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-row-delete-contents.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-selected-rows-model-change.mjs +1 -1
- package/esm2020/lib/modules/grid/types/grid-selected-rows-source.mjs +2 -1
- package/esm2020/lib/modules/grid/types/grid-ui-config.mjs +1 -1
- package/fesm2015/skyux-grids.mjs +21 -3
- package/fesm2015/skyux-grids.mjs.map +1 -1
- package/fesm2020/skyux-grids.mjs +21 -3
- package/fesm2020/skyux-grids.mjs.map +1 -1
- package/lib/modules/grid/grid-cell.component.d.ts +1 -0
- package/lib/modules/grid/grid-column.component.d.ts +1 -0
- package/lib/modules/grid/grid-column.model.d.ts +1 -0
- package/lib/modules/grid/grid.component.d.ts +5 -2
- package/lib/modules/grid/grid.module.d.ts +3 -0
- package/lib/modules/grid/types/grid-column-alignment.d.ts +1 -0
- package/lib/modules/grid/types/grid-column-description-model-change.d.ts +1 -0
- package/lib/modules/grid/types/grid-column-heading-model-change.d.ts +1 -0
- package/lib/modules/grid/types/grid-column-inline-help-popover-model-change.d.ts +1 -0
- package/lib/modules/grid/types/grid-column-width-model-change.d.ts +3 -0
- package/lib/modules/grid/types/grid-message-type.d.ts +3 -0
- package/lib/modules/grid/types/grid-message.d.ts +3 -0
- package/lib/modules/grid/types/grid-row-delete-cancel-args.d.ts +1 -0
- package/lib/modules/grid/types/grid-row-delete-config.d.ts +1 -0
- package/lib/modules/grid/types/grid-row-delete-confirm-args.d.ts +1 -0
- package/lib/modules/grid/types/grid-row-delete-contents.d.ts +1 -0
- package/lib/modules/grid/types/grid-selected-rows-model-change.d.ts +3 -0
- package/lib/modules/grid/types/grid-selected-rows-source.d.ts +1 -0
- package/lib/modules/grid/types/grid-ui-config.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { SkyAffixService, SkyAppWindowRef, SkyOverlayService, SkyUIConfigService } from '@skyux/core';
|
|
2
|
+
import { SkyAffixService, SkyAppWindowRef, SkyLogService, SkyOverlayService, SkyUIConfigService } from '@skyux/core';
|
|
3
3
|
import { ListItemModel, ListSortFieldSelectorModel } from '@skyux/list-builder-common';
|
|
4
4
|
import { DragulaService } from 'ng2-dragula';
|
|
5
5
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
@@ -15,6 +15,9 @@ import { SkyGridRowDeleteConfig } from './types/grid-row-delete-config';
|
|
|
15
15
|
import { SkyGridRowDeleteConfirmArgs } from './types/grid-row-delete-confirm-args';
|
|
16
16
|
import { SkyGridSelectedRowsModelChange } from './types/grid-selected-rows-model-change';
|
|
17
17
|
import * as i0 from "@angular/core";
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
20
|
+
*/
|
|
18
21
|
export declare class SkyGridComponent implements OnInit, AfterContentInit, AfterViewInit, OnChanges, OnDestroy {
|
|
19
22
|
private affixService;
|
|
20
23
|
private changeDetector;
|
|
@@ -171,7 +174,7 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
|
|
|
171
174
|
private _columns;
|
|
172
175
|
private _selectedColumnIds;
|
|
173
176
|
private _selectedRowIds;
|
|
174
|
-
constructor(affixService: SkyAffixService, changeDetector: ChangeDetectorRef, dragulaService: DragulaService, gridAdapter: SkyGridAdapterService, overlayService: SkyOverlayService, skyWindow: SkyAppWindowRef, uiConfigService: SkyUIConfigService);
|
|
177
|
+
constructor(affixService: SkyAffixService, changeDetector: ChangeDetectorRef, dragulaService: DragulaService, gridAdapter: SkyGridAdapterService, overlayService: SkyOverlayService, skyWindow: SkyAppWindowRef, uiConfigService: SkyUIConfigService, logger: SkyLogService);
|
|
175
178
|
ngOnInit(): void;
|
|
176
179
|
ngAfterContentInit(): void;
|
|
177
180
|
ngAfterViewInit(): void;
|
|
@@ -11,6 +11,9 @@ import * as i9 from "../shared/sky-grids-resources.module";
|
|
|
11
11
|
import * as i10 from "@skyux/indicators";
|
|
12
12
|
import * as i11 from "@skyux/layout";
|
|
13
13
|
import * as i12 from "@skyux/popovers";
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
16
|
+
*/
|
|
14
17
|
export declare class SkyGridModule {
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyGridModule, never>;
|
|
16
19
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyGridModule, [typeof i1.SkyGridComponent, typeof i2.SkyGridColumnComponent, typeof i3.SkyGridCellComponent], [typeof i4.CommonModule, typeof i5.DragulaModule, typeof i6.FormsModule, typeof i7.SkyAffixModule, typeof i8.SkyCheckboxModule, typeof i9.SkyGridsResourcesModule, typeof i10.SkyHelpInlineModule, typeof i10.SkyIconModule, typeof i11.SkyInlineDeleteModule, typeof i7.SkyOverlayModule, typeof i12.SkyPopoverModule, typeof i10.SkyTextHighlightModule], [typeof i1.SkyGridComponent, typeof i2.SkyGridColumnComponent]>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Represents the horizontal alignment of the column's data and header.
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export declare type SkyGridColumnAlignment = 'left' | 'center' | 'right';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridColumnDescriptionModelChange {
|
|
5
6
|
value?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridColumnHeadingModelChange {
|
|
5
6
|
value?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridColumnInlineHelpPopoverModelChange {
|
|
5
6
|
value?: any;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
|
+
*/
|
|
1
4
|
export interface SkyGridColumnWidthModelChange {
|
|
2
5
|
/**
|
|
3
6
|
* Specifies the id of the column.
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
|
+
*/
|
|
1
4
|
export declare enum SkyGridMessageType {
|
|
2
5
|
/**
|
|
3
6
|
* Selects the multiselect checkboxes for all rows in the grid.
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { SkyGridMessageType } from './grid-message-type';
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
4
|
+
*/
|
|
2
5
|
export interface SkyGridMessage {
|
|
3
6
|
/**
|
|
4
7
|
* Indicates what type of message is being sent.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridRowDeleteCancelArgs {
|
|
5
6
|
id: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridRowDeleteConfig {
|
|
5
6
|
id: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridRowDeleteConfirmArgs {
|
|
5
6
|
id: string;
|
|
@@ -2,6 +2,7 @@ import { SkyAffixer, SkyOverlayInstance } from '@skyux/core';
|
|
|
2
2
|
/**
|
|
3
3
|
* Model for tracking the affixer and overlay of a row delete's inline delete.
|
|
4
4
|
* @internal
|
|
5
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
5
6
|
*/
|
|
6
7
|
export interface SkyGridRowDeleteContents {
|
|
7
8
|
affixer: SkyAffixer;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { SkyGridSelectedRowsSource } from './grid-selected-rows-source';
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
4
|
+
*/
|
|
2
5
|
export interface SkyGridSelectedRowsModelChange {
|
|
3
6
|
/**
|
|
4
7
|
* Indicates the `id`s of the rows that are selected.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export declare enum SkyGridSelectedRowsSource {
|
|
5
6
|
CheckboxChange = 0,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
|
+
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
3
4
|
*/
|
|
4
5
|
export interface SkyGridUIConfig {
|
|
5
6
|
selectedColumnIds?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/grids",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.7",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"@angular/common": "^13.3.2",
|
|
36
36
|
"@angular/core": "^13.3.2",
|
|
37
37
|
"@angular/forms": "^13.3.2",
|
|
38
|
-
"@skyux/core": "6.0.0-beta.
|
|
39
|
-
"@skyux/forms": "6.0.0-beta.
|
|
40
|
-
"@skyux/i18n": "6.0.0-beta.
|
|
41
|
-
"@skyux/indicators": "6.0.0-beta.
|
|
42
|
-
"@skyux/layout": "6.0.0-beta.
|
|
43
|
-
"@skyux/list-builder-common": "6.0.0-beta.
|
|
44
|
-
"@skyux/popovers": "6.0.0-beta.
|
|
38
|
+
"@skyux/core": "6.0.0-beta.7",
|
|
39
|
+
"@skyux/forms": "6.0.0-beta.7",
|
|
40
|
+
"@skyux/i18n": "6.0.0-beta.7",
|
|
41
|
+
"@skyux/indicators": "6.0.0-beta.7",
|
|
42
|
+
"@skyux/layout": "6.0.0-beta.7",
|
|
43
|
+
"@skyux/list-builder-common": "6.0.0-beta.7",
|
|
44
|
+
"@skyux/popovers": "6.0.0-beta.7"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"dragula": "3.7.3",
|