@skyux/lists 7.14.0 → 7.16.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 +1396 -219
- package/esm2020/lib/modules/repeater/repeater-item.component.mjs +13 -11
- package/esm2020/lib/modules/repeater/repeater.component.mjs +7 -4
- package/esm2020/testing/repeater/repeater-item-harness.mjs +54 -3
- package/fesm2015/skyux-lists-testing.mjs +63 -2
- package/fesm2015/skyux-lists-testing.mjs.map +1 -1
- package/fesm2015/skyux-lists.mjs +18 -13
- package/fesm2015/skyux-lists.mjs.map +1 -1
- package/fesm2020/skyux-lists-testing.mjs +53 -2
- package/fesm2020/skyux-lists-testing.mjs.map +1 -1
- package/fesm2020/skyux-lists.mjs +18 -13
- package/fesm2020/skyux-lists.mjs.map +1 -1
- package/lib/modules/repeater/repeater-item.component.d.ts +2 -1
- package/package.json +10 -10
- package/testing/repeater/repeater-item-harness.d.ts +20 -0
|
@@ -103,6 +103,7 @@ export declare class SkyRepeaterItemComponent implements OnDestroy, OnInit, Afte
|
|
|
103
103
|
reorderButtonLabel: string;
|
|
104
104
|
reorderState: string | undefined;
|
|
105
105
|
slideDirection: string | undefined;
|
|
106
|
+
animationDisabled: boolean;
|
|
106
107
|
get repeaterGroupClass(): string;
|
|
107
108
|
grabHandle: ElementRef | undefined;
|
|
108
109
|
itemContentRef: ElementRef | undefined;
|
|
@@ -117,7 +118,7 @@ export declare class SkyRepeaterItemComponent implements OnDestroy, OnInit, Afte
|
|
|
117
118
|
headerClick(): void;
|
|
118
119
|
chevronDirectionChange(direction: string): void;
|
|
119
120
|
onRepeaterItemClick(event: MouseEvent): void;
|
|
120
|
-
updateForExpanded(value: boolean): void;
|
|
121
|
+
updateForExpanded(value: boolean, animate: boolean): void;
|
|
121
122
|
onCheckboxChange(value: SkyCheckboxChange): void;
|
|
122
123
|
onInlineFormClose(inlineFormCloseArgs: SkyInlineFormCloseArgs): void;
|
|
123
124
|
moveToTop(event: Event): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lists",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.16.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"@angular/common": "^14.2.11",
|
|
45
45
|
"@angular/core": "^14.2.11",
|
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
|
47
|
-
"@skyux-sdk/testing": "7.
|
|
48
|
-
"@skyux/animations": "7.
|
|
49
|
-
"@skyux/core": "7.
|
|
50
|
-
"@skyux/forms": "7.
|
|
51
|
-
"@skyux/i18n": "7.
|
|
52
|
-
"@skyux/indicators": "7.
|
|
53
|
-
"@skyux/inline-form": "7.
|
|
54
|
-
"@skyux/popovers": "7.
|
|
55
|
-
"@skyux/theme": "7.
|
|
47
|
+
"@skyux-sdk/testing": "7.16.0",
|
|
48
|
+
"@skyux/animations": "7.16.0",
|
|
49
|
+
"@skyux/core": "7.16.0",
|
|
50
|
+
"@skyux/forms": "7.16.0",
|
|
51
|
+
"@skyux/i18n": "7.16.0",
|
|
52
|
+
"@skyux/indicators": "7.16.0",
|
|
53
|
+
"@skyux/inline-form": "7.16.0",
|
|
54
|
+
"@skyux/popovers": "7.16.0",
|
|
55
|
+
"@skyux/theme": "7.16.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"dragula": "3.7.3",
|
|
@@ -44,4 +44,24 @@ export declare class SkyRepeaterItemHarness extends SkyComponentHarness {
|
|
|
44
44
|
* Gets the text of the repeater item title.
|
|
45
45
|
*/
|
|
46
46
|
getTitleText(): Promise<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Whether the repeater item is collapsible.
|
|
49
|
+
*/
|
|
50
|
+
isCollapsible(): Promise<boolean>;
|
|
51
|
+
/**
|
|
52
|
+
* Whether the repeater item is expanded, or throws an error informing of the lack of collapsibility.
|
|
53
|
+
*/
|
|
54
|
+
isExpanded(): Promise<boolean>;
|
|
55
|
+
/**
|
|
56
|
+
* Expands the repeater item, or does nothing if already expanded.
|
|
57
|
+
*/
|
|
58
|
+
expand(): Promise<void>;
|
|
59
|
+
/**
|
|
60
|
+
* Collapses the repeater item, or does nothing if already collapsed.
|
|
61
|
+
*/
|
|
62
|
+
collapse(): Promise<void>;
|
|
63
|
+
/**
|
|
64
|
+
* Whether the repeater item is reorderable.
|
|
65
|
+
*/
|
|
66
|
+
isReorderable(): Promise<boolean>;
|
|
47
67
|
}
|