@smartbit4all/ng-client 3.3.140 → 3.3.141
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/esm2020/lib/smart-client/smart-component-api-client.mjs +34 -31
- package/esm2020/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/smart-component-layout-utility.mjs +48 -9
- package/esm2020/lib/smart-component-layout/smart-component-layout.component.mjs +67 -28
- package/esm2020/lib/smart-component-layout/smart-component-layout.module.mjs +1 -5
- package/esm2020/lib/smart-dialog/smartdialog.model.mjs +1 -1
- package/esm2020/lib/smart-dialog/smartdialog.module.mjs +5 -5
- package/esm2020/lib/smart-expandable-section/expandable-section.component.mjs +12 -6
- package/esm2020/lib/smart-expandable-section/expandable-section.model.mjs +1 -1
- package/esm2020/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.mjs +2 -1
- package/esm2020/lib/smart-filter/smart-filter.module.mjs +5 -5
- package/esm2020/lib/smart-filter-editor/api/model/filterExpressionField.mjs +1 -1
- package/esm2020/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.mjs +2 -1
- package/esm2020/lib/smart-filter-editor/api/model/smartFilterType.mjs +17 -0
- package/esm2020/lib/smart-filter-editor/smart-filter-editor.module.mjs +1 -8
- package/esm2020/lib/smart-form/api/model/smartFormWidgetType.mjs +2 -1
- package/esm2020/lib/smart-form/api/model/smartMatrixModel.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/smartWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/valueChangeMode.mjs +1 -1
- package/esm2020/lib/smart-form/projects.mjs +1 -2
- package/esm2020/lib/smart-form/services/smartform.layout-definition.service.mjs +21 -3
- package/esm2020/lib/smart-form/services/smartform.service.mjs +6 -1
- package/esm2020/lib/smart-form/smartform.component.mjs +19 -3
- package/esm2020/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +118 -32
- package/esm2020/lib/smart-grid/api/grid-api/model/gridColumnMeta.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridModel.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridServerModel.mjs +1 -1
- package/esm2020/lib/smart-grid/smart-grid.component.mjs +26 -11
- package/esm2020/lib/smart-grid/smart-grid.module.mjs +3 -6
- package/esm2020/lib/smart-navbar/smart-navbar.module.mjs +5 -5
- package/esm2020/lib/smart-ng-client.module.mjs +1 -8
- package/esm2020/lib/smart-table/tables/table.mjs +6 -4
- package/esm2020/lib/smart-tree/smarttree-generic.service.mjs +20 -13
- package/esm2020/lib/smart-tree/smarttree.module.mjs +11 -3
- package/esm2020/lib/view-context/api/model/uiAction.mjs +1 -1
- package/esm2020/lib/view-context/api/model/uiActionRequest.mjs +1 -1
- package/esm2020/lib/view-context/api/model/valueSet.mjs +1 -1
- package/esm2020/lib/view-context/api/model/viewContextChange.mjs +1 -1
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.mjs +15 -12
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +13 -10
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.mjs +17 -11
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +11 -6
- package/esm2020/lib/view-context/smart-ui-action/ui-action.model.mjs +1 -1
- package/esm2020/lib/view-context/smart-ui-action/ui-action.service.mjs +14 -8
- package/esm2020/lib/view-context/smart-view-context.module.mjs +132 -10
- package/esm2020/lib/view-context/smart-view-context.service.mjs +8 -1
- package/fesm2015/smartbit4all-ng-client.mjs +3963 -3728
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +3777 -3550
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-client/smart-component-api-client.d.ts +2 -1
- package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +3 -5
- package/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.d.ts +2 -2
- package/lib/smart-component-layout/smart-component-layout-utility.d.ts +4 -3
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +10 -6
- package/lib/smart-component-layout/smart-component-layout.module.d.ts +5 -6
- package/lib/smart-dialog/smartdialog.model.d.ts +2 -2
- package/lib/smart-dialog/smartdialog.module.d.ts +2 -2
- package/lib/smart-expandable-section/expandable-section.model.d.ts +4 -2
- package/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.d.ts +1 -0
- package/lib/smart-filter/smart-filter.module.d.ts +2 -2
- package/lib/smart-filter-editor/api/model/filterExpressionField.d.ts +3 -0
- package/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.d.ts +1 -0
- package/lib/smart-filter-editor/api/model/smartFilterType.d.ts +15 -0
- package/lib/smart-filter-editor/smart-filter-editor.module.d.ts +4 -5
- package/lib/smart-form/api/model/smartFormWidgetType.d.ts +2 -1
- package/lib/smart-form/api/model/smartMatrixModel.d.ts +1 -0
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +8 -0
- package/lib/smart-form/projects.d.ts +0 -1
- package/lib/smart-form/services/smartform.layout-definition.service.d.ts +1 -0
- package/lib/smart-form/smartform.component.d.ts +6 -2
- package/lib/smart-form/smartform.form-model.d.ts +17 -1
- package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +31 -1
- package/lib/smart-grid/api/grid-api/model/gridColumnMeta.d.ts +4 -0
- package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +2 -0
- package/lib/smart-grid/api/grid-api/model/gridServerModel.d.ts +2 -0
- package/lib/smart-grid/smart-grid.component.d.ts +2 -1
- package/lib/smart-grid/smart-grid.module.d.ts +3 -4
- package/lib/smart-navbar/smart-navbar.module.d.ts +2 -2
- package/lib/smart-ng-client.module.d.ts +12 -13
- package/lib/smart-tree/smarttree-generic.service.d.ts +2 -3
- package/lib/view-context/api/model/uiAction.d.ts +4 -0
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.d.ts +5 -5
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.d.ts +2 -2
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/ui-action.model.d.ts +1 -1
- package/lib/view-context/smart-ui-action/ui-action.service.d.ts +3 -3
- package/lib/view-context/smart-view-context.module.d.ts +34 -11
- package/lib/view-context/smart-view-context.service.d.ts +2 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.141.tgz +0 -0
- package/esm2020/lib/smart-form/smartform.module.mjs +0 -157
- package/lib/smart-form/smartform.module.d.ts +0 -35
- package/smartbit4all-ng-client-3.3.140.tgz +0 -0
|
@@ -6,22 +6,21 @@ import { Subject } from 'rxjs';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export interface SmarttreeConfiguration {
|
|
8
8
|
treeid: string;
|
|
9
|
-
viewContextName: string;
|
|
10
9
|
pageName: string;
|
|
11
10
|
}
|
|
12
11
|
export declare class SmarttreeGenericService extends SmarttreeService<SmartTreeNode[]> implements UseUiAction {
|
|
13
12
|
protected pageName: string;
|
|
14
13
|
protected treeId: string;
|
|
14
|
+
private treeMenuIcon?;
|
|
15
15
|
submit: Subject<void>;
|
|
16
16
|
reSubscribeToChange: Subject<void>;
|
|
17
17
|
uiActionDescriptors: Map<string, UiActionDescriptor>;
|
|
18
18
|
selectedNode?: SmartTreeNode;
|
|
19
|
-
viewContextName: string;
|
|
20
19
|
protected viewContext: SmartViewContextService;
|
|
21
20
|
private service;
|
|
22
21
|
private uiActionDescriptorService;
|
|
23
22
|
private uiActionService;
|
|
24
|
-
constructor(inject: Injector, pageName: string, treeId: string);
|
|
23
|
+
constructor(inject: Injector, pageName: string, treeId: string, treeMenuIcon?: string | undefined);
|
|
25
24
|
constructUiActionModels(uiActions: UiAction[]): void;
|
|
26
25
|
configureTree(configuration: SmarttreeConfiguration): void;
|
|
27
26
|
initialize(): Promise<void>;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { OnDestroy } from
|
|
2
|
-
import { UiActionDescriptor } from
|
|
3
|
-
import { UiActionDescriptorService } from
|
|
4
|
-
import { UiActionConfirmDialogService } from
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { UiActionDescriptor } from '../../../api';
|
|
3
|
+
import { UiActionDescriptorService } from '../../ui-action.descriptor.service';
|
|
4
|
+
import { UiActionConfirmDialogService } from './ui-action-confirm-dialog.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UiActionConfirmDialogComponent implements OnDestroy {
|
|
7
7
|
private service;
|
|
8
8
|
private manager;
|
|
9
9
|
code: string;
|
|
10
|
-
dialogType:
|
|
10
|
+
dialogType: 'dialog' | 'confirmDialog' | 'inputDialog';
|
|
11
11
|
descriptor?: UiActionDescriptor;
|
|
12
12
|
constructor(service: UiActionConfirmDialogService, manager: UiActionDescriptorService);
|
|
13
13
|
setUp(): Promise<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { MatDialog } from '@angular/material/dialog';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { SmartdialogService } from '../../../../smart-dialog/projects';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
5
4
|
import { UiAction } from '../../../api';
|
|
5
|
+
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class UiActionConfirmDialogService extends SmartdialogService {
|
|
8
8
|
_destroy$: Subject<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { SmartFileUploaderI18n } from '../../../../smart-form/projects';
|
|
3
2
|
import { UiActionDescriptor } from '../../../api';
|
|
4
3
|
import { UiActionDescriptorService } from '../../ui-action.descriptor.service';
|
|
5
4
|
import { UiActionFileUploadDialogService } from './ui-action-file-upload-dialog.service';
|
|
5
|
+
import { SmartFileUploaderI18n } from '../../../../smart-form/smartfileuploader/smartfileuploader.model';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class UiActionFileUploadDialogComponent implements OnDestroy {
|
|
8
8
|
private service;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { MatDialog } from '@angular/material/dialog';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
|
-
import { SmartdialogService } from '../../../../smart-dialog/projects';
|
|
5
4
|
import { UiAction } from '../../../api';
|
|
5
|
+
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class UiActionFileUploadDialogService extends SmartdialogService {
|
|
8
8
|
_destroy$: Subject<void>;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { SmartForm, SmartformComponent } from '../../../../smart-form/projects';
|
|
3
2
|
import { UiActionDescriptor } from '../../../api';
|
|
4
3
|
import { UiActionDescriptorService } from '../../ui-action.descriptor.service';
|
|
5
4
|
import { UiActionInputDialogService } from './ui-action-input-dialog.service';
|
|
5
|
+
import { SmartForm } from '../../../../smart-form/smartform.model';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class UiActionInputDialogComponent implements OnDestroy {
|
|
8
8
|
private service;
|
|
9
9
|
private manager;
|
|
10
|
-
folderFormChild:
|
|
10
|
+
folderFormChild: any;
|
|
11
11
|
code: string;
|
|
12
12
|
folderForm: SmartForm;
|
|
13
13
|
dialogType: 'dialog' | 'inputDialog' | 'input2Dialog';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { MatDialog } from '@angular/material/dialog';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { SmartdialogService } from '../../../../smart-dialog/projects';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
5
4
|
import { UiAction, UiActionRequest } from '../../../api';
|
|
5
|
+
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class UiActionInputDialogService extends SmartdialogService {
|
|
8
8
|
_destroy$: Subject<void>;
|
|
@@ -2,7 +2,7 @@ import { Subject } from 'rxjs';
|
|
|
2
2
|
import { UiAction } from '../api/model/uiAction';
|
|
3
3
|
import { UiActionDescriptor } from '../api/model/uiActionDescriptor';
|
|
4
4
|
import { UiActionRequest } from '../api/model/uiActionRequest';
|
|
5
|
-
import { SmartFormInvalidFields } from '../../smart-form/
|
|
5
|
+
import { SmartFormInvalidFields } from '../../smart-form/smartform.model';
|
|
6
6
|
export interface UiActionModel {
|
|
7
7
|
uiAction: UiAction;
|
|
8
8
|
serviceToUse: UseUiAction | UseUiAction2;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
3
3
|
import { UiAction } from '../api';
|
|
4
|
-
import { UiActionConfirmDialogService } from './dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service';
|
|
5
|
-
import { UiActionInputDialogService } from './dialogs/ui-action-input-dialog/ui-action-input-dialog.service';
|
|
4
|
+
import type { UiActionConfirmDialogService } from './dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service';
|
|
5
|
+
import type { UiActionInputDialogService } from './dialogs/ui-action-input-dialog/ui-action-input-dialog.service';
|
|
6
6
|
import { UiActionModel } from './ui-action.model';
|
|
7
|
-
import { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
|
|
7
|
+
import type { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
|
|
8
8
|
import { SmartFormInvalidFields } from '../../smart-form/smartform.model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export interface ExecuteUiActionOptions {
|
|
@@ -7,18 +7,41 @@ import * as i5 from "./smart-ui-action/dialogs/ui-action-input-dialog/ui-action-
|
|
|
7
7
|
import * as i6 from "./smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component";
|
|
8
8
|
import * as i7 from "./smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component";
|
|
9
9
|
import * as i8 from "./invalid-fields-snack-bar/invalid-fields-snack-bar.component";
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "../smart-
|
|
17
|
-
import * as i16 from "../smart-form/
|
|
18
|
-
import * as i17 from "@angular/
|
|
19
|
-
import * as i18 from "
|
|
10
|
+
import * as i9 from "../smart-form/smartform.component";
|
|
11
|
+
import * as i10 from "../smart-form/widgets/smartformwidget/smartformwidget.component";
|
|
12
|
+
import * as i11 from "../smart-form/smartfileuploader/smartfileuploader.component";
|
|
13
|
+
import * as i12 from "../smart-form/widgets/smartformwidget/trackCaps.directive";
|
|
14
|
+
import * as i13 from "../smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component";
|
|
15
|
+
import * as i14 from "../smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component";
|
|
16
|
+
import * as i15 from "../smart-form/widgets/components/smart-month-picker/smart-month-picker.component";
|
|
17
|
+
import * as i16 from "../smart-form/highlightMacthingString-pipe";
|
|
18
|
+
import * as i17 from "@angular/common";
|
|
19
|
+
import * as i18 from "@angular/common/http";
|
|
20
|
+
import * as i19 from "@angular/material/core";
|
|
21
|
+
import * as i20 from "@angular/material/button";
|
|
22
|
+
import * as i21 from "@angular/material/icon";
|
|
23
|
+
import * as i22 from "@angular/material/snack-bar";
|
|
24
|
+
import * as i23 from "../smart-icon/smart-icon.module";
|
|
25
|
+
import * as i24 from "@angular/material/tooltip";
|
|
26
|
+
import * as i25 from "../shared/shared.module";
|
|
27
|
+
import * as i26 from "@angular/platform-browser";
|
|
28
|
+
import * as i27 from "@angular/material/chips";
|
|
29
|
+
import * as i28 from "@angular/forms";
|
|
30
|
+
import * as i29 from "@angular/material/form-field";
|
|
31
|
+
import * as i30 from "@angular/material/checkbox";
|
|
32
|
+
import * as i31 from "@angular/material/select";
|
|
33
|
+
import * as i32 from "@angular/material/input";
|
|
34
|
+
import * as i33 from "@angular/material/datepicker";
|
|
35
|
+
import * as i34 from "@angular/material-moment-adapter";
|
|
36
|
+
import * as i35 from "@angular/material/radio";
|
|
37
|
+
import * as i36 from "@angular/material/slide-toggle";
|
|
38
|
+
import * as i37 from "@angular/material/autocomplete";
|
|
39
|
+
import * as i38 from "ngx-mask";
|
|
40
|
+
import * as i39 from "ngx-quill";
|
|
41
|
+
import * as i40 from "@angular/cdk/drag-drop";
|
|
42
|
+
import * as i41 from "@angular/youtube-player";
|
|
20
43
|
export declare class SmartViewContextModule {
|
|
21
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextModule, never>;
|
|
22
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartViewContextModule, [typeof i1.MessageDialogComponent, typeof i2.SmartViewContextErrorDialogComponent, typeof i3.SmartViewRedirect, typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i6.UiActionConfirmDialogComponent, typeof i7.UiActionFileUploadDialogComponent, typeof i8.InvalidFieldsSnackBarComponent
|
|
45
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartViewContextModule, [typeof i1.MessageDialogComponent, typeof i2.SmartViewContextErrorDialogComponent, typeof i3.SmartViewRedirect, typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i6.UiActionConfirmDialogComponent, typeof i7.UiActionFileUploadDialogComponent, typeof i8.InvalidFieldsSnackBarComponent, typeof i9.SmartformComponent, typeof i10.SmartformwidgetComponent, typeof i11.SmartfileuploaderComponent, typeof i12.TrackCapsDirective, typeof i13.LargeFileSnackBarComponent, typeof i14.SortableWidgetComponent, typeof i15.SmartMonthPickerComponent, typeof i16.HighlightPipe], [typeof i17.CommonModule, typeof i18.HttpClientModule, typeof i19.MatCommonModule, typeof i20.MatButtonModule, typeof i21.MatIconModule, typeof i22.MatSnackBarModule, typeof i23.SmartIconModule, typeof i24.MatTooltipModule, typeof i25.SharedModule, typeof i26.BrowserModule, typeof i27.MatChipsModule, typeof i28.FormsModule, typeof i28.ReactiveFormsModule, typeof i29.MatFormFieldModule, typeof i30.MatCheckboxModule, typeof i31.MatSelectModule, typeof i32.MatInputModule, typeof i33.MatDatepickerModule, typeof i34.MatMomentDateModule, typeof i35.MatRadioModule, typeof i36.MatSlideToggleModule, typeof i37.MatAutocompleteModule, typeof i38.NgxMaskModule, typeof i39.QuillModule, typeof i40.DragDropModule, typeof i41.YouTubePlayerModule], [typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i9.SmartformComponent, typeof i10.SmartformwidgetComponent, typeof i11.SmartfileuploaderComponent, typeof i16.HighlightPipe]>;
|
|
23
46
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartViewContextModule>;
|
|
24
47
|
}
|
|
@@ -68,6 +68,7 @@ export declare class SmartViewContextService implements OnDestroy {
|
|
|
68
68
|
syncView(): void;
|
|
69
69
|
private setViewContextUuid;
|
|
70
70
|
getViewContextUuid(): string;
|
|
71
|
+
hasViewContextUuid(): boolean;
|
|
71
72
|
setUuidOfPage(pageName: string, uuid: string, componentName?: string): void;
|
|
72
73
|
clearUuidOfPage(pageName: string, componentName?: string): void;
|
|
73
74
|
getUuidOfPage(pageName: string): string;
|
|
@@ -93,6 +94,7 @@ export declare class SmartViewContextService implements OnDestroy {
|
|
|
93
94
|
private handleChanges;
|
|
94
95
|
load(uuid: string): Promise<ComponentModel | undefined>;
|
|
95
96
|
load2(uuid: string): Promise<ViewContextChange | undefined>;
|
|
97
|
+
getCurrentViewContext(): ViewContextData | undefined;
|
|
96
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextService, never>;
|
|
97
99
|
static ɵprov: i0.ɵɵInjectableDeclaration<SmartViewContextService>;
|
|
98
100
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
2
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
4
|
-
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
5
|
-
import { MatChipsModule } from '@angular/material/chips';
|
|
6
|
-
import { DateAdapter, MAT_DATE_FORMATS, MAT_DATE_LOCALE } from '@angular/material/core';
|
|
7
|
-
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
8
|
-
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
9
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
10
|
-
import { MatInputModule } from '@angular/material/input';
|
|
11
|
-
import { MatRadioModule } from '@angular/material/radio';
|
|
12
|
-
import { MatSelectModule } from '@angular/material/select';
|
|
13
|
-
import { SmartformComponent } from './smartform.component';
|
|
14
|
-
import { MatCommonModule } from '@angular/material/core';
|
|
15
|
-
import { SmartFormService } from './services/smartform.service';
|
|
16
|
-
import { SmartfileuploaderComponent } from './smartfileuploader/smartfileuploader.component';
|
|
17
|
-
import { SmartWidgetSettings, SmartformwidgetComponent, } from './widgets/smartformwidget/smartformwidget.component';
|
|
18
|
-
import { MAT_MOMENT_DATE_ADAPTER_OPTIONS, MAT_MOMENT_DATE_FORMATS, MatMomentDateModule, MomentDateAdapter, } from '@angular/material-moment-adapter';
|
|
19
|
-
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
20
|
-
import { TrackCapsDirective } from './widgets/smartformwidget/trackCaps.directive';
|
|
21
|
-
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
22
|
-
import { BrowserModule } from '@angular/platform-browser';
|
|
23
|
-
import { NgxMaskModule } from 'ngx-mask';
|
|
24
|
-
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
25
|
-
import { QuillModule } from 'ngx-quill';
|
|
26
|
-
import { LargeFileSnackBarComponent } from './smartfileuploader/large-file-snack-bar/large-file-snack-bar.component';
|
|
27
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
28
|
-
import { SortableWidgetComponent } from './widgets/smartformwidget/sortable-widget/sortable-widget.component';
|
|
29
|
-
import { YouTubePlayerModule } from '@angular/youtube-player';
|
|
30
|
-
import { SmartMonthPickerComponent } from './widgets/components/smart-month-picker/smart-month-picker.component';
|
|
31
|
-
import { SmartIconModule } from '../smart-icon/projects';
|
|
32
|
-
import { HighlightPipe } from './highlightMacthingString-pipe';
|
|
33
|
-
import * as i0 from "@angular/core";
|
|
34
|
-
import * as i1 from "ngx-mask";
|
|
35
|
-
import * as i2 from "ngx-quill";
|
|
36
|
-
export class SmartformModule {
|
|
37
|
-
}
|
|
38
|
-
SmartformModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartformModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
39
|
-
SmartformModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartformModule, declarations: [SmartformComponent,
|
|
40
|
-
SmartformwidgetComponent,
|
|
41
|
-
SmartfileuploaderComponent,
|
|
42
|
-
TrackCapsDirective,
|
|
43
|
-
LargeFileSnackBarComponent,
|
|
44
|
-
SortableWidgetComponent,
|
|
45
|
-
SmartMonthPickerComponent,
|
|
46
|
-
HighlightPipe], imports: [BrowserModule,
|
|
47
|
-
MatCommonModule,
|
|
48
|
-
MatChipsModule,
|
|
49
|
-
FormsModule,
|
|
50
|
-
ReactiveFormsModule,
|
|
51
|
-
MatFormFieldModule,
|
|
52
|
-
MatCheckboxModule,
|
|
53
|
-
MatSelectModule,
|
|
54
|
-
MatButtonModule,
|
|
55
|
-
MatInputModule,
|
|
56
|
-
MatIconModule,
|
|
57
|
-
MatDatepickerModule,
|
|
58
|
-
MatMomentDateModule,
|
|
59
|
-
MatRadioModule,
|
|
60
|
-
MatSlideToggleModule,
|
|
61
|
-
SmartIconModule,
|
|
62
|
-
MatSnackBarModule,
|
|
63
|
-
MatAutocompleteModule, i1.NgxMaskModule, i2.QuillModule, DragDropModule,
|
|
64
|
-
YouTubePlayerModule], exports: [SmartformComponent,
|
|
65
|
-
SmartformwidgetComponent,
|
|
66
|
-
SmartfileuploaderComponent,
|
|
67
|
-
HighlightPipe] });
|
|
68
|
-
SmartformModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartformModule, providers: [
|
|
69
|
-
SmartFormService,
|
|
70
|
-
{ provide: MAT_DATE_LOCALE, useValue: 'hu-HU' },
|
|
71
|
-
{ provide: MAT_DATE_FORMATS, useValue: MAT_MOMENT_DATE_FORMATS },
|
|
72
|
-
{ provide: DateAdapter, useClass: MomentDateAdapter },
|
|
73
|
-
{
|
|
74
|
-
provide: MAT_MOMENT_DATE_ADAPTER_OPTIONS,
|
|
75
|
-
useValue: { useUtc: SmartWidgetSettings.useUtc },
|
|
76
|
-
},
|
|
77
|
-
], imports: [[
|
|
78
|
-
BrowserModule,
|
|
79
|
-
MatCommonModule,
|
|
80
|
-
MatChipsModule,
|
|
81
|
-
FormsModule,
|
|
82
|
-
ReactiveFormsModule,
|
|
83
|
-
MatFormFieldModule,
|
|
84
|
-
MatCheckboxModule,
|
|
85
|
-
MatSelectModule,
|
|
86
|
-
MatButtonModule,
|
|
87
|
-
MatInputModule,
|
|
88
|
-
MatIconModule,
|
|
89
|
-
MatDatepickerModule,
|
|
90
|
-
MatMomentDateModule,
|
|
91
|
-
MatRadioModule,
|
|
92
|
-
MatSlideToggleModule,
|
|
93
|
-
SmartIconModule,
|
|
94
|
-
MatSnackBarModule,
|
|
95
|
-
MatAutocompleteModule,
|
|
96
|
-
NgxMaskModule.forRoot(),
|
|
97
|
-
QuillModule.forRoot(),
|
|
98
|
-
DragDropModule,
|
|
99
|
-
YouTubePlayerModule,
|
|
100
|
-
]] });
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartformModule, decorators: [{
|
|
102
|
-
type: NgModule,
|
|
103
|
-
args: [{
|
|
104
|
-
declarations: [
|
|
105
|
-
SmartformComponent,
|
|
106
|
-
SmartformwidgetComponent,
|
|
107
|
-
SmartfileuploaderComponent,
|
|
108
|
-
TrackCapsDirective,
|
|
109
|
-
LargeFileSnackBarComponent,
|
|
110
|
-
SortableWidgetComponent,
|
|
111
|
-
SmartMonthPickerComponent,
|
|
112
|
-
HighlightPipe,
|
|
113
|
-
],
|
|
114
|
-
imports: [
|
|
115
|
-
BrowserModule,
|
|
116
|
-
MatCommonModule,
|
|
117
|
-
MatChipsModule,
|
|
118
|
-
FormsModule,
|
|
119
|
-
ReactiveFormsModule,
|
|
120
|
-
MatFormFieldModule,
|
|
121
|
-
MatCheckboxModule,
|
|
122
|
-
MatSelectModule,
|
|
123
|
-
MatButtonModule,
|
|
124
|
-
MatInputModule,
|
|
125
|
-
MatIconModule,
|
|
126
|
-
MatDatepickerModule,
|
|
127
|
-
MatMomentDateModule,
|
|
128
|
-
MatRadioModule,
|
|
129
|
-
MatSlideToggleModule,
|
|
130
|
-
SmartIconModule,
|
|
131
|
-
MatSnackBarModule,
|
|
132
|
-
MatAutocompleteModule,
|
|
133
|
-
NgxMaskModule.forRoot(),
|
|
134
|
-
QuillModule.forRoot(),
|
|
135
|
-
DragDropModule,
|
|
136
|
-
YouTubePlayerModule,
|
|
137
|
-
],
|
|
138
|
-
exports: [
|
|
139
|
-
SmartformComponent,
|
|
140
|
-
SmartformwidgetComponent,
|
|
141
|
-
SmartfileuploaderComponent,
|
|
142
|
-
HighlightPipe,
|
|
143
|
-
],
|
|
144
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
145
|
-
providers: [
|
|
146
|
-
SmartFormService,
|
|
147
|
-
{ provide: MAT_DATE_LOCALE, useValue: 'hu-HU' },
|
|
148
|
-
{ provide: MAT_DATE_FORMATS, useValue: MAT_MOMENT_DATE_FORMATS },
|
|
149
|
-
{ provide: DateAdapter, useClass: MomentDateAdapter },
|
|
150
|
-
{
|
|
151
|
-
provide: MAT_MOMENT_DATE_ADAPTER_OPTIONS,
|
|
152
|
-
useValue: { useUtc: SmartWidgetSettings.useUtc },
|
|
153
|
-
},
|
|
154
|
-
],
|
|
155
|
-
}]
|
|
156
|
-
}] });
|
|
157
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRmb3JtLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3NtYXJ0LW5nLWNsaWVudC9zcmMvbGliL3NtYXJ0LWZvcm0vc21hcnRmb3JtLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pFLE9BQU8sRUFBRSxXQUFXLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDL0QsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDeEYsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDbkUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDbEUsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDekQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRTNELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUM3RixPQUFPLEVBQ0wsbUJBQW1CLEVBQ25CLHdCQUF3QixHQUN6QixNQUFNLHFEQUFxRCxDQUFDO0FBRTdELE9BQU8sRUFDTCwrQkFBK0IsRUFDL0IsdUJBQXVCLEVBQ3ZCLG1CQUFtQixFQUNuQixpQkFBaUIsR0FDbEIsTUFBTSxrQ0FBa0MsQ0FBQztBQUMxQyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN0RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwrQ0FBK0MsQ0FBQztBQUVuRixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDMUQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUV6QyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sV0FBVyxDQUFDO0FBQ3hDLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHlFQUF5RSxDQUFDO0FBQ3JILE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxxRUFBcUUsQ0FBQztBQUM5RyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM5RCxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzRUFBc0UsQ0FBQztBQUNqSCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGdDQUFnQyxDQUFDOzs7O0FBdUQvRCxNQUFNLE9BQU8sZUFBZTs7NEdBQWYsZUFBZTs2R0FBZixlQUFlLGlCQW5EeEIsa0JBQWtCO1FBQ2xCLHdCQUF3QjtRQUN4QiwwQkFBMEI7UUFDMUIsa0JBQWtCO1FBQ2xCLDBCQUEwQjtRQUMxQix1QkFBdUI7UUFDdkIseUJBQXlCO1FBQ3pCLGFBQWEsYUFHYixhQUFhO1FBQ2IsZUFBZTtRQUNmLGNBQWM7UUFDZCxXQUFXO1FBQ1gsbUJBQW1CO1FBQ25CLGtCQUFrQjtRQUNsQixpQkFBaUI7UUFDakIsZUFBZTtRQUNmLGVBQWU7UUFDZixjQUFjO1FBQ2QsYUFBYTtRQUNiLG1CQUFtQjtRQUNuQixtQkFBbUI7UUFDbkIsY0FBYztRQUNkLG9CQUFvQjtRQUNwQixlQUFlO1FBQ2YsaUJBQWlCO1FBQ2pCLHFCQUFxQixvQ0FHckIsY0FBYztRQUNkLG1CQUFtQixhQUduQixrQkFBa0I7UUFDbEIsd0JBQXdCO1FBQ3hCLDBCQUEwQjtRQUMxQixhQUFhOzZHQWNKLGVBQWUsYUFYZjtRQUNULGdCQUFnQjtRQUNoQixFQUFFLE9BQU8sRUFBRSxlQUFlLEVBQUUsUUFBUSxFQUFFLE9BQU8sRUFBRTtRQUMvQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxRQUFRLEVBQUUsdUJBQXVCLEVBQUU7UUFDaEUsRUFBRSxPQUFPLEVBQUUsV0FBVyxFQUFFLFFBQVEsRUFBRSxpQkFBaUIsRUFBRTtRQUNyRDtZQUNFLE9BQU8sRUFBRSwrQkFBK0I7WUFDeEMsUUFBUSxFQUFFLEVBQUUsTUFBTSxFQUFFLG1CQUFtQixDQUFDLE1BQU0sRUFBRTtTQUNqRDtLQUNGLFlBeENRO1lBQ1AsYUFBYTtZQUNiLGVBQWU7WUFDZixjQUFjO1lBQ2QsV0FBVztZQUNYLG1CQUFtQjtZQUNuQixrQkFBa0I7WUFDbEIsaUJBQWlCO1lBQ2pCLGVBQWU7WUFDZixlQUFlO1lBQ2YsY0FBYztZQUNkLGFBQWE7WUFDYixtQkFBbUI7WUFDbkIsbUJBQW1CO1lBQ25CLGNBQWM7WUFDZCxvQkFBb0I7WUFDcEIsZUFBZTtZQUNmLGlCQUFpQjtZQUNqQixxQkFBcUI7WUFDckIsYUFBYSxDQUFDLE9BQU8sRUFBRTtZQUN2QixXQUFXLENBQUMsT0FBTyxFQUFFO1lBQ3JCLGNBQWM7WUFDZCxtQkFBbUI7U0FDcEI7MkZBbUJVLGVBQWU7a0JBckQzQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixrQkFBa0I7d0JBQ2xCLHdCQUF3Qjt3QkFDeEIsMEJBQTBCO3dCQUMxQixrQkFBa0I7d0JBQ2xCLDBCQUEwQjt3QkFDMUIsdUJBQXVCO3dCQUN2Qix5QkFBeUI7d0JBQ3pCLGFBQWE7cUJBQ2Q7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGFBQWE7d0JBQ2IsZUFBZTt3QkFDZixjQUFjO3dCQUNkLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixrQkFBa0I7d0JBQ2xCLGlCQUFpQjt3QkFDakIsZUFBZTt3QkFDZixlQUFlO3dCQUNmLGNBQWM7d0JBQ2QsYUFBYTt3QkFDYixtQkFBbUI7d0JBQ25CLG1CQUFtQjt3QkFDbkIsY0FBYzt3QkFDZCxvQkFBb0I7d0JBQ3BCLGVBQWU7d0JBQ2YsaUJBQWlCO3dCQUNqQixxQkFBcUI7d0JBQ3JCLGFBQWEsQ0FBQyxPQUFPLEVBQUU7d0JBQ3ZCLFdBQVcsQ0FBQyxPQUFPLEVBQUU7d0JBQ3JCLGNBQWM7d0JBQ2QsbUJBQW1CO3FCQUNwQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asa0JBQWtCO3dCQUNsQix3QkFBd0I7d0JBQ3hCLDBCQUEwQjt3QkFDMUIsYUFBYTtxQkFDZDtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDakMsU0FBUyxFQUFFO3dCQUNULGdCQUFnQjt3QkFDaEIsRUFBRSxPQUFPLEVBQUUsZUFBZSxFQUFFLFFBQVEsRUFBRSxPQUFPLEVBQUU7d0JBQy9DLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFFBQVEsRUFBRSx1QkFBdUIsRUFBRTt3QkFDaEUsRUFBRSxPQUFPLEVBQUUsV0FBVyxFQUFFLFFBQVEsRUFBRSxpQkFBaUIsRUFBRTt3QkFDckQ7NEJBQ0UsT0FBTyxFQUFFLCtCQUErQjs0QkFDeEMsUUFBUSxFQUFFLEVBQUUsTUFBTSxFQUFFLG1CQUFtQixDQUFDLE1BQU0sRUFBRTt5QkFDakQ7cUJBQ0Y7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLCBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgTWF0QnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcclxuaW1wb3J0IHsgTWF0Q2hlY2tib3hNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jaGVja2JveCc7XHJcbmltcG9ydCB7IE1hdENoaXBzTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY2hpcHMnO1xyXG5pbXBvcnQgeyBEYXRlQWRhcHRlciwgTUFUX0RBVEVfRk9STUFUUywgTUFUX0RBVEVfTE9DQUxFIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSc7XHJcbmltcG9ydCB7IE1hdERhdGVwaWNrZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kYXRlcGlja2VyJztcclxuaW1wb3J0IHsgTWF0Rm9ybUZpZWxkTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XHJcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcclxuaW1wb3J0IHsgTWF0SW5wdXRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pbnB1dCc7XHJcbmltcG9ydCB7IE1hdFJhZGlvTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvcmFkaW8nO1xyXG5pbXBvcnQgeyBNYXRTZWxlY3RNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zZWxlY3QnO1xyXG5pbXBvcnQgeyBTbWFydGZvcm1Db21wb25lbnQgfSBmcm9tICcuL3NtYXJ0Zm9ybS5jb21wb25lbnQnO1xyXG5cclxuaW1wb3J0IHsgTWF0Q29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSc7XHJcbmltcG9ydCB7IFNtYXJ0Rm9ybVNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL3NtYXJ0Zm9ybS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgU21hcnRmaWxldXBsb2FkZXJDb21wb25lbnQgfSBmcm9tICcuL3NtYXJ0ZmlsZXVwbG9hZGVyL3NtYXJ0ZmlsZXVwbG9hZGVyLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7XHJcbiAgU21hcnRXaWRnZXRTZXR0aW5ncyxcclxuICBTbWFydGZvcm13aWRnZXRDb21wb25lbnQsXHJcbn0gZnJvbSAnLi93aWRnZXRzL3NtYXJ0Zm9ybXdpZGdldC9zbWFydGZvcm13aWRnZXQuY29tcG9uZW50JztcclxuXHJcbmltcG9ydCB7XHJcbiAgTUFUX01PTUVOVF9EQVRFX0FEQVBURVJfT1BUSU9OUyxcclxuICBNQVRfTU9NRU5UX0RBVEVfRk9STUFUUyxcclxuICBNYXRNb21lbnREYXRlTW9kdWxlLFxyXG4gIE1vbWVudERhdGVBZGFwdGVyLFxyXG59IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsLW1vbWVudC1hZGFwdGVyJztcclxuaW1wb3J0IHsgTWF0U2xpZGVUb2dnbGVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zbGlkZS10b2dnbGUnO1xyXG5pbXBvcnQgeyBUcmFja0NhcHNEaXJlY3RpdmUgfSBmcm9tICcuL3dpZGdldHMvc21hcnRmb3Jtd2lkZ2V0L3RyYWNrQ2Fwcy5kaXJlY3RpdmUnO1xyXG5cclxuaW1wb3J0IHsgTWF0QXV0b2NvbXBsZXRlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYXV0b2NvbXBsZXRlJztcclxuaW1wb3J0IHsgQnJvd3Nlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3BsYXRmb3JtLWJyb3dzZXInO1xyXG5pbXBvcnQgeyBOZ3hNYXNrTW9kdWxlIH0gZnJvbSAnbmd4LW1hc2snO1xyXG5cclxuaW1wb3J0IHsgTWF0U25hY2tCYXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zbmFjay1iYXInO1xyXG5pbXBvcnQgeyBRdWlsbE1vZHVsZSB9IGZyb20gJ25neC1xdWlsbCc7XHJcbmltcG9ydCB7IExhcmdlRmlsZVNuYWNrQmFyQ29tcG9uZW50IH0gZnJvbSAnLi9zbWFydGZpbGV1cGxvYWRlci9sYXJnZS1maWxlLXNuYWNrLWJhci9sYXJnZS1maWxlLXNuYWNrLWJhci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBEcmFnRHJvcE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9kcmFnLWRyb3AnO1xyXG5pbXBvcnQgeyBTb3J0YWJsZVdpZGdldENvbXBvbmVudCB9IGZyb20gJy4vd2lkZ2V0cy9zbWFydGZvcm13aWRnZXQvc29ydGFibGUtd2lkZ2V0L3NvcnRhYmxlLXdpZGdldC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBZb3VUdWJlUGxheWVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIveW91dHViZS1wbGF5ZXInO1xyXG5pbXBvcnQgeyBTbWFydE1vbnRoUGlja2VyQ29tcG9uZW50IH0gZnJvbSAnLi93aWRnZXRzL2NvbXBvbmVudHMvc21hcnQtbW9udGgtcGlja2VyL3NtYXJ0LW1vbnRoLXBpY2tlci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBTbWFydEljb25Nb2R1bGUgfSBmcm9tICcuLi9zbWFydC1pY29uL3Byb2plY3RzJztcclxuaW1wb3J0IHsgSGlnaGxpZ2h0UGlwZSB9IGZyb20gJy4vaGlnaGxpZ2h0TWFjdGhpbmdTdHJpbmctcGlwZSc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgU21hcnRmb3JtQ29tcG9uZW50LFxyXG4gICAgU21hcnRmb3Jtd2lkZ2V0Q29tcG9uZW50LFxyXG4gICAgU21hcnRmaWxldXBsb2FkZXJDb21wb25lbnQsXHJcbiAgICBUcmFja0NhcHNEaXJlY3RpdmUsXHJcbiAgICBMYXJnZUZpbGVTbmFja0JhckNvbXBvbmVudCxcclxuICAgIFNvcnRhYmxlV2lkZ2V0Q29tcG9uZW50LFxyXG4gICAgU21hcnRNb250aFBpY2tlckNvbXBvbmVudCxcclxuICAgIEhpZ2hsaWdodFBpcGUsXHJcbiAgXSxcclxuICBpbXBvcnRzOiBbXHJcbiAgICBCcm93c2VyTW9kdWxlLFxyXG4gICAgTWF0Q29tbW9uTW9kdWxlLFxyXG4gICAgTWF0Q2hpcHNNb2R1bGUsXHJcbiAgICBGb3Jtc01vZHVsZSxcclxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXHJcbiAgICBNYXRGb3JtRmllbGRNb2R1bGUsXHJcbiAgICBNYXRDaGVja2JveE1vZHVsZSxcclxuICAgIE1hdFNlbGVjdE1vZHVsZSxcclxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcclxuICAgIE1hdElucHV0TW9kdWxlLFxyXG4gICAgTWF0SWNvbk1vZHVsZSxcclxuICAgIE1hdERhdGVwaWNrZXJNb2R1bGUsXHJcbiAgICBNYXRNb21lbnREYXRlTW9kdWxlLFxyXG4gICAgTWF0UmFkaW9Nb2R1bGUsXHJcbiAgICBNYXRTbGlkZVRvZ2dsZU1vZHVsZSxcclxuICAgIFNtYXJ0SWNvbk1vZHVsZSxcclxuICAgIE1hdFNuYWNrQmFyTW9kdWxlLFxyXG4gICAgTWF0QXV0b2NvbXBsZXRlTW9kdWxlLFxyXG4gICAgTmd4TWFza01vZHVsZS5mb3JSb290KCksXHJcbiAgICBRdWlsbE1vZHVsZS5mb3JSb290KCksXHJcbiAgICBEcmFnRHJvcE1vZHVsZSxcclxuICAgIFlvdVR1YmVQbGF5ZXJNb2R1bGUsXHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBTbWFydGZvcm1Db21wb25lbnQsXHJcbiAgICBTbWFydGZvcm13aWRnZXRDb21wb25lbnQsXHJcbiAgICBTbWFydGZpbGV1cGxvYWRlckNvbXBvbmVudCxcclxuICAgIEhpZ2hsaWdodFBpcGUsXHJcbiAgXSxcclxuICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXHJcbiAgcHJvdmlkZXJzOiBbXHJcbiAgICBTbWFydEZvcm1TZXJ2aWNlLFxyXG4gICAgeyBwcm92aWRlOiBNQVRfREFURV9MT0NBTEUsIHVzZVZhbHVlOiAnaHUtSFUnIH0sXHJcbiAgICB7IHByb3ZpZGU6IE1BVF9EQVRFX0ZPUk1BVFMsIHVzZVZhbHVlOiBNQVRfTU9NRU5UX0RBVEVfRk9STUFUUyB9LFxyXG4gICAgeyBwcm92aWRlOiBEYXRlQWRhcHRlciwgdXNlQ2xhc3M6IE1vbWVudERhdGVBZGFwdGVyIH0sXHJcbiAgICB7XHJcbiAgICAgIHByb3ZpZGU6IE1BVF9NT01FTlRfREFURV9BREFQVEVSX09QVElPTlMsXHJcbiAgICAgIHVzZVZhbHVlOiB7IHVzZVV0YzogU21hcnRXaWRnZXRTZXR0aW5ncy51c2VVdGMgfSxcclxuICAgIH0sXHJcbiAgXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIFNtYXJ0Zm9ybU1vZHVsZSB7fVxyXG4iXX0=
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smartform.component";
|
|
3
|
-
import * as i2 from "./widgets/smartformwidget/smartformwidget.component";
|
|
4
|
-
import * as i3 from "./smartfileuploader/smartfileuploader.component";
|
|
5
|
-
import * as i4 from "./widgets/smartformwidget/trackCaps.directive";
|
|
6
|
-
import * as i5 from "./smartfileuploader/large-file-snack-bar/large-file-snack-bar.component";
|
|
7
|
-
import * as i6 from "./widgets/smartformwidget/sortable-widget/sortable-widget.component";
|
|
8
|
-
import * as i7 from "./widgets/components/smart-month-picker/smart-month-picker.component";
|
|
9
|
-
import * as i8 from "./highlightMacthingString-pipe";
|
|
10
|
-
import * as i9 from "@angular/platform-browser";
|
|
11
|
-
import * as i10 from "@angular/material/core";
|
|
12
|
-
import * as i11 from "@angular/material/chips";
|
|
13
|
-
import * as i12 from "@angular/forms";
|
|
14
|
-
import * as i13 from "@angular/material/form-field";
|
|
15
|
-
import * as i14 from "@angular/material/checkbox";
|
|
16
|
-
import * as i15 from "@angular/material/select";
|
|
17
|
-
import * as i16 from "@angular/material/button";
|
|
18
|
-
import * as i17 from "@angular/material/input";
|
|
19
|
-
import * as i18 from "@angular/material/icon";
|
|
20
|
-
import * as i19 from "@angular/material/datepicker";
|
|
21
|
-
import * as i20 from "@angular/material-moment-adapter";
|
|
22
|
-
import * as i21 from "@angular/material/radio";
|
|
23
|
-
import * as i22 from "@angular/material/slide-toggle";
|
|
24
|
-
import * as i23 from "../smart-icon/smart-icon.module";
|
|
25
|
-
import * as i24 from "@angular/material/snack-bar";
|
|
26
|
-
import * as i25 from "@angular/material/autocomplete";
|
|
27
|
-
import * as i26 from "ngx-mask";
|
|
28
|
-
import * as i27 from "ngx-quill";
|
|
29
|
-
import * as i28 from "@angular/cdk/drag-drop";
|
|
30
|
-
import * as i29 from "@angular/youtube-player";
|
|
31
|
-
export declare class SmartformModule {
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartformModule, never>;
|
|
33
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartformModule, [typeof i1.SmartformComponent, typeof i2.SmartformwidgetComponent, typeof i3.SmartfileuploaderComponent, typeof i4.TrackCapsDirective, typeof i5.LargeFileSnackBarComponent, typeof i6.SortableWidgetComponent, typeof i7.SmartMonthPickerComponent, typeof i8.HighlightPipe], [typeof i9.BrowserModule, typeof i10.MatCommonModule, typeof i11.MatChipsModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.MatFormFieldModule, typeof i14.MatCheckboxModule, typeof i15.MatSelectModule, typeof i16.MatButtonModule, typeof i17.MatInputModule, typeof i18.MatIconModule, typeof i19.MatDatepickerModule, typeof i20.MatMomentDateModule, typeof i21.MatRadioModule, typeof i22.MatSlideToggleModule, typeof i23.SmartIconModule, typeof i24.MatSnackBarModule, typeof i25.MatAutocompleteModule, typeof i26.NgxMaskModule, typeof i27.QuillModule, typeof i28.DragDropModule, typeof i29.YouTubePlayerModule], [typeof i1.SmartformComponent, typeof i2.SmartformwidgetComponent, typeof i3.SmartfileuploaderComponent, typeof i8.HighlightPipe]>;
|
|
34
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartformModule>;
|
|
35
|
-
}
|
|
Binary file
|