@trudb/tru-common-lib 0.0.304 → 0.0.306

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.
@@ -63,7 +63,7 @@ class TruPropertyConfigBase {
63
63
  }
64
64
 
65
65
  /*
66
- * The abstract class needs the Angular @Component decorator in order in implement @Input
66
+ * The abstract class needs the Angular @Directive decorator in order in implement @Input
67
67
  */
68
68
  class TruSearchControlBase {
69
69
  constructor() {
@@ -162,13 +162,14 @@ class TruSearchConfigBase {
162
162
 
163
163
  class TruTableConfigBase {
164
164
  constructor() {
165
- this.Label = undefined;
166
- this.PluralLabel = undefined;
167
- this.PluralName = undefined;
168
- this.CanDisplay = false;
169
- this.CanEdit = false;
170
- this.CanAdd = false;
171
- this.CanDelete = false;
165
+ this.name = undefined;
166
+ this.label = undefined;
167
+ this.pluralLabel = undefined;
168
+ this.pluralName = undefined;
169
+ this.canDisplay = false;
170
+ this.canEdit = false;
171
+ this.canAdd = false;
172
+ this.canDelete = false;
172
173
  }
173
174
  }
174
175