@rijkshuisstijl-community/components-angular 1.1.0 → 1.2.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.
@@ -0,0 +1,27 @@
1
+ import { type HeadingLevel } from '../heading/heading.component';
2
+ import * as i0 from "@angular/core";
3
+ export interface ColumnItem {
4
+ label: string;
5
+ href: string;
6
+ }
7
+ export interface Column {
8
+ heading: string;
9
+ appearanceLevel: HeadingLevel;
10
+ items: ColumnItem[];
11
+ }
12
+ export interface subFooter {
13
+ items: ColumnItem[];
14
+ }
15
+ export declare class FooterComponent {
16
+ background?: string;
17
+ preFooter?: boolean;
18
+ preFooterMessage?: string;
19
+ heading?: string;
20
+ appearanceLevel: HeadingLevel;
21
+ columns?: Column[];
22
+ backtotop?: boolean;
23
+ subFooter?: subFooter;
24
+ scrollBackToTop: (event: MouseEvent) => void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "footer[rhc-footer]", never, { "background": { "alias": "background"; "required": false; }; "preFooter": { "alias": "preFooter"; "required": false; }; "preFooterMessage": { "alias": "preFooterMessage"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "appearanceLevel": { "alias": "appearanceLevel"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "backtotop": { "alias": "backtotop"; "required": false; }; "subFooter": { "alias": "subFooter"; "required": false; }; }, {}, never, never, true, never>;
27
+ }
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class LinkComponent {
3
3
  href: string;
4
+ target?: '_self' | '_blank' | '_parent' | '_top' | '_unfencedTop';
4
5
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "rhc-link", never, { "href": { "alias": "href"; "required": true; }; }, {}, never, ["*"], true, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "rhc-link", never, { "href": { "alias": "href"; "required": true; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], true, never>;
6
7
  }
@@ -24,3 +24,6 @@ export * from './navbar/navbar.component';
24
24
  export * from './navbar-item/navbar-item.component';
25
25
  export * from './navbar-item/heading-item.directive';
26
26
  export * from './navbar-item/end-item.directive';
27
+ export * from './footer/footer.component';
28
+ export * from './data-summary/data-summary.component';
29
+ export * from './data-summary-item/data-summary-item.component';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rijkshuisstijl-community/components-angular",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "author": "Community for NL Design System",
5
5
  "description": "Angular component library for the Rijkshuisstijl Community repository, based on the NL Design System architecture",
6
6
  "license": "EUPL-1.2",
@@ -23,16 +23,16 @@
23
23
  "angular-tabler-icons": "3.26.0"
24
24
  },
25
25
  "peerDependencies": {
26
- "@angular-devkit/build-angular": "19.2.0",
27
- "@angular/cli": "19.2.3",
28
- "@angular/common": "19.2.0",
29
- "@angular/compiler": "19.2.0",
30
- "@angular/compiler-cli": "19.2.0",
31
- "@angular/core": "19.2.0",
32
- "@angular/forms": "19.2.0",
33
- "@angular/platform-browser": "19.2.0",
34
- "@angular/platform-browser-dynamic": "19.2.0",
35
- "@angular/router": "19.2.0"
26
+ "@angular-devkit/build-angular": "~19.2.0",
27
+ "@angular/cli": "~19.2.0",
28
+ "@angular/common": "~19.2.0",
29
+ "@angular/compiler": "~19.2.0",
30
+ "@angular/compiler-cli": "~19.2.0",
31
+ "@angular/core": "~19.2.0",
32
+ "@angular/forms": "~19.2.0",
33
+ "@angular/platform-browser": "~19.2.0",
34
+ "@angular/platform-browser-dynamic": "~19.2.0",
35
+ "@angular/router": "~19.2.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@nl-design-system-candidate/heading-css": "1.0.0",
@@ -43,11 +43,11 @@
43
43
  "@types/testing-library__jest-dom": "5.14.9",
44
44
  "jest": "29.7.0",
45
45
  "jest-preset-angular": "14.5.4",
46
- "ng-packagr": "19.2.0",
46
+ "ng-packagr": "19.2.2",
47
47
  "rxjs": "7.8.0",
48
48
  "typescript": "5.7.2",
49
49
  "zone.js": "0.15.0",
50
- "@rijkshuisstijl-community/components-css": "1.2.0"
50
+ "@rijkshuisstijl-community/components-css": "2.0.0"
51
51
  },
52
52
  "files": [
53
53
  "dist/"