@smartbit4all/ng-client 4.2.168 → 4.2.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/smart-client/smart-component-api-client.mjs +3 -2
- package/esm2022/lib/smart-client/smart-file-uploader/smart-file-uploader.component.mjs +3 -3
- package/esm2022/lib/smart-form/api/model/models.mjs +2 -1
- package/esm2022/lib/smart-form/api/model/multiFileUploaderProperties.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/selectionDefinition.mjs +7 -1
- package/esm2022/lib/smart-form/api/model/smartFormWidgetType.mjs +2 -1
- package/esm2022/lib/smart-form/projects.mjs +2 -1
- package/esm2022/lib/smart-form/services/smartform.layout-definition.service.mjs +45 -2
- package/esm2022/lib/smart-form/services/smartform.service.mjs +4 -14
- package/esm2022/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2022/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.mjs +2 -2
- package/esm2022/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.mjs +168 -0
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +27 -15
- package/esm2022/lib/view-context/smart-ui-action/ui-action.service.mjs +2 -1
- package/esm2022/lib/view-context/smart-view-context.module.mjs +7 -2
- package/fesm2022/smartbit4all-ng-client.mjs +245 -30
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/api/model/models.d.ts +1 -0
- package/lib/smart-form/api/model/multiFileUploaderProperties.d.ts +19 -0
- package/lib/smart-form/api/model/selectionDefinition.d.ts +8 -0
- package/lib/smart-form/api/model/smartFormWidgetType.d.ts +1 -0
- package/lib/smart-form/projects.d.ts +1 -0
- package/lib/smart-form/services/smartform.layout-definition.service.d.ts +2 -0
- package/lib/smart-form/smartform.form-model.d.ts +25 -3
- package/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.d.ts +57 -0
- package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +2 -1
- package/lib/view-context/smart-view-context.module.d.ts +53 -52
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.2.170.tgz +0 -0
- package/smartbit4all-ng-client-4.2.168.tgz +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './dateFieldProperties';
|
|
2
2
|
export * from './fileUploaderProperties';
|
|
3
3
|
export * from './imageProperties';
|
|
4
|
+
export * from './multiFileUploaderProperties';
|
|
4
5
|
export * from './propertyMapping';
|
|
5
6
|
export * from './selectionDefinition';
|
|
6
7
|
export * from './smartFormInputMode';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: info@it4all.hu
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { UiAction } from '../../../view-context/api/model/uiAction';
|
|
13
|
+
import { UiActionUploadDescriptor } from '../../../view-context/api/model/uiActionUploadDescriptor';
|
|
14
|
+
export interface MultiFileUploaderProperties {
|
|
15
|
+
uploadAction?: UiAction;
|
|
16
|
+
removeActionCode?: string;
|
|
17
|
+
downloadActionCode?: string;
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor;
|
|
19
|
+
}
|
|
@@ -38,8 +38,16 @@ export interface SelectionDefinition {
|
|
|
38
38
|
* Optional value, used for empty valueList entry, this will be the label.
|
|
39
39
|
*/
|
|
40
40
|
emptyLabel?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Defines how the values should be loaded.
|
|
43
|
+
*/
|
|
44
|
+
valueSetValueType?: SelectionDefinitionValueSetValueTypeEnum;
|
|
41
45
|
}
|
|
42
46
|
export declare enum SelectionDefinitionTypeEnum {
|
|
43
47
|
PROPERTY = "PROPERTY",
|
|
44
48
|
OBJECT = "OBJECT"
|
|
45
49
|
}
|
|
50
|
+
export declare enum SelectionDefinitionValueSetValueTypeEnum {
|
|
51
|
+
VALUE = "VALUE",
|
|
52
|
+
OBJECT = "OBJECT"
|
|
53
|
+
}
|
|
@@ -10,3 +10,4 @@ export * from './highlightMacthingString-pipe';
|
|
|
10
10
|
export * from './widgets/directives/comparable-dropdown.directive';
|
|
11
11
|
export * from './widgets/directives/comparable-multiselect.directive';
|
|
12
12
|
export * from './widgets/components/smart-file-editor/smart-file-editor.component';
|
|
13
|
+
export * from './widgets/components/smart-multi-file-editor/smart-multi-file-editor.component';
|
|
@@ -29,6 +29,7 @@ export declare class SmartformLayoutDefinitionService {
|
|
|
29
29
|
private createToggle;
|
|
30
30
|
private createRadioButton;
|
|
31
31
|
private createCheckBox;
|
|
32
|
+
private createCheckBox2;
|
|
32
33
|
private createSelect;
|
|
33
34
|
private createSelectMultiple;
|
|
34
35
|
private createDatePicker;
|
|
@@ -38,6 +39,7 @@ export declare class SmartformLayoutDefinitionService {
|
|
|
38
39
|
private createButton;
|
|
39
40
|
private createDivider;
|
|
40
41
|
private createFileUploader;
|
|
42
|
+
private createMultiFileUploader;
|
|
41
43
|
private createYoutubePlayer;
|
|
42
44
|
private extractYoutubePlayerProps;
|
|
43
45
|
private logMissingProperty;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { QuillModules } from 'ngx-quill';
|
|
2
|
-
import { DateFieldProperties, FileUploaderProperties, ImageProperties, SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, TextFieldProperties, ValueChangeMode } from './api';
|
|
2
|
+
import { DateFieldProperties, FileUploaderProperties, MultiFileUploaderProperties, ImageProperties, SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, TextFieldProperties, ValueChangeMode } from './api';
|
|
3
3
|
import { SmartFormTextFieldButton, SmartFormWidgetWidth, SmartIndicator, SmartValidator, ToggleLabelPosition } from './smartform.model';
|
|
4
4
|
import { ImageResource, Style } from '../view-context/api';
|
|
5
|
-
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextFieldLookup<T> | SmartTextBox<T> | SmartSelect<T> | SmartSelectMultiple<T> | SmartCheckBox<T> | SmartCheckBox2<T> | SmartRadioButton<T> | SmartDatePicker<T> | SmartDateTimePicker<T> | SmartContainer<T> | SmartLabel | SmartTime<T> | SmartToggle<T> | SmartIndicatorItem | SmartFileUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg;
|
|
5
|
+
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextFieldLookup<T> | SmartTextBox<T> | SmartSelect<T> | SmartSelectMultiple<T> | SmartCheckBox<T> | SmartCheckBox2<T> | SmartRadioButton<T> | SmartDatePicker<T> | SmartDateTimePicker<T> | SmartContainer<T> | SmartLabel | SmartTime<T> | SmartToggle<T> | SmartIndicatorItem | SmartFileUploader | SmartMultiFileUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg;
|
|
6
6
|
export interface SmartTextField<T> {
|
|
7
7
|
type: SmartFormWidgetType.TEXT_FIELD;
|
|
8
8
|
key: string;
|
|
@@ -268,7 +268,6 @@ export interface SmartCheckBox<T> {
|
|
|
268
268
|
serverErrorMessage?: string;
|
|
269
269
|
serverErrorIcon?: string;
|
|
270
270
|
serverErrorColor?: string;
|
|
271
|
-
valueList: SmartItem<T>[];
|
|
272
271
|
selection?: SelectionDefinition;
|
|
273
272
|
direction?: SmartFormWidgetDirection;
|
|
274
273
|
hint?: SmartWidgetHint;
|
|
@@ -546,6 +545,29 @@ export interface SmartFileUploader {
|
|
|
546
545
|
fileUploaderProperties?: FileUploaderProperties;
|
|
547
546
|
toolbarId?: string;
|
|
548
547
|
}
|
|
548
|
+
export interface SmartMultiFileUploader {
|
|
549
|
+
type: SmartFormWidgetType.MULTI_FILE_UPLOADER;
|
|
550
|
+
value?: any;
|
|
551
|
+
key: string;
|
|
552
|
+
valueChangeMode?: ValueChangeMode;
|
|
553
|
+
label: string;
|
|
554
|
+
isDisabled?: boolean;
|
|
555
|
+
validators?: SmartValidator[];
|
|
556
|
+
originalLabel?: string;
|
|
557
|
+
showLabel?: boolean;
|
|
558
|
+
isVisible?: boolean;
|
|
559
|
+
cssClass?: string;
|
|
560
|
+
cssLabelClass?: string;
|
|
561
|
+
labelPositionClass?: string;
|
|
562
|
+
isFloatLabel?: boolean;
|
|
563
|
+
style?: Style;
|
|
564
|
+
labelStyle?: Style;
|
|
565
|
+
fileFormats?: string[];
|
|
566
|
+
maxSizeMb?: number;
|
|
567
|
+
i18n?: any;
|
|
568
|
+
multiFileUploaderProperties?: MultiFileUploaderProperties;
|
|
569
|
+
toolbarId?: string;
|
|
570
|
+
}
|
|
549
571
|
export interface SmartImage {
|
|
550
572
|
type: SmartFormWidgetType.IMAGE;
|
|
551
573
|
key: string;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { SmartMultiFileUploader } from '../../../smartform.form-model';
|
|
3
|
+
import { UiAction, UiActionUploadDescriptor } from '../../../../view-context/api/model/models';
|
|
4
|
+
import { ComponentLibrary } from '../../../../view-context/utility/componentLibrary';
|
|
5
|
+
import { UiActionToolbarComponent } from '../../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
6
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SmartMultiFileEditorComponent implements ControlValueAccessor {
|
|
9
|
+
private cdr;
|
|
10
|
+
compLib?: ComponentLibrary | undefined;
|
|
11
|
+
toolbar: UiActionToolbarComponent;
|
|
12
|
+
private _widgetInstance;
|
|
13
|
+
get widgetInstance(): SmartMultiFileUploader;
|
|
14
|
+
set widgetInstance(value: SmartMultiFileUploader);
|
|
15
|
+
uploadFilesEvent: EventEmitter<{
|
|
16
|
+
files: any[];
|
|
17
|
+
uiAction: UiAction;
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
fileEvent: EventEmitter<{
|
|
21
|
+
uiAction: UiAction;
|
|
22
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
constructor(cdr: ChangeDetectorRef, compLib?: ComponentLibrary | undefined);
|
|
25
|
+
private clone;
|
|
26
|
+
upload(event: any): void;
|
|
27
|
+
private emitFileAction;
|
|
28
|
+
deleteFile(dataUri: string): void;
|
|
29
|
+
downloadFile(dataUri: string): void;
|
|
30
|
+
isTypeSupported(value: any): boolean;
|
|
31
|
+
formatSize(bytes: number): string;
|
|
32
|
+
getLabelNgClass(): {
|
|
33
|
+
[className: string]: boolean;
|
|
34
|
+
};
|
|
35
|
+
getLabelStyle(): {
|
|
36
|
+
[key: string]: string | number;
|
|
37
|
+
};
|
|
38
|
+
getNgClass(): {
|
|
39
|
+
[className: string]: boolean;
|
|
40
|
+
};
|
|
41
|
+
getStyle(): {
|
|
42
|
+
[key: string]: string | number;
|
|
43
|
+
};
|
|
44
|
+
onChange: (value: any) => void;
|
|
45
|
+
onTouched: () => void;
|
|
46
|
+
isDisabled: boolean;
|
|
47
|
+
writeValue(value: any): void;
|
|
48
|
+
registerOnChange(fn: any): void;
|
|
49
|
+
registerOnTouched(fn: any): void;
|
|
50
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
51
|
+
get removeIcon(): string;
|
|
52
|
+
get fileIcon(): string;
|
|
53
|
+
get errorIcon(): string;
|
|
54
|
+
get toolbarComponent(): UiActionToolbarComponent;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartMultiFileEditorComponent, [null, { optional: true; }]>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartMultiFileEditorComponent, "smart-multi-file-editor", never, { "widgetInstance": { "alias": "widgetInstance"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; "fileEvent": "fileEvent"; }, never, never, false, never>;
|
|
57
|
+
}
|
|
@@ -7,7 +7,7 @@ import { ContentChange, QuillEditorComponent, QuillModules } from 'ngx-quill';
|
|
|
7
7
|
import { EditorTextChangeEvent } from 'primeng/editor';
|
|
8
8
|
import { Observable, Subject } from 'rxjs';
|
|
9
9
|
import { ComponentFactoryService } from '../../../component-factory-service/projects';
|
|
10
|
-
import { UiActionDescriptor } from '../../../view-context/api';
|
|
10
|
+
import { UiAction, UiActionDescriptor } from '../../../view-context/api';
|
|
11
11
|
import { UiActionToolbarComponent } from '../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
12
12
|
import { ComponentLibrary } from '../../../view-context/utility/componentLibrary';
|
|
13
13
|
import { SmartFormWidgetType, SmartWidgetHintPositionEnum } from '../../api/model/models';
|
|
@@ -134,6 +134,7 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
134
134
|
getIndicatorStatusLabelColor(): string;
|
|
135
135
|
getIndicatorStatusLabel(): string;
|
|
136
136
|
upload(event: any): void;
|
|
137
|
+
executeUiAction(uiAction: UiAction): void;
|
|
137
138
|
getButtonType(descriptor: any): string;
|
|
138
139
|
isOnlyIcon(descriptor: any): boolean;
|
|
139
140
|
onButtonClicked(instance: SmartButton): void;
|
|
@@ -18,59 +18,60 @@ import * as i16 from "../smart-form/smartfileuploader/large-file-snack-bar/large
|
|
|
18
18
|
import * as i17 from "../smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component";
|
|
19
19
|
import * as i18 from "../smart-form/widgets/components/smart-month-picker/smart-month-picker.component";
|
|
20
20
|
import * as i19 from "../smart-form/widgets/components/smart-file-editor/smart-file-editor.component";
|
|
21
|
-
import * as i20 from "../smart-form/
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "./smart-ui-action/
|
|
24
|
-
import * as i23 from "./smart-ui-action/components/
|
|
25
|
-
import * as i24 from "./smart-ui-action/components/upload-widget/
|
|
26
|
-
import * as i25 from "./smart-ui-action/components/upload-widget/
|
|
27
|
-
import * as i26 from "./smart-ui-action/components/upload-widget/
|
|
28
|
-
import * as i27 from "
|
|
29
|
-
import * as i28 from "@angular/common
|
|
30
|
-
import * as i29 from "@angular/
|
|
31
|
-
import * as i30 from "@angular/material/
|
|
32
|
-
import * as i31 from "
|
|
33
|
-
import * as i32 from "
|
|
34
|
-
import * as i33 from "@angular/material/
|
|
35
|
-
import * as i34 from "
|
|
36
|
-
import * as i35 from "
|
|
37
|
-
import * as i36 from "
|
|
38
|
-
import * as i37 from "
|
|
39
|
-
import * as i38 from "
|
|
40
|
-
import * as i39 from "@angular/
|
|
41
|
-
import * as i40 from "@angular/
|
|
42
|
-
import * as i41 from "@angular/
|
|
43
|
-
import * as i42 from "@angular/material/
|
|
44
|
-
import * as i43 from "@angular/material/
|
|
45
|
-
import * as i44 from "@angular/material/
|
|
46
|
-
import * as i45 from "@angular/material/
|
|
47
|
-
import * as i46 from "@angular/material
|
|
48
|
-
import * as i47 from "@angular/material
|
|
49
|
-
import * as i48 from "@angular/material/
|
|
50
|
-
import * as i49 from "@angular/material/
|
|
51
|
-
import * as i50 from "
|
|
52
|
-
import * as i51 from "
|
|
53
|
-
import * as i52 from "@angular/
|
|
54
|
-
import * as i53 from "
|
|
55
|
-
import * as i54 from "primeng/
|
|
56
|
-
import * as i55 from "primeng/
|
|
57
|
-
import * as i56 from "primeng/
|
|
58
|
-
import * as i57 from "primeng/
|
|
59
|
-
import * as i58 from "primeng/
|
|
60
|
-
import * as i59 from "primeng/
|
|
61
|
-
import * as i60 from "primeng/
|
|
62
|
-
import * as i61 from "primeng/
|
|
63
|
-
import * as i62 from "primeng/
|
|
64
|
-
import * as i63 from "primeng/
|
|
65
|
-
import * as i64 from "primeng/
|
|
66
|
-
import * as i65 from "primeng/
|
|
67
|
-
import * as i66 from "primeng/
|
|
68
|
-
import * as i67 from "primeng/
|
|
69
|
-
import * as i68 from "primeng/
|
|
70
|
-
import * as i69 from "primeng/
|
|
71
|
-
import * as i70 from "
|
|
21
|
+
import * as i20 from "../smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component";
|
|
22
|
+
import * as i21 from "../smart-form/highlightMacthingString-pipe";
|
|
23
|
+
import * as i22 from "./smart-ui-action/ui-action-button/ui-action-button.component";
|
|
24
|
+
import * as i23 from "./smart-ui-action/components/menu/menu.component";
|
|
25
|
+
import * as i24 from "./smart-ui-action/components/upload-widget/upload-widget.component";
|
|
26
|
+
import * as i25 from "./smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component";
|
|
27
|
+
import * as i26 from "./smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component";
|
|
28
|
+
import * as i27 from "./smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component";
|
|
29
|
+
import * as i28 from "@angular/common";
|
|
30
|
+
import * as i29 from "@angular/common/http";
|
|
31
|
+
import * as i30 from "@angular/material/core";
|
|
32
|
+
import * as i31 from "@angular/material/button";
|
|
33
|
+
import * as i32 from "primeng/button";
|
|
34
|
+
import * as i33 from "@angular/material/icon";
|
|
35
|
+
import * as i34 from "@angular/material/snack-bar";
|
|
36
|
+
import * as i35 from "../smart-icon/smart-icon.module";
|
|
37
|
+
import * as i36 from "@angular/material/tooltip";
|
|
38
|
+
import * as i37 from "../shared/shared.module";
|
|
39
|
+
import * as i38 from "primeng/api";
|
|
40
|
+
import * as i39 from "@angular/platform-browser";
|
|
41
|
+
import * as i40 from "@angular/material/chips";
|
|
42
|
+
import * as i41 from "@angular/forms";
|
|
43
|
+
import * as i42 from "@angular/material/form-field";
|
|
44
|
+
import * as i43 from "@angular/material/checkbox";
|
|
45
|
+
import * as i44 from "@angular/material/select";
|
|
46
|
+
import * as i45 from "@angular/material/input";
|
|
47
|
+
import * as i46 from "@angular/material/datepicker";
|
|
48
|
+
import * as i47 from "@angular/material-moment-adapter";
|
|
49
|
+
import * as i48 from "@angular/material/radio";
|
|
50
|
+
import * as i49 from "@angular/material/slide-toggle";
|
|
51
|
+
import * as i50 from "@angular/material/autocomplete";
|
|
52
|
+
import * as i51 from "ngx-quill";
|
|
53
|
+
import * as i52 from "@angular/cdk/drag-drop";
|
|
54
|
+
import * as i53 from "@angular/youtube-player";
|
|
55
|
+
import * as i54 from "primeng/inputtext";
|
|
56
|
+
import * as i55 from "primeng/dropdown";
|
|
57
|
+
import * as i56 from "primeng/multiselect";
|
|
58
|
+
import * as i57 from "primeng/inputswitch";
|
|
59
|
+
import * as i58 from "primeng/inputnumber";
|
|
60
|
+
import * as i59 from "primeng/inputtextarea";
|
|
61
|
+
import * as i60 from "primeng/image";
|
|
62
|
+
import * as i61 from "primeng/floatlabel";
|
|
63
|
+
import * as i62 from "primeng/toast";
|
|
64
|
+
import * as i63 from "primeng/dynamicdialog";
|
|
65
|
+
import * as i64 from "primeng/fileupload";
|
|
66
|
+
import * as i65 from "primeng/chips";
|
|
67
|
+
import * as i66 from "primeng/calendar";
|
|
68
|
+
import * as i67 from "primeng/checkbox";
|
|
69
|
+
import * as i68 from "primeng/orderlist";
|
|
70
|
+
import * as i69 from "primeng/inputmask";
|
|
71
|
+
import * as i70 from "primeng/editor";
|
|
72
|
+
import * as i71 from "@angular/material/menu";
|
|
72
73
|
export declare class SmartViewContextModule {
|
|
73
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextModule, never>;
|
|
74
|
-
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.UiActionDialogButtonComponent, typeof i11.SmartformwidgetComponent, typeof i12.SmartfileuploaderComponent, typeof i13.TrackCapsDirective, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i16.LargeFileSnackBarComponent, typeof i17.SortableWidgetComponent, typeof i18.SmartMonthPickerComponent, typeof i19.SmartFileEditorComponent, typeof i20.
|
|
75
|
+
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.UiActionDialogButtonComponent, typeof i11.SmartformwidgetComponent, typeof i12.SmartfileuploaderComponent, typeof i13.TrackCapsDirective, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i16.LargeFileSnackBarComponent, typeof i17.SortableWidgetComponent, typeof i18.SmartMonthPickerComponent, typeof i19.SmartFileEditorComponent, typeof i20.SmartMultiFileEditorComponent, typeof i21.HighlightPipe, typeof i22.UiActionButtonComponent, typeof i23.MenuComponent, typeof i24.UploadWidgetComponent, typeof i25.VoiceRecordWidgetComponent, typeof i26.PhotoCaptureWidgetComponent, typeof i27.PrimeFileUploaderComponent], [typeof i28.CommonModule, typeof i29.HttpClientModule, typeof i30.MatCommonModule, typeof i31.MatButtonModule, typeof i32.ButtonModule, typeof i33.MatIconModule, typeof i34.MatSnackBarModule, typeof i35.SmartIconModule, typeof i36.MatTooltipModule, typeof i37.SharedModule, typeof i38.SharedModule, typeof i39.BrowserModule, typeof i40.MatChipsModule, typeof i41.FormsModule, typeof i41.ReactiveFormsModule, typeof i42.MatFormFieldModule, typeof i43.MatCheckboxModule, typeof i44.MatSelectModule, typeof i45.MatInputModule, typeof i46.MatDatepickerModule, typeof i47.MatMomentDateModule, typeof i48.MatRadioModule, typeof i49.MatSlideToggleModule, typeof i50.MatAutocompleteModule, typeof i51.QuillModule, typeof i52.DragDropModule, typeof i53.YouTubePlayerModule, typeof i54.InputTextModule, typeof i55.DropdownModule, typeof i56.MultiSelectModule, typeof i41.FormsModule, typeof i57.InputSwitchModule, typeof i58.InputNumberModule, typeof i59.InputTextareaModule, typeof i60.ImageModule, typeof i61.FloatLabelModule, typeof i28.CommonModule, typeof i62.ToastModule, typeof i63.DynamicDialogModule, typeof i64.FileUploadModule, typeof i65.ChipsModule, typeof i66.CalendarModule, typeof i67.CheckboxModule, typeof i68.OrderListModule, typeof i69.InputMaskModule, typeof i70.EditorModule, typeof i71.MatMenuModule, typeof i35.SmartIconModule], [typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i9.SmartformComponent, typeof i11.SmartformwidgetComponent, typeof i10.UiActionDialogButtonComponent, typeof i12.SmartfileuploaderComponent, typeof i21.HighlightPipe, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i22.UiActionButtonComponent, typeof i23.MenuComponent, typeof i24.UploadWidgetComponent, typeof i25.VoiceRecordWidgetComponent, typeof i26.PhotoCaptureWidgetComponent, typeof i19.SmartFileEditorComponent, typeof i20.SmartMultiFileEditorComponent]>;
|
|
75
76
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartViewContextModule>;
|
|
76
77
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|