@smartbit4all/ng-client 3.3.58 → 3.3.59

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.
@@ -3744,6 +3744,26 @@ var SmartWidgetHintPositionEnum;
3744
3744
  })(SmartWidgetHintPositionEnum || (SmartWidgetHintPositionEnum = {}));
3745
3745
  ;
3746
3746
 
3747
+ /**
3748
+ * Form layout definition
3749
+ * Contains form layout definition objects.
3750
+ *
3751
+ * The version of the OpenAPI document: 1.0.0
3752
+ * Contact: info@it4all.hu
3753
+ *
3754
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3755
+ * https://openapi-generator.tech
3756
+ * Do not edit the class manually.
3757
+ */
3758
+ /**
3759
+ * This enum defines the value change handling strategy. Currently only one method is supported, IMMEDIATE_ACTION, which will trigger an executeUiAction when the value is changed.
3760
+ */
3761
+ var ValueChangeMode;
3762
+ (function (ValueChangeMode) {
3763
+ ValueChangeMode["NONE"] = "NONE";
3764
+ ValueChangeMode["IMMEDIATE_ACTION"] = "IMMEDIATE_ACTION";
3765
+ })(ValueChangeMode || (ValueChangeMode = {}));
3766
+
3747
3767
  class ApiModule$2 {
3748
3768
  constructor(parentModule, http) {
3749
3769
  if (parentModule) {
@@ -6587,7 +6607,7 @@ class SmartformLayoutDefinitionService {
6587
6607
  if (!config.layoutDefinition.uploadCallback) {
6588
6608
  throw Error('No upload function injected.');
6589
6609
  }
6590
- return this.createFileUploader(config.layoutDefinition, config.uploadCallback);
6610
+ return this.createFileUploader(config.layoutDefinition);
6591
6611
  case SmartFormWidgetType.MATRIX:
6592
6612
  return this.createMatrix(config.layoutDefinition);
6593
6613
  case SmartFormWidgetType.SORTABLE:
@@ -6600,6 +6620,7 @@ class SmartformLayoutDefinitionService {
6600
6620
  createMonthPicker(layoutDefinition) {
6601
6621
  let widget = {
6602
6622
  key: layoutDefinition.key,
6623
+ valueChangeMode: layoutDefinition.valueChangeMode,
6603
6624
  type: SmartFormWidgetType.MONTH_PICKER,
6604
6625
  label: layoutDefinition.label,
6605
6626
  showLabel: layoutDefinition.showLabel,
@@ -6611,6 +6632,7 @@ class SmartformLayoutDefinitionService {
6611
6632
  type: SmartFormWidgetType.MATRIX,
6612
6633
  label: layoutDefinition.label,
6613
6634
  key: layoutDefinition.key,
6635
+ valueChangeMode: layoutDefinition.valueChangeMode,
6614
6636
  showLabel: layoutDefinition.showLabel,
6615
6637
  //TODO set isMultiple variable from layoutDefinition
6616
6638
  isMultiple: false,
@@ -6621,6 +6643,7 @@ class SmartformLayoutDefinitionService {
6621
6643
  createSortable(layoutDefinition) {
6622
6644
  let widget = {
6623
6645
  key: layoutDefinition.key,
6646
+ valueChangeMode: layoutDefinition.valueChangeMode,
6624
6647
  label: layoutDefinition.label,
6625
6648
  showLabel: layoutDefinition.showLabel,
6626
6649
  type: SmartFormWidgetType.SORTABLE,
@@ -6648,6 +6671,7 @@ class SmartformLayoutDefinitionService {
6648
6671
  });
6649
6672
  let widget = {
6650
6673
  key: layoutDefinition.key,
6674
+ valueChangeMode: layoutDefinition.valueChangeMode,
6651
6675
  type: SmartFormWidgetType.CONTAINER,
6652
6676
  cssClass: layoutDefinition.cssClass,
6653
6677
  direction: layoutDefinition.direction ?? SmartFormWidgetDirection.COL,
@@ -6659,6 +6683,7 @@ class SmartformLayoutDefinitionService {
6659
6683
  let widget = {
6660
6684
  type: SmartFormWidgetType.TEXT_FIELD,
6661
6685
  key: layoutDefinition.key,
6686
+ valueChangeMode: layoutDefinition.valueChangeMode,
6662
6687
  label: layoutDefinition.label,
6663
6688
  placeholder: layoutDefinition.placeholder,
6664
6689
  prefix: layoutDefinition.prefix,
@@ -6681,6 +6706,7 @@ class SmartformLayoutDefinitionService {
6681
6706
  let widget = {
6682
6707
  type: SmartFormWidgetType.TEXT_FIELD_CHIPS,
6683
6708
  key: layoutDefinition.key,
6709
+ valueChangeMode: layoutDefinition.valueChangeMode,
6684
6710
  label: layoutDefinition.label,
6685
6711
  placeholder: layoutDefinition.placeholder,
6686
6712
  showLabel: layoutDefinition.showLabel,
@@ -6704,6 +6730,7 @@ class SmartformLayoutDefinitionService {
6704
6730
  let widget = {
6705
6731
  type: SmartFormWidgetType.TEXT_FIELD_NUMBER,
6706
6732
  key: layoutDefinition.key,
6733
+ valueChangeMode: layoutDefinition.valueChangeMode,
6707
6734
  label: layoutDefinition.label,
6708
6735
  placeholder: layoutDefinition.placeholder,
6709
6736
  prefix: layoutDefinition.prefix,
@@ -6721,6 +6748,7 @@ class SmartformLayoutDefinitionService {
6721
6748
  let widget = {
6722
6749
  type: SmartFormWidgetType.TEXT_BOX,
6723
6750
  key: layoutDefinition.key,
6751
+ valueChangeMode: layoutDefinition.valueChangeMode,
6724
6752
  label: layoutDefinition.label,
6725
6753
  placeholder: layoutDefinition.placeholder,
6726
6754
  showLabel: layoutDefinition.showLabel,
@@ -6734,6 +6762,7 @@ class SmartformLayoutDefinitionService {
6734
6762
  let widget = {
6735
6763
  type: SmartFormWidgetType.RICH_TEXT,
6736
6764
  key: layoutDefinition.key,
6765
+ valueChangeMode: layoutDefinition.valueChangeMode,
6737
6766
  label: layoutDefinition.label,
6738
6767
  placeholder: layoutDefinition.placeholder,
6739
6768
  showLabel: layoutDefinition.showLabel,
@@ -6757,6 +6786,7 @@ class SmartformLayoutDefinitionService {
6757
6786
  let widget = {
6758
6787
  type: SmartFormWidgetType.TOGGLE,
6759
6788
  key: layoutDefinition.key,
6789
+ valueChangeMode: layoutDefinition.valueChangeMode,
6760
6790
  label: layoutDefinition.label,
6761
6791
  showLabel: layoutDefinition.showLabel,
6762
6792
  cssClass: layoutDefinition.cssClass,
@@ -6769,6 +6799,7 @@ class SmartformLayoutDefinitionService {
6769
6799
  let widget = {
6770
6800
  type: SmartFormWidgetType.RADIO_BUTTON,
6771
6801
  key: layoutDefinition.key,
6802
+ valueChangeMode: layoutDefinition.valueChangeMode,
6772
6803
  label: layoutDefinition.label,
6773
6804
  showLabel: layoutDefinition.showLabel,
6774
6805
  cssClass: layoutDefinition.cssClass,
@@ -6792,6 +6823,7 @@ class SmartformLayoutDefinitionService {
6792
6823
  let widget = {
6793
6824
  type: SmartFormWidgetType.CHECK_BOX_2,
6794
6825
  key: layoutDefinition.key,
6826
+ valueChangeMode: layoutDefinition.valueChangeMode,
6795
6827
  label: layoutDefinition.label,
6796
6828
  showLabel: layoutDefinition.showLabel,
6797
6829
  cssClass: layoutDefinition.cssClass,
@@ -6815,6 +6847,7 @@ class SmartformLayoutDefinitionService {
6815
6847
  let widget = {
6816
6848
  type: SmartFormWidgetType.SELECT,
6817
6849
  key: layoutDefinition.key,
6850
+ valueChangeMode: layoutDefinition.valueChangeMode,
6818
6851
  label: layoutDefinition.label,
6819
6852
  showLabel: layoutDefinition.showLabel,
6820
6853
  cssClass: layoutDefinition.cssClass,
@@ -6839,6 +6872,7 @@ class SmartformLayoutDefinitionService {
6839
6872
  let widget = {
6840
6873
  type: SmartFormWidgetType.SELECT_MULTIPLE,
6841
6874
  key: layoutDefinition.key,
6875
+ valueChangeMode: layoutDefinition.valueChangeMode,
6842
6876
  label: layoutDefinition.label,
6843
6877
  showLabel: layoutDefinition.showLabel,
6844
6878
  cssClass: layoutDefinition.cssClass,
@@ -6862,6 +6896,7 @@ class SmartformLayoutDefinitionService {
6862
6896
  let widget = {
6863
6897
  type: SmartFormWidgetType.DATE_PICKER,
6864
6898
  key: layoutDefinition.key,
6899
+ valueChangeMode: layoutDefinition.valueChangeMode,
6865
6900
  label: layoutDefinition.label,
6866
6901
  showLabel: layoutDefinition.showLabel,
6867
6902
  cssClass: layoutDefinition.cssClass,
@@ -6874,6 +6909,7 @@ class SmartformLayoutDefinitionService {
6874
6909
  let widget = {
6875
6910
  type: SmartFormWidgetType.DATE_TIME_PICKER,
6876
6911
  key: layoutDefinition.key,
6912
+ valueChangeMode: layoutDefinition.valueChangeMode,
6877
6913
  label: layoutDefinition.label,
6878
6914
  showLabel: layoutDefinition.showLabel,
6879
6915
  cssClass: layoutDefinition.cssClass,
@@ -6886,6 +6922,7 @@ class SmartformLayoutDefinitionService {
6886
6922
  let widget = {
6887
6923
  type: SmartFormWidgetType.IMAGE,
6888
6924
  key: layoutDefinition.key,
6925
+ valueChangeMode: layoutDefinition.valueChangeMode,
6889
6926
  label: layoutDefinition.label,
6890
6927
  showLabel: layoutDefinition.showLabel,
6891
6928
  cssClass: layoutDefinition.cssClass,
@@ -6897,6 +6934,7 @@ class SmartformLayoutDefinitionService {
6897
6934
  let widget = {
6898
6935
  type: SmartFormWidgetType.BUTTON,
6899
6936
  key: config.layoutDefinition?.key,
6937
+ valueChangeMode: config.layoutDefinition?.valueChangeMode,
6900
6938
  label: config.layoutDefinition?.label,
6901
6939
  showLabel: config.layoutDefinition?.showLabel,
6902
6940
  cssClass: config.layoutDefinition?.cssClass,
@@ -6910,16 +6948,18 @@ class SmartformLayoutDefinitionService {
6910
6948
  let widget = {
6911
6949
  type: SmartFormWidgetType.DIVIDER,
6912
6950
  key: layoutDefinition.key,
6951
+ valueChangeMode: layoutDefinition.valueChangeMode,
6913
6952
  label: layoutDefinition.label,
6914
6953
  showLabel: layoutDefinition.showLabel,
6915
6954
  cssClass: layoutDefinition.cssClass,
6916
6955
  };
6917
6956
  return widget;
6918
6957
  }
6919
- createFileUploader(layoutDefinition, uploadCallback) {
6958
+ createFileUploader(layoutDefinition) {
6920
6959
  let widget = {
6921
6960
  type: SmartFormWidgetType.FILE_UPLOADER,
6922
6961
  key: layoutDefinition.key,
6962
+ valueChangeMode: layoutDefinition.valueChangeMode,
6923
6963
  label: layoutDefinition.label,
6924
6964
  showLabel: layoutDefinition.showLabel,
6925
6965
  cssClass: layoutDefinition.cssClass,
@@ -8316,6 +8356,9 @@ class UiActionToolbarComponent {
8316
8356
  // We do not handle double clicks
8317
8357
  }
8318
8358
  getType(uiActionModel) {
8359
+ if (!uiActionModel.descriptor?.type) {
8360
+ console.log(`Action button type unset: ${uiActionModel?.uiAction?.code}`);
8361
+ }
8319
8362
  switch (uiActionModel.descriptor?.type) {
8320
8363
  case UiActionButtonType.NORMAL:
8321
8364
  return 'mat-button';
@@ -14590,11 +14633,13 @@ class SmartComponentApiClient {
14590
14633
  SmartComponentLayoutUtility.setParent(comp.smartComponentLayout, this);
14591
14634
  this.initActions();
14592
14635
  }
14593
- // for handling embedded forms
14594
- this.handleDataChangeSubscriptions();
14595
14636
  if (this.uuid && this.uuid !== comp.uuid)
14596
14637
  comp.uuid = this.uuid;
14597
14638
  });
14639
+ // for handling embedded forms
14640
+ this.handleQueryList(this.getSmartComponentLayoutsQL(), (form) => {
14641
+ this.handleDataChangeSubscriptions();
14642
+ });
14598
14643
  }
14599
14644
  if (!this.getSmartFormsQL()) {
14600
14645
  console.warn('getSmartFormsQL not available!');
@@ -14626,14 +14671,6 @@ class SmartComponentApiClient {
14626
14671
  });
14627
14672
  }
14628
14673
  }
14629
- if (!this.getSmartUiActionToolbarsQL()) {
14630
- console.warn('SmartUiActionToolbarQL not available!');
14631
- }
14632
- else {
14633
- this.handleQueryList(this.getSmartUiActionToolbarsQL(), (toolbar) => {
14634
- console.log('', toolbar.id);
14635
- });
14636
- }
14637
14674
  }
14638
14675
  handleQueryListSimple(ql, handler) {
14639
14676
  handler();
@@ -14683,7 +14720,6 @@ class SmartComponentApiClient {
14683
14720
  // css style properties
14684
14721
  if (styleData.style) {
14685
14722
  Object.entries(styleData.style).forEach(([key, value]) => {
14686
- console.log(`Key: ${key}, Value: ${value}`);
14687
14723
  this.renderer.setStyle(element, key, value, RendererStyleFlags2.Important);
14688
14724
  });
14689
14725
  }
@@ -14798,26 +14834,39 @@ class SmartComponentApiClient {
14798
14834
  this.dataChangeKeys.push(key);
14799
14835
  }
14800
14836
  }
14837
+ removeDataChangeActionHandler(key) {
14838
+ let idx = this.dataChangeKeys.indexOf(key);
14839
+ if (idx >= 0) {
14840
+ this.dataChangeKeys.splice(idx, 1);
14841
+ }
14842
+ }
14801
14843
  dataChangeActionHandler(event) {
14802
- console.log('event received', event);
14803
14844
  if (this.dataChangeKeys.includes(event.key)) {
14804
- try {
14805
- this.executeUiAction({
14806
- code: event.key,
14807
- model: true,
14808
- params: {
14809
- item: event.value,
14810
- },
14811
- });
14812
- }
14813
- catch (error) {
14814
- console.log('error', error);
14815
- }
14845
+ this.executeUiAction({
14846
+ code: event.key,
14847
+ model: true,
14848
+ params: {
14849
+ item: event.value,
14850
+ },
14851
+ });
14816
14852
  }
14817
14853
  }
14818
14854
  handleDataChangeSubscriptions() {
14819
14855
  if (this.useQueryLists) {
14820
14856
  let forms = this.getAllSmartFormComponents();
14857
+ // add elements to dataChangeKeys
14858
+ forms.forEach((form) => {
14859
+ form.smartForm?.widgets.forEach((widget) => {
14860
+ if (widget.key) {
14861
+ if (widget.valueChangeMode === ValueChangeMode.IMMEDIATE_ACTION) {
14862
+ this.addDataChangeActionHandler(widget.key);
14863
+ }
14864
+ else {
14865
+ this.removeDataChangeActionHandler(widget.key);
14866
+ }
14867
+ }
14868
+ });
14869
+ });
14821
14870
  // subscribe to new forms
14822
14871
  forms.forEach((component) => {
14823
14872
  if (!this.dataChangeActionHandlers.has(component)) {
@@ -15299,5 +15348,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
15299
15348
  * Generated bundle index. Do not edit.
15300
15349
  */
15301
15350
 
15302
- export { APIS$3 as APIS, ApiModule$3 as ApiModule, ApiQueueService, BASE_PATH$5 as BASE_PATH, COLLECTION_FORMATS$5 as COLLECTION_FORMATS, CloseResult, ComponentFactoryService, ComponentFactoryServiceModule, ComponentType, ComponentWidgetType, Configuration$5 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultUiActionCode_CLOSE, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, SelectionDefinitionTypeEnum, SessionAPIS, SessionErrorBehaviour, SessionService, SharedModule, SimplifiedTabGroupComponent, SmartActionType, SmartAuthService, SmartComponent, SmartComponentApiClient, SmartComponentLayoutComponent, SmartComponentLayoutModule, SmartComponentLayoutUtility, SmartDatePipe, SmartDateTimePipe, SmartDialog, SmartExpandableSectionModule, SmartExpandableSectionService, SmartFileUploaderComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorModule, SmartFilterEditorService, SmartFilterExpressionItemComponent, SmartFilterExpressionItemsComponent, SmartFilterModule, SmartFilterParamComponent, SmartFilterParamsComponent, SmartFilterPosition, SmartFilterType, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridModule, SmartGridService, SmartGridType, SmartIconComponent, SmartIconModule, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkUuidVariableInPath, SmartNavbarComponent, SmartNavbarModule, SmartNavbarService, SmartNavigationModule, SmartNavigationService, SmartNgClientModule, SmartNgClientService, SmartService, SmartSessionModule, SmartSessionService, SmartSessionTimerComponent, SmartSessionTimerService, SmartSubject, SmartTabGroupModule, SmartTabGroupService, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextErrorDialogButtonLabel, SmartViewContextErrorDialogMessage, SmartViewContextErrorDialogTitle, SmartViewContextModule, SmartViewContextService, SmartViewRedirect, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartWidgetSettings, SmartdialogModule, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmartformModule, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
15351
+ export { APIS$3 as APIS, ApiModule$3 as ApiModule, ApiQueueService, BASE_PATH$5 as BASE_PATH, COLLECTION_FORMATS$5 as COLLECTION_FORMATS, CloseResult, ComponentFactoryService, ComponentFactoryServiceModule, ComponentType, ComponentWidgetType, Configuration$5 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultUiActionCode_CLOSE, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, SelectionDefinitionTypeEnum, SessionAPIS, SessionErrorBehaviour, SessionService, SharedModule, SimplifiedTabGroupComponent, SmartActionType, SmartAuthService, SmartComponent, SmartComponentApiClient, SmartComponentLayoutComponent, SmartComponentLayoutModule, SmartComponentLayoutUtility, SmartDatePipe, SmartDateTimePipe, SmartDialog, SmartExpandableSectionModule, SmartExpandableSectionService, SmartFileUploaderComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorModule, SmartFilterEditorService, SmartFilterExpressionItemComponent, SmartFilterExpressionItemsComponent, SmartFilterModule, SmartFilterParamComponent, SmartFilterParamsComponent, SmartFilterPosition, SmartFilterType, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridModule, SmartGridService, SmartGridType, SmartIconComponent, SmartIconModule, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkUuidVariableInPath, SmartNavbarComponent, SmartNavbarModule, SmartNavbarService, SmartNavigationModule, SmartNavigationService, SmartNgClientModule, SmartNgClientService, SmartService, SmartSessionModule, SmartSessionService, SmartSessionTimerComponent, SmartSessionTimerService, SmartSubject, SmartTabGroupModule, SmartTabGroupService, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextErrorDialogButtonLabel, SmartViewContextErrorDialogMessage, SmartViewContextErrorDialogTitle, SmartViewContextModule, SmartViewContextService, SmartViewRedirect, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartWidgetSettings, SmartdialogModule, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmartformModule, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ValueChangeMode, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
15303
15352
  //# sourceMappingURL=smartbit4all-ng-client.mjs.map