@natec/mef-dev-ui-kit 16.2.4 → 16.2.48
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 +6 -1
- package/esm2022/lib/markup-kit/card/card/card.component.mjs +4 -4
- package/esm2022/lib/markup-kit/card/card-long/card-long.component.mjs +4 -4
- package/esm2022/lib/markup-kit/card/card-simple/card-simple.component.mjs +4 -4
- package/esm2022/lib/markup-kit/card/card.module.mjs +5 -5
- package/esm2022/lib/markup-kit/collapse/collapse/collapse.component.mjs +4 -4
- package/esm2022/lib/markup-kit/executors/mefdev-executor-page/mefdev-executor-page.component.mjs +69 -1
- package/esm2022/lib/markup-kit/executors/stage/stage.component.mjs +4 -1
- package/esm2022/lib/markup-kit/executors/step-executor/step-executor.component.mjs +188 -9
- package/esm2022/lib/markup-kit/executors/step-executor.module.mjs +7 -3
- package/esm2022/lib/markup-kit/modals/fill/fill.component.mjs +4 -4
- package/esm2022/lib/markup-kit/modals/slide-right/slide-right.component.mjs +2 -2
- package/esm2022/lib/markup-kit/modals/slide-up/slide-up.component.mjs +2 -2
- package/esm2022/lib/markup-kit/page-layouts/central-page/central-page.component.mjs +2 -2
- package/esm2022/lib/markup-kit/page-layouts/manage-page/manage-page.component.mjs +4 -4
- package/esm2022/lib/markup-kit/page-layouts/profile/profile.component.mjs +4 -4
- package/esm2022/lib/markup-kit/page-layouts/table-page/table-page.component.mjs +2 -2
- package/esm2022/lib/markup-kit/slider/slider/slider.component.mjs +4 -4
- package/esm2022/lib/markup-kit/utils/datepicker/datepicker/datepicker.component.mjs +138 -133
- package/esm2022/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.mjs +2 -2
- package/esm2022/lib/markup-kit/utils/filtered-field/filtered-field-item/filtered-field-item.component.mjs +2 -2
- package/esm2022/lib/markup-kit/utils/help-block/help-block.component.mjs +4 -4
- package/esm2022/lib/pg-components/card/card.components.mjs +11 -8
- package/esm2022/lib/pg-components/card/card.module.mjs +10 -10
- package/esm2022/lib/pg-components/select/select.component.mjs +2 -2
- package/esm2022/lib/pg-components/switch/switch.component.mjs +2 -2
- package/esm2022/lib/pg-components/tabs/tabset.component.mjs +2 -2
- package/fesm2022/natec-mef-dev-ui-kit.mjs +454 -195
- package/fesm2022/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/lib/markup-kit/card/card/card.component.d.ts +1 -1
- package/lib/markup-kit/card/card-long/card-long.component.d.ts +1 -1
- package/lib/markup-kit/card/card-simple/card-simple.component.d.ts +1 -1
- package/lib/markup-kit/card/card.module.d.ts +2 -2
- package/lib/markup-kit/collapse/collapse/collapse.component.d.ts +1 -1
- package/lib/markup-kit/executors/mefdev-executor-page/mefdev-executor-page.component.d.ts +68 -0
- package/lib/markup-kit/executors/stage/stage.component.d.ts +3 -0
- package/lib/markup-kit/executors/step-executor/step-executor.component.d.ts +160 -3
- package/lib/markup-kit/executors/step-executor.module.d.ts +4 -3
- package/lib/markup-kit/modals/fill/fill.component.d.ts +1 -1
- package/lib/markup-kit/modals/slide-right/slide-right.component.d.ts +1 -1
- package/lib/markup-kit/modals/slide-up/slide-up.component.d.ts +1 -1
- package/lib/markup-kit/page-layouts/central-page/central-page.component.d.ts +1 -1
- package/lib/markup-kit/page-layouts/manage-page/manage-page.component.d.ts +1 -1
- package/lib/markup-kit/page-layouts/profile/profile.component.d.ts +1 -1
- package/lib/markup-kit/page-layouts/table-page/table-page.component.d.ts +1 -1
- package/lib/markup-kit/slider/slider/slider.component.d.ts +1 -1
- package/lib/markup-kit/utils/datepicker/datepicker/datepicker.component.d.ts +104 -104
- package/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.d.ts +1 -1
- package/lib/markup-kit/utils/help-block/help-block.component.d.ts +1 -1
- package/lib/pg-components/card/card.components.d.ts +5 -5
- package/lib/pg-components/card/card.module.d.ts +5 -5
- package/lib/pg-components/select/select.component.d.ts +1 -1
- package/lib/pg-components/switch/switch.component.d.ts +1 -1
- package/lib/pg-components/tabs/tabset.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/styles/designe-colors.scss +16 -1
|
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* </mefdev-card>
|
|
18
18
|
* ```
|
|
19
19
|
*
|
|
20
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/card</example-url>
|
|
20
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/card/card</example-url>
|
|
21
21
|
*/
|
|
22
22
|
export declare class CardComponent implements OnInit {
|
|
23
23
|
private router;
|
|
@@ -33,7 +33,7 @@ import * as i0 from "@angular/core";
|
|
|
33
33
|
* </mefdev-card-long>
|
|
34
34
|
* ```
|
|
35
35
|
*
|
|
36
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/card/
|
|
36
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/card/card_long</example-url>
|
|
37
37
|
*/
|
|
38
38
|
export declare class CardLongComponent implements OnInit {
|
|
39
39
|
private router;
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* </mefdev-card-simple>
|
|
13
13
|
*```
|
|
14
14
|
*
|
|
15
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/card/
|
|
15
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/card/card_simple</example-url>
|
|
16
16
|
*/
|
|
17
17
|
export declare class CardSimpleComponent implements OnInit {
|
|
18
18
|
/**
|
|
@@ -9,9 +9,9 @@ import * as i4 from "@angular/common";
|
|
|
9
9
|
import * as i5 from "../collapse/collapse.module";
|
|
10
10
|
import * as i6 from "../../pg-components/select/select.module";
|
|
11
11
|
import * as i7 from "../../pg-components/card/card.module";
|
|
12
|
-
export declare const mefDevCardComponents: (typeof
|
|
12
|
+
export declare const mefDevCardComponents: (typeof CardComponent | typeof CardLongComponent | typeof CardSimpleComponent)[];
|
|
13
13
|
export declare class MefDevCardModule {
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevCardModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevCardModule, [typeof i1.CardComponent, typeof i2.CardLongComponent, typeof i3.CardSimpleComponent], [typeof i4.CommonModule, typeof i5.MefDevCollapseModule, typeof i6.MefDevSelectModule, typeof i7.
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevCardModule, [typeof i1.CardComponent, typeof i2.CardLongComponent, typeof i3.CardSimpleComponent], [typeof i4.CommonModule, typeof i5.MefDevCollapseModule, typeof i6.MefDevSelectModule, typeof i7.MefdevInnerCardModule], [typeof i1.CardComponent, typeof i2.CardLongComponent, typeof i3.CardSimpleComponent]>;
|
|
16
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevCardModule>;
|
|
17
17
|
}
|
|
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
|
|
|
20
20
|
* </mefdev-collapse>
|
|
21
21
|
*
|
|
22
22
|
*```
|
|
23
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
23
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/collapse</example-url>
|
|
24
24
|
|
|
25
25
|
*/
|
|
26
26
|
export declare class CollapseComponent {
|
|
@@ -1,12 +1,80 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { StepExecutorComponent } from '../step-executor/step-executor.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* A component that allows us to create a content page - a step in our executor.
|
|
6
|
+
* Each individual step can have different styles, content and settings.
|
|
7
|
+
*
|
|
8
|
+
* Example of usage:
|
|
9
|
+
*
|
|
10
|
+
* ```
|
|
11
|
+
* <mefdev-executor-page
|
|
12
|
+
* [title]="'Executor title 1'"
|
|
13
|
+
* [isActive]="mainExecutor.activePageInd === 0"
|
|
14
|
+
* [isCompleted]="mainExecutor.activePageInd >= 0"
|
|
15
|
+
* class="yourClass">
|
|
16
|
+
* <!-- Content of the first executor step -->
|
|
17
|
+
* </mefdev-executor-page>
|
|
18
|
+
* <mefdev-executor-page
|
|
19
|
+
* [title]="'Executor title 2'"
|
|
20
|
+
* [isActive]="mainExecutor.activePageInd === 1"
|
|
21
|
+
* [isCompleted]="mainExecutor.activePageInd >= 1"
|
|
22
|
+
* class="yourClass">
|
|
23
|
+
* <!-- Content of the second executor step -->
|
|
24
|
+
* </mefdev-executor-page>
|
|
25
|
+
* <mefdev-executor-page
|
|
26
|
+
* [title]="'Executor title 3'"
|
|
27
|
+
* [isActive]="mainExecutor.activePageInd === 2"
|
|
28
|
+
* [isCompleted]="mainExecutor.activePageInd >= 2"
|
|
29
|
+
* class="yourClass">
|
|
30
|
+
* <!-- Content of the third executor step -->
|
|
31
|
+
* </mefdev-executor-page>
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
4
35
|
export declare class MefdevExecutorPageComponent implements OnChanges {
|
|
5
36
|
private _mainExecutor;
|
|
6
37
|
private _elementRef;
|
|
38
|
+
/**
|
|
39
|
+
* The title of the step
|
|
40
|
+
* @usageNotes
|
|
41
|
+
* ```
|
|
42
|
+
* <mefdev-executor-page [title]="'Description of situation 1'"></mefdev-executor-page>
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
7
45
|
title: string;
|
|
46
|
+
/**
|
|
47
|
+
* The input parameter that corresponds to whether the current step matches the respective page.
|
|
48
|
+
* The value of the active page is passed by reference from the specific component StepExecutorComponent.
|
|
49
|
+
*
|
|
50
|
+
* @usageNotes
|
|
51
|
+
* ```
|
|
52
|
+
* <mefdev-step-executor #mainExecutor>
|
|
53
|
+
* <mefdev-executor-page [isActive]="mainExecutor.activePageInd === 0">
|
|
54
|
+
* <mefdev-executor-page [isActive]="mainExecutor.activePageInd === 1">
|
|
55
|
+
* <mefdev-executor-page [isActive]="mainExecutor.activePageInd === 2">
|
|
56
|
+
* </<mefdev-step-executor>
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
8
60
|
isActive: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* The input parameter that checks whether the step is completed.
|
|
63
|
+
*
|
|
64
|
+
* @usageNotes
|
|
65
|
+
* ```
|
|
66
|
+
* <mefdev-executor-page [isCompleted]="mainExecutor.activePageInd >= 0"></mefdev-executor-page>
|
|
67
|
+
* ```
|
|
68
|
+
*/
|
|
9
69
|
isCompleted: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* The output parameter that emits a boolean value indicating whether our completed step has changed.
|
|
72
|
+
*
|
|
73
|
+
* @usageNotes
|
|
74
|
+
* ```
|
|
75
|
+
* <mefdev-executor-page (isCompletedChange)="onStepChanged($event)"></mefdev-executor-page>
|
|
76
|
+
* ```
|
|
77
|
+
*/
|
|
10
78
|
isCompletedChange: EventEmitter<boolean>;
|
|
11
79
|
elRef: ElementRef;
|
|
12
80
|
constructor(_mainExecutor: StepExecutorComponent, _elementRef: ElementRef);
|
|
@@ -1,29 +1,186 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, EventEmitter, Renderer2, TemplateRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, Renderer2, TemplateRef } from '@angular/core';
|
|
2
2
|
import { MefdevExecutorPageComponent } from '../mefdev-executor-page/mefdev-executor-page.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Wrapper component that represents a specific encapsulated executor.
|
|
6
|
+
*
|
|
7
|
+
* Example of usage:
|
|
8
|
+
*```
|
|
9
|
+
* <mefdev-step-executor #mainExecutor [view]="'regular'">
|
|
10
|
+
*
|
|
11
|
+
* <ng-template #title>
|
|
12
|
+
* <!-- Content for the executor title -->
|
|
13
|
+
* </ng-template>
|
|
14
|
+
* <ng-template #description>
|
|
15
|
+
* <!-- Content for the executor description -->
|
|
16
|
+
* </ng-template>
|
|
17
|
+
*
|
|
18
|
+
* <mefdev-executor-page
|
|
19
|
+
* [title]="'Description of situation 1'"
|
|
20
|
+
* [isActive]="mainExecutor.activePageInd === 0"
|
|
21
|
+
* [isCompleted]="mainExecutor.activePageInd >= 0">
|
|
22
|
+
* <!-- Content of the first executor step -->
|
|
23
|
+
* </mefdev-executor-page>
|
|
24
|
+
* <mefdev-executor-page
|
|
25
|
+
* [title]="'Description of situation 2'"
|
|
26
|
+
* [isActive]="mainExecutor.activePageInd === 1"
|
|
27
|
+
* [isCompleted]="mainExecutor.activePageInd >= 1">
|
|
28
|
+
* <!-- Content of the second executor step -->
|
|
29
|
+
* </mefdev-executor-page>
|
|
30
|
+
* <mefdev-executor-page
|
|
31
|
+
* [title]="'Description of situation 3'"
|
|
32
|
+
* [isActive]="mainExecutor.activePageInd === 2"
|
|
33
|
+
* [isCompleted]="mainExecutor.activePageInd >= 2">
|
|
34
|
+
* <!-- Content of the third executor step -->
|
|
35
|
+
* </mefdev-executor-page>
|
|
36
|
+
*
|
|
37
|
+
* <ng-template #footer>
|
|
38
|
+
* <!-- Content for the executor footer -->
|
|
39
|
+
* <ng-template>
|
|
40
|
+
*
|
|
41
|
+
* </mefdev-step-executor>
|
|
42
|
+
*
|
|
43
|
+
*```
|
|
44
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/utils/main_executor</example-url>
|
|
45
|
+
*/
|
|
4
46
|
export declare class StepExecutorComponent implements AfterViewInit {
|
|
5
47
|
private renderer;
|
|
48
|
+
private changeDetectorRef;
|
|
49
|
+
/**
|
|
50
|
+
* Mandatory input parameter that specifies the type of the step-by-step wizard.
|
|
51
|
+
* It can have three options: regular, modal, right.
|
|
52
|
+
*
|
|
53
|
+
* @usageNotes
|
|
54
|
+
* ```
|
|
55
|
+
* <mefdev-step-executor #mainExecutor [view]="'regular'"></mefdev-step-executor>
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
6
58
|
view: string;
|
|
59
|
+
/**
|
|
60
|
+
* An optional input parameter that specifies whether to show your executor.
|
|
61
|
+
* Usually used when you have a slideup or right executor view
|
|
62
|
+
*
|
|
63
|
+
* @usageNotes
|
|
64
|
+
* ```
|
|
65
|
+
* <mefdev-step-executor [show]="true" [view]="'right'" #mainExecutor></mefdev-step-executor>
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
show: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* ViewChild reference to the host executor content.
|
|
71
|
+
*/
|
|
7
72
|
container: ElementRef<HTMLElement>;
|
|
73
|
+
/**
|
|
74
|
+
* Template for displaying the content of the executor title.
|
|
75
|
+
*
|
|
76
|
+
* @usageNotes
|
|
77
|
+
* ```
|
|
78
|
+
* <ng-template #title>
|
|
79
|
+
* <!-- Content for the executor title -->
|
|
80
|
+
* </ng-template>
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
8
83
|
title: TemplateRef<void>;
|
|
84
|
+
/**
|
|
85
|
+
* Template for displaying the content of the executor description.
|
|
86
|
+
*
|
|
87
|
+
* @usageNotes
|
|
88
|
+
* ```
|
|
89
|
+
* <ng-template #description>
|
|
90
|
+
* <!-- Content for the executor description -->
|
|
91
|
+
* </ng-template>
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
9
94
|
description: TemplateRef<void>;
|
|
95
|
+
/**
|
|
96
|
+
* Template for displaying the content of the executor footer.
|
|
97
|
+
*
|
|
98
|
+
* @usageNotes
|
|
99
|
+
* ```
|
|
100
|
+
* <ng-template #footer>
|
|
101
|
+
* <!-- Content for the executor footer -->
|
|
102
|
+
* </ng-template>
|
|
103
|
+
* ```
|
|
104
|
+
*/
|
|
10
105
|
footer: TemplateRef<void>;
|
|
106
|
+
/**
|
|
107
|
+
* The output parameter that emits the class of the active page - active step.
|
|
108
|
+
*
|
|
109
|
+
* @usageNotes
|
|
110
|
+
* ```
|
|
111
|
+
* <mefdev-step-executor #mainExecutor (onActivePageChange)="getActiveStep($event)"></mefdev-step-executor>
|
|
112
|
+
* ```
|
|
113
|
+
*/
|
|
11
114
|
onActivePageChange: EventEmitter<MefdevExecutorPageComponent>;
|
|
115
|
+
/**
|
|
116
|
+
* An output parameter that conveys the current state of the stepper in modal view
|
|
117
|
+
*
|
|
118
|
+
* @usageNotes
|
|
119
|
+
* ```
|
|
120
|
+
* <mefdev-step-executor [view]="'modal'" (modalStepExecutorStateChange)="getModalExecutorStateValue($event)" #modalExecutor></mefdev-step-executor>
|
|
121
|
+
* ```
|
|
122
|
+
*/
|
|
123
|
+
modalStepExecutorStateChange: EventEmitter<boolean>;
|
|
124
|
+
/**
|
|
125
|
+
* An output parameter that conveys the current state of the stepper in right view
|
|
126
|
+
*
|
|
127
|
+
* @usageNotes
|
|
128
|
+
* ```
|
|
129
|
+
* <mefdev-step-executor [view]="'right'" (modalStepExecutorStateChange)="getModalExecutorStateValue($event)" #rightExecutor></mefdev-step-executor>
|
|
130
|
+
* ```
|
|
131
|
+
*/
|
|
132
|
+
rightStepExecutorStateChange: EventEmitter<boolean>;
|
|
12
133
|
_activePageInd: number;
|
|
13
134
|
pages: MefdevExecutorPageComponent[];
|
|
14
|
-
constructor(renderer: Renderer2);
|
|
135
|
+
constructor(renderer: Renderer2, changeDetectorRef: ChangeDetectorRef);
|
|
15
136
|
set activePageInd(activePageNumber: number);
|
|
16
137
|
get activePageInd(): number;
|
|
17
138
|
get activePage(): MefdevExecutorPageComponent | null;
|
|
18
139
|
ngAfterViewInit(): void;
|
|
140
|
+
/**
|
|
141
|
+
* A function that is allows to track the status of your executor in the modal view
|
|
142
|
+
*/
|
|
143
|
+
modalStepExecutorVisibleChange(value: boolean): void;
|
|
144
|
+
/**
|
|
145
|
+
* A function that is allows to track the status of your executor in the right view
|
|
146
|
+
*/
|
|
147
|
+
rightStepExecutorVisibleChange(value: boolean): void;
|
|
148
|
+
/**
|
|
149
|
+
* A function that allows you to close your executor
|
|
150
|
+
*/
|
|
151
|
+
closeExecutor(): void;
|
|
152
|
+
/**
|
|
153
|
+
* Check whether there is a next step of the executor. If we are at the last step - disable the 'next' button
|
|
154
|
+
*/
|
|
19
155
|
nextBtnIsDisabled(): boolean;
|
|
156
|
+
/**
|
|
157
|
+
* Check whether there is a next step of the executor. If we are at the last step - disable the 'next' button
|
|
158
|
+
*/
|
|
20
159
|
prev(): void;
|
|
160
|
+
/**
|
|
161
|
+
* Go back to the previous step
|
|
162
|
+
*/
|
|
21
163
|
cancel(): void;
|
|
164
|
+
/**
|
|
165
|
+
* Go to the next step
|
|
166
|
+
*/
|
|
22
167
|
next(): void;
|
|
168
|
+
/**
|
|
169
|
+
* Set a specific active page
|
|
170
|
+
*/
|
|
23
171
|
setActivePage(pageNumber: number): void;
|
|
172
|
+
/**
|
|
173
|
+
* Add new page
|
|
174
|
+
*/
|
|
24
175
|
addPage(page: MefdevExecutorPageComponent): void;
|
|
176
|
+
/**
|
|
177
|
+
* Delete a specific page
|
|
178
|
+
*/
|
|
25
179
|
removeSpecificPage(page: MefdevExecutorPageComponent): void;
|
|
180
|
+
/**
|
|
181
|
+
* Delete a page by its index
|
|
182
|
+
*/
|
|
26
183
|
removePageByIndex(index: number): void;
|
|
27
184
|
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>;
|
|
185
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepExecutorComponent, "mefdev-step-executor", never, { "view": { "alias": "view"; "required": true; }; "show": { "alias": "show"; "required": false; }; }, { "onActivePageChange": "onActivePageChange"; "modalStepExecutorStateChange": "modalStepExecutorStateChange"; "rightStepExecutorStateChange": "rightStepExecutorStateChange"; }, ["title", "description", "footer"], never, false, never>;
|
|
29
186
|
}
|
|
@@ -2,10 +2,11 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./step-executor/step-executor.component";
|
|
3
3
|
import * as i2 from "./mefdev-executor-page/mefdev-executor-page.component";
|
|
4
4
|
import * as i3 from "./stage/stage.component";
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "@angular/
|
|
5
|
+
import * as i4 from "../modals/markup-kit.module";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
7
8
|
export declare class MefDevStepExecutorModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<MefDevStepExecutorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevStepExecutorModule, [typeof i1.StepExecutorComponent, typeof i2.MefdevExecutorPageComponent, typeof i3.StageComponent], [typeof i4.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MefDevStepExecutorModule, [typeof i1.StepExecutorComponent, typeof i2.MefdevExecutorPageComponent, typeof i3.StageComponent], [typeof i4.MefDevModalModule, typeof i5.CommonModule, typeof i6.FormsModule], [typeof i1.StepExecutorComponent, typeof i2.MefdevExecutorPageComponent, typeof i3.StageComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<MefDevStepExecutorModule>;
|
|
11
12
|
}
|
|
@@ -18,7 +18,7 @@ import * as i0 from "@angular/core";
|
|
|
18
18
|
* </mefdev-fill-modal>
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/modals/fill</example-url>
|
|
21
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/modals/fill</example-url>
|
|
22
22
|
*/
|
|
23
23
|
export declare class FillComponent implements OnInit {
|
|
24
24
|
protected visible: boolean;
|
|
@@ -19,7 +19,7 @@ import * as i0 from "@angular/core";
|
|
|
19
19
|
* </div>
|
|
20
20
|
* </mefdev-slide-right-modal>
|
|
21
21
|
* ```
|
|
22
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/modals/
|
|
22
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/modals/slide_right</example-url>
|
|
23
23
|
*/
|
|
24
24
|
export declare class SlideRightComponent implements OnInit {
|
|
25
25
|
protected visible: boolean;
|
|
@@ -18,7 +18,7 @@ import * as i0 from "@angular/core";
|
|
|
18
18
|
* </div>
|
|
19
19
|
* </mefdev-slide-up-modal>
|
|
20
20
|
* ```
|
|
21
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/modals/
|
|
21
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_components/modals/slide_up</example-url>
|
|
22
22
|
*/
|
|
23
23
|
export declare class SlideUpComponent implements OnInit {
|
|
24
24
|
protected visible: boolean;
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* </mefdev-central-page>
|
|
12
12
|
* ```
|
|
13
13
|
*
|
|
14
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
14
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_layouts/central_page</example-url>
|
|
15
15
|
*/
|
|
16
16
|
export declare class CentralPageComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
17
17
|
constructor();
|
|
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* ```
|
|
18
18
|
*
|
|
19
19
|
* Example of usage:
|
|
20
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
20
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_layouts/manage_page</example-url>
|
|
21
21
|
*/
|
|
22
22
|
export declare class ManagePageComponent implements OnInit {
|
|
23
23
|
/**
|
|
@@ -24,7 +24,7 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
* </mefdev-profile>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
27
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_layouts/profile</example-url>
|
|
28
28
|
*/
|
|
29
29
|
export declare class ProfileComponent implements OnInit {
|
|
30
30
|
/**
|
|
@@ -13,7 +13,7 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
* </mefdev-table-page>
|
|
14
14
|
* ```
|
|
15
15
|
*
|
|
16
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
16
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/page_layouts/table_page</example-url>
|
|
17
17
|
*/
|
|
18
18
|
export declare class TablePageComponent implements OnInit {
|
|
19
19
|
/**
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* (valueChange)="onChildValueChange($event)"
|
|
11
11
|
* ></mefdev-slider>
|
|
12
12
|
*
|
|
13
|
-
* <example-url>https://mef.dev/ui_kit_demo/view/
|
|
13
|
+
* <example-url>https://mef.dev/ui_kit_demo/view/controls/slider</example-url>
|
|
14
14
|
*/
|
|
15
15
|
export declare class MefDevSliderComponent {
|
|
16
16
|
private _range;
|