@softheon/armature 17.14.0 → 17.15.1

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,3 +1,4 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class SofBadgeComponent {
3
4
  /** Whether to show bold background color not */
@@ -6,12 +7,12 @@ export declare class SofBadgeComponent {
6
7
  badgeText: string;
7
8
  /**
8
9
  * The alert color
9
- * Possible Values: 'default', 'info, 'success', 'warn', 'error', 'theme'
10
+ * Possible Values: 'info, 'success', 'warn', 'error', 'theme', 'neutral', 'metal-tier'
10
11
  */
11
- badgeColor: string;
12
+ badgeColor: 'info' | 'success' | 'warn' | 'error' | 'theme' | 'neutral' | 'metal-tier';
12
13
  /** Whether or not to use default icons */
13
14
  useIcon: boolean;
14
- /** The icon class- this should be a font awesome class */
15
+ /** The icon class- this should be a Phosphor Icons class, type bold */
15
16
  iconClass: string;
16
17
  /** The badge aria label */
17
18
  badgeAria: string;
@@ -20,11 +21,10 @@ export declare class SofBadgeComponent {
20
21
  /** Whether or not the component has been init */
21
22
  initialized: boolean;
22
23
  /**
23
- * The constructor
24
+ * Any logic related to ag grid cell renderer data can be added here
25
+ * @note All `@Inputs` should be accepted through `params`
24
26
  */
25
- constructor();
26
- /** Any logic related to ag grid cell renderer data can be added here */
27
- agInit(params: any): void;
27
+ agInit(params: ICellRendererParams & SofBadgeComponent): void;
28
28
  /** On component init */
29
29
  ngOnInit(): void;
30
30
  /**
@@ -1,3 +1,4 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class SofLinkComponent {
3
4
  /** The language text or a key that will be shown in this component */
@@ -5,11 +6,10 @@ export declare class SofLinkComponent {
5
6
  /** The link to redirect to */
6
7
  redirectLink: string;
7
8
  /**
8
- * The constructor
9
+ * Logic related to ag grid cell renderer data can be added here
10
+ * @note All `@Inputs` should be accepted through `params`
9
11
  */
10
- constructor();
11
- /** Logic related to ag grid cell renderer data can be added here */
12
- agInit(params: any): void;
12
+ agInit(params: ICellRendererParams & SofLinkComponent): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SofLinkComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDeclaration<SofLinkComponent, "sof-link", never, {}, {}, never, never, false, never>;
15
15
  }
@@ -1,3 +1,4 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class SofUtilityButtonComponent {
3
4
  buttonId: string;
@@ -8,9 +9,11 @@ export declare class SofUtilityButtonComponent {
8
9
  menuDropDown: ButtonData[];
9
10
  /** Individual Button Click */
10
11
  buttonClick: Function;
11
- displayAdditionalComponent: any;
12
- /** Any logic related to ag grid cell renderer data can be added here */
13
- agInit(params: any): void;
12
+ /**
13
+ * Any logic related to ag grid cell renderer data can be added here
14
+ * @note All `@Inputs` should be accepted through `params`
15
+ */
16
+ agInit(params: ICellRendererParams & SofUtilityButtonComponent): void;
14
17
  static ɵfac: i0.ɵɵFactoryDeclaration<SofUtilityButtonComponent, never>;
15
18
  static ɵcmp: i0.ɵɵComponentDeclaration<SofUtilityButtonComponent, "sof-utility-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonColorText": { "alias": "buttonColorText"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "buttonDisabled": { "alias": "buttonDisabled"; "required": false; }; "buttonIconClass": { "alias": "buttonIconClass"; "required": false; }; "menuDropDown": { "alias": "menuDropDown"; "required": false; }; "buttonClick": { "alias": "buttonClick"; "required": false; }; }, {}, never, never, false, never>;
16
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "17.14.0",
3
+ "version": "17.15.1",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },