angular-slickgrid 8.13.1 → 8.13.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.
- package/README.md +3 -3
- package/app/modules/angular-slickgrid/extensions/slickRowDetailView.d.ts +2 -4
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +3 -1
- package/esm2022/app/modules/angular-slickgrid/extensions/slickRowDetailView.mjs +75 -98
- package/fesm2022/angular-slickgrid.mjs +76 -97
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
[](https://github.com/ghiscoding/Angular-Slickgrid/actions)
|
|
9
9
|
[](https://www.cypress.io/)
|
|
10
|
-
[](https://vitest.dev/)
|
|
11
11
|
[](https://codecov.io/gh/ghiscoding/Angular-Slickgrid)
|
|
12
12
|
|
|
13
13
|
|
|
@@ -100,7 +100,7 @@ npm start
|
|
|
100
100
|
### Like it? ⭐ it
|
|
101
101
|
You like to use **Angular-Slickgrid**? Be sure to upvote ⭐ and perhaps support me with caffeine [☕](https://ko-fi.com/ghiscoding) or GitHub sponsoring and feel free to contribute.
|
|
102
102
|
|
|
103
|
-
<a href='https://ko-fi.com/
|
|
103
|
+
<a href='https://ko-fi.com/ghiscoding' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi3.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
|
104
104
|
|
|
105
105
|
### Contributions
|
|
106
106
|
If you wish to contribute, please make sure to follow the steps shown in the [CONTRIBUTING](https://github.com/ghiscoding/Angular-Slickgrid/blob/master/CONTRIBUTING.md) guide.
|
|
@@ -139,7 +139,7 @@ Angular-Slickgrid uses `ngx-translate` library to support Locales, it is also re
|
|
|
139
139
|
| 8-9 | 12.x |
|
|
140
140
|
| 7 | 11.x |
|
|
141
141
|
|
|
142
|
-
### Tested with [
|
|
142
|
+
### Tested with [Vitest](https://vitest.dev/) (Unit Tests) - [Cypress](https://www.cypress.io/) (E2E Tests)
|
|
143
143
|
Slickgrid-Universal has **100%** Unit Test Coverage and all Angular-Slickgrid Examples are tested with [Cypress](https://www.cypress.io/) as E2E tests.
|
|
144
144
|
|
|
145
145
|
## Troubleshooting Section
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ApplicationRef, ComponentRef, Type, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import type { EventSubscription, OnBeforeRowDetailToggleArgs, OnRowBackToViewportRangeArgs, RxJsFacade,
|
|
2
|
+
import type { EventSubscription, OnBeforeRowDetailToggleArgs, OnRowBackToViewportRangeArgs, RxJsFacade, SlickGrid } from '@slickgrid-universal/common';
|
|
3
3
|
import { SlickEventData, SlickRowSelectionModel } from '@slickgrid-universal/common';
|
|
4
4
|
import type { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
|
|
5
5
|
import { SlickRowDetailView as UniversalSlickRowDetailView } from '@slickgrid-universal/row-detail-view-plugin';
|
|
@@ -28,8 +28,6 @@ export declare class SlickRowDetailView extends UniversalSlickRowDetailView {
|
|
|
28
28
|
constructor(angularUtilService: AngularUtilService, appRef: ApplicationRef, eventPubSubService: EventPubSubService, gridContainerElement: HTMLDivElement, rxjs?: RxJsFacade | undefined);
|
|
29
29
|
get addonOptions(): import("@slickgrid-universal/common").RowDetailViewOption;
|
|
30
30
|
protected get datasetIdPropName(): string;
|
|
31
|
-
get eventHandler(): SlickEventHandler;
|
|
32
|
-
set eventHandler(eventHandler: SlickEventHandler);
|
|
33
31
|
/** Getter for the Grid Options pulled through the Grid Object */
|
|
34
32
|
get gridOptions(): GridOption;
|
|
35
33
|
get rowDetailViewOptions(): RowDetailView | undefined;
|
|
@@ -47,7 +45,7 @@ export declare class SlickRowDetailView extends UniversalSlickRowDetailView {
|
|
|
47
45
|
*/
|
|
48
46
|
register(rowSelectionPlugin?: SlickRowSelectionModel): this;
|
|
49
47
|
/** Redraw (re-render) all the expanded row detail View Components */
|
|
50
|
-
redrawAllViewComponents(): void;
|
|
48
|
+
redrawAllViewComponents(forceRedraw?: boolean): void;
|
|
51
49
|
/** Redraw the necessary View Component */
|
|
52
50
|
redrawViewComponent(createdView: CreatedView): void;
|
|
53
51
|
/** Render (or re-render) the View Component (Row Detail) */
|