@sebgroup/green-angular 5.3.1 → 5.3.3

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 (27) hide show
  1. package/esm2022/src/v-angular/account-number/account-number.module.mjs +15 -12
  2. package/esm2022/src/v-angular/checkbox/checkbox.component.mjs +2 -2
  3. package/esm2022/src/v-angular/modal/fold-out/fold-out.component.mjs +9 -4
  4. package/esm2022/src/v-angular/radio/radio.component.mjs +2 -2
  5. package/esm2022/src/v-angular/table/table.component.mjs +3 -3
  6. package/esm2022/v-angular/account-number/account-number.module.mjs +15 -12
  7. package/esm2022/v-angular/checkbox/checkbox.component.mjs +2 -2
  8. package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +9 -4
  9. package/esm2022/v-angular/radio/radio.component.mjs +2 -2
  10. package/esm2022/v-angular/table/table.component.mjs +3 -3
  11. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs +13 -10
  12. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs.map +1 -1
  13. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs +2 -2
  14. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs.map +1 -1
  15. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +7 -2
  16. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
  17. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs +2 -2
  18. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs.map +1 -1
  19. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +2 -2
  20. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -1
  21. package/fesm2022/sebgroup-green-angular-v-angular.mjs +26 -18
  22. package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
  23. package/package.json +3 -3
  24. package/src/v-angular/account-number/account-number.module.d.ts +6 -0
  25. package/src/v-angular/modal/fold-out/fold-out.component.d.ts +4 -2
  26. package/v-angular/account-number/account-number.module.d.ts +6 -0
  27. package/v-angular/modal/fold-out/fold-out.component.d.ts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebgroup/green-angular",
3
- "version": "5.3.1",
3
+ "version": "5.3.3",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": ">=17.3.10",
6
6
  "@angular/common": ">=17.3.12",
@@ -17,8 +17,8 @@
17
17
  "scroll-into-view-if-needed": "^2.2.31"
18
18
  },
19
19
  "dependencies": {
20
- "@sebgroup/green-core": "^1.65.0",
21
- "@sebgroup/chlorophyll": "^3.6.14",
20
+ "@sebgroup/green-core": "^1.67.2",
21
+ "@sebgroup/chlorophyll": "^3.6.15",
22
22
  "@sebgroup/extract": "^3.0.2",
23
23
  "tslib": "^2.3.1"
24
24
  },
@@ -1,2 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./account-number.pipe";
1
4
  export declare class NggvAccountNumberPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvAccountNumberPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvAccountNumberPipeModule, never, [typeof i1.CommonModule, typeof i2.AccountNumberPipe], [typeof i2.AccountNumberPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvAccountNumberPipeModule>;
2
8
  }
@@ -1,5 +1,5 @@
1
- import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
1
  import '@sebgroup/green-core/components/icon/icons/dot-grid-one-horizontal.js';
2
+ import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
5
5
  /** Special property used for selecting DOM elements during automated UI testing. */
@@ -12,6 +12,8 @@ export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
12
12
  text?: string;
13
13
  /** Aria label for the fold-out button */
14
14
  ariaLabel?: string;
15
+ /** Emits when the children container collapses, for components with change detection strategy "OnPush" */
16
+ actionEmitter: EventEmitter<void>;
15
17
  /** @internal */
16
18
  protected shown: boolean;
17
19
  private activeIndex;
@@ -43,5 +45,5 @@ export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
43
45
  private takeAction;
44
46
  private resetChildren;
45
47
  static ɵfac: i0.ɵɵFactoryDeclaration<NggvFoldOutComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<NggvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; "text": { "alias": "text"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; "text": { "alias": "text"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "actionEmitter": "actionEmitter"; }, never, ["*"], false, never>;
47
49
  }
@@ -1,2 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./account-number.pipe";
1
4
  export declare class NggvAccountNumberPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvAccountNumberPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvAccountNumberPipeModule, never, [typeof i1.CommonModule, typeof i2.AccountNumberPipe], [typeof i2.AccountNumberPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvAccountNumberPipeModule>;
2
8
  }
@@ -1,5 +1,5 @@
1
- import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
1
  import '@sebgroup/green-core/components/icon/icons/dot-grid-one-horizontal.js';
2
+ import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
5
5
  /** Special property used for selecting DOM elements during automated UI testing. */
@@ -12,6 +12,8 @@ export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
12
12
  text?: string;
13
13
  /** Aria label for the fold-out button */
14
14
  ariaLabel?: string;
15
+ /** Emits when the children container collapses, for components with change detection strategy "OnPush" */
16
+ actionEmitter: EventEmitter<void>;
15
17
  /** @internal */
16
18
  protected shown: boolean;
17
19
  private activeIndex;
@@ -43,5 +45,5 @@ export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
43
45
  private takeAction;
44
46
  private resetChildren;
45
47
  static ɵfac: i0.ɵɵFactoryDeclaration<NggvFoldOutComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<NggvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; "text": { "alias": "text"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; "text": { "alias": "text"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "actionEmitter": "actionEmitter"; }, never, ["*"], false, never>;
47
49
  }