@smartbit4all/ng-client 4.2.117 → 4.2.118

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.
Files changed (25) hide show
  1. package/esm2022/lib/smart-client/smart-component-api-client.mjs +8 -8
  2. package/esm2022/lib/smart-client/smart-file-uploader/smart-file-uploader.component.mjs +1 -1
  3. package/esm2022/lib/smart-form/api/model/fileUploaderProperties.mjs +1 -1
  4. package/esm2022/lib/smart-form/projects.mjs +2 -1
  5. package/esm2022/lib/smart-form/services/smartform.service.mjs +1 -4
  6. package/esm2022/lib/smart-form/smartfileuploader/smartfileuploader.component.mjs +8 -2
  7. package/esm2022/lib/smart-form/smartform.form-model.mjs +1 -1
  8. package/esm2022/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.mjs +145 -0
  9. package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +7 -7
  10. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.mjs +6 -3
  11. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +1 -1
  12. package/esm2022/lib/view-context/smart-view-context.module.mjs +7 -2
  13. package/fesm2022/smartbit4all-ng-client.mjs +166 -21
  14. package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
  15. package/lib/smart-form/api/model/fileUploaderProperties.d.ts +4 -1
  16. package/lib/smart-form/projects.d.ts +1 -0
  17. package/lib/smart-form/smartfileuploader/smartfileuploader.component.d.ts +2 -1
  18. package/lib/smart-form/smartform.form-model.d.ts +3 -0
  19. package/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.d.ts +41 -0
  20. package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +3 -3
  21. package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.d.ts +2 -1
  22. package/lib/view-context/smart-view-context.module.d.ts +52 -51
  23. package/package.json +1 -1
  24. package/smartbit4all-ng-client-4.2.118.tgz +0 -0
  25. package/smartbit4all-ng-client-4.2.117.tgz +0 -0
@@ -9,9 +9,12 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { UiAction } from '../../../view-context/api/model/uiAction';
12
13
  import { UiActionUploadDescriptor } from '../../../view-context/api/model/uiActionUploadDescriptor';
13
14
  export interface FileUploaderProperties {
14
- uiActionCode?: string;
15
+ uploadAction?: UiAction;
16
+ changeAction?: UiAction;
17
+ downloadAction?: UiAction;
15
18
  isMultiple?: boolean;
16
19
  uploadDescriptor?: UiActionUploadDescriptor;
17
20
  }
@@ -9,3 +9,4 @@ export * from './api/model/models';
9
9
  export * from './highlightMacthingString-pipe';
10
10
  export * from './widgets/directives/comparable-dropdown.directive';
11
11
  export * from './widgets/directives/comparable-multiselect.directive';
12
+ export * from './widgets/components/smart-file-editor/smart-file-editor.component';
@@ -13,6 +13,7 @@ export declare class SmartfileuploaderComponent implements OnInit {
13
13
  i18n?: SmartFileUploaderI18n;
14
14
  useIconButton: boolean;
15
15
  isMultiple?: boolean;
16
+ autoUpload?: boolean;
16
17
  isDragOver: boolean;
17
18
  errors: string[];
18
19
  constructor(_snackBar: MatSnackBar);
@@ -31,5 +32,5 @@ export declare class SmartfileuploaderComponent implements OnInit {
31
32
  get downloadButton(): UiActionDescriptor;
32
33
  get removeButton(): UiActionDescriptor;
33
34
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartfileuploaderComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<SmartfileuploaderComponent, "smartfileuploader", never, { "uploadCallback": { "alias": "uploadCallback"; "required": false; }; "fileFormats": { "alias": "fileFormats"; "required": false; }; "maxSizeMb": { "alias": "maxSizeMb"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; "useIconButton": { "alias": "useIconButton"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; }, {}, never, never, false, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmartfileuploaderComponent, "smartfileuploader", never, { "uploadCallback": { "alias": "uploadCallback"; "required": false; }; "fileFormats": { "alias": "fileFormats"; "required": false; }; "maxSizeMb": { "alias": "maxSizeMb"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; "useIconButton": { "alias": "useIconButton"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; }, {}, never, never, false, never>;
35
36
  }
@@ -491,9 +491,12 @@ export interface SmartItemGroup<T> {
491
491
  }
492
492
  export interface SmartFileUploader {
493
493
  type: SmartFormWidgetType.FILE_UPLOADER;
494
+ value?: any;
494
495
  key: string;
495
496
  valueChangeMode?: ValueChangeMode;
496
497
  label: string;
498
+ isDisabled?: boolean;
499
+ validators?: SmartValidator[];
497
500
  originalLabel?: string;
498
501
  showLabel?: boolean;
499
502
  isVisible?: boolean;
@@ -0,0 +1,41 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { SmartFileUploader } from '../../../smartform.form-model';
3
+ import { UiAction, UiActionDescriptor, UiActionUploadDescriptor } from '../../../../view-context/api/model/models';
4
+ import { ComponentLibrary } from '../../../../view-context/utility/componentLibrary';
5
+ import * as i0 from "@angular/core";
6
+ export declare class SmartFileEditorComponent {
7
+ compLib?: ComponentLibrary | undefined;
8
+ widgetInstance: SmartFileUploader;
9
+ uploadFilesEvent: EventEmitter<{
10
+ files: any[];
11
+ uiAction: UiAction;
12
+ uploadDescriptor?: UiActionUploadDescriptor | undefined;
13
+ }>;
14
+ constructor(compLib?: ComponentLibrary | undefined);
15
+ fileToChange?: any;
16
+ ngOnInit(): void;
17
+ upload(event: any): void;
18
+ change(file: any): void;
19
+ cancelChange(): void;
20
+ downloadFile(file: any): void;
21
+ getLabelNgClass(): {
22
+ [className: string]: boolean;
23
+ };
24
+ getLabelStyle(): {
25
+ [key: string]: string | number;
26
+ };
27
+ getNgClass(): {
28
+ [className: string]: boolean;
29
+ };
30
+ getStyle(): {
31
+ [key: string]: string | number;
32
+ };
33
+ isArray(value: any): boolean;
34
+ formatSize(bytes: number): string;
35
+ get fileIcon(): string;
36
+ get downloadButton(): UiActionDescriptor;
37
+ get changeButton(): UiActionDescriptor;
38
+ get removeButton(): UiActionDescriptor;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmartFileEditorComponent, [{ optional: true; }]>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmartFileEditorComponent, "smart-file-editor", never, { "widgetInstance": { "alias": "widgetInstance"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
41
+ }
@@ -13,14 +13,14 @@ import { SmartButton, SmartFormWidget, SmartItem, SmartItems } from '../../smart
13
13
  import { SmartFormTextFieldButtonIconPosition, SmartValidator, SophisticatedValueChange, Value } from '../../smartform.model';
14
14
  import { ComponentLibrary } from '../../../view-context/utility/componentLibrary';
15
15
  import { EditorTextChangeEvent } from 'primeng/editor';
16
- import { UiActionDescriptor, UiActionUploadDescriptor } from '../../../view-context/api';
16
+ import { UiAction, UiActionDescriptor, UiActionUploadDescriptor } from '../../../view-context/api';
17
17
  import * as i0 from "@angular/core";
18
18
  export declare class SmartWidgetSettings {
19
19
  static useUtc: boolean;
20
20
  }
21
21
  export interface UploadCallbackProps {
22
22
  files: File[];
23
- actionCode: string;
23
+ uiAction: UiAction;
24
24
  uploadDescriptor: UiActionUploadDescriptor;
25
25
  isMultiple: Boolean;
26
26
  }
@@ -136,7 +136,7 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
136
136
  getIndicatorItemClass(index: number): string;
137
137
  getIndicatorStatusLabelColor(): string;
138
138
  getIndicatorStatusLabel(): string;
139
- upload(event: any, uiACtionCode: string): void;
139
+ upload(event: any): void;
140
140
  getButtonType(descriptor: any): string;
141
141
  isOnlyIcon(descriptor: any): boolean;
142
142
  onButtonClicked(instance: SmartButton): void;
@@ -12,6 +12,7 @@ export declare class UploadWidgetComponent {
12
12
  fileUploadMaterial: SmartfileuploaderComponent;
13
13
  uploadDescriptor: UiActionUploadDescriptor;
14
14
  isMultiple: boolean;
15
+ autoUpload?: boolean;
15
16
  uploadFilesEvent: EventEmitter<{
16
17
  files: any[];
17
18
  uploadDescriptor?: UiActionUploadDescriptor | undefined;
@@ -34,5 +35,5 @@ export declare class UploadWidgetComponent {
34
35
  downloadFile(file: File): void;
35
36
  formatSize(bytes: number): string;
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadWidgetComponent, [null, { optional: true; }]>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadWidgetComponent, "smart-upload-widget", never, { "uploadDescriptor": { "alias": "uploadDescriptor"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadWidgetComponent, "smart-upload-widget", never, { "uploadDescriptor": { "alias": "uploadDescriptor"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
38
39
  }
@@ -17,58 +17,59 @@ import * as i15 from "../smart-form/widgets/directives/comparable-multiselect.di
17
17
  import * as i16 from "../smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component";
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
- import * as i19 from "../smart-form/highlightMacthingString-pipe";
21
- import * as i20 from "./smart-ui-action/ui-action-button/ui-action-button.component";
22
- import * as i21 from "./smart-ui-action/components/menu/menu.component";
23
- import * as i22 from "./smart-ui-action/components/upload-widget/upload-widget.component";
24
- import * as i23 from "./smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component";
25
- import * as i24 from "./smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component";
26
- import * as i25 from "@angular/common";
27
- import * as i26 from "@angular/common/http";
28
- import * as i27 from "@angular/material/core";
29
- import * as i28 from "@angular/material/button";
30
- import * as i29 from "primeng/button";
31
- import * as i30 from "@angular/material/icon";
32
- import * as i31 from "@angular/material/snack-bar";
33
- import * as i32 from "../smart-icon/smart-icon.module";
34
- import * as i33 from "@angular/material/tooltip";
35
- import * as i34 from "../shared/shared.module";
36
- import * as i35 from "primeng/api";
37
- import * as i36 from "@angular/platform-browser";
38
- import * as i37 from "@angular/material/chips";
39
- import * as i38 from "@angular/forms";
40
- import * as i39 from "@angular/material/form-field";
41
- import * as i40 from "@angular/material/checkbox";
42
- import * as i41 from "@angular/material/select";
43
- import * as i42 from "@angular/material/input";
44
- import * as i43 from "@angular/material/datepicker";
45
- import * as i44 from "@angular/material-moment-adapter";
46
- import * as i45 from "@angular/material/radio";
47
- import * as i46 from "@angular/material/slide-toggle";
48
- import * as i47 from "@angular/material/autocomplete";
49
- import * as i48 from "ngx-quill";
50
- import * as i49 from "@angular/cdk/drag-drop";
51
- import * as i50 from "@angular/youtube-player";
52
- import * as i51 from "primeng/inputtext";
53
- import * as i52 from "primeng/dropdown";
54
- import * as i53 from "primeng/multiselect";
55
- import * as i54 from "primeng/inputswitch";
56
- import * as i55 from "primeng/inputnumber";
57
- import * as i56 from "primeng/inputtextarea";
58
- import * as i57 from "primeng/image";
59
- import * as i58 from "primeng/floatlabel";
60
- import * as i59 from "primeng/toast";
61
- import * as i60 from "primeng/dynamicdialog";
62
- import * as i61 from "primeng/fileupload";
63
- import * as i62 from "primeng/chips";
64
- import * as i63 from "primeng/calendar";
65
- import * as i64 from "primeng/checkbox";
66
- import * as i65 from "primeng/orderlist";
67
- import * as i66 from "primeng/inputmask";
68
- import * as i67 from "primeng/editor";
69
- import * as i68 from "@angular/material/menu";
20
+ import * as i19 from "../smart-form/widgets/components/smart-file-editor/smart-file-editor.component";
21
+ import * as i20 from "../smart-form/highlightMacthingString-pipe";
22
+ import * as i21 from "./smart-ui-action/ui-action-button/ui-action-button.component";
23
+ import * as i22 from "./smart-ui-action/components/menu/menu.component";
24
+ import * as i23 from "./smart-ui-action/components/upload-widget/upload-widget.component";
25
+ import * as i24 from "./smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component";
26
+ import * as i25 from "./smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component";
27
+ import * as i26 from "@angular/common";
28
+ import * as i27 from "@angular/common/http";
29
+ import * as i28 from "@angular/material/core";
30
+ import * as i29 from "@angular/material/button";
31
+ import * as i30 from "primeng/button";
32
+ import * as i31 from "@angular/material/icon";
33
+ import * as i32 from "@angular/material/snack-bar";
34
+ import * as i33 from "../smart-icon/smart-icon.module";
35
+ import * as i34 from "@angular/material/tooltip";
36
+ import * as i35 from "../shared/shared.module";
37
+ import * as i36 from "primeng/api";
38
+ import * as i37 from "@angular/platform-browser";
39
+ import * as i38 from "@angular/material/chips";
40
+ import * as i39 from "@angular/forms";
41
+ import * as i40 from "@angular/material/form-field";
42
+ import * as i41 from "@angular/material/checkbox";
43
+ import * as i42 from "@angular/material/select";
44
+ import * as i43 from "@angular/material/input";
45
+ import * as i44 from "@angular/material/datepicker";
46
+ import * as i45 from "@angular/material-moment-adapter";
47
+ import * as i46 from "@angular/material/radio";
48
+ import * as i47 from "@angular/material/slide-toggle";
49
+ import * as i48 from "@angular/material/autocomplete";
50
+ import * as i49 from "ngx-quill";
51
+ import * as i50 from "@angular/cdk/drag-drop";
52
+ import * as i51 from "@angular/youtube-player";
53
+ import * as i52 from "primeng/inputtext";
54
+ import * as i53 from "primeng/dropdown";
55
+ import * as i54 from "primeng/multiselect";
56
+ import * as i55 from "primeng/inputswitch";
57
+ import * as i56 from "primeng/inputnumber";
58
+ import * as i57 from "primeng/inputtextarea";
59
+ import * as i58 from "primeng/image";
60
+ import * as i59 from "primeng/floatlabel";
61
+ import * as i60 from "primeng/toast";
62
+ import * as i61 from "primeng/dynamicdialog";
63
+ import * as i62 from "primeng/fileupload";
64
+ import * as i63 from "primeng/chips";
65
+ import * as i64 from "primeng/calendar";
66
+ import * as i65 from "primeng/checkbox";
67
+ import * as i66 from "primeng/orderlist";
68
+ import * as i67 from "primeng/inputmask";
69
+ import * as i68 from "primeng/editor";
70
+ import * as i69 from "@angular/material/menu";
70
71
  export declare class SmartViewContextModule {
71
72
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextModule, never>;
72
- 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.HighlightPipe, typeof i20.UiActionButtonComponent, typeof i21.MenuComponent, typeof i22.UploadWidgetComponent, typeof i23.VoiceRecordWidgetComponent, typeof i24.PhotoCaptureWidgetComponent], [typeof i25.CommonModule, typeof i26.HttpClientModule, typeof i27.MatCommonModule, typeof i28.MatButtonModule, typeof i29.ButtonModule, typeof i30.MatIconModule, typeof i31.MatSnackBarModule, typeof i32.SmartIconModule, typeof i33.MatTooltipModule, typeof i34.SharedModule, typeof i35.SharedModule, typeof i36.BrowserModule, typeof i37.MatChipsModule, typeof i38.FormsModule, typeof i38.ReactiveFormsModule, typeof i39.MatFormFieldModule, typeof i40.MatCheckboxModule, typeof i41.MatSelectModule, typeof i42.MatInputModule, typeof i43.MatDatepickerModule, typeof i44.MatMomentDateModule, typeof i45.MatRadioModule, typeof i46.MatSlideToggleModule, typeof i47.MatAutocompleteModule, typeof i48.QuillModule, typeof i49.DragDropModule, typeof i50.YouTubePlayerModule, typeof i51.InputTextModule, typeof i52.DropdownModule, typeof i53.MultiSelectModule, typeof i38.FormsModule, typeof i54.InputSwitchModule, typeof i55.InputNumberModule, typeof i56.InputTextareaModule, typeof i57.ImageModule, typeof i58.FloatLabelModule, typeof i25.CommonModule, typeof i59.ToastModule, typeof i60.DynamicDialogModule, typeof i61.FileUploadModule, typeof i62.ChipsModule, typeof i63.CalendarModule, typeof i64.CheckboxModule, typeof i65.OrderListModule, typeof i66.InputMaskModule, typeof i67.EditorModule, typeof i68.MatMenuModule, typeof i32.SmartIconModule], [typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i9.SmartformComponent, typeof i11.SmartformwidgetComponent, typeof i10.UiActionDialogButtonComponent, typeof i12.SmartfileuploaderComponent, typeof i19.HighlightPipe, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i20.UiActionButtonComponent, typeof i21.MenuComponent, typeof i22.UploadWidgetComponent, typeof i23.VoiceRecordWidgetComponent, typeof i24.PhotoCaptureWidgetComponent]>;
73
+ 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.HighlightPipe, typeof i21.UiActionButtonComponent, typeof i22.MenuComponent, typeof i23.UploadWidgetComponent, typeof i24.VoiceRecordWidgetComponent, typeof i25.PhotoCaptureWidgetComponent], [typeof i26.CommonModule, typeof i27.HttpClientModule, typeof i28.MatCommonModule, typeof i29.MatButtonModule, typeof i30.ButtonModule, typeof i31.MatIconModule, typeof i32.MatSnackBarModule, typeof i33.SmartIconModule, typeof i34.MatTooltipModule, typeof i35.SharedModule, typeof i36.SharedModule, typeof i37.BrowserModule, typeof i38.MatChipsModule, typeof i39.FormsModule, typeof i39.ReactiveFormsModule, typeof i40.MatFormFieldModule, typeof i41.MatCheckboxModule, typeof i42.MatSelectModule, typeof i43.MatInputModule, typeof i44.MatDatepickerModule, typeof i45.MatMomentDateModule, typeof i46.MatRadioModule, typeof i47.MatSlideToggleModule, typeof i48.MatAutocompleteModule, typeof i49.QuillModule, typeof i50.DragDropModule, typeof i51.YouTubePlayerModule, typeof i52.InputTextModule, typeof i53.DropdownModule, typeof i54.MultiSelectModule, typeof i39.FormsModule, typeof i55.InputSwitchModule, typeof i56.InputNumberModule, typeof i57.InputTextareaModule, typeof i58.ImageModule, typeof i59.FloatLabelModule, typeof i26.CommonModule, typeof i60.ToastModule, typeof i61.DynamicDialogModule, typeof i62.FileUploadModule, typeof i63.ChipsModule, typeof i64.CalendarModule, typeof i65.CheckboxModule, typeof i66.OrderListModule, typeof i67.InputMaskModule, typeof i68.EditorModule, typeof i69.MatMenuModule, typeof i33.SmartIconModule], [typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i9.SmartformComponent, typeof i11.SmartformwidgetComponent, typeof i10.UiActionDialogButtonComponent, typeof i12.SmartfileuploaderComponent, typeof i20.HighlightPipe, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i21.UiActionButtonComponent, typeof i22.MenuComponent, typeof i23.UploadWidgetComponent, typeof i24.VoiceRecordWidgetComponent, typeof i25.PhotoCaptureWidgetComponent, typeof i19.SmartFileEditorComponent]>;
73
74
  static ɵinj: i0.ɵɵInjectorDeclaration<SmartViewContextModule>;
74
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartbit4all/ng-client",
3
- "version": "4.2.117",
3
+ "version": "4.2.118",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
6
6
  "@angular/common": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
Binary file