ids-enterprise-ng 21.0.3-patch.7 → 21.0.3-patch.8.1
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.
|
@@ -8167,6 +8167,36 @@ class SohoDataGridComponent {
|
|
|
8167
8167
|
// options.
|
|
8168
8168
|
return this._gridOptions.disableClientSort;
|
|
8169
8169
|
}
|
|
8170
|
+
set allowTriStateSort(allowTriStateSort) {
|
|
8171
|
+
this._gridOptions.allowTriStateSort = allowTriStateSort;
|
|
8172
|
+
if (this.datagrid) {
|
|
8173
|
+
this.datagrid.settings.allowTriStateSort = allowTriStateSort;
|
|
8174
|
+
}
|
|
8175
|
+
}
|
|
8176
|
+
get allowTriStateSort() {
|
|
8177
|
+
if (this.datagrid) {
|
|
8178
|
+
return this.datagrid.settings.allowTriStateSort;
|
|
8179
|
+
}
|
|
8180
|
+
// ... we've been called before the component has completed
|
|
8181
|
+
// initialisation, so return the current value from the
|
|
8182
|
+
// options.
|
|
8183
|
+
return this._gridOptions.allowTriStateSort;
|
|
8184
|
+
}
|
|
8185
|
+
set useLocaleSort(useLocaleSort) {
|
|
8186
|
+
this._gridOptions.useLocaleSort = useLocaleSort;
|
|
8187
|
+
if (this.datagrid) {
|
|
8188
|
+
this.datagrid.settings.useLocaleSort = useLocaleSort;
|
|
8189
|
+
}
|
|
8190
|
+
}
|
|
8191
|
+
get useLocaleSort() {
|
|
8192
|
+
if (this.datagrid) {
|
|
8193
|
+
return this.datagrid.settings.useLocaleSort;
|
|
8194
|
+
}
|
|
8195
|
+
// ... we've been called before the component has completed
|
|
8196
|
+
// initialisation, so return the current value from the
|
|
8197
|
+
// options.
|
|
8198
|
+
return this._gridOptions.useLocaleSort;
|
|
8199
|
+
}
|
|
8170
8200
|
set disableClientFilter(disableClientFilter) {
|
|
8171
8201
|
this._gridOptions.disableClientFilter = disableClientFilter;
|
|
8172
8202
|
if (this.datagrid) {
|
|
@@ -10771,7 +10801,7 @@ class SohoDataGridComponent {
|
|
|
10771
10801
|
}
|
|
10772
10802
|
}
|
|
10773
10803
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoDataGridComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }, { token: SohoDataGridService, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10774
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: SohoDataGridComponent, isStandalone: false, selector: "[soho-datagrid]", inputs: { gridOptions: "gridOptions", idProperty: "idProperty", ellipsisWithIcon: "ellipsisWithIcon", ariaLabel: "ariaLabel", frozenColumns: "frozenColumns", cellNavigation: "cellNavigation", rowNavigation: "rowNavigation", alternateRowShading: "alternateRowShading", dataset: "dataset", columnReorder: "columnReorder", disableClientSort: "disableClientSort", disableClientFilter: "disableClientFilter", resultsText: "resultsText", showFilterTotal: "showFilterTotal", editable: "editable", isRowDisabled: "isRowDisabled", allowOneExpandedRow: "allowOneExpandedRow", rowTemplate: "rowTemplate", rowTemplateComponent: "rowTemplateComponent", rowTemplateComponentInputs: "rowTemplateComponentInputs", rowTemplateField: "rowTemplateField", selectOnEdit: "selectOnEdit", isList: "isList", menuId: "menuId", menuBeforeOpen: "menuBeforeOpen", rowHeight: "rowHeight", fixedRowHeight: "fixedRowHeight", selectable: "selectable", showSelectAllCheckBox: "showSelectAllCheckBox", clickToSelect: "clickToSelect", toolbar: "toolbar", initializeToolbar: "initializeToolbar", saveUserSettings: "saveUserSettings", paging: "paging", pagesize: "pagesize", pagesizes: "pagesizes", indeterminate: "indeterminate", actionableMode: "actionableMode", saveColumns: "saveColumns", source: "source", filterable: "filterable", filterWhenTyping: "filterWhenTyping", treeGrid: "treeGrid", uniqueId: "uniqueId", rowReorder: "rowReorder", showDirty: "showDirty", addCellLayoutClass: "addCellLayoutClass", resizeMode: "resizeMode", headerBackgroundColor: "headerBackgroundColor", headerMenuId: "headerMenuId", headerMenuSelected: "headerMenuSelected", headerMenuBeforeOpen: "headerMenuBeforeOpen", disableRowDeactivation: "disableRowDeactivation", disableRowDeselection: "disableRowDeselection", userObject: "userObject", groupable: "groupable", data: "data", columns: "columns", summaryRowColumns: "summaryRowColumns", spacerColumn: "spacerColumn", sizeColumnsEqually: "sizeColumnsEqually", expandableRow: "expandableRow", redrawOnResize: "redrawOnResize", exportConvertNegative: "exportConvertNegative", overrideTabbing: "overrideTabbing", showEditorIcons: "showEditorIcons", stickyHeader: "stickyHeader", attributes: "attributes", columnSizing: "columnSizing", stretchColumn: "stretchColumn", stretchColumnOnChange: "stretchColumnOnChange", showPageSizeSelector: "showPageSizeSelector", hidePagerOnOnePage: "hidePagerOnOnePage", columnGroup: "columnGroup", emptyMessage: "emptyMessage", enableTooltips: "enableTooltips", selectChildren: "selectChildren", allowChildExpandOnMatch: "allowChildExpandOnMatch", sohoDatagrid: ["soho-datagrid", "sohoDatagrid"], onBeforeSelect: "onBeforeSelect", allowSelectAcrossPages: "allowSelectAcrossPages", selectAllCurrentPage: "selectAllCurrentPage", columnIds: "columnIds", showNewRowIndicator: "showNewRowIndicator", onExpandChildren: "onExpandChildren", onCollapseChildren: "onCollapseChildren", onPostRenderCell: "onPostRenderCell", onDestroyCell: "onDestroyCell", onEditCell: "onEditCell", onKeyDown: "onKeyDown", onExpandRow: "onExpandRow", fallbackImage: "fallbackImage", fallbackTooltip: "fallbackTooltip" }, outputs: { selected: "selected", deselected: "deselected", cellchange: "cellchange", rowRemove: "rowRemove", rowAdd: "rowAdd", filtered: "filtered", expandrow: "expandrow", keydown: "keydown", exiteditmode: "exiteditmode", beforeentereditmode: "beforeentereditmode", entereditmode: "entereditmode", collapserow: "collapserow", sorted: "sorted", searched: "searched", nextPage: "nextPage", previousPage: "previousPage", firstPage: "firstPage", lastPage: "lastPage", pageSizeChange: "pageSizeChange", beforePaging: "beforePaging", afterPaging: "afterPaging", beforeRowActivated: "beforeRowActivated", rowActivated: "rowActivated", columnChange: "columnChange", rowDeactivated: "rowDeactivated", rowClicked: "rowClicked", rowDoubleClicked: "rowDoubleClicked", contextMenu: "contextMenu", rowReordered: "rowReordered", openFilterRow: "openFilterRow", closeFilterRow: "closeFilterRow", settingsChanged: "settingsChanged", rendered: "rendered", afterRender: "afterRender", verticalScroll: "verticalScroll", filteroperatorchanged: "filteroperatorchanged" }, host: { properties: { "class.is-disabled": "this.isDisabled", "attr.role": "this.datagridRole" } }, ngImport: i0, template: ' <ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10804
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: SohoDataGridComponent, isStandalone: false, selector: "[soho-datagrid]", inputs: { gridOptions: "gridOptions", idProperty: "idProperty", ellipsisWithIcon: "ellipsisWithIcon", ariaLabel: "ariaLabel", frozenColumns: "frozenColumns", cellNavigation: "cellNavigation", rowNavigation: "rowNavigation", alternateRowShading: "alternateRowShading", dataset: "dataset", columnReorder: "columnReorder", disableClientSort: "disableClientSort", allowTriStateSort: "allowTriStateSort", useLocaleSort: "useLocaleSort", disableClientFilter: "disableClientFilter", resultsText: "resultsText", showFilterTotal: "showFilterTotal", editable: "editable", isRowDisabled: "isRowDisabled", allowOneExpandedRow: "allowOneExpandedRow", rowTemplate: "rowTemplate", rowTemplateComponent: "rowTemplateComponent", rowTemplateComponentInputs: "rowTemplateComponentInputs", rowTemplateField: "rowTemplateField", selectOnEdit: "selectOnEdit", isList: "isList", menuId: "menuId", menuBeforeOpen: "menuBeforeOpen", rowHeight: "rowHeight", fixedRowHeight: "fixedRowHeight", selectable: "selectable", showSelectAllCheckBox: "showSelectAllCheckBox", clickToSelect: "clickToSelect", toolbar: "toolbar", initializeToolbar: "initializeToolbar", saveUserSettings: "saveUserSettings", paging: "paging", pagesize: "pagesize", pagesizes: "pagesizes", indeterminate: "indeterminate", actionableMode: "actionableMode", saveColumns: "saveColumns", source: "source", filterable: "filterable", filterWhenTyping: "filterWhenTyping", treeGrid: "treeGrid", uniqueId: "uniqueId", rowReorder: "rowReorder", showDirty: "showDirty", addCellLayoutClass: "addCellLayoutClass", resizeMode: "resizeMode", headerBackgroundColor: "headerBackgroundColor", headerMenuId: "headerMenuId", headerMenuSelected: "headerMenuSelected", headerMenuBeforeOpen: "headerMenuBeforeOpen", disableRowDeactivation: "disableRowDeactivation", disableRowDeselection: "disableRowDeselection", userObject: "userObject", groupable: "groupable", data: "data", columns: "columns", summaryRowColumns: "summaryRowColumns", spacerColumn: "spacerColumn", sizeColumnsEqually: "sizeColumnsEqually", expandableRow: "expandableRow", redrawOnResize: "redrawOnResize", exportConvertNegative: "exportConvertNegative", overrideTabbing: "overrideTabbing", showEditorIcons: "showEditorIcons", stickyHeader: "stickyHeader", attributes: "attributes", columnSizing: "columnSizing", stretchColumn: "stretchColumn", stretchColumnOnChange: "stretchColumnOnChange", showPageSizeSelector: "showPageSizeSelector", hidePagerOnOnePage: "hidePagerOnOnePage", columnGroup: "columnGroup", emptyMessage: "emptyMessage", enableTooltips: "enableTooltips", selectChildren: "selectChildren", allowChildExpandOnMatch: "allowChildExpandOnMatch", sohoDatagrid: ["soho-datagrid", "sohoDatagrid"], onBeforeSelect: "onBeforeSelect", allowSelectAcrossPages: "allowSelectAcrossPages", selectAllCurrentPage: "selectAllCurrentPage", columnIds: "columnIds", showNewRowIndicator: "showNewRowIndicator", onExpandChildren: "onExpandChildren", onCollapseChildren: "onCollapseChildren", onPostRenderCell: "onPostRenderCell", onDestroyCell: "onDestroyCell", onEditCell: "onEditCell", onKeyDown: "onKeyDown", onExpandRow: "onExpandRow", fallbackImage: "fallbackImage", fallbackTooltip: "fallbackTooltip" }, outputs: { selected: "selected", deselected: "deselected", cellchange: "cellchange", rowRemove: "rowRemove", rowAdd: "rowAdd", filtered: "filtered", expandrow: "expandrow", keydown: "keydown", exiteditmode: "exiteditmode", beforeentereditmode: "beforeentereditmode", entereditmode: "entereditmode", collapserow: "collapserow", sorted: "sorted", searched: "searched", nextPage: "nextPage", previousPage: "previousPage", firstPage: "firstPage", lastPage: "lastPage", pageSizeChange: "pageSizeChange", beforePaging: "beforePaging", afterPaging: "afterPaging", beforeRowActivated: "beforeRowActivated", rowActivated: "rowActivated", columnChange: "columnChange", rowDeactivated: "rowDeactivated", rowClicked: "rowClicked", rowDoubleClicked: "rowDoubleClicked", contextMenu: "contextMenu", rowReordered: "rowReordered", openFilterRow: "openFilterRow", closeFilterRow: "closeFilterRow", settingsChanged: "settingsChanged", rendered: "rendered", afterRender: "afterRender", verticalScroll: "verticalScroll", filteroperatorchanged: "filteroperatorchanged" }, host: { properties: { "class.is-disabled": "this.isDisabled", "attr.role": "this.datagridRole" } }, ngImport: i0, template: ' <ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10775
10805
|
}
|
|
10776
10806
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoDataGridComponent, decorators: [{
|
|
10777
10807
|
type: Component,
|
|
@@ -10805,6 +10835,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImpor
|
|
|
10805
10835
|
type: Input
|
|
10806
10836
|
}], disableClientSort: [{
|
|
10807
10837
|
type: Input
|
|
10838
|
+
}], allowTriStateSort: [{
|
|
10839
|
+
type: Input
|
|
10840
|
+
}], useLocaleSort: [{
|
|
10841
|
+
type: Input
|
|
10808
10842
|
}], disableClientFilter: [{
|
|
10809
10843
|
type: Input
|
|
10810
10844
|
}], resultsText: [{
|
|
@@ -31840,7 +31874,7 @@ class SohoVersionInitializerService {
|
|
|
31840
31874
|
* Initializes the version attribute.
|
|
31841
31875
|
*/
|
|
31842
31876
|
initialize() {
|
|
31843
|
-
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '21.0.3-patch.
|
|
31877
|
+
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '21.0.3-patch.8.1');
|
|
31844
31878
|
}
|
|
31845
31879
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoVersionInitializerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
31846
31880
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoVersionInitializerService, providedIn: 'root' }); }
|