@ndwnu/design-system 1.0.2 → 1.0.4
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.
- package/components/alert/alert.component.d.ts +13 -0
- package/components/alert/alert.model.d.ts +6 -0
- package/components/alert/index.d.ts +2 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +8 -0
- package/components/breadcrumb/index.d.ts +1 -0
- package/components/breadcrumb-group/breadcrumb-group.component.d.ts +7 -0
- package/components/breadcrumb-group/index.d.ts +1 -0
- package/components/dropdown/dropdown.component.d.ts +1 -1
- package/components/form-field/checkbox/checkbox.component.d.ts +1 -2
- package/components/form-field/input/input.directive.d.ts +6 -0
- package/components/form-field/input/input.model.d.ts +3 -1
- package/components/form-field/radio-button/radio-button.component.d.ts +7 -4
- package/components/form-field/radio-group/radio-group.component.d.ts +9 -1
- package/components/icon/icon.component.d.ts +9 -6
- package/components/icon/index.d.ts +0 -2
- package/components/index.d.ts +5 -2
- package/components/main-navigation/main-navigation.component.d.ts +3 -3
- package/components/main-navigation/main-navigation.model.d.ts +1 -0
- package/components/main-navigation-menu/main-navigation-menu.component.d.ts +1 -3
- package/components/router-breadcrumbs/index.d.ts +1 -0
- package/components/router-breadcrumbs/router-breadcrumbs.component.d.ts +15 -0
- package/core/styles/ndw-styles.scss +353 -103
- package/core/styles/nwb-styles.scss +315 -97
- package/esm2022/components/accordion/accordion.component.mjs +3 -3
- package/esm2022/components/accordion/accordion.service.mjs +3 -3
- package/esm2022/components/alert/alert.component.mjs +34 -0
- package/esm2022/components/alert/alert.model.mjs +8 -0
- package/esm2022/components/alert/index.mjs +3 -0
- package/esm2022/components/badge/badge.component.mjs +4 -4
- package/esm2022/components/breadcrumb/breadcrumb.component.mjs +15 -0
- package/esm2022/components/breadcrumb/index.mjs +2 -0
- package/esm2022/components/breadcrumb-group/breadcrumb-group.component.mjs +21 -0
- package/esm2022/components/breadcrumb-group/index.mjs +2 -0
- package/esm2022/components/button/button.directive.mjs +3 -3
- package/esm2022/components/card/card.component.mjs +3 -3
- package/esm2022/components/collapsible/collapsible.component.mjs +5 -5
- package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +3 -3
- package/esm2022/components/dropdown/dropdown.component.mjs +6 -6
- package/esm2022/components/form-field/checkbox/checkbox.component.mjs +6 -13
- package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +3 -3
- package/esm2022/components/form-field/error/error.component.mjs +5 -5
- package/esm2022/components/form-field/form-field.component.mjs +8 -8
- package/esm2022/components/form-field/info/info.component.mjs +4 -4
- package/esm2022/components/form-field/input/input.directive.mjs +36 -5
- package/esm2022/components/form-field/input/input.model.mjs +3 -1
- package/esm2022/components/form-field/radio-button/radio-button.component.mjs +30 -12
- package/esm2022/components/form-field/radio-group/radio-group.component.mjs +47 -7
- package/esm2022/components/icon/icon.component.mjs +33 -18
- package/esm2022/components/icon/index.mjs +1 -3
- package/esm2022/components/index.mjs +6 -3
- package/esm2022/components/main-navigation/main-navigation.component.mjs +8 -9
- package/esm2022/components/main-navigation/main-navigation.model.mjs +1 -1
- package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +6 -10
- package/esm2022/components/modal/modal-trigger.directive.mjs +3 -3
- package/esm2022/components/pill/pill.component.mjs +3 -3
- package/esm2022/components/router-breadcrumbs/index.mjs +2 -0
- package/esm2022/components/router-breadcrumbs/router-breadcrumbs.component.mjs +37 -0
- package/esm2022/components/tab/tab.component.mjs +4 -4
- package/esm2022/components/tab-group/tab-group.component.mjs +3 -3
- package/esm2022/components/tooltip/tooltip.component.mjs +4 -4
- package/esm2022/components/tooltip/tooltip.directive.mjs +3 -3
- package/fesm2022/ndwnu-design-system.mjs +389 -222
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/package.json +4 -7
- package/assets/icons/icons.json +0 -878
- package/components/icon/icon.model.d.ts +0 -5
- package/components/icon/icon.service.d.ts +0 -9
- package/esm2022/components/icon/icon.model.mjs +0 -2
- package/esm2022/components/icon/icon.service.mjs +0 -26
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AlertType } from './alert.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AlertComponent {
|
|
4
|
+
actionable: import("@angular/core").InputSignal<boolean>;
|
|
5
|
+
title: import("@angular/core").InputSignal<string | undefined>;
|
|
6
|
+
type: import("@angular/core").InputSignal<AlertType>;
|
|
7
|
+
close: import("@angular/core").OutputEmitterRef<void>;
|
|
8
|
+
get alertTypeClass(): string;
|
|
9
|
+
get actionableClass(): boolean;
|
|
10
|
+
onClose(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "ndw-alert", never, { "actionable": { "alias": "actionable"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["*"], true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbComponent {
|
|
4
|
+
link: import("@angular/core").InputSignal<string | null>;
|
|
5
|
+
content: import("@angular/core").Signal<TemplateRef<unknown>>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "ndw-breadcrumb", never, { "link": { "alias": "link"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './breadcrumb.component';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BreadcrumbComponent } from '../breadcrumb/breadcrumb.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbGroupComponent {
|
|
4
|
+
protected breadcrumbs: import("@angular/core").Signal<readonly BreadcrumbComponent[]>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbGroupComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbGroupComponent, "ndw-breadcrumb-group", never, {}, {}, ["breadcrumbs"], never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './breadcrumb-group.component';
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class DropdownComponent {
|
|
4
4
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
readonly dropdownTrigger: import("@angular/core").Signal<DropdownTriggerDirective>;
|
|
6
|
-
readonly buttonIcon: import("@angular/core").Signal<"
|
|
6
|
+
readonly buttonIcon: import("@angular/core").Signal<"keyboard_arrow_up" | "keyboard_arrow_down">;
|
|
7
7
|
readonly buttonText: import("@angular/core").InputSignal<string>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ndw-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "buttonText": { "alias": "buttonText"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -7,7 +7,6 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
7
7
|
error: import("@angular/core").InputSignal<boolean>;
|
|
8
8
|
indeterminate: import("@angular/core").InputSignal<boolean>;
|
|
9
9
|
required: import("@angular/core").InputSignal<boolean>;
|
|
10
|
-
switched: import("@angular/core").ModelSignal<boolean>;
|
|
11
10
|
uuid: `${string}-${string}-${string}-${string}-${string}`;
|
|
12
11
|
get checkedClass(): boolean;
|
|
13
12
|
get disabledClass(): boolean;
|
|
@@ -19,5 +18,5 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
19
18
|
registerOnChange(fn: (value: boolean) => void): void;
|
|
20
19
|
registerOnTouched(): void;
|
|
21
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ndw-checkbox", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; };
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ndw-checkbox", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, ["*"], true, never>;
|
|
23
22
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InputDirective implements OnInit {
|
|
4
5
|
set disabled(disabled: boolean);
|
|
@@ -6,8 +7,13 @@ export declare class InputDirective implements OnInit {
|
|
|
6
7
|
set id(id: string);
|
|
7
8
|
private readonly elementRef;
|
|
8
9
|
private readonly destroyRef;
|
|
10
|
+
private readonly ngControl;
|
|
9
11
|
get element(): HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
|
|
12
|
+
get control(): AbstractControl | null;
|
|
10
13
|
ngOnInit(): void;
|
|
14
|
+
private setChangedAttribute;
|
|
15
|
+
private setSelectPlaceholderAttribute;
|
|
16
|
+
private updateRequiredAttribute;
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, never>;
|
|
12
18
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective, "input[ndwInput], select[ndwInput], textarea[ndwInput]", never, {}, {}, never, never, true, never>;
|
|
13
19
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export declare enum InputType {
|
|
2
2
|
Date = "date",
|
|
3
3
|
Email = "email",
|
|
4
|
+
Month = "month",
|
|
4
5
|
Number = "number",
|
|
5
6
|
Password = "password",
|
|
6
7
|
Search = "search",
|
|
7
8
|
Tel = "tel",
|
|
8
9
|
Text = "text",
|
|
9
10
|
Time = "time",
|
|
10
|
-
Url = "url"
|
|
11
|
+
Url = "url",
|
|
12
|
+
Week = "week"
|
|
11
13
|
}
|
|
@@ -2,21 +2,24 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class RadioButtonComponent implements ControlValueAccessor {
|
|
4
4
|
checked: import("@angular/core").ModelSignal<boolean>;
|
|
5
|
-
disabled: import("@angular/core").
|
|
5
|
+
disabled: import("@angular/core").ModelSignal<boolean>;
|
|
6
6
|
error: import("@angular/core").InputSignal<boolean>;
|
|
7
7
|
name: import("@angular/core").ModelSignal<string>;
|
|
8
8
|
required: import("@angular/core").InputSignal<boolean>;
|
|
9
|
-
|
|
9
|
+
value: import("@angular/core").ModelSignal<unknown>;
|
|
10
10
|
uuid: `${string}-${string}-${string}-${string}-${string}`;
|
|
11
11
|
get checkedClass(): boolean;
|
|
12
12
|
get disabledClass(): boolean;
|
|
13
13
|
get tabindexAttr(): number;
|
|
14
|
+
get roleAttr(): string;
|
|
15
|
+
get ariaCheckedAttr(): boolean;
|
|
16
|
+
get ariaDisabledAttr(): boolean;
|
|
14
17
|
onClick(): void;
|
|
15
18
|
onKeyDown(event: KeyboardEvent): void;
|
|
16
|
-
get input(): HTMLInputElement | undefined;
|
|
17
19
|
writeValue(value: boolean): void;
|
|
18
20
|
registerOnChange(fn: (value: boolean) => void): void;
|
|
19
21
|
registerOnTouched(): void;
|
|
22
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ndw-radio-button", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "name": "nameChange"; }, never, ["*"], true, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ndw-radio-button", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; "name": "nameChange"; "value": "valueChange"; }, never, ["*"], true, never>;
|
|
22
25
|
}
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { AfterContentInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
3
|
import { RadioButtonComponent } from '../radio-button';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class RadioGroupComponent implements AfterContentInit {
|
|
5
|
+
export declare class RadioGroupComponent implements AfterContentInit, ControlValueAccessor {
|
|
5
6
|
radioButtons: import("@angular/core").Signal<readonly RadioButtonComponent[]>;
|
|
6
7
|
private uuid;
|
|
8
|
+
private onChange;
|
|
9
|
+
get role(): string;
|
|
7
10
|
ngAfterContentInit(): void;
|
|
11
|
+
writeValue(value: unknown): void;
|
|
12
|
+
registerOnChange(fn: (value: unknown) => void): void;
|
|
13
|
+
registerOnTouched(): void;
|
|
14
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
8
15
|
private setRadioButtonsName;
|
|
16
|
+
private handleCheckedChange;
|
|
9
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
10
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "ndw-radio-group", never, {}, {}, ["radioButtons"], ["*"], true, never>;
|
|
11
19
|
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class IconComponent {
|
|
3
|
-
|
|
3
|
+
export declare class IconComponent implements OnInit {
|
|
4
|
+
private readonly elementRef;
|
|
5
|
+
private readonly renderer;
|
|
4
6
|
interactive: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
protected iconClass: string;
|
|
5
8
|
protected get interactiveClass(): boolean;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
protected get role(): string;
|
|
10
|
+
protected get tabIndex(): number;
|
|
11
|
+
ngOnInit(): void;
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ndw-icon", never, { "
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ndw-icon", never, { "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
11
14
|
}
|
package/components/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from './accordion';
|
|
2
|
+
export * from './alert';
|
|
2
3
|
export * from './badge';
|
|
4
|
+
export * from './breadcrumb';
|
|
5
|
+
export * from './breadcrumb-group';
|
|
3
6
|
export * from './button';
|
|
4
7
|
export * from './card';
|
|
5
8
|
export * from './collapsible';
|
|
@@ -7,9 +10,9 @@ export * from './dropdown';
|
|
|
7
10
|
export * from './form-field';
|
|
8
11
|
export * from './icon';
|
|
9
12
|
export * from './main-navigation';
|
|
13
|
+
export * from './modal';
|
|
10
14
|
export * from './pill';
|
|
15
|
+
export * from './router-breadcrumbs';
|
|
11
16
|
export * from './tab';
|
|
12
17
|
export * from './tab-group';
|
|
13
18
|
export * from './tooltip';
|
|
14
|
-
export * from './dropdown';
|
|
15
|
-
export * from './modal';
|
|
@@ -11,10 +11,10 @@ export declare class MainNavigationComponent implements AfterViewInit {
|
|
|
11
11
|
footerTexts: import("@angular/core").InputSignal<string[] | undefined>;
|
|
12
12
|
isCollapsible: import("@angular/core").InputSignal<boolean>;
|
|
13
13
|
selected: import("@angular/core").OutputEmitterRef<number>;
|
|
14
|
+
isExpanded: import("@angular/core").ModelSignal<boolean>;
|
|
14
15
|
buttons: import("@angular/core").Signal<readonly ElementRef<HTMLButtonElement>[]>;
|
|
15
16
|
childMenuTemplate: import("@angular/core").Signal<TemplateRef<MainNavigationMenuComponent>>;
|
|
16
17
|
brandImagePath: import("@angular/core").Signal<string>;
|
|
17
|
-
isExpanded: import("@angular/core").WritableSignal<boolean>;
|
|
18
18
|
protected get brandAttribute(): string;
|
|
19
19
|
protected get expandedClass(): boolean;
|
|
20
20
|
onMouseMove(event: MouseEvent): void;
|
|
@@ -27,9 +27,9 @@ export declare class MainNavigationComponent implements AfterViewInit {
|
|
|
27
27
|
ngAfterViewInit(): void;
|
|
28
28
|
close(): void;
|
|
29
29
|
open(item: MenuItem): void;
|
|
30
|
-
|
|
30
|
+
handleSelected(id: number): void;
|
|
31
31
|
toggleView(): void;
|
|
32
32
|
private setPositionStrategy;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainNavigationComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "footerTexts": { "alias": "footerTexts"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "footerTexts": { "alias": "footerTexts"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; }, { "selected": "selected"; "isExpanded": "isExpandedChange"; }, never, never, true, never>;
|
|
35
35
|
}
|
|
@@ -2,8 +2,6 @@ import { SimpleMenuItem } from '../main-navigation';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class MainNavigationMenuComponent {
|
|
4
4
|
menuItems: import("@angular/core").InputSignal<SimpleMenuItem[]>;
|
|
5
|
-
selected: import("@angular/core").OutputEmitterRef<number>;
|
|
6
|
-
handleSelected(id: number): void;
|
|
7
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainNavigationMenuComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationMenuComponent, "ndw-main-navigation-menu", never, { "menuItems": { "alias": "menuItems"; "required": true; "isSignal": true; }; }, {
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationMenuComponent, "ndw-main-navigation-menu", never, { "menuItems": { "alias": "menuItems"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
7
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './router-breadcrumbs.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
type RouteBreadcrumb = {
|
|
3
|
+
url: string;
|
|
4
|
+
title: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const breadcrumbRouteDataKey = "breadcrumb";
|
|
7
|
+
export declare class RouterBreadcrumbsComponent {
|
|
8
|
+
private readonly route;
|
|
9
|
+
private readonly router;
|
|
10
|
+
protected readonly breadcrumbs$: import("rxjs").Observable<RouteBreadcrumb[]>;
|
|
11
|
+
private getBreadcrumbs;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RouterBreadcrumbsComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RouterBreadcrumbsComponent, "ndw-router-breadcrumbs", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
export {};
|