@decaf-ts/for-angular 0.0.24 → 0.0.25
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/components/for-angular-components.module.d.ts +2 -2
- package/components/index.d.ts +1 -1
- package/components/{steped-form/steped-form.component.d.ts → stepped-form/stepped-form.component.d.ts} +38 -26
- package/esm2022/components/for-angular-components.module.mjs +8 -8
- package/esm2022/components/index.mjs +2 -2
- package/esm2022/components/stepped-form/stepped-form.component.mjs +306 -0
- package/esm2022/i18n/data/en.json +5 -0
- package/fesm2022/decaf-ts-for-angular.mjs +52 -34
- package/fesm2022/decaf-ts-for-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/esm2022/components/steped-form/steped-form.component.mjs +0 -291
|
@@ -11,10 +11,10 @@ import * as i9 from "./pagination/pagination.component";
|
|
|
11
11
|
import * as i10 from "./fieldset/fieldset.component";
|
|
12
12
|
import * as i11 from "./layout/layout.component";
|
|
13
13
|
import * as i12 from "./filter/filter.component";
|
|
14
|
-
import * as i13 from "./
|
|
14
|
+
import * as i13 from "./stepped-form/stepped-form.component";
|
|
15
15
|
import * as i14 from "../directives/collapsable.directive";
|
|
16
16
|
export declare class ForAngularComponentsModule {
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ForAngularComponentsModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ForAngularComponentsModule, never, [typeof i1.ModelRendererComponent, typeof i2.ComponentRendererComponent, typeof i3.CrudFieldComponent, typeof i4.CrudFormComponent, typeof i5.EmptyStateComponent, typeof i6.ListComponent, typeof i7.ListItemComponent, typeof i8.SearchbarComponent, typeof i9.PaginationComponent, typeof i4.CrudFormComponent, typeof i10.FieldsetComponent, typeof i11.LayoutComponent, typeof i12.FilterComponent, typeof i13.
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ForAngularComponentsModule, never, [typeof i1.ModelRendererComponent, typeof i2.ComponentRendererComponent, typeof i3.CrudFieldComponent, typeof i4.CrudFormComponent, typeof i5.EmptyStateComponent, typeof i6.ListComponent, typeof i7.ListItemComponent, typeof i8.SearchbarComponent, typeof i9.PaginationComponent, typeof i4.CrudFormComponent, typeof i10.FieldsetComponent, typeof i11.LayoutComponent, typeof i12.FilterComponent, typeof i13.SteppedFormComponent, typeof i14.CollapsableDirective], [typeof i1.ModelRendererComponent, typeof i2.ComponentRendererComponent, typeof i3.CrudFieldComponent, typeof i4.CrudFormComponent, typeof i5.EmptyStateComponent, typeof i6.ListComponent, typeof i7.ListItemComponent, typeof i8.SearchbarComponent, typeof i9.PaginationComponent, typeof i4.CrudFormComponent, typeof i10.FieldsetComponent, typeof i11.LayoutComponent, typeof i12.FilterComponent, typeof i13.SteppedFormComponent, typeof i14.CollapsableDirective]>;
|
|
19
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<ForAngularComponentsModule>;
|
|
20
20
|
}
|
package/components/index.d.ts
CHANGED
|
@@ -12,5 +12,5 @@ export * from './pagination/pagination.component';
|
|
|
12
12
|
export * from './searchbar/searchbar.component';
|
|
13
13
|
export * from './crud-form/constants';
|
|
14
14
|
export * from './pagination/constants';
|
|
15
|
-
export * from './
|
|
15
|
+
export * from './stepped-form/stepped-form.component';
|
|
16
16
|
export * from './for-angular-components.module';
|
|
@@ -4,7 +4,19 @@ import { UIModelMetadata } from '@decaf-ts/ui-decorators';
|
|
|
4
4
|
import { CrudOperations } from '@decaf-ts/db-decorators';
|
|
5
5
|
import { BaseCustomEvent } from '../../engine';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class SteppedFormComponent implements OnInit, OnDestroy {
|
|
8
|
+
/**
|
|
9
|
+
* @description The locale to be used for translations.
|
|
10
|
+
* @summary Specifies the locale identifier to use when translating component text.
|
|
11
|
+
* This can be set explicitly via input property to override the automatically derived
|
|
12
|
+
* locale from the component name. The locale is typically a language code (e.g., 'en', 'fr')
|
|
13
|
+
* or a language-region code (e.g., 'en-US', 'fr-CA') that determines which translation
|
|
14
|
+
* set to use for the component's text content.
|
|
15
|
+
*
|
|
16
|
+
* @type {string}
|
|
17
|
+
* @memberOf SteppedFormComponent
|
|
18
|
+
*/
|
|
19
|
+
locale: string;
|
|
8
20
|
/**
|
|
9
21
|
* @description Number of pages in the stepped form.
|
|
10
22
|
* @summary Represents the total number of steps/pages in the multi-step form.
|
|
@@ -13,7 +25,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
13
25
|
*
|
|
14
26
|
* @type {number}
|
|
15
27
|
* @default 1
|
|
16
|
-
* @memberOf
|
|
28
|
+
* @memberOf SteppedFormComponent
|
|
17
29
|
*/
|
|
18
30
|
pages: number;
|
|
19
31
|
/**
|
|
@@ -24,7 +36,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
24
36
|
*
|
|
25
37
|
* @type {CrudOperations}
|
|
26
38
|
* @default OperationKeys.CREATE
|
|
27
|
-
* @memberOf
|
|
39
|
+
* @memberOf SteppedFormComponent
|
|
28
40
|
*/
|
|
29
41
|
operation: CrudOperations;
|
|
30
42
|
/**
|
|
@@ -35,7 +47,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
35
47
|
*
|
|
36
48
|
* @type {number}
|
|
37
49
|
* @default 1
|
|
38
|
-
* @memberOf
|
|
50
|
+
* @memberOf SteppedFormComponent
|
|
39
51
|
*/
|
|
40
52
|
startPage: number;
|
|
41
53
|
/**
|
|
@@ -46,7 +58,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
46
58
|
* page assignment, and display properties.
|
|
47
59
|
*
|
|
48
60
|
* @type {UIModelMetadata[]}
|
|
49
|
-
* @memberOf
|
|
61
|
+
* @memberOf SteppedFormComponent
|
|
50
62
|
*/
|
|
51
63
|
children: UIModelMetadata[];
|
|
52
64
|
/**
|
|
@@ -56,7 +68,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
56
68
|
* FormGroup, it contains all form controls for the entire stepped form.
|
|
57
69
|
*
|
|
58
70
|
* @type {FormGroup | FormArray | undefined}
|
|
59
|
-
* @memberOf
|
|
71
|
+
* @memberOf SteppedFormComponent
|
|
60
72
|
*/
|
|
61
73
|
formGroup: FormGroup | FormArray | undefined;
|
|
62
74
|
/**
|
|
@@ -66,7 +78,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
66
78
|
* updated whenever the user navigates between pages.
|
|
67
79
|
*
|
|
68
80
|
* @type {UIModelMetadata[] | undefined}
|
|
69
|
-
* @memberOf
|
|
81
|
+
* @memberOf SteppedFormComponent
|
|
70
82
|
*/
|
|
71
83
|
activeChildren: UIModelMetadata[] | undefined;
|
|
72
84
|
/**
|
|
@@ -76,7 +88,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
76
88
|
* when using FormArray structure.
|
|
77
89
|
*
|
|
78
90
|
* @type {FormGroup | undefined}
|
|
79
|
-
* @memberOf
|
|
91
|
+
* @memberOf SteppedFormComponent
|
|
80
92
|
*/
|
|
81
93
|
activeFormGroup: FormGroup | undefined;
|
|
82
94
|
/**
|
|
@@ -86,7 +98,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
86
98
|
* the next/back buttons or programmatic navigation.
|
|
87
99
|
*
|
|
88
100
|
* @type {number}
|
|
89
|
-
* @memberOf
|
|
101
|
+
* @memberOf SteppedFormComponent
|
|
90
102
|
*/
|
|
91
103
|
activePage: number;
|
|
92
104
|
/**
|
|
@@ -96,7 +108,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
96
108
|
* logical pages and provide navigation structure.
|
|
97
109
|
*
|
|
98
110
|
* @type {UIModelMetadata[]}
|
|
99
|
-
* @memberOf
|
|
111
|
+
* @memberOf SteppedFormComponent
|
|
100
112
|
*/
|
|
101
113
|
pagesArray: UIModelMetadata[];
|
|
102
114
|
/**
|
|
@@ -107,7 +119,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
107
119
|
*
|
|
108
120
|
* @private
|
|
109
121
|
* @type {Subscription}
|
|
110
|
-
* @memberOf
|
|
122
|
+
* @memberOf SteppedFormComponent
|
|
111
123
|
*/
|
|
112
124
|
private timerSubscription;
|
|
113
125
|
/**
|
|
@@ -117,15 +129,15 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
117
129
|
* event type information for parent components to handle.
|
|
118
130
|
*
|
|
119
131
|
* @type {EventEmitter<BaseCustomEvent>}
|
|
120
|
-
* @memberOf
|
|
132
|
+
* @memberOf SteppedFormComponent
|
|
121
133
|
*/
|
|
122
134
|
submitEvent: EventEmitter<BaseCustomEvent>;
|
|
123
135
|
/**
|
|
124
|
-
* @description Creates an instance of
|
|
125
|
-
* @summary Initializes a new
|
|
136
|
+
* @description Creates an instance of SteppedFormComponent.
|
|
137
|
+
* @summary Initializes a new SteppedFormComponent instance and registers the required
|
|
126
138
|
* Ionic icons for navigation buttons (forward and back arrows).
|
|
127
139
|
*
|
|
128
|
-
* @memberOf
|
|
140
|
+
* @memberOf SteppedFormComponent
|
|
129
141
|
*/
|
|
130
142
|
constructor();
|
|
131
143
|
/**
|
|
@@ -137,7 +149,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
137
149
|
* @mermaid
|
|
138
150
|
* sequenceDiagram
|
|
139
151
|
* participant A as Angular Lifecycle
|
|
140
|
-
* participant S as
|
|
152
|
+
* participant S as SteppedFormComponent
|
|
141
153
|
* participant F as Form Service
|
|
142
154
|
*
|
|
143
155
|
* A->>S: ngOnInit()
|
|
@@ -149,7 +161,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
149
161
|
* S->>F: Extract FormGroup for active page
|
|
150
162
|
* F-->>S: Return activeFormGroup
|
|
151
163
|
*
|
|
152
|
-
* @memberOf
|
|
164
|
+
* @memberOf SteppedFormComponent
|
|
153
165
|
*/
|
|
154
166
|
ngOnInit(): void;
|
|
155
167
|
/**
|
|
@@ -157,7 +169,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
157
169
|
* @summary Unsubscribes from any active timer subscriptions to prevent memory leaks.
|
|
158
170
|
* This is part of Angular's component lifecycle and ensures proper resource cleanup.
|
|
159
171
|
*
|
|
160
|
-
* @memberOf
|
|
172
|
+
* @memberOf SteppedFormComponent
|
|
161
173
|
*/
|
|
162
174
|
ngOnDestroy(): void;
|
|
163
175
|
/**
|
|
@@ -172,7 +184,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
172
184
|
* @mermaid
|
|
173
185
|
* sequenceDiagram
|
|
174
186
|
* participant U as User
|
|
175
|
-
* participant S as
|
|
187
|
+
* participant S as SteppedFormComponent
|
|
176
188
|
* participant F as Form Service
|
|
177
189
|
* participant P as Parent Component
|
|
178
190
|
*
|
|
@@ -188,7 +200,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
188
200
|
* S->>P: submitEvent.emit({data, name: SUBMIT})
|
|
189
201
|
* end
|
|
190
202
|
*
|
|
191
|
-
* @memberOf
|
|
203
|
+
* @memberOf SteppedFormComponent
|
|
192
204
|
*/
|
|
193
205
|
handleNext(lastPage?: boolean): void;
|
|
194
206
|
/**
|
|
@@ -202,14 +214,14 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
202
214
|
* @mermaid
|
|
203
215
|
* sequenceDiagram
|
|
204
216
|
* participant U as User
|
|
205
|
-
* participant S as
|
|
217
|
+
* participant S as SteppedFormComponent
|
|
206
218
|
*
|
|
207
219
|
* U->>S: Click Back
|
|
208
220
|
* S->>S: activePage--
|
|
209
221
|
* S->>S: getCurrentFormGroup(activePage)
|
|
210
222
|
* Note over S: Update active form and children
|
|
211
223
|
*
|
|
212
|
-
* @memberOf
|
|
224
|
+
* @memberOf SteppedFormComponent
|
|
213
225
|
*/
|
|
214
226
|
handleBack(): void;
|
|
215
227
|
/**
|
|
@@ -224,7 +236,7 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
224
236
|
* @private
|
|
225
237
|
* @mermaid
|
|
226
238
|
* sequenceDiagram
|
|
227
|
-
* participant S as
|
|
239
|
+
* participant S as SteppedFormComponent
|
|
228
240
|
* participant F as FormArray
|
|
229
241
|
* participant T as Timer
|
|
230
242
|
*
|
|
@@ -235,9 +247,9 @@ export declare class StepedFormComponent implements OnInit, OnDestroy {
|
|
|
235
247
|
* T-->>S: Filter children for active page
|
|
236
248
|
* S->>S: Set activeChildren
|
|
237
249
|
*
|
|
238
|
-
* @memberOf
|
|
250
|
+
* @memberOf SteppedFormComponent
|
|
239
251
|
*/
|
|
240
252
|
private getCurrentFormGroup;
|
|
241
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
242
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
253
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SteppedFormComponent, never>;
|
|
254
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SteppedFormComponent, "ngx-decaf-stepped-form", never, { "locale": { "alias": "locale"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "operation": { "alias": "operation"; "required": false; }; "startPage": { "alias": "startPage"; "required": false; }; "children": { "alias": "children"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; }, { "submitEvent": "submitEvent"; }, never, never, true, never>;
|
|
243
255
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgModule
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
2
|
import { CrudFieldComponent } from './crud-field/crud-field.component';
|
|
3
3
|
import { CrudFormComponent } from './crud-form/crud-form.component';
|
|
4
4
|
import { ModelRendererComponent } from './model-renderer/model-renderer.component';
|
|
@@ -12,7 +12,7 @@ import { FieldsetComponent } from './fieldset/fieldset.component';
|
|
|
12
12
|
import { CollapsableDirective } from '../directives/collapsable.directive';
|
|
13
13
|
import { LayoutComponent } from './layout/layout.component';
|
|
14
14
|
import { FilterComponent } from './filter/filter.component';
|
|
15
|
-
import {
|
|
15
|
+
import { SteppedFormComponent } from './stepped-form/stepped-form.component';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
const Directives = [CollapsableDirective];
|
|
18
18
|
const Components = [
|
|
@@ -29,7 +29,7 @@ const Components = [
|
|
|
29
29
|
FieldsetComponent,
|
|
30
30
|
LayoutComponent,
|
|
31
31
|
FilterComponent,
|
|
32
|
-
|
|
32
|
+
SteppedFormComponent
|
|
33
33
|
];
|
|
34
34
|
export class ForAngularComponentsModule {
|
|
35
35
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
@@ -46,7 +46,7 @@ export class ForAngularComponentsModule {
|
|
|
46
46
|
FieldsetComponent,
|
|
47
47
|
LayoutComponent,
|
|
48
48
|
FilterComponent,
|
|
49
|
-
|
|
49
|
+
SteppedFormComponent, CollapsableDirective], exports: [ModelRendererComponent,
|
|
50
50
|
ComponentRendererComponent,
|
|
51
51
|
CrudFieldComponent,
|
|
52
52
|
CrudFormComponent,
|
|
@@ -59,7 +59,7 @@ export class ForAngularComponentsModule {
|
|
|
59
59
|
FieldsetComponent,
|
|
60
60
|
LayoutComponent,
|
|
61
61
|
FilterComponent,
|
|
62
|
-
|
|
62
|
+
SteppedFormComponent, CollapsableDirective] }); }
|
|
63
63
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForAngularComponentsModule, imports: [CrudFieldComponent,
|
|
64
64
|
CrudFormComponent,
|
|
65
65
|
EmptyStateComponent,
|
|
@@ -70,15 +70,15 @@ export class ForAngularComponentsModule {
|
|
|
70
70
|
CrudFormComponent,
|
|
71
71
|
FieldsetComponent,
|
|
72
72
|
FilterComponent,
|
|
73
|
-
|
|
73
|
+
SteppedFormComponent] }); }
|
|
74
74
|
}
|
|
75
75
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForAngularComponentsModule, decorators: [{
|
|
76
76
|
type: NgModule,
|
|
77
77
|
args: [{
|
|
78
78
|
imports: [...Components, ...Directives],
|
|
79
79
|
declarations: [],
|
|
80
|
-
schemas: [
|
|
80
|
+
schemas: [],
|
|
81
81
|
exports: [...Components, ...Directives],
|
|
82
82
|
}]
|
|
83
83
|
}] });
|
|
84
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
84
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9yLWFuZ3VsYXItY29tcG9uZW50cy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvZm9yLWFuZ3VsYXItY29tcG9uZW50cy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNwRSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwyQ0FBMkMsQ0FBQztBQUNuRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNwRSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUMvRixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDdEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDM0UsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzVELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQzs7QUFFN0UsTUFBTSxVQUFVLEdBQUcsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO0FBQzFDLE1BQU0sVUFBVSxHQUFHO0lBQ2pCLHNCQUFzQjtJQUN0QiwwQkFBMEI7SUFDMUIsa0JBQWtCO0lBQ2xCLGlCQUFpQjtJQUNqQixtQkFBbUI7SUFDbkIsYUFBYTtJQUNiLGlCQUFpQjtJQUNqQixrQkFBa0I7SUFDbEIsbUJBQW1CO0lBQ25CLGlCQUFpQjtJQUNqQixpQkFBaUI7SUFDakIsZUFBZTtJQUNmLGVBQWU7SUFDZixvQkFBb0I7Q0FDckIsQ0FBQztBQVFGLE1BQU0sT0FBTywwQkFBMEI7K0dBQTFCLDBCQUEwQjtnSEFBMUIsMEJBQTBCLFlBdEJyQyxzQkFBc0I7WUFDdEIsMEJBQTBCO1lBQzFCLGtCQUFrQjtZQUNsQixpQkFBaUI7WUFDakIsbUJBQW1CO1lBQ25CLGFBQWE7WUFDYixpQkFBaUI7WUFDakIsa0JBQWtCO1lBQ2xCLG1CQUFtQjtZQUNuQixpQkFBaUI7WUFDakIsaUJBQWlCO1lBQ2pCLGVBQWU7WUFDZixlQUFlO1lBQ2Ysb0JBQW9CLEVBZkYsb0JBQW9CLGFBRXRDLHNCQUFzQjtZQUN0QiwwQkFBMEI7WUFDMUIsa0JBQWtCO1lBQ2xCLGlCQUFpQjtZQUNqQixtQkFBbUI7WUFDbkIsYUFBYTtZQUNiLGlCQUFpQjtZQUNqQixrQkFBa0I7WUFDbEIsbUJBQW1CO1lBQ25CLGlCQUFpQjtZQUNqQixpQkFBaUI7WUFDakIsZUFBZTtZQUNmLGVBQWU7WUFDZixvQkFBb0IsRUFmRixvQkFBb0I7Z0hBd0IzQiwwQkFBMEIsWUFwQnJDLGtCQUFrQjtZQUNsQixpQkFBaUI7WUFDakIsbUJBQW1CO1lBQ25CLGFBQWE7WUFDYixpQkFBaUI7WUFDakIsa0JBQWtCO1lBQ2xCLG1CQUFtQjtZQUNuQixpQkFBaUI7WUFDakIsaUJBQWlCO1lBRWpCLGVBQWU7WUFDZixvQkFBb0I7OzRGQVNULDBCQUEwQjtrQkFOdEMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxHQUFHLFVBQVUsRUFBRSxHQUFHLFVBQVUsQ0FBQztvQkFDdkMsWUFBWSxFQUFFLEVBQUU7b0JBQ2hCLE9BQU8sRUFBRSxFQUFFO29CQUNYLE9BQU8sRUFBRSxDQUFDLEdBQUcsVUFBVSxFQUFFLEdBQUcsVUFBVSxDQUFDO2lCQUN4QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDcnVkRmllbGRDb21wb25lbnQgfSBmcm9tICcuL2NydWQtZmllbGQvY3J1ZC1maWVsZC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ3J1ZEZvcm1Db21wb25lbnQgfSBmcm9tICcuL2NydWQtZm9ybS9jcnVkLWZvcm0uY29tcG9uZW50JztcbmltcG9ydCB7IE1vZGVsUmVuZGVyZXJDb21wb25lbnQgfSBmcm9tICcuL21vZGVsLXJlbmRlcmVyL21vZGVsLXJlbmRlcmVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTZWFyY2hiYXJDb21wb25lbnQgfSBmcm9tICcuL3NlYXJjaGJhci9zZWFyY2hiYXIuY29tcG9uZW50JztcbmltcG9ydCB7IEVtcHR5U3RhdGVDb21wb25lbnQgfSBmcm9tICcuL2VtcHR5LXN0YXRlL2VtcHR5LXN0YXRlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBMaXN0SXRlbUNvbXBvbmVudCB9IGZyb20gJy4vbGlzdC1pdGVtL2xpc3QtaXRlbS5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29tcG9uZW50UmVuZGVyZXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudC1yZW5kZXJlci9jb21wb25lbnQtcmVuZGVyZXIuY29tcG9uZW50JztcbmltcG9ydCB7IFBhZ2luYXRpb25Db21wb25lbnQgfSBmcm9tICcuL3BhZ2luYXRpb24vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgTGlzdENvbXBvbmVudCB9IGZyb20gJy4vbGlzdC9saXN0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGaWVsZHNldENvbXBvbmVudCB9IGZyb20gJy4vZmllbGRzZXQvZmllbGRzZXQuY29tcG9uZW50JztcbmltcG9ydCB7IENvbGxhcHNhYmxlRGlyZWN0aXZlIH0gZnJvbSAnLi4vZGlyZWN0aXZlcy9jb2xsYXBzYWJsZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgTGF5b3V0Q29tcG9uZW50IH0gZnJvbSAnLi9sYXlvdXQvbGF5b3V0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGaWx0ZXJDb21wb25lbnQgfSBmcm9tICcuL2ZpbHRlci9maWx0ZXIuY29tcG9uZW50JztcbmltcG9ydCB7IFN0ZXBwZWRGb3JtQ29tcG9uZW50IH0gZnJvbSAnLi9zdGVwcGVkLWZvcm0vc3RlcHBlZC1mb3JtLmNvbXBvbmVudCc7XG5cbmNvbnN0IERpcmVjdGl2ZXMgPSBbQ29sbGFwc2FibGVEaXJlY3RpdmVdO1xuY29uc3QgQ29tcG9uZW50cyA9IFtcbiAgTW9kZWxSZW5kZXJlckNvbXBvbmVudCxcbiAgQ29tcG9uZW50UmVuZGVyZXJDb21wb25lbnQsXG4gIENydWRGaWVsZENvbXBvbmVudCxcbiAgQ3J1ZEZvcm1Db21wb25lbnQsXG4gIEVtcHR5U3RhdGVDb21wb25lbnQsXG4gIExpc3RDb21wb25lbnQsXG4gIExpc3RJdGVtQ29tcG9uZW50LFxuICBTZWFyY2hiYXJDb21wb25lbnQsXG4gIFBhZ2luYXRpb25Db21wb25lbnQsXG4gIENydWRGb3JtQ29tcG9uZW50LFxuICBGaWVsZHNldENvbXBvbmVudCxcbiAgTGF5b3V0Q29tcG9uZW50LFxuICBGaWx0ZXJDb21wb25lbnQsXG4gIFN0ZXBwZWRGb3JtQ29tcG9uZW50XG5dO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbLi4uQ29tcG9uZW50cywgLi4uRGlyZWN0aXZlc10sXG4gIGRlY2xhcmF0aW9uczogW10sXG4gIHNjaGVtYXM6IFtdLFxuICBleHBvcnRzOiBbLi4uQ29tcG9uZW50cywgLi4uRGlyZWN0aXZlc10sXG59KVxuZXhwb3J0IGNsYXNzIEZvckFuZ3VsYXJDb21wb25lbnRzTW9kdWxlIHt9XG4iXX0=
|
|
@@ -14,7 +14,7 @@ export * from './searchbar/searchbar.component';
|
|
|
14
14
|
// Constants exports
|
|
15
15
|
export * from './crud-form/constants';
|
|
16
16
|
export * from './pagination/constants';
|
|
17
|
-
export * from './
|
|
17
|
+
export * from './stepped-form/stepped-form.component';
|
|
18
18
|
// Module export
|
|
19
19
|
export * from './for-angular-components.module';
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsb0JBQW9CO0FBQ3BCLGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLGlDQUFpQyxDQUFDO0FBRWhELG9CQUFvQjtBQUNwQixjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsd0JBQXdCLENBQUM7QUFFdkMsY0FBYyx1Q0FBdUMsQ0FBQztBQUN0RCxnQkFBZ0I7QUFDaEIsY0FBYyxpQ0FBaUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8vIENvbXBvbmVudCBleHBvcnRzXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudC1yZW5kZXJlci9jb21wb25lbnQtcmVuZGVyZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY3J1ZC1maWVsZC9jcnVkLWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2NydWQtZm9ybS9jcnVkLWZvcm0uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZW1wdHktc3RhdGUvZW1wdHktc3RhdGUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZmllbGRzZXQvZmllbGRzZXQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZmlsdGVyL2ZpbHRlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQvbGF5b3V0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpc3QvbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saXN0LWl0ZW0vbGlzdC1pdGVtLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL21vZGVsLXJlbmRlcmVyL21vZGVsLXJlbmRlcmVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3BhZ2luYXRpb24vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zZWFyY2hiYXIvc2VhcmNoYmFyLmNvbXBvbmVudCc7XG5cbi8vIENvbnN0YW50cyBleHBvcnRzXG5leHBvcnQgKiBmcm9tICcuL2NydWQtZm9ybS9jb25zdGFudHMnO1xuZXhwb3J0ICogZnJvbSAnLi9wYWdpbmF0aW9uL2NvbnN0YW50cyc7XG5cbmV4cG9ydCAqIGZyb20gJy4vc3RlcHBlZC1mb3JtL3N0ZXBwZWQtZm9ybS5jb21wb25lbnQnO1xuLy8gTW9kdWxlIGV4cG9ydFxuZXhwb3J0ICogZnJvbSAnLi9mb3ItYW5ndWxhci1jb21wb25lbnRzLm1vZHVsZSc7XG4iXX0=
|