@datarailsshared/datarailsshared 1.5.208 → 1.5.209

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,11 @@
1
+ import { DrAlertTheme } from './enums/dr-alert-theme.enum';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DrAlertComponent {
4
+ theme: DrAlertTheme;
5
+ customIconClass: string;
6
+ text: string;
7
+ get elementClass(): string;
8
+ get themeIconClass(): string;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAlertComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAlertComponent, "dr-alert", never, { "theme": { "alias": "theme"; "required": false; }; "customIconClass": { "alias": "customIconClass"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dr-alert.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class DrAlertModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAlertModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrAlertModule, [typeof i1.DrAlertComponent], [typeof i2.CommonModule], [typeof i1.DrAlertComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrAlertModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum DrAlertTheme {
2
+ SUCCESS = "success",
3
+ ERROR = "error",
4
+ BOLD_ERROR = "bold-error",
5
+ WARNING = "warning",
6
+ INFO = "info"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.5.208",
3
+ "version": "1.5.209",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -43,6 +43,7 @@ export * from './lib/dr-spinner/dr-spinner.component';
43
43
  export * from './lib/dr-spinner/dr-spinner.directive';
44
44
  export * from './lib/dr-inputs/button/button.component';
45
45
  export * from './lib/dr-badge-status/dr-badge-status.component';
46
+ export * from './lib/dr-alert/dr-alert.component';
46
47
  export * from './lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component';
47
48
  export * from './lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component';
48
49
  export * from './lib/dr-popover/dr-popover.directive';
@@ -79,6 +80,7 @@ export * from './lib/dr-treeview/helpers/treeview-helper';
79
80
  export { TooltipPosition } from './lib/dr-tooltip/enums/tooltip-position.enum';
80
81
  export { Scenario, TScenarioDataChanged } from './lib/dr-scenario/interfaces/scenario';
81
82
  export { ToggleButtonMode } from './lib/dr-inputs/dr-toggle-button/toggle-button-mode';
83
+ export { DrAlertTheme } from './lib/dr-alert/enums/dr-alert-theme.enum';
82
84
  export { TooltipInfoContext } from './lib/dr-tooltip/interfaces/tooltip-component-context';
83
85
  export { Step } from './lib/stepper/interfaces/stepper';
84
86
  export * from './lib/dr-dialog/interfaces/dialog-data';
@@ -115,3 +117,4 @@ export { DrScenarioModule } from './lib/dr-scenario/dr-scenario.module';
115
117
  export { DrBadgeStatusModule } from './lib/dr-badge-status/dr-badge-status.module';
116
118
  export { TreeviewModule } from './lib/dr-treeview/dr-tree-view.module';
117
119
  export { ClickOutsideModule } from './lib/directives/click-outside/click-outside.module';
120
+ export { DrAlertModule } from './lib/dr-alert/dr-alert.module';