@softheon/armature 17.13.2 → 17.15.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.
Files changed (41) hide show
  1. package/ag-grid-components/package.json +3 -0
  2. package/ag-grid-components/public-api.d.ts +2 -1
  3. package/ag-grid-components/src/ag-grid-components.module.d.ts +22 -20
  4. package/ag-grid-components/src/column-options-modal/column-options.component.d.ts +50 -0
  5. package/ag-grid-components/src/sof-table/sof-table.component.d.ts +34 -10
  6. package/assets/styles/arm-theme.scss +50 -33
  7. package/esm2022/ag-grid-components/public-api.mjs +3 -2
  8. package/esm2022/ag-grid-components/src/ag-grid-components.module.mjs +15 -8
  9. package/esm2022/ag-grid-components/src/column-options-modal/column-options.component.mjs +41 -0
  10. package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +103 -32
  11. package/esm2022/ag-grid-components/src/table-cell/table-cell.component.mjs +1 -1
  12. package/esm2022/lib/base-components/sof-alert/sof-alert.component.mjs +3 -3
  13. package/esm2022/lib/base-components/sof-badge/sof-badge.component.mjs +16 -12
  14. package/esm2022/lib/base-components/sof-banner/sof-banner.component.mjs +2 -2
  15. package/esm2022/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.mjs +2 -2
  16. package/esm2022/lib/base-components/sof-confirm-address/sof-confirm-address.component.mjs +2 -2
  17. package/esm2022/lib/base-components/sof-handle/sof-handle.component.mjs +10 -13
  18. package/esm2022/lib/base-components/sof-image-checkbox/sof-image-checkbox.component.mjs +2 -2
  19. package/esm2022/lib/base-components/sof-input-stepper/sof-input-stepper.component.mjs +2 -2
  20. package/esm2022/lib/base-components/sof-links/sof-link.component.mjs +10 -10
  21. package/esm2022/lib/base-components/sof-progress-bar/sof-progress-bar.component.mjs +2 -2
  22. package/esm2022/lib/base-components/sof-simple-alert/sof-simple-alert.component.mjs +2 -2
  23. package/esm2022/lib/base-components/sof-star-rating/sof-star-rating.component.mjs +2 -2
  24. package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +14 -9
  25. package/esm2022/lib/feedback-tool/components/feedback-tool/feedback-tool.component.mjs +2 -2
  26. package/esm2022/lib/header/components/header/header.component.mjs +2 -2
  27. package/esm2022/lib/navigation/components/navigation/navigation.component.mjs +2 -2
  28. package/esm2022/lib/navigation/components/sof-breadcrumbs/sof-breadcrumbs-hierarchy/sof-breadcrumbs-hierarchy.component.mjs +2 -2
  29. package/esm2022/lib/navigation/components/sof-breadcrumbs/sof-breadcrumbs-history/sof-breadcrumbs-history.component.mjs +2 -2
  30. package/esm2022/lib/navigation/components/sof-navigation-panel/sof-nav-panel.component.mjs +3 -3
  31. package/esm2022/lib/navigation/components/sof-sub-navigation/sof-sub-navigation.component.mjs +2 -2
  32. package/esm2022/lib/navigation/components/sof-tabs-navigation/sof-tabs.component.mjs +2 -2
  33. package/fesm2022/softheon-armature-ag-grid-components.mjs +161 -49
  34. package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
  35. package/fesm2022/softheon-armature.mjs +80 -75
  36. package/fesm2022/softheon-armature.mjs.map +1 -1
  37. package/lib/base-components/sof-badge/sof-badge.component.d.ts +7 -7
  38. package/lib/base-components/sof-handle/sof-handle.component.d.ts +4 -9
  39. package/lib/base-components/sof-links/sof-link.component.d.ts +4 -4
  40. package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +6 -3
  41. package/package.json +1 -1
@@ -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,12 +1,12 @@
1
1
  import { CdkDragDrop } from "@angular/cdk/drag-drop";
2
- import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
2
+ import { EventEmitter, OnDestroy } from "@angular/core";
3
3
  import * as i0 from "@angular/core";
4
4
  /** The handle component */
5
- export declare class SofHandleComponent implements OnInit, OnDestroy {
5
+ export declare class SofHandleComponent implements OnDestroy {
6
6
  /** The checkmark color */
7
7
  checkmarkColor: string;
8
8
  /** The input */
9
- handleList: HandleInput[];
9
+ handleList: Array<HandleInput>;
10
10
  /** The label text */
11
11
  labelText: string;
12
12
  /** The handle order changed event */
@@ -15,14 +15,9 @@ export declare class SofHandleComponent implements OnInit, OnDestroy {
15
15
  checkboxToggled: EventEmitter<number>;
16
16
  /** The handle that's in focus */
17
17
  handleInFocus: number;
18
+ private document;
18
19
  /** The body element */
19
20
  private bodyElement;
20
- /**
21
- * Component Constructor
22
- */
23
- constructor();
24
- /** Component Initialization */
25
- ngOnInit(): void;
26
21
  /** Component Destruction */
27
22
  ngOnDestroy(): void;
28
23
  /**
@@ -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.13.2",
3
+ "version": "17.15.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },