@softheon/armature 15.7.0 → 15.8.0

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.
@@ -6,4 +6,6 @@ export * from './sof-alert/sof-alert.component';
6
6
  export * from './sof-modal/sof-modal.component';
7
7
  export * from './sof-button-toggle-group/sof-button-toggle-group.component';
8
8
  export * from './sof-star-rating/sof-star-rating.component';
9
+ export * from './sof-badge/sof-badge.component';
9
10
  export * from './sof-image-checkbox/sof-image-checkbox.component';
11
+ export * from './sof-simple-alert/sof-simple-alert.component';
@@ -5,26 +5,28 @@ import * as i3 from "./sof-alert/sof-alert.component";
5
5
  import * as i4 from "./sof-modal/sof-modal.component";
6
6
  import * as i5 from "./sof-button-toggle-group/sof-button-toggle-group.component";
7
7
  import * as i6 from "./sof-star-rating/sof-star-rating.component";
8
- import * as i7 from "./sof-image-checkbox/sof-image-checkbox.component";
9
- import * as i8 from "@angular/router";
10
- import * as i9 from "@angular/common";
11
- import * as i10 from "@angular/flex-layout";
12
- import * as i11 from "@angular/forms";
13
- import * as i12 from "@ngx-translate/core";
14
- import * as i13 from "@angular/material/select";
15
- import * as i14 from "@angular/material/core";
16
- import * as i15 from "@angular/material/checkbox";
17
- import * as i16 from "@angular/material/icon";
18
- import * as i17 from "@angular/material/dialog";
19
- import * as i18 from "@angular/material/button";
20
- import * as i19 from "@angular/material/form-field";
21
- import * as i20 from "@angular/material/toolbar";
22
- import * as i21 from "@angular/material/tooltip";
23
- import * as i22 from "@angular/material/button-toggle";
24
- import * as i23 from "@angular/material/card";
8
+ import * as i7 from "./sof-badge/sof-badge.component";
9
+ import * as i8 from "./sof-image-checkbox/sof-image-checkbox.component";
10
+ import * as i9 from "./sof-simple-alert/sof-simple-alert.component";
11
+ import * as i10 from "@angular/router";
12
+ import * as i11 from "@angular/common";
13
+ import * as i12 from "@angular/flex-layout";
14
+ import * as i13 from "@angular/forms";
15
+ import * as i14 from "@ngx-translate/core";
16
+ import * as i15 from "@angular/material/select";
17
+ import * as i16 from "@angular/material/core";
18
+ import * as i17 from "@angular/material/checkbox";
19
+ import * as i18 from "@angular/material/icon";
20
+ import * as i19 from "@angular/material/dialog";
21
+ import * as i20 from "@angular/material/button";
22
+ import * as i21 from "@angular/material/form-field";
23
+ import * as i22 from "@angular/material/toolbar";
24
+ import * as i23 from "@angular/material/tooltip";
25
+ import * as i24 from "@angular/material/button-toggle";
26
+ import * as i25 from "@angular/material/card";
25
27
  /** The BaseComponentModule Module */
26
28
  export declare class BaseComponentModule {
27
29
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentModule, never>;
28
- static ɵmod: i0.ɵɵNgModuleDeclaration<BaseComponentModule, [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent, typeof i6.SofStarRatingComponent, typeof i7.SofImageCheckboxComponent], [typeof i8.RouterModule, typeof i9.CommonModule, typeof i10.FlexLayoutModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.TranslateModule, typeof i13.MatSelectModule, typeof i14.MatOptionModule, typeof i15.MatCheckboxModule, typeof i16.MatIconModule, typeof i17.MatDialogModule, typeof i18.MatButtonModule, typeof i19.MatFormFieldModule, typeof i20.MatToolbarModule, typeof i21.MatTooltipModule, typeof i22.MatButtonToggleModule, typeof i23.MatCardModule], [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent, typeof i6.SofStarRatingComponent, typeof i7.SofImageCheckboxComponent]>;
30
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BaseComponentModule, [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent, typeof i6.SofStarRatingComponent, typeof i7.SofBadgeComponent, typeof i8.SofImageCheckboxComponent, typeof i9.SofSimpleAlertComponent], [typeof i10.RouterModule, typeof i11.CommonModule, typeof i12.FlexLayoutModule, typeof i13.FormsModule, typeof i13.ReactiveFormsModule, typeof i14.TranslateModule, typeof i15.MatSelectModule, typeof i16.MatOptionModule, typeof i17.MatCheckboxModule, typeof i18.MatIconModule, typeof i19.MatDialogModule, typeof i20.MatButtonModule, typeof i21.MatFormFieldModule, typeof i22.MatToolbarModule, typeof i23.MatTooltipModule, typeof i24.MatButtonToggleModule, typeof i25.MatCardModule], [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent, typeof i6.SofStarRatingComponent, typeof i7.SofBadgeComponent, typeof i8.SofImageCheckboxComponent, typeof i9.SofSimpleAlertComponent]>;
29
31
  static ɵinj: i0.ɵɵInjectorDeclaration<BaseComponentModule>;
30
32
  }
@@ -0,0 +1,26 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SofBadgeComponent {
3
+ /** Whether to show background color not */
4
+ noIcon: boolean;
5
+ /** Whether to show background color not */
6
+ noOutline: boolean;
7
+ /** The language text or a key that will be shown in this component */
8
+ badgeText: string;
9
+ /**
10
+ * The alert color
11
+ * Possible Values: 'info, 'success', 'warn', 'error', 'theme'
12
+ */
13
+ badgeColor: string;
14
+ /** The icon class- this should be a font awesome class */
15
+ iconClass: string;
16
+ /**Whether to show colored label */
17
+ coloredLabel: boolean;
18
+ /**
19
+ * The constructor
20
+ */
21
+ constructor();
22
+ /** On component init */
23
+ ngOnInit(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<SofBadgeComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<SofBadgeComponent, "sof-badge", never, { "noIcon": "noIcon"; "noOutline": "noOutline"; "badgeText": "badgeText"; "badgeColor": "badgeColor"; "iconClass": "iconClass"; "coloredLabel": "coloredLabel"; }, {}, never, never, false, never>;
26
+ }
@@ -0,0 +1,29 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /** The softheon simplified alert component */
4
+ export declare class SofSimpleAlertComponent implements OnInit {
5
+ /** The language text or a key that will be shown in this component */
6
+ alertText: string;
7
+ /** Whether to show background color not */
8
+ hideBackground: boolean;
9
+ /** The alert color */
10
+ alertColor: 'information' | 'success' | 'warning' | 'error' | 'theme';
11
+ /** The icon class - this should be a font awesome class */
12
+ iconClass: string;
13
+ /** The default icons for the banner colors */
14
+ alertColorIconMapping: {
15
+ information: string;
16
+ success: string;
17
+ warning: string;
18
+ error: string;
19
+ theme: string;
20
+ };
21
+ /**
22
+ * The constructor
23
+ */
24
+ constructor();
25
+ /** Implements on init */
26
+ ngOnInit(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<SofSimpleAlertComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SofSimpleAlertComponent, "sof-simple-alert", never, { "alertText": "alertText"; "hideBackground": "hideBackground"; "alertColor": "alertColor"; "iconClass": "iconClass"; }, {}, never, never, false, never>;
29
+ }
@@ -7,5 +7,5 @@ export interface OidcAuthSettings extends AuthConfig {
7
7
  authSetOnStartup?: boolean;
8
8
  requireLoginOnStartup?: boolean;
9
9
  disableStartupTokenValidation?: boolean;
10
- preserveRoute: boolean;
10
+ preserveRoute?: boolean;
11
11
  }
@@ -4,6 +4,7 @@
4
4
  export declare enum States {
5
5
  AL = "Alabama",
6
6
  AK = "Alaska",
7
+ AS = "American Samoa",
7
8
  AZ = "Arizona",
8
9
  AR = "Arkansas",
9
10
  CA = "California",
@@ -12,7 +13,9 @@ export declare enum States {
12
13
  DE = "Delaware",
13
14
  DC = "District of Columbia",
14
15
  FL = "Florida",
16
+ FM = "Micronesia",
15
17
  GA = "Georgia",
18
+ GU = "Guam",
16
19
  HI = "Hawaii",
17
20
  ID = "Idaho",
18
21
  IL = "Illinois",
@@ -24,8 +27,10 @@ export declare enum States {
24
27
  ME = "Maine",
25
28
  MD = "Maryland",
26
29
  MA = "Massachusetts",
30
+ MH = "Marshall Islands",
27
31
  MI = "Michigan",
28
32
  MN = "Minnesota",
33
+ MP = "Northern Mariana Islands",
29
34
  MS = "Mississippi",
30
35
  MO = "Missouri",
31
36
  MT = "Montana",
@@ -41,6 +46,8 @@ export declare enum States {
41
46
  OK = "Oklahoma",
42
47
  OR = "Oregon",
43
48
  PA = "Pennsylvania",
49
+ PR = "Puerto Rico",
50
+ PW = "Palau",
44
51
  RI = "Rhode Island",
45
52
  SC = "South Carolina",
46
53
  SD = "South Dakota",
@@ -49,6 +56,7 @@ export declare enum States {
49
56
  UT = "Utah",
50
57
  VT = "Vermont",
51
58
  VA = "Virginia",
59
+ VI = "Virgin Islands",
52
60
  WA = "Washington",
53
61
  WV = "West Virginia",
54
62
  WI = "Wisconsin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "15.7.0",
3
+ "version": "15.8.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },