@seniorsistemas/angular-components 17.9.7 → 17.10.0

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 (92) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +822 -30
  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/button/button.component.d.ts +1 -0
  6. package/components/dynamic-form/services/IAssist/models/index.d.ts +2 -0
  7. package/components/index.d.ts +2 -0
  8. package/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.d.ts +17 -0
  9. package/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.d.ts +10 -0
  10. package/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.d.ts +18 -0
  11. package/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.d.ts +9 -0
  12. package/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.d.ts +10 -0
  13. package/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.d.ts +9 -0
  14. package/components/inline-edit/components/index.d.ts +7 -0
  15. package/components/inline-edit/components/inline-edit-item/inline-edit-item.component.d.ts +27 -0
  16. package/components/inline-edit/fields/index.d.ts +7 -0
  17. package/components/inline-edit/fields/inline-edit-calendar-field.d.ts +44 -0
  18. package/components/inline-edit/fields/inline-edit-field.d.ts +13 -0
  19. package/components/inline-edit/fields/inline-edit-lookup-field.d.ts +79 -0
  20. package/components/inline-edit/fields/inline-edit-number-field.d.ts +38 -0
  21. package/components/inline-edit/fields/inline-edit-text-area-field.d.ts +14 -0
  22. package/components/inline-edit/fields/inline-edit-text-area-ia-field.d.ts +6 -0
  23. package/components/inline-edit/fields/inline-edit-text-field.d.ts +6 -0
  24. package/components/inline-edit/index.d.ts +3 -0
  25. package/components/inline-edit/inline-edit.component.d.ts +14 -0
  26. package/components/inline-edit/inline-edit.module.d.ts +2 -0
  27. package/components/text-area-ia/index.d.ts +2 -0
  28. package/components/text-area-ia/text-area-ia.component.d.ts +39 -0
  29. package/components/text-area-ia/text-area-ia.module.d.ts +2 -0
  30. package/esm2015/components/button/button.component.js +5 -2
  31. package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +1 -1
  32. package/esm2015/components/dynamic-form/services/IAssist/models/index.js +1 -0
  33. package/esm2015/components/index.js +3 -1
  34. package/esm2015/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +51 -0
  35. package/esm2015/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +30 -0
  36. package/esm2015/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +75 -0
  37. package/esm2015/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +30 -0
  38. package/esm2015/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +30 -0
  39. package/esm2015/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +30 -0
  40. package/esm2015/components/inline-edit/components/index.js +8 -0
  41. package/esm2015/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +98 -0
  42. package/esm2015/components/inline-edit/fields/index.js +8 -0
  43. package/esm2015/components/inline-edit/fields/inline-edit-calendar-field.js +26 -0
  44. package/esm2015/components/inline-edit/fields/inline-edit-field.js +9 -0
  45. package/esm2015/components/inline-edit/fields/inline-edit-lookup-field.js +32 -0
  46. package/esm2015/components/inline-edit/fields/inline-edit-number-field.js +24 -0
  47. package/esm2015/components/inline-edit/fields/inline-edit-text-area-field.js +11 -0
  48. package/esm2015/components/inline-edit/fields/inline-edit-text-area-ia-field.js +7 -0
  49. package/esm2015/components/inline-edit/fields/inline-edit-text-field.js +7 -0
  50. package/esm2015/components/inline-edit/index.js +4 -0
  51. package/esm2015/components/inline-edit/inline-edit.component.js +70 -0
  52. package/esm2015/components/inline-edit/inline-edit.module.js +62 -0
  53. package/esm2015/components/text-area-ia/index.js +3 -0
  54. package/esm2015/components/text-area-ia/text-area-ia.component.js +128 -0
  55. package/esm2015/components/text-area-ia/text-area-ia.module.js +32 -0
  56. package/esm2015/locale/fallback.js +3 -1
  57. package/esm2015/seniorsistemas-angular-components.js +37 -29
  58. package/esm5/components/button/button.component.js +5 -2
  59. package/esm5/components/dynamic-form/components/lookup/lookup.component.js +1 -1
  60. package/esm5/components/dynamic-form/services/IAssist/models/index.js +1 -0
  61. package/esm5/components/index.js +3 -1
  62. package/esm5/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +53 -0
  63. package/esm5/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +33 -0
  64. package/esm5/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +99 -0
  65. package/esm5/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +33 -0
  66. package/esm5/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +33 -0
  67. package/esm5/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +33 -0
  68. package/esm5/components/inline-edit/components/index.js +8 -0
  69. package/esm5/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +112 -0
  70. package/esm5/components/inline-edit/fields/index.js +8 -0
  71. package/esm5/components/inline-edit/fields/inline-edit-calendar-field.js +31 -0
  72. package/esm5/components/inline-edit/fields/inline-edit-field.js +11 -0
  73. package/esm5/components/inline-edit/fields/inline-edit-lookup-field.js +50 -0
  74. package/esm5/components/inline-edit/fields/inline-edit-number-field.js +29 -0
  75. package/esm5/components/inline-edit/fields/inline-edit-text-area-field.js +16 -0
  76. package/esm5/components/inline-edit/fields/inline-edit-text-area-ia-field.js +11 -0
  77. package/esm5/components/inline-edit/fields/inline-edit-text-field.js +11 -0
  78. package/esm5/components/inline-edit/index.js +4 -0
  79. package/esm5/components/inline-edit/inline-edit.component.js +84 -0
  80. package/esm5/components/inline-edit/inline-edit.module.js +65 -0
  81. package/esm5/components/text-area-ia/index.js +3 -0
  82. package/esm5/components/text-area-ia/text-area-ia.component.js +131 -0
  83. package/esm5/components/text-area-ia/text-area-ia.module.js +35 -0
  84. package/esm5/locale/fallback.js +3 -1
  85. package/esm5/seniorsistemas-angular-components.js +37 -29
  86. package/fesm2015/seniorsistemas-angular-components.js +671 -3
  87. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  88. package/fesm5/seniorsistemas-angular-components.js +776 -3
  89. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  90. package/package.json +1 -1
  91. package/seniorsistemas-angular-components.d.ts +36 -28
  92. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1549,6 +1549,9 @@ var ButtonComponent = /** @class */ (function () {
1549
1549
  __decorate([
1550
1550
  Input()
1551
1551
  ], ButtonComponent.prototype, "badge", void 0);
1552
+ __decorate([
1553
+ Input()
1554
+ ], ButtonComponent.prototype, "iconColor", void 0);
1552
1555
  __decorate([
1553
1556
  Output()
1554
1557
  ], ButtonComponent.prototype, "onClick", void 0);
@@ -1558,7 +1561,7 @@ var ButtonComponent = /** @class */ (function () {
1558
1561
  ButtonComponent = ButtonComponent_1 = __decorate([
1559
1562
  Component({
1560
1563
  selector: "s-button",
1561
- template: "<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n [disabled]=\"disabled\"\n [pTooltip]=\"tooltip\"\n [tooltipPosition]=\"tooltipPosition\"\n showDelay=\"500\"\n [tooltipZIndex]=\"tooltipZIndex\"\n (click)=\"onClick.emit($event)\"\n (mouseenter)=\"updateTooltipZIndex()\">\n <div *ngIf=\"badge\" class=\"badge\">\n <s-badge\n [color]=\"badge.color\"\n [text]=\"badge.text\"\n [iconClass]=\"badge.iconClass\">\n </s-badge>\n </div>\n <span \n *ngIf=\"iconClass\" \n [class]=\"iconClass\" \n [ngClass]=\"{ \n 's-button-icon': true,\n 's-button-icon-margin-right': !label && model && model.length\n }\" \n aria-hidden=\"true\">\n </span>\n <span \n *ngIf=\"label\" \n class=\"s-button-text\"\n [ngClass]=\"{\n 's-button-icon-margin-right': !!rightIconClass || (model && model.length),\n 's-button-icon-margin-left': !!iconClass\n }\">\n {{ label }}\n </span>\n <ng-content></ng-content>\n <span \n *ngIf=\"rightIconClass\" \n [class]=\"rightIconClass\" \n [ngClass]=\"{ 's-button-right-icon': true }\" \n aria-hidden=\"true\">\n </span>\n <span\n *ngIf=\"caret && (model && model.length)\" \n class=\"fa fa-fw fa-caret-down\"\n aria-hidden=\"true\">\n </span>\n</button>\n",
1564
+ template: "<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n [disabled]=\"disabled\"\n [pTooltip]=\"tooltip\"\n [tooltipPosition]=\"tooltipPosition\"\n showDelay=\"500\"\n [tooltipZIndex]=\"tooltipZIndex\"\n (click)=\"onClick.emit($event)\"\n (mouseenter)=\"updateTooltipZIndex()\">\n <div *ngIf=\"badge\" class=\"badge\">\n <s-badge\n [color]=\"badge.color\"\n [text]=\"badge.text\"\n [iconClass]=\"badge.iconClass\">\n </s-badge>\n </div>\n <span \n *ngIf=\"iconClass\" \n [class]=\"iconClass\" \n [ngClass]=\"{ \n 's-button-icon': true,\n 's-button-icon-margin-right': !label && model && model.length\n }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span \n *ngIf=\"label\" \n class=\"s-button-text\"\n [ngClass]=\"{\n 's-button-icon-margin-right': !!rightIconClass || (model && model.length),\n 's-button-icon-margin-left': !!iconClass\n }\">\n {{ label }}\n </span>\n <ng-content></ng-content>\n <span \n *ngIf=\"rightIconClass\" \n [class]=\"rightIconClass\" \n [ngClass]=\"{ 's-button-right-icon': true }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span\n *ngIf=\"caret && (model && model.length)\" \n class=\"fa fa-fw fa-caret-down\"\n aria-hidden=\"true\">\n </span>\n</button>\n",
1562
1565
  styles: ["button{-ms-flex-align:center;align-items:center;border:1px solid;border-radius:4px;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:34px;-ms-flex-pack:center;justify-content:center;max-width:100%;min-width:40px;outline:0;overflow:visible;padding:5px 10px;position:relative;text-decoration:none;text-transform:none;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out;vertical-align:bottom}button:disabled{opacity:.5;filter:Alpha(Opacity=50);background-image:none}button:disabled,button:disabled *{cursor:text!important}button.s-button-auxiliary{border-radius:20px}button.s-button-size-small{height:25px;padding:0 20px}button.s-button-with-icon.s-button-multiple,button.s-button-with-text{min-width:80px}button.s-button-with-icon.s-button-with-text.s-button-multiple{min-width:100px}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button.s-button-with-icon.s-button-multiple:not(.s-button-with-text) .s-button-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}button.s-button-multiple .s-button-text{-ms-flex-align:left;align-items:left;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left}button.s-button-with-icon .s-button-text{-ms-flex-align:right;align-items:right;display:-ms-flexbox;display:flex;-ms-flex-pack:right;justify-content:right}.s-button-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.s-button-menu-icon{right:10px;transition:transform .2s ease-out}.s-button-icon-margin-left{margin-left:10px}.s-button-icon-margin-right{margin-right:10px}.s-button-active .s-button-menu-icon{transform:rotateX(180deg)}button,button.s-button-priority-primary{background-color:#428bca;border-color:#428bca}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button .s-button-text,button.s-button-priority-primary .s-button-icon,button.s-button-priority-primary .s-button-menu-icon,button.s-button-priority-primary .s-button-right-icon,button.s-button-priority-primary .s-button-text{color:#fff}button.s-button-priority-primary:hover,button:hover{background-color:#2a6496}button.s-button-priority-primary:focus,button:focus{background-color:#2a6496;border-color:#22dce6}button.s-button-active:not(:disabled),button.s-button-priority-primary.s-button-active:not(:disabled),button.s-button-priority-primary:active:not(:disabled),button:active:not(:disabled){background-color:#245682;border-color:#245682}button.s-button-priority-secondary{background-color:#7892a1;border-color:#7892a1}button.s-button-priority-secondary .s-button-icon,button.s-button-priority-secondary .s-button-menu-icon,button.s-button-priority-secondary .s-button-right-icon,button.s-button-priority-secondary .s-button-text{color:#fff}button.s-button-priority-secondary:hover{background-color:#546b79}button.s-button-priority-secondary:focus{background-color:#546b79;border-color:#22dce6}button.s-button-priority-secondary.s-button-active:not(:disabled),button.s-button-priority-secondary:active:not(:disabled){background-color:#495e6a;border-color:#495e6a}button.s-button-priority-default{background-color:#fff;border-color:#ccc}button.s-button-priority-default .s-button-icon,button.s-button-priority-default .s-button-menu-icon,button.s-button-priority-default .s-button-right-icon,button.s-button-priority-default .s-button-text{color:#333}button.s-button-priority-default:hover{background-color:#d9d9d9}button.s-button-priority-default:focus{background-color:#d9d9d9;border-color:#22dce6}button.s-button-priority-default.s-button-active:not(:disabled),button.s-button-priority-default:active:not(:disabled){background-color:#ccc;border-color:#ccc}.s-button-priority-danger{background-color:#9c3a3a;border-color:#9c3a3a}.s-button-priority-danger .s-button-icon,.s-button-priority-danger .s-button-menu-icon,.s-button-priority-danger .s-button-right-icon,.s-button-priority-danger .s-button-text{color:#fff}.s-button-priority-danger:hover{background-color:#642525}.s-button-priority-danger:focus{background-color:#642525;border-color:#22dce6}.s-button-priority-danger.s-button-active:not(:disabled),.s-button-priority-danger:active:not(:disabled){background-color:#521e1e;border-color:#521e1e}button.s-button-priority-link{background-color:transparent;border-color:transparent}button.s-button-priority-link .s-button-icon,button.s-button-priority-link .s-button-menu-icon,button.s-button-priority-link .s-button-right-icon,button.s-button-priority-link .s-button-text{color:#428bca}button.s-button-priority-link:hover{background-color:transparent}button.s-button-priority-link:hover .s-button-icon,button.s-button-priority-link:hover .s-button-menu-icon,button.s-button-priority-link:hover .s-button-right-icon,button.s-button-priority-link:hover .s-button-text{color:#2a6496}button.s-button-priority-link:focus{border-color:#22dce6;background-color:transparent}button.s-button-priority-link:focus .s-button-icon,button.s-button-priority-link:focus .s-button-menu-icon,button.s-button-priority-link:focus .s-button-right-icon,button.s-button-priority-link:focus .s-button-text{color:#2a6496}button.s-button-priority-link.s-button-active:not(:disabled),button.s-button-priority-link:active:not(:disabled){background-color:transparent;border-color:transparent}button.s-button-priority-link.s-button-active:not(:disabled) .s-button-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-right-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-text,button.s-button-priority-link:active:not(:disabled) .s-button-icon,button.s-button-priority-link:active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link:active:not(:disabled) .s-button-right-icon,button.s-button-priority-link:active:not(:disabled) .s-button-text{color:#245682}.s-button--slide.s-button-with-icon.s-button-multiple,.s-button--slide.s-button-with-text{min-width:40px}.s-button--slide .s-button-text{position:absolute;opacity:0;width:0}.s-button--slide:hover .s-button-text{opacity:1;position:relative;transition:1s;width:auto}.s-button--slide:hover.s-button--rotate-animation .s-button-icon,.s-button--slide:hover.s-button--rotate-animation .s-button-right-icon{transform:rotate(360deg);transition:1.5s}.badge{position:absolute;top:-10px;right:-10px;z-index:99}"]
1563
1566
  })
1564
1567
  ], ButtonComponent);
@@ -5771,7 +5774,7 @@ var LookupComponent = /** @class */ (function () {
5771
5774
  transition("* <=> *", animate("{{transitionParams}}")),
5772
5775
  ]),
5773
5776
  ],
5774
- styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .ui-inputtext{border-top-right-radius:0;border-bottom-right-radius:0}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:34px;height:auto!important;min-width:auto;width:34px!important;overflow:hidden;border-top-left-radius:0;border-bottom-left-radius:0}.ui-fluid s-lookup .inputgroup,s-lookup p-autocomplete span.ui-autocomplete-multiple{display:-ms-flexbox;display:flex}.ui-fluid s-lookup .inputgroup p-autocomplete{display:inline-block}.ui-fluid s-lookup .inputgroup p-autocomplete,.ui-fluid s-lookup p-autocomplete .ui-autocomplete-input{width:calc(100% - 34px)}.ui-fluid s-lookup .inputgroup p-autocomplete .ui-autocomplete-input{width:100%}s-lookup .inputgroup p-autocomplete+button:enabled:hover,s-lookup .inputgroup p-autocomplete+button:focus{background-color:#e6e6e6;border-color:#ccc}s-lookup .inputgroup p-autocomplete .ui-widget .ui-inputtext{border-right-width:1px;border-right-style:solid}s-lookup .ui-autocomplete-input-token,s-lookup .ui-autocomplete-input-token input{width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token{max-width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body .s-lookup-modal.ui-dialog .ui-dialog-content{padding:0;margin-bottom:0;max-height:none}s-lookup .ui-table-scrollable-body{min-width:100%}.s-lookup-modal{height:80%!important;max-width:100%!important;max-height:inherit!important;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .ui-dialog-content{height:auto!important;-ms-flex:1;flex:1;overflow:auto}.s-lookup-modal .ui-dialog-footer,.s-lookup-modal .ui-dialog-header{-ms-flex-negative:0;flex-shrink:0;border-radius:0 0 4px 4px}.s-lookup-modal .s-lookup-modal-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;height:100%;width:100%}.s-lookup-modal .s-lookup-modal-container .filter{position:relative;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:85%;background-color:rgba(229,234,234,.5);height:100%;padding:.571rem}.s-lookup-modal .s-lookup-modal-container .filter form{width:100%;height:100%}.s-lookup-modal .s-lookup-modal-container .filter form .form-content{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .filter-title{padding-left:.5rem}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .form-fields{overflow-y:auto}.s-lookup-modal .s-lookup-modal-container .filter-toggle{-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:34px;border-radius:0 4px 4px 0}.s-lookup-modal .s-lookup-modal-container .filter-toggle button{-ms-flex-align:center;align-items:center;position:relative;background-color:rgba(229,234,234,.5);height:34px;width:100%;border:1px solid #e5eaea;outline:0;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;text-decoration:none;text-transform:none;padding:7px;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out}.s-lookup-modal .s-lookup-modal-container .filter-toggle button:focus,.s-lookup-modal .s-lookup-modal-container .filter-toggle button:hover{background-color:rgba(201,211,211,.5);border-color:#c9d3d3}.s-lookup-modal .s-lookup-modal-container .filter-toggle--start-border-mask{height:15px;border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .filter-toggle--end-border-mask{height:calc(100% - 49px);border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .content{-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:auto;flex-basis:auto;overflow-x:auto;padding:.5rem}.s-lookup-modal .s-lookup-modal-container .content.empty-content{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container,.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container .contents{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table{position:relative;height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper{height:calc(100% - 60px)}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view .ui-table-scrollable-body{position:relative;height:calc(100% - 60px)}@media (max-width:767px){.s-lookup-modal{border:none!important;top:0!important;left:0!important;width:100%!important;height:100%!important}}@media (min-width:768px){.s-lookup-modal{width:80%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:40%}}@media (min-width:1200px){.s-lookup-modal{width:60%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:30%}}"]
5777
+ styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .ui-inputtext{border-top-right-radius:0;border-bottom-right-radius:0}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:34px;height:auto!important;min-width:auto;width:34px!important;overflow:hidden;border-top-left-radius:0;border-bottom-left-radius:0}s-lookup .inputgroup,s-lookup p-autocomplete span.ui-autocomplete-multiple{display:-ms-flexbox;display:flex}s-lookup .inputgroup p-autocomplete{display:inline-block}s-lookup .inputgroup p-autocomplete,s-lookup p-autocomplete .ui-autocomplete-input{width:calc(100% - 34px)}s-lookup .inputgroup p-autocomplete .ui-autocomplete-input{width:100%}s-lookup .inputgroup p-autocomplete+button:enabled:hover,s-lookup .inputgroup p-autocomplete+button:focus{background-color:#e6e6e6;border-color:#ccc}s-lookup .inputgroup p-autocomplete .ui-widget .ui-inputtext{border-right-width:1px;border-right-style:solid}s-lookup .ui-autocomplete-input-token,s-lookup .ui-autocomplete-input-token input{width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token{max-width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body .s-lookup-modal.ui-dialog .ui-dialog-content{padding:0;margin-bottom:0;max-height:none}s-lookup .ui-table-scrollable-body{min-width:100%}.s-lookup-modal{height:80%!important;max-width:100%!important;max-height:inherit!important;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .ui-dialog-content{height:auto!important;-ms-flex:1;flex:1;overflow:auto}.s-lookup-modal .ui-dialog-footer,.s-lookup-modal .ui-dialog-header{-ms-flex-negative:0;flex-shrink:0;border-radius:0 0 4px 4px}.s-lookup-modal .s-lookup-modal-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;height:100%;width:100%}.s-lookup-modal .s-lookup-modal-container .filter{position:relative;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:85%;background-color:rgba(229,234,234,.5);height:100%;padding:.571rem}.s-lookup-modal .s-lookup-modal-container .filter form{width:100%;height:100%}.s-lookup-modal .s-lookup-modal-container .filter form .form-content{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .filter-title{padding-left:.5rem}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .form-fields{overflow-y:auto}.s-lookup-modal .s-lookup-modal-container .filter-toggle{-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;width:34px;border-radius:0 4px 4px 0}.s-lookup-modal .s-lookup-modal-container .filter-toggle button{-ms-flex-align:center;align-items:center;position:relative;background-color:rgba(229,234,234,.5);height:34px;width:100%;border:1px solid #e5eaea;outline:0;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;text-decoration:none;text-transform:none;padding:7px;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out}.s-lookup-modal .s-lookup-modal-container .filter-toggle button:focus,.s-lookup-modal .s-lookup-modal-container .filter-toggle button:hover{background-color:rgba(201,211,211,.5);border-color:#c9d3d3}.s-lookup-modal .s-lookup-modal-container .filter-toggle--start-border-mask{height:15px;border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .filter-toggle--end-border-mask{height:calc(100% - 49px);border-left:1px solid #e5eaea}.s-lookup-modal .s-lookup-modal-container .content{-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:auto;flex-basis:auto;overflow-x:auto;padding:.5rem}.s-lookup-modal .s-lookup-modal-container .content.empty-content{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container,.s-lookup-modal .s-lookup-modal-container .content .s-loading-state-container .contents{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table{position:relative;height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper{height:calc(100% - 60px)}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view{height:100%}.s-lookup-modal .s-lookup-modal-container .content p-table .ui-table .ui-table-scrollable-wrapper .ui-table-scrollable-view .ui-table-scrollable-body{position:relative;height:calc(100% - 60px)}@media (max-width:767px){.s-lookup-modal{border:none!important;top:0!important;left:0!important;width:100%!important;height:100%!important}}@media (min-width:768px){.s-lookup-modal{width:80%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:40%}}@media (min-width:1200px){.s-lookup-modal{width:60%!important}.s-lookup-modal .s-lookup-modal-container .filter{width:30%}}"]
5775
5778
  })
5776
5779
  ], LookupComponent);
5777
5780
  return LookupComponent;
@@ -14848,6 +14851,774 @@ var IAInsightModule = /** @class */ (function () {
14848
14851
  return IAInsightModule;
14849
14852
  }());
14850
14853
 
14854
+ var InlineEditField = /** @class */ (function () {
14855
+ function InlineEditField(options) {
14856
+ this.label = options.label;
14857
+ this.name = options.name;
14858
+ this.tooltip = options.tooltip;
14859
+ this.errorMessages = options.errorMessages;
14860
+ }
14861
+ return InlineEditField;
14862
+ }());
14863
+
14864
+ var InlineEditCalendarField = /** @class */ (function (_super) {
14865
+ __extends(InlineEditCalendarField, _super);
14866
+ function InlineEditCalendarField(options) {
14867
+ var _this = _super.call(this, options) || this;
14868
+ _this.view = options.view || "date";
14869
+ _this.minDate = options.minDate;
14870
+ _this.maxDate = options.maxDate;
14871
+ _this.defaultDate = options.defaultDate;
14872
+ _this.appendTo = options.appendTo;
14873
+ _this.showOnFocus = typeof options.showOnFocus === "boolean" ? options.showOnFocus : true;
14874
+ _this.onBlur = options.onBlur;
14875
+ _this.onFocus = options.onFocus;
14876
+ _this.onSelect = options.onSelect;
14877
+ _this.onInput = options.onInput;
14878
+ _this.onClose = options.onClose;
14879
+ _this.onTodayClick = options.onTodayClick;
14880
+ _this.onClearClick = options.onClearClick;
14881
+ _this.onMonthChange = options.onMonthChange;
14882
+ _this.onYearChange = options.onYearChange;
14883
+ _this.selectionMode = options.selectionMode || "single";
14884
+ _this.rangeSeparator = options.rangeSeparator || "-";
14885
+ _this.showSeconds = options.showSeconds;
14886
+ _this.placeholder = options.placeholder;
14887
+ return _this;
14888
+ }
14889
+ return InlineEditCalendarField;
14890
+ }(InlineEditField));
14891
+
14892
+ var InlineEditLookupField = /** @class */ (function (_super) {
14893
+ __extends(InlineEditLookupField, _super);
14894
+ function InlineEditLookupField(options) {
14895
+ var _this = _super.call(this, options) || this;
14896
+ _this.multiple = false;
14897
+ _this.showSearch = true;
14898
+ _this.autocompleteForceSelection = true;
14899
+ _this.showAddOption = false;
14900
+ _this.showEditOption = false;
14901
+ _this.showRemoveOption = false;
14902
+ _this.onSelect = function (event) { };
14903
+ _this.onUnselect = function (event) { };
14904
+ Object.assign(_this, options);
14905
+ _this.suggestionsObservable.subscribe(function (suggestions) { return (_this.lookupSuggestions = suggestions); });
14906
+ _this.searchObservable.pipe(delay(0)).subscribe(function (_a) {
14907
+ var totalRecords = _a.totalRecords, gridData = _a.gridData, searchTotalRecordsLabel = _a.searchTotalRecordsLabel;
14908
+ _this._gridData = gridData;
14909
+ _this._searchTotalRecords = totalRecords;
14910
+ _this._searchTotalRecordsLabel = searchTotalRecordsLabel;
14911
+ });
14912
+ return _this;
14913
+ }
14914
+ Object.defineProperty(InlineEditLookupField.prototype, "gridData", {
14915
+ get: function () {
14916
+ return this._gridData;
14917
+ },
14918
+ enumerable: true,
14919
+ configurable: true
14920
+ });
14921
+ Object.defineProperty(InlineEditLookupField.prototype, "searchTotalRecords", {
14922
+ get: function () {
14923
+ return this._searchTotalRecords;
14924
+ },
14925
+ enumerable: true,
14926
+ configurable: true
14927
+ });
14928
+ Object.defineProperty(InlineEditLookupField.prototype, "searchTotalRecordsLabel", {
14929
+ get: function () {
14930
+ return this._searchTotalRecordsLabel;
14931
+ },
14932
+ enumerable: true,
14933
+ configurable: true
14934
+ });
14935
+ return InlineEditLookupField;
14936
+ }(InlineEditField));
14937
+
14938
+ var InlineEditNumberField = /** @class */ (function (_super) {
14939
+ __extends(InlineEditNumberField, _super);
14940
+ function InlineEditNumberField(options) {
14941
+ var _a, _b, _c, _d;
14942
+ var _this = _super.call(this, options) || this;
14943
+ _this.allowNegative = (_a = options.allowNegative) !== null && _a !== void 0 ? _a : true;
14944
+ _this.numberLocaleOptions = options.numberLocaleOptions;
14945
+ _this.browserAutocomplete = options.browserAutocomplete;
14946
+ _this.precision = options.precision;
14947
+ _this.scale = (_b = options.scale) !== null && _b !== void 0 ? _b : 2;
14948
+ _this.alignTo = _this.scale ? AlignmentOptions.RIGHT : AlignmentOptions.LEFT;
14949
+ _this.mask = options.mask;
14950
+ _this.leftAddon = options.leftAddon;
14951
+ _this.rightAddon = options.rightAddon;
14952
+ _this.onBlur = options.onBlur;
14953
+ _this.onFocus = options.onFocus;
14954
+ _this.onComplete = options.onComplete;
14955
+ _this.onInput = options.onInput;
14956
+ _this.autoClear = (_c = options.autoClear) !== null && _c !== void 0 ? _c : true;
14957
+ _this.placeholder = (_d = options.placeholder) !== null && _d !== void 0 ? _d : "";
14958
+ return _this;
14959
+ }
14960
+ return InlineEditNumberField;
14961
+ }(InlineEditField));
14962
+
14963
+ var InlineEditTextAreaField = /** @class */ (function (_super) {
14964
+ __extends(InlineEditTextAreaField, _super);
14965
+ function InlineEditTextAreaField(options) {
14966
+ var _this = _super.call(this, options) || this;
14967
+ _this.cols = options.cols;
14968
+ _this.rows = options.rows;
14969
+ _this.keyFilter = options.keyFilter;
14970
+ _this.readonly = options.readonly;
14971
+ return _this;
14972
+ }
14973
+ return InlineEditTextAreaField;
14974
+ }(InlineEditField));
14975
+
14976
+ var InlineEditTextField = /** @class */ (function (_super) {
14977
+ __extends(InlineEditTextField, _super);
14978
+ function InlineEditTextField(options) {
14979
+ return _super.call(this, options) || this;
14980
+ }
14981
+ return InlineEditTextField;
14982
+ }(InlineEditField));
14983
+
14984
+ var InlineEditTextAreaIAField = /** @class */ (function (_super) {
14985
+ __extends(InlineEditTextAreaIAField, _super);
14986
+ function InlineEditTextAreaIAField(options) {
14987
+ return _super.call(this, options) || this;
14988
+ }
14989
+ return InlineEditTextAreaIAField;
14990
+ }(InlineEditField));
14991
+
14992
+ var InlineEditItemComponent = /** @class */ (function () {
14993
+ function InlineEditItemComponent(localeService) {
14994
+ this.localeService = localeService;
14995
+ this.isEditing = false;
14996
+ }
14997
+ InlineEditItemComponent.prototype.ngOnInit = function () {
14998
+ this._getCalendarLocaleOptions();
14999
+ };
15000
+ Object.defineProperty(InlineEditItemComponent.prototype, "showEmptyValueButton", {
15001
+ get: function () {
15002
+ var _a;
15003
+ return !this.isEditing && !((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value);
15004
+ },
15005
+ enumerable: true,
15006
+ configurable: true
15007
+ });
15008
+ Object.defineProperty(InlineEditItemComponent.prototype, "showEditButton", {
15009
+ get: function () {
15010
+ var _a;
15011
+ return !this.isEditing && ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value);
15012
+ },
15013
+ enumerable: true,
15014
+ configurable: true
15015
+ });
15016
+ Object.defineProperty(InlineEditItemComponent.prototype, "showValue", {
15017
+ get: function () {
15018
+ var _a;
15019
+ return !this.isEditing && ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value);
15020
+ },
15021
+ enumerable: true,
15022
+ configurable: true
15023
+ });
15024
+ InlineEditItemComponent.prototype.onEdit = function () {
15025
+ this.isEditing = !this.isEditing;
15026
+ };
15027
+ InlineEditItemComponent.prototype.onCancel = function () {
15028
+ this.isEditing = !this.isEditing;
15029
+ };
15030
+ InlineEditItemComponent.prototype.onSave = function () {
15031
+ if (this.dynamicComponentRef && this.dynamicComponentRef.instance.saveValue) {
15032
+ var control = this.formGroup.get(this.field.name);
15033
+ control.markAsDirty({ onlySelf: true });
15034
+ this.dynamicComponentRef.instance.saveValue();
15035
+ }
15036
+ if (this.formGroup.get(this.field.name).valid) {
15037
+ this.isEditing = !this.isEditing;
15038
+ }
15039
+ };
15040
+ InlineEditItemComponent.prototype.setDynamicComponentRef = function (ref) {
15041
+ this.dynamicComponentRef = ref;
15042
+ };
15043
+ InlineEditItemComponent.prototype.getErrorMessages = function (errorMessages) {
15044
+ if (errorMessages)
15045
+ return errorMessages instanceof Function
15046
+ ? __assign(__assign({}, this.errorMessages), errorMessages()) : __assign(__assign({}, this.errorMessages), errorMessages);
15047
+ return this.errorMessages;
15048
+ };
15049
+ InlineEditItemComponent.prototype.getFormattedValue = function (value) {
15050
+ if (this.field instanceof InlineEditCalendarField) {
15051
+ return this.dynamicComponentRef.instance.getValueAsText();
15052
+ }
15053
+ if (this.field instanceof InlineEditLookupField) {
15054
+ var lookupField_1 = this.field;
15055
+ return this.field.multiple
15056
+ ? value.map(function (val) { return val[lookupField_1.lookupDisplayField]; }).join(" - ")
15057
+ : value[lookupField_1.lookupDisplayField];
15058
+ }
15059
+ return value;
15060
+ };
15061
+ InlineEditItemComponent.prototype._getCalendarLocaleOptions = function () {
15062
+ var _this = this;
15063
+ this.localeService
15064
+ .get()
15065
+ .pipe(first())
15066
+ .subscribe(function (localeOptions) {
15067
+ _this._locale = localeOptions.locale;
15068
+ });
15069
+ };
15070
+ InlineEditItemComponent.ctorParameters = function () { return [
15071
+ { type: LocaleService }
15072
+ ]; };
15073
+ __decorate([
15074
+ ViewChild("formContainer", { read: ViewContainerRef, static: true })
15075
+ ], InlineEditItemComponent.prototype, "viewContainerRef", void 0);
15076
+ __decorate([
15077
+ Input()
15078
+ ], InlineEditItemComponent.prototype, "label", void 0);
15079
+ __decorate([
15080
+ Input()
15081
+ ], InlineEditItemComponent.prototype, "formGroup", void 0);
15082
+ __decorate([
15083
+ Input()
15084
+ ], InlineEditItemComponent.prototype, "field", void 0);
15085
+ __decorate([
15086
+ Input()
15087
+ ], InlineEditItemComponent.prototype, "errorMessages", void 0);
15088
+ InlineEditItemComponent = __decorate([
15089
+ Component({
15090
+ selector: "s-inline-edit-item",
15091
+ template: "<div class=\"inline-edit-item\">\n <label\n class=\"label\"\n *sInfoSign=\"field.tooltip\">\n {{ label }}:\n </label>\n\n <div class=\"content\">\n <span *ngIf=\"showValue\" class=\"value\">\n {{ getFormattedValue(formGroup.get(field.name)?.value) }}\n </span>\n\n <s-button\n *ngIf=\"showEmptyValueButton\"\n style=\"margin-left: -8px\"\n priority=\"link\"\n [label]=\"'platform.angular_components.add_information' | translate\"\n (onClick)=\"onEdit()\">\n </s-button>\n\n <div [hidden]=\"!isEditing\" class=\"form-container\">\n <ng-container #formContainer></ng-container>\n </div>\n\n <div class=\"options\">\n <s-button\n *ngIf=\"showEditButton\"\n [tooltip]=\"'platform.angular_components.edit' | translate\"\n (onClick)=\"onEdit()\"\n priority=\"link\"\n [auxiliary]=\"true\"\n iconClass=\"fas fa-edit\">\n </s-button>\n <s-button\n *ngIf=\"isEditing\"\n [tooltip]=\"'platform.angular_components.save' | translate\"\n (onClick)=\"onSave()\"\n priority=\"default\"\n [auxiliary]=\"true\"\n iconClass=\"fas fa-check\"\n styleClass=\"save-option\"\n iconColor=\"#428bca\">\n </s-button>\n <s-button\n *ngIf=\"isEditing\"\n [tooltip]=\"'platform.angular_components.cancel' | translate\"\n (onClick)=\"onCancel()\"\n priority=\"default\"\n [auxiliary]=\"true\"\n iconClass=\"fas fa-times\"\n iconColor=\"#c13018\">\n </s-button>\n </div>\n </div>\n <s-control-errors\n [form]=\"formGroup\"\n [control]=\"formGroup.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\">\n </s-control-errors>\n</div>\n",
15092
+ styles: [".inline-edit-item{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.inline-edit-item .label{color:#333;font-family:\"Open Sans\" sans-serif;font-size:14px;font-weight:700;margin-bottom:0}.inline-edit-item .content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;gap:16px}.inline-edit-item .content .value{color:#999;font-family:\"Open Sans\" sans-serif;font-size:14px}.inline-edit-item .content .options{display:-ms-flexbox;display:flex}"]
15093
+ })
15094
+ ], InlineEditItemComponent);
15095
+ return InlineEditItemComponent;
15096
+ }());
15097
+
15098
+ var InlineEditCalendarComponent = /** @class */ (function () {
15099
+ function InlineEditCalendarComponent(localeService) {
15100
+ this.localeService = localeService;
15101
+ }
15102
+ InlineEditCalendarComponent.prototype.ngOnInit = function () {
15103
+ var _a;
15104
+ this._getLocaleOptions();
15105
+ if (this.formGroup && this.field) {
15106
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || '';
15107
+ }
15108
+ };
15109
+ InlineEditCalendarComponent.prototype.saveValue = function () {
15110
+ var _a;
15111
+ if (this.formGroup && this.field) {
15112
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15113
+ }
15114
+ };
15115
+ InlineEditCalendarComponent.prototype.getValueAsText = function () {
15116
+ return this.calendar.el.nativeElement.querySelector('input').value;
15117
+ };
15118
+ InlineEditCalendarComponent.prototype._getLocaleOptions = function () {
15119
+ var _this = this;
15120
+ this.localeService.get().pipe(first()).subscribe(function (locale) {
15121
+ _this.calendarLocaleOptions = locale.calendar;
15122
+ });
15123
+ };
15124
+ InlineEditCalendarComponent.ctorParameters = function () { return [
15125
+ { type: LocaleService }
15126
+ ]; };
15127
+ __decorate([
15128
+ Input()
15129
+ ], InlineEditCalendarComponent.prototype, "field", void 0);
15130
+ __decorate([
15131
+ Input()
15132
+ ], InlineEditCalendarComponent.prototype, "formGroup", void 0);
15133
+ __decorate([
15134
+ ViewChild(Calendar)
15135
+ ], InlineEditCalendarComponent.prototype, "calendar", void 0);
15136
+ InlineEditCalendarComponent = __decorate([
15137
+ Component({
15138
+ template: "<p-calendar\n #calendar\n sCalendarMask\n [inputId]=\"field.name\"\n [name]=\"field.name\"\n [showIcon]=\"true\"\n [selectionMode]=\"field.selectionMode\"\n [rangeSeparator]=\"field.rangeSeparator\"\n [showSeconds]=\"field.showSeconds\"\n [showOnFocus]=\"field.showOnFocus\"\n icon=\"fa fa-calendar\"\n [minDate]=\"field.minDate\"\n [maxDate]=\"field.maxDate\"\n [dateFormat]=\"calendarLocaleOptions.dateFormat\"\n [hourFormat]=\"calendarLocaleOptions.hourFormat\"\n [defaultDate]=\"field.defaultDate\"\n [view]=\"field.view\"\n [placeholder]=\"field.placeholder\"\n inputStyleClass=\"mousetrap\"\n [appendTo]=\"field.appendTo\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onSelect)=\"field.onSelect ? field.onSelect($event) : null\"\n (onClose)=\"field.onClose ? field.onClose($event) : null\"\n (onTodayClick)=\"field.onTodayClick ? field.onTodayClick($event) : null\"\n (onClearClick)=\"field.onClearClick ? field.onClearClick($event) : null\"\n (onMonthChange)=\"field.onMonthChange ? field.onMonthChange($event) : null\"\n (onYearChange)=\"field.onYearChange ? field.onYearChange($event) : null\"\n [showTransitionOptions]=\"'0ms'\"\n [hideTransitionOptions]=\"'0ms'\"\n [(ngModel)]=\"tempValue\">\n</p-calendar>\n",
15139
+ styles: [""]
15140
+ })
15141
+ ], InlineEditCalendarComponent);
15142
+ return InlineEditCalendarComponent;
15143
+ }());
15144
+
15145
+ var InlineEditLookupComponent = /** @class */ (function () {
15146
+ function InlineEditLookupComponent() {
15147
+ }
15148
+ InlineEditLookupComponent.prototype.ngOnInit = function () {
15149
+ var _a;
15150
+ if (this.formGroup && this.field) {
15151
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || "";
15152
+ }
15153
+ };
15154
+ InlineEditLookupComponent.prototype.saveValue = function () {
15155
+ var _a;
15156
+ if (this.formGroup && this.field) {
15157
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15158
+ }
15159
+ };
15160
+ __decorate([
15161
+ Input()
15162
+ ], InlineEditLookupComponent.prototype, "field", void 0);
15163
+ __decorate([
15164
+ Input()
15165
+ ], InlineEditLookupComponent.prototype, "formGroup", void 0);
15166
+ InlineEditLookupComponent = __decorate([
15167
+ Component({
15168
+ template: "<s-lookup\n [id]=\"field.name\"\n [multiple]=\"field.multiple\"\n [lookupSuggestions]=\"field.lookupSuggestions\"\n [dataKey]=\"field.dataKey\"\n [placeholder]=\"field.placeholder\"\n [showSearch]=\"field.showSearch\"\n [searchFields]=\"field.searchFields\"\n [searchGridFields]=\"field.searchGridFields\"\n [searchGridData]=\"field.gridData\"\n (onLookupRequest)=\"field.onLookupRequest($event)\"\n (onSearchRequest)=\"field.onSearchRequest($event)\"\n [lookupDisplayField]=\"field.lookupDisplayField\"\n [searchTotalRecords]=\"field.searchTotalRecords\"\n [searchTotalRecordsLabel]=\"field.searchTotalRecordsLabel\"\n [searchTitle]=\"field.searchTitle\"\n [searchEmptyTitle]=\"field.searchEmptyTitle\"\n [filterTitle]=\"field.filterTitle\"\n (onSelect)=\"field.onSelect($event)\"\n (onUnselect)=\"field.onUnselect($event)\"\n (onClear)=\"field.onClear ? field.onClear($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [lookupAppendTo]=\"field.appendTo\"\n [lookupEmptyMessage]=\"field.emptyMessage\"\n [defaultFilter]=\"field.defaultFilter\"\n [autocompleteForceSelection]=\"field.autocompleteForceSelection\"\n [showAddOption]=\"field.showAddOption\"\n [showEditOption]=\"field.showEditOption\"\n [showRemoveOption]=\"field.showRemoveOption\"\n (onAdd)=\"field.onAdd()\"\n (onEdit)=\"field.onEdit($event)\"\n (onRemove)=\"field.onRemove($event)\"\n [(ngModel)]=\"tempValue\">\n</s-lookup>\n",
15169
+ styles: [""]
15170
+ })
15171
+ ], InlineEditLookupComponent);
15172
+ return InlineEditLookupComponent;
15173
+ }());
15174
+
15175
+ var InlineEditNumberComponent = /** @class */ (function () {
15176
+ function InlineEditNumberComponent(localeService) {
15177
+ this.localeService = localeService;
15178
+ }
15179
+ InlineEditNumberComponent.prototype.ngOnInit = function () {
15180
+ var _a;
15181
+ this._onLocaleService();
15182
+ if (this.formGroup && this.field) {
15183
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || '';
15184
+ }
15185
+ };
15186
+ InlineEditNumberComponent.prototype.saveValue = function () {
15187
+ var _a;
15188
+ if (this.formGroup && this.field) {
15189
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15190
+ }
15191
+ };
15192
+ Object.defineProperty(InlineEditNumberComponent.prototype, "mask", {
15193
+ get: function () {
15194
+ return typeof this.field.mask === 'function' ? this.field.mask() : this.field.mask;
15195
+ },
15196
+ enumerable: true,
15197
+ configurable: true
15198
+ });
15199
+ Object.defineProperty(InlineEditNumberComponent.prototype, "leftAddonDisabled", {
15200
+ get: function () {
15201
+ return typeof this.field.leftAddon.disabled === 'function' ? this.field.leftAddon.disabled() : this.field.leftAddon.disabled;
15202
+ },
15203
+ enumerable: true,
15204
+ configurable: true
15205
+ });
15206
+ Object.defineProperty(InlineEditNumberComponent.prototype, "rightAddonDisabled", {
15207
+ get: function () {
15208
+ return typeof this.field.rightAddon.disabled === 'function' ? this.field.rightAddon.disabled() : this.field.rightAddon.disabled;
15209
+ },
15210
+ enumerable: true,
15211
+ configurable: true
15212
+ });
15213
+ Object.defineProperty(InlineEditNumberComponent.prototype, "precision", {
15214
+ get: function () {
15215
+ return typeof this.field.precision === 'function' ? this.field.precision() : this.field.precision;
15216
+ },
15217
+ enumerable: true,
15218
+ configurable: true
15219
+ });
15220
+ Object.defineProperty(InlineEditNumberComponent.prototype, "scale", {
15221
+ get: function () {
15222
+ return typeof this.field.scale === 'function' ? this.field.scale() : this.field.scale;
15223
+ },
15224
+ enumerable: true,
15225
+ configurable: true
15226
+ });
15227
+ InlineEditNumberComponent.prototype._onLocaleService = function () {
15228
+ var _this = this;
15229
+ this.localeService
15230
+ .getLocale()
15231
+ .pipe(first())
15232
+ .subscribe({
15233
+ next: function () {
15234
+ var _a, _b;
15235
+ if (!((_a = _this.field.numberLocaleOptions) === null || _a === void 0 ? void 0 : _a.decimalSeparator)) {
15236
+ _this.field.numberLocaleOptions = __assign(__assign({}, _this.field.numberLocaleOptions), { decimalSeparator: _this.localeService.getDecimalSeparator() });
15237
+ }
15238
+ if (!((_b = _this.field.numberLocaleOptions) === null || _b === void 0 ? void 0 : _b.thousandsSeparator)) {
15239
+ _this.field.numberLocaleOptions = __assign(__assign({}, _this.field.numberLocaleOptions), { thousandsSeparator: _this.localeService.getGroupingSeparator() });
15240
+ }
15241
+ },
15242
+ error: function () {
15243
+ return (_this.field.numberLocaleOptions = {
15244
+ thousandsSeparator: ".",
15245
+ decimalSeparator: ",",
15246
+ currencySymbol: "",
15247
+ });
15248
+ },
15249
+ });
15250
+ };
15251
+ InlineEditNumberComponent.ctorParameters = function () { return [
15252
+ { type: LocaleService }
15253
+ ]; };
15254
+ __decorate([
15255
+ Input()
15256
+ ], InlineEditNumberComponent.prototype, "field", void 0);
15257
+ __decorate([
15258
+ Input()
15259
+ ], InlineEditNumberComponent.prototype, "formGroup", void 0);
15260
+ InlineEditNumberComponent = __decorate([
15261
+ Component({
15262
+ template: "<p-inputMask\n *ngIf=\"field.mask; else noMask\"\n type=\"text\"\n [inputId]=\"field.name\"\n [name]=\"field.name\"\n [mask]=\"mask\"\n [placeholder]=\"field.placeholder\"\n slotChar=\"_\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n styleClass=\"mousetrap\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onComplete)=\"field.onComplete ? field.onComplete($event) : null\"\n (onInput)=\"field.onInput ? field.onInput($event) : null\"\n [autoClear]=\"field.autoClear\"\n [(ngModel)]=\"tempValue\">\n</p-inputMask>\n\n<ng-template #noMask>\n <ng-container>\n <div class=\"ui-inputgroup\">\n <ng-container *ngIf=\"field.leftAddon\">\n <span *ngIf=\"field.leftAddon.callback\" class=\"addon-button addon-button--left\">\n <s-button\n [label]=\"field.leftAddon.label\"\n [iconClass]=\"field.leftAddon.icon\"\n [priority]=\"field.leftAddon.priority\"\n [disabled]=\"leftAddonDisabled\"\n (onClick)=\"field.leftAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.leftAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.leftAddon.label\">{{ field.leftAddon.label }}</span>\n <span *ngIf=\"!field.leftAddon.label\" [ngClass]=\"field.leftAddon.icon\"></span>\n </span>\n </ng-container>\n\n <input\n [id]=\"field.name\"\n type=\"text\"\n [name]=\"field.name\"\n sBignumberInput\n [allowNegative]=\"field.allowNegative\"\n [precision]=\"precision\"\n [scale]=\"scale\"\n [alignTo]=\"field.alignTo\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"field.onFocus ? field.onFocus($event) : null\"\n [(ngModel)]=\"tempValue\"/>\n <ng-container *ngIf=\"field.rightAddon\">\n <span *ngIf=\"field.rightAddon.callback\" class=\"addon-button addon-button--right\">\n <s-button\n [label]=\"field.rightAddon.label\"\n [iconClass]=\"field.rightAddon.icon\"\n [priority]=\"field.rightAddon.priority\"\n [disabled]=\"rightAddonDisabled\"\n (onClick)=\"field.rightAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.rightAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.rightAddon.label\">{{ field.rightAddon.label }}</span>\n <span *ngIf=\"!field.rightAddon.label\" [ngClass]=\"field.rightAddon.icon\"></span>\n </span>\n </ng-container>\n </div>\n </ng-container>\n</ng-template>\n",
15263
+ styles: [""]
15264
+ })
15265
+ ], InlineEditNumberComponent);
15266
+ return InlineEditNumberComponent;
15267
+ }());
15268
+
15269
+ var InlineEditTextAreaComponent = /** @class */ (function () {
15270
+ function InlineEditTextAreaComponent() {
15271
+ }
15272
+ InlineEditTextAreaComponent.prototype.ngOnInit = function () {
15273
+ var _a;
15274
+ if (this.formGroup && this.field) {
15275
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || '';
15276
+ }
15277
+ };
15278
+ InlineEditTextAreaComponent.prototype.saveValue = function () {
15279
+ var _a;
15280
+ if (this.formGroup && this.field) {
15281
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15282
+ }
15283
+ };
15284
+ __decorate([
15285
+ Input()
15286
+ ], InlineEditTextAreaComponent.prototype, "field", void 0);
15287
+ __decorate([
15288
+ Input()
15289
+ ], InlineEditTextAreaComponent.prototype, "formGroup", void 0);
15290
+ InlineEditTextAreaComponent = __decorate([
15291
+ Component({
15292
+ template: "<ng-container *ngIf=\"field.keyFilter; else noKeyFilter\">\n <textarea\n [id]=\"field.name\"\n pInputTextarea\n class=\"textarea-input\"\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [pKeyFilter]=\"field.keyFilter\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n [(ngModel)]=\"tempValue\">\n </textarea>\n</ng-container>\n<ng-template #noKeyFilter>\n <textarea\n [id]=\"field.name\"\n pInputTextarea\n class=\"textarea-input\"\n [rows]=\"field.rows\"\n [cols]=\"field.cols\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n [(ngModel)]=\"tempValue\">\n </textarea>\n</ng-template>\n",
15293
+ styles: [".textarea-input{resize:vertical}"]
15294
+ })
15295
+ ], InlineEditTextAreaComponent);
15296
+ return InlineEditTextAreaComponent;
15297
+ }());
15298
+
15299
+ var InlineEditTextComponent = /** @class */ (function () {
15300
+ function InlineEditTextComponent() {
15301
+ }
15302
+ InlineEditTextComponent.prototype.ngOnInit = function () {
15303
+ var _a;
15304
+ if (this.formGroup && this.field) {
15305
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || '';
15306
+ }
15307
+ };
15308
+ InlineEditTextComponent.prototype.saveValue = function () {
15309
+ var _a;
15310
+ if (this.formGroup && this.field) {
15311
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15312
+ }
15313
+ };
15314
+ __decorate([
15315
+ Input()
15316
+ ], InlineEditTextComponent.prototype, "field", void 0);
15317
+ __decorate([
15318
+ Input()
15319
+ ], InlineEditTextComponent.prototype, "formGroup", void 0);
15320
+ InlineEditTextComponent = __decorate([
15321
+ Component({
15322
+ template: "<input\n type=\"text\"\n pInputText\n [(ngModel)]=\"tempValue\" />",
15323
+ styles: [""]
15324
+ })
15325
+ ], InlineEditTextComponent);
15326
+ return InlineEditTextComponent;
15327
+ }());
15328
+
15329
+ var InlineEditTextAreaIAComponent = /** @class */ (function () {
15330
+ function InlineEditTextAreaIAComponent() {
15331
+ }
15332
+ InlineEditTextAreaIAComponent.prototype.ngOnInit = function () {
15333
+ var _a;
15334
+ if (this.formGroup && this.field) {
15335
+ this.tempValue = ((_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.value) || '';
15336
+ }
15337
+ };
15338
+ InlineEditTextAreaIAComponent.prototype.saveValue = function () {
15339
+ var _a;
15340
+ if (this.formGroup && this.field) {
15341
+ (_a = this.formGroup.get(this.field.name)) === null || _a === void 0 ? void 0 : _a.setValue(this.tempValue);
15342
+ }
15343
+ };
15344
+ __decorate([
15345
+ Input()
15346
+ ], InlineEditTextAreaIAComponent.prototype, "field", void 0);
15347
+ __decorate([
15348
+ Input()
15349
+ ], InlineEditTextAreaIAComponent.prototype, "formGroup", void 0);
15350
+ InlineEditTextAreaIAComponent = __decorate([
15351
+ Component({
15352
+ template: "<s-text-area-ia [(ngModel)]=\"tempValue\"></s-text-area-ia>",
15353
+ styles: [""]
15354
+ })
15355
+ ], InlineEditTextAreaIAComponent);
15356
+ return InlineEditTextAreaIAComponent;
15357
+ }());
15358
+
15359
+ var InlineEditComponent = /** @class */ (function () {
15360
+ function InlineEditComponent(resolver) {
15361
+ var _a;
15362
+ this.resolver = resolver;
15363
+ this.fields = [];
15364
+ this._componentMap = (_a = {},
15365
+ _a[InlineEditCalendarField.name] = InlineEditCalendarComponent,
15366
+ _a[InlineEditLookupField.name] = InlineEditLookupComponent,
15367
+ _a[InlineEditTextField.name] = InlineEditTextComponent,
15368
+ _a[InlineEditNumberField.name] = InlineEditNumberComponent,
15369
+ _a[InlineEditTextAreaField.name] = InlineEditTextAreaComponent,
15370
+ _a[InlineEditTextAreaIAField.name] = InlineEditTextAreaIAComponent,
15371
+ _a);
15372
+ }
15373
+ InlineEditComponent.prototype.ngOnInit = function () {
15374
+ this._createFields();
15375
+ };
15376
+ InlineEditComponent.prototype._createFields = function () {
15377
+ var e_1, _a;
15378
+ var _this = this;
15379
+ this.container.clear();
15380
+ var createComponent = function (componentClass, field) {
15381
+ var componentFactory = _this.resolver.resolveComponentFactory(componentClass);
15382
+ var componentRef = _this.container.createComponent(componentFactory);
15383
+ componentRef.instance.field = field;
15384
+ componentRef.instance.formGroup = _this.formGroup;
15385
+ return componentRef;
15386
+ };
15387
+ try {
15388
+ for (var _b = __values(this.fields), _c = _b.next(); !_c.done; _c = _b.next()) {
15389
+ var field = _c.value;
15390
+ var componentClass = this._componentMap[field.constructor.name];
15391
+ if (componentClass) {
15392
+ var inlineEditItemFactory = this.resolver.resolveComponentFactory(InlineEditItemComponent);
15393
+ var inlineEditItemRef = this.container.createComponent(inlineEditItemFactory);
15394
+ inlineEditItemRef.instance.label = field.label;
15395
+ inlineEditItemRef.instance.formGroup = this.formGroup;
15396
+ inlineEditItemRef.instance.field = field;
15397
+ inlineEditItemRef.instance.errorMessages = this.errorMessages;
15398
+ var dynamicComponentRef = createComponent(componentClass, field);
15399
+ var inlineEditItemInstance = inlineEditItemRef.instance;
15400
+ inlineEditItemInstance.viewContainerRef.insert(dynamicComponentRef.hostView);
15401
+ inlineEditItemInstance.setDynamicComponentRef(dynamicComponentRef);
15402
+ }
15403
+ }
15404
+ }
15405
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
15406
+ finally {
15407
+ try {
15408
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
15409
+ }
15410
+ finally { if (e_1) throw e_1.error; }
15411
+ }
15412
+ };
15413
+ InlineEditComponent.ctorParameters = function () { return [
15414
+ { type: ComponentFactoryResolver }
15415
+ ]; };
15416
+ __decorate([
15417
+ Input()
15418
+ ], InlineEditComponent.prototype, "formGroup", void 0);
15419
+ __decorate([
15420
+ Input()
15421
+ ], InlineEditComponent.prototype, "fields", void 0);
15422
+ __decorate([
15423
+ Input()
15424
+ ], InlineEditComponent.prototype, "errorMessages", void 0);
15425
+ __decorate([
15426
+ ViewChild("formContainer", { read: ViewContainerRef, static: true })
15427
+ ], InlineEditComponent.prototype, "container", void 0);
15428
+ InlineEditComponent = __decorate([
15429
+ Component({
15430
+ selector: "s-inline-edit",
15431
+ template: "<div class=\"inline-edit\">\n <ng-template #formContainer></ng-template>\n</div>\n",
15432
+ styles: [".inline-edit{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:8px}"]
15433
+ })
15434
+ ], InlineEditComponent);
15435
+ return InlineEditComponent;
15436
+ }());
15437
+
15438
+ var TextAreaIAComponent = /** @class */ (function () {
15439
+ function TextAreaIAComponent(_iassistService, // Mover pra uma pasta global
15440
+ _formBuilder, _translateService) {
15441
+ this._iassistService = _iassistService;
15442
+ this._formBuilder = _formBuilder;
15443
+ this._translateService = _translateService;
15444
+ this.isVisible = false;
15445
+ this.isLoading = false;
15446
+ }
15447
+ TextAreaIAComponent_1 = TextAreaIAComponent;
15448
+ TextAreaIAComponent.prototype.ngOnInit = function () {
15449
+ this._createDialogFields();
15450
+ this._createDialogFormGroup();
15451
+ };
15452
+ TextAreaIAComponent.prototype.writeValue = function (value) {
15453
+ this.value = value;
15454
+ };
15455
+ TextAreaIAComponent.prototype.registerOnChange = function (onChange) {
15456
+ this._onChange = onChange;
15457
+ };
15458
+ TextAreaIAComponent.prototype.registerOnTouched = function (onTouched) {
15459
+ this._onTouched = onTouched;
15460
+ };
15461
+ TextAreaIAComponent.prototype.setDisabledState = function (isDisabled) {
15462
+ this._isDisabled = isDisabled;
15463
+ };
15464
+ TextAreaIAComponent.prototype.onValueChange = function (value) {
15465
+ var _a;
15466
+ this.value = value;
15467
+ (_a = this._onChange) === null || _a === void 0 ? void 0 : _a.call(this, value);
15468
+ };
15469
+ TextAreaIAComponent.prototype.showDialog = function () {
15470
+ this.isVisible = true;
15471
+ this._onTouched();
15472
+ };
15473
+ TextAreaIAComponent.prototype.hideDialog = function () {
15474
+ this.isVisible = false;
15475
+ };
15476
+ TextAreaIAComponent.prototype.onHideDialog = function () {
15477
+ this.formGroup.get("context").setValue("");
15478
+ };
15479
+ TextAreaIAComponent.prototype.submitContext = function () {
15480
+ var _this = this;
15481
+ var context = this.formGroup.get("context");
15482
+ this.isLoading = true;
15483
+ this._iassistService
15484
+ .askIA(context.value, {
15485
+ id: this.id,
15486
+ label: this.label,
15487
+ placeholder: this.placeholder,
15488
+ prompt: this.prompt,
15489
+ })
15490
+ .pipe(catchError(function (err) {
15491
+ _this.isLoading = false;
15492
+ return throwError(err);
15493
+ }))
15494
+ .subscribe(function (res) {
15495
+ _this.value = res.text;
15496
+ _this._onChange(_this.value);
15497
+ _this.isLoading = false;
15498
+ });
15499
+ this.hideDialog();
15500
+ };
15501
+ TextAreaIAComponent.prototype._createDialogFields = function () {
15502
+ this.fields = [
15503
+ new FormField({
15504
+ name: "context",
15505
+ type: FieldType.Text,
15506
+ label: this._translateService.instant("platform.angular_components.context"),
15507
+ size: { sm: 12, md: 12, lg: 12, xl: 12 },
15508
+ }),
15509
+ ];
15510
+ };
15511
+ TextAreaIAComponent.prototype._createDialogFormGroup = function () {
15512
+ this.formGroup = this._formBuilder.group({
15513
+ context: [""],
15514
+ });
15515
+ };
15516
+ var TextAreaIAComponent_1;
15517
+ TextAreaIAComponent.ctorParameters = function () { return [
15518
+ { type: IAssistService },
15519
+ { type: FormBuilder },
15520
+ { type: TranslateService }
15521
+ ]; };
15522
+ __decorate([
15523
+ Input()
15524
+ ], TextAreaIAComponent.prototype, "id", void 0);
15525
+ __decorate([
15526
+ Input()
15527
+ ], TextAreaIAComponent.prototype, "label", void 0);
15528
+ __decorate([
15529
+ Input()
15530
+ ], TextAreaIAComponent.prototype, "placeholder", void 0);
15531
+ __decorate([
15532
+ Input()
15533
+ ], TextAreaIAComponent.prototype, "prompt", void 0);
15534
+ __decorate([
15535
+ Input()
15536
+ ], TextAreaIAComponent.prototype, "readonly", void 0);
15537
+ __decorate([
15538
+ Input()
15539
+ ], TextAreaIAComponent.prototype, "rows", void 0);
15540
+ __decorate([
15541
+ Input()
15542
+ ], TextAreaIAComponent.prototype, "cols", void 0);
15543
+ TextAreaIAComponent = TextAreaIAComponent_1 = __decorate([
15544
+ Component({
15545
+ selector: "s-text-area-ia",
15546
+ template: "<s-loading-state\n [loading]=\"isLoading\"\n [blockWindow]=\"true\"> \n</s-loading-state>\n\n<p-dialog\n [(visible)]=\"isVisible\"\n [modal]=\"true\"\n [style]=\"{ width: '50vw' }\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n (onHide)=\"onHideDialog()\">\n <p-header>\n <div class=\"dialog-header\">\n <span class=\"iassist-icon\">\n <ng-container [ngTemplateOutlet]=\"iassistIcon\"></ng-container>\n </span>\n IAssist - Content Generator\n </div>\n </p-header>\n <s-dynamic-form\n [fields]=\"fields\"\n [form]=\"formGroup\">\n </s-dynamic-form>\n <p-footer>\n <div class=\"footer-content\">\n <s-button\n id=\"-submit-button\"\n type=\"button\"\n [label]=\"'platform.angular_components.generate_text' | translate\"\n (onClick)=\"submitContext()\"\n sTooltip=\"(ALT + SHIFT + S)\"\n showDelay=\"500\">\n </s-button>\n <s-button\n id=\"-cancel-button\"\n type=\"button\"\n priority=\"link\"\n [label]=\"'platform.angular_components.cancel' | translate\"\n (onClick)=\"hideDialog()\"\n sTooltip=\"(ALT + SHIFT + C)\"\n showDelay=\"500\">\n </s-button>\n </div>\n </p-footer>\n</p-dialog>\n\n<div class=\"textarea-ia\">\n <textarea\n [id]=\"id\"\n class=\"textarea-input\"\n pInputTextarea\n [(ngModel)]=\"value\"\n (ngModelChange)=\"onValueChange($event)\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [readOnly]=\"readonly\">\n </textarea>\n <button\n class=\"iassist-button\"\n (click)=\"showDialog()\"\n sTooltip=\"IAssist - Content Generator\">\n <ng-container [ngTemplateOutlet]=\"iassistIcon\"></ng-container>\n </button>\n</div>\n\n<ng-template #iassistIcon>\n <svg style=\"width: 100%; height: 100%;\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.81451 18.1054L5.99593 17.6059L7.52166 13.4099L7.60877 13.1726L7.61277 13.1614L7.94285 12.2543L8.01159 12.0648L8.05394 11.949L5.2998 8.52426L5.02726 8.18379C5.00569 8.15821 4.9881 8.13104 4.97292 8.10226C4.90099 7.9632 4.85063 7.81294 4.82186 7.6531C4.73075 7.1344 4.90418 6.60771 5.28382 6.24326C5.29421 6.23447 5.3038 6.22567 5.31419 6.21688L5.47164 6.0914L9.3439 3.00238L9.5469 2.84094L9.57088 2.82096L10.4101 2.15041L11.8007 1.04188C11.2181 0.925188 10.6163 0.863647 10.0001 0.863647C4.95374 0.863647 0.863281 4.9541 0.863281 9.99963C0.863281 13.5346 2.87254 16.5989 5.80971 18.1182\" fill=\"#0FA389\"/>\n <path d=\"M14.099 1.83472L13.9495 2.24632L11.997 7.61074L11.9427 7.7594L11.9003 7.87369L14.7448 11.4103C14.7463 11.4127 14.7479 11.4143 14.7495 11.4167L14.9414 11.654C14.9541 11.67 14.9661 11.6868 14.9765 11.7044C15.0764 11.8698 15.1444 12.0505 15.1779 12.2431C15.273 12.7826 15.0812 13.3284 14.676 13.6897C14.656 13.7129 14.6345 13.7344 14.6105 13.7536L11.8563 15.9507L11.6789 16.0922L11.6022 16.1537L10.7406 16.8402V16.841L10.3937 17.1176L9.85747 17.5452L9.39951 17.9112L8.11035 18.9398C8.72016 19.0677 9.35155 19.1364 9.99973 19.1364C15.0461 19.1364 19.1365 15.046 19.1365 9.99964C19.1365 6.42789 17.0857 3.33727 14.099 1.83472Z\" fill=\"#0FA389\"/>\n <path d=\"M14.7287 12.3222C14.7047 12.1832 14.6551 12.0545 14.5864 11.941L14.3954 11.7036C14.3954 11.7036 14.3946 11.7028 14.3938 11.7028L11.3839 7.96005L10.5031 6.86511L10.4256 6.7676L9.03255 5.03487L8.83674 4.79191C8.79278 4.71678 8.75681 4.63446 8.73204 4.54814C8.72085 4.51058 8.71286 4.47222 8.70566 4.43465C8.68568 4.32196 8.68408 4.21007 8.69847 4.10217L8.62334 4.16291L8.44511 4.30438L5.75731 6.44871L5.60066 6.57339C5.34011 6.82275 5.20584 7.19279 5.27218 7.57482C5.29296 7.68751 5.32892 7.79541 5.37927 7.89292C5.37927 7.89292 5.37927 7.89292 5.38007 7.89371L5.6566 8.23818L8.57139 11.8627L8.63293 11.9394L9.53047 13.0559L9.59041 13.1303L9.98363 13.6186L11.0178 14.9046C11.0186 14.9054 11.0194 14.9069 11.0202 14.9077L11.1361 15.0516V15.0524C11.2184 15.1755 11.2768 15.317 11.3048 15.4728C11.3239 15.5807 11.3263 15.6878 11.3143 15.7925L11.3175 15.7965L11.3943 15.735L11.5717 15.5935L14.3266 13.3964L14.3218 13.3908C14.6335 13.1438 14.8022 12.7394 14.7287 12.3222Z\" fill=\"#F3F3F5\"/>\n <path d=\"M10.6822 15.0082C10.6814 15.0074 10.6806 15.0058 10.6806 15.005L10.5672 14.8643L10.3809 14.6325L10.3282 14.567L10.2211 14.4335L9.40028 13.4129L9.32835 13.3242L8.77289 12.6345L8.68098 12.5194L8.44121 12.2205L8.37168 12.4099L8.04159 13.317L8.0376 13.329L7.95128 13.5664L6.42475 17.7623L6.24333 18.2618L5.90605 19.1881L5.73262 19.6645C5.73182 19.6661 5.73102 19.6677 5.73102 19.6685C5.72863 19.6749 5.72703 19.6821 5.72543 19.6885C5.71584 19.7228 5.71424 19.758 5.72063 19.7948C5.74461 19.929 5.87329 20.0193 6.00836 19.9962C6.04112 19.9898 6.07229 19.9778 6.09867 19.9602C6.09867 19.9602 6.09947 19.9602 6.10027 19.9594L6.14103 19.9266L7.39422 18.9268L9.11496 17.5537L9.57292 17.1877L10.1092 16.7601L10.4561 16.4827L10.4537 16.4811C10.7582 16.2382 10.9236 15.8402 10.8509 15.4294C10.8237 15.2735 10.7654 15.1313 10.6822 15.0082Z\" fill=\"#0C847B\"/>\n <path d=\"M9.17644 4.56325C9.2124 4.68713 9.26915 4.80062 9.34268 4.90053C9.34348 4.90053 9.34428 4.90213 9.34428 4.90213L9.40342 4.97645C9.40502 4.97805 9.40582 4.97885 9.40662 4.98045L9.56806 5.17946L9.64878 5.28096L9.67915 5.31932L9.8414 5.51993L10.5559 6.40947L10.7054 6.59569L11.2169 7.23188L11.5142 7.60192L11.5693 7.45247L13.5202 2.08964L14.1596 0.332135C14.1596 0.330536 14.1604 0.328139 14.1612 0.32654C14.174 0.288177 14.1772 0.246617 14.17 0.205058C14.1468 0.0699879 14.0182 -0.0195258 13.8823 0.00365186C13.8407 0.0116442 13.8024 0.028428 13.7712 0.0540033L12.578 1.00589L12.498 1.06982L10.6958 2.50844L9.85658 3.17819L9.8326 3.19737L9.6296 3.35961L9.45297 3.50028C9.2116 3.73925 9.08692 4.08931 9.15006 4.44976C9.15726 4.48813 9.16525 4.52649 9.17644 4.56325Z\" fill=\"#0C847B\"/>\n </svg>\n</ng-template>",
15547
+ providers: [
15548
+ {
15549
+ provide: NG_VALUE_ACCESSOR,
15550
+ useExisting: forwardRef(function () { return TextAreaIAComponent_1; }),
15551
+ multi: true,
15552
+ },
15553
+ ],
15554
+ styles: [".footer-content{display:-ms-flexbox;display:flex;-ms-flex-positive:0;flex-grow:0}.textarea-ia{display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end;gap:8px}.textarea-ia .textarea-input{resize:vertical;width:100%}.iassist-button{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;border:none;border-radius:50%;box-shadow:none;cursor:pointer;height:32px;width:32px}.dialog-header{display:-ms-flexbox;display:flex;gap:12px}.dialog-header .iassist-icon{display:block;height:24px;width:24px}"]
15555
+ })
15556
+ ], TextAreaIAComponent);
15557
+ return TextAreaIAComponent;
15558
+ }());
15559
+
15560
+ var TextAreaIAModule = /** @class */ (function () {
15561
+ function TextAreaIAModule() {
15562
+ }
15563
+ TextAreaIAModule = __decorate([
15564
+ NgModule({
15565
+ imports: [
15566
+ CommonModule,
15567
+ FormsModule,
15568
+ ReactiveFormsModule,
15569
+ TranslateModule,
15570
+ DialogModule,
15571
+ InputTextareaModule,
15572
+ ButtonModule,
15573
+ DynamicFormModule,
15574
+ LoadingStateModule,
15575
+ ],
15576
+ declarations: [TextAreaIAComponent],
15577
+ exports: [TextAreaIAComponent],
15578
+ })
15579
+ ], TextAreaIAModule);
15580
+ return TextAreaIAModule;
15581
+ }());
15582
+
15583
+ var InlineEditModule = /** @class */ (function () {
15584
+ function InlineEditModule() {
15585
+ }
15586
+ InlineEditModule = __decorate([
15587
+ NgModule({
15588
+ imports: [
15589
+ CommonModule,
15590
+ FormsModule,
15591
+ ReactiveFormsModule,
15592
+ TranslateModule,
15593
+ BignumberInputModule,
15594
+ ButtonModule,
15595
+ ControlErrorsModule,
15596
+ InfoSignModule,
15597
+ DynamicFormModule,
15598
+ TextAreaIAModule,
15599
+ TooltipModule,
15600
+ CalendarModule,
15601
+ InputMaskModule,
15602
+ InputTextModule,
15603
+ InputTextareaModule,
15604
+ KeyFilterModule,
15605
+ ],
15606
+ declarations: [
15607
+ InlineEditComponent,
15608
+ InlineEditItemComponent,
15609
+ InlineEditCalendarComponent,
15610
+ InlineEditLookupComponent,
15611
+ InlineEditNumberComponent,
15612
+ InlineEditTextComponent,
15613
+ InlineEditTextAreaComponent,
15614
+ InlineEditTextAreaIAComponent,
15615
+ ],
15616
+ exports: [InlineEditComponent],
15617
+ })
15618
+ ], InlineEditModule);
15619
+ return InlineEditModule;
15620
+ }());
15621
+
14851
15622
  var KanbanEventService = /** @class */ (function () {
14852
15623
  function KanbanEventService() {
14853
15624
  this.selectAllColumnItemsEvent = new EventEmitter();
@@ -18468,9 +19239,11 @@ var fallback = {
18468
19239
  "platform.angular_components.date_format": "dd/mm/yy",
18469
19240
  "platform.angular_components.ia_text_generator": "Gerador de texto por IA",
18470
19241
  "platform.angular_components.attach_files": "Anexar arquivos",
19242
+ "platform.angular_components.add_information": "Adicionar informação",
18471
19243
  "platform.angular_components.add": "Adicionar",
18472
19244
  "platform.angular_components.edit": "Editar",
18473
19245
  "platform.angular_components.remove": "Remover",
19246
+ "platform.angular_components.save": "Salvar",
18474
19247
  "platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
18475
19248
  "platform.angular_components.loading_file": "Carregando arquivo",
18476
19249
  "platform.angular_components.iassist_text_generator": "IAssist Gerador de texto",
@@ -18720,5 +19493,5 @@ var fallback = {
18720
19493
  * Generated bundle index. Do not edit.
18721
19494
  */
18722
19495
 
18723
- 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, 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, KanbanComponent, KanbanModule, KanbanTemplateTypes, 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, TextAreaField, 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, PasswordFieldComponent as ɵba, TextFieldModule as ɵbb, TextFieldComponent as ɵbc, NumberFieldModule as ɵbd, LocalizedNumberInputModule as ɵbe, NumberInputModule as ɵbf, NumberFieldComponent as ɵbg, CurrencyFieldModule as ɵbh, CurrencyFieldComponent as ɵbi, BignumberFieldModule as ɵbj, BignumberInputModule as ɵbk, BignumberFieldComponent as ɵbl, ProfilePictureModule as ɵbm, ThumbnailService as ɵbn, StructureModule as ɵbo, HeaderComponent as ɵbp, FooterComponent as ɵbq, ProfilePictureFieldComponent as ɵbr, AutocompleteFieldComponent as ɵbs, BooleanFieldComponent as ɵbt, BooleanSwitchFieldComponent as ɵbu, CalendarFieldComponent as ɵbv, ChipsFieldComponent as ɵbw, CountryPhonePickerFieldComponent as ɵbx, DynamicFieldComponent as ɵby, DynamicFormDirective as ɵbz, TemplateDirective as ɵc, FieldsetComponent as ɵca, FileUploadComponent$1 as ɵcb, LookupFieldComponent as ɵcc, RadioButtonComponent as ɵcd, RowComponent as ɵce, SectionComponent as ɵcf, SelectFieldComponent as ɵcg, SliderFieldComponent as ɵch, TextAreaFieldComponent as ɵci, TextAreaIAFieldComponent as ɵcj, IAssistService as ɵck, DecimalField as ɵcm, SideTableComponent as ɵcn, InfiniteScrollModule as ɵco, InfiniteScrollDirective as ɵcp, IAInsightSidebarComponent as ɵcq, IAInsightCardComponent as ɵcr, IAInsightCardLoaderComponent as ɵcs, KanbanEventService as ɵct, KanbanItemComponent as ɵcu, KanbanColumnComponent as ɵcv, KanbanItemDraggingComponent as ɵcw, NumberLocaleOptions as ɵcx, TieredMenuEventService as ɵcy, TieredMenuService as ɵcz, TemplateModule as ɵd, TieredMenuGlobalService as ɵda, TieredMenuComponent as ɵdb, TieredMenuNestedComponent as ɵdc, TieredMenuItemComponent as ɵdd, TieredMenuDividerComponent as ɵde, BorderButtonModule as ɵdf, BorderButtonComponent as ɵdg, ProgressBarDeterminateComponent as ɵdh, ProgressBarIndeterminateComponent as ɵdi, SelectButtonItemComponent as ɵdj, SlidePanelService as ɵdk, TimelineItemModule as ɵdl, TimelineIconItemComponent as ɵdm, HorizontalTimelineModule as ɵdn, HorizontalTimelineComponent as ɵdo, VerticalTimelineModule as ɵdp, VerticalTimelineComponent as ɵdq, RangeLineComponent as ɵdr, CollapseOptionComponent as ɵds, CollapsedItemsComponent as ɵdt, VerticalItemsComponent as ɵdu, CustomTranslationsModule as ɵe, CodeEditorComponent as ɵf, CoreFacade as ɵg, CodeMirror6Core as ɵh, CountryPhonePickerService as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, EmptyStateGoBackComponent as ɵn, IAssistIconComponent as ɵo, SeniorIconComponent as ɵp, DotsIndicatorComponent as ɵq, LoadingIndicatorComponent as ɵr, FileUploadService as ɵs, InfoSignComponent as ɵt, TableColumnsComponent as ɵu, TablePagingComponent as ɵv, PasswordFieldModule as ɵw, FieldLabelModule as ɵx, InfoSignModule as ɵy, FieldLabelComponent as ɵz };
19496
+ 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, 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, 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, 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, PasswordFieldComponent as ɵba, TextFieldModule as ɵbb, TextFieldComponent as ɵbc, NumberFieldModule as ɵbd, LocalizedNumberInputModule as ɵbe, NumberInputModule as ɵbf, NumberFieldComponent as ɵbg, CurrencyFieldModule as ɵbh, CurrencyFieldComponent as ɵbi, BignumberFieldModule as ɵbj, BignumberInputModule as ɵbk, BignumberFieldComponent as ɵbl, ProfilePictureModule as ɵbm, ThumbnailService as ɵbn, StructureModule as ɵbo, HeaderComponent as ɵbp, FooterComponent as ɵbq, ProfilePictureFieldComponent as ɵbr, AutocompleteFieldComponent as ɵbs, BooleanFieldComponent as ɵbt, BooleanSwitchFieldComponent as ɵbu, CalendarFieldComponent as ɵbv, ChipsFieldComponent as ɵbw, CountryPhonePickerFieldComponent as ɵbx, DynamicFieldComponent as ɵby, DynamicFormDirective as ɵbz, TemplateDirective as ɵc, FieldsetComponent as ɵca, FileUploadComponent$1 as ɵcb, LookupFieldComponent as ɵcc, RadioButtonComponent as ɵcd, RowComponent as ɵce, SectionComponent as ɵcf, SelectFieldComponent as ɵcg, SliderFieldComponent as ɵch, TextAreaFieldComponent as ɵci, TextAreaIAFieldComponent as ɵcj, IAssistService as ɵck, DecimalField as ɵcm, SideTableComponent as ɵcn, InfiniteScrollModule as ɵco, InfiniteScrollDirective as ɵcp, IAInsightSidebarComponent as ɵcq, IAInsightCardComponent as ɵcr, IAInsightCardLoaderComponent as ɵcs, InlineEditItemComponent as ɵct, LocaleService as ɵcu, InlineEditCalendarComponent as ɵcv, InlineEditLookupComponent as ɵcw, InlineEditNumberComponent as ɵcx, InlineEditTextComponent as ɵcy, InlineEditTextAreaComponent as ɵcz, TemplateModule as ɵd, InlineEditTextAreaIAComponent as ɵda, KanbanEventService as ɵdb, KanbanItemComponent as ɵdc, KanbanColumnComponent as ɵdd, KanbanItemDraggingComponent as ɵde, NumberLocaleOptions as ɵdf, TieredMenuEventService as ɵdg, TieredMenuService as ɵdh, TieredMenuGlobalService as ɵdi, TieredMenuComponent as ɵdj, TieredMenuNestedComponent as ɵdk, TieredMenuItemComponent as ɵdl, TieredMenuDividerComponent as ɵdm, BorderButtonModule as ɵdn, BorderButtonComponent as ɵdo, ProgressBarDeterminateComponent as ɵdp, ProgressBarIndeterminateComponent as ɵdq, SelectButtonItemComponent as ɵdr, SlidePanelService as ɵds, TimelineItemModule as ɵdt, TimelineIconItemComponent as ɵdu, HorizontalTimelineModule as ɵdv, HorizontalTimelineComponent as ɵdw, VerticalTimelineModule as ɵdx, VerticalTimelineComponent as ɵdy, RangeLineComponent as ɵdz, CustomTranslationsModule as ɵe, CollapseOptionComponent as ɵea, CollapsedItemsComponent as ɵeb, VerticalItemsComponent as ɵec, CodeEditorComponent as ɵf, CoreFacade as ɵg, CodeMirror6Core as ɵh, CountryPhonePickerService as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, EmptyStateGoBackComponent as ɵn, IAssistIconComponent as ɵo, SeniorIconComponent as ɵp, DotsIndicatorComponent as ɵq, LoadingIndicatorComponent as ɵr, FileUploadService as ɵs, InfoSignComponent as ɵt, TableColumnsComponent as ɵu, TablePagingComponent as ɵv, PasswordFieldModule as ɵw, FieldLabelModule as ɵx, InfoSignModule as ɵy, FieldLabelComponent as ɵz };
18724
19497
  //# sourceMappingURL=seniorsistemas-angular-components.js.map