@mozaic-ds/angular 0.24.0-beta.5 → 0.24.0-beta.6
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/adeo/components/accordion/accordion.component.d.ts +13 -0
- package/adeo/components/accordion/accordion.d.ts +1 -0
- package/adeo/components/accordion/accordion.module.d.ts +9 -0
- package/adeo/components/accordion/index.d.ts +2 -0
- package/adeo/components/checkbox/checkbox.component.d.ts +8 -3
- package/adeo/components/checkbox-group/checkbox-group.component.d.ts +27 -0
- package/adeo/components/checkbox-group/checkbox-group.module.d.ts +10 -0
- package/adeo/components/checkbox-group/index.d.ts +2 -0
- package/adeo/components/option-buttons/index.d.ts +4 -0
- package/adeo/components/option-buttons/model/option-button.d.ts +3 -0
- package/adeo/components/option-buttons/option-button/option-button.component.d.ts +15 -0
- package/adeo/components/option-buttons/option-buttons.component.d.ts +22 -0
- package/adeo/components/option-buttons/option-buttons.module.d.ts +10 -0
- package/adeo/components/option-buttons/public-api.d.ts +1 -0
- package/adeo/components/option-cards/index.d.ts +4 -0
- package/adeo/components/option-cards/model/option-card.d.ts +4 -0
- package/adeo/components/option-cards/option-card/option-card.component.d.ts +21 -0
- package/adeo/components/option-cards/option-cards.component.d.ts +27 -0
- package/adeo/components/option-cards/option-cards.module.d.ts +10 -0
- package/adeo/components/option-cards/public-api.d.ts +1 -0
- package/adeo/components/password-input/index.d.ts +2 -0
- package/adeo/components/password-input/password-input.component.d.ts +28 -0
- package/adeo/components/password-input/password-input.module.d.ts +9 -0
- package/adeo/components/password-input/public-api.d.ts +1 -0
- package/adeo/components/public-api.d.ts +8 -1
- package/adeo/components/radio/index.d.ts +2 -0
- package/adeo/components/radio/public-api.d.ts +1 -0
- package/adeo/components/radio/radio.component.d.ts +23 -0
- package/adeo/components/radio/radio.module.d.ts +9 -0
- package/adeo/components/rating-stars/input/index.d.ts +3 -0
- package/adeo/components/rating-stars/input/public-api.d.ts +1 -0
- package/adeo/components/rating-stars/input/stars-input.component.d.ts +31 -0
- package/adeo/components/rating-stars/input/stars-input.module.d.ts +9 -0
- package/adeo/components/sidebar/components/feature/moz-sidebar-feature.component.d.ts +20 -0
- package/adeo/components/sidebar/components/home/moz-sidebar-home.component.d.ts +10 -0
- package/adeo/components/sidebar/components/user/moz-sidebar-user.component.d.ts +10 -0
- package/adeo/components/sidebar/components/utility/moz-sidebar-utilty.component.d.ts +15 -0
- package/adeo/components/sidebar/index.d.ts +7 -0
- package/adeo/components/sidebar/model/models.d.ts +5 -0
- package/adeo/components/sidebar/moz-sidebar.component.d.ts +29 -0
- package/adeo/components/sidebar/moz-sidebar.module.d.ts +14 -0
- package/adeo/components/sidebar/public-api.d.ts +1 -0
- package/adeo/esm2020/components/accordion/accordion.component.mjs +35 -0
- package/adeo/esm2020/components/accordion/accordion.mjs +2 -0
- package/adeo/esm2020/components/accordion/accordion.module.mjs +19 -0
- package/adeo/esm2020/components/accordion/index.mjs +3 -0
- package/adeo/esm2020/components/accordion/public-api.mjs +2 -0
- package/adeo/esm2020/components/checkbox/checkbox.component.mjs +22 -8
- package/adeo/esm2020/components/checkbox-group/checkbox-group.component.mjs +101 -0
- package/adeo/esm2020/components/checkbox-group/checkbox-group.module.mjs +20 -0
- package/adeo/esm2020/components/checkbox-group/index.mjs +3 -0
- package/adeo/esm2020/components/checkbox-group/public-api.mjs +2 -0
- package/adeo/esm2020/components/datatable/moz-datatable.component.mjs +1 -1
- package/adeo/esm2020/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.mjs +1 -1
- package/adeo/esm2020/components/listbox/listbox.component.mjs +2 -2
- package/adeo/esm2020/components/option-buttons/index.mjs +5 -0
- package/adeo/esm2020/components/option-buttons/model/option-button.mjs +2 -0
- package/adeo/esm2020/components/option-buttons/option-button/option-button.component.mjs +31 -0
- package/adeo/esm2020/components/option-buttons/option-buttons.component.mjs +73 -0
- package/adeo/esm2020/components/option-buttons/option-buttons.module.mjs +20 -0
- package/adeo/esm2020/components/option-buttons/public-api.mjs +2 -0
- package/adeo/esm2020/components/option-cards/index.mjs +5 -0
- package/adeo/esm2020/components/option-cards/model/option-card.mjs +2 -0
- package/adeo/esm2020/components/option-cards/option-card/option-card.component.mjs +39 -0
- package/adeo/esm2020/components/option-cards/option-cards.component.mjs +101 -0
- package/adeo/esm2020/components/option-cards/option-cards.module.mjs +20 -0
- package/adeo/esm2020/components/option-cards/public-api.mjs +2 -0
- package/adeo/esm2020/components/password-input/index.mjs +3 -0
- package/adeo/esm2020/components/password-input/password-input.component.mjs +87 -0
- package/adeo/esm2020/components/password-input/password-input.module.mjs +19 -0
- package/adeo/esm2020/components/password-input/public-api.mjs +2 -0
- package/adeo/esm2020/components/phone-number/phone-number.component.mjs +2 -2
- package/adeo/esm2020/components/public-api.mjs +9 -2
- package/adeo/esm2020/components/radio/index.mjs +3 -0
- package/adeo/esm2020/components/radio/public-api.mjs +2 -0
- package/adeo/esm2020/components/radio/radio.component.mjs +70 -0
- package/adeo/esm2020/components/radio/radio.module.mjs +19 -0
- package/adeo/esm2020/components/rating-stars/input/index.mjs +4 -0
- package/adeo/esm2020/components/rating-stars/input/public-api.mjs +2 -0
- package/adeo/esm2020/components/rating-stars/input/stars-input.component.mjs +88 -0
- package/adeo/esm2020/components/rating-stars/input/stars-input.module.mjs +19 -0
- package/adeo/esm2020/components/sidebar/components/feature/moz-sidebar-feature.component.mjs +50 -0
- package/adeo/esm2020/components/sidebar/components/home/moz-sidebar-home.component.mjs +24 -0
- package/adeo/esm2020/components/sidebar/components/user/moz-sidebar-user.component.mjs +23 -0
- package/adeo/esm2020/components/sidebar/components/utility/moz-sidebar-utilty.component.mjs +40 -0
- package/adeo/esm2020/components/sidebar/index.mjs +8 -0
- package/adeo/esm2020/components/sidebar/model/models.mjs +2 -0
- package/adeo/esm2020/components/sidebar/moz-sidebar.component.mjs +91 -0
- package/adeo/esm2020/components/sidebar/moz-sidebar.module.mjs +46 -0
- package/adeo/esm2020/components/sidebar/public-api.mjs +2 -0
- package/adeo/fesm2015/mozaic-ds-angular.mjs +982 -44
- package/adeo/fesm2015/mozaic-ds-angular.mjs.map +1 -1
- package/adeo/fesm2020/mozaic-ds-angular.mjs +952 -44
- package/adeo/fesm2020/mozaic-ds-angular.mjs.map +1 -1
- package/adeo/package.json +1 -1
- package/components/accordion/accordion.component.d.ts +13 -0
- package/components/accordion/accordion.d.ts +1 -0
- package/components/accordion/accordion.module.d.ts +9 -0
- package/components/accordion/index.d.ts +2 -0
- package/components/accordion/public-api.d.ts +1 -0
- package/components/checkbox/checkbox.component.d.ts +8 -3
- package/components/checkbox-group/checkbox-group.component.d.ts +27 -0
- package/components/checkbox-group/checkbox-group.module.d.ts +10 -0
- package/components/checkbox-group/index.d.ts +2 -0
- package/components/checkbox-group/public-api.d.ts +1 -0
- package/components/option-buttons/index.d.ts +4 -0
- package/components/option-buttons/model/option-button.d.ts +3 -0
- package/components/option-buttons/option-button/option-button.component.d.ts +15 -0
- package/components/option-buttons/option-buttons.component.d.ts +22 -0
- package/components/option-buttons/option-buttons.module.d.ts +10 -0
- package/components/option-buttons/public-api.d.ts +1 -0
- package/components/option-cards/index.d.ts +4 -0
- package/components/option-cards/model/option-card.d.ts +4 -0
- package/components/option-cards/option-card/option-card.component.d.ts +21 -0
- package/components/option-cards/option-cards.component.d.ts +27 -0
- package/components/option-cards/option-cards.module.d.ts +10 -0
- package/components/option-cards/public-api.d.ts +1 -0
- package/components/password-input/index.d.ts +2 -0
- package/components/password-input/password-input.component.d.ts +28 -0
- package/components/password-input/password-input.module.d.ts +9 -0
- package/components/password-input/public-api.d.ts +1 -0
- package/components/public-api.d.ts +8 -1
- package/components/radio/index.d.ts +2 -0
- package/components/radio/public-api.d.ts +1 -0
- package/components/radio/radio.component.d.ts +23 -0
- package/components/radio/radio.module.d.ts +9 -0
- package/components/rating-stars/input/index.d.ts +3 -0
- package/components/rating-stars/input/public-api.d.ts +1 -0
- package/components/rating-stars/input/stars-input.component.d.ts +31 -0
- package/components/rating-stars/input/stars-input.module.d.ts +9 -0
- package/components/sidebar/components/feature/moz-sidebar-feature.component.d.ts +20 -0
- package/components/sidebar/components/home/moz-sidebar-home.component.d.ts +10 -0
- package/components/sidebar/components/user/moz-sidebar-user.component.d.ts +10 -0
- package/components/sidebar/components/utility/moz-sidebar-utilty.component.d.ts +15 -0
- package/components/sidebar/index.d.ts +7 -0
- package/components/sidebar/model/models.d.ts +5 -0
- package/components/sidebar/moz-sidebar.component.d.ts +29 -0
- package/components/sidebar/moz-sidebar.module.d.ts +14 -0
- package/components/sidebar/public-api.d.ts +1 -0
- package/esm2020/components/accordion/accordion.component.mjs +35 -0
- package/esm2020/components/accordion/accordion.mjs +2 -0
- package/esm2020/components/accordion/accordion.module.mjs +19 -0
- package/esm2020/components/accordion/index.mjs +3 -0
- package/esm2020/components/accordion/public-api.mjs +2 -0
- package/esm2020/components/checkbox/checkbox.component.mjs +22 -8
- package/esm2020/components/checkbox-group/checkbox-group.component.mjs +101 -0
- package/esm2020/components/checkbox-group/checkbox-group.module.mjs +20 -0
- package/esm2020/components/checkbox-group/index.mjs +3 -0
- package/esm2020/components/checkbox-group/public-api.mjs +2 -0
- package/esm2020/components/datatable/moz-datatable.component.mjs +1 -1
- package/esm2020/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.mjs +1 -1
- package/esm2020/components/listbox/listbox.component.mjs +2 -2
- package/esm2020/components/option-buttons/index.mjs +5 -0
- package/esm2020/components/option-buttons/model/option-button.mjs +2 -0
- package/esm2020/components/option-buttons/option-button/option-button.component.mjs +31 -0
- package/esm2020/components/option-buttons/option-buttons.component.mjs +73 -0
- package/esm2020/components/option-buttons/option-buttons.module.mjs +20 -0
- package/esm2020/components/option-buttons/public-api.mjs +2 -0
- package/esm2020/components/option-cards/index.mjs +5 -0
- package/esm2020/components/option-cards/model/option-card.mjs +2 -0
- package/esm2020/components/option-cards/option-card/option-card.component.mjs +39 -0
- package/esm2020/components/option-cards/option-cards.component.mjs +101 -0
- package/esm2020/components/option-cards/option-cards.module.mjs +20 -0
- package/esm2020/components/option-cards/public-api.mjs +2 -0
- package/esm2020/components/password-input/index.mjs +3 -0
- package/esm2020/components/password-input/password-input.component.mjs +87 -0
- package/esm2020/components/password-input/password-input.module.mjs +19 -0
- package/esm2020/components/password-input/public-api.mjs +2 -0
- package/esm2020/components/phone-number/phone-number.component.mjs +2 -2
- package/esm2020/components/public-api.mjs +9 -2
- package/esm2020/components/radio/index.mjs +3 -0
- package/esm2020/components/radio/public-api.mjs +2 -0
- package/esm2020/components/radio/radio.component.mjs +70 -0
- package/esm2020/components/radio/radio.module.mjs +19 -0
- package/esm2020/components/rating-stars/input/index.mjs +4 -0
- package/esm2020/components/rating-stars/input/public-api.mjs +2 -0
- package/esm2020/components/rating-stars/input/stars-input.component.mjs +88 -0
- package/esm2020/components/rating-stars/input/stars-input.module.mjs +19 -0
- package/esm2020/components/sidebar/components/feature/moz-sidebar-feature.component.mjs +50 -0
- package/esm2020/components/sidebar/components/home/moz-sidebar-home.component.mjs +24 -0
- package/esm2020/components/sidebar/components/user/moz-sidebar-user.component.mjs +23 -0
- package/esm2020/components/sidebar/components/utility/moz-sidebar-utilty.component.mjs +40 -0
- package/esm2020/components/sidebar/index.mjs +8 -0
- package/esm2020/components/sidebar/model/models.mjs +2 -0
- package/esm2020/components/sidebar/moz-sidebar.component.mjs +91 -0
- package/esm2020/components/sidebar/moz-sidebar.module.mjs +46 -0
- package/{adeo/esm2020/components/card → esm2020/components/sidebar}/public-api.mjs +1 -1
- package/fesm2015/mozaic-ds-angular.mjs +982 -44
- package/fesm2015/mozaic-ds-angular.mjs.map +1 -1
- package/fesm2020/mozaic-ds-angular.mjs +952 -44
- package/fesm2020/mozaic-ds-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/adeo/components/card/card.component.d.ts +0 -11
- package/adeo/components/card/card.module.d.ts +0 -8
- package/adeo/components/card/index.d.ts +0 -3
- package/adeo/components/card/model/card.d.ts +0 -1
- package/adeo/esm2020/components/card/card.component.mjs +0 -27
- package/adeo/esm2020/components/card/card.module.mjs +0 -18
- package/adeo/esm2020/components/card/index.mjs +0 -4
- package/adeo/esm2020/components/card/model/card.mjs +0 -2
- package/components/card/card.component.d.ts +0 -11
- package/components/card/card.module.d.ts +0 -8
- package/components/card/index.d.ts +0 -3
- package/components/card/model/card.d.ts +0 -1
- package/esm2020/components/card/card.component.mjs +0 -27
- package/esm2020/components/card/card.module.mjs +0 -18
- package/esm2020/components/card/index.mjs +0 -4
- package/esm2020/components/card/model/card.mjs +0 -2
- package/esm2020/components/card/public-api.mjs +0 -2
- /package/adeo/components/{card → accordion}/public-api.d.ts +0 -0
- /package/{components/card → adeo/components/checkbox-group}/public-api.d.ts +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccordionSize } from './accordion';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AccordionComponent {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
noPadding: boolean;
|
|
7
|
+
size: AccordionSize;
|
|
8
|
+
get isHidden(): boolean;
|
|
9
|
+
get isSizeS(): boolean;
|
|
10
|
+
changeState(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "moz-accordion", never, { "isOpen": "isOpen"; "disabled": "disabled"; "noPadding": "noPadding"; "size": "size"; }, {}, never, ["[beforeLabel]", "[label]", "[afterLabel]", "[content]"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AccordionSize = 'm' | 's';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./accordion.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class AccordionModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AccordionModule, [typeof i1.AccordionComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.AccordionComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AccordionModule>;
|
|
9
|
+
}
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
1
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare const CHECKBOX_CONTROL_VALUE_ACCESSOR: any;
|
|
4
5
|
export declare class CheckboxComponent implements ControlValueAccessor {
|
|
6
|
+
private cd;
|
|
5
7
|
disabled: boolean;
|
|
6
8
|
indeterminate: boolean;
|
|
7
9
|
invalid: boolean;
|
|
10
|
+
private toggleEvent;
|
|
8
11
|
private _checked;
|
|
9
12
|
get checked(): boolean;
|
|
10
|
-
|
|
11
|
-
constructor();
|
|
13
|
+
id?: string;
|
|
14
|
+
constructor(cd: ChangeDetectorRef);
|
|
12
15
|
set checked(v: boolean);
|
|
13
16
|
writeValue(value: any): void;
|
|
14
17
|
registerOnChange(fn: any): void;
|
|
@@ -16,6 +19,8 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
16
19
|
onChange: any;
|
|
17
20
|
onTouch: any;
|
|
18
21
|
toggle(): void;
|
|
22
|
+
refreshView(): void;
|
|
23
|
+
getToggleEvent(): EventEmitter<string>;
|
|
19
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "moz-checkbox", never, { "disabled": "disabled"; "indeterminate": "indeterminate"; "invalid": "invalid"; "checked": "checked"; }, {}, never, ["*"], false, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "moz-checkbox", never, { "disabled": "disabled"; "indeterminate": "indeterminate"; "invalid": "invalid"; "id": "id"; "checked": "checked"; }, {}, never, ["*"], false, never>;
|
|
21
26
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Injector, OnInit, QueryList } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
|
+
import { CheckboxComponent } from '../checkbox/checkbox.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckboxGroupComponent implements OnInit, ControlValueAccessor {
|
|
6
|
+
private injector;
|
|
7
|
+
legend: string;
|
|
8
|
+
requirementText: string;
|
|
9
|
+
helpId: string;
|
|
10
|
+
helpText: string;
|
|
11
|
+
inline: boolean;
|
|
12
|
+
control: FormControl;
|
|
13
|
+
onCheckboxGroupChange: any;
|
|
14
|
+
onCheckboxGroupTouch: any;
|
|
15
|
+
checkboxSelectedId?: string[];
|
|
16
|
+
checkboxComponents?: QueryList<CheckboxComponent>;
|
|
17
|
+
constructor(injector: Injector);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngAfterContentInit(): void;
|
|
20
|
+
updateOptionCardChecked(checkboxSelected?: string[]): void;
|
|
21
|
+
writeValue(selectedCheckboxGroup?: string[]): void;
|
|
22
|
+
registerOnChange(fn: any): void;
|
|
23
|
+
registerOnTouched(fn: any): void;
|
|
24
|
+
selectedCheckboxGroupEvent(selectedCheckboxId: string): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "moz-checkbox-group", never, { "legend": "legend"; "requirementText": "requirementText"; "helpId": "helpId"; "helpText": "helpText"; "inline": "inline"; }, {}, ["checkboxComponents"], ["*"], false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./checkbox-group.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../checkbox/checkbox.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class CheckboxGroupModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckboxGroupModule, [typeof i1.CheckboxGroupComponent], [typeof i2.CommonModule, typeof i3.CheckboxModule, typeof i4.FormsModule], [typeof i1.CheckboxGroupComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CheckboxGroupModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OptionButtonComponent {
|
|
4
|
+
private cd;
|
|
5
|
+
name?: string;
|
|
6
|
+
value?: string;
|
|
7
|
+
id: string;
|
|
8
|
+
clicked: EventEmitter<string>;
|
|
9
|
+
checked: boolean;
|
|
10
|
+
constructor(cd: ChangeDetectorRef);
|
|
11
|
+
buttonClicked(id: string): void;
|
|
12
|
+
refreshView(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionButtonComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionButtonComponent, "moz-option-button", never, { "name": "name"; "value": "value"; "id": "id"; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Injector, OnInit, QueryList } from '@angular/core';
|
|
2
|
+
import { OptionButtonComponent } from './option-button/option-button.component';
|
|
3
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
4
|
+
import { OptionButtonSelected } from './public-api';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OptionButtonsComponent implements ControlValueAccessor, OnInit {
|
|
7
|
+
private injector;
|
|
8
|
+
optionButtonComponents?: QueryList<OptionButtonComponent>;
|
|
9
|
+
optionButtonSelected?: OptionButtonSelected;
|
|
10
|
+
control: FormControl;
|
|
11
|
+
onOptionButtonsChange: any;
|
|
12
|
+
onOptionButtonsTouch: any;
|
|
13
|
+
constructor(injector: Injector);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngAfterContentInit(): void;
|
|
16
|
+
writeValue(value: OptionButtonSelected): void;
|
|
17
|
+
updateOptionButtonChecked(id: string): void;
|
|
18
|
+
registerOnChange(fn: any): void;
|
|
19
|
+
registerOnTouched(fn: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionButtonsComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionButtonsComponent, "moz-option-buttons", never, {}, {}, ["optionButtonComponents"], ["*"], false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./option-buttons.component";
|
|
3
|
+
import * as i2 from "./option-button/option-button.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class OptionButtonsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionButtonsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OptionButtonsModule, [typeof i1.OptionButtonsComponent, typeof i2.OptionButtonComponent], [typeof i3.CommonModule, typeof i4.FormsModule], [typeof i1.OptionButtonsComponent, typeof i2.OptionButtonComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OptionButtonsModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { OptionCardSelected, OptionCardType } from '../model/option-card';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class OptionCardComponent {
|
|
5
|
+
private cd;
|
|
6
|
+
id: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
clicked: EventEmitter<OptionCardSelected>;
|
|
11
|
+
checked: boolean;
|
|
12
|
+
centered: boolean;
|
|
13
|
+
small: boolean;
|
|
14
|
+
noPadding: boolean;
|
|
15
|
+
type: OptionCardType;
|
|
16
|
+
constructor(cd: ChangeDetectorRef);
|
|
17
|
+
cardChanged(id: string): void;
|
|
18
|
+
refreshView(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionCardComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionCardComponent, "moz-option-card", never, { "id": "id"; "name": "name"; "label": "label"; "disabled": "disabled"; }, { "clicked": "clicked"; }, never, ["[content]"], false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Injector, OnInit, QueryList } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
|
+
import { OptionCardComponent } from './option-card/option-card.component';
|
|
4
|
+
import { OptionCardSelected, OptionCardType } from './model/option-card';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OptionCardsComponent implements ControlValueAccessor, OnInit {
|
|
7
|
+
private injector;
|
|
8
|
+
optionCardComponents?: QueryList<OptionCardComponent>;
|
|
9
|
+
selectedOptionCards?: OptionCardSelected[];
|
|
10
|
+
control: FormControl;
|
|
11
|
+
onOptionCardsChange: any;
|
|
12
|
+
onOptionCardsTouch: any;
|
|
13
|
+
optionCardType: OptionCardType;
|
|
14
|
+
centered: boolean;
|
|
15
|
+
small: boolean;
|
|
16
|
+
noPadding: boolean;
|
|
17
|
+
constructor(injector: Injector);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngAfterContentInit(): void;
|
|
20
|
+
writeValue(selectedOptionCards?: OptionCardSelected[]): void;
|
|
21
|
+
registerOnChange(fn: any): void;
|
|
22
|
+
registerOnTouched(fn: any): void;
|
|
23
|
+
updateOptionCardChecked(selectedOptionCards?: OptionCardSelected[]): void;
|
|
24
|
+
selectedCardEvent(selectedCard: OptionCardSelected): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionCardsComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionCardsComponent, "moz-option-cards", never, { "optionCardType": "optionCardType"; "centered": "centered"; "small": "small"; "noPadding": "noPadding"; }, {}, ["optionCardComponents"], ["*"], false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./option-cards.component";
|
|
3
|
+
import * as i2 from "./option-card/option-card.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class OptionCardsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionCardsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OptionCardsModule, [typeof i1.OptionCardsComponent, typeof i2.OptionCardComponent], [typeof i3.CommonModule, typeof i4.FormsModule], [typeof i1.OptionCardsComponent, typeof i2.OptionCardComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OptionCardsModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PasswordInputComponent implements OnInit, ControlValueAccessor {
|
|
5
|
+
private injector;
|
|
6
|
+
showLabel: string;
|
|
7
|
+
hideLabel: string;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
name: string;
|
|
10
|
+
id: string;
|
|
11
|
+
valid: boolean;
|
|
12
|
+
invalid: boolean;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
value: string;
|
|
15
|
+
hidePassword: boolean;
|
|
16
|
+
control: FormControl;
|
|
17
|
+
onPasswordInputChange: any;
|
|
18
|
+
onPasswordInputTouch: any;
|
|
19
|
+
constructor(injector: Injector);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
writeValue(value: string): void;
|
|
22
|
+
registerOnChange(fn: any): void;
|
|
23
|
+
registerOnTouched(fn: any): void;
|
|
24
|
+
showPassword(): void;
|
|
25
|
+
passwordChange($event: Event): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordInputComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordInputComponent, "moz-password-input", never, { "showLabel": "showLabel"; "hideLabel": "hideLabel"; "placeholder": "placeholder"; "name": "name"; "id": "id"; "valid": "valid"; "invalid": "invalid"; "disabled": "disabled"; }, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./password-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class PasswordInputModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordInputModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PasswordInputModule, [typeof i1.PasswordInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.PasswordInputComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PasswordInputModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -31,7 +31,14 @@ export * from './link/public-api';
|
|
|
31
31
|
export * from './breadcrumb/public-api';
|
|
32
32
|
export * from './quantity-selector/public-api';
|
|
33
33
|
export * from './phone-number/public-api';
|
|
34
|
-
export * from './
|
|
34
|
+
export * from './sidebar/public-api';
|
|
35
35
|
export * from './kpi/public-api';
|
|
36
36
|
export * from './rating-stars/result/public-api';
|
|
37
37
|
export * from './dividers/public-api';
|
|
38
|
+
export * from './option-cards/public-api';
|
|
39
|
+
export * from './checkbox-group/public-api';
|
|
40
|
+
export * from './password-input/public-api';
|
|
41
|
+
export * from './radio/public-api';
|
|
42
|
+
export * from './option-buttons/public-api';
|
|
43
|
+
export * from './rating-stars/input/public-api';
|
|
44
|
+
export * from './accordion/public-api';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadioComponent implements OnInit, ControlValueAccessor {
|
|
5
|
+
private injector;
|
|
6
|
+
private cd;
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
invalid: boolean;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
checked: boolean;
|
|
12
|
+
control: FormControl;
|
|
13
|
+
onRadioChange: any;
|
|
14
|
+
onRadioTouch: any;
|
|
15
|
+
constructor(injector: Injector, cd: ChangeDetectorRef);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
writeValue(checked: boolean): void;
|
|
18
|
+
registerOnChange(fn: any): void;
|
|
19
|
+
registerOnTouched(fn: any): void;
|
|
20
|
+
handleChange($event: Event): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "moz-radio", never, { "id": "id"; "name": "name"; "invalid": "invalid"; "disabled": "disabled"; }, {}, never, ["[label]"], false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./radio.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class RadioModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RadioModule, [typeof i1.RadioComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.RadioComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RadioModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { StarsSize } from '../model/rating-stars';
|
|
3
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
type RatingStar = {
|
|
6
|
+
label: string;
|
|
7
|
+
checked: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare class StarsInputComponent implements OnInit, ControlValueAccessor {
|
|
10
|
+
private injector;
|
|
11
|
+
private cd;
|
|
12
|
+
size: StarsSize;
|
|
13
|
+
ratingLabels: string[];
|
|
14
|
+
unselectedText: string;
|
|
15
|
+
name: string;
|
|
16
|
+
onRatingStarChange: any;
|
|
17
|
+
onRatingStarTouch: any;
|
|
18
|
+
ratingStars: RatingStar[];
|
|
19
|
+
selectedStar?: number;
|
|
20
|
+
control: FormControl;
|
|
21
|
+
constructor(injector: Injector, cd: ChangeDetectorRef);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
writeValue(value: number): void;
|
|
24
|
+
registerOnChange(fn: any): void;
|
|
25
|
+
registerOnTouched(fn: any): void;
|
|
26
|
+
private updateChecked;
|
|
27
|
+
clickStarEvent(index: number): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StarsInputComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StarsInputComponent, "moz-stars-input", never, { "size": "size"; "ratingLabels": "ratingLabels"; "unselectedText": "unselectedText"; "name": "name"; }, {}, never, never, false, never>;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stars-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class StarsInputModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StarsInputModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StarsInputModule, [typeof i1.StarsInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.StarsInputComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StarsInputModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MozSidebarFeatureComponent {
|
|
4
|
+
featuresCmp?: QueryList<MozSidebarFeatureComponent>;
|
|
5
|
+
tmplIcon: TemplateRef<unknown>;
|
|
6
|
+
tmplText: TemplateRef<unknown>;
|
|
7
|
+
link?: string | string[];
|
|
8
|
+
selected: boolean;
|
|
9
|
+
disable: boolean;
|
|
10
|
+
_category: boolean;
|
|
11
|
+
_subCategory: boolean;
|
|
12
|
+
localOpen: boolean;
|
|
13
|
+
constructor();
|
|
14
|
+
get category(): boolean | '';
|
|
15
|
+
set category(value: boolean | '');
|
|
16
|
+
get subCategory(): boolean | '';
|
|
17
|
+
set subCategory(value: boolean | '');
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarFeatureComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MozSidebarFeatureComponent, "moz-sidebar-feature, a[moz-sidebar-feature]", never, { "link": "link"; "selected": "selected"; "disable": "disable"; "category": "category"; "subCategory": "subCategory"; }, {}, ["tmplIcon", "tmplText", "featuresCmp"], ["*"], false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MozSidebarHomeComponent {
|
|
4
|
+
link?: string | string[];
|
|
5
|
+
selected: boolean;
|
|
6
|
+
tmplIcon: TemplateRef<unknown>;
|
|
7
|
+
tmplText: TemplateRef<unknown>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarHomeComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MozSidebarHomeComponent, "moz-sidebar-home, a[moz-sidebar-home]", never, { "link": "link"; "selected": "selected"; }, {}, ["tmplIcon", "tmplText"], ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TemplateRef, QueryList } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MozSidebarUserComponent {
|
|
4
|
+
templateRef: TemplateRef<unknown>;
|
|
5
|
+
tmplPicture: TemplateRef<unknown>;
|
|
6
|
+
features: QueryList<TemplateRef<unknown>>;
|
|
7
|
+
localOpen: boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarUserComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MozSidebarUserComponent, "moz-sidebar-user", never, {}, {}, ["templateRef", "tmplPicture", "features"], ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MozSidebarUtilityComponent {
|
|
4
|
+
featuresCmp?: QueryList<MozSidebarUtilityComponent>;
|
|
5
|
+
tmplIcon: TemplateRef<unknown>;
|
|
6
|
+
tmplText: TemplateRef<unknown>;
|
|
7
|
+
link?: string | string[];
|
|
8
|
+
selected: boolean;
|
|
9
|
+
disable: boolean;
|
|
10
|
+
_category: boolean;
|
|
11
|
+
get category(): boolean | '';
|
|
12
|
+
set category(value: boolean | '');
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarUtilityComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MozSidebarUtilityComponent, "moz-sidebar-utility, a[moz-sidebar-utility]", never, { "link": "link"; "selected": "selected"; "disable": "disable"; "category": "category"; }, {}, ["tmplIcon", "tmplText", "featuresCmp"], ["*"], false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './moz-sidebar.component';
|
|
2
|
+
export * from './components/home/moz-sidebar-home.component';
|
|
3
|
+
export * from './components/feature/moz-sidebar-feature.component';
|
|
4
|
+
export * from './components/utility/moz-sidebar-utilty.component';
|
|
5
|
+
export * from './components/user/moz-sidebar-user.component';
|
|
6
|
+
export * from './model/models';
|
|
7
|
+
export * from './moz-sidebar.module';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit, QueryList } from '@angular/core';
|
|
2
|
+
import { MozSidebarFeatureComponent } from './components/feature/moz-sidebar-feature.component';
|
|
3
|
+
import { MozSidebarHomeComponent } from './components/home/moz-sidebar-home.component';
|
|
4
|
+
import { MozSidebarUserComponent } from './components/user/moz-sidebar-user.component';
|
|
5
|
+
import { MozSidebarUtilityComponent } from './components/utility/moz-sidebar-utilty.component';
|
|
6
|
+
import { SidebarOptions } from './model/models';
|
|
7
|
+
import { RouterLinkActive, RouterLinkWithHref } from '@angular/router';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class MozSidebarComponent implements OnInit {
|
|
10
|
+
readonly routerLinkActive: RouterLinkActive | null;
|
|
11
|
+
readonly routerLink: RouterLinkWithHref | null;
|
|
12
|
+
homeCmp?: MozSidebarHomeComponent;
|
|
13
|
+
featuresCmp?: QueryList<MozSidebarFeatureComponent>;
|
|
14
|
+
utilitiesCmp?: QueryList<MozSidebarUtilityComponent>;
|
|
15
|
+
userCmp?: MozSidebarUserComponent;
|
|
16
|
+
options?: SidebarOptions;
|
|
17
|
+
localOpen: boolean;
|
|
18
|
+
activeSubFeature?: MozSidebarFeatureComponent;
|
|
19
|
+
defaultOptions: SidebarOptions;
|
|
20
|
+
constructor(routerLinkActive: RouterLinkActive | null, routerLink: RouterLinkWithHref | null);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
toggleSidebar(): void;
|
|
23
|
+
toggleUser(): void;
|
|
24
|
+
select(item: MozSidebarFeatureComponent | MozSidebarHomeComponent | MozSidebarUtilityComponent): void;
|
|
25
|
+
selectSubFeature(item: MozSidebarFeatureComponent): void;
|
|
26
|
+
closeSubFeature(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarComponent, [{ optional: true; }, { optional: true; }]>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MozSidebarComponent, "moz-sidebar", never, { "options": "options"; }, {}, ["homeCmp", "userCmp", "featuresCmp", "utilitiesCmp"], never, false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./moz-sidebar.component";
|
|
3
|
+
import * as i2 from "./components/home/moz-sidebar-home.component";
|
|
4
|
+
import * as i3 from "./components/feature/moz-sidebar-feature.component";
|
|
5
|
+
import * as i4 from "./components/utility/moz-sidebar-utilty.component";
|
|
6
|
+
import * as i5 from "./components/user/moz-sidebar-user.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "../icon/icon.module";
|
|
9
|
+
import * as i8 from "@angular/router";
|
|
10
|
+
export declare class MozSidebarModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MozSidebarModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MozSidebarModule, [typeof i1.MozSidebarComponent, typeof i2.MozSidebarHomeComponent, typeof i3.MozSidebarFeatureComponent, typeof i4.MozSidebarUtilityComponent, typeof i5.MozSidebarUserComponent], [typeof i6.CommonModule, typeof i7.IconModule, typeof i8.RouterModule], [typeof i1.MozSidebarComponent, typeof i2.MozSidebarHomeComponent, typeof i3.MozSidebarFeatureComponent, typeof i4.MozSidebarUtilityComponent, typeof i5.MozSidebarUserComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MozSidebarModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|