@datarailsshared/datarailsshared 1.4.175 → 1.4.177

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.
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { BadgeStatus } from '../models/badgeStatus';
3
+ export declare class DrBadgeStatusComponent implements OnInit {
4
+ theme: BadgeStatus;
5
+ icon: string;
6
+ label: string;
7
+ tooltip: string;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ }
@@ -0,0 +1,2 @@
1
+ export declare class DrBadgeStatusModule {
2
+ }
@@ -0,0 +1,9 @@
1
+ export declare enum BadgeStatus {
2
+ INFO = "info",
3
+ ERROR = "error",
4
+ WARNING = "warning",
5
+ SUCCESS = "success",
6
+ REGULAR = "regular",
7
+ PROGRESS = "progress",
8
+ DOTTED = "dotted"
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.4.175",
3
+ "version": "1.4.177",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -56,6 +56,7 @@ export { ElPosition, IDropdown, IDropdownItem, IDropdownActionIcon, IDropdownCoo
56
56
  export { DrPopoverRef, IDrPopoverComponentModel, Point, DrPopoverConfig, IPopoverManualClosing, DrPopoverAlignment, DrPopoverAlignmentDimension, } from './lib/models/popover';
57
57
  export { IValidationError } from './lib/models/validationError';
58
58
  export * from './lib/models/chat';
59
+ export * from './lib/models/badgeStatus';
59
60
  export { ScenarioService } from './lib/dr-scenario/services/scenario.service';
60
61
  export { DateTagModule } from './lib/date-tags/date-tag.module';
61
62
  export { ListTagModule } from './lib/list-tags/list-tag.module';
@@ -76,3 +77,4 @@ export { DrDialogModule } from './lib/dr-dialog/dialog.module';
76
77
  export { DrChatModule } from './lib/dr-chat/chat.module';
77
78
  export { DrDetailsListModule } from './lib/dr-details-list/dr-details-list.module';
78
79
  export { DrScenarioModule } from './lib/dr-scenario/dr-scenario.module';
80
+ export { DrBadgeStatusModule } from './lib/dr-badge-status/dr-badge-status.module';