@smartbit4all/ng-client 3.3.243 → 3.4.0-alpha

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 (34) hide show
  1. package/esm2020/lib/smart-form/services/smartform.service.mjs +14 -6
  2. package/esm2020/lib/smart-form/smartform.component.mjs +4 -1
  3. package/esm2020/lib/smart-form/smartform.form-model.mjs +1 -1
  4. package/esm2020/lib/smart-form/smartform.model.mjs +1 -1
  5. package/esm2020/lib/smart-form/validators/validator-provider.mjs +44 -0
  6. package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +3 -1
  7. package/esm2020/lib/smart-validation/named-validator.service.mjs +122 -0
  8. package/esm2020/lib/smart-validation/projects.mjs +4 -0
  9. package/esm2020/lib/smart-validation/smart-validation.module.mjs +24 -0
  10. package/esm2020/lib/smart-validation/smart-validation.types.mjs +4 -0
  11. package/esm2020/lib/view-context/api/model/componentConstraint.mjs +1 -1
  12. package/esm2020/lib/view-context/api/model/models.mjs +2 -1
  13. package/esm2020/lib/view-context/api/model/namedValidator.mjs +19 -0
  14. package/esm2020/lib/view-context/smart-view-context.module.mjs +1 -1
  15. package/esm2020/projects.mjs +2 -1
  16. package/fesm2015/smartbit4all-ng-client.mjs +183 -7
  17. package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
  18. package/fesm2020/smartbit4all-ng-client.mjs +178 -6
  19. package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
  20. package/lib/smart-form/services/smartform.service.d.ts +4 -1
  21. package/lib/smart-form/smartform.form-model.d.ts +2 -2
  22. package/lib/smart-form/smartform.model.d.ts +6 -0
  23. package/lib/smart-form/validators/validator-provider.d.ts +16 -0
  24. package/lib/smart-validation/named-validator.service.d.ts +17 -0
  25. package/lib/smart-validation/projects.d.ts +3 -0
  26. package/lib/smart-validation/smart-validation.module.d.ts +8 -0
  27. package/lib/smart-validation/smart-validation.types.d.ts +12 -0
  28. package/lib/view-context/api/model/componentConstraint.d.ts +6 -0
  29. package/lib/view-context/api/model/models.d.ts +1 -0
  30. package/lib/view-context/api/model/namedValidator.d.ts +26 -0
  31. package/package.json +1 -1
  32. package/projects.d.ts +1 -0
  33. package/smartbit4all-ng-client-3.4.0-alpha.tgz +0 -0
  34. package/smartbit4all-ng-client-3.3.243.tgz +0 -0
@@ -20,7 +20,7 @@ import { BrowserModule } from '@angular/platform-browser';
20
20
  import * as i2$6 from '@angular/material/expansion';
21
21
  import { MatExpansionModule } from '@angular/material/expansion';
22
22
  import * as i22 from '@angular/forms';
23
- import { FormGroup, FormControl, Validators, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
23
+ import { Validators, FormGroup, FormControl, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
24
24
  import { ENTER, COMMA } from '@angular/cdk/keycodes';
25
25
  import { deepEqual } from 'fast-equals';
26
26
  import moment from 'moment';
@@ -2139,6 +2139,25 @@ var MessageType;
2139
2139
  MessageType["ERROR"] = "error";
2140
2140
  })(MessageType || (MessageType = {}));
2141
2141
 
2142
+ /**
2143
+ * View API
2144
+ * View API
2145
+ *
2146
+ * The version of the OpenAPI document: 1.0.0
2147
+ * Contact: info@it4all.hu
2148
+ *
2149
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2150
+ * https://openapi-generator.tech
2151
+ * Do not edit the class manually.
2152
+ */
2153
+ var NamedValidatorOperationEnum;
2154
+ (function (NamedValidatorOperationEnum) {
2155
+ NamedValidatorOperationEnum["ADD"] = "ADD";
2156
+ NamedValidatorOperationEnum["REMOVE"] = "REMOVE";
2157
+ NamedValidatorOperationEnum["ALTER"] = "ALTER";
2158
+ })(NamedValidatorOperationEnum || (NamedValidatorOperationEnum = {}));
2159
+ ;
2160
+
2142
2161
  /**
2143
2162
  * View API
2144
2163
  * View API
@@ -3804,8 +3823,131 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3804
3823
  }] }];
3805
3824
  } });
3806
3825
 
3826
+ const EMPTY_PARAMS = {};
3827
+ const NAMED_VALIDATOR = new InjectionToken('Named validator factory');
3828
+
3829
+ const VALIDATOR_NAME_MAX = 'max';
3830
+ const VALIDATOR_NAME_MIN = 'min';
3831
+ const VALIDATOR_NAME_MAX_LEN = 'maxLength';
3832
+ const VALIDATOR_NAME_MIN_LEN = 'minLength';
3833
+ class NamedValidatorService {
3834
+ constructor(factories) {
3835
+ console.log(factories);
3836
+ this.factories = factories ? new Map(factories.map((it) => [it.name, it])) : new Map();
3837
+ }
3838
+ applyConstraint(w, c) {
3839
+ if (!w.validators) {
3840
+ w.validators = [];
3841
+ }
3842
+ this.applyBuiltInValidators(w, c);
3843
+ if (c.namedValidators) {
3844
+ this.applyNamedValidators(w, c.namedValidators);
3845
+ }
3846
+ }
3847
+ // TODO: this looks horrific, refactor!
3848
+ applyBuiltInValidators(w, c) {
3849
+ if (c.max) {
3850
+ if (c.max > 0) {
3851
+ w.validators.push({
3852
+ name: VALIDATOR_NAME_MAX,
3853
+ validator: Validators.max(c.max),
3854
+ isCustom: false,
3855
+ errorMessage: '',
3856
+ });
3857
+ }
3858
+ else {
3859
+ w.validators = w.validators.filter((it) => it.name !== VALIDATOR_NAME_MAX);
3860
+ }
3861
+ }
3862
+ if (c.min) {
3863
+ if (c.min > 0) {
3864
+ w.validators.push({
3865
+ name: VALIDATOR_NAME_MIN,
3866
+ validator: Validators.min(c.min),
3867
+ isCustom: false,
3868
+ errorMessage: '',
3869
+ });
3870
+ }
3871
+ else {
3872
+ w.validators = w.validators.filter((it) => it.name !== VALIDATOR_NAME_MIN);
3873
+ }
3874
+ }
3875
+ if (c.maxLength) {
3876
+ if (c.maxLength > 0) {
3877
+ w.validators.push({
3878
+ name: VALIDATOR_NAME_MAX_LEN,
3879
+ validator: Validators.maxLength(c.maxLength),
3880
+ isCustom: false,
3881
+ errorMessage: '',
3882
+ });
3883
+ }
3884
+ else {
3885
+ w.validators = w.validators.filter((it) => it.name !== VALIDATOR_NAME_MAX_LEN);
3886
+ }
3887
+ }
3888
+ if (c.minLength) {
3889
+ if (c.minLength > 0) {
3890
+ w.validators.push({
3891
+ name: VALIDATOR_NAME_MIN_LEN,
3892
+ validator: Validators.minLength(c.minLength),
3893
+ isCustom: false,
3894
+ errorMessage: '',
3895
+ });
3896
+ }
3897
+ else {
3898
+ w.validators = w.validators.filter((it) => it.name !== VALIDATOR_NAME_MIN_LEN);
3899
+ }
3900
+ }
3901
+ }
3902
+ applyNamedValidators(w, namedValidators) {
3903
+ for (const v of namedValidators) {
3904
+ this.applyNamedValidator(w, v);
3905
+ }
3906
+ }
3907
+ applyNamedValidator(w, namedValidator) {
3908
+ const validatorFactory = this.factories.get(namedValidator.name);
3909
+ if (!validatorFactory) {
3910
+ console.warn(`Custom validator named ${namedValidator.name} was requested, but isn't present!`);
3911
+ return;
3912
+ }
3913
+ switch (namedValidator.operation) {
3914
+ case NamedValidatorOperationEnum.ADD:
3915
+ const validatorFn = validatorFactory.create(namedValidator.params);
3916
+ w.validators.push({
3917
+ name: namedValidator.name,
3918
+ isCustom: true,
3919
+ errorMessage: '',
3920
+ validator: validatorFn,
3921
+ });
3922
+ break;
3923
+ case NamedValidatorOperationEnum.ALTER:
3924
+ const smartValidator = w.validators.find((it) => it.name === namedValidator.name);
3925
+ if (smartValidator) {
3926
+ smartValidator.validator = validatorFactory.create(namedValidator.params);
3927
+ }
3928
+ break;
3929
+ case NamedValidatorOperationEnum.REMOVE:
3930
+ w.validators = w.validators.filter((it) => it.name !== namedValidator.name);
3931
+ break;
3932
+ }
3933
+ }
3934
+ }
3935
+ NamedValidatorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: NamedValidatorService, deps: [{ token: NAMED_VALIDATOR, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3936
+ NamedValidatorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: NamedValidatorService });
3937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: NamedValidatorService, decorators: [{
3938
+ type: Injectable
3939
+ }], ctorParameters: function () {
3940
+ return [{ type: Array, decorators: [{
3941
+ type: Inject,
3942
+ args: [NAMED_VALIDATOR]
3943
+ }, {
3944
+ type: Optional
3945
+ }] }];
3946
+ } });
3947
+
3807
3948
  class SmartFormService {
3808
- constructor() {
3949
+ constructor(validatorProvider) {
3950
+ this.validatorProvider = validatorProvider;
3809
3951
  this.emptyKey = 'e#m%p@t*y';
3810
3952
  this.group = {};
3811
3953
  this.regexRegexChars = new RegExp(/[\.\-\[\]\/\{\}\(\)\+\^\$\\\|]/g);
@@ -4233,7 +4375,7 @@ class SmartFormService {
4233
4375
  (constraint) => this.antPathMatcher(constraint.dataName, widget.key));
4234
4376
  if (widgetConstraints && widgetConstraints.length) {
4235
4377
  widgetConstraints.forEach((constraint) => {
4236
- var _a, _b, _c, _d;
4378
+ var _a, _b, _c, _d, _e;
4237
4379
  if (constraint.visible === undefined) {
4238
4380
  if (widget.isVisible === undefined) {
4239
4381
  widget.isVisible = true;
@@ -4278,7 +4420,7 @@ class SmartFormService {
4278
4420
  // remove empty item
4279
4421
  this.removeEmptyItemFromValueList(widget);
4280
4422
  }
4281
- if (wasMandatory && !tobeMandatory) {
4423
+ else if (wasMandatory && !tobeMandatory) {
4282
4424
  // remove required validator
4283
4425
  (_b = widget.validators) === null || _b === void 0 ? void 0 : _b.splice(requiredIndex, 1);
4284
4426
  // add empty item
@@ -4288,6 +4430,9 @@ class SmartFormService {
4288
4430
  }
4289
4431
  this.addEmptyItemToValueList(widget, emptyLabel);
4290
4432
  }
4433
+ else {
4434
+ widget.validators = validators;
4435
+ }
4291
4436
  if (constraint.enabled === undefined) {
4292
4437
  if (widget.isDisabled === undefined) {
4293
4438
  widget.isDisabled = false;
@@ -4297,6 +4442,7 @@ class SmartFormService {
4297
4442
  widget.isDisabled = !constraint.enabled;
4298
4443
  }
4299
4444
  }
4445
+ (_e = this.validatorProvider) === null || _e === void 0 ? void 0 : _e.applyConstraint(widget, constraint);
4300
4446
  });
4301
4447
  }
4302
4448
  if (widget.type === SmartFormWidgetType.CONTAINER &&
@@ -4453,11 +4599,15 @@ class SmartFormService {
4453
4599
  });
4454
4600
  }
4455
4601
  }
4456
- SmartFormService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartFormService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4602
+ SmartFormService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartFormService, deps: [{ token: NamedValidatorService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4457
4603
  SmartFormService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartFormService });
4458
4604
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartFormService, decorators: [{
4459
4605
  type: Injectable
4460
- }] });
4606
+ }], ctorParameters: function () {
4607
+ return [{ type: NamedValidatorService, decorators: [{
4608
+ type: Optional
4609
+ }] }];
4610
+ } });
4461
4611
 
4462
4612
  var SmartFormWidgetWidth;
4463
4613
  (function (SmartFormWidgetWidth) {
@@ -5699,6 +5849,7 @@ class SmartformwidgetComponent {
5699
5849
  }
5700
5850
  let validators = [];
5701
5851
  if (this.widgetInstance.validators) {
5852
+ console.log(this.widgetInstance.validators);
5702
5853
  validators = (_b = this.widgetInstance.validators) === null || _b === void 0 ? void 0 : _b.map((validator) => {
5703
5854
  return validator.validator;
5704
5855
  });
@@ -6101,6 +6252,7 @@ class SmartformwidgetComponent {
6101
6252
  }
6102
6253
  for (let index = 0; index < Object.keys(this.form.controls[widgetInstance.key].errors).length; index++) {
6103
6254
  const errorKey = Object.keys(this.form.controls[widgetInstance.key].errors)[index];
6255
+ console.log('error key', errorKey);
6104
6256
  let customValidatorOnWidget = (_a = widgetInstance.validators) === null || _a === void 0 ? void 0 : _a.filter((validator) => validator.name === errorKey);
6105
6257
  if (customValidatorOnWidget && customValidatorOnWidget.length) {
6106
6258
  errorMessage = customValidatorOnWidget[0].errorMessage;
@@ -6380,6 +6532,9 @@ class SmartformComponent {
6380
6532
  });
6381
6533
  this.translateWidgets(this.smartForm.widgets);
6382
6534
  }
6535
+ else {
6536
+ this.markAllWidgetsForChangeDetection();
6537
+ }
6383
6538
  }
6384
6539
  translateWidgets(widgets) {
6385
6540
  return __awaiter(this, void 0, void 0, function* () {
@@ -16736,6 +16891,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
16736
16891
  * Public API Surface of smart-tab-group
16737
16892
  */
16738
16893
 
16894
+ class SmartValidationModule {
16895
+ static forRoot(providers) {
16896
+ return {
16897
+ ngModule: SmartValidationModule,
16898
+ providers: [NamedValidatorService, ...providers],
16899
+ };
16900
+ }
16901
+ }
16902
+ SmartValidationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartValidationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16903
+ SmartValidationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartValidationModule });
16904
+ SmartValidationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartValidationModule, providers: [NamedValidatorService], imports: [[]] });
16905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SmartValidationModule, decorators: [{
16906
+ type: NgModule,
16907
+ args: [{
16908
+ declarations: [],
16909
+ imports: [],
16910
+ providers: [NamedValidatorService],
16911
+ exports: [],
16912
+ }]
16913
+ }] });
16914
+
16739
16915
  /*
16740
16916
  * Public API Surface of smart-ng-client
16741
16917
  */
@@ -16744,5 +16920,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
16744
16920
  * Generated bundle index. Do not edit.
16745
16921
  */
16746
16922
 
16747
- 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, HighlightPipe, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, SelectionDefinitionTypeEnum, ServerRequestType, 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, SmartFormInputMode, 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, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogButtonComponent, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ValueChangeMode, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
16923
+ 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, EMPTY_PARAMS, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, HighlightPipe, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, NAMED_VALIDATOR, NamedValidatorOperationEnum, NamedValidatorService, SelectionDefinitionTypeEnum, ServerRequestType, 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, SmartFormInputMode, 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, SmartValidationModule, SmartValidatorName, SmartViewContextErrorDialogButtonLabel, SmartViewContextErrorDialogMessage, SmartViewContextErrorDialogTitle, SmartViewContextModule, SmartViewContextService, SmartViewRedirect, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartWidgetSettings, SmartdialogModule, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogButtonComponent, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ValueChangeMode, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
16748
16924
  //# sourceMappingURL=smartbit4all-ng-client.mjs.map