@natec/mef-dev-ui-kit 0.0.1
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/README.md +24 -0
- package/esm2020/lib/markup-kit/card/card/card.component.mjs +37 -0
- package/esm2020/lib/markup-kit/card/card-long/card-long.component.mjs +46 -0
- package/esm2020/lib/markup-kit/card/card-long/cart-type-colors.enum.mjs +7 -0
- package/esm2020/lib/markup-kit/card/card-simple/card-simple.component.mjs +23 -0
- package/esm2020/lib/markup-kit/card/card.module.mjs +45 -0
- package/esm2020/lib/markup-kit/card/index.mjs +5 -0
- package/esm2020/lib/markup-kit/collapse/collapse/collapse.component.mjs +87 -0
- package/esm2020/lib/markup-kit/collapse/collapse-set/collapse-set.component.mjs +54 -0
- package/esm2020/lib/markup-kit/collapse/collapse.module.mjs +25 -0
- package/esm2020/lib/markup-kit/collapse/index.mjs +4 -0
- package/esm2020/lib/markup-kit/modals/fill/fill.component.mjs +52 -0
- package/esm2020/lib/markup-kit/modals/index.mjs +7 -0
- package/esm2020/lib/markup-kit/modals/markup-kit.module.mjs +49 -0
- package/esm2020/lib/markup-kit/modals/modal-size.enum.mjs +2 -0
- package/esm2020/lib/markup-kit/modals/right-filter/right-filter.component.mjs +28 -0
- package/esm2020/lib/markup-kit/modals/slide-right/slide-right.component.mjs +55 -0
- package/esm2020/lib/markup-kit/modals/slide-up/slide-up.component.mjs +55 -0
- package/esm2020/lib/markup-kit/page-layouts/central-page/central-page.component.mjs +25 -0
- package/esm2020/lib/markup-kit/page-layouts/central-page-row/central-page-row.component.mjs +14 -0
- package/esm2020/lib/markup-kit/page-layouts/index.mjs +7 -0
- package/esm2020/lib/markup-kit/page-layouts/manage-page/manage-page.component.mjs +25 -0
- package/esm2020/lib/markup-kit/page-layouts/page-layouts.module.mjs +49 -0
- package/esm2020/lib/markup-kit/page-layouts/profile/profile.component.mjs +49 -0
- package/esm2020/lib/markup-kit/page-layouts/table-page/table-page.component.mjs +18 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.mjs +40 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field-item/filtered-field-item.component.mjs +29 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field.module.mjs +31 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field.service.mjs +30 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/filtred-item.model.mjs +9 -0
- package/esm2020/lib/markup-kit/utils/filtered-field/index.mjs +5 -0
- package/esm2020/lib/markup-kit/utils/help-block/help-block.component.mjs +44 -0
- package/esm2020/lib/markup-kit/utils/help-block/hepl-block.module.mjs +30 -0
- package/esm2020/lib/markup-kit/utils/help-block/index.mjs +3 -0
- package/esm2020/lib/markup-kit/utils/loader/index.mjs +5 -0
- package/esm2020/lib/markup-kit/utils/loader/loader/loader.component.mjs +27 -0
- package/esm2020/lib/markup-kit/utils/loader/loader.module.mjs +58 -0
- package/esm2020/lib/markup-kit/utils/loader/loader.service.mjs +50 -0
- package/esm2020/lib/markup-kit/utils/loader/request-event.enum.mjs +7 -0
- package/esm2020/lib/pg-components/card/card.components.mjs +253 -0
- package/esm2020/lib/pg-components/card/card.module.mjs +25 -0
- package/esm2020/lib/pg-components/card/index.mjs +3 -0
- package/esm2020/lib/pg-components/progress/index.mjs +4 -0
- package/esm2020/lib/pg-components/progress/progress.component.mjs +39 -0
- package/esm2020/lib/pg-components/progress/progress.config.mjs +14 -0
- package/esm2020/lib/pg-components/progress/progress.module.mjs +22 -0
- package/esm2020/lib/pg-components/select/index.mjs +5 -0
- package/esm2020/lib/pg-components/select/option.component.mjs +60 -0
- package/esm2020/lib/pg-components/select/option.pipe.mjs +42 -0
- package/esm2020/lib/pg-components/select/select.component.mjs +762 -0
- package/esm2020/lib/pg-components/select/select.module.mjs +22 -0
- package/esm2020/lib/pg-components/spec-flow-test/index.mjs +3 -0
- package/esm2020/lib/pg-components/spec-flow-test/spec-flow-test/spec-flow-test.component.mjs +24 -0
- package/esm2020/lib/pg-components/spec-flow-test/spec-flow-test.module.mjs +27 -0
- package/esm2020/lib/pg-components/switch/index.mjs +3 -0
- package/esm2020/lib/pg-components/switch/switch.component.mjs +130 -0
- package/esm2020/lib/pg-components/switch/switch.module.mjs +18 -0
- package/esm2020/lib/pg-components/tabs/index.mjs +8 -0
- package/esm2020/lib/pg-components/tabs/tab-body.component.mjs +22 -0
- package/esm2020/lib/pg-components/tabs/tab-label.directive.mjs +44 -0
- package/esm2020/lib/pg-components/tabs/tab.component.mjs +66 -0
- package/esm2020/lib/pg-components/tabs/tabs-ink-bar.directive.mjs +78 -0
- package/esm2020/lib/pg-components/tabs/tabs-nav.component.mjs +335 -0
- package/esm2020/lib/pg-components/tabs/tabs.module.mjs +24 -0
- package/esm2020/lib/pg-components/tabs/tabset.component.mjs +260 -0
- package/esm2020/lib/pg-components/util/convert.mjs +4 -0
- package/esm2020/lib/pg-components/util/request-animation.mjs +26 -0
- package/esm2020/mef-dev-ui-kit.mjs +5 -0
- package/esm2020/public-api.mjs +16 -0
- package/fesm2015/mef-dev-ui-kit.mjs +3190 -0
- package/fesm2015/mef-dev-ui-kit.mjs.map +1 -0
- package/fesm2020/mef-dev-ui-kit.mjs +3183 -0
- package/fesm2020/mef-dev-ui-kit.mjs.map +1 -0
- package/lib/markup-kit/card/card/card.component.d.ts +17 -0
- package/lib/markup-kit/card/card-long/card-long.component.d.ts +21 -0
- package/lib/markup-kit/card/card-long/cart-type-colors.enum.d.ts +5 -0
- package/lib/markup-kit/card/card-simple/card-simple.component.d.ts +10 -0
- package/lib/markup-kit/card/card.module.d.ts +18 -0
- package/lib/markup-kit/card/index.d.ts +4 -0
- package/lib/markup-kit/collapse/collapse/collapse.component.d.ts +19 -0
- package/lib/markup-kit/collapse/collapse-set/collapse-set.component.d.ts +18 -0
- package/lib/markup-kit/collapse/collapse.module.d.ts +14 -0
- package/lib/markup-kit/collapse/index.d.ts +3 -0
- package/lib/markup-kit/modals/fill/fill.component.d.ts +17 -0
- package/lib/markup-kit/modals/index.d.ts +6 -0
- package/lib/markup-kit/modals/markup-kit.module.d.ts +14 -0
- package/lib/markup-kit/modals/modal-size.enum.d.ts +5 -0
- package/lib/markup-kit/modals/right-filter/right-filter.component.d.ts +13 -0
- package/lib/markup-kit/modals/slide-right/slide-right.component.d.ts +19 -0
- package/lib/markup-kit/modals/slide-up/slide-up.component.d.ts +19 -0
- package/lib/markup-kit/page-layouts/central-page/central-page.component.d.ts +11 -0
- package/lib/markup-kit/page-layouts/central-page-row/central-page-row.component.d.ts +8 -0
- package/lib/markup-kit/page-layouts/index.d.ts +6 -0
- package/lib/markup-kit/page-layouts/manage-page/manage-page.component.d.ts +11 -0
- package/lib/markup-kit/page-layouts/page-layouts.module.d.ts +14 -0
- package/lib/markup-kit/page-layouts/profile/profile.component.d.ts +27 -0
- package/lib/markup-kit/page-layouts/table-page/table-page.component.d.ts +9 -0
- package/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.d.ts +14 -0
- package/lib/markup-kit/utils/filtered-field/filtered-field-item/filtered-field-item.component.d.ts +14 -0
- package/lib/markup-kit/utils/filtered-field/filtered-field.module.d.ts +9 -0
- package/lib/markup-kit/utils/filtered-field/filtered-field.service.d.ts +14 -0
- package/lib/markup-kit/utils/filtered-field/filtred-item.model.d.ts +7 -0
- package/lib/markup-kit/utils/filtered-field/index.d.ts +4 -0
- package/lib/markup-kit/utils/help-block/help-block.component.d.ts +10 -0
- package/lib/markup-kit/utils/help-block/hepl-block.module.d.ts +10 -0
- package/lib/markup-kit/utils/help-block/index.d.ts +2 -0
- package/lib/markup-kit/utils/loader/index.d.ts +4 -0
- package/lib/markup-kit/utils/loader/loader/loader.component.d.ts +12 -0
- package/lib/markup-kit/utils/loader/loader.module.d.ts +9 -0
- package/lib/markup-kit/utils/loader/loader.service.d.ts +15 -0
- package/lib/markup-kit/utils/loader/request-event.enum.d.ts +5 -0
- package/lib/pg-components/card/card.components.d.ts +60 -0
- package/lib/pg-components/card/card.module.d.ts +12 -0
- package/lib/pg-components/card/index.d.ts +2 -0
- package/lib/pg-components/progress/index.d.ts +3 -0
- package/lib/pg-components/progress/progress.component.d.ts +15 -0
- package/lib/pg-components/progress/progress.config.d.ts +7 -0
- package/lib/pg-components/progress/progress.module.d.ts +10 -0
- package/lib/pg-components/select/index.d.ts +4 -0
- package/lib/pg-components/select/option.component.d.ts +21 -0
- package/lib/pg-components/select/option.pipe.d.ts +8 -0
- package/lib/pg-components/select/select.component.d.ts +135 -0
- package/lib/pg-components/select/select.module.d.ts +12 -0
- package/lib/pg-components/spec-flow-test/index.d.ts +2 -0
- package/lib/pg-components/spec-flow-test/spec-flow-test/spec-flow-test.component.d.ts +22 -0
- package/lib/pg-components/spec-flow-test/spec-flow-test.module.d.ts +10 -0
- package/lib/pg-components/switch/index.d.ts +2 -0
- package/lib/pg-components/switch/switch.component.d.ts +29 -0
- package/lib/pg-components/switch/switch.module.d.ts +8 -0
- package/lib/pg-components/tabs/index.d.ts +7 -0
- package/lib/pg-components/tabs/tab-body.component.d.ts +7 -0
- package/lib/pg-components/tabs/tab-label.directive.d.ts +15 -0
- package/lib/pg-components/tabs/tab.component.d.ts +22 -0
- package/lib/pg-components/tabs/tabs-ink-bar.directive.d.ts +23 -0
- package/lib/pg-components/tabs/tabs-nav.component.d.ts +79 -0
- package/lib/pg-components/tabs/tabs.module.d.ts +14 -0
- package/lib/pg-components/tabs/tabset.component.d.ts +67 -0
- package/lib/pg-components/util/convert.d.ts +1 -0
- package/lib/pg-components/util/request-animation.d.ts +1 -0
- package/mef-dev-ui-kit.d.ts +5 -0
- package/package.json +44 -0
- package/public-api.d.ts +14 -0
- package/src/lib/styles/designe-colors.scss +68 -0
- package/src/lib/styles/fonts.scss +90 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { CartTypeColors } from './cart-type-colors.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CardLongComponent implements OnInit {
|
|
6
|
+
private router;
|
|
7
|
+
title: TemplateRef<void>;
|
|
8
|
+
params: TemplateRef<void>;
|
|
9
|
+
second_col: TemplateRef<void>;
|
|
10
|
+
third_col: TemplateRef<void>;
|
|
11
|
+
type_text: string;
|
|
12
|
+
type_color: CartTypeColors;
|
|
13
|
+
img: string;
|
|
14
|
+
imgUrl: string;
|
|
15
|
+
description: string;
|
|
16
|
+
constructor(router: Router);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
imgClick(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardLongComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardLongComponent, "medev-card-long", never, { "type_text": "type_text"; "type_color": "type_color"; "img": "img"; "imgUrl": "imgUrl"; "description": "description"; }, {}, ["title", "params", "second_col", "third_col"], never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CardSimpleComponent implements OnInit {
|
|
4
|
+
isDisabled: boolean;
|
|
5
|
+
card_title: TemplateRef<void>;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardSimpleComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardSimpleComponent, "medev-card-simple", never, { "isDisabled": "disabled"; }, {}, ["card_title"], ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CardComponent } from './card/card.component';
|
|
2
|
+
import { CardLongComponent } from './card-long/card-long.component';
|
|
3
|
+
import { CardSimpleComponent } from './card-simple/card-simple.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./card/card.component";
|
|
6
|
+
import * as i2 from "./card-long/card-long.component";
|
|
7
|
+
import * as i3 from "./card-simple/card-simple.component";
|
|
8
|
+
import * as i4 from "@angular/common";
|
|
9
|
+
import * as i5 from "../collapse/collapse.module";
|
|
10
|
+
import * as i6 from "../../pg-components/select/select.module";
|
|
11
|
+
import * as i7 from "../../pg-components/card/card.module";
|
|
12
|
+
import * as i8 from "@ngx-translate/core";
|
|
13
|
+
export declare const mefDevCardComponents: (typeof CardComponent | typeof CardLongComponent | typeof CardSimpleComponent)[];
|
|
14
|
+
export declare class MefDevCardModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevCardModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevCardModule, [typeof i1.CardComponent, typeof i2.CardLongComponent, typeof i3.CardSimpleComponent], [typeof i4.CommonModule, typeof i5.MefDevCollapseModule, typeof i6.PgSelectModule, typeof i7.pgCardModule, typeof i8.TranslateModule], [typeof i1.CardComponent, typeof i2.CardLongComponent, typeof i3.CardSimpleComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevCardModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CollapseSetComponent } from '../collapse-set/collapse-set.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CollapseComponent {
|
|
5
|
+
private _collapseSet;
|
|
6
|
+
private _elementRef;
|
|
7
|
+
private _disabled;
|
|
8
|
+
_active: boolean;
|
|
9
|
+
_el: any;
|
|
10
|
+
CardTitle: TemplateRef<void>;
|
|
11
|
+
set Disabled(value: boolean);
|
|
12
|
+
get Disabled(): boolean;
|
|
13
|
+
set Active(value: boolean);
|
|
14
|
+
get Active(): boolean;
|
|
15
|
+
clickHeader($event: MouseEvent): void;
|
|
16
|
+
constructor(_collapseSet: CollapseSetComponent, _elementRef: ElementRef);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseComponent, [{ host: true; }, null]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollapseComponent, "mefdev-collapse", never, { "Disabled": "Disabled"; "Active": "Active"; }, {}, ["CardTitle"], ["*"]>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CollapseComponent } from '../collapse/collapse.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CollapseSetComponent {
|
|
4
|
+
private _accordion;
|
|
5
|
+
private _horizontal;
|
|
6
|
+
private _expandAny;
|
|
7
|
+
panels: CollapseComponent[];
|
|
8
|
+
set expandAny(value: boolean);
|
|
9
|
+
get expandAny(): boolean;
|
|
10
|
+
set Accordion(value: boolean);
|
|
11
|
+
get Accordion(): boolean;
|
|
12
|
+
set Horizontal(value: boolean);
|
|
13
|
+
get Horizontal(): boolean;
|
|
14
|
+
pgClick(collapse: CollapseComponent): void;
|
|
15
|
+
addTab(collapse: CollapseComponent): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseSetComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollapseSetComponent, "mefdev-collapse-set", never, { "expandAny": "expandAny"; "Accordion": "Accordion"; "Horizontal": "Horizontal"; }, {}, never, ["*"]>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { CollapseSetComponent } from './collapse-set/collapse-set.component';
|
|
3
|
+
import { CollapseComponent } from './collapse/collapse.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./collapse-set/collapse-set.component";
|
|
6
|
+
import * as i2 from "./collapse/collapse.component";
|
|
7
|
+
import * as i3 from "@angular/common";
|
|
8
|
+
export declare const mefDevCollapseModuleComponents: (typeof CollapseComponent | typeof CollapseSetComponent)[];
|
|
9
|
+
export declare class MefDevCollapseModule {
|
|
10
|
+
static forRoot(): ModuleWithProviders<MefDevCollapseModule>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevCollapseModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevCollapseModule, [typeof i1.CollapseSetComponent, typeof i2.CollapseComponent], [typeof i3.CommonModule], [typeof i1.CollapseSetComponent, typeof i2.CollapseComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevCollapseModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { ModalDirective } from 'ngx-bootstrap/modal';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FillComponent implements OnInit {
|
|
5
|
+
modal_header: TemplateRef<void>;
|
|
6
|
+
modal_footer: TemplateRef<void>;
|
|
7
|
+
fadInModal?: ModalDirective;
|
|
8
|
+
set show(val: boolean);
|
|
9
|
+
isClouse: EventEmitter<boolean>;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
modalIsCloused(): void;
|
|
13
|
+
showModal(): void;
|
|
14
|
+
hideModal(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FillComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FillComponent, "mefdev-fill-modal", never, { "show": "show"; }, { "isClouse": "isClouse"; }, ["modal_header", "modal_footer"], ["*"]>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './fill/fill.component';
|
|
2
|
+
export * from './slide-up/slide-up.component';
|
|
3
|
+
export * from './slide-right/slide-right.component';
|
|
4
|
+
export * from "./right-filter/right-filter.component";
|
|
5
|
+
export * from "./markup-kit.module";
|
|
6
|
+
export * from "./modal-size.enum";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./fill/fill.component";
|
|
3
|
+
import * as i2 from "./slide-up/slide-up.component";
|
|
4
|
+
import * as i3 from "./slide-right/slide-right.component";
|
|
5
|
+
import * as i4 from "./right-filter/right-filter.component";
|
|
6
|
+
import * as i5 from "ngx-bootstrap/modal";
|
|
7
|
+
import * as i6 from "@ngx-translate/core";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "../../pg-components/select/select.module";
|
|
10
|
+
export declare class MefDevModalModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevModalModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevModalModule, [typeof i1.FillComponent, typeof i2.SlideUpComponent, typeof i3.SlideRightComponent, typeof i4.RightFilterComponent], [typeof i5.ModalModule, typeof i6.TranslateModule, typeof i7.CommonModule, typeof i8.PgSelectModule], [typeof i1.FillComponent, typeof i2.SlideUpComponent, typeof i3.SlideRightComponent, typeof i4.RightFilterComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevModalModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FilteredFieldService } from '../../utils/filtered-field/filtered-field.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RightFilterComponent implements OnInit {
|
|
5
|
+
private filteredFieldService;
|
|
6
|
+
isOpen: boolean;
|
|
7
|
+
constructor(filteredFieldService: FilteredFieldService);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
openModal(): void;
|
|
10
|
+
modalIsCloused(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RightFilterComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RightFilterComponent, "mefdev-right-filter", never, {}, {}, never, ["*"]>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { ModalDirective } from 'ngx-bootstrap/modal';
|
|
3
|
+
import { ModalSize } from '../modal-size.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SlideRightComponent implements OnInit {
|
|
6
|
+
modal_header: TemplateRef<void>;
|
|
7
|
+
modal_footer: TemplateRef<void>;
|
|
8
|
+
slideRight: ModalDirective;
|
|
9
|
+
size: ModalSize;
|
|
10
|
+
set show(val: boolean);
|
|
11
|
+
isClouse: EventEmitter<boolean>;
|
|
12
|
+
constructor();
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
modalIsCloused(): void;
|
|
15
|
+
showModal(): void;
|
|
16
|
+
hideModal(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SlideRightComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlideRightComponent, "mefdev-slide-right-modal", never, { "size": "size"; "show": "show"; }, { "isClouse": "isClouse"; }, ["modal_header", "modal_footer"], ["*"]>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { ModalDirective } from 'ngx-bootstrap/modal';
|
|
3
|
+
import { ModalSize } from '../modal-size.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SlideUpComponent implements OnInit {
|
|
6
|
+
modal_header: TemplateRef<void>;
|
|
7
|
+
modal_footer: TemplateRef<void>;
|
|
8
|
+
mdSlideUp: ModalDirective;
|
|
9
|
+
size: ModalSize;
|
|
10
|
+
set show(val: boolean);
|
|
11
|
+
isClouse: EventEmitter<boolean>;
|
|
12
|
+
constructor();
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
modalIsCloused(): void;
|
|
15
|
+
showModal(): void;
|
|
16
|
+
hideModal(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SlideUpComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlideUpComponent, "mefdev-slide-up-modal", never, { "size": "size"; "show": "show"; }, { "isClouse": "isClouse"; }, ["modal_header", "modal_footer"], ["*"]>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AfterViewChecked, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CentralPageComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
4
|
+
constructor();
|
|
5
|
+
width: string;
|
|
6
|
+
ngOnDestroy(): void;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
ngAfterViewChecked(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CentralPageComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CentralPageComponent, "mefdev-central-page", never, { "width": "width"; }, {}, never, ["*"]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CentralPageRowComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CentralPageRowComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CentralPageRowComponent, "mefdev-central-page-row", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './profile/profile.component';
|
|
2
|
+
export * from './central-page/central-page.component';
|
|
3
|
+
export * from './central-page-row/central-page-row.component';
|
|
4
|
+
export * from './table-page/table-page.component';
|
|
5
|
+
export * from './manage-page/manage-page.component';
|
|
6
|
+
export * from './page-layouts.module';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ManagePageComponent implements OnInit {
|
|
4
|
+
card_title: TemplateRef<void>;
|
|
5
|
+
tabs_block: TemplateRef<void>;
|
|
6
|
+
startTabInd: number;
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ManagePageComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ManagePageComponent, "mefdev-manage-page", never, { "startTabInd": "startTabInd"; }, {}, ["card_title", "tabs_block"], ["*"]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./profile/profile.component";
|
|
3
|
+
import * as i2 from "./central-page/central-page.component";
|
|
4
|
+
import * as i3 from "./central-page-row/central-page-row.component";
|
|
5
|
+
import * as i4 from "./table-page/table-page.component";
|
|
6
|
+
import * as i5 from "./manage-page/manage-page.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@ngx-translate/core";
|
|
9
|
+
import * as i8 from "../../pg-components/tabs/tabs.module";
|
|
10
|
+
export declare class MefDevPageLayoutsModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevPageLayoutsModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevPageLayoutsModule, [typeof i1.ProfileComponent, typeof i2.CentralPageComponent, typeof i3.CentralPageRowComponent, typeof i4.TablePageComponent, typeof i5.ManagePageComponent], [typeof i6.CommonModule, typeof i7.TranslateModule, typeof i8.pgTabsModule], [typeof i1.ProfileComponent, typeof i2.CentralPageComponent, typeof i3.CentralPageRowComponent, typeof i4.TablePageComponent, typeof i5.ManagePageComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevPageLayoutsModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProfileComponent implements OnInit {
|
|
4
|
+
first_colum: TemplateRef<void>;
|
|
5
|
+
second_colum: TemplateRef<void>;
|
|
6
|
+
footer: TemplateRef<void>;
|
|
7
|
+
name: string;
|
|
8
|
+
img: string;
|
|
9
|
+
shortDescription: string;
|
|
10
|
+
header: string;
|
|
11
|
+
circleImg: boolean;
|
|
12
|
+
constructor();
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
get sizeStyle(): {
|
|
15
|
+
'border-top-left-radius'?: undefined;
|
|
16
|
+
'border-top-right-radius'?: undefined;
|
|
17
|
+
'border-bottom-right-radius'?: undefined;
|
|
18
|
+
'border-bottom-left-radius'?: undefined;
|
|
19
|
+
} | {
|
|
20
|
+
'border-top-left-radius': string;
|
|
21
|
+
'border-top-right-radius': string;
|
|
22
|
+
'border-bottom-right-radius': string;
|
|
23
|
+
'border-bottom-left-radius': string;
|
|
24
|
+
};
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComponent, "mefdev-profile", never, { "name": "name"; "img": "img"; "shortDescription": "shortDescription"; "header": "header"; "circleImg": "circleImg"; }, {}, ["first_colum", "second_colum", "footer"], never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TablePageComponent implements OnInit {
|
|
4
|
+
filter_colum: TemplateRef<void>;
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TablePageComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TablePageComponent, "mefdev-table-page", never, {}, {}, ["filter_colum"], ["*"]>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FilteredFieldService } from '../filtered-field.service';
|
|
3
|
+
import { FiltredItemModel } from '../filtred-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FilteredFieldContainerComponent implements OnInit {
|
|
6
|
+
private service;
|
|
7
|
+
items: FiltredItemModel[];
|
|
8
|
+
constructor(service: FilteredFieldService);
|
|
9
|
+
onOpenFilter(item: FiltredItemModel): void;
|
|
10
|
+
onDiscard(item: FiltredItemModel): void;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilteredFieldContainerComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilteredFieldContainerComponent, "mefdev-filtered-field-container", never, {}, {}, never, never>;
|
|
14
|
+
}
|
package/lib/markup-kit/utils/filtered-field/filtered-field-item/filtered-field-item.component.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FiltredItemModel } from '../filtred-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FilteredFieldItemComponent implements OnInit {
|
|
5
|
+
item: FiltredItemModel;
|
|
6
|
+
discard: EventEmitter<FiltredItemModel>;
|
|
7
|
+
openFilter: EventEmitter<any>;
|
|
8
|
+
constructor();
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
onOpenFilter(): void;
|
|
11
|
+
onDiscard(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilteredFieldItemComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilteredFieldItemComponent, "mefdev-filtered-field-item", never, { "item": "item"; }, { "discard": "discard"; "openFilter": "openFilter"; }, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./filtered-field-container/filtered-field-container.component";
|
|
3
|
+
import * as i2 from "./filtered-field-item/filtered-field-item.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
export declare class MefDevFilteredFieldModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevFilteredFieldModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevFilteredFieldModule, [typeof i1.FilteredFieldContainerComponent, typeof i2.FilteredFieldItemComponent], [typeof i3.CommonModule], [typeof i2.FilteredFieldItemComponent, typeof i1.FilteredFieldContainerComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevFilteredFieldModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { FiltredItemModel } from './filtred-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FilteredFieldService {
|
|
5
|
+
private newFilterItem;
|
|
6
|
+
private openFilter;
|
|
7
|
+
constructor();
|
|
8
|
+
getOpenFilter(): Observable<FiltredItemModel>;
|
|
9
|
+
sendOpenFilter(item: FiltredItemModel): void;
|
|
10
|
+
getNewFilterItem(): Observable<FiltredItemModel>;
|
|
11
|
+
sendNewFilterItem(item: FiltredItemModel): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilteredFieldService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FilteredFieldService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HelpBlockComponent implements OnInit {
|
|
4
|
+
isVisible: boolean;
|
|
5
|
+
expanded: boolean;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HelpBlockComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HelpBlockComponent, "mefdev-help-block", never, {}, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./help-block.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../collapse/collapse.module";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
export declare class MefDevHelpBlockModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevHelpBlockModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevHelpBlockModule, [typeof i1.HelpBlockComponent], [typeof i2.CommonModule, typeof i3.MefDevCollapseModule, typeof i4.TranslateModule], [typeof i1.HelpBlockComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevHelpBlockModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgxUiLoaderService } from 'ngx-ui-loader';
|
|
3
|
+
import { LoaderService } from '../loader.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LoaderComponent implements OnInit {
|
|
6
|
+
private loaderService;
|
|
7
|
+
private ngxLoader;
|
|
8
|
+
constructor(loaderService: LoaderService, ngxLoader: NgxUiLoaderService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "mefdev-loader", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./loader/loader.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "ngx-ui-loader";
|
|
5
|
+
export declare class MefDevLoaderModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevLoaderModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevLoaderModule, [typeof i1.LoaderComponent], [typeof i2.CommonModule, typeof i3.NgxUiLoaderModule], [typeof i1.LoaderComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevLoaderModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { RequestEvent } from './request-event.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LoaderService {
|
|
5
|
+
private stream;
|
|
6
|
+
private loaderIsShow;
|
|
7
|
+
private _lastVal;
|
|
8
|
+
private requestCnt;
|
|
9
|
+
constructor();
|
|
10
|
+
newEvent(e: RequestEvent): void;
|
|
11
|
+
getLoaderIsShow(): Observable<boolean>;
|
|
12
|
+
update(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class pgCard {
|
|
4
|
+
_isCollapsed: boolean;
|
|
5
|
+
_isMaximixed: boolean;
|
|
6
|
+
_isLoading: boolean;
|
|
7
|
+
_minimalHeader: boolean;
|
|
8
|
+
_message: string;
|
|
9
|
+
_messageType: string;
|
|
10
|
+
_messageVisible: boolean;
|
|
11
|
+
_progressType: string;
|
|
12
|
+
_progressColor: string;
|
|
13
|
+
_showTools: boolean;
|
|
14
|
+
_close_card: boolean;
|
|
15
|
+
_refresh: boolean;
|
|
16
|
+
_refreshColor: string;
|
|
17
|
+
_close: boolean;
|
|
18
|
+
_toggle: boolean;
|
|
19
|
+
_maximize: boolean;
|
|
20
|
+
_timeout: number;
|
|
21
|
+
_titleText: string;
|
|
22
|
+
_card_border_style: string;
|
|
23
|
+
_type: string;
|
|
24
|
+
_extraHeaderClass: string;
|
|
25
|
+
_extraBodyClass: string;
|
|
26
|
+
_additionalClasses: string;
|
|
27
|
+
_hostContent: ElementRef;
|
|
28
|
+
minimalCircleLoading: ElementRef;
|
|
29
|
+
minimalCircleLoadingTrigger: ElementRef;
|
|
30
|
+
CardTitle: TemplateRef<void>;
|
|
31
|
+
CardExtraControls: TemplateRef<void>;
|
|
32
|
+
set Title(value: string);
|
|
33
|
+
get Title(): string;
|
|
34
|
+
set Type(value: string);
|
|
35
|
+
set MinimalHeader(value: boolean);
|
|
36
|
+
set ProgressType(value: string);
|
|
37
|
+
set ProgressColor(value: string);
|
|
38
|
+
set Refresh(value: boolean);
|
|
39
|
+
set RefreshColor(value: string);
|
|
40
|
+
set Maximize(value: boolean);
|
|
41
|
+
set Close(value: boolean);
|
|
42
|
+
set Toggle(value: boolean);
|
|
43
|
+
set HeaderClass(value: string);
|
|
44
|
+
set BodyClass(value: string);
|
|
45
|
+
set AdditionalClasses(value: string);
|
|
46
|
+
set Controls(value: boolean);
|
|
47
|
+
set ShowMessage(value: boolean);
|
|
48
|
+
set Message(value: string);
|
|
49
|
+
set Loading(value: boolean);
|
|
50
|
+
set TimeOut(value: number);
|
|
51
|
+
set CardBorderStyle(value: string);
|
|
52
|
+
onRefresh: EventEmitter<void>;
|
|
53
|
+
toggle(): void;
|
|
54
|
+
maximize(): void;
|
|
55
|
+
alertDismiss(): void;
|
|
56
|
+
refresh(): void;
|
|
57
|
+
close(): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<pgCard, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<pgCard, "pgcard", never, { "Title": "Title"; "Type": "Type"; "MinimalHeader": "MinimalHeader"; "ProgressType": "ProgressType"; "ProgressColor": "ProgressColor"; "Refresh": "Refresh"; "RefreshColor": "RefreshColor"; "Maximize": "Maximize"; "Close": "Close"; "Toggle": "Toggle"; "HeaderClass": "HeaderClass"; "BodyClass": "BodyClass"; "AdditionalClasses": "AdditionalClasses"; "Controls": "Controls"; "ShowMessage": "ShowMessage"; "Message": "Message"; "Loading": "Loading"; "TimeOut": "TimeOut"; "CardBorderStyle": "CardBorderStyle"; }, { "onRefresh": "onRefresh"; }, ["CardTitle", "CardExtraControls"], ["*"]>;
|
|
60
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ModuleWithProviders } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./card.components";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "../progress/progress.module";
|
|
6
|
+
import * as i4 from "@ngx-translate/core";
|
|
7
|
+
export declare class pgCardModule {
|
|
8
|
+
static forRoot(): ModuleWithProviders<pgCardModule>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<pgCardModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<pgCardModule, [typeof i1.pgCard], [typeof i2.CommonModule, typeof i3.ProgressModule, typeof i4.TranslateModule], [typeof i1.pgCard]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<pgCardModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ProgressComponent {
|
|
3
|
+
_value: number;
|
|
4
|
+
_value2: any;
|
|
5
|
+
type: string;
|
|
6
|
+
color: string;
|
|
7
|
+
thick: boolean;
|
|
8
|
+
indeterminate: boolean;
|
|
9
|
+
set value(value: number);
|
|
10
|
+
get value(): number;
|
|
11
|
+
get value2(): any;
|
|
12
|
+
constructor();
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "pg-progress", never, { "type": "type"; "color": "color"; "thick": "thick"; "indeterminate": "indeterminate"; "value": "value"; }, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ModuleWithProviders } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./progress.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
export declare class ProgressModule {
|
|
6
|
+
static forRoot(): ModuleWithProviders<ProgressModule>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressModule, [typeof i1.ProgressComponent], [typeof i2.CommonModule], [typeof i1.ProgressComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressModule>;
|
|
10
|
+
}
|