@datarailsshared/datarailsshared 1.4.62-dragons → 1.4.64

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.
@@ -1,6 +1,6 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, OnDestroy } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
- export declare class DrErrorComponent implements OnInit, OnDestroy {
3
+ export declare class DrErrorComponent implements OnDestroy {
4
4
  private cdr;
5
5
  constructor(cdr: ChangeDetectorRef);
6
6
  private destroyed$;
@@ -9,6 +9,5 @@ export declare class DrErrorComponent implements OnInit, OnDestroy {
9
9
  label: string;
10
10
  get errorString(): any;
11
11
  get isWarning(): any;
12
- ngOnInit(): void;
13
12
  ngOnDestroy(): void;
14
13
  }
@@ -0,0 +1,6 @@
1
+ import { ValidationErrors } from '@angular/forms';
2
+ export interface IValidationError extends ValidationErrors {
3
+ valid: boolean;
4
+ errorString?: string;
5
+ isWarning?: boolean;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.4.62-dragons",
3
+ "version": "1.4.64",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -46,6 +46,7 @@ export { TAG_TYPES, ITag, IDateTag, IListTag, ITagForServer } from './lib/models
46
46
  export { ISpinnerOptions, SpinnerType, SpinnerSize } from './lib/models/spinnerOptions';
47
47
  export { ElPosition, IDropdown, IDropdownItem, IDropdownActionIcon, IDropdownCoordinate, IDropdownCallEvent, IDropdownAction } from './lib/models/dropdown';
48
48
  export { DrPopoverRef, IDrPopoverComponentModel, Point, DrPopoverConfig, IPopoverManualClosing, DrPopoverAlignment, DrPopoverAlignmentDimension, } from './lib/models/popover';
49
+ export { IValidationError } from './lib/models/validationError';
49
50
  export { DateTagModule } from './lib/date-tags/date-tag.module';
50
51
  export { ListTagModule } from './lib/list-tags/list-tag.module';
51
52
  export { DrTagModule } from './lib/dr-tags/dr-tag.module';