@mtna/web-form-angular 1.0.2-SNAPSHOT.2 → 1.0.2
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/_index.scss +1 -2
- package/bundles/mtna-web-form-angular.umd.js +1219 -539
- package/bundles/mtna-web-form-angular.umd.js.map +1 -1
- package/esm2015/lib/components/acknowledge-dialog/acknowledge-dialog.component.js +2 -2
- package/esm2015/lib/components/base-form/base-form.component.js +243 -0
- package/esm2015/lib/components/base-form/index.js +2 -0
- package/esm2015/lib/components/base-items/base-group-item.component.js +5 -5
- package/esm2015/lib/components/base-items/base-parent-value-item.component.js +3 -2
- package/esm2015/lib/components/base-items/base-section-item.component.js +6 -5
- package/esm2015/lib/components/form/form.component.js +13 -239
- package/esm2015/lib/components/form-item/form-item.component.js +2 -2
- package/esm2015/lib/components/form-item-component-provider/form-item-injected-components.js +7 -1
- package/esm2015/lib/components/form-item-dialog/form-item-dialog.component.js +6 -5
- package/esm2015/lib/components/form-item-dialog/form-item-dialog.module.js +5 -4
- package/esm2015/lib/components/form-item-impl/boolean/boolean.component.js +2 -2
- package/esm2015/lib/components/form-item-impl/checkbox/checkbox.component.js +7 -5
- package/esm2015/lib/components/form-item-impl/checkbox/checkbox.module.js +5 -1
- package/esm2015/lib/components/form-item-impl/date/date.component.js +3 -2
- package/esm2015/lib/components/form-item-impl/date-range/date-range.component.js +6 -2
- package/esm2015/lib/components/form-item-impl/dropdown/dropdown.component.js +2 -2
- package/esm2015/lib/components/form-item-impl/file-upload/file-upload.component.js +3 -2
- package/esm2015/lib/components/form-item-impl/form-group/form-group.component.js +2 -2
- package/esm2015/lib/components/form-item-impl/i18n-input/i18n-input.component.js +3 -2
- package/esm2015/lib/components/form-item-impl/input/input.component.js +3 -2
- package/esm2015/lib/components/form-item-impl/multiple-choice/multiple-choice.component.js +2 -2
- package/esm2015/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.component.js +3 -2
- package/esm2015/lib/components/form-item-impl/search/resource-search.component.js +2 -2
- package/esm2015/lib/components/form-item-impl/year-quarter/year-quarter.component.js +2 -3
- package/esm2015/lib/components/form-stepper/form-step/form-step.component.js +10 -3
- package/esm2015/lib/components/form-stepper/form-step-group/form-step-group.component.js +4 -2
- package/esm2015/lib/components/form-stepper/form-stepper/form-stepper.component.js +52 -10
- package/esm2015/lib/components/form-stepper/form-stepper.module.js +17 -5
- package/esm2015/lib/components/index.js +2 -1
- package/esm2015/lib/components/progressive-form/index.js +3 -0
- package/esm2015/lib/components/progressive-form/progressive-form/index.js +3 -0
- package/esm2015/lib/components/progressive-form/progressive-form/progressive-form.component.js +287 -0
- package/esm2015/lib/components/progressive-form/progressive-form/progressive-form.module.js +68 -0
- package/esm2015/lib/components/progressive-form/progressive-form-section/index.js +3 -0
- package/esm2015/lib/components/progressive-form/progressive-form-section/progressive-form-section.component.js +27 -0
- package/esm2015/lib/components/progressive-form/progressive-form-section/progressive-form-section.module.js +54 -0
- package/esm2015/lib/components/step-card/step-card.component.js +10 -2
- package/esm2015/lib/components/step-card/step-card.module.js +27 -4
- package/esm2015/lib/models/form-stepper/form-step-group.model.js +8 -2
- package/esm2015/lib/models/form-stepper/form-step.model.js +7 -1
- package/esm2015/lib/models/index.js +2 -1
- package/esm2015/lib/models/progressive-form/index.js +4 -0
- package/esm2015/lib/models/progressive-form/outline-step.model.js +2 -0
- package/esm2015/lib/models/progressive-form/progressive-form-section.model.js +6 -0
- package/esm2015/lib/models/progressive-form/progressive-form.model.js +6 -0
- package/esm2015/lib/pipes/child-step-active.pipe.js +28 -0
- package/esm2015/lib/pipes/coerce-form-step-group.pipe.js +29 -0
- package/esm2015/lib/pipes/coerce-form-step.pipe.js +29 -0
- package/esm2015/lib/pipes/date-quarter.pipe.js +13 -13
- package/esm2015/lib/pipes/get-active-form-step-item.pipe.js +33 -0
- package/esm2015/lib/pipes/get-progressive-form-item.pipe.js +40 -0
- package/esm2015/lib/pipes/get-selected-option.pipe.js +4 -3
- package/esm2015/lib/pipes/get-step-aria-label.pipe.js +55 -0
- package/esm2015/lib/pipes/index.js +7 -1
- package/esm2015/lib/pipes/items-with-value.pipe.js +5 -10
- package/esm2015/lib/services/dialog.service.js +4 -3
- package/esm2015/lib/services/form-manager.service.js +19 -7
- package/esm2015/lib/services/ng-form.service.js +7 -1
- package/esm2015/lib/services/ui.service.js +15 -15
- package/esm2015/lib/utilities/generate-form-steps.js +20 -5
- package/esm2015/lib/utilities/serializer-util.js +12 -5
- package/esm2015/lib/utilities/update-step-status.js +1 -1
- package/esm2015/public-api.js +1 -2
- package/fesm2015/mtna-web-form-angular.js +962 -364
- package/fesm2015/mtna-web-form-angular.js.map +1 -1
- package/lib/components/base-form/base-form.component.d.ts +89 -0
- package/lib/components/base-form/index.d.ts +1 -0
- package/lib/components/base-items/base-group-item.component.d.ts +2 -0
- package/lib/components/base-items/base-section-item.component.d.ts +2 -1
- package/lib/components/form/form.component.d.ts +4 -86
- package/lib/components/form-item-dialog/form-item-dialog.module.d.ts +2 -1
- package/lib/components/form-item-impl/checkbox/_checkbox-theme.scss +11 -2
- package/lib/components/form-item-impl/checkbox/checkbox.component.d.ts +1 -0
- package/lib/components/form-item-impl/checkbox/checkbox.module.d.ts +11 -10
- package/lib/components/form-item-impl/date/date.component.d.ts +1 -0
- package/lib/components/form-item-impl/date-range/date-range.component.d.ts +1 -0
- package/lib/components/form-item-impl/dropdown/_dropdown-theme.scss +35 -0
- package/lib/components/form-item-impl/file-upload/file-upload.component.d.ts +1 -0
- package/lib/components/form-item-impl/i18n-input/i18n-input.component.d.ts +1 -0
- package/lib/components/form-item-impl/input/input.component.d.ts +1 -0
- package/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.component.d.ts +1 -0
- package/lib/components/form-stepper/form-step/form-step.component.d.ts +7 -0
- package/lib/components/form-stepper/form-step-group/form-step-group.component.d.ts +2 -0
- package/lib/components/form-stepper/form-stepper/_form-stepper-theme.scss +30 -15
- package/lib/components/form-stepper/form-stepper/form-stepper.component.d.ts +15 -1
- package/lib/components/form-stepper/form-stepper.module.d.ts +5 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/progressive-form/index.d.ts +2 -0
- package/lib/components/progressive-form/progressive-form/index.d.ts +2 -0
- package/lib/components/progressive-form/progressive-form/progressive-form.component.d.ts +101 -0
- package/lib/components/progressive-form/progressive-form/progressive-form.module.d.ts +19 -0
- package/lib/components/progressive-form/progressive-form-section/index.d.ts +2 -0
- package/lib/components/progressive-form/progressive-form-section/progressive-form-section.component.d.ts +9 -0
- package/lib/components/progressive-form/progressive-form-section/progressive-form-section.module.d.ts +16 -0
- package/lib/components/step-card/step-card.component.d.ts +3 -1
- package/lib/components/step-card/step-card.module.d.ts +2 -1
- package/lib/core/_all-color.scss +2 -2
- package/lib/core/_all-theme.scss +2 -2
- package/lib/core/_all-typography.scss +2 -2
- package/lib/models/form-stepper/form-step-group.model.d.ts +5 -1
- package/lib/models/form-stepper/form-step.model.d.ts +3 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/progressive-form/index.d.ts +3 -0
- package/lib/models/progressive-form/outline-step.model.d.ts +7 -0
- package/lib/models/progressive-form/progressive-form-section.model.d.ts +4 -0
- package/lib/models/progressive-form/progressive-form.model.d.ts +7 -0
- package/lib/pipes/child-step-active.pipe.d.ts +13 -0
- package/lib/pipes/coerce-form-step-group.pipe.d.ts +13 -0
- package/lib/pipes/coerce-form-step.pipe.d.ts +13 -0
- package/lib/pipes/get-active-form-step-item.pipe.d.ts +13 -0
- package/lib/pipes/get-progressive-form-item.pipe.d.ts +14 -0
- package/lib/pipes/get-step-aria-label.pipe.d.ts +17 -0
- package/lib/pipes/index.d.ts +6 -0
- package/lib/pipes/items-with-value.pipe.d.ts +0 -1
- package/lib/services/dialog.service.d.ts +1 -0
- package/lib/services/form-manager.service.d.ts +13 -4
- package/lib/services/ng-form.service.d.ts +6 -0
- package/lib/utilities/generate-form-steps.d.ts +5 -1
- package/lib/utilities/update-step-status.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/esm2015/lib/directives/base-form-item-control.directive.js +0 -58
- package/esm2015/lib/directives/base-parent-item-control.directive.js +0 -42
- package/esm2015/lib/directives/base-single-selection-parent.directive.js +0 -53
- package/esm2015/lib/directives/form-item.directive.js +0 -22
- package/esm2015/lib/directives/index.js +0 -5
- package/lib/directives/base-form-item-control.directive.d.ts +0 -26
- package/lib/directives/base-parent-item-control.directive.d.ts +0 -19
- package/lib/directives/base-single-selection-parent.directive.d.ts +0 -26
- package/lib/directives/form-item.directive.d.ts +0 -13
- package/lib/directives/index.d.ts +0 -4
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { CanDestroyNotify } from '@mtna/core-angular';
|
|
5
|
+
import { AnnotatableNumberMap } from '@mtna/pojo-social-angular';
|
|
6
|
+
import { Form, FormControlStatus, FormItem } from '@mtna/web-form-ts';
|
|
7
|
+
import { FormStep } from '../../models';
|
|
8
|
+
import { MtnaWfManagerService, MtnaWfNgFormService, MtnaWfUIService } from '../../services';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
declare const _BaseFormComponent: import("@mtna/core-angular").CanDestroyNotifyCtor & {
|
|
11
|
+
new (): {};
|
|
12
|
+
};
|
|
13
|
+
export declare class MtnaWfBaseFormComponent<F extends Form = Form> extends _BaseFormComponent implements AfterViewInit, CanDestroyNotify, OnDestroy {
|
|
14
|
+
protected mtnaFormManager: MtnaWfManagerService;
|
|
15
|
+
protected ngFormService: MtnaWfNgFormService;
|
|
16
|
+
protected uiService: MtnaWfUIService;
|
|
17
|
+
static ngAcceptInputType_emitStatusOnMtnaFormChange: BooleanInput;
|
|
18
|
+
static ngAcceptInputTypes_readonly: BooleanInput;
|
|
19
|
+
set annotations(map: AnnotatableNumberMap);
|
|
20
|
+
/** Whether to emit the status of each step each time the {@link mtnaForm} is set to a new value. Defaults to false.*/
|
|
21
|
+
get emitStatusOnMtnaFormChange(): boolean;
|
|
22
|
+
set emitStatusOnMtnaFormChange(emitStatusOnMtnaFormChange: boolean);
|
|
23
|
+
private _emitStatusOnMtnaFormChange;
|
|
24
|
+
get mtnaForm(): F | null | undefined;
|
|
25
|
+
set mtnaForm(form: F | null | undefined);
|
|
26
|
+
private _mtnaForm;
|
|
27
|
+
/**
|
|
28
|
+
* The form can contain sections not included in the steps.
|
|
29
|
+
* To avoid misalignment of steps-to-sections, we map each step to
|
|
30
|
+
* its instanceId
|
|
31
|
+
*/
|
|
32
|
+
set steps(newSteps: Array<FormStep> | null | undefined);
|
|
33
|
+
get readonly(): boolean;
|
|
34
|
+
set readonly(r: boolean);
|
|
35
|
+
private readonly$;
|
|
36
|
+
/**
|
|
37
|
+
* Emitted every time a form control's validation status changes.
|
|
38
|
+
* The `id` is the form control's name and the `status` is the new validation status for the control.
|
|
39
|
+
*/
|
|
40
|
+
status: EventEmitter<{
|
|
41
|
+
id: string;
|
|
42
|
+
status: FormControlStatus;
|
|
43
|
+
}>;
|
|
44
|
+
focusedSection: EventEmitter<FormStep>;
|
|
45
|
+
mtnaFormChange: EventEmitter<F>;
|
|
46
|
+
ngForm: FormGroup | undefined;
|
|
47
|
+
componentIds: never[];
|
|
48
|
+
_steps: {
|
|
49
|
+
[id: string]: FormStep;
|
|
50
|
+
} | undefined;
|
|
51
|
+
private _constructionDate;
|
|
52
|
+
private _hasPreviousForm;
|
|
53
|
+
private _ngFormStatusChangeSub?;
|
|
54
|
+
private _mtnaFormItemChangeSub?;
|
|
55
|
+
private _initialStatusEmitted;
|
|
56
|
+
constructor(mtnaFormManager: MtnaWfManagerService, ngFormService: MtnaWfNgFormService, uiService: MtnaWfUIService);
|
|
57
|
+
ngAfterViewInit(): void;
|
|
58
|
+
ngOnDestroy(): void;
|
|
59
|
+
_trackByInstanceId(index: number, formItem: FormItem): string;
|
|
60
|
+
/** Subscribe and emit form status changes for the steps. */
|
|
61
|
+
private _checkAndSubscribeToFormStatus;
|
|
62
|
+
/**
|
|
63
|
+
* Find a form control with the given name, then emit it's status.
|
|
64
|
+
*
|
|
65
|
+
* @param name — The unique name of the form control to find and emit the status for.
|
|
66
|
+
*/
|
|
67
|
+
private _emitFormControlStatus;
|
|
68
|
+
/**
|
|
69
|
+
* @param emitInitialValues Whether to emit initial step values or just listen for future changes
|
|
70
|
+
*/
|
|
71
|
+
private _emitInitialStepsStatusAndSubscribeToChanges;
|
|
72
|
+
/**
|
|
73
|
+
* Observes input changes for readOnly, in order to handle internal change subscriptions.
|
|
74
|
+
* When the form is not readonly, we subscribe to form status & form item changes, so we can emit them.
|
|
75
|
+
* When the form is readonly, we do not want to emit any changes, so we unsubscribe.
|
|
76
|
+
*/
|
|
77
|
+
private _subscribeAndEmitMtnaFormChanges;
|
|
78
|
+
private _handleFormSerialization;
|
|
79
|
+
/**
|
|
80
|
+
* Adds or removes a FormItem whenever a new MtnaWfFormItemChange occurs,
|
|
81
|
+
* and emits a new MtnaForm.
|
|
82
|
+
*/
|
|
83
|
+
private _subscribeToMtnaFormItemChanges;
|
|
84
|
+
private _unsubscribeFromNgFormChanges;
|
|
85
|
+
private _unsubscribeFromMtnaFormChanges;
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfBaseFormComponent<any>, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfBaseFormComponent<any>, "ng-component", never, { "annotations": "annotations"; "emitStatusOnMtnaFormChange": "emitStatusOnMtnaFormChange"; "mtnaForm": "mtnaForm"; "steps": "steps"; "readonly": "readonly"; }, { "status": "status"; "focusedSection": "focusedSection"; "mtnaFormChange": "mtnaFormChange"; }, never, never>;
|
|
88
|
+
}
|
|
89
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './base-form.component';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
1
2
|
import { FormGroup } from '@angular/forms';
|
|
2
3
|
import { FormItem, FormItemGroup } from '@mtna/web-form-ts';
|
|
3
4
|
import { MtnaWfBaseFormItemControl } from './base-form-item-control.component';
|
|
@@ -7,6 +8,7 @@ export declare abstract class MtnaWfBaseGroupItem<I extends FormItemGroup> exten
|
|
|
7
8
|
set parentIds(value: Array<string>);
|
|
8
9
|
private _parentIds;
|
|
9
10
|
_trackByInstanceId(index: number, item: FormItem): string;
|
|
11
|
+
constructor(cdr: ChangeDetectorRef);
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfBaseGroupItem<any>, never>;
|
|
11
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfBaseGroupItem<any>, "ng-component", never, { "parentIds": "parentIds"; }, {}, never, never>;
|
|
12
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { Section } from '@mtna/web-form-ts';
|
|
3
3
|
import { FormStep } from '../../models/form-stepper/form-step.model';
|
|
4
4
|
import { MtnaWfBaseGroupItem } from './base-group-item.component';
|
|
@@ -8,6 +8,7 @@ export declare abstract class MtnaWfBaseSectionItem<S extends Section> extends M
|
|
|
8
8
|
set step(value: FormStep | null | undefined);
|
|
9
9
|
private _step;
|
|
10
10
|
focused: EventEmitter<FormStep>;
|
|
11
|
+
constructor(cdr: ChangeDetectorRef);
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfBaseSectionItem<any>, never>;
|
|
12
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfBaseSectionItem<any>, "ng-component", never, { "step": "step"; }, { "focused": "focused"; }, never, never>;
|
|
13
14
|
}
|
|
@@ -1,89 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { FormGroup } from '@angular/forms';
|
|
4
|
-
import { CanDestroyNotify } from '@mtna/core-angular';
|
|
5
|
-
import { AnnotatableNumberMap } from '@mtna/pojo-social-angular';
|
|
6
|
-
import { Form, FormControlStatus, FormItem } from '@mtna/web-form-ts';
|
|
7
|
-
import { FormStep } from '../../models';
|
|
8
|
-
import { MtnaWfManagerService, MtnaWfNgFormService, MtnaWfUIService } from '../../services';
|
|
1
|
+
import { Form } from '@mtna/web-form-ts';
|
|
2
|
+
import { MtnaWfBaseFormComponent } from '../base-form';
|
|
9
3
|
import * as i0 from "@angular/core";
|
|
10
|
-
declare
|
|
11
|
-
new (): {};
|
|
12
|
-
};
|
|
13
|
-
export declare class MtnaWfFormComponent extends MtnaWfFormComponent_base implements AfterViewInit, CanDestroyNotify, OnDestroy {
|
|
14
|
-
private mtnaFormManager;
|
|
15
|
-
private ngFormService;
|
|
16
|
-
private uiService;
|
|
17
|
-
static ngAcceptInputType_emitStatusOnMtnaFormChange: BooleanInput;
|
|
18
|
-
static ngAcceptInputTypes_readonly: BooleanInput;
|
|
19
|
-
set annotations(map: AnnotatableNumberMap);
|
|
20
|
-
/** Whether to emit the status of each step each time the {@link mtnaForm} is set to a new value. Defaults to false.*/
|
|
21
|
-
get emitStatusOnMtnaFormChange(): boolean;
|
|
22
|
-
set emitStatusOnMtnaFormChange(emitStatusOnMtnaFormChange: boolean);
|
|
23
|
-
private _emitStatusOnMtnaFormChange;
|
|
24
|
-
get mtnaForm(): Form | null | undefined;
|
|
25
|
-
set mtnaForm(form: Form | null | undefined);
|
|
26
|
-
private _mtnaForm;
|
|
27
|
-
/**
|
|
28
|
-
* The form can contain sections not included in the steps.
|
|
29
|
-
* To avoid misalignment of steps-to-sections, we map each step to
|
|
30
|
-
* its instanceId
|
|
31
|
-
*/
|
|
32
|
-
set steps(newSteps: Array<FormStep> | null | undefined);
|
|
33
|
-
get readonly(): boolean;
|
|
34
|
-
set readonly(r: boolean);
|
|
35
|
-
private readonly$;
|
|
36
|
-
/**
|
|
37
|
-
* Emitted every time a form control's validation status changes.
|
|
38
|
-
* The `id` is the form control's name and the `status` is the new validation status for the control.
|
|
39
|
-
*/
|
|
40
|
-
status: EventEmitter<{
|
|
41
|
-
id: string;
|
|
42
|
-
status: FormControlStatus;
|
|
43
|
-
}>;
|
|
44
|
-
focusedSection: EventEmitter<FormStep>;
|
|
45
|
-
mtnaFormChange: EventEmitter<Form>;
|
|
46
|
-
ngForm: FormGroup | undefined;
|
|
47
|
-
componentIds: never[];
|
|
48
|
-
_steps: {
|
|
49
|
-
[id: string]: FormStep;
|
|
50
|
-
} | undefined;
|
|
51
|
-
private _constructionDate;
|
|
52
|
-
private _hasPreviousForm;
|
|
53
|
-
private _ngFormStatusChangeSub?;
|
|
54
|
-
private _mtnaFormItemChangeSub?;
|
|
55
|
-
private _initialStatusEmitted;
|
|
56
|
-
constructor(mtnaFormManager: MtnaWfManagerService, ngFormService: MtnaWfNgFormService, uiService: MtnaWfUIService);
|
|
57
|
-
ngAfterViewInit(): void;
|
|
58
|
-
ngOnDestroy(): void;
|
|
59
|
-
_trackByInstanceId(index: number, formItem: FormItem): string;
|
|
60
|
-
/** Subscribe and emit form status changes for the steps. */
|
|
61
|
-
private _checkAndSubscribeToFormStatus;
|
|
62
|
-
/**
|
|
63
|
-
* Find a form control with the given name, then emit it's status.
|
|
64
|
-
*
|
|
65
|
-
* @param name — The unique name of the form cotrol to find and emit the status for.
|
|
66
|
-
*/
|
|
67
|
-
private _emitFormControlStatus;
|
|
68
|
-
/**
|
|
69
|
-
* @param emitInitialValues Whether to emit initial step values or just listen for future changes
|
|
70
|
-
*/
|
|
71
|
-
private _emitInitialStepsStatusAndSubscribeToChanges;
|
|
72
|
-
/**
|
|
73
|
-
* Observes input changes for readOnly, in order to handle internal change subscriptions.
|
|
74
|
-
* When the form is not readonly, we subscribe to form status & form item changes, so we can emit them.
|
|
75
|
-
* When the form is readonly, we do not want to emit any changes, so we unsubscribe.
|
|
76
|
-
*/
|
|
77
|
-
private _subscribeAndEmitMtnaFormChanges;
|
|
78
|
-
private _handleFormSerialization;
|
|
79
|
-
/**
|
|
80
|
-
* Adds or removes a FormItem whenever a new MtnaWfFormItemChange occurs,
|
|
81
|
-
* and emits a new MtnaForm.
|
|
82
|
-
*/
|
|
83
|
-
private _subscribeToMtnaFormItemChanges;
|
|
84
|
-
private _unsubscribeFromNgFormChanges;
|
|
85
|
-
private _unsubscribeFromMtnaFormChanges;
|
|
4
|
+
export declare class MtnaWfFormComponent extends MtnaWfBaseFormComponent<Form> {
|
|
86
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormComponent, never>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFormComponent, "mtna-form", never, {
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFormComponent, "mtna-form", never, {}, { "status": "status"; "focusedSection": "focusedSection"; "mtnaFormChange": "mtnaFormChange"; }, never, never>;
|
|
88
7
|
}
|
|
89
|
-
export {};
|
|
@@ -3,8 +3,9 @@ import * as i1 from "./form-item-dialog.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/material/dialog";
|
|
5
5
|
import * as i4 from "../form-item/form-item.module";
|
|
6
|
+
import * as i5 from "@angular/material/button";
|
|
6
7
|
export declare class MtnaWfFormItemDialogModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormItemDialogModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFormItemDialogModule, [typeof i1.MtnaWfFormItemDialogComponent], [typeof i2.CommonModule, typeof i3.MatDialogModule, typeof i4.MtnaWfFormItemModule], [typeof i1.MtnaWfFormItemDialogComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFormItemDialogModule, [typeof i1.MtnaWfFormItemDialogComponent], [typeof i2.CommonModule, typeof i3.MatDialogModule, typeof i4.MtnaWfFormItemModule, typeof i5.MatButtonModule], [typeof i1.MtnaWfFormItemDialogComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfFormItemDialogModule>;
|
|
10
11
|
}
|
|
@@ -30,8 +30,10 @@
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
mtna-wf-checkbox-item
|
|
34
|
-
|
|
33
|
+
mtna-wf-checkbox-item {
|
|
34
|
+
.checkbox-error {
|
|
35
|
+
color: mat.get-color-from-palette($warn, default);
|
|
36
|
+
}
|
|
35
37
|
}
|
|
36
38
|
}
|
|
37
39
|
|
|
@@ -59,4 +61,11 @@
|
|
|
59
61
|
border-color: mat.get-color-from-palette($palette);
|
|
60
62
|
}
|
|
61
63
|
}
|
|
64
|
+
|
|
65
|
+
button.mat-icon-button.acknowledge-verification-button {
|
|
66
|
+
&:hover,
|
|
67
|
+
&.cdk-focused {
|
|
68
|
+
color: mat.get-color-from-palette($palette);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
62
71
|
}
|
|
@@ -10,6 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class MtnaWfCheckboxComponent extends MtnaWfBaseParentValueItem<CheckboxItem, FormArray> implements CanDestroyNotify, OnDestroy {
|
|
11
11
|
private dialogService;
|
|
12
12
|
destroyed$: Subject<void>;
|
|
13
|
+
_acknowledgementText: string;
|
|
13
14
|
constructor(cdr: ChangeDetectorRef, dialogService: MtnaWfDialogService);
|
|
14
15
|
handleChange(change: MatCheckboxChange, index: number): void;
|
|
15
16
|
ngOnDestroy(): void;
|
|
@@ -2,17 +2,18 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./checkbox.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "../../../pipes/get-form-control-error.pipe";
|
|
5
|
-
import * as i4 from "@angular/
|
|
6
|
-
import * as i5 from "@angular/
|
|
7
|
-
import * as i6 from "@angular/material/
|
|
8
|
-
import * as i7 from "@angular/material/
|
|
9
|
-
import * as i8 from "@angular/material/
|
|
10
|
-
import * as i9 from "@angular/material/
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "
|
|
5
|
+
import * as i4 from "@angular/flex-layout";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/form-field";
|
|
8
|
+
import * as i7 from "@angular/material/checkbox";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/icon";
|
|
11
|
+
import * as i10 from "@angular/material/tooltip";
|
|
12
|
+
import * as i11 from "../../form-item/form-item.module";
|
|
13
|
+
import * as i12 from "@mtna/core-angular";
|
|
14
|
+
import * as i13 from "../../form-item-dialog/form-item-dialog.module";
|
|
14
15
|
export declare class MtnaWfCheckboxModule {
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfCheckboxModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfCheckboxModule, [typeof i1.MtnaWfCheckboxComponent], [typeof i2.CommonModule, typeof i3.MtnaWfGetFormControlErrorPipeModule, typeof i4.
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfCheckboxModule, [typeof i1.MtnaWfCheckboxComponent], [typeof i2.CommonModule, typeof i3.MtnaWfGetFormControlErrorPipeModule, typeof i4.FlexLayoutModule, typeof i5.FormsModule, typeof i6.MatFormFieldModule, typeof i7.MatCheckboxModule, typeof i8.MatButtonModule, typeof i9.MatIconModule, typeof i10.MatTooltipModule, typeof i11.MtnaWfFormItemModule, typeof i12.MtnaHighlightModule, typeof i5.ReactiveFormsModule, typeof i13.MtnaWfFormItemDialogModule], [typeof i1.MtnaWfCheckboxComponent]>;
|
|
17
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfCheckboxModule>;
|
|
18
19
|
}
|
|
@@ -12,6 +12,7 @@ export declare class MtnaWfDateComponent extends MtnaWfBaseValueItem<DateItem, F
|
|
|
12
12
|
set item(value: DateItem);
|
|
13
13
|
rangeLimits: DateRange<Date | null> | null | undefined;
|
|
14
14
|
picker: MatDatepicker<Date> | undefined;
|
|
15
|
+
_dateText: string;
|
|
15
16
|
constructor(cdr: ChangeDetectorRef, logger: MtnaLogger);
|
|
16
17
|
ngAfterViewInit(): void;
|
|
17
18
|
/**
|
|
@@ -7,6 +7,7 @@ export declare class MtnaWfDateRangeComponent extends MtnaWfBaseValueItem<Offset
|
|
|
7
7
|
set item(item: OffsetDateRangeItem);
|
|
8
8
|
_startItem: DateItem;
|
|
9
9
|
_endItem: DateItem;
|
|
10
|
+
toText: string;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfDateRangeComponent, never>;
|
|
11
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfDateRangeComponent, "mtna-wf-date-range", never, {}, {}, never, never>;
|
|
12
13
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '~@angular/material' as mat;
|
|
3
|
+
|
|
4
|
+
@mixin color($theme) {
|
|
5
|
+
$config: mat.get-color-config($theme);
|
|
6
|
+
$foreground: map.get($config, foreground);
|
|
7
|
+
$background: map.get($config, background);
|
|
8
|
+
|
|
9
|
+
.cdk-overlay-container .cdk-overlay-pane {
|
|
10
|
+
.mtna-wf-dropdown-item__select-panel {
|
|
11
|
+
.mat-option {
|
|
12
|
+
&:focus,
|
|
13
|
+
&:hover,
|
|
14
|
+
&.mat-active {
|
|
15
|
+
background-color: mat.get-color-from-palette($background, focused-button);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@mixin typography($theme) {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@mixin theme($theme) {
|
|
26
|
+
$config: mat.get-color-config($theme);
|
|
27
|
+
@if $config != null {
|
|
28
|
+
@include color($theme);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
$typography-config: mat.get-typography-config($theme);
|
|
32
|
+
@if $typography-config != null {
|
|
33
|
+
@include typography($theme);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -9,6 +9,7 @@ export declare class MtnaWfFileUploadComponent extends MtnaWfBaseFormItemControl
|
|
|
9
9
|
private fileService;
|
|
10
10
|
fileInfo?: FileInformation;
|
|
11
11
|
loading: boolean;
|
|
12
|
+
_fileUploadButtonText: string;
|
|
12
13
|
constructor(cdr: ChangeDetectorRef, fileService: FileService);
|
|
13
14
|
fileToUpload(file: FileList): void;
|
|
14
15
|
handleDownload(template: FileInformation): void;
|
|
@@ -6,6 +6,7 @@ export declare class MtnaWfI18nInputComponent<I extends InternationalizedParagra
|
|
|
6
6
|
get item(): I;
|
|
7
7
|
set item(value: I);
|
|
8
8
|
isParagraph: boolean;
|
|
9
|
+
_notInformationText: string;
|
|
9
10
|
getFormControl(language: string): FormControl;
|
|
10
11
|
getLanguageDisplay(language: string): string;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfI18nInputComponent<any>, never>;
|
|
@@ -7,6 +7,7 @@ export declare class MtnaWfInputComponent<I extends DecimalAnswerItem | Paragrap
|
|
|
7
7
|
set item(value: I);
|
|
8
8
|
isParagraph: boolean;
|
|
9
9
|
isNumberInput: boolean;
|
|
10
|
+
_noInformationText: string;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfInputComponent<any>, never>;
|
|
11
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfInputComponent<any>, "mtna-wf-input-item", never, {}, {}, never, never>;
|
|
12
13
|
}
|
|
@@ -6,6 +6,7 @@ import { MtnaWfBaseParentValueItem } from '../../base-items/base-parent-value-it
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MtnaWfRepeatableItemContainerComponent extends MtnaWfBaseParentValueItem<RepeatableItem, FormGroup> {
|
|
8
8
|
private manager;
|
|
9
|
+
_addText: string;
|
|
9
10
|
constructor(cdr: ChangeDetectorRef, manager: MtnaWfManagerService);
|
|
10
11
|
addItem(): void;
|
|
11
12
|
removeItem(item: FormItem): void;
|
|
@@ -7,6 +7,12 @@ declare const _FormStepMixinBase: import("@angular/material/core/common-behavior
|
|
|
7
7
|
_elementRef: ElementRef;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
/**
|
|
11
|
+
* A component that represents a single step in a form stepper.
|
|
12
|
+
* NOTE:
|
|
13
|
+
* - disabled: property on the FormStep used to determine if the step is disabled. This will affect the disabled property and the clickable property.
|
|
14
|
+
* - clickable: property on the FormStep used to determine if the step is clickable. This does not affect the disabled property.
|
|
15
|
+
*/
|
|
10
16
|
export declare class MtnaWfFormStepComponent extends _FormStepMixinBase implements CanColor {
|
|
11
17
|
disabled: boolean;
|
|
12
18
|
get step(): FormStep;
|
|
@@ -16,6 +22,7 @@ export declare class MtnaWfFormStepComponent extends _FormStepMixinBase implemen
|
|
|
16
22
|
set clickable(clickable: boolean);
|
|
17
23
|
private _clickable;
|
|
18
24
|
incompleteIcon: string | null | undefined;
|
|
25
|
+
notApplicableText: string;
|
|
19
26
|
constructor(elementRef: ElementRef);
|
|
20
27
|
/**
|
|
21
28
|
* Prevents click event if this step is not clickable
|
|
@@ -16,6 +16,8 @@ export declare class MtnaWfFormStepGroupComponent extends _FormStepMixinBase imp
|
|
|
16
16
|
set steps(steps: FormStep[]);
|
|
17
17
|
private _steps;
|
|
18
18
|
selected: EventEmitter<FormStep>;
|
|
19
|
+
_collapsedText: string;
|
|
20
|
+
_hideText: string;
|
|
19
21
|
constructor(elementRef: ElementRef);
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormStepGroupComponent, never>;
|
|
21
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFormStepGroupComponent, "mtna-wf-step-group", never, { "color": "color"; "collapsed": "collapsed"; "incompleteIcon": "incompleteIcon"; "steps": "steps"; }, { "selected": "selected"; }, never, never>;
|
|
@@ -6,24 +6,22 @@
|
|
|
6
6
|
$primary: map.get($config, primary);
|
|
7
7
|
$accent: map.get($config, accent);
|
|
8
8
|
$foreground: map.get($config, foreground);
|
|
9
|
+
$background: map.get($config, background);
|
|
9
10
|
|
|
10
11
|
mtna-wf-stepper {
|
|
11
12
|
border-right-color: mat.get-color-from-palette($foreground, divider);
|
|
12
|
-
&.mat-primary {
|
|
13
|
-
@include _form-stepper-palette($primary, $accent, $foreground);
|
|
14
|
-
}
|
|
15
|
-
&.mat-accent {
|
|
16
|
-
@include _form-stepper-palette($accent, $primary, $foreground);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
mtna-wf-step {
|
|
20
13
|
&.mat-primary {
|
|
21
14
|
@include _form-step-palette($primary, $foreground);
|
|
15
|
+
@include _form-step-group-palette($primary, $foreground, $background);
|
|
16
|
+
@include _form-stepper-palette($primary, $accent, $foreground);
|
|
22
17
|
}
|
|
23
18
|
&.mat-accent {
|
|
24
19
|
@include _form-step-palette($accent, $foreground);
|
|
20
|
+
@include _form-step-group-palette($accent, $foreground, $background);
|
|
21
|
+
@include _form-stepper-palette($accent, $primary, $foreground);
|
|
25
22
|
}
|
|
26
23
|
}
|
|
24
|
+
|
|
27
25
|
}
|
|
28
26
|
|
|
29
27
|
@mixin typography($theme) {
|
|
@@ -43,10 +41,12 @@
|
|
|
43
41
|
|
|
44
42
|
@mixin _form-stepper-palette($mainPalette, $secondaryPalette, $foreground) {
|
|
45
43
|
background-color: mat.get-color-from-palette($mainPalette, 50);
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
background-color: mat.get-color-from-palette($
|
|
44
|
+
li.child-step-active {
|
|
45
|
+
&::after {
|
|
46
|
+
background-color: mat.get-color-from-palette($secondaryPalette, default);
|
|
49
47
|
}
|
|
48
|
+
}
|
|
49
|
+
li.clickable {
|
|
50
50
|
&::after {
|
|
51
51
|
background-color: mat.get-color-from-palette($secondaryPalette, default);
|
|
52
52
|
}
|
|
@@ -54,15 +54,13 @@
|
|
|
54
54
|
background-color: mat.get-color-from-palette($mainPalette, default, 0.04);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
|
|
57
|
+
li.disabled-step {
|
|
58
58
|
color: mat.get-color-from-palette($foreground, disabled-text);
|
|
59
|
+
.step-title,
|
|
59
60
|
.step-status {
|
|
60
61
|
color: mat.get-color-from-palette($foreground, disabled-text);
|
|
61
62
|
}
|
|
62
63
|
}
|
|
63
|
-
mat-divider {
|
|
64
|
-
background-color: mat.get-color-from-palette($mainPalette, default);
|
|
65
|
-
}
|
|
66
64
|
}
|
|
67
65
|
|
|
68
66
|
@mixin _form-step-palette($mainPalette, $foreground) {
|
|
@@ -70,3 +68,20 @@
|
|
|
70
68
|
color: mat.get-color-from-palette($foreground, secondary-text);
|
|
71
69
|
}
|
|
72
70
|
}
|
|
71
|
+
|
|
72
|
+
@mixin _form-step-group-palette($mainPalette, $foreground, $background) {
|
|
73
|
+
.mtna-wf-step-group {
|
|
74
|
+
border-color: mat.get-color-from-palette($mainPalette, default);
|
|
75
|
+
.collapse-button.mat-icon-button {
|
|
76
|
+
background-color: mat.get-color-from-palette($background, card);
|
|
77
|
+
border-color: mat.get-color-from-palette($mainPalette, default);
|
|
78
|
+
&:hover,
|
|
79
|
+
&:focus {
|
|
80
|
+
background-color: mat.get-color-from-palette($mainPalette, default);
|
|
81
|
+
.mat-icon {
|
|
82
|
+
color: mat.get-color-from-palette($background, card);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -16,9 +16,17 @@ declare const _FormStepperMixinBase: import("@angular/material/core/common-behav
|
|
|
16
16
|
export declare class MtnaWfFormStepperComponent extends _FormStepperMixinBase implements CanColor {
|
|
17
17
|
incompleteIcon: string | null | undefined;
|
|
18
18
|
/** Form steps */
|
|
19
|
-
steps: Array<FormStep | FormStepGroup>;
|
|
19
|
+
get steps(): Array<FormStep | FormStepGroup>;
|
|
20
|
+
set steps(steps: Array<FormStep | FormStepGroup>);
|
|
21
|
+
private _steps;
|
|
20
22
|
/** When a step is selected */
|
|
21
23
|
selected: EventEmitter<FormStep>;
|
|
24
|
+
groupStepCollapsedMap: {
|
|
25
|
+
[key: string]: boolean;
|
|
26
|
+
};
|
|
27
|
+
notApplicableText: string;
|
|
28
|
+
_collapsedText: string;
|
|
29
|
+
_hideText: string;
|
|
22
30
|
constructor(elementRef: ElementRef);
|
|
23
31
|
/**
|
|
24
32
|
* Improves effeciency of the *ngFor loop that creates the steps.
|
|
@@ -28,6 +36,12 @@ export declare class MtnaWfFormStepperComponent extends _FormStepperMixinBase im
|
|
|
28
36
|
* @returns unique string to key each item in the loop
|
|
29
37
|
*/
|
|
30
38
|
_trackStep(index: number, step: FormStep | FormStepGroup): string | number;
|
|
39
|
+
/**
|
|
40
|
+
* Prevents click event if this step is not clickable
|
|
41
|
+
*/
|
|
42
|
+
_haltClickEvent(event: Event, step: FormStep): void;
|
|
43
|
+
createGroupStepCollapsedMap(steps: Array<FormStep | FormStepGroup>): void;
|
|
44
|
+
toggleGroupStep(step: FormStepGroup): void;
|
|
31
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormStepperComponent, never>;
|
|
32
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFormStepperComponent, "mtna-wf-stepper", never, { "color": "color"; "incompleteIcon": "incompleteIcon"; "steps": "steps"; }, { "selected": "selected"; }, never, never>;
|
|
33
47
|
}
|
|
@@ -11,8 +11,12 @@ import * as i9 from "@angular/material/button";
|
|
|
11
11
|
import * as i10 from "@angular/material/tooltip";
|
|
12
12
|
import * as i11 from "@angular/material/icon";
|
|
13
13
|
import * as i12 from "../../pipes/form-step-group.pipe";
|
|
14
|
+
import * as i13 from "../../pipes/coerce-form-step-group.pipe";
|
|
15
|
+
import * as i14 from "../../pipes/coerce-form-step.pipe";
|
|
16
|
+
import * as i15 from "../../pipes/child-step-active.pipe";
|
|
17
|
+
import * as i16 from "../../pipes/get-step-aria-label.pipe";
|
|
14
18
|
export declare class MtnaWfFormStepperModule {
|
|
15
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormStepperModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFormStepperModule, [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepperComponent], [typeof i4.CommonModule, typeof i5.FlexLayoutModule, typeof i6.MatDividerModule, typeof i7.MtnaStatusCircleModule, typeof i8.MatRippleModule, typeof i9.MatButtonModule, typeof i10.MatTooltipModule, typeof i11.MatIconModule, typeof i12.MtnaWfFormStepGroupPipeModule], [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepperComponent]>;
|
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFormStepperModule, [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepperComponent], [typeof i4.CommonModule, typeof i5.FlexLayoutModule, typeof i6.MatDividerModule, typeof i7.MtnaStatusCircleModule, typeof i8.MatRippleModule, typeof i9.MatButtonModule, typeof i10.MatTooltipModule, typeof i11.MatIconModule, typeof i12.MtnaWfFormStepGroupPipeModule, typeof i13.CoerceFormStepGroupPipeModule, typeof i14.CoerceFormStepPipeModule, typeof i15.ChildStepActivePipeModule, typeof i16.GetStepAriaLabelModule], [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepperComponent]>;
|
|
17
21
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfFormStepperModule>;
|
|
18
22
|
}
|
|
@@ -7,6 +7,7 @@ export * from './form-item-component-provider/index';
|
|
|
7
7
|
export * from './form-item-dialog/index';
|
|
8
8
|
export * from './form-item-impl/index';
|
|
9
9
|
export * from './form-item-injector/index';
|
|
10
|
+
export * from './progressive-form/index';
|
|
10
11
|
export * from './form-stepper/index';
|
|
11
12
|
export * from './item-header/index';
|
|
12
13
|
export * from './step-card/index';
|