@skyux/data-manager 13.5.2 → 13.6.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/fesm2022/skyux-data-manager.mjs +106 -5
- package/fesm2022/skyux-data-manager.mjs.map +1 -1
- package/index.d.ts +27 -3
- package/package.json +10 -10
package/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { SkyCheckboxChange } from '@skyux/forms';
|
|
|
6
6
|
import * as i1 from '@skyux/core';
|
|
7
7
|
import { SkyUIConfigService } from '@skyux/core';
|
|
8
8
|
import * as i2 from '@skyux/indicators';
|
|
9
|
+
import { SkyFilterStateService, SkyFilterState } from '@skyux/lists';
|
|
9
10
|
import { SkyModalInstance } from '@skyux/modals';
|
|
10
11
|
|
|
11
12
|
interface SkyDataManagerFilterData {
|
|
@@ -61,6 +62,16 @@ declare class SkyDataManagerComponent implements OnDestroy, OnInit {
|
|
|
61
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDataManagerComponent, "sky-data-manager", never, { "dock": { "alias": "dock"; "required": false; "isSignal": true; }; }, {}, never, ["sky-data-manager-toolbar", "*"], true, never>;
|
|
62
63
|
}
|
|
63
64
|
|
|
65
|
+
/**
|
|
66
|
+
* A directive applied to a filtering component that enables integration with a data manager.
|
|
67
|
+
*/
|
|
68
|
+
declare class SkyDataManagerFilterControllerDirective implements OnInit {
|
|
69
|
+
#private;
|
|
70
|
+
ngOnInit(): void;
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDataManagerFilterControllerDirective, never>;
|
|
72
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SkyDataManagerFilterControllerDirective, "[skyDataManagerFilterController]", never, {}, {}, never, never, true, never>;
|
|
73
|
+
}
|
|
74
|
+
|
|
64
75
|
interface SkyDataManagerSortOption {
|
|
65
76
|
/**
|
|
66
77
|
* Whether to apply the sort in descending order.
|
|
@@ -431,7 +442,7 @@ declare class SkyDataManagerToolbarComponent implements OnDestroy, OnInit {
|
|
|
431
442
|
clearAll(): void;
|
|
432
443
|
onOnlyShowSelected(event: SkyCheckboxChange): void;
|
|
433
444
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDataManagerToolbarComponent, never>;
|
|
434
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDataManagerToolbarComponent, "sky-data-manager-toolbar", never, {}, {}, never, ["sky-data-manager-toolbar-primary-item", "sky-data-manager-toolbar-left-item", "sky-data-manager-toolbar-right-item", "sky-data-manager-toolbar-section"], true, never>;
|
|
445
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDataManagerToolbarComponent, "sky-data-manager-toolbar", never, {}, {}, never, ["sky-data-manager-toolbar-primary-item", "sky-data-manager-toolbar-left-item", "sky-data-manager-toolbar-right-item", "sky-data-manager-toolbar-section", "sky-filter-bar", "sky-list-summary"], true, never>;
|
|
435
446
|
}
|
|
436
447
|
|
|
437
448
|
/**
|
|
@@ -500,7 +511,7 @@ declare class SkyDataViewComponent implements OnDestroy, OnInit {
|
|
|
500
511
|
|
|
501
512
|
declare class SkyDataManagerModule {
|
|
502
513
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDataManagerModule, never>;
|
|
503
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDataManagerModule, never, [typeof SkyDataManagerComponent, typeof SkyDataManagerToolbarComponent, typeof SkyDataManagerToolbarLeftItemComponent, typeof SkyDataManagerToolbarPrimaryItemComponent, typeof SkyDataManagerToolbarRightItemComponent, typeof SkyDataManagerToolbarSectionComponent, typeof SkyDataViewComponent], [typeof SkyDataManagerComponent, typeof SkyDataManagerToolbarComponent, typeof SkyDataManagerToolbarLeftItemComponent, typeof SkyDataManagerToolbarPrimaryItemComponent, typeof SkyDataManagerToolbarRightItemComponent, typeof SkyDataManagerToolbarSectionComponent, typeof SkyDataViewComponent]>;
|
|
514
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDataManagerModule, never, [typeof SkyDataManagerComponent, typeof SkyDataManagerFilterControllerDirective, typeof SkyDataManagerToolbarComponent, typeof SkyDataManagerToolbarLeftItemComponent, typeof SkyDataManagerToolbarPrimaryItemComponent, typeof SkyDataManagerToolbarRightItemComponent, typeof SkyDataManagerToolbarSectionComponent, typeof SkyDataViewComponent], [typeof SkyDataManagerComponent, typeof SkyDataManagerFilterControllerDirective, typeof SkyDataManagerToolbarComponent, typeof SkyDataManagerToolbarLeftItemComponent, typeof SkyDataManagerToolbarPrimaryItemComponent, typeof SkyDataManagerToolbarRightItemComponent, typeof SkyDataManagerToolbarSectionComponent, typeof SkyDataViewComponent]>;
|
|
504
515
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyDataManagerModule>;
|
|
505
516
|
}
|
|
506
517
|
|
|
@@ -666,6 +677,19 @@ declare class SkyDataManagerService implements OnDestroy {
|
|
|
666
677
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyDataManagerService>;
|
|
667
678
|
}
|
|
668
679
|
|
|
680
|
+
/**
|
|
681
|
+
* Concrete implementation of SkyFilterStateService that manages filter state
|
|
682
|
+
* for integration between list components and data managers.
|
|
683
|
+
* @internal
|
|
684
|
+
*/
|
|
685
|
+
declare class SkyDataManagerFilterStateService implements SkyFilterStateService {
|
|
686
|
+
#private;
|
|
687
|
+
updateFilterState(data: SkyFilterState, sourceId: string): void;
|
|
688
|
+
getFilterStateUpdates(sourceId: string): Observable<SkyFilterState>;
|
|
689
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDataManagerFilterStateService, never>;
|
|
690
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkyDataManagerFilterStateService>;
|
|
691
|
+
}
|
|
692
|
+
|
|
669
693
|
declare class SkyDataManagerColumnPickerContext {
|
|
670
694
|
columnOptions: SkyDataManagerColumnPickerOption[];
|
|
671
695
|
displayedColumnIds: string[];
|
|
@@ -707,5 +731,5 @@ declare class SkyDataManagerColumnPickerComponent implements OnDestroy, OnInit {
|
|
|
707
731
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDataManagerColumnPickerComponent, "sky-data-manager-column-picker", never, {}, {}, never, never, true, never>;
|
|
708
732
|
}
|
|
709
733
|
|
|
710
|
-
export { SkyDataManagerColumnPickerSortStrategy, SkyDataManagerFilterModalContext, SkyDataManagerModule, SkyDataManagerService, SkyDataManagerState, SkyDataViewState, SkyDataManagerColumnPickerComponent as λ1, SkyDataManagerComponent as λ2, SkyDataManagerToolbarLeftItemComponent as λ3, SkyDataManagerToolbarPrimaryItemComponent as λ4, SkyDataManagerToolbarRightItemComponent as λ5, SkyDataManagerToolbarSectionComponent as λ6, SkyDataManagerToolbarComponent as λ7, SkyDataViewComponent as λ8 };
|
|
734
|
+
export { SkyDataManagerColumnPickerSortStrategy, SkyDataManagerFilterModalContext, SkyDataManagerFilterStateService, SkyDataManagerModule, SkyDataManagerService, SkyDataManagerState, SkyDataViewState, SkyDataManagerColumnPickerComponent as λ1, SkyDataManagerComponent as λ2, SkyDataManagerToolbarLeftItemComponent as λ3, SkyDataManagerToolbarPrimaryItemComponent as λ4, SkyDataManagerToolbarRightItemComponent as λ5, SkyDataManagerToolbarSectionComponent as λ6, SkyDataManagerToolbarComponent as λ7, SkyDataViewComponent as λ8, SkyDataManagerFilterControllerDirective as λ9 };
|
|
711
735
|
export type { SkyDataManagerColumnPickerOption, SkyDataManagerConfig, SkyDataManagerDockType, SkyDataManagerFilterData, SkyDataManagerInitArgs, SkyDataManagerSortOption, SkyDataManagerStateOptions, SkyDataManagerStateUpdateFilterArgs, SkyDataManagerSummary, SkyDataViewColumnWidths, SkyDataViewConfig, SkyDataViewStateOptions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/data-manager",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.6.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"@angular/common": "^20.3.0",
|
|
21
21
|
"@angular/core": "^20.3.0",
|
|
22
22
|
"@angular/forms": "^20.3.0",
|
|
23
|
-
"@skyux/core": "13.
|
|
24
|
-
"@skyux/forms": "13.
|
|
25
|
-
"@skyux/i18n": "13.
|
|
26
|
-
"@skyux/icon": "13.
|
|
27
|
-
"@skyux/indicators": "13.
|
|
28
|
-
"@skyux/layout": "13.
|
|
29
|
-
"@skyux/lists": "13.
|
|
30
|
-
"@skyux/lookup": "13.
|
|
31
|
-
"@skyux/modals": "13.
|
|
23
|
+
"@skyux/core": "13.6.0",
|
|
24
|
+
"@skyux/forms": "13.6.0",
|
|
25
|
+
"@skyux/i18n": "13.6.0",
|
|
26
|
+
"@skyux/icon": "13.6.0",
|
|
27
|
+
"@skyux/indicators": "13.6.0",
|
|
28
|
+
"@skyux/layout": "13.6.0",
|
|
29
|
+
"@skyux/lists": "13.6.0",
|
|
30
|
+
"@skyux/lookup": "13.6.0",
|
|
31
|
+
"@skyux/modals": "13.6.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.8.1"
|