ca-components 0.0.72 → 0.0.75

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 (146) hide show
  1. package/esm2022/lib/animations/card-component.animation.mjs +64 -0
  2. package/esm2022/lib/ca-components.module.mjs +5 -5
  3. package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +82 -29
  4. package/esm2022/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.mjs +7 -0
  5. package/esm2022/lib/components/ca-activity-log-list/enums/action-log-type.enum.mjs +9 -0
  6. package/esm2022/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.mjs +6 -0
  7. package/esm2022/lib/components/ca-activity-log-list/enums/index.mjs +4 -0
  8. package/esm2022/lib/components/ca-activity-log-list/models/action-log.model.mjs +2 -0
  9. package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item-description.model.mjs +2 -0
  10. package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item.model.mjs +1 -1
  11. package/esm2022/lib/components/ca-activity-log-list/models/activity-log-list-data.model.mjs +2 -0
  12. package/esm2022/lib/components/ca-activity-log-list/models/company-user.model.mjs +2 -0
  13. package/esm2022/lib/components/ca-activity-log-list/models/entity-type-activity.model.mjs +2 -0
  14. package/esm2022/lib/components/ca-activity-log-list/models/index.mjs +7 -0
  15. package/esm2022/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.mjs +2 -5
  16. package/esm2022/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.mjs +17 -0
  17. package/esm2022/lib/components/ca-activity-log-list/utils/pipes/index.mjs +3 -0
  18. package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +122 -0
  19. package/esm2022/lib/components/ca-comment/directives/auto-resize.directive.mjs +43 -0
  20. package/esm2022/lib/components/ca-comment/directives/index.mjs +2 -0
  21. package/esm2022/lib/components/ca-comment/enums/index.mjs +2 -0
  22. package/esm2022/lib/components/ca-comment/enums/svg-icon.enum.mjs +8 -0
  23. package/esm2022/lib/components/ca-comment/modals/comment-modal/comment-modal.component.mjs +39 -0
  24. package/esm2022/lib/components/ca-comment/modals/comment-modal/svg-routes/index.mjs +2 -0
  25. package/esm2022/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.mjs +5 -0
  26. package/esm2022/lib/components/ca-comment/models/ca-comment-config.model.mjs +2 -0
  27. package/esm2022/lib/components/ca-comment/models/ca-delete-comment.model.mjs +3 -0
  28. package/esm2022/lib/components/ca-comment/models/ca-save-comment.model.mjs +2 -0
  29. package/esm2022/lib/components/ca-comment/models/ca-update-comment.model.mjs +2 -0
  30. package/esm2022/lib/components/ca-comment/models/index.mjs +5 -0
  31. package/esm2022/lib/components/ca-comment/pipes/icon.pipe.mjs +22 -0
  32. package/esm2022/lib/components/ca-comment/pipes/index.mjs +2 -0
  33. package/esm2022/lib/components/ca-comment/services/index.mjs +2 -0
  34. package/esm2022/lib/components/ca-comment/services/modal.service.mjs +31 -0
  35. package/esm2022/lib/components/ca-comment/utils/constants/comment.constant.mjs +10 -0
  36. package/esm2022/lib/components/ca-comment/utils/constants/index.mjs +2 -0
  37. package/esm2022/lib/components/ca-comment/utils/index.mjs +2 -0
  38. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +7 -34
  39. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +9 -26
  40. package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +169 -0
  41. package/esm2022/lib/components/ca-progress-expiration/enums/index.mjs +2 -0
  42. package/esm2022/lib/components/ca-progress-expiration/enums/time-units.enum.mjs +8 -0
  43. package/esm2022/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.mjs +17 -0
  44. package/esm2022/lib/components/ca-progress-expiration/models/index.mjs +8 -0
  45. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.mjs +2 -0
  46. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-color.model.mjs +2 -0
  47. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-template.model.mjs +2 -0
  48. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.mjs +2 -0
  49. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-title.model.mjs +2 -0
  50. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-type.model.mjs +2 -0
  51. package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration.model.mjs +2 -0
  52. package/esm2022/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.mjs +18 -0
  53. package/esm2022/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.mjs +57 -0
  54. package/esm2022/lib/components/ca-progress-expiration/pipes/index.mjs +3 -0
  55. package/esm2022/lib/components/ca-progress-expiration/utils/constants/index.mjs +2 -0
  56. package/esm2022/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.mjs +41 -0
  57. package/esm2022/lib/components/ca-progress-expiration/utils/index.mjs +2 -0
  58. package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +134 -0
  59. package/esm2022/lib/components/ca-todo/models/index.mjs +2 -0
  60. package/esm2022/lib/components/ca-todo/models/todo-config.model.mjs +2 -0
  61. package/esm2022/lib/components/ca-todo/utils/index.mjs +2 -0
  62. package/esm2022/lib/components/ca-todo/utils/svg-routes/index.mjs +2 -0
  63. package/esm2022/lib/components/ca-todo/utils/svg-routes/todo.routes.mjs +9 -0
  64. package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +5 -3
  65. package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +2 -2
  66. package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +3 -3
  67. package/esm2022/public-api.mjs +2 -1
  68. package/fesm2022/ca-components.mjs +2493 -1784
  69. package/fesm2022/ca-components.mjs.map +1 -1
  70. package/lib/animations/card-component.animation.d.ts +1 -0
  71. package/lib/ca-components.module.d.ts +7 -7
  72. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +9 -8
  73. package/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.d.ts +5 -0
  74. package/lib/components/ca-activity-log-list/enums/action-log-type.enum.d.ts +7 -0
  75. package/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.d.ts +4 -0
  76. package/lib/components/ca-activity-log-list/enums/index.d.ts +3 -0
  77. package/lib/components/ca-activity-log-list/models/action-log.model.d.ts +5 -0
  78. package/lib/components/ca-activity-log-list/models/activity-log-item-description.model.d.ts +5 -0
  79. package/lib/components/ca-activity-log-list/models/activity-log-item.model.d.ts +1 -21
  80. package/lib/components/ca-activity-log-list/models/activity-log-list-data.model.d.ts +5 -0
  81. package/lib/components/ca-activity-log-list/models/company-user.model.d.ts +7 -0
  82. package/lib/components/ca-activity-log-list/models/entity-type-activity.model.d.ts +4 -0
  83. package/lib/components/ca-activity-log-list/models/index.d.ts +6 -0
  84. package/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.d.ts +8 -0
  85. package/lib/components/ca-activity-log-list/utils/pipes/index.d.ts +2 -0
  86. package/lib/components/ca-comment/ca-comment.component.d.ts +21 -0
  87. package/lib/components/ca-comment/directives/auto-resize.directive.d.ts +11 -0
  88. package/lib/components/ca-comment/directives/index.d.ts +1 -0
  89. package/lib/components/ca-comment/enums/index.d.ts +1 -0
  90. package/lib/components/ca-comment/enums/svg-icon.enum.d.ts +6 -0
  91. package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.d.ts +17 -0
  92. package/lib/components/ca-comment/modals/comment-modal/svg-routes/index.d.ts +1 -0
  93. package/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.d.ts +4 -0
  94. package/lib/components/ca-comment/models/ca-comment-config.model.d.ts +11 -0
  95. package/lib/components/ca-comment/models/ca-delete-comment.model.d.ts +3 -0
  96. package/lib/components/ca-comment/models/ca-save-comment.model.d.ts +3 -0
  97. package/lib/components/ca-comment/models/ca-update-comment.model.d.ts +4 -0
  98. package/lib/components/ca-comment/models/index.d.ts +4 -0
  99. package/lib/components/ca-comment/pipes/icon.pipe.d.ts +8 -0
  100. package/lib/components/ca-comment/pipes/index.d.ts +1 -0
  101. package/lib/components/ca-comment/services/index.d.ts +1 -0
  102. package/lib/components/ca-comment/services/modal.service.d.ts +12 -0
  103. package/lib/components/ca-comment/utils/constants/comment.constant.d.ts +4 -0
  104. package/lib/components/ca-comment/utils/constants/index.d.ts +1 -0
  105. package/lib/components/ca-comment/utils/index.d.ts +1 -0
  106. package/lib/components/ca-period-content/ca-period-content.component.d.ts +10 -13
  107. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +5 -10
  108. package/lib/components/ca-progress-expiration/ca-progress-expiration.component.d.ts +23 -0
  109. package/lib/components/ca-progress-expiration/enums/index.d.ts +1 -0
  110. package/lib/components/ca-progress-expiration/enums/time-units.enum.d.ts +6 -0
  111. package/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.d.ts +1 -0
  112. package/lib/components/ca-progress-expiration/models/index.d.ts +7 -0
  113. package/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.d.ts +1 -0
  114. package/lib/components/ca-progress-expiration/models/progress-expiration-color.model.d.ts +4 -0
  115. package/lib/components/ca-progress-expiration/models/progress-expiration-template.model.d.ts +1 -0
  116. package/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.d.ts +1 -0
  117. package/lib/components/ca-progress-expiration/models/progress-expiration-title.model.d.ts +5 -0
  118. package/lib/components/ca-progress-expiration/models/progress-expiration-type.model.d.ts +1 -0
  119. package/lib/components/ca-progress-expiration/models/progress-expiration.model.d.ts +12 -0
  120. package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.d.ts +7 -0
  121. package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.d.ts +7 -0
  122. package/lib/components/ca-progress-expiration/pipes/index.d.ts +2 -0
  123. package/lib/components/ca-progress-expiration/utils/constants/index.d.ts +1 -0
  124. package/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.d.ts +11 -0
  125. package/lib/components/ca-progress-expiration/utils/index.d.ts +1 -0
  126. package/lib/components/ca-todo/ca-todo.component.d.ts +54 -0
  127. package/lib/components/ca-todo/models/index.d.ts +1 -0
  128. package/lib/components/ca-todo/models/todo-config.model.d.ts +15 -0
  129. package/lib/components/ca-todo/utils/index.d.ts +1 -0
  130. package/lib/components/ca-todo/utils/svg-routes/index.d.ts +1 -0
  131. package/lib/components/ca-todo/utils/svg-routes/todo.routes.d.ts +8 -0
  132. package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +2 -1
  133. package/package.json +1 -1
  134. package/public-api.d.ts +1 -0
  135. package/src/assets/ca-components/svg/todo/attachment.svg +3 -0
  136. package/src/assets/ca-components/svg/todo/comments.svg +4 -0
  137. package/src/assets/ca-components/svg/todo/dropdown.svg +3 -0
  138. package/src/assets/ca-components/svg/todo/plus.svg +3 -0
  139. package/src/assets/ca-components/svg/todo/upload.svg +3 -0
  140. package/src/assets/ca-components/svg/todo/web.svg +3 -0
  141. package/esm2022/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.mjs +0 -42
  142. package/esm2022/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.mjs +0 -18
  143. package/esm2022/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.mjs +0 -5
  144. package/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.d.ts +0 -13
  145. package/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.d.ts +0 -14
  146. package/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.d.ts +0 -4
@@ -0,0 +1,43 @@
1
+ import { Directive, HostListener, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class AutoResizeDirective {
4
+ constructor(el) {
5
+ this.el = el;
6
+ }
7
+ ngAfterViewInit() {
8
+ this.autoresize();
9
+ }
10
+ onInput() {
11
+ this.autoresize();
12
+ }
13
+ autoresize() {
14
+ const textarea = this.el.nativeElement;
15
+ const container = textarea.closest('.comment-container');
16
+ if (textarea.value === '') {
17
+ textarea.style.height = '24px';
18
+ if (container) {
19
+ container.style.height = '54px';
20
+ }
21
+ }
22
+ else {
23
+ textarea.style.height = '24px';
24
+ textarea.style.height = textarea.scrollHeight + 'px';
25
+ if (container) {
26
+ container.style.height = textarea.scrollHeight + 30 + 'px';
27
+ }
28
+ }
29
+ }
30
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AutoResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
31
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AutoResizeDirective, isStandalone: true, selector: "[appAutoResize]", host: { listeners: { "input": "onInput()" } }, ngImport: i0 }); }
32
+ }
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AutoResizeDirective, decorators: [{
34
+ type: Directive,
35
+ args: [{
36
+ standalone: true,
37
+ selector: '[appAutoResize]',
38
+ }]
39
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { onInput: [{
40
+ type: HostListener,
41
+ args: ['input']
42
+ }] } });
43
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0by1yZXNpemUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtY29tbWVudC9kaXJlY3RpdmVzL2F1dG8tcmVzaXplLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0gsU0FBUyxFQUVULFlBQVksR0FFZixNQUFNLGVBQWUsQ0FBQzs7QUFNdkIsTUFBTSxPQUFPLG1CQUFtQjtJQUM1QixZQUFvQixFQUFjO1FBQWQsT0FBRSxHQUFGLEVBQUUsQ0FBWTtJQUFHLENBQUM7SUFFdEMsZUFBZTtRQUNYLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUN0QixDQUFDO0lBR0QsT0FBTztRQUNILElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUN0QixDQUFDO0lBRU8sVUFBVTtRQUNkLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBb0MsQ0FBQztRQUM5RCxNQUFNLFNBQVMsR0FBRyxRQUFRLENBQUMsT0FBTyxDQUFDLG9CQUFvQixDQUFnQixDQUFDO1FBRXhFLElBQUksUUFBUSxDQUFDLEtBQUssS0FBSyxFQUFFLEVBQUU7WUFDdkIsUUFBUSxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQy9CLElBQUksU0FBUyxFQUFFO2dCQUNYLFNBQVMsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQzthQUNuQztTQUNKO2FBQU07WUFDSCxRQUFRLENBQUMsS0FBSyxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDL0IsUUFBUSxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsUUFBUSxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUM7WUFDckQsSUFBSSxTQUFTLEVBQUU7Z0JBQ1gsU0FBUyxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsUUFBUSxDQUFDLFlBQVksR0FBRyxFQUFFLEdBQUcsSUFBSSxDQUFDO2FBQzlEO1NBQ0o7SUFDTCxDQUFDOytHQTVCUSxtQkFBbUI7bUdBQW5CLG1CQUFtQjs7NEZBQW5CLG1CQUFtQjtrQkFKL0IsU0FBUzttQkFBQztvQkFDUCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFLGlCQUFpQjtpQkFDOUI7aUdBU0csT0FBTztzQkFETixZQUFZO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIERpcmVjdGl2ZSxcbiAgICBFbGVtZW50UmVmLFxuICAgIEhvc3RMaXN0ZW5lcixcbiAgICBBZnRlclZpZXdJbml0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBzZWxlY3RvcjogJ1thcHBBdXRvUmVzaXplXScsXG59KVxuZXhwb3J0IGNsYXNzIEF1dG9SZXNpemVEaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0IHtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsOiBFbGVtZW50UmVmKSB7fVxuXG4gICAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmF1dG9yZXNpemUoKTtcbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKCdpbnB1dCcpXG4gICAgb25JbnB1dCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5hdXRvcmVzaXplKCk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBhdXRvcmVzaXplKCk6IHZvaWQge1xuICAgICAgICBjb25zdCB0ZXh0YXJlYSA9IHRoaXMuZWwubmF0aXZlRWxlbWVudCBhcyBIVE1MVGV4dEFyZWFFbGVtZW50O1xuICAgICAgICBjb25zdCBjb250YWluZXIgPSB0ZXh0YXJlYS5jbG9zZXN0KCcuY29tbWVudC1jb250YWluZXInKSBhcyBIVE1MRWxlbWVudDtcblxuICAgICAgICBpZiAodGV4dGFyZWEudmFsdWUgPT09ICcnKSB7XG4gICAgICAgICAgICB0ZXh0YXJlYS5zdHlsZS5oZWlnaHQgPSAnMjRweCc7XG4gICAgICAgICAgICBpZiAoY29udGFpbmVyKSB7XG4gICAgICAgICAgICAgICAgY29udGFpbmVyLnN0eWxlLmhlaWdodCA9ICc1NHB4JztcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRleHRhcmVhLnN0eWxlLmhlaWdodCA9ICcyNHB4JztcbiAgICAgICAgICAgIHRleHRhcmVhLnN0eWxlLmhlaWdodCA9IHRleHRhcmVhLnNjcm9sbEhlaWdodCArICdweCc7XG4gICAgICAgICAgICBpZiAoY29udGFpbmVyKSB7XG4gICAgICAgICAgICAgICAgY29udGFpbmVyLnN0eWxlLmhlaWdodCA9IHRleHRhcmVhLnNjcm9sbEhlaWdodCArIDMwICsgJ3B4JztcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './auto-resize.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1jb21tZW50L2RpcmVjdGl2ZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYXV0by1yZXNpemUuZGlyZWN0aXZlJzsiXX0=
@@ -0,0 +1,2 @@
1
+ export * from './svg-icon.enum';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1jb21tZW50L2VudW1zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3N2Zy1pY29uLmVudW0nOyJdfQ==
@@ -0,0 +1,8 @@
1
+ export var CommentAction;
2
+ (function (CommentAction) {
3
+ CommentAction["CONFIRM"] = "CONFIRM";
4
+ CommentAction["CANCEL"] = "CANCEL";
5
+ CommentAction["EDIT"] = "EDIT";
6
+ CommentAction["DELETE"] = "DELETE";
7
+ })(CommentAction || (CommentAction = {}));
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ZnLWljb24uZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWNvbW1lbnQvZW51bXMvc3ZnLWljb24uZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxhQUtYO0FBTEQsV0FBWSxhQUFhO0lBQ3JCLG9DQUFtQixDQUFBO0lBQ25CLGtDQUFpQixDQUFBO0lBQ2pCLDhCQUFhLENBQUE7SUFDYixrQ0FBaUIsQ0FBQTtBQUNyQixDQUFDLEVBTFcsYUFBYSxLQUFiLGFBQWEsUUFLeEIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBDb21tZW50QWN0aW9uIHtcbiAgICBDT05GSVJNID0gJ0NPTkZJUk0nLFxuICAgIENBTkNFTCA9ICdDQU5DRUwnLFxuICAgIEVESVQgPSAnRURJVCcsXG4gICAgREVMRVRFID0gJ0RFTEVURSdcbn1cbiJdfQ==