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.
- package/esm2022/lib/animations/card-component.animation.mjs +64 -0
- package/esm2022/lib/ca-components.module.mjs +5 -5
- package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +82 -29
- package/esm2022/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.mjs +7 -0
- package/esm2022/lib/components/ca-activity-log-list/enums/action-log-type.enum.mjs +9 -0
- package/esm2022/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.mjs +6 -0
- package/esm2022/lib/components/ca-activity-log-list/enums/index.mjs +4 -0
- package/esm2022/lib/components/ca-activity-log-list/models/action-log.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item-description.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item.model.mjs +1 -1
- package/esm2022/lib/components/ca-activity-log-list/models/activity-log-list-data.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/models/company-user.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/models/entity-type-activity.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/models/index.mjs +7 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.mjs +2 -5
- package/esm2022/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/pipes/index.mjs +3 -0
- package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +122 -0
- package/esm2022/lib/components/ca-comment/directives/auto-resize.directive.mjs +43 -0
- package/esm2022/lib/components/ca-comment/directives/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/enums/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/enums/svg-icon.enum.mjs +8 -0
- package/esm2022/lib/components/ca-comment/modals/comment-modal/comment-modal.component.mjs +39 -0
- package/esm2022/lib/components/ca-comment/modals/comment-modal/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.mjs +5 -0
- package/esm2022/lib/components/ca-comment/models/ca-comment-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-comment/models/ca-delete-comment.model.mjs +3 -0
- package/esm2022/lib/components/ca-comment/models/ca-save-comment.model.mjs +2 -0
- package/esm2022/lib/components/ca-comment/models/ca-update-comment.model.mjs +2 -0
- package/esm2022/lib/components/ca-comment/models/index.mjs +5 -0
- package/esm2022/lib/components/ca-comment/pipes/icon.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-comment/pipes/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/services/modal.service.mjs +31 -0
- package/esm2022/lib/components/ca-comment/utils/constants/comment.constant.mjs +10 -0
- package/esm2022/lib/components/ca-comment/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-comment/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +7 -34
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +9 -26
- package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +169 -0
- package/esm2022/lib/components/ca-progress-expiration/enums/index.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/enums/time-units.enum.mjs +8 -0
- package/esm2022/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.mjs +17 -0
- package/esm2022/lib/components/ca-progress-expiration/models/index.mjs +8 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-color.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-template.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-title.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration-type.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/models/progress-expiration.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.mjs +18 -0
- package/esm2022/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.mjs +57 -0
- package/esm2022/lib/components/ca-progress-expiration/pipes/index.mjs +3 -0
- package/esm2022/lib/components/ca-progress-expiration/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.mjs +41 -0
- package/esm2022/lib/components/ca-progress-expiration/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +134 -0
- package/esm2022/lib/components/ca-todo/models/index.mjs +2 -0
- package/esm2022/lib/components/ca-todo/models/todo-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-todo/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-todo/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-todo/utils/svg-routes/todo.routes.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +5 -3
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +2 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +2493 -1784
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animations/card-component.animation.d.ts +1 -0
- package/lib/ca-components.module.d.ts +7 -7
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +9 -8
- package/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.d.ts +5 -0
- package/lib/components/ca-activity-log-list/enums/action-log-type.enum.d.ts +7 -0
- package/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.d.ts +4 -0
- package/lib/components/ca-activity-log-list/enums/index.d.ts +3 -0
- package/lib/components/ca-activity-log-list/models/action-log.model.d.ts +5 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item-description.model.d.ts +5 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item.model.d.ts +1 -21
- package/lib/components/ca-activity-log-list/models/activity-log-list-data.model.d.ts +5 -0
- package/lib/components/ca-activity-log-list/models/company-user.model.d.ts +7 -0
- package/lib/components/ca-activity-log-list/models/entity-type-activity.model.d.ts +4 -0
- package/lib/components/ca-activity-log-list/models/index.d.ts +6 -0
- package/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.d.ts +8 -0
- package/lib/components/ca-activity-log-list/utils/pipes/index.d.ts +2 -0
- package/lib/components/ca-comment/ca-comment.component.d.ts +21 -0
- package/lib/components/ca-comment/directives/auto-resize.directive.d.ts +11 -0
- package/lib/components/ca-comment/directives/index.d.ts +1 -0
- package/lib/components/ca-comment/enums/index.d.ts +1 -0
- package/lib/components/ca-comment/enums/svg-icon.enum.d.ts +6 -0
- package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.d.ts +17 -0
- package/lib/components/ca-comment/modals/comment-modal/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.d.ts +4 -0
- package/lib/components/ca-comment/models/ca-comment-config.model.d.ts +11 -0
- package/lib/components/ca-comment/models/ca-delete-comment.model.d.ts +3 -0
- package/lib/components/ca-comment/models/ca-save-comment.model.d.ts +3 -0
- package/lib/components/ca-comment/models/ca-update-comment.model.d.ts +4 -0
- package/lib/components/ca-comment/models/index.d.ts +4 -0
- package/lib/components/ca-comment/pipes/icon.pipe.d.ts +8 -0
- package/lib/components/ca-comment/pipes/index.d.ts +1 -0
- package/lib/components/ca-comment/services/index.d.ts +1 -0
- package/lib/components/ca-comment/services/modal.service.d.ts +12 -0
- package/lib/components/ca-comment/utils/constants/comment.constant.d.ts +4 -0
- package/lib/components/ca-comment/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-comment/utils/index.d.ts +1 -0
- package/lib/components/ca-period-content/ca-period-content.component.d.ts +10 -13
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +5 -10
- package/lib/components/ca-progress-expiration/ca-progress-expiration.component.d.ts +23 -0
- package/lib/components/ca-progress-expiration/enums/index.d.ts +1 -0
- package/lib/components/ca-progress-expiration/enums/time-units.enum.d.ts +6 -0
- package/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.d.ts +1 -0
- package/lib/components/ca-progress-expiration/models/index.d.ts +7 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.d.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-color.model.d.ts +4 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-template.model.d.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.d.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-title.model.d.ts +5 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-type.model.d.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration.model.d.ts +12 -0
- package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.d.ts +7 -0
- package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.d.ts +7 -0
- package/lib/components/ca-progress-expiration/pipes/index.d.ts +2 -0
- package/lib/components/ca-progress-expiration/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.d.ts +11 -0
- package/lib/components/ca-progress-expiration/utils/index.d.ts +1 -0
- package/lib/components/ca-todo/ca-todo.component.d.ts +54 -0
- package/lib/components/ca-todo/models/index.d.ts +1 -0
- package/lib/components/ca-todo/models/todo-config.model.d.ts +15 -0
- package/lib/components/ca-todo/utils/index.d.ts +1 -0
- package/lib/components/ca-todo/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-todo/utils/svg-routes/todo.routes.d.ts +8 -0
- package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/assets/ca-components/svg/todo/attachment.svg +3 -0
- package/src/assets/ca-components/svg/todo/comments.svg +4 -0
- package/src/assets/ca-components/svg/todo/dropdown.svg +3 -0
- package/src/assets/ca-components/svg/todo/plus.svg +3 -0
- package/src/assets/ca-components/svg/todo/upload.svg +3 -0
- package/src/assets/ca-components/svg/todo/web.svg +3 -0
- package/esm2022/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.mjs +0 -42
- package/esm2022/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.mjs +0 -18
- package/esm2022/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.mjs +0 -5
- package/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.d.ts +0 -13
- package/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.d.ts +0 -14
- 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==
|