@seniorsistemas/angular-components 17.14.0 → 17.14.2

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 (50) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +617 -566
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/code-editor/{presentation/code-editor-component.d.ts → code-editor.component.d.ts} +11 -6
  6. package/components/code-editor/index.d.ts +1 -1
  7. package/components/dynamic-form/components/fields/code-editor/code-editor-field.component.d.ts +6 -0
  8. package/components/dynamic-form/components/fields/code-editor/code-editor-field.module.d.ts +2 -0
  9. package/components/dynamic-form/configurations/field-type.d.ts +1 -0
  10. package/components/dynamic-form/configurations/fields/code-editor-field.d.ts +17 -0
  11. package/components/dynamic-form/configurations/form-field.d.ts +2 -2
  12. package/components/dynamic-form/index.d.ts +5 -4
  13. package/esm2015/components/code-editor/code-editor.component.js +110 -0
  14. package/esm2015/components/code-editor/code-editor.module.js +24 -0
  15. package/esm2015/components/code-editor/index.js +2 -2
  16. package/esm2015/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +2 -2
  17. package/esm2015/components/dynamic-form/components/fields/code-editor/code-editor-field.component.js +17 -0
  18. package/esm2015/components/dynamic-form/components/fields/code-editor/code-editor-field.module.js +18 -0
  19. package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
  20. package/esm2015/components/dynamic-form/configurations/fields/code-editor-field.js +12 -0
  21. package/esm2015/components/dynamic-form/configurations/form-field.js +9 -6
  22. package/esm2015/components/dynamic-form/dynamic-form.js +5 -2
  23. package/esm2015/components/dynamic-form/dynamic-form.module.js +17 -33
  24. package/esm2015/components/dynamic-form/index.js +5 -4
  25. package/esm2015/seniorsistemas-angular-components.js +82 -80
  26. package/esm5/components/code-editor/code-editor.component.js +121 -0
  27. package/esm5/components/code-editor/code-editor.module.js +27 -0
  28. package/esm5/components/code-editor/index.js +2 -2
  29. package/esm5/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +2 -2
  30. package/esm5/components/dynamic-form/components/fields/code-editor/code-editor-field.component.js +20 -0
  31. package/esm5/components/dynamic-form/components/fields/code-editor/code-editor-field.module.js +21 -0
  32. package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
  33. package/esm5/components/dynamic-form/configurations/fields/code-editor-field.js +17 -0
  34. package/esm5/components/dynamic-form/configurations/form-field.js +9 -6
  35. package/esm5/components/dynamic-form/dynamic-form.js +5 -2
  36. package/esm5/components/dynamic-form/dynamic-form.module.js +17 -33
  37. package/esm5/components/dynamic-form/index.js +5 -4
  38. package/esm5/seniorsistemas-angular-components.js +82 -80
  39. package/fesm2015/seniorsistemas-angular-components.js +512 -474
  40. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  41. package/fesm5/seniorsistemas-angular-components.js +533 -485
  42. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  43. package/package.json +3 -3
  44. package/seniorsistemas-angular-components.d.ts +81 -79
  45. package/seniorsistemas-angular-components.metadata.json +1 -1
  46. package/esm2015/components/code-editor/presentation/code-editor-component.js +0 -91
  47. package/esm2015/components/code-editor/presentation/code-editor-module.js +0 -27
  48. package/esm5/components/code-editor/presentation/code-editor-component.js +0 -101
  49. package/esm5/components/code-editor/presentation/code-editor-module.js +0 -30
  50. /package/components/code-editor/{presentation/code-editor-module.d.ts → code-editor.module.d.ts} +0 -0
@@ -31,7 +31,7 @@ import { Hotkey, HotkeysService, HotkeyModule } from 'angular2-hotkeys';
31
31
  import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
32
32
  import { AutoComplete, AutoCompleteModule } from 'primeng/autocomplete';
33
33
  import { Dialog, DialogModule } from 'primeng/dialog';
34
- import { Table, RowToggler, TableService, TableModule as TableModule$1 } from 'primeng/table';
34
+ import { Table, TableService, RowToggler, TableModule as TableModule$1 } from 'primeng/table';
35
35
  import { CurrencyMaskDirective as CurrencyMaskDirective$1 } from 'ng2-currency-mask';
36
36
  import { ButtonModule as ButtonModule$1 } from 'primeng/button';
37
37
  import { CheckboxModule as CheckboxModule$1 } from 'primeng/checkbox';
@@ -50,9 +50,9 @@ import { MessageService, ConfirmationService } from 'primeng/api';
50
50
  import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
51
51
  import { DomSanitizer } from '@angular/platform-browser';
52
52
  import { Clipboard } from '@angular/cdk/clipboard';
53
+ import { EditorModule } from 'primeng/editor';
53
54
  import { ConfirmDialogModule } from 'primeng/confirmdialog';
54
55
  import Cropper from 'cropperjs';
55
- import { EditorModule } from 'primeng/editor';
56
56
  import marked from 'marked';
57
57
  import { moveItemInArray, transferArrayItem, DragDropModule } from '@angular/cdk/drag-drop';
58
58
  import * as elementResizeDetectorMaker_ from 'element-resize-detector';
@@ -3300,12 +3300,15 @@ var CoreFacade = /** @class */ (function () {
3300
3300
  var CodeEditorComponent = /** @class */ (function () {
3301
3301
  function CodeEditorComponent(coreFacade) {
3302
3302
  this.coreFacade = coreFacade;
3303
- this._ngUnsubscribe = new Subject();
3304
3303
  this.codeChange = new EventEmitter();
3305
3304
  this.isCodeValidChange = new EventEmitter();
3306
3305
  this.onCodeChange = new EventEmitter();
3307
3306
  this.onComponentFinishLoad = new EventEmitter();
3307
+ this._ngUnsubscribe = new Subject();
3308
+ this._onChange = function () { };
3309
+ this._onTouched = function () { };
3308
3310
  }
3311
+ CodeEditorComponent_1 = CodeEditorComponent;
3309
3312
  Object.defineProperty(CodeEditorComponent.prototype, "editorOptions", {
3310
3313
  set: function (options) {
3311
3314
  this.coreFacade.changeEditorOptions(options);
@@ -3320,6 +3323,15 @@ var CodeEditorComponent = /** @class */ (function () {
3320
3323
  enumerable: true,
3321
3324
  configurable: true
3322
3325
  });
3326
+ CodeEditorComponent.prototype.writeValue = function (value) {
3327
+ this.code = value;
3328
+ };
3329
+ CodeEditorComponent.prototype.registerOnChange = function (onChange) {
3330
+ this._onChange = onChange;
3331
+ };
3332
+ CodeEditorComponent.prototype.registerOnTouched = function (onTouched) {
3333
+ this._onTouched = onTouched;
3334
+ };
3323
3335
  CodeEditorComponent.prototype.ngOnInit = function () {
3324
3336
  this.coreFacade.initCore();
3325
3337
  this.setupCoreListeners();
@@ -3347,6 +3359,8 @@ var CodeEditorComponent = /** @class */ (function () {
3347
3359
  .subscribe(function (code) {
3348
3360
  _this.codeChange.emit(code);
3349
3361
  _this.onCodeChange.emit(code);
3362
+ _this._onTouched();
3363
+ _this._onChange(code);
3350
3364
  });
3351
3365
  this.coreFacade
3352
3366
  .getOnCodeValidityChangeObservable()
@@ -3355,12 +3369,10 @@ var CodeEditorComponent = /** @class */ (function () {
3355
3369
  _this.isCodeValidChange.emit(validity);
3356
3370
  });
3357
3371
  };
3372
+ var CodeEditorComponent_1;
3358
3373
  CodeEditorComponent.ctorParameters = function () { return [
3359
3374
  { type: CoreFacade }
3360
3375
  ]; };
3361
- __decorate([
3362
- ViewChild("coreWrapper")
3363
- ], CodeEditorComponent.prototype, "coreWrapperElement", void 0);
3364
3376
  __decorate([
3365
3377
  Input()
3366
3378
  ], CodeEditorComponent.prototype, "editorOptions", null);
@@ -3370,9 +3382,6 @@ var CodeEditorComponent = /** @class */ (function () {
3370
3382
  __decorate([
3371
3383
  Output()
3372
3384
  ], CodeEditorComponent.prototype, "codeChange", void 0);
3373
- __decorate([
3374
- Input()
3375
- ], CodeEditorComponent.prototype, "isCodeValid", void 0);
3376
3385
  __decorate([
3377
3386
  Output()
3378
3387
  ], CodeEditorComponent.prototype, "isCodeValidChange", void 0);
@@ -3382,10 +3391,20 @@ var CodeEditorComponent = /** @class */ (function () {
3382
3391
  __decorate([
3383
3392
  Output()
3384
3393
  ], CodeEditorComponent.prototype, "onComponentFinishLoad", void 0);
3385
- CodeEditorComponent = __decorate([
3394
+ __decorate([
3395
+ ViewChild("coreWrapper")
3396
+ ], CodeEditorComponent.prototype, "coreWrapperElement", void 0);
3397
+ CodeEditorComponent = CodeEditorComponent_1 = __decorate([
3386
3398
  Component({
3387
3399
  selector: "s-code-editor",
3388
3400
  template: "<div #coreWrapper class=\"core-wrapper\"></div>",
3401
+ providers: [
3402
+ {
3403
+ provide: NG_VALUE_ACCESSOR,
3404
+ useExisting: forwardRef(function () { return CodeEditorComponent_1; }),
3405
+ multi: true,
3406
+ },
3407
+ ],
3389
3408
  styles: [".core-wrapper{height:100%}"]
3390
3409
  })
3391
3410
  ], CodeEditorComponent);
@@ -4676,18 +4695,15 @@ var CodeEditorModule = /** @class */ (function () {
4676
4695
  }
4677
4696
  CodeEditorModule = __decorate([
4678
4697
  NgModule({
4679
- imports: [
4680
- CommonModule,
4681
- CustomTranslationsModule,
4682
- ],
4698
+ imports: [CommonModule, CustomTranslationsModule],
4683
4699
  declarations: [CodeEditorComponent],
4684
4700
  exports: [CodeEditorComponent],
4685
4701
  providers: [
4686
4702
  {
4687
4703
  provide: CoreFacade,
4688
- useClass: CodeMirror6Core
4689
- }
4690
- ]
4704
+ useClass: CodeMirror6Core,
4705
+ },
4706
+ ],
4691
4707
  })
4692
4708
  ], CodeEditorModule);
4693
4709
  return CodeEditorModule;
@@ -5403,6 +5419,18 @@ var CountryPhonePickerModule = /** @class */ (function () {
5403
5419
  return CountryPhonePickerModule;
5404
5420
  }());
5405
5421
 
5422
+ var BaseFieldComponent = /** @class */ (function () {
5423
+ function BaseFieldComponent() {
5424
+ }
5425
+ BaseFieldComponent.prototype.isFunction = function (value) {
5426
+ return value instanceof Function;
5427
+ };
5428
+ BaseFieldComponent.prototype.trigger = function (callback) {
5429
+ return callback();
5430
+ };
5431
+ return BaseFieldComponent;
5432
+ }());
5433
+
5406
5434
  var FieldType;
5407
5435
  (function (FieldType) {
5408
5436
  FieldType["Autocomplete"] = "Autocomplete";
@@ -5411,6 +5439,7 @@ var FieldType;
5411
5439
  FieldType["Boolean"] = "Boolean";
5412
5440
  FieldType["Checkbox"] = "Checkbox";
5413
5441
  FieldType["Chips"] = "Chips";
5442
+ FieldType["CodeEditor"] = "CodeEditor";
5414
5443
  FieldType["CountryPhonePicker"] = "CountryPhonePicker";
5415
5444
  FieldType["Custom"] = "Custom";
5416
5445
  FieldType["Date"] = "Date";
@@ -5611,6 +5640,16 @@ var CalendarField = /** @class */ (function (_super) {
5611
5640
  return CalendarField;
5612
5641
  }(Field));
5613
5642
 
5643
+ var CheckboxField = /** @class */ (function (_super) {
5644
+ __extends(CheckboxField, _super);
5645
+ function CheckboxField(config) {
5646
+ var _this = _super.call(this, config) || this;
5647
+ _this.data = config.data;
5648
+ return _this;
5649
+ }
5650
+ return CheckboxField;
5651
+ }(Field));
5652
+
5614
5653
  var ChipsField = /** @class */ (function (_super) {
5615
5654
  __extends(ChipsField, _super);
5616
5655
  function ChipsField(config) {
@@ -5630,6 +5669,19 @@ var ChipsField = /** @class */ (function (_super) {
5630
5669
  return ChipsField;
5631
5670
  }(Field));
5632
5671
 
5672
+ var CountryPhonePickerField = /** @class */ (function (_super) {
5673
+ __extends(CountryPhonePickerField, _super);
5674
+ function CountryPhonePickerField(config) {
5675
+ var _this = _super.call(this, config) || this;
5676
+ _this.countries = config.countries;
5677
+ _this.ordination = config.ordination;
5678
+ _this.onSelected = config.onSelected;
5679
+ _this.onFocusLost = config.onFocusLost;
5680
+ return _this;
5681
+ }
5682
+ return CountryPhonePickerField;
5683
+ }(Field));
5684
+
5633
5685
  /**
5634
5686
  * @deprecated Should use 'AlignmentOptions' from @seniorsistemas/ng2-currency-mask instead
5635
5687
  */
@@ -5885,6 +5937,28 @@ var LookupField = /** @class */ (function (_super) {
5885
5937
  return LookupField;
5886
5938
  }(Field));
5887
5939
 
5940
+ var PasswordField = /** @class */ (function (_super) {
5941
+ __extends(PasswordField, _super);
5942
+ function PasswordField(config) {
5943
+ var _this = _super.call(this, config) || this;
5944
+ _this.inputType = config.inputType;
5945
+ _this.keyFilter = config.keyFilter;
5946
+ _this.leftAddon = config.leftAddon;
5947
+ _this.rightAddon = config.rightAddon;
5948
+ _this.maxLength = config.maxLength || 9999999;
5949
+ _this.passwordStrength = config.passwordStrength;
5950
+ _this.passwordStrengthOptions = config.passwordStrengthOptions;
5951
+ _this.showToggle = config.showToggle;
5952
+ _this.style = config.style;
5953
+ _this.onBlur = config.onBlur;
5954
+ _this.onFocus = config.onFocus;
5955
+ _this.onComplete = config.onComplete;
5956
+ _this.onInput = config.onInput;
5957
+ return _this;
5958
+ }
5959
+ return PasswordField;
5960
+ }(Field));
5961
+
5888
5962
  var RationButtonOption = /** @class */ (function () {
5889
5963
  function RationButtonOption(config) {
5890
5964
  this.label = config.label;
@@ -5934,6 +6008,29 @@ var SelectOption = /** @class */ (function () {
5934
6008
  return SelectOption;
5935
6009
  }());
5936
6010
 
6011
+ var SliderField = /** @class */ (function (_super) {
6012
+ __extends(SliderField, _super);
6013
+ function SliderField(config) {
6014
+ var _a, _b, _c, _d, _e, _f, _g, _h;
6015
+ var _this = _super.call(this, config) || this;
6016
+ _this.maxDefault = 100;
6017
+ _this.onChange = config.onChange;
6018
+ _this.onSlideEnd = config.onSlideEnd;
6019
+ _this.range = (_a = config.range) !== null && _a !== void 0 ? _a : false;
6020
+ _this.min = (_b = config.min) !== null && _b !== void 0 ? _b : 0;
6021
+ _this.max = (_c = config.max) !== null && _c !== void 0 ? _c : _this.maxDefault;
6022
+ _this.orientation = (_d = config.orientation) !== null && _d !== void 0 ? _d : "horizontal";
6023
+ _this.step = (_e = config.step) !== null && _e !== void 0 ? _e : 1;
6024
+ _this.animate = (_f = config.animate) !== null && _f !== void 0 ? _f : false;
6025
+ _this.disabled = (_g = config.disabled) !== null && _g !== void 0 ? _g : false;
6026
+ _this.prefix = config.prefix;
6027
+ _this.suffix = config.suffix;
6028
+ _this.rangeSeparator = (_h = config.rangeSeparator) !== null && _h !== void 0 ? _h : ' - ';
6029
+ return _this;
6030
+ }
6031
+ return SliderField;
6032
+ }(Field));
6033
+
5937
6034
  var TextAreaField = /** @class */ (function (_super) {
5938
6035
  __extends(TextAreaField, _super);
5939
6036
  function TextAreaField(config) {
@@ -5985,72 +6082,31 @@ var TextField = /** @class */ (function (_super) {
5985
6082
  return TextField;
5986
6083
  }(Field));
5987
6084
 
5988
- var PasswordField = /** @class */ (function (_super) {
5989
- __extends(PasswordField, _super);
5990
- function PasswordField(config) {
5991
- var _this = _super.call(this, config) || this;
5992
- _this.inputType = config.inputType;
5993
- _this.keyFilter = config.keyFilter;
5994
- _this.leftAddon = config.leftAddon;
5995
- _this.rightAddon = config.rightAddon;
5996
- _this.maxLength = config.maxLength || 9999999;
5997
- _this.passwordStrength = config.passwordStrength;
5998
- _this.passwordStrengthOptions = config.passwordStrengthOptions;
5999
- _this.showToggle = config.showToggle;
6000
- _this.style = config.style;
6001
- _this.onBlur = config.onBlur;
6002
- _this.onFocus = config.onFocus;
6003
- _this.onComplete = config.onComplete;
6004
- _this.onInput = config.onInput;
6005
- return _this;
6006
- }
6007
- return PasswordField;
6008
- }(Field));
6009
-
6010
- var SliderField = /** @class */ (function (_super) {
6011
- __extends(SliderField, _super);
6012
- function SliderField(config) {
6013
- var _a, _b, _c, _d, _e, _f, _g, _h;
6014
- var _this = _super.call(this, config) || this;
6015
- _this.maxDefault = 100;
6016
- _this.onChange = config.onChange;
6017
- _this.onSlideEnd = config.onSlideEnd;
6018
- _this.range = (_a = config.range) !== null && _a !== void 0 ? _a : false;
6019
- _this.min = (_b = config.min) !== null && _b !== void 0 ? _b : 0;
6020
- _this.max = (_c = config.max) !== null && _c !== void 0 ? _c : _this.maxDefault;
6021
- _this.orientation = (_d = config.orientation) !== null && _d !== void 0 ? _d : "horizontal";
6022
- _this.step = (_e = config.step) !== null && _e !== void 0 ? _e : 1;
6023
- _this.animate = (_f = config.animate) !== null && _f !== void 0 ? _f : false;
6024
- _this.disabled = (_g = config.disabled) !== null && _g !== void 0 ? _g : false;
6025
- _this.prefix = config.prefix;
6026
- _this.suffix = config.suffix;
6027
- _this.rangeSeparator = (_h = config.rangeSeparator) !== null && _h !== void 0 ? _h : ' - ';
6028
- return _this;
6029
- }
6030
- return SliderField;
6031
- }(Field));
6032
-
6033
- var CheckboxField = /** @class */ (function (_super) {
6034
- __extends(CheckboxField, _super);
6035
- function CheckboxField(config) {
6085
+ var CodeEditorField = /** @class */ (function (_super) {
6086
+ __extends(CodeEditorField, _super);
6087
+ function CodeEditorField(config) {
6036
6088
  var _this = _super.call(this, config) || this;
6037
- _this.data = config.data;
6089
+ _this.editorOptions = config.editorOptions;
6090
+ _this.code = config.code;
6091
+ _this.isCodeValid = config.isCodeValid;
6092
+ _this.onComponentFinishLoad = config.onComponentFinishLoad;
6093
+ _this.onCodeChange = config.onCodeChange;
6038
6094
  return _this;
6039
6095
  }
6040
- return CheckboxField;
6096
+ return CodeEditorField;
6041
6097
  }(Field));
6042
6098
 
6043
- var CountryPhonePickerField = /** @class */ (function (_super) {
6044
- __extends(CountryPhonePickerField, _super);
6045
- function CountryPhonePickerField(config) {
6099
+ var EditorField = /** @class */ (function (_super) {
6100
+ __extends(EditorField, _super);
6101
+ function EditorField(config) {
6046
6102
  var _this = _super.call(this, config) || this;
6047
- _this.countries = config.countries;
6048
- _this.ordination = config.ordination;
6049
- _this.onSelected = config.onSelected;
6050
- _this.onFocusLost = config.onFocusLost;
6103
+ _this.formats = config.formats;
6104
+ _this.readonly = config.readonly;
6105
+ _this.modules = config.modules;
6106
+ _this.style = config.style;
6051
6107
  return _this;
6052
6108
  }
6053
- return CountryPhonePickerField;
6109
+ return EditorField;
6054
6110
  }(Field));
6055
6111
 
6056
6112
  var ProfilePictureField = /** @class */ (function (_super) {
@@ -6076,19 +6132,6 @@ var ProfilePictureField = /** @class */ (function (_super) {
6076
6132
  return ProfilePictureField;
6077
6133
  }(Field));
6078
6134
 
6079
- var EditorField = /** @class */ (function (_super) {
6080
- __extends(EditorField, _super);
6081
- function EditorField(config) {
6082
- var _this = _super.call(this, config) || this;
6083
- _this.formats = config.formats;
6084
- _this.readonly = config.readonly;
6085
- _this.modules = config.modules;
6086
- _this.style = config.style;
6087
- return _this;
6088
- }
6089
- return EditorField;
6090
- }(Field));
6091
-
6092
6135
  var FormField = /** @class */ (function () {
6093
6136
  function FormField(config) {
6094
6137
  switch (config.type) {
@@ -6128,6 +6171,8 @@ var FormField = /** @class */ (function () {
6128
6171
  return new CheckboxField(config);
6129
6172
  case FieldType.Chips:
6130
6173
  return new ChipsField(config);
6174
+ case FieldType.CodeEditor:
6175
+ return new CodeEditorField(config);
6131
6176
  case FieldType.CountryPhonePicker:
6132
6177
  return new CountryPhonePickerField(config);
6133
6178
  case FieldType.Blob:
@@ -6726,18 +6771,6 @@ var LookupComponent = /** @class */ (function () {
6726
6771
  return LookupComponent;
6727
6772
  }());
6728
6773
 
6729
- var BaseFieldComponent = /** @class */ (function () {
6730
- function BaseFieldComponent() {
6731
- }
6732
- BaseFieldComponent.prototype.isFunction = function (value) {
6733
- return value instanceof Function;
6734
- };
6735
- BaseFieldComponent.prototype.trigger = function (callback) {
6736
- return callback();
6737
- };
6738
- return BaseFieldComponent;
6739
- }());
6740
-
6741
6774
  var DynamicType;
6742
6775
  (function (DynamicType) {
6743
6776
  DynamicType["Autocomplete"] = "Autocomplete";
@@ -6886,57 +6919,6 @@ var DynamicFormComponent = /** @class */ (function () {
6886
6919
  return DynamicFormComponent;
6887
6920
  }());
6888
6921
 
6889
- var IAssistService = /** @class */ (function () {
6890
- function IAssistService(http, _messageService) {
6891
- this.http = http;
6892
- this._messageService = _messageService;
6893
- }
6894
- IAssistService.prototype.askIA = function (context, data) {
6895
- var _this = this;
6896
- var prompt = data.prompt ? this._replacePlaceholder(context, data) : this._createPrompt(context, data);
6897
- return this.http
6898
- .post("platform/iassist/api/latest/completions", {
6899
- prompt: prompt,
6900
- provider: "OPEN_AI",
6901
- parameters: {
6902
- model: "gpt-3.5-turbo",
6903
- max_tokens: 700,
6904
- temperature: 1,
6905
- },
6906
- })
6907
- .pipe(catchError(function (err) {
6908
- _this._messageService.add({
6909
- severity: "error",
6910
- summary: err.status ? String(err.status) : "Error",
6911
- detail: (err.error && err.error.message) || err.statusText || err.message || "Error",
6912
- });
6913
- return throwError(err);
6914
- }));
6915
- };
6916
- IAssistService.prototype._replacePlaceholder = function (context, data) {
6917
- var values = __assign(__assign({}, data), { context: context });
6918
- delete values.prompt;
6919
- var result = data.prompt;
6920
- for (var key in __assign(__assign({}, values), { context: context })) {
6921
- var placeholder = new RegExp("{{\\s*" + key + "\\s*}}", "g");
6922
- result = result.replace(placeholder, values[key]);
6923
- }
6924
- console.log("prompt", result);
6925
- return result;
6926
- };
6927
- IAssistService.prototype._createPrompt = function (context, data) {
6928
- return "Crie um texto gen\u00E9rico para preencher o campo de textarea.\n " + (data.label ? "O campo tem o label " + data.label + "." : "") + "\n " + (data.id ? "O campo tem o id " + data.id + "." : "") + "\n " + (data.placeholder ? "Considere as instru\u00E7\u00F5es/sugest\u00F5es do placeholder: " + data.placeholder + "." : "") + "\n Baseie-se no contexto informado pelo usu\u00E1rio: '" + context + "'.\n O texto deve ser formal e conter informa\u00E7\u00F5es pertinentes a um campo como este, como se um usu\u00E1rio real tivesse preenchido com as informa\u00E7\u00F5es necess\u00E1rias. \n O texto deve ser neutro com rela\u00E7\u00E3o a generos, ra\u00E7as, religi\u00F5es, etc.\n O texto deve ser impessoal e n\u00E3o deve conter informa\u00E7\u00F5es pessoais do usu\u00E1rio.\n N\u00E3o direcione o texto a ningu\u00E9m, n\u00E3o use express\u00F5es como: caro, atenciosamente. gostaria, agrade\u00E7o. O texto deve ser gen\u00E9rico.\n \n Exemplos de texto:\n Um campo de descri\u00E7\u00E3o de usu\u00E1rio: \"Usu\u00E1rio com 20 anos, estudante de engenharia, gosta de jogar futebol e assistir filmes.\"\n Outro exemplo de descri\u00E7\u00E3o de usu\u00E1rio: \"Usu\u00E1rio administrador, com acesso total ao sistema, respons\u00E1vel por gerenciar os usu\u00E1rios e os produtos.\"\n Um campo de descri\u00E7\u00E3o de um produto: \"O produto \u00E9 um celular, com tela de 6 polegadas, 128GB de armazenamento, 4GB de mem\u00F3ria RAM, c\u00E2mera de 12MP e bateria de 4000mAh.\"\n Outro exemplo de descri\u00E7\u00E3o de produto: \"O produto \u00E9 uma geladeira, com capacidade de 500 litros, 2 portas, cor branca, com freezer e gaveta de legumes.\"\n Outro exemplo de descri\u00E7\u00E3o de produto: \"O produto \u00E9 uma camiseta, tamanho M, cor azul, 100% algod\u00E3o, com estampa de um gato.\"\n \n Em caso de contexto incompleto crie um texto gen\u00E9rico, como se fosse um exemplo de preenchimento do campo.\n O texto \u00E9 para um campo de textarea, ent\u00E3o escreva um texto sucinto.\n Exiba apenas o texto do output";
6929
- };
6930
- IAssistService.ctorParameters = function () { return [
6931
- { type: HttpClient },
6932
- { type: MessageService }
6933
- ]; };
6934
- IAssistService = __decorate([
6935
- Injectable()
6936
- ], IAssistService);
6937
- return IAssistService;
6938
- }());
6939
-
6940
6922
  var LongPressDirective = /** @class */ (function () {
6941
6923
  function LongPressDirective() {
6942
6924
  this.sLongPressDelay = 500;
@@ -7039,8 +7021,59 @@ var MouseEventsModule = /** @class */ (function () {
7039
7021
  return MouseEventsModule;
7040
7022
  }());
7041
7023
 
7042
- var EmptyStateComponent = /** @class */ (function () {
7043
- function EmptyStateComponent() {
7024
+ var IAssistService = /** @class */ (function () {
7025
+ function IAssistService(http, _messageService) {
7026
+ this.http = http;
7027
+ this._messageService = _messageService;
7028
+ }
7029
+ IAssistService.prototype.askIA = function (context, data) {
7030
+ var _this = this;
7031
+ var prompt = data.prompt ? this._replacePlaceholder(context, data) : this._createPrompt(context, data);
7032
+ return this.http
7033
+ .post("platform/iassist/api/latest/completions", {
7034
+ prompt: prompt,
7035
+ provider: "OPEN_AI",
7036
+ parameters: {
7037
+ model: "gpt-3.5-turbo",
7038
+ max_tokens: 700,
7039
+ temperature: 1,
7040
+ },
7041
+ })
7042
+ .pipe(catchError(function (err) {
7043
+ _this._messageService.add({
7044
+ severity: "error",
7045
+ summary: err.status ? String(err.status) : "Error",
7046
+ detail: (err.error && err.error.message) || err.statusText || err.message || "Error",
7047
+ });
7048
+ return throwError(err);
7049
+ }));
7050
+ };
7051
+ IAssistService.prototype._replacePlaceholder = function (context, data) {
7052
+ var values = __assign(__assign({}, data), { context: context });
7053
+ delete values.prompt;
7054
+ var result = data.prompt;
7055
+ for (var key in __assign(__assign({}, values), { context: context })) {
7056
+ var placeholder = new RegExp("{{\\s*" + key + "\\s*}}", "g");
7057
+ result = result.replace(placeholder, values[key]);
7058
+ }
7059
+ console.log("prompt", result);
7060
+ return result;
7061
+ };
7062
+ IAssistService.prototype._createPrompt = function (context, data) {
7063
+ return "Crie um texto gen\u00E9rico para preencher o campo de textarea.\n " + (data.label ? "O campo tem o label " + data.label + "." : "") + "\n " + (data.id ? "O campo tem o id " + data.id + "." : "") + "\n " + (data.placeholder ? "Considere as instru\u00E7\u00F5es/sugest\u00F5es do placeholder: " + data.placeholder + "." : "") + "\n Baseie-se no contexto informado pelo usu\u00E1rio: '" + context + "'.\n O texto deve ser formal e conter informa\u00E7\u00F5es pertinentes a um campo como este, como se um usu\u00E1rio real tivesse preenchido com as informa\u00E7\u00F5es necess\u00E1rias. \n O texto deve ser neutro com rela\u00E7\u00E3o a generos, ra\u00E7as, religi\u00F5es, etc.\n O texto deve ser impessoal e n\u00E3o deve conter informa\u00E7\u00F5es pessoais do usu\u00E1rio.\n N\u00E3o direcione o texto a ningu\u00E9m, n\u00E3o use express\u00F5es como: caro, atenciosamente. gostaria, agrade\u00E7o. O texto deve ser gen\u00E9rico.\n \n Exemplos de texto:\n Um campo de descri\u00E7\u00E3o de usu\u00E1rio: \"Usu\u00E1rio com 20 anos, estudante de engenharia, gosta de jogar futebol e assistir filmes.\"\n Outro exemplo de descri\u00E7\u00E3o de usu\u00E1rio: \"Usu\u00E1rio administrador, com acesso total ao sistema, respons\u00E1vel por gerenciar os usu\u00E1rios e os produtos.\"\n Um campo de descri\u00E7\u00E3o de um produto: \"O produto \u00E9 um celular, com tela de 6 polegadas, 128GB de armazenamento, 4GB de mem\u00F3ria RAM, c\u00E2mera de 12MP e bateria de 4000mAh.\"\n Outro exemplo de descri\u00E7\u00E3o de produto: \"O produto \u00E9 uma geladeira, com capacidade de 500 litros, 2 portas, cor branca, com freezer e gaveta de legumes.\"\n Outro exemplo de descri\u00E7\u00E3o de produto: \"O produto \u00E9 uma camiseta, tamanho M, cor azul, 100% algod\u00E3o, com estampa de um gato.\"\n \n Em caso de contexto incompleto crie um texto gen\u00E9rico, como se fosse um exemplo de preenchimento do campo.\n O texto \u00E9 para um campo de textarea, ent\u00E3o escreva um texto sucinto.\n Exiba apenas o texto do output";
7064
+ };
7065
+ IAssistService.ctorParameters = function () { return [
7066
+ { type: HttpClient },
7067
+ { type: MessageService }
7068
+ ]; };
7069
+ IAssistService = __decorate([
7070
+ Injectable()
7071
+ ], IAssistService);
7072
+ return IAssistService;
7073
+ }());
7074
+
7075
+ var EmptyStateComponent = /** @class */ (function () {
7076
+ function EmptyStateComponent() {
7044
7077
  this.id = "s-empty-state-" + EmptyStateComponent_1.nextId++;
7045
7078
  this.iconClass = "fa fa-inbox";
7046
7079
  this.showPrimaryAction = true;
@@ -9017,6 +9050,170 @@ var PasswordStrengthModule = /** @class */ (function () {
9017
9050
  return PasswordStrengthModule;
9018
9051
  }());
9019
9052
 
9053
+ var TableHeaderCheckboxComponent = /** @class */ (function () {
9054
+ function TableHeaderCheckboxComponent(table, tableService) {
9055
+ var _this = this;
9056
+ this.table = table;
9057
+ this.tableService = tableService;
9058
+ this.id = "s-table-header-checkbox-" + TableHeaderCheckboxComponent_1.nextId++;
9059
+ this.ngUnsubscribe = new Subject();
9060
+ this.table.tableService.valueSource$.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
9061
+ _this.checked = _this.updateCheckedState();
9062
+ });
9063
+ this.table.tableService.selectionSource$.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
9064
+ _this.checked = _this.updateCheckedState();
9065
+ });
9066
+ }
9067
+ TableHeaderCheckboxComponent_1 = TableHeaderCheckboxComponent;
9068
+ TableHeaderCheckboxComponent.prototype.ngOnInit = function () {
9069
+ this.checked = this.updateCheckedState();
9070
+ };
9071
+ TableHeaderCheckboxComponent.prototype.ngOnDestroy = function () {
9072
+ this.ngUnsubscribe.next();
9073
+ };
9074
+ TableHeaderCheckboxComponent.prototype.onFocus = function () {
9075
+ this.hasFocus = true;
9076
+ };
9077
+ TableHeaderCheckboxComponent.prototype.onBlur = function () {
9078
+ this.hasFocus = false;
9079
+ };
9080
+ TableHeaderCheckboxComponent.prototype.isDisabled = function () {
9081
+ return this.disabled || !this.table.value || !this.table.value.length;
9082
+ };
9083
+ TableHeaderCheckboxComponent.prototype.onClick = function () {
9084
+ if (!this.disabled) {
9085
+ if (this.table.value && this.table.value.length > 0)
9086
+ this.onToggleCheckbox(!this.checked);
9087
+ }
9088
+ };
9089
+ TableHeaderCheckboxComponent.prototype.updateCheckedState = function () {
9090
+ if (this.table.filteredValue) {
9091
+ var val = this.table.filteredValue;
9092
+ return val && val.length > 0 && this.table.selection && this.table.selection.length > 0 && this.isAllFilteredValuesChecked();
9093
+ }
9094
+ else {
9095
+ var val = this.table.value;
9096
+ return val && val.length > 0 && this.table.selection && this.table.selection.length > 0 && this.isAllValuesChecked();
9097
+ }
9098
+ };
9099
+ TableHeaderCheckboxComponent.prototype.onToggleCheckbox = function (checked) {
9100
+ var _this = this;
9101
+ var _a = this.table, filteredValue = _a.filteredValue, value = _a.value, dataKey = _a.dataKey;
9102
+ var gridData = checked ? (filteredValue ? filteredValue.slice() : value.slice()) : [];
9103
+ if (checked) {
9104
+ var unselecteds = gridData
9105
+ .filter(function (record) { return !_this.table._selection.find(function (selected) { return record[dataKey] === selected[dataKey]; }); })
9106
+ .map(function (record) {
9107
+ if (_this.useAllObject)
9108
+ return record;
9109
+ var newRecord = {};
9110
+ if (_this.rowProps)
9111
+ _this.rowProps.forEach(function (prop) { return (newRecord[prop] = record[prop]); });
9112
+ else
9113
+ newRecord[dataKey] = record[dataKey];
9114
+ return newRecord;
9115
+ });
9116
+ this.table._selection = __spread(this.table._selection, unselecteds);
9117
+ }
9118
+ else {
9119
+ value.forEach(function (data) {
9120
+ _this.table._selection = _this.table._selection.filter(function (record) { return record[dataKey] !== data[dataKey]; });
9121
+ });
9122
+ }
9123
+ this.table.updateSelectionKeys();
9124
+ this.table.selectionChange.emit(this.table._selection);
9125
+ this.tableService.onSelectionChange();
9126
+ if (this.table.isStateful())
9127
+ this.table.saveState();
9128
+ };
9129
+ TableHeaderCheckboxComponent.prototype.isAllFilteredValuesChecked = function () {
9130
+ var e_1, _a;
9131
+ if (!this.table.filteredValue) {
9132
+ return false;
9133
+ }
9134
+ else {
9135
+ try {
9136
+ for (var _b = __values(this.table.filteredValue), _c = _b.next(); !_c.done; _c = _b.next()) {
9137
+ var rowData = _c.value;
9138
+ if (!this.table.isSelected(rowData)) {
9139
+ return false;
9140
+ }
9141
+ }
9142
+ }
9143
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
9144
+ finally {
9145
+ try {
9146
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
9147
+ }
9148
+ finally { if (e_1) throw e_1.error; }
9149
+ }
9150
+ return true;
9151
+ }
9152
+ };
9153
+ TableHeaderCheckboxComponent.prototype.isAllValuesChecked = function () {
9154
+ var e_2, _a;
9155
+ if (!this.table.value) {
9156
+ return false;
9157
+ }
9158
+ else {
9159
+ try {
9160
+ for (var _b = __values(this.table.value), _c = _b.next(); !_c.done; _c = _b.next()) {
9161
+ var rowData = _c.value;
9162
+ if (!this.table.isSelected(rowData)) {
9163
+ return false;
9164
+ }
9165
+ }
9166
+ }
9167
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
9168
+ finally {
9169
+ try {
9170
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
9171
+ }
9172
+ finally { if (e_2) throw e_2.error; }
9173
+ }
9174
+ return true;
9175
+ }
9176
+ };
9177
+ var TableHeaderCheckboxComponent_1;
9178
+ TableHeaderCheckboxComponent.nextId = 0;
9179
+ TableHeaderCheckboxComponent.ctorParameters = function () { return [
9180
+ { type: Table },
9181
+ { type: TableService }
9182
+ ]; };
9183
+ __decorate([
9184
+ Input()
9185
+ ], TableHeaderCheckboxComponent.prototype, "id", void 0);
9186
+ __decorate([
9187
+ Input()
9188
+ ], TableHeaderCheckboxComponent.prototype, "disabled", void 0);
9189
+ __decorate([
9190
+ Input()
9191
+ ], TableHeaderCheckboxComponent.prototype, "rowProps", void 0);
9192
+ __decorate([
9193
+ Input()
9194
+ ], TableHeaderCheckboxComponent.prototype, "useAllObject", void 0);
9195
+ TableHeaderCheckboxComponent = TableHeaderCheckboxComponent_1 = __decorate([
9196
+ Component({
9197
+ selector: "s-table-header-checkbox",
9198
+ template: "\n <div class=\"ui-chkbox ui-widget\" (click)=\"onClick()\">\n <div class=\"ui-helper-hidden-accessible\">\n <input type=\"checkbox\" [checked]=\"checked\" (focus)=\"onFocus()\" (blur)=\"onBlur()\" [disabled]=\"isDisabled()\">\n </div>\n <div [ngClass]=\"{'ui-chkbox-box ui-widget ui-state-default':true,\n 'ui-state-active':checked, 'ui-state-disabled': isDisabled(), 'ui-state-focus': hasFocus}\">\n <span [id]=\"id\" class=\"ui-chkbox-icon ui-clickable\" [ngClass]=\"{'pi pi-check':checked}\"></span>\n </div>\n </div>\n "
9199
+ })
9200
+ ], TableHeaderCheckboxComponent);
9201
+ return TableHeaderCheckboxComponent;
9202
+ }());
9203
+
9204
+ var TableHeaderCheckboxModule = /** @class */ (function () {
9205
+ function TableHeaderCheckboxModule() {
9206
+ }
9207
+ TableHeaderCheckboxModule = __decorate([
9208
+ NgModule({
9209
+ imports: [CommonModule],
9210
+ exports: [TableHeaderCheckboxComponent],
9211
+ declarations: [TableHeaderCheckboxComponent],
9212
+ })
9213
+ ], TableHeaderCheckboxModule);
9214
+ return TableHeaderCheckboxModule;
9215
+ }());
9216
+
9020
9217
  var NavigationDirective = /** @class */ (function () {
9021
9218
  function NavigationDirective() {
9022
9219
  }
@@ -10065,181 +10262,17 @@ var TableModule = /** @class */ (function () {
10065
10262
  return TableModule;
10066
10263
  }());
10067
10264
 
10068
- var TableHeaderCheckboxComponent = /** @class */ (function () {
10069
- function TableHeaderCheckboxComponent(table, tableService) {
10070
- var _this = this;
10071
- this.table = table;
10072
- this.tableService = tableService;
10073
- this.id = "s-table-header-checkbox-" + TableHeaderCheckboxComponent_1.nextId++;
10074
- this.ngUnsubscribe = new Subject();
10075
- this.table.tableService.valueSource$.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
10076
- _this.checked = _this.updateCheckedState();
10077
- });
10078
- this.table.tableService.selectionSource$.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
10079
- _this.checked = _this.updateCheckedState();
10080
- });
10265
+ var AutocompleteFieldComponent = /** @class */ (function () {
10266
+ function AutocompleteFieldComponent(changeDetectorRef, elementRef) {
10267
+ this.changeDetectorRef = changeDetectorRef;
10268
+ this.elementRef = elementRef;
10081
10269
  }
10082
- TableHeaderCheckboxComponent_1 = TableHeaderCheckboxComponent;
10083
- TableHeaderCheckboxComponent.prototype.ngOnInit = function () {
10084
- this.checked = this.updateCheckedState();
10085
- };
10086
- TableHeaderCheckboxComponent.prototype.ngOnDestroy = function () {
10087
- this.ngUnsubscribe.next();
10088
- };
10089
- TableHeaderCheckboxComponent.prototype.onFocus = function () {
10090
- this.hasFocus = true;
10091
- };
10092
- TableHeaderCheckboxComponent.prototype.onBlur = function () {
10093
- this.hasFocus = false;
10270
+ AutocompleteFieldComponent.prototype.ngAfterViewInit = function () {
10271
+ this.setInputRef();
10272
+ this.changeDetectorRef.detectChanges();
10094
10273
  };
10095
- TableHeaderCheckboxComponent.prototype.isDisabled = function () {
10096
- return this.disabled || !this.table.value || !this.table.value.length;
10097
- };
10098
- TableHeaderCheckboxComponent.prototype.onClick = function () {
10099
- if (!this.disabled) {
10100
- if (this.table.value && this.table.value.length > 0)
10101
- this.onToggleCheckbox(!this.checked);
10102
- }
10103
- };
10104
- TableHeaderCheckboxComponent.prototype.updateCheckedState = function () {
10105
- if (this.table.filteredValue) {
10106
- var val = this.table.filteredValue;
10107
- return val && val.length > 0 && this.table.selection && this.table.selection.length > 0 && this.isAllFilteredValuesChecked();
10108
- }
10109
- else {
10110
- var val = this.table.value;
10111
- return val && val.length > 0 && this.table.selection && this.table.selection.length > 0 && this.isAllValuesChecked();
10112
- }
10113
- };
10114
- TableHeaderCheckboxComponent.prototype.onToggleCheckbox = function (checked) {
10115
- var _this = this;
10116
- var _a = this.table, filteredValue = _a.filteredValue, value = _a.value, dataKey = _a.dataKey;
10117
- var gridData = checked ? (filteredValue ? filteredValue.slice() : value.slice()) : [];
10118
- if (checked) {
10119
- var unselecteds = gridData
10120
- .filter(function (record) { return !_this.table._selection.find(function (selected) { return record[dataKey] === selected[dataKey]; }); })
10121
- .map(function (record) {
10122
- if (_this.useAllObject)
10123
- return record;
10124
- var newRecord = {};
10125
- if (_this.rowProps)
10126
- _this.rowProps.forEach(function (prop) { return (newRecord[prop] = record[prop]); });
10127
- else
10128
- newRecord[dataKey] = record[dataKey];
10129
- return newRecord;
10130
- });
10131
- this.table._selection = __spread(this.table._selection, unselecteds);
10132
- }
10133
- else {
10134
- value.forEach(function (data) {
10135
- _this.table._selection = _this.table._selection.filter(function (record) { return record[dataKey] !== data[dataKey]; });
10136
- });
10137
- }
10138
- this.table.updateSelectionKeys();
10139
- this.table.selectionChange.emit(this.table._selection);
10140
- this.tableService.onSelectionChange();
10141
- if (this.table.isStateful())
10142
- this.table.saveState();
10143
- };
10144
- TableHeaderCheckboxComponent.prototype.isAllFilteredValuesChecked = function () {
10145
- var e_1, _a;
10146
- if (!this.table.filteredValue) {
10147
- return false;
10148
- }
10149
- else {
10150
- try {
10151
- for (var _b = __values(this.table.filteredValue), _c = _b.next(); !_c.done; _c = _b.next()) {
10152
- var rowData = _c.value;
10153
- if (!this.table.isSelected(rowData)) {
10154
- return false;
10155
- }
10156
- }
10157
- }
10158
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
10159
- finally {
10160
- try {
10161
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
10162
- }
10163
- finally { if (e_1) throw e_1.error; }
10164
- }
10165
- return true;
10166
- }
10167
- };
10168
- TableHeaderCheckboxComponent.prototype.isAllValuesChecked = function () {
10169
- var e_2, _a;
10170
- if (!this.table.value) {
10171
- return false;
10172
- }
10173
- else {
10174
- try {
10175
- for (var _b = __values(this.table.value), _c = _b.next(); !_c.done; _c = _b.next()) {
10176
- var rowData = _c.value;
10177
- if (!this.table.isSelected(rowData)) {
10178
- return false;
10179
- }
10180
- }
10181
- }
10182
- catch (e_2_1) { e_2 = { error: e_2_1 }; }
10183
- finally {
10184
- try {
10185
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
10186
- }
10187
- finally { if (e_2) throw e_2.error; }
10188
- }
10189
- return true;
10190
- }
10191
- };
10192
- var TableHeaderCheckboxComponent_1;
10193
- TableHeaderCheckboxComponent.nextId = 0;
10194
- TableHeaderCheckboxComponent.ctorParameters = function () { return [
10195
- { type: Table },
10196
- { type: TableService }
10197
- ]; };
10198
- __decorate([
10199
- Input()
10200
- ], TableHeaderCheckboxComponent.prototype, "id", void 0);
10201
- __decorate([
10202
- Input()
10203
- ], TableHeaderCheckboxComponent.prototype, "disabled", void 0);
10204
- __decorate([
10205
- Input()
10206
- ], TableHeaderCheckboxComponent.prototype, "rowProps", void 0);
10207
- __decorate([
10208
- Input()
10209
- ], TableHeaderCheckboxComponent.prototype, "useAllObject", void 0);
10210
- TableHeaderCheckboxComponent = TableHeaderCheckboxComponent_1 = __decorate([
10211
- Component({
10212
- selector: "s-table-header-checkbox",
10213
- template: "\n <div class=\"ui-chkbox ui-widget\" (click)=\"onClick()\">\n <div class=\"ui-helper-hidden-accessible\">\n <input type=\"checkbox\" [checked]=\"checked\" (focus)=\"onFocus()\" (blur)=\"onBlur()\" [disabled]=\"isDisabled()\">\n </div>\n <div [ngClass]=\"{'ui-chkbox-box ui-widget ui-state-default':true,\n 'ui-state-active':checked, 'ui-state-disabled': isDisabled(), 'ui-state-focus': hasFocus}\">\n <span [id]=\"id\" class=\"ui-chkbox-icon ui-clickable\" [ngClass]=\"{'pi pi-check':checked}\"></span>\n </div>\n </div>\n "
10214
- })
10215
- ], TableHeaderCheckboxComponent);
10216
- return TableHeaderCheckboxComponent;
10217
- }());
10218
-
10219
- var TableHeaderCheckboxModule = /** @class */ (function () {
10220
- function TableHeaderCheckboxModule() {
10221
- }
10222
- TableHeaderCheckboxModule = __decorate([
10223
- NgModule({
10224
- imports: [CommonModule],
10225
- exports: [TableHeaderCheckboxComponent],
10226
- declarations: [TableHeaderCheckboxComponent],
10227
- })
10228
- ], TableHeaderCheckboxModule);
10229
- return TableHeaderCheckboxModule;
10230
- }());
10231
-
10232
- var AutocompleteFieldComponent = /** @class */ (function () {
10233
- function AutocompleteFieldComponent(changeDetectorRef, elementRef) {
10234
- this.changeDetectorRef = changeDetectorRef;
10235
- this.elementRef = elementRef;
10236
- }
10237
- AutocompleteFieldComponent.prototype.ngAfterViewInit = function () {
10238
- this.setInputRef();
10239
- this.changeDetectorRef.detectChanges();
10240
- };
10241
- AutocompleteFieldComponent.prototype.setInputRef = function () {
10242
- this.inputRef = this.elementRef.nativeElement.querySelector('input');
10274
+ AutocompleteFieldComponent.prototype.setInputRef = function () {
10275
+ this.inputRef = this.elementRef.nativeElement.querySelector('input');
10243
10276
  };
10244
10277
  AutocompleteFieldComponent.ctorParameters = function () { return [
10245
10278
  { type: ChangeDetectorRef },
@@ -10480,30 +10513,6 @@ var CountryPhonePickerFieldComponent = /** @class */ (function () {
10480
10513
  return CountryPhonePickerFieldComponent;
10481
10514
  }());
10482
10515
 
10483
- var FieldsetComponent = /** @class */ (function () {
10484
- function FieldsetComponent() {
10485
- }
10486
- __decorate([
10487
- Input()
10488
- ], FieldsetComponent.prototype, "id", void 0);
10489
- __decorate([
10490
- Input()
10491
- ], FieldsetComponent.prototype, "config", void 0);
10492
- __decorate([
10493
- Input()
10494
- ], FieldsetComponent.prototype, "group", void 0);
10495
- __decorate([
10496
- Input()
10497
- ], FieldsetComponent.prototype, "errorMessages", void 0);
10498
- FieldsetComponent = __decorate([
10499
- Component({
10500
- selector: "s-fieldset",
10501
- template: "\n <p-fieldset [toggleable]=\"true\" (onBeforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (onAfterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <p-header>{{config.header}}</p-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </p-fieldset>\n "
10502
- })
10503
- ], FieldsetComponent);
10504
- return FieldsetComponent;
10505
- }());
10506
-
10507
10516
  var FileUploadComponent$1 = /** @class */ (function (_super) {
10508
10517
  __extends(FileUploadComponent, _super);
10509
10518
  function FileUploadComponent(changeDetectorRef, elementRef) {
@@ -10616,29 +10625,6 @@ var RadioButtonComponent = /** @class */ (function () {
10616
10625
  return RadioButtonComponent;
10617
10626
  }());
10618
10627
 
10619
- var SectionComponent = /** @class */ (function () {
10620
- function SectionComponent() {
10621
- }
10622
- __decorate([
10623
- Input()
10624
- ], SectionComponent.prototype, "id", void 0);
10625
- __decorate([
10626
- Input()
10627
- ], SectionComponent.prototype, "config", void 0);
10628
- __decorate([
10629
- Input()
10630
- ], SectionComponent.prototype, "group", void 0);
10631
- __decorate([
10632
- Input()
10633
- ], SectionComponent.prototype, "errorMessages", void 0);
10634
- SectionComponent = __decorate([
10635
- Component({
10636
- template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n "
10637
- })
10638
- ], SectionComponent);
10639
- return SectionComponent;
10640
- }());
10641
-
10642
10628
  var SelectFieldComponent = /** @class */ (function (_super) {
10643
10629
  __extends(SelectFieldComponent, _super);
10644
10630
  function SelectFieldComponent() {
@@ -10774,33 +10760,6 @@ var SliderFieldComponent = /** @class */ (function (_super) {
10774
10760
  return SliderFieldComponent;
10775
10761
  }(BaseFieldComponent));
10776
10762
 
10777
- var TextAreaFieldComponent = /** @class */ (function () {
10778
- function TextAreaFieldComponent(changeDetectorRef) {
10779
- this.changeDetectorRef = changeDetectorRef;
10780
- }
10781
- TextAreaFieldComponent.prototype.ngAfterViewInit = function () {
10782
- this.changeDetectorRef.detectChanges();
10783
- };
10784
- TextAreaFieldComponent.ctorParameters = function () { return [
10785
- { type: ChangeDetectorRef }
10786
- ]; };
10787
- __decorate([
10788
- Input()
10789
- ], TextAreaFieldComponent.prototype, "field", void 0);
10790
- __decorate([
10791
- Input()
10792
- ], TextAreaFieldComponent.prototype, "formControl", void 0);
10793
- __decorate([
10794
- ViewChild('inputRef')
10795
- ], TextAreaFieldComponent.prototype, "inputRef", void 0);
10796
- TextAreaFieldComponent = __decorate([
10797
- Component({
10798
- template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"\n [fieldContainerRef]=\"inputRef?.nativeElement\"></s-field-label>\n\n<textarea #inputRef\n [id]=\"(field.id || field.name)\"\n *ngIf=\"!field.keyFilter\"\n pInputTextarea\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [formControl]=\"formControl\"\n style=\"resize: vertical;\"\n [ngStyle]=\"field.style\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n></textarea>\n<textarea #inputRef\n [id]=\"(field.id || field.name)\"\n *ngIf=\"field.keyFilter\"\n pInputTextarea\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [formControl]=\"formControl\"\n style=\"resize: vertical;\"\n [pKeyFilter]=\"field.keyFilter\"\n [ngStyle]=\"field.style\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n></textarea>\n"
10799
- })
10800
- ], TextAreaFieldComponent);
10801
- return TextAreaFieldComponent;
10802
- }());
10803
-
10804
10763
  var TextAreaIAFieldComponent = /** @class */ (function () {
10805
10764
  function TextAreaIAFieldComponent(_iassistService, _formBuilder, _translateService) {
10806
10765
  this._iassistService = _iassistService;
@@ -10881,6 +10840,80 @@ var TextAreaIAFieldComponent = /** @class */ (function () {
10881
10840
  return TextAreaIAFieldComponent;
10882
10841
  }());
10883
10842
 
10843
+ var TextAreaFieldComponent = /** @class */ (function () {
10844
+ function TextAreaFieldComponent(changeDetectorRef) {
10845
+ this.changeDetectorRef = changeDetectorRef;
10846
+ }
10847
+ TextAreaFieldComponent.prototype.ngAfterViewInit = function () {
10848
+ this.changeDetectorRef.detectChanges();
10849
+ };
10850
+ TextAreaFieldComponent.ctorParameters = function () { return [
10851
+ { type: ChangeDetectorRef }
10852
+ ]; };
10853
+ __decorate([
10854
+ Input()
10855
+ ], TextAreaFieldComponent.prototype, "field", void 0);
10856
+ __decorate([
10857
+ Input()
10858
+ ], TextAreaFieldComponent.prototype, "formControl", void 0);
10859
+ __decorate([
10860
+ ViewChild('inputRef')
10861
+ ], TextAreaFieldComponent.prototype, "inputRef", void 0);
10862
+ TextAreaFieldComponent = __decorate([
10863
+ Component({
10864
+ template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"\n [fieldContainerRef]=\"inputRef?.nativeElement\"></s-field-label>\n\n<textarea #inputRef\n [id]=\"(field.id || field.name)\"\n *ngIf=\"!field.keyFilter\"\n pInputTextarea\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [formControl]=\"formControl\"\n style=\"resize: vertical;\"\n [ngStyle]=\"field.style\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n></textarea>\n<textarea #inputRef\n [id]=\"(field.id || field.name)\"\n *ngIf=\"field.keyFilter\"\n pInputTextarea\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [formControl]=\"formControl\"\n style=\"resize: vertical;\"\n [pKeyFilter]=\"field.keyFilter\"\n [ngStyle]=\"field.style\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n></textarea>\n"
10865
+ })
10866
+ ], TextAreaFieldComponent);
10867
+ return TextAreaFieldComponent;
10868
+ }());
10869
+
10870
+ var FieldsetComponent = /** @class */ (function () {
10871
+ function FieldsetComponent() {
10872
+ }
10873
+ __decorate([
10874
+ Input()
10875
+ ], FieldsetComponent.prototype, "id", void 0);
10876
+ __decorate([
10877
+ Input()
10878
+ ], FieldsetComponent.prototype, "config", void 0);
10879
+ __decorate([
10880
+ Input()
10881
+ ], FieldsetComponent.prototype, "group", void 0);
10882
+ __decorate([
10883
+ Input()
10884
+ ], FieldsetComponent.prototype, "errorMessages", void 0);
10885
+ FieldsetComponent = __decorate([
10886
+ Component({
10887
+ selector: "s-fieldset",
10888
+ template: "\n <p-fieldset [toggleable]=\"true\" (onBeforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (onAfterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <p-header>{{config.header}}</p-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </p-fieldset>\n "
10889
+ })
10890
+ ], FieldsetComponent);
10891
+ return FieldsetComponent;
10892
+ }());
10893
+
10894
+ var SectionComponent = /** @class */ (function () {
10895
+ function SectionComponent() {
10896
+ }
10897
+ __decorate([
10898
+ Input()
10899
+ ], SectionComponent.prototype, "id", void 0);
10900
+ __decorate([
10901
+ Input()
10902
+ ], SectionComponent.prototype, "config", void 0);
10903
+ __decorate([
10904
+ Input()
10905
+ ], SectionComponent.prototype, "group", void 0);
10906
+ __decorate([
10907
+ Input()
10908
+ ], SectionComponent.prototype, "errorMessages", void 0);
10909
+ SectionComponent = __decorate([
10910
+ Component({
10911
+ template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n "
10912
+ })
10913
+ ], SectionComponent);
10914
+ return SectionComponent;
10915
+ }());
10916
+
10884
10917
  var RowComponent = /** @class */ (function () {
10885
10918
  function RowComponent() {
10886
10919
  }
@@ -11268,6 +11301,23 @@ var TextFieldComponent = /** @class */ (function (_super) {
11268
11301
  return TextFieldComponent;
11269
11302
  }(BaseFieldComponent));
11270
11303
 
11304
+ var CodeEditorFieldComponent = /** @class */ (function () {
11305
+ function CodeEditorFieldComponent() {
11306
+ }
11307
+ __decorate([
11308
+ Input()
11309
+ ], CodeEditorFieldComponent.prototype, "field", void 0);
11310
+ __decorate([
11311
+ Input()
11312
+ ], CodeEditorFieldComponent.prototype, "formControl", void 0);
11313
+ CodeEditorFieldComponent = __decorate([
11314
+ Component({
11315
+ template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<s-code-editor\n [editorOptions]=\"field.editorOptions\"\n [(code)]=\"field.code\"\n [formControl]=\"formControl\"\n (onComponentFinishLoad)=\"field.onComponentFinishLoad ? field.onComponentFinishLoad($event) : null\"\n (onCodeChange)=\"field.onCodeChange ? field.onCodeChange($event) : null\">\n</s-code-editor>"
11316
+ })
11317
+ ], CodeEditorFieldComponent);
11318
+ return CodeEditorFieldComponent;
11319
+ }());
11320
+
11271
11321
  var CheckboxFieldComponent = /** @class */ (function () {
11272
11322
  function CheckboxFieldComponent() {
11273
11323
  }
@@ -11279,7 +11329,7 @@ var CheckboxFieldComponent = /** @class */ (function () {
11279
11329
  ], CheckboxFieldComponent.prototype, "formControl", void 0);
11280
11330
  CheckboxFieldComponent = __decorate([
11281
11331
  Component({
11282
- template: "<s-checkbox [data]=\"field.data\"></s-checkbox>"
11332
+ template: "<s-checkbox\n [data]=\"field.data\"\n [formControl]=\"formControl\">\n</s-checkbox>"
11283
11333
  })
11284
11334
  ], CheckboxFieldComponent);
11285
11335
  return CheckboxFieldComponent;
@@ -11508,6 +11558,8 @@ var DynamicField = /** @class */ (function (_super) {
11508
11558
  return CheckboxFieldComponent;
11509
11559
  case FieldType.Chips:
11510
11560
  return ChipsFieldComponent;
11561
+ case FieldType.CodeEditor:
11562
+ return CodeEditorFieldComponent;
11511
11563
  case FieldType.CountryPhonePicker:
11512
11564
  return CountryPhonePickerFieldComponent;
11513
11565
  case FieldType.Date:
@@ -11730,49 +11782,75 @@ var FieldLabelModule = /** @class */ (function () {
11730
11782
  return FieldLabelModule;
11731
11783
  }());
11732
11784
 
11733
- var PasswordFieldModule = /** @class */ (function () {
11734
- function PasswordFieldModule() {
11785
+ var BignumberFieldModule = /** @class */ (function () {
11786
+ function BignumberFieldModule() {
11735
11787
  }
11736
- PasswordFieldModule = __decorate([
11788
+ BignumberFieldModule = __decorate([
11737
11789
  NgModule({
11738
11790
  imports: [
11739
11791
  CommonModule,
11740
11792
  FormsModule,
11741
11793
  ReactiveFormsModule,
11742
11794
  ButtonModule,
11795
+ BignumberInputModule,
11743
11796
  TooltipModule,
11744
- PasswordStrengthModule,
11797
+ InputMaskModule,
11745
11798
  InputTextModule,
11746
11799
  FieldLabelModule
11747
11800
  ],
11748
- declarations: [PasswordFieldComponent],
11749
- exports: [PasswordFieldComponent],
11801
+ declarations: [BignumberFieldComponent],
11802
+ exports: [BignumberFieldComponent],
11750
11803
  })
11751
- ], PasswordFieldModule);
11752
- return PasswordFieldModule;
11804
+ ], BignumberFieldModule);
11805
+ return BignumberFieldModule;
11753
11806
  }());
11754
11807
 
11755
- var TextFieldModule = /** @class */ (function () {
11756
- function TextFieldModule() {
11808
+ var CheckboxFieldModule = /** @class */ (function () {
11809
+ function CheckboxFieldModule() {
11757
11810
  }
11758
- TextFieldModule = __decorate([
11811
+ CheckboxFieldModule = __decorate([
11812
+ NgModule({
11813
+ imports: [CommonModule, FormsModule, ReactiveFormsModule, CheckboxModule],
11814
+ declarations: [CheckboxFieldComponent],
11815
+ exports: [CheckboxFieldComponent],
11816
+ })
11817
+ ], CheckboxFieldModule);
11818
+ return CheckboxFieldModule;
11819
+ }());
11820
+
11821
+ var CurrencyFieldModule = /** @class */ (function () {
11822
+ function CurrencyFieldModule() {
11823
+ }
11824
+ CurrencyFieldModule = __decorate([
11759
11825
  NgModule({
11760
11826
  imports: [
11761
11827
  CommonModule,
11762
11828
  FormsModule,
11763
11829
  ReactiveFormsModule,
11764
- ButtonModule,
11830
+ NumberInputModule,
11765
11831
  TooltipModule,
11766
11832
  InputMaskModule,
11767
11833
  InputTextModule,
11768
- KeyFilterModule,
11769
11834
  FieldLabelModule
11770
11835
  ],
11771
- declarations: [TextFieldComponent],
11772
- exports: [TextFieldComponent],
11836
+ declarations: [CurrencyFieldComponent],
11837
+ exports: [CurrencyFieldComponent],
11773
11838
  })
11774
- ], TextFieldModule);
11775
- return TextFieldModule;
11839
+ ], CurrencyFieldModule);
11840
+ return CurrencyFieldModule;
11841
+ }());
11842
+
11843
+ var EditorFieldModule = /** @class */ (function () {
11844
+ function EditorFieldModule() {
11845
+ }
11846
+ EditorFieldModule = __decorate([
11847
+ NgModule({
11848
+ imports: [CommonModule, FormsModule, ReactiveFormsModule, EditorModule, FieldLabelModule],
11849
+ declarations: [EditorFieldComponent],
11850
+ exports: [EditorFieldComponent],
11851
+ })
11852
+ ], EditorFieldModule);
11853
+ return EditorFieldModule;
11776
11854
  }());
11777
11855
 
11778
11856
  var NumberFieldModule = /** @class */ (function () {
@@ -11799,49 +11877,26 @@ var NumberFieldModule = /** @class */ (function () {
11799
11877
  return NumberFieldModule;
11800
11878
  }());
11801
11879
 
11802
- var CurrencyFieldModule = /** @class */ (function () {
11803
- function CurrencyFieldModule() {
11804
- }
11805
- CurrencyFieldModule = __decorate([
11806
- NgModule({
11807
- imports: [
11808
- CommonModule,
11809
- FormsModule,
11810
- ReactiveFormsModule,
11811
- NumberInputModule,
11812
- TooltipModule,
11813
- InputMaskModule,
11814
- InputTextModule,
11815
- FieldLabelModule
11816
- ],
11817
- declarations: [CurrencyFieldComponent],
11818
- exports: [CurrencyFieldComponent],
11819
- })
11820
- ], CurrencyFieldModule);
11821
- return CurrencyFieldModule;
11822
- }());
11823
-
11824
- var BignumberFieldModule = /** @class */ (function () {
11825
- function BignumberFieldModule() {
11880
+ var PasswordFieldModule = /** @class */ (function () {
11881
+ function PasswordFieldModule() {
11826
11882
  }
11827
- BignumberFieldModule = __decorate([
11883
+ PasswordFieldModule = __decorate([
11828
11884
  NgModule({
11829
11885
  imports: [
11830
11886
  CommonModule,
11831
11887
  FormsModule,
11832
11888
  ReactiveFormsModule,
11833
11889
  ButtonModule,
11834
- BignumberInputModule,
11835
11890
  TooltipModule,
11836
- InputMaskModule,
11891
+ PasswordStrengthModule,
11837
11892
  InputTextModule,
11838
11893
  FieldLabelModule
11839
11894
  ],
11840
- declarations: [BignumberFieldComponent],
11841
- exports: [BignumberFieldComponent],
11895
+ declarations: [PasswordFieldComponent],
11896
+ exports: [PasswordFieldComponent],
11842
11897
  })
11843
- ], BignumberFieldModule);
11844
- return BignumberFieldModule;
11898
+ ], PasswordFieldModule);
11899
+ return PasswordFieldModule;
11845
11900
  }());
11846
11901
 
11847
11902
  var HeaderComponent = /** @class */ (function () {
@@ -12610,30 +12665,40 @@ var ProfilePictureModule = /** @class */ (function () {
12610
12665
  return ProfilePictureModule;
12611
12666
  }());
12612
12667
 
12613
- var CheckboxFieldModule = /** @class */ (function () {
12614
- function CheckboxFieldModule() {
12668
+ var TextFieldModule = /** @class */ (function () {
12669
+ function TextFieldModule() {
12615
12670
  }
12616
- CheckboxFieldModule = __decorate([
12671
+ TextFieldModule = __decorate([
12617
12672
  NgModule({
12618
- imports: [CommonModule, FormsModule, ReactiveFormsModule, CheckboxModule],
12619
- declarations: [CheckboxFieldComponent],
12620
- exports: [CheckboxFieldComponent],
12673
+ imports: [
12674
+ CommonModule,
12675
+ FormsModule,
12676
+ ReactiveFormsModule,
12677
+ ButtonModule,
12678
+ TooltipModule,
12679
+ InputMaskModule,
12680
+ InputTextModule,
12681
+ KeyFilterModule,
12682
+ FieldLabelModule
12683
+ ],
12684
+ declarations: [TextFieldComponent],
12685
+ exports: [TextFieldComponent],
12621
12686
  })
12622
- ], CheckboxFieldModule);
12623
- return CheckboxFieldModule;
12687
+ ], TextFieldModule);
12688
+ return TextFieldModule;
12624
12689
  }());
12625
12690
 
12626
- var EditorFieldModule = /** @class */ (function () {
12627
- function EditorFieldModule() {
12691
+ var CodeEditorFieldModule = /** @class */ (function () {
12692
+ function CodeEditorFieldModule() {
12628
12693
  }
12629
- EditorFieldModule = __decorate([
12694
+ CodeEditorFieldModule = __decorate([
12630
12695
  NgModule({
12631
- imports: [CommonModule, FormsModule, ReactiveFormsModule, EditorModule, FieldLabelModule],
12632
- declarations: [EditorFieldComponent],
12633
- exports: [EditorFieldComponent],
12696
+ imports: [CommonModule, FieldLabelModule, CodeEditorModule, FormsModule, ReactiveFormsModule],
12697
+ declarations: [CodeEditorFieldComponent],
12698
+ exports: [CodeEditorFieldComponent],
12634
12699
  })
12635
- ], EditorFieldModule);
12636
- return EditorFieldModule;
12700
+ ], CodeEditorFieldModule);
12701
+ return CodeEditorFieldModule;
12637
12702
  }());
12638
12703
 
12639
12704
  var DynamicFormModule = /** @class */ (function () {
@@ -12685,6 +12750,7 @@ var DynamicFormModule = /** @class */ (function () {
12685
12750
  PasswordStrengthModule,
12686
12751
  SliderModule,
12687
12752
  TranslateModule.forChild(),
12753
+ CodeEditorFieldModule,
12688
12754
  PasswordFieldModule,
12689
12755
  TextFieldModule,
12690
12756
  NumberFieldModule,
@@ -12693,7 +12759,7 @@ var DynamicFormModule = /** @class */ (function () {
12693
12759
  CheckboxFieldModule,
12694
12760
  ProfilePictureModule,
12695
12761
  EditorFieldModule,
12696
- FieldLabelModule
12762
+ FieldLabelModule,
12697
12763
  ],
12698
12764
  declarations: [
12699
12765
  AutocompleteFieldComponent,
@@ -12718,24 +12784,6 @@ var DynamicFormModule = /** @class */ (function () {
12718
12784
  TextAreaIAFieldComponent,
12719
12785
  ],
12720
12786
  exports: [DynamicFormComponent, LookupComponent],
12721
- entryComponents: [
12722
- AutocompleteFieldComponent,
12723
- BooleanFieldComponent,
12724
- BooleanSwitchFieldComponent,
12725
- CalendarFieldComponent,
12726
- ChipsFieldComponent,
12727
- CountryPhonePickerFieldComponent,
12728
- FieldsetComponent,
12729
- FileUploadComponent$1,
12730
- LookupFieldComponent,
12731
- RadioButtonComponent,
12732
- RowComponent,
12733
- SectionComponent,
12734
- SelectFieldComponent,
12735
- SliderFieldComponent,
12736
- TextAreaFieldComponent,
12737
- TextAreaIAFieldComponent,
12738
- ],
12739
12787
  providers: [
12740
12788
  HotkeysService,
12741
12789
  IAssistService,
@@ -19765,5 +19813,5 @@ var fallback = {
19765
19813
  * Generated bundle index. Do not edit.
19766
19814
  */
19767
19815
 
19768
- export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, CheckboxComponent, CheckboxModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, LocalizedNumberInputModule as ɵbj, NumberInputModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberInputModule as ɵbp, BignumberFieldComponent as ɵbq, CheckboxFieldModule as ɵbr, CheckboxFieldComponent as ɵbs, ProfilePictureModule as ɵbt, ThumbnailService as ɵbu, StructureModule as ɵbv, HeaderComponent as ɵbw, FooterComponent as ɵbx, ProfilePictureFieldComponent as ɵby, EditorFieldModule as ɵbz, TieredMenuEventService as ɵc, EditorFieldComponent as ɵca, AutocompleteFieldComponent as ɵcb, BooleanFieldComponent as ɵcc, BooleanSwitchFieldComponent as ɵcd, CalendarFieldComponent as ɵce, ChipsFieldComponent as ɵcf, CountryPhonePickerFieldComponent as ɵcg, DynamicFieldComponent as ɵch, DynamicFormDirective as ɵci, FieldsetComponent as ɵcj, FileUploadComponent$1 as ɵck, LookupFieldComponent as ɵcl, RadioButtonComponent as ɵcm, RowComponent as ɵcn, SectionComponent as ɵco, SelectFieldComponent as ɵcp, SliderFieldComponent as ɵcq, TextAreaFieldComponent as ɵcr, TextAreaIAFieldComponent as ɵcs, IAssistService as ɵct, DecimalField as ɵcv, SideTableComponent as ɵcw, InfiniteScrollModule as ɵcx, InfiniteScrollDirective as ɵcy, IAInsightSidebarComponent as ɵcz, TieredMenuService as ɵd, IAInsightCardComponent as ɵda, IAInsightCardLoaderComponent as ɵdb, InlineEditItemComponent as ɵdc, LocaleService as ɵdd, InlineEditCalendarComponent as ɵde, InlineEditLookupComponent as ɵdf, InlineEditNumberComponent as ɵdg, InlineEditTextComponent as ɵdh, InlineEditTextAreaComponent as ɵdi, InlineEditTextAreaIAComponent as ɵdj, KanbanEventService as ɵdk, KanbanItemComponent as ɵdl, KanbanColumnComponent as ɵdm, KanbanItemDraggingComponent as ɵdn, NumberLocaleOptions as ɵdo, BorderButtonModule as ɵdp, BorderButtonComponent as ɵdq, ProgressBarDeterminateComponent as ɵdr, ProgressBarIndeterminateComponent as ɵds, SelectButtonItemComponent as ɵdt, SlidePanelService as ɵdu, TimelineItemModule as ɵdv, TimelineIconItemComponent as ɵdw, HorizontalTimelineModule as ɵdx, HorizontalTimelineComponent as ɵdy, VerticalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineComponent as ɵea, RangeLineComponent as ɵeb, CollapseOptionComponent as ɵec, CollapsedItemsComponent as ɵed, VerticalItemsComponent as ɵee, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
19816
+ export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, CheckboxComponent, CheckboxModule, ChipsField, CodeEditorField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, CodeEditorFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, CodeEditorFieldComponent as ɵbf, PasswordFieldModule as ɵbg, PasswordFieldComponent as ɵbh, TextFieldModule as ɵbi, TextFieldComponent as ɵbj, NumberFieldModule as ɵbk, LocalizedNumberInputModule as ɵbl, NumberInputModule as ɵbm, NumberFieldComponent as ɵbn, CurrencyFieldModule as ɵbo, CurrencyFieldComponent as ɵbp, BignumberFieldModule as ɵbq, BignumberInputModule as ɵbr, BignumberFieldComponent as ɵbs, CheckboxFieldModule as ɵbt, CheckboxFieldComponent as ɵbu, ProfilePictureModule as ɵbv, ThumbnailService as ɵbw, StructureModule as ɵbx, HeaderComponent as ɵby, FooterComponent as ɵbz, TieredMenuEventService as ɵc, ProfilePictureFieldComponent as ɵca, EditorFieldModule as ɵcb, EditorFieldComponent as ɵcc, AutocompleteFieldComponent as ɵcd, BooleanFieldComponent as ɵce, BooleanSwitchFieldComponent as ɵcf, CalendarFieldComponent as ɵcg, ChipsFieldComponent as ɵch, CountryPhonePickerFieldComponent as ɵci, DynamicFieldComponent as ɵcj, DynamicFormDirective as ɵck, FieldsetComponent as ɵcl, FileUploadComponent$1 as ɵcm, LookupFieldComponent as ɵcn, RadioButtonComponent as ɵco, RowComponent as ɵcp, SectionComponent as ɵcq, SelectFieldComponent as ɵcr, SliderFieldComponent as ɵcs, TextAreaFieldComponent as ɵct, TextAreaIAFieldComponent as ɵcu, IAssistService as ɵcv, DecimalField as ɵcx, SideTableComponent as ɵcy, InfiniteScrollModule as ɵcz, TieredMenuService as ɵd, InfiniteScrollDirective as ɵda, IAInsightSidebarComponent as ɵdb, IAInsightCardComponent as ɵdc, IAInsightCardLoaderComponent as ɵdd, InlineEditItemComponent as ɵde, LocaleService as ɵdf, InlineEditCalendarComponent as ɵdg, InlineEditLookupComponent as ɵdh, InlineEditNumberComponent as ɵdi, InlineEditTextComponent as ɵdj, InlineEditTextAreaComponent as ɵdk, InlineEditTextAreaIAComponent as ɵdl, KanbanEventService as ɵdm, KanbanItemComponent as ɵdn, KanbanColumnComponent as ɵdo, KanbanItemDraggingComponent as ɵdp, NumberLocaleOptions as ɵdq, BorderButtonModule as ɵdr, BorderButtonComponent as ɵds, ProgressBarDeterminateComponent as ɵdt, ProgressBarIndeterminateComponent as ɵdu, SelectButtonItemComponent as ɵdv, SlidePanelService as ɵdw, TimelineItemModule as ɵdx, TimelineIconItemComponent as ɵdy, HorizontalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, HorizontalTimelineComponent as ɵea, VerticalTimelineModule as ɵeb, VerticalTimelineComponent as ɵec, RangeLineComponent as ɵed, CollapseOptionComponent as ɵee, CollapsedItemsComponent as ɵef, VerticalItemsComponent as ɵeg, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
19769
19817
  //# sourceMappingURL=seniorsistemas-angular-components.js.map