slickgrid-vue 1.0.2 → 1.1.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/README.md +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +255 -242
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/components/SlickgridVue.vue +8 -3
- package/src/extensions/slickRowDetailView.ts +105 -92
- package/src/global-grid-options.ts +0 -1
package/README.md
CHANGED
|
@@ -88,4 +88,4 @@ Slickgrid-Universal has **100%** Unit Test Coverage and all Slickgrid-Vue Exampl
|
|
|
88
88
|
### Like it? ⭐ it
|
|
89
89
|
You like **Slickgrid-Vue**? Be sure to upvote ⭐, and perhaps support me with caffeine [☕](https://ko-fi.com/ghiscoding) or sponsor me on GitHub and feel free to contribute at any time. Thanks
|
|
90
90
|
|
|
91
|
-
<a href='https://ko-fi.com/
|
|
91
|
+
<a href='https://ko-fi.com/N4N679OT' 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>
|
package/dist/index.d.ts
CHANGED
|
@@ -663,6 +663,7 @@ export declare class SlickRowDetailView extends SlickRowDetailView_2 {
|
|
|
663
663
|
private readonly eventPubSubService;
|
|
664
664
|
protected _component?: any;
|
|
665
665
|
protected _preloadComponent?: any;
|
|
666
|
+
protected _preloadApp?: App<Element>;
|
|
666
667
|
protected _views: CreatedView[];
|
|
667
668
|
protected _subscriptions: EventSubscription[];
|
|
668
669
|
protected _userProcessFn?: (item: any) => Promise<any>;
|
|
@@ -678,6 +679,7 @@ export declare class SlickRowDetailView extends SlickRowDetailView_2 {
|
|
|
678
679
|
dispose(): void;
|
|
679
680
|
/** Dispose of all the opened Row Detail Panels Components */
|
|
680
681
|
disposeAllViewComponents(): void;
|
|
682
|
+
disposeView(item: any, removeFromArray?: boolean): void;
|
|
681
683
|
/** Get the instance of the SlickGrid addon (control or plugin). */
|
|
682
684
|
getAddonInstance(): SlickRowDetailView | null;
|
|
683
685
|
init(grid: SlickGrid): void;
|