@skyux/lists 9.25.0 → 9.26.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/documentation.json +662 -583
- package/esm2022/lib/modules/sort/sort-item.component.mjs +7 -4
- package/esm2022/lib/modules/sort/sort.component.mjs +8 -4
- package/fesm2022/skyux-lists.mjs +11 -5
- package/fesm2022/skyux-lists.mjs.map +1 -1
- package/lib/modules/sort/sort-item.component.d.ts +2 -1
- package/lib/modules/sort/sort.component.d.ts +4 -1
- package/package.json +10 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { SkySortService } from './sort.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -13,6 +13,7 @@ export declare class SkySortItemComponent implements OnInit, OnChanges, OnDestro
|
|
|
13
13
|
*/
|
|
14
14
|
itemSelect: EventEmitter<any>;
|
|
15
15
|
isSelected: BehaviorSubject<boolean>;
|
|
16
|
+
itemTemplate?: TemplateRef<any> | null;
|
|
16
17
|
constructor(sortService: SkySortService, detector: ChangeDetectorRef);
|
|
17
18
|
ngOnInit(): void;
|
|
18
19
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
1
2
|
import { SkyContentInfo } from '@skyux/core';
|
|
2
3
|
import { SkyDropdownMessage } from '@skyux/popovers';
|
|
3
4
|
import { Observable, Subject } from 'rxjs';
|
|
5
|
+
import { SkySortItemComponent } from './sort-item.component';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class SkySortComponent {
|
|
6
8
|
#private;
|
|
@@ -18,9 +20,10 @@ export declare class SkySortComponent {
|
|
|
18
20
|
*/
|
|
19
21
|
showButtonText: boolean | undefined;
|
|
20
22
|
dropdownController: Subject<SkyDropdownMessage>;
|
|
23
|
+
sortItems: QueryList<SkySortItemComponent>;
|
|
21
24
|
protected contentInfoObs: Observable<SkyContentInfo> | undefined;
|
|
22
25
|
constructor();
|
|
23
26
|
dropdownClicked(): void;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkySortComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkySortComponent, "sky-sort", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "showButtonText": { "alias": "showButtonText"; "required": false; }; }, {},
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkySortComponent, "sky-sort", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "showButtonText": { "alias": "showButtonText"; "required": false; }; }, {}, ["sortItems"], never, false, never>;
|
|
26
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lists",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.26.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"@angular/common": "^16.2.9",
|
|
41
41
|
"@angular/core": "^16.2.9",
|
|
42
42
|
"@angular/platform-browser": "^16.2.9",
|
|
43
|
-
"@skyux-sdk/testing": "9.
|
|
44
|
-
"@skyux/animations": "9.
|
|
45
|
-
"@skyux/core": "9.
|
|
46
|
-
"@skyux/forms": "9.
|
|
47
|
-
"@skyux/i18n": "9.
|
|
48
|
-
"@skyux/indicators": "9.
|
|
49
|
-
"@skyux/inline-form": "9.
|
|
50
|
-
"@skyux/popovers": "9.
|
|
51
|
-
"@skyux/theme": "9.
|
|
43
|
+
"@skyux-sdk/testing": "9.26.0",
|
|
44
|
+
"@skyux/animations": "9.26.0",
|
|
45
|
+
"@skyux/core": "9.26.0",
|
|
46
|
+
"@skyux/forms": "9.26.0",
|
|
47
|
+
"@skyux/i18n": "9.26.0",
|
|
48
|
+
"@skyux/indicators": "9.26.0",
|
|
49
|
+
"@skyux/inline-form": "9.26.0",
|
|
50
|
+
"@skyux/popovers": "9.26.0",
|
|
51
|
+
"@skyux/theme": "9.26.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@types/dragula": "2.1.36",
|