@memberjunction/ng-explorer-core 0.9.28 → 0.9.30
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.
|
@@ -255,8 +255,8 @@ export class ViewPropertiesDialogComponent extends BaseFormComponent {
|
|
|
255
255
|
this.sortFields = [];
|
|
256
256
|
this.sortState = [];
|
|
257
257
|
this.sortDirections = [
|
|
258
|
-
{ Name: 'Up', Value:
|
|
259
|
-
{ Name: 'Down', Value:
|
|
258
|
+
{ Name: 'Up', Value: 'asc' },
|
|
259
|
+
{ Name: 'Down', Value: 'desc' }
|
|
260
260
|
];
|
|
261
261
|
this.defaultOperators = {
|
|
262
262
|
string: ["contains", "doesnotcontain", "eq", "neq", "startswith", "endswith", "isnull", "isnotnull", "isempty", "isnotempty"],
|
|
@@ -368,7 +368,7 @@ export class ViewPropertiesDialogComponent extends BaseFormComponent {
|
|
|
368
368
|
var _a;
|
|
369
369
|
return {
|
|
370
370
|
field: (_a = this.ViewEntityInfo) === null || _a === void 0 ? void 0 : _a.Fields.find((f) => f.Name === s.field),
|
|
371
|
-
direction: this.sortDirections.find((d) => d.Value === s.direction)
|
|
371
|
+
direction: this.sortDirections.find((d) => d.Value.trim().toLowerCase() === s.direction.trim().toLowerCase())
|
|
372
372
|
};
|
|
373
373
|
});
|
|
374
374
|
this.localGridState = JSON.parse(this.record.GridState);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-explorer-core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.30",
|
|
4
4
|
"description": "MemberJunction Explorer: Core Angular Components",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"@progress/kendo-angular-listview": "^12.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@memberjunction/global": "^0.9.
|
|
31
|
-
"@memberjunction/core": "^0.9.
|
|
32
|
-
"@memberjunction/ng-compare-records": "^0.9.
|
|
33
|
-
"@memberjunction/ng-record-changes": "^0.9.
|
|
34
|
-
"@memberjunction/ng-container-directives": "^0.9.
|
|
35
|
-
"@memberjunction/ng-user-view-grid": "^0.9.
|
|
30
|
+
"@memberjunction/global": "^0.9.91",
|
|
31
|
+
"@memberjunction/core": "^0.9.88",
|
|
32
|
+
"@memberjunction/ng-compare-records": "^0.9.89",
|
|
33
|
+
"@memberjunction/ng-record-changes": "^0.9.27",
|
|
34
|
+
"@memberjunction/ng-container-directives": "^0.9.65",
|
|
35
|
+
"@memberjunction/ng-user-view-grid": "^0.9.69",
|
|
36
36
|
"tslib": "^2.3.0"
|
|
37
37
|
},
|
|
38
38
|
"sideEffects": false
|