@natec/mef-dev-ui-kit 16.2.2 → 16.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/markup-kit/executors/index.mjs +5 -0
- package/esm2022/lib/markup-kit/executors/mefdev-executor-page/mefdev-executor-page.component.mjs +44 -0
- package/esm2022/lib/markup-kit/executors/stage/stage.component.mjs +24 -0
- package/esm2022/lib/markup-kit/executors/step-executor/step-executor.component.mjs +110 -0
- package/esm2022/lib/markup-kit/executors/step-executor.module.mjs +38 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/natec-mef-dev-ui-kit.mjs +200 -1
- package/fesm2022/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/lib/markup-kit/executors/index.d.ts +4 -0
- package/lib/markup-kit/executors/mefdev-executor-page/mefdev-executor-page.component.d.ts +16 -0
- package/lib/markup-kit/executors/stage/stage.component.d.ts +9 -0
- package/lib/markup-kit/executors/step-executor/step-executor.component.d.ts +29 -0
- package/lib/markup-kit/executors/step-executor.module.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { StepExecutorComponent } from '../step-executor/step-executor.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MefdevExecutorPageComponent implements OnChanges {
|
|
5
|
+
private _mainExecutor;
|
|
6
|
+
private _elementRef;
|
|
7
|
+
title: string;
|
|
8
|
+
isActive: boolean;
|
|
9
|
+
isCompleted: boolean;
|
|
10
|
+
isCompletedChange: EventEmitter<boolean>;
|
|
11
|
+
elRef: ElementRef;
|
|
12
|
+
constructor(_mainExecutor: StepExecutorComponent, _elementRef: ElementRef);
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefdevExecutorPageComponent, [{ host: true; }, null]>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MefdevExecutorPageComponent, "mefdev-executor-page", never, { "title": { "alias": "title"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "isCompleted": { "alias": "isCompleted"; "required": false; }; }, { "isCompletedChange": "isCompletedChange"; }, never, ["*"], false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class StageComponent {
|
|
3
|
+
currentExecutorStep: number;
|
|
4
|
+
isRightModal: boolean;
|
|
5
|
+
isCompleted: boolean;
|
|
6
|
+
title: string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StageComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StageComponent, "mefdev-stage", never, { "currentExecutorStep": { "alias": "currentExecutorStep"; "required": false; }; "isRightModal": { "alias": "isRightModal"; "required": false; }; "isCompleted": { "alias": "isCompleted"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, Renderer2, TemplateRef } from '@angular/core';
|
|
2
|
+
import { MefdevExecutorPageComponent } from '../mefdev-executor-page/mefdev-executor-page.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StepExecutorComponent implements AfterViewInit {
|
|
5
|
+
private renderer;
|
|
6
|
+
view: string;
|
|
7
|
+
container: ElementRef<HTMLElement>;
|
|
8
|
+
title: TemplateRef<void>;
|
|
9
|
+
description: TemplateRef<void>;
|
|
10
|
+
footer: TemplateRef<void>;
|
|
11
|
+
onActivePageChange: EventEmitter<MefdevExecutorPageComponent>;
|
|
12
|
+
_activePageInd: number;
|
|
13
|
+
pages: MefdevExecutorPageComponent[];
|
|
14
|
+
constructor(renderer: Renderer2);
|
|
15
|
+
set activePageInd(activePageNumber: number);
|
|
16
|
+
get activePageInd(): number;
|
|
17
|
+
get activePage(): MefdevExecutorPageComponent | null;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
19
|
+
nextBtnIsDisabled(): boolean;
|
|
20
|
+
prev(): void;
|
|
21
|
+
cancel(): void;
|
|
22
|
+
next(): void;
|
|
23
|
+
setActivePage(pageNumber: number): void;
|
|
24
|
+
addPage(page: MefdevExecutorPageComponent): void;
|
|
25
|
+
removeSpecificPage(page: MefdevExecutorPageComponent): void;
|
|
26
|
+
removePageByIndex(index: number): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepExecutorComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepExecutorComponent, "mefdev-step-executor", never, { "view": { "alias": "view"; "required": true; }; }, { "onActivePageChange": "onActivePageChange"; }, ["title", "description", "footer"], never, false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./step-executor/step-executor.component";
|
|
3
|
+
import * as i2 from "./mefdev-executor-page/mefdev-executor-page.component";
|
|
4
|
+
import * as i3 from "./stage/stage.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
export declare class MefDevStepExecutorModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevStepExecutorModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevStepExecutorModule, [typeof i1.StepExecutorComponent, typeof i2.MefdevExecutorPageComponent, typeof i3.StageComponent], [typeof i4.CommonModule, typeof i5.FormsModule], [typeof i1.StepExecutorComponent, typeof i2.MefdevExecutorPageComponent, typeof i3.StageComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevStepExecutorModule>;
|
|
11
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './lib/markup-kit/utils/datepicker/index';
|
|
|
5
5
|
export * from './lib/markup-kit/card/index';
|
|
6
6
|
export * from './lib/markup-kit/modals/index';
|
|
7
7
|
export * from './lib/markup-kit/page-layouts/index';
|
|
8
|
+
export * from './lib/markup-kit/executors';
|
|
8
9
|
export * from './lib/pg-components/card/index';
|
|
9
10
|
export * from './lib/pg-components/progress/index';
|
|
10
11
|
export * from './lib/pg-components/select/index';
|