angular-slickgrid 7.3.1 → 7.4.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 +7 -131
- package/app/modules/angular-slickgrid/extensions/slickRowDetailView.d.ts +2 -2
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +27 -71
- package/esm2022/app/modules/angular-slickgrid/constants.mjs +24 -24
- package/esm2022/app/modules/angular-slickgrid/extensions/slickRowDetailView.mjs +4 -13
- package/esm2022/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +7 -7
- package/esm2022/app/modules/angular-slickgrid/services/angularUtil.service.mjs +5 -6
- package/esm2022/app/modules/angular-slickgrid/services/container.service.mjs +7 -5
- package/esm2022/app/modules/angular-slickgrid/services/translater.service.mjs +5 -5
- package/esm2022/app/modules/angular-slickgrid/slickgrid-config.mjs +1 -2
- package/fesm2022/angular-slickgrid.mjs +67 -123
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +10 -10
|
@@ -6,7 +6,7 @@ import * as i1 from '@ngx-translate/core';
|
|
|
6
6
|
import { TranslateModule } from '@ngx-translate/core';
|
|
7
7
|
import { SlickRowDetailView as SlickRowDetailView$1 } from '@slickgrid-universal/row-detail-view-plugin';
|
|
8
8
|
import { Observable } from 'rxjs';
|
|
9
|
-
import
|
|
9
|
+
import DOMPurify from 'dompurify';
|
|
10
10
|
import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
|
|
11
11
|
import { SlickEmptyWarningComponent } from '@slickgrid-universal/empty-warning-component';
|
|
12
12
|
import { SlickFooterComponent } from '@slickgrid-universal/custom-footer-component';
|
|
@@ -18,7 +18,6 @@ import * as i5 from '@angular/common';
|
|
|
18
18
|
import { CommonModule } from '@angular/common';
|
|
19
19
|
|
|
20
20
|
class AngularUtilService {
|
|
21
|
-
vcr;
|
|
22
21
|
constructor(vcr) {
|
|
23
22
|
this.vcr = vcr;
|
|
24
23
|
}
|
|
@@ -93,15 +92,17 @@ class AngularUtilService {
|
|
|
93
92
|
}
|
|
94
93
|
return componentOutput;
|
|
95
94
|
}
|
|
96
|
-
static
|
|
97
|
-
static
|
|
95
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularUtilService, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
96
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularUtilService }); }
|
|
98
97
|
}
|
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.
|
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularUtilService, decorators: [{
|
|
100
99
|
type: Injectable
|
|
101
100
|
}], ctorParameters: () => [{ type: i0.ViewContainerRef }] });
|
|
102
101
|
|
|
103
102
|
class ContainerService {
|
|
104
|
-
|
|
103
|
+
constructor() {
|
|
104
|
+
this.dependencies = [];
|
|
105
|
+
}
|
|
105
106
|
get(key) {
|
|
106
107
|
const dependency = this.dependencies.find(dep => dep.key === key);
|
|
107
108
|
if (dependency?.instance) {
|
|
@@ -118,10 +119,10 @@ class ContainerService {
|
|
|
118
119
|
this.dependencies.push({ key, instance });
|
|
119
120
|
}
|
|
120
121
|
}
|
|
121
|
-
static
|
|
122
|
-
static
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
123
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ContainerService }); }
|
|
123
124
|
}
|
|
124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ContainerService, decorators: [{
|
|
125
126
|
type: Injectable
|
|
126
127
|
}] });
|
|
127
128
|
|
|
@@ -130,7 +131,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.1", ngImpor
|
|
|
130
131
|
* it must implement Slickgrid-Universal TranslaterService interface to work properly
|
|
131
132
|
*/
|
|
132
133
|
class TranslaterService {
|
|
133
|
-
translateService;
|
|
134
134
|
constructor(translateService) {
|
|
135
135
|
this.translateService = translateService;
|
|
136
136
|
}
|
|
@@ -157,10 +157,10 @@ class TranslaterService {
|
|
|
157
157
|
translate(translationKey) {
|
|
158
158
|
return this.translateService?.instant?.(translationKey || ' ');
|
|
159
159
|
}
|
|
160
|
-
static
|
|
161
|
-
static
|
|
160
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: TranslaterService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
161
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: TranslaterService }); }
|
|
162
162
|
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: TranslaterService, decorators: [{
|
|
164
164
|
type: Injectable
|
|
165
165
|
}], ctorParameters: () => [{ type: i1.TranslateService, decorators: [{
|
|
166
166
|
type: Optional
|
|
@@ -188,17 +188,6 @@ function unsubscribeAllObservables(subscriptions) {
|
|
|
188
188
|
const ROW_DETAIL_CONTAINER_PREFIX = 'container_';
|
|
189
189
|
const PRELOAD_CONTAINER_PREFIX = 'container_loading';
|
|
190
190
|
class SlickRowDetailView extends SlickRowDetailView$1 {
|
|
191
|
-
angularUtilService;
|
|
192
|
-
appRef;
|
|
193
|
-
eventPubSubService;
|
|
194
|
-
gridContainerElement;
|
|
195
|
-
rxjs;
|
|
196
|
-
rowDetailContainer;
|
|
197
|
-
_preloadComponent;
|
|
198
|
-
_views = [];
|
|
199
|
-
_viewComponent;
|
|
200
|
-
_subscriptions = [];
|
|
201
|
-
_userProcessFn;
|
|
202
191
|
constructor(angularUtilService, appRef, eventPubSubService, gridContainerElement, rxjs) {
|
|
203
192
|
super(eventPubSubService);
|
|
204
193
|
this.angularUtilService = angularUtilService;
|
|
@@ -206,6 +195,8 @@ class SlickRowDetailView extends SlickRowDetailView$1 {
|
|
|
206
195
|
this.eventPubSubService = eventPubSubService;
|
|
207
196
|
this.gridContainerElement = gridContainerElement;
|
|
208
197
|
this.rxjs = rxjs;
|
|
198
|
+
this._views = [];
|
|
199
|
+
this._subscriptions = [];
|
|
209
200
|
}
|
|
210
201
|
get addonOptions() {
|
|
211
202
|
return this.getOptions();
|
|
@@ -733,7 +724,6 @@ function pickerHeaderColumnValueExtractor(column) {
|
|
|
733
724
|
}
|
|
734
725
|
|
|
735
726
|
class SlickgridConfig {
|
|
736
|
-
options;
|
|
737
727
|
constructor() {
|
|
738
728
|
this.options = GlobalGridOptions;
|
|
739
729
|
}
|
|
@@ -741,7 +731,7 @@ class SlickgridConfig {
|
|
|
741
731
|
|
|
742
732
|
class Constants {
|
|
743
733
|
// English Locale texts when using only 1 Locale instead of I18N
|
|
744
|
-
static locales = {
|
|
734
|
+
static { this.locales = {
|
|
745
735
|
TEXT_ALL_SELECTED: 'All Selected',
|
|
746
736
|
TEXT_ALL_X_RECORDS_SELECTED: 'All {{x}} records selected',
|
|
747
737
|
TEXT_APPLY_MASS_UPDATE: 'Apply Mass Update',
|
|
@@ -804,97 +794,37 @@ class Constants {
|
|
|
804
794
|
TEXT_TOGGLE_PRE_HEADER_ROW: 'Toggle Pre-Header Row',
|
|
805
795
|
TEXT_X_OF_Y_SELECTED: '# of % selected',
|
|
806
796
|
TEXT_X_OF_Y_MASS_SELECTED: '{{x}} of {{y}} selected',
|
|
807
|
-
};
|
|
808
|
-
static treeDataProperties = {
|
|
797
|
+
}; }
|
|
798
|
+
static { this.treeDataProperties = {
|
|
809
799
|
CHILDREN_PROP: 'children',
|
|
810
800
|
COLLAPSED_PROP: '__collapsed',
|
|
811
801
|
HAS_CHILDREN_PROP: '__hasChildren',
|
|
812
802
|
TREE_LEVEL_PROP: '__treeLevel',
|
|
813
803
|
PARENT_PROP: '__parentId',
|
|
814
|
-
};
|
|
804
|
+
}; }
|
|
815
805
|
// some Validation default texts
|
|
816
|
-
static VALIDATION_REQUIRED_FIELD = 'Field is required';
|
|
817
|
-
static VALIDATION_EDITOR_VALID_NUMBER = 'Please enter a valid number';
|
|
818
|
-
static VALIDATION_EDITOR_VALID_INTEGER = 'Please enter a valid integer number';
|
|
819
|
-
static VALIDATION_EDITOR_INTEGER_BETWEEN = 'Please enter a valid integer number between {{minValue}} and {{maxValue}}';
|
|
820
|
-
static VALIDATION_EDITOR_INTEGER_MAX = 'Please enter a valid integer number that is lower than {{maxValue}}';
|
|
821
|
-
static VALIDATION_EDITOR_INTEGER_MAX_INCLUSIVE = 'Please enter a valid integer number that is lower than or equal to {{maxValue}}';
|
|
822
|
-
static VALIDATION_EDITOR_INTEGER_MIN = 'Please enter a valid integer number that is greater than {{minValue}}';
|
|
823
|
-
static VALIDATION_EDITOR_INTEGER_MIN_INCLUSIVE = 'Please enter a valid integer number that is greater than or equal to {{minValue}}';
|
|
824
|
-
static VALIDATION_EDITOR_NUMBER_BETWEEN = 'Please enter a valid number between {{minValue}} and {{maxValue}}';
|
|
825
|
-
static VALIDATION_EDITOR_NUMBER_MAX = 'Please enter a valid number that is lower than {{maxValue}}';
|
|
826
|
-
static VALIDATION_EDITOR_NUMBER_MAX_INCLUSIVE = 'Please enter a valid number that is lower than or equal to {{maxValue}}';
|
|
827
|
-
static VALIDATION_EDITOR_NUMBER_MIN = 'Please enter a valid number that is greater than {{minValue}}';
|
|
828
|
-
static VALIDATION_EDITOR_NUMBER_MIN_INCLUSIVE = 'Please enter a valid number that is greater than or equal to {{minValue}}';
|
|
829
|
-
static VALIDATION_EDITOR_DECIMAL_BETWEEN = 'Please enter a valid number with a maximum of {{maxDecimal}} decimals';
|
|
830
|
-
static VALIDATION_EDITOR_TEXT_LENGTH_BETWEEN = 'Please make sure your text length is between {{minLength}} and {{maxLength}} characters';
|
|
831
|
-
static VALIDATION_EDITOR_TEXT_MAX_LENGTH = 'Please make sure your text is less than {{maxLength}} characters';
|
|
832
|
-
static VALIDATION_EDITOR_TEXT_MAX_LENGTH_INCLUSIVE = 'Please make sure your text is less than or equal to {{maxLength}} characters';
|
|
833
|
-
static VALIDATION_EDITOR_TEXT_MIN_LENGTH = 'Please make sure your text is more than {{minLength}} character(s)';
|
|
834
|
-
static VALIDATION_EDITOR_TEXT_MIN_LENGTH_INCLUSIVE = 'Please make sure your text is at least {{minLength}} character(s)';
|
|
806
|
+
static { this.VALIDATION_REQUIRED_FIELD = 'Field is required'; }
|
|
807
|
+
static { this.VALIDATION_EDITOR_VALID_NUMBER = 'Please enter a valid number'; }
|
|
808
|
+
static { this.VALIDATION_EDITOR_VALID_INTEGER = 'Please enter a valid integer number'; }
|
|
809
|
+
static { this.VALIDATION_EDITOR_INTEGER_BETWEEN = 'Please enter a valid integer number between {{minValue}} and {{maxValue}}'; }
|
|
810
|
+
static { this.VALIDATION_EDITOR_INTEGER_MAX = 'Please enter a valid integer number that is lower than {{maxValue}}'; }
|
|
811
|
+
static { this.VALIDATION_EDITOR_INTEGER_MAX_INCLUSIVE = 'Please enter a valid integer number that is lower than or equal to {{maxValue}}'; }
|
|
812
|
+
static { this.VALIDATION_EDITOR_INTEGER_MIN = 'Please enter a valid integer number that is greater than {{minValue}}'; }
|
|
813
|
+
static { this.VALIDATION_EDITOR_INTEGER_MIN_INCLUSIVE = 'Please enter a valid integer number that is greater than or equal to {{minValue}}'; }
|
|
814
|
+
static { this.VALIDATION_EDITOR_NUMBER_BETWEEN = 'Please enter a valid number between {{minValue}} and {{maxValue}}'; }
|
|
815
|
+
static { this.VALIDATION_EDITOR_NUMBER_MAX = 'Please enter a valid number that is lower than {{maxValue}}'; }
|
|
816
|
+
static { this.VALIDATION_EDITOR_NUMBER_MAX_INCLUSIVE = 'Please enter a valid number that is lower than or equal to {{maxValue}}'; }
|
|
817
|
+
static { this.VALIDATION_EDITOR_NUMBER_MIN = 'Please enter a valid number that is greater than {{minValue}}'; }
|
|
818
|
+
static { this.VALIDATION_EDITOR_NUMBER_MIN_INCLUSIVE = 'Please enter a valid number that is greater than or equal to {{minValue}}'; }
|
|
819
|
+
static { this.VALIDATION_EDITOR_DECIMAL_BETWEEN = 'Please enter a valid number with a maximum of {{maxDecimal}} decimals'; }
|
|
820
|
+
static { this.VALIDATION_EDITOR_TEXT_LENGTH_BETWEEN = 'Please make sure your text length is between {{minLength}} and {{maxLength}} characters'; }
|
|
821
|
+
static { this.VALIDATION_EDITOR_TEXT_MAX_LENGTH = 'Please make sure your text is less than {{maxLength}} characters'; }
|
|
822
|
+
static { this.VALIDATION_EDITOR_TEXT_MAX_LENGTH_INCLUSIVE = 'Please make sure your text is less than or equal to {{maxLength}} characters'; }
|
|
823
|
+
static { this.VALIDATION_EDITOR_TEXT_MIN_LENGTH = 'Please make sure your text is more than {{minLength}} character(s)'; }
|
|
824
|
+
static { this.VALIDATION_EDITOR_TEXT_MIN_LENGTH_INCLUSIVE = 'Please make sure your text is at least {{minLength}} character(s)'; }
|
|
835
825
|
}
|
|
836
826
|
|
|
837
827
|
class AngularSlickgridComponent {
|
|
838
|
-
angularUtilService;
|
|
839
|
-
appRef;
|
|
840
|
-
cd;
|
|
841
|
-
containerService;
|
|
842
|
-
elm;
|
|
843
|
-
translate;
|
|
844
|
-
translaterService;
|
|
845
|
-
forRootConfig;
|
|
846
|
-
_dataset;
|
|
847
|
-
_columnDefinitions;
|
|
848
|
-
_currentDatasetLength = 0;
|
|
849
|
-
_eventHandler = new SlickEventHandler();
|
|
850
|
-
_eventPubSubService;
|
|
851
|
-
_angularGridInstances;
|
|
852
|
-
_hideHeaderRowAfterPageLoad = false;
|
|
853
|
-
_isAutosizeColsCalled = false;
|
|
854
|
-
_isGridInitialized = false;
|
|
855
|
-
_isDatasetInitialized = false;
|
|
856
|
-
_isDatasetHierarchicalInitialized = false;
|
|
857
|
-
_isPaginationInitialized = false;
|
|
858
|
-
_isLocalGrid = true;
|
|
859
|
-
_paginationOptions;
|
|
860
|
-
_registeredResources = [];
|
|
861
|
-
dataView;
|
|
862
|
-
slickGrid;
|
|
863
|
-
groupingDefinition = {};
|
|
864
|
-
groupItemMetadataProvider;
|
|
865
|
-
backendServiceApi;
|
|
866
|
-
locales;
|
|
867
|
-
metrics;
|
|
868
|
-
showPagination = false;
|
|
869
|
-
serviceList = [];
|
|
870
|
-
totalItems = 0;
|
|
871
|
-
paginationData;
|
|
872
|
-
subscriptions = [];
|
|
873
|
-
// components / plugins
|
|
874
|
-
slickEmptyWarning;
|
|
875
|
-
slickFooter;
|
|
876
|
-
slickPagination;
|
|
877
|
-
slickRowDetailView;
|
|
878
|
-
// services
|
|
879
|
-
backendUtilityService;
|
|
880
|
-
collectionService;
|
|
881
|
-
extensionService;
|
|
882
|
-
extensionUtility;
|
|
883
|
-
filterFactory;
|
|
884
|
-
filterService;
|
|
885
|
-
gridEventService;
|
|
886
|
-
gridService;
|
|
887
|
-
gridStateService;
|
|
888
|
-
groupingService;
|
|
889
|
-
paginationService;
|
|
890
|
-
resizerService;
|
|
891
|
-
rxjs;
|
|
892
|
-
sharedService;
|
|
893
|
-
sortService;
|
|
894
|
-
treeDataService;
|
|
895
|
-
customDataView;
|
|
896
|
-
gridId = '';
|
|
897
|
-
gridOptions;
|
|
898
828
|
get paginationOptions() {
|
|
899
829
|
return this._paginationOptions;
|
|
900
830
|
}
|
|
@@ -920,9 +850,6 @@ class AngularSlickgridComponent {
|
|
|
920
850
|
get columnDefinitions() {
|
|
921
851
|
return this._columnDefinitions;
|
|
922
852
|
}
|
|
923
|
-
// make the columnDefinitions a 2-way binding so that plugin adding cols
|
|
924
|
-
// are synched on user's side as well (RowMove, RowDetail, RowSelections)
|
|
925
|
-
columnDefinitionsChange = new EventEmitter(true);
|
|
926
853
|
get dataset() {
|
|
927
854
|
return (this.customDataView ? this.slickGrid?.getData?.() : this.dataView?.getItems()) || [];
|
|
928
855
|
}
|
|
@@ -992,8 +919,6 @@ class AngularSlickgridComponent {
|
|
|
992
919
|
get registeredResources() {
|
|
993
920
|
return this._registeredResources;
|
|
994
921
|
}
|
|
995
|
-
slickgridHeader;
|
|
996
|
-
slickgridFooter;
|
|
997
922
|
constructor(angularUtilService, appRef, cd, containerService, elm, translate, translaterService, forRootConfig, externalServices) {
|
|
998
923
|
this.angularUtilService = angularUtilService;
|
|
999
924
|
this.appRef = appRef;
|
|
@@ -1003,6 +928,25 @@ class AngularSlickgridComponent {
|
|
|
1003
928
|
this.translate = translate;
|
|
1004
929
|
this.translaterService = translaterService;
|
|
1005
930
|
this.forRootConfig = forRootConfig;
|
|
931
|
+
this._currentDatasetLength = 0;
|
|
932
|
+
this._eventHandler = new SlickEventHandler();
|
|
933
|
+
this._hideHeaderRowAfterPageLoad = false;
|
|
934
|
+
this._isAutosizeColsCalled = false;
|
|
935
|
+
this._isGridInitialized = false;
|
|
936
|
+
this._isDatasetInitialized = false;
|
|
937
|
+
this._isDatasetHierarchicalInitialized = false;
|
|
938
|
+
this._isPaginationInitialized = false;
|
|
939
|
+
this._isLocalGrid = true;
|
|
940
|
+
this._registeredResources = [];
|
|
941
|
+
this.groupingDefinition = {};
|
|
942
|
+
this.showPagination = false;
|
|
943
|
+
this.serviceList = [];
|
|
944
|
+
this.totalItems = 0;
|
|
945
|
+
this.subscriptions = [];
|
|
946
|
+
this.gridId = '';
|
|
947
|
+
// make the columnDefinitions a 2-way binding so that plugin adding cols
|
|
948
|
+
// are synched on user's side as well (RowMove, RowDetail, RowSelections)
|
|
949
|
+
this.columnDefinitionsChange = new EventEmitter(true);
|
|
1006
950
|
const slickgridConfig = new SlickgridConfig$1();
|
|
1007
951
|
// initialize and assign all Service Dependencies
|
|
1008
952
|
this._eventPubSubService = externalServices?.eventPubSubService ?? new EventPubSubService(this.elm.nativeElement);
|
|
@@ -1996,15 +1940,15 @@ class AngularSlickgridComponent {
|
|
|
1996
1940
|
currentEditor.renderDomElement(newCollection);
|
|
1997
1941
|
}
|
|
1998
1942
|
}
|
|
1999
|
-
static
|
|
2000
|
-
static
|
|
1943
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridComponent, deps: [{ token: AngularUtilService }, { token: i0.ApplicationRef }, { token: i0.ChangeDetectorRef }, { token: ContainerService }, { token: i0.ElementRef }, { token: i1.TranslateService, optional: true }, { token: TranslaterService, optional: true }, { token: 'config' }, { token: 'externalService' }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1944
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: AngularSlickgridComponent, selector: "angular-slickgrid", inputs: { customDataView: "customDataView", gridId: "gridId", gridOptions: "gridOptions", paginationOptions: "paginationOptions", columnDefinitions: "columnDefinitions", dataset: "dataset", datasetHierarchical: "datasetHierarchical" }, outputs: { columnDefinitionsChange: "columnDefinitionsChange" }, providers: [
|
|
2001
1945
|
// make everything transient (non-singleton)
|
|
2002
1946
|
AngularUtilService,
|
|
2003
1947
|
ApplicationRef,
|
|
2004
1948
|
TranslaterService,
|
|
2005
|
-
], queries: [{ propertyName: "slickgridHeader", first: true, predicate: ["slickgridHeader"], descendants: true, static: true }, { propertyName: "slickgridFooter", first: true, predicate: ["slickgridFooter"], descendants: true, static: true }], ngImport: i0, template: "<div id=\"slickGridContainer-{{gridId}}\" class=\"gridPane\">\n <ng-container *ngTemplateOutlet=\"slickgridHeader\"></ng-container>\n <div attr.id='{{gridId}}' class=\"slickgrid-container\" style=\"width: 100%\">\n </div>\n <ng-container *ngTemplateOutlet=\"slickgridFooter\"></ng-container>\n</div>", dependencies: [{ kind: "directive", type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
1949
|
+
], queries: [{ propertyName: "slickgridHeader", first: true, predicate: ["slickgridHeader"], descendants: true, static: true }, { propertyName: "slickgridFooter", first: true, predicate: ["slickgridFooter"], descendants: true, static: true }], ngImport: i0, template: "<div id=\"slickGridContainer-{{gridId}}\" class=\"gridPane\">\n <ng-container *ngTemplateOutlet=\"slickgridHeader\"></ng-container>\n <div attr.id='{{gridId}}' class=\"slickgrid-container\" style=\"width: 100%\">\n </div>\n <ng-container *ngTemplateOutlet=\"slickgridFooter\"></ng-container>\n</div>", dependencies: [{ kind: "directive", type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], preserveWhitespaces: true }); }
|
|
2006
1950
|
}
|
|
2007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.
|
|
1951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridComponent, decorators: [{
|
|
2008
1952
|
type: Component,
|
|
2009
1953
|
args: [{ selector: 'angular-slickgrid', providers: [
|
|
2010
1954
|
// make everything transient (non-singleton)
|
|
@@ -2058,13 +2002,13 @@ class AngularSlickgridModule {
|
|
|
2058
2002
|
]
|
|
2059
2003
|
};
|
|
2060
2004
|
}
|
|
2061
|
-
static
|
|
2062
|
-
static
|
|
2063
|
-
TranslateModule], exports: [AngularSlickgridComponent] });
|
|
2064
|
-
static
|
|
2065
|
-
TranslateModule] });
|
|
2005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2006
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridModule, declarations: [AngularSlickgridComponent], imports: [CommonModule,
|
|
2007
|
+
TranslateModule], exports: [AngularSlickgridComponent] }); }
|
|
2008
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridModule, imports: [CommonModule,
|
|
2009
|
+
TranslateModule] }); }
|
|
2066
2010
|
}
|
|
2067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.
|
|
2011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AngularSlickgridModule, decorators: [{
|
|
2068
2012
|
type: NgModule,
|
|
2069
2013
|
args: [{
|
|
2070
2014
|
imports: [
|