@seniorsistemas/angular-components 16.2.3 → 16.3.1
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/bundles/seniorsistemas-angular-components.umd.js +258 -11
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/profile-picture-picker/index.d.ts +3 -0
- package/components/profile-picture-picker/models/confirmation-texts.d.ts +6 -0
- package/components/profile-picture-picker/models/cropper-labels-config.d.ts +9 -0
- package/components/profile-picture-picker/models/file-validation-errors.d.ts +10 -0
- package/components/profile-picture-picker/models/index.d.ts +2 -0
- package/components/profile-picture-picker/profile-picture-picker.component.d.ts +42 -0
- package/components/profile-picture-picker/profile-picture-picker.module.d.ts +2 -0
- package/components/thumbnail/thumbnail.service.d.ts +0 -1
- package/esm2015/components/image-cropper/image-cropper.component.js +8 -6
- package/esm2015/components/profile-picture-picker/index.js +4 -0
- package/esm2015/components/profile-picture-picker/models/confirmation-texts.js +1 -0
- package/esm2015/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
- package/esm2015/components/profile-picture-picker/models/file-validation-errors.js +8 -0
- package/esm2015/components/profile-picture-picker/models/index.js +2 -0
- package/esm2015/components/profile-picture-picker/profile-picture-picker.component.js +214 -0
- package/esm2015/components/profile-picture-picker/profile-picture-picker.module.js +31 -0
- package/esm2015/components/thumbnail/thumbnail.component.js +5 -4
- package/esm2015/components/thumbnail/thumbnail.service.js +1 -2
- package/esm2015/public-api.js +2 -1
- package/esm5/components/image-cropper/image-cropper.component.js +8 -6
- package/esm5/components/profile-picture-picker/index.js +4 -0
- package/esm5/components/profile-picture-picker/models/confirmation-texts.js +1 -0
- package/esm5/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
- package/esm5/components/profile-picture-picker/models/file-validation-errors.js +8 -0
- package/esm5/components/profile-picture-picker/models/index.js +2 -0
- package/esm5/components/profile-picture-picker/profile-picture-picker.component.js +217 -0
- package/esm5/components/profile-picture-picker/profile-picture-picker.module.js +34 -0
- package/esm5/components/thumbnail/thumbnail.component.js +5 -4
- package/esm5/components/thumbnail/thumbnail.service.js +1 -1
- package/esm5/public-api.js +2 -1
- package/fesm2015/seniorsistemas-angular-components.js +249 -9
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +255 -8
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -43,6 +43,8 @@ import * as elementResizeDetectorMaker_ from 'element-resize-detector';
|
|
|
43
43
|
import { FocusTrapFactory, A11yModule } from '@angular/cdk/a11y';
|
|
44
44
|
import { ScrollPanelModule } from 'primeng/scrollpanel';
|
|
45
45
|
import { Sidebar, SidebarModule as SidebarModule$1 } from 'primeng/sidebar';
|
|
46
|
+
import { ConfirmationService } from 'primeng/api';
|
|
47
|
+
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
46
48
|
import { EditorView } from '@codemirror/view';
|
|
47
49
|
import { StateField, StateEffect, EditorState } from '@codemirror/state';
|
|
48
50
|
import { setDiagnostics } from '@codemirror/lint';
|
|
@@ -6800,9 +6802,11 @@ var ImageCropperComponent = /** @class */ (function () {
|
|
|
6800
6802
|
this.croppedCanvas.emit();
|
|
6801
6803
|
}
|
|
6802
6804
|
else {
|
|
6803
|
-
var
|
|
6804
|
-
|
|
6805
|
-
|
|
6805
|
+
var _croppedCanvas = this.rounded
|
|
6806
|
+
? this.getRoundedCanvas(this.cropper.getCroppedCanvas())
|
|
6807
|
+
: this.cropper.getCroppedCanvas();
|
|
6808
|
+
this.croppedCanvas.emit(_croppedCanvas);
|
|
6809
|
+
this.croppedImage.emit(_croppedCanvas.toDataURL());
|
|
6806
6810
|
}
|
|
6807
6811
|
this.visibleChange.emit(false);
|
|
6808
6812
|
};
|
|
@@ -6902,9 +6906,9 @@ var ImageCropperComponent = /** @class */ (function () {
|
|
|
6902
6906
|
ImageCropperComponent = ImageCropperComponent_1 = __decorate([
|
|
6903
6907
|
Component({
|
|
6904
6908
|
selector: "s-image-cropper",
|
|
6905
|
-
template: "<div [id]=\"id\">\n <p-dialog
|
|
6909
|
+
template: "<div [id]=\"id\">\n <p-dialog\n styleClass=\"s-image-cropper {{rounded ? 's-image-cropper--rounded' : ''}}\"\n [header]=\"headerSection ? '' : header\"\n [visible]=\"visible\"\n (visibleChange)=\"onModalVisibleChange($event)\"\n [modal]=\"true\"\n [blockScroll]=\"true\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n [closeOnEscape]=\"allowCancel\"\n [closable]=\"allowCancel\"\n appendTo=\"body\">\n\n <p-header *ngIf=\"headerSection\">\n <ng-content select=\"s-header\"></ng-content>\n </p-header>\n\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n *ngIf=\"!imageSource\"\n [title]=\"emptyStateTitle\"\n [iconClass]=\"emptyStateIconClass\"\n [primaryActionLabel]=\"emptyStateActionLabel\"\n (primaryAction)=\"onChangeImage()\">\n </s-empty-state>\n\n <div [attr.data-hidden]=\"!imageSource\" class=\"image-container\">\n <img\n [id]=\"id + '-cropper'\"\n #image\n [src]=\"imageSource || ''\"\n alt=\"cropped image\"/>\n </div>\n\n <p-footer>\n <div class=\"ui-fluid\" *ngIf=\"!footerSection\">\n <div class=\"ui-g button-container\">\n\n <div *ngIf=\"allowCancel\" class=\"ui-sm-12 ui-md-3 ui-lg-2 ui-xl-2\">\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"cancelLabel\"\n (onClick)=\"onCancel()\">\n </s-button>\n </div>\n\n <div *ngIf=\"imageSource && allowRemove\" class=\"ui-sm-12 ui-md-3 ui-lg-2 ui-xl-2\">\n <s-button\n [id]=\"id + '-remove-button'\"\n type=\"button\"\n priority=\"secondary\"\n [label]=\"removeLabel\"\n (onClick)=\"onRemoveImage()\">\n </s-button>\n </div>\n\n <div *ngIf=\"imageSource && allowSelectAnother\" class=\"ui-sm-12 ui-md-3 ui-lg-2 ui-xl-2\">\n <s-button\n [id]=\"id + '-select-another-button'\"\n type=\"button\"\n priority=\"secondary\"\n [label]=\"selectAnotherLabel\"\n (onClick)=\"onChangeImage()\">\n </s-button>\n </div>\n\n <div class=\"ui-sm-12 ui-md-3 ui-lg-2 ui-xl-2\">\n <s-button\n [id]=\"id + '-crop-button'\"\n type=\"button\"\n [label]=\"cropLabel\"\n (onClick)=\"onCropImage()\">\n </s-button>\n </div>\n </div>\n </div>\n\n <ng-content select=\"s-footer\" *ngIf=\"footerSection\"></ng-content>\n </p-footer>\n </p-dialog>\n</div>",
|
|
6906
6910
|
encapsulation: ViewEncapsulation.None,
|
|
6907
|
-
styles: ["/*!\n * Cropper.js v1.4.1\n * https://fengyuanchen.github.io/cropperjs\n *\n * Copyright 2015-present Chen Fengyuan\n * Released under the MIT license\n *\n * Date: 2018-07-15T09:54:43.167Z\n */.cropper-container{-moz-user-select:none;-ms-touch-action:none;-ms-user-select:none;-webkit-user-select:none;direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:rgba(51,153,255,.75) solid 1px;overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:\" \";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:\" \";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}", ".s-image-cropper{border-radius:0!important;
|
|
6911
|
+
styles: ["/*!\n * Cropper.js v1.4.1\n * https://fengyuanchen.github.io/cropperjs\n *\n * Copyright 2015-present Chen Fengyuan\n * Released under the MIT license\n *\n * Date: 2018-07-15T09:54:43.167Z\n */.cropper-container{-moz-user-select:none;-ms-touch-action:none;-ms-user-select:none;-webkit-user-select:none;direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:rgba(51,153,255,.75) solid 1px;overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:\" \";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:\" \";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}", ".s-image-cropper{border-radius:0!important;height:80%!important;max-width:100%!important;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column}.s-image-cropper .ui-dialog-content{overflow:hidden;height:auto!important;-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.s-image-cropper .ui-dialog-footer,.s-image-cropper .ui-dialog-header{-ms-flex-negative:0;flex-shrink:0;direction:ltr}.s-image-cropper .image-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;height:100%}.s-image-cropper img{max-width:100%;max-height:100%}.s-image-cropper .button-container{-ms-flex-flow:wrap-reverse;flex-flow:wrap-reverse;-ms-flex-pack:end;justify-content:flex-end}.s-image-cropper .cropper-view-box{outline:#fff dashed 2px}.s-image-cropper .cropper-line{opacity:0}.s-image-cropper .cropper-point{background-color:#fff;opacity:1;height:15px;width:15px;border-radius:50%}.s-image-cropper .cropper-point.point-e{right:-8.5px;top:calc(50% - 4.5px)}.s-image-cropper .cropper-point.point-n{top:-8.5px;left:calc(50% - 4.5px)}.s-image-cropper .cropper-point.point-w{left:-8.5px;top:calc(50% - 4.5px)}.s-image-cropper .cropper-point.point-s{bottom:-8.5px;left:calc(50% - 4.5px)}.s-image-cropper .cropper-point.point-ne{right:-8.5px;top:-8.5px}.s-image-cropper .cropper-point.point-nw{left:-8.5px;top:-8.5px}.s-image-cropper .cropper-point.point-sw{left:-8.5px;bottom:-8.5px}.s-image-cropper .cropper-point.point-se{right:-8.5px;bottom:-8.5px}.s-image-cropper--rounded .cropper-face,.s-image-cropper--rounded .cropper-view-box{border-radius:50%}.s-image-cropper--rounded .cropper-view-box{outline:rgba(255,255,255,.3) dashed 1px}.s-image-cropper--rounded .cropper-view-box:after{border:2px dashed #fff;border-radius:50%;content:\"\";height:100%;left:0;position:absolute;top:0;width:100%}@media (max-width:767px){.s-image-cropper{border:none!important;top:0!important;left:0!important;width:100%!important;height:100%!important}}@media (min-width:768px){.s-image-cropper{width:80%!important}}@media (min-width:1200px){.s-image-cropper{width:60%!important}}"]
|
|
6908
6912
|
})
|
|
6909
6913
|
], ImageCropperComponent);
|
|
6910
6914
|
return ImageCropperComponent;
|
|
@@ -7077,12 +7081,13 @@ var ThumbnailComponent = /** @class */ (function () {
|
|
|
7077
7081
|
};
|
|
7078
7082
|
ThumbnailComponent.prototype.ngAfterViewInit = function () {
|
|
7079
7083
|
var _this = this;
|
|
7080
|
-
if (this.imgEl)
|
|
7084
|
+
if (this.imgEl) {
|
|
7081
7085
|
this.imgEl.nativeElement.addEventListener("load", function () {
|
|
7082
7086
|
from(_this.thumbnailService.getBinaryFile(_this.imgEl.nativeElement))
|
|
7083
7087
|
.pipe(takeUntil(_this.ngUnsubscribe))
|
|
7084
7088
|
.subscribe(function (orientation) { return (_this.orientation = orientation); });
|
|
7085
7089
|
});
|
|
7090
|
+
}
|
|
7086
7091
|
};
|
|
7087
7092
|
var ThumbnailComponent_1;
|
|
7088
7093
|
ThumbnailComponent.nextId = 0;
|
|
@@ -7125,7 +7130,7 @@ var ThumbnailComponent = /** @class */ (function () {
|
|
|
7125
7130
|
ThumbnailComponent = ThumbnailComponent_1 = __decorate([
|
|
7126
7131
|
Component({
|
|
7127
7132
|
selector: "s-thumbnail",
|
|
7128
|
-
template: "<div
|
|
7133
|
+
template: "<div\n [id]=\"id\"\n class=\"thumbnail-container thumbnail-container--{{size}}\"\n [ngClass]=\"{\n 'thumbnail-container--with-action': hasAction,\n 'thumbnail-container--brand': isBrand\n }\">\n <div\n [id]=\"id + '-image-container'\"\n *ngIf=\"imageSource || imageFallback\"\n class=\"image-container\"\n [ngClass]=\"{\n 'image-container--rounded': !isBrand\n }\">\n <img\n #img\n [id]=\"id + '-image'\"\n (error)=\"fallback = true\"\n [src]=\"imageSource\"\n [alt]=\"imageAlt\"\n *ngIf=\"!fallback\"\n [ngClass]=\"{\n 'smallThumbnail': isTile,\n 'exif-orientation-2': orientation == 2,\n 'exif-orientation-3': orientation == 3,\n 'exif-orientation-4': orientation == 4,\n 'exif-orientation-5': orientation == 5,\n 'exif-orientation-6': orientation == 6,\n 'exif-orientation-7': orientation == 7,\n 'exif-orientation-8': orientation == 8\n }\"/>\n\n <img\n #img\n [id]=\"id + '-image-fallback'\"\n (error)=\"imageFallback = undefined\"\n [src]=\"imageFallback\"\n [alt]=\"imageAlt\"\n *ngIf=\"fallback && imageFallback\"\n [ngClass]=\"{\n 'smallThumbnail': isTile,\n 'exif-orientation-2': orientation == 2,\n 'exif-orientation-3': orientation == 3,\n 'exif-orientation-4': orientation == 4,\n 'exif-orientation-5': orientation == 5,\n 'exif-orientation-6': orientation == 6,\n 'exif-orientation-7': orientation == 7,\n 'exif-orientation-8': orientation == 8\n }\"/>\n\n <i\n *ngIf=\"fallback && !imageFallback\"\n ngClass=\"far fa-image\"\n class=\"fallback-img-color\">\n </i>\n </div>\n <div\n [id]=\"id + '-action-icon-container'\"\n *ngIf=\"hasAction\"\n class=\"action-icon-container action-icon-container--{{size}}\">\n <span\n [id]=\"id + '-action-icon'\"\n [class]=\"actionIconClass\"\n aria-hidden=\"true\">\n </span>\n </div>\n <div\n [id]=\"id + '-icon-container'\"\n *ngIf=\"!imageSource && !imageFallback\"\n class=\"icon-container icon-container--{{size}}\"\n [ngClass]=\"{'image-container--rounded': !isBrand}\">\n <span\n [id]=\"id + '-icon'\"\n [class]=\"iconClass\"\n aria-hidden=\"true\">\n </span>\n </div>\n\n <ng-content></ng-content>\n</div>\n",
|
|
7129
7134
|
styles: [":host{display:inline-block}.thumbnail-container{color:#fff;position:relative;text-align:center}.thumbnail-container--large{font-size:50px;height:100px;width:100px}.thumbnail-container--large.thumbnail-container--brand{width:200px}.thumbnail-container--medium{font-size:40px;height:70px;width:70px}.thumbnail-container--medium.thumbnail-container--brand{width:140px}.thumbnail-container--small{font-size:22px;height:40px;width:40px}.thumbnail-container--small.thumbnail-container--brand{width:80px}.thumbnail-container--with-action{cursor:pointer}.action-icon-container{background-color:#428bca;border-radius:50%;bottom:0;position:absolute;right:0}.action-icon-container--large,.action-icon-container--medium{font-size:10pt;height:25px;padding:3px;width:25px}.action-icon-container--small{font-size:6pt;height:16px;padding:2px;width:16px}.icon-container,.image-container{-ms-flex-align:center;align-items:center;height:100%;overflow:hidden;width:100%}.icon-container--rounded,.image-container--rounded{border-radius:50%}.smallThumbnail{height:40px!important}.icon-container{background-color:#ccc;color:#fff}.icon-container--large{line-height:98px}.icon-container--medium{line-height:68px}.icon-container--small{line-height:38px}.image-container{-ms-flex-align:center;align-items:center;background-color:#ccc;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.image-container img{width:100%}.image-container img.exif-orientation-2{transform:rotateY(180deg)}.image-container img.exif-orientation-3{transform:rotate(180deg)}.image-container img.exif-orientation-4{transform:rotate(180deg) rotateY(180deg)}.image-container img.exif-orientation-5{transform:rotate(270deg) rotateY(180deg)}.image-container img.exif-orientation-6{transform:rotate(90deg)}.image-container img.exif-orientation-7{transform:rotate(90deg) rotateY(180deg)}.image-container img.exif-orientation-8{transform:rotate(270deg)}.fallback-img-color{color:#fff}"]
|
|
7130
7135
|
})
|
|
7131
7136
|
], ThumbnailComponent);
|
|
@@ -8289,6 +8294,248 @@ var TileModule = /** @class */ (function () {
|
|
|
8289
8294
|
return TileModule;
|
|
8290
8295
|
}());
|
|
8291
8296
|
|
|
8297
|
+
var FileValidation;
|
|
8298
|
+
(function (FileValidation) {
|
|
8299
|
+
FileValidation["MaxFileSize"] = "maxFileSize";
|
|
8300
|
+
FileValidation["MaxFileLimit"] = "maxFileLimit";
|
|
8301
|
+
FileValidation["TypeInvalid"] = "typeInvalid";
|
|
8302
|
+
FileValidation["UnsupportedExtension"] = "unsupportedExtension";
|
|
8303
|
+
})(FileValidation || (FileValidation = {}));
|
|
8304
|
+
|
|
8305
|
+
var ProfilePicturePickerComponent = /** @class */ (function () {
|
|
8306
|
+
function ProfilePicturePickerComponent(imageCropperService, confirmationService) {
|
|
8307
|
+
this.imageCropperService = imageCropperService;
|
|
8308
|
+
this.confirmationService = confirmationService;
|
|
8309
|
+
this.aspectRatio = 1;
|
|
8310
|
+
this.removeButtonLabel = "Remover";
|
|
8311
|
+
this.changeButtonLabel = "Alterar foto";
|
|
8312
|
+
this.confirmationTexts = {
|
|
8313
|
+
removalHeader: "Remover foto de perfil",
|
|
8314
|
+
removalMessage: "Deseja remover sua foto de perfil? Não pode ser revertida.",
|
|
8315
|
+
removalAcceptLabel: "Remover",
|
|
8316
|
+
removalRejectLabel: "Cancelar",
|
|
8317
|
+
};
|
|
8318
|
+
this.supportedExtensions = [];
|
|
8319
|
+
this.changedImage = new EventEmitter();
|
|
8320
|
+
this.invalidFile = new EventEmitter();
|
|
8321
|
+
}
|
|
8322
|
+
ProfilePicturePickerComponent.prototype.ngOnInit = function () {
|
|
8323
|
+
this._normalizeSuportedExtensions();
|
|
8324
|
+
};
|
|
8325
|
+
ProfilePicturePickerComponent.prototype.onDragOver = function (event) {
|
|
8326
|
+
event.preventDefault();
|
|
8327
|
+
event.stopPropagation();
|
|
8328
|
+
};
|
|
8329
|
+
ProfilePicturePickerComponent.prototype.onDragLeave = function (event) {
|
|
8330
|
+
event.preventDefault();
|
|
8331
|
+
event.stopPropagation();
|
|
8332
|
+
};
|
|
8333
|
+
ProfilePicturePickerComponent.prototype.onDrop = function (event) {
|
|
8334
|
+
event.preventDefault();
|
|
8335
|
+
event.stopPropagation();
|
|
8336
|
+
var files = [];
|
|
8337
|
+
var dataTransferFiles = event.dataTransfer.files;
|
|
8338
|
+
for (var i = 0; i < dataTransferFiles.length; i++) {
|
|
8339
|
+
files.push(dataTransferFiles.item(i));
|
|
8340
|
+
}
|
|
8341
|
+
this._showImageCropper(files);
|
|
8342
|
+
};
|
|
8343
|
+
// Verificando o redimensionamento para ajustar o design para ficar responsivo.
|
|
8344
|
+
ProfilePicturePickerComponent.prototype.onResize = function () {
|
|
8345
|
+
if (this.uploadPicture && this.info && this.thumbnail) {
|
|
8346
|
+
var uploadPictureWidth = this._getWidthElement(this.uploadPicture);
|
|
8347
|
+
var infoWidth = this._getWidthElement(this.info);
|
|
8348
|
+
var thumbnailWidth = this._getWidthElement(this.thumbnail);
|
|
8349
|
+
if (thumbnailWidth + infoWidth > uploadPictureWidth) {
|
|
8350
|
+
this.uploadPicture.nativeElement.classList.add("upload-picture--small");
|
|
8351
|
+
}
|
|
8352
|
+
else {
|
|
8353
|
+
this.uploadPicture.nativeElement.classList.remove("upload-picture--small");
|
|
8354
|
+
}
|
|
8355
|
+
}
|
|
8356
|
+
};
|
|
8357
|
+
ProfilePicturePickerComponent.prototype.selectPhoto = function () {
|
|
8358
|
+
var fileInputElement = this.fileInput.nativeElement;
|
|
8359
|
+
fileInputElement.value = "";
|
|
8360
|
+
fileInputElement.click();
|
|
8361
|
+
};
|
|
8362
|
+
ProfilePicturePickerComponent.prototype.removePhoto = function () {
|
|
8363
|
+
var _this = this;
|
|
8364
|
+
this.confirmationService.confirm({
|
|
8365
|
+
message: this.confirmationTexts.removalMessage,
|
|
8366
|
+
acceptLabel: this.confirmationTexts.removalAcceptLabel,
|
|
8367
|
+
rejectLabel: this.confirmationTexts.removalRejectLabel,
|
|
8368
|
+
header: this.confirmationTexts.removalHeader,
|
|
8369
|
+
accept: function () {
|
|
8370
|
+
var fileInputElement = _this.fileInput.nativeElement;
|
|
8371
|
+
fileInputElement.value = "";
|
|
8372
|
+
_this.image = "";
|
|
8373
|
+
},
|
|
8374
|
+
});
|
|
8375
|
+
};
|
|
8376
|
+
ProfilePicturePickerComponent.prototype.photoSelected = function (event) {
|
|
8377
|
+
this._showImageCropper(event.srcElement.files);
|
|
8378
|
+
};
|
|
8379
|
+
ProfilePicturePickerComponent.prototype._showImageCropper = function (files) {
|
|
8380
|
+
var _this = this;
|
|
8381
|
+
if (!this._validateData(files)) {
|
|
8382
|
+
return;
|
|
8383
|
+
}
|
|
8384
|
+
var file = files[0];
|
|
8385
|
+
var fileReader = new FileReader();
|
|
8386
|
+
fileReader.readAsDataURL(file);
|
|
8387
|
+
fileReader.onloadend = function (fileEvent) {
|
|
8388
|
+
_this.imageCropperService.show(__assign({ imageSource: fileEvent.target.result, croppedImage: function (image) {
|
|
8389
|
+
_this.image = image;
|
|
8390
|
+
_this.changedImage.emit(image);
|
|
8391
|
+
}, changeImage: function () { return _this.selectPhoto(); }, allowSelectAnother: false, aspectRatio: _this.aspectRatio }, _this.cropperLabelsConfig));
|
|
8392
|
+
};
|
|
8393
|
+
};
|
|
8394
|
+
ProfilePicturePickerComponent.prototype._normalizeSuportedExtensions = function () {
|
|
8395
|
+
this.supportedExtensions = this.supportedExtensions
|
|
8396
|
+
.map(function (extension) { return extension.replace(".", "").toLocaleLowerCase(); });
|
|
8397
|
+
};
|
|
8398
|
+
ProfilePicturePickerComponent.prototype._validateData = function (files) {
|
|
8399
|
+
if (!files.length) {
|
|
8400
|
+
return false;
|
|
8401
|
+
}
|
|
8402
|
+
if (files.length > 1) {
|
|
8403
|
+
this.invalidFile.emit({ file: null, validation: FileValidation.MaxFileLimit });
|
|
8404
|
+
return false;
|
|
8405
|
+
}
|
|
8406
|
+
var file = files[0];
|
|
8407
|
+
if (!file.type.includes("image")) {
|
|
8408
|
+
this.invalidFile.emit({ file: file, validation: FileValidation.TypeInvalid });
|
|
8409
|
+
return false;
|
|
8410
|
+
}
|
|
8411
|
+
if (!this._validateFileExtension(file)) {
|
|
8412
|
+
this.invalidFile.emit({ file: file, validation: FileValidation.UnsupportedExtension });
|
|
8413
|
+
return false;
|
|
8414
|
+
}
|
|
8415
|
+
if (!this._validateFileSize(file)) {
|
|
8416
|
+
this.invalidFile.emit({ file: file, validation: FileValidation.MaxFileSize });
|
|
8417
|
+
return false;
|
|
8418
|
+
}
|
|
8419
|
+
return true;
|
|
8420
|
+
};
|
|
8421
|
+
ProfilePicturePickerComponent.prototype._validateFileExtension = function (file) {
|
|
8422
|
+
var _a;
|
|
8423
|
+
if ((_a = this.supportedExtensions) === null || _a === void 0 ? void 0 : _a.length) {
|
|
8424
|
+
var extension = file.name.split(".").pop().toLowerCase();
|
|
8425
|
+
return this.supportedExtensions.includes(extension);
|
|
8426
|
+
}
|
|
8427
|
+
return true;
|
|
8428
|
+
};
|
|
8429
|
+
ProfilePicturePickerComponent.prototype._validateFileSize = function (file) {
|
|
8430
|
+
if (this.maxFileSize) {
|
|
8431
|
+
return file.size > this.maxFileSize;
|
|
8432
|
+
}
|
|
8433
|
+
return true;
|
|
8434
|
+
};
|
|
8435
|
+
ProfilePicturePickerComponent.prototype._getWidthElement = function (element) {
|
|
8436
|
+
var _a = element.nativeElement.getBoundingClientRect(), left = _a.left, right = _a.right;
|
|
8437
|
+
return right - left;
|
|
8438
|
+
};
|
|
8439
|
+
ProfilePicturePickerComponent.ctorParameters = function () { return [
|
|
8440
|
+
{ type: ImageCropperService },
|
|
8441
|
+
{ type: ConfirmationService }
|
|
8442
|
+
]; };
|
|
8443
|
+
__decorate([
|
|
8444
|
+
Input()
|
|
8445
|
+
], ProfilePicturePickerComponent.prototype, "simpleTitle", void 0);
|
|
8446
|
+
__decorate([
|
|
8447
|
+
Input()
|
|
8448
|
+
], ProfilePicturePickerComponent.prototype, "actionTitle", void 0);
|
|
8449
|
+
__decorate([
|
|
8450
|
+
Input()
|
|
8451
|
+
], ProfilePicturePickerComponent.prototype, "subtitle", void 0);
|
|
8452
|
+
__decorate([
|
|
8453
|
+
Input()
|
|
8454
|
+
], ProfilePicturePickerComponent.prototype, "aspectRatio", void 0);
|
|
8455
|
+
__decorate([
|
|
8456
|
+
Input()
|
|
8457
|
+
], ProfilePicturePickerComponent.prototype, "cropperLabelsConfig", void 0);
|
|
8458
|
+
__decorate([
|
|
8459
|
+
Input()
|
|
8460
|
+
], ProfilePicturePickerComponent.prototype, "removeButtonLabel", void 0);
|
|
8461
|
+
__decorate([
|
|
8462
|
+
Input()
|
|
8463
|
+
], ProfilePicturePickerComponent.prototype, "changeButtonLabel", void 0);
|
|
8464
|
+
__decorate([
|
|
8465
|
+
Input()
|
|
8466
|
+
], ProfilePicturePickerComponent.prototype, "confirmationTexts", void 0);
|
|
8467
|
+
__decorate([
|
|
8468
|
+
Input()
|
|
8469
|
+
], ProfilePicturePickerComponent.prototype, "maxFileSize", void 0);
|
|
8470
|
+
__decorate([
|
|
8471
|
+
Input()
|
|
8472
|
+
], ProfilePicturePickerComponent.prototype, "accept", void 0);
|
|
8473
|
+
__decorate([
|
|
8474
|
+
Input()
|
|
8475
|
+
], ProfilePicturePickerComponent.prototype, "supportedExtensions", void 0);
|
|
8476
|
+
__decorate([
|
|
8477
|
+
ViewChild("uploadPicture")
|
|
8478
|
+
], ProfilePicturePickerComponent.prototype, "uploadPicture", void 0);
|
|
8479
|
+
__decorate([
|
|
8480
|
+
ViewChild("info")
|
|
8481
|
+
], ProfilePicturePickerComponent.prototype, "info", void 0);
|
|
8482
|
+
__decorate([
|
|
8483
|
+
ViewChild("thumbnail", { read: ElementRef })
|
|
8484
|
+
], ProfilePicturePickerComponent.prototype, "thumbnail", void 0);
|
|
8485
|
+
__decorate([
|
|
8486
|
+
ViewChild("fileInput", { read: ElementRef })
|
|
8487
|
+
], ProfilePicturePickerComponent.prototype, "fileInput", void 0);
|
|
8488
|
+
__decorate([
|
|
8489
|
+
Output()
|
|
8490
|
+
], ProfilePicturePickerComponent.prototype, "changedImage", void 0);
|
|
8491
|
+
__decorate([
|
|
8492
|
+
Output()
|
|
8493
|
+
], ProfilePicturePickerComponent.prototype, "invalidFile", void 0);
|
|
8494
|
+
__decorate([
|
|
8495
|
+
HostListener("dragover", ["$event"])
|
|
8496
|
+
], ProfilePicturePickerComponent.prototype, "onDragOver", null);
|
|
8497
|
+
__decorate([
|
|
8498
|
+
HostListener("dragleave", ["$event"])
|
|
8499
|
+
], ProfilePicturePickerComponent.prototype, "onDragLeave", null);
|
|
8500
|
+
__decorate([
|
|
8501
|
+
HostListener("drop", ["$event"])
|
|
8502
|
+
], ProfilePicturePickerComponent.prototype, "onDrop", null);
|
|
8503
|
+
__decorate([
|
|
8504
|
+
HostListener("window:resize")
|
|
8505
|
+
], ProfilePicturePickerComponent.prototype, "onResize", null);
|
|
8506
|
+
ProfilePicturePickerComponent = __decorate([
|
|
8507
|
+
Component({
|
|
8508
|
+
selector: "s-profile-picture-picker",
|
|
8509
|
+
template: "<p-confirmDialog></p-confirmDialog>\n\n<input #fileInput [accept]=\"accept\" class=\"file-input\" type=\"file\" (change)=\"photoSelected($event)\">\n<div #uploadPicture class=\"upload-picture\">\n <s-thumbnail\n #thumbnail\n iconClass=\"far fa-user\"\n [imageSource]=\"image\"\n [hasAction]=\"!image\"\n (click)=\"selectPhoto()\">\n </s-thumbnail>\n <div #info class=\"info\">\n <ng-container *ngIf=\"image; then withImage; else noImage\"></ng-container>\n <p class=\"subtitle\">{{ subtitle }}</p>\n </div>\n</div>\n\n<ng-template #withImage>\n <div class=\"buttons\">\n <s-button\n [label]=\"changeButtonLabel\"\n priority=\"primary\"\n (onClick)=\"selectPhoto()\">\n </s-button>\n <s-button\n [label]=\"removeButtonLabel\"\n priority=\"secondary\"\n (onClick)=\"removePhoto()\">\n </s-button>\n </div>\n</ng-template>\n\n<ng-template #noImage>\n <p class=\"title\">\n {{ simpleTitle }}\n <span\n class=\"action-title\"\n (click)=\"selectPhoto()\">\n {{ actionTitle }}\n </span>\n </p>\n</ng-template>",
|
|
8510
|
+
styles: [".file-input{display:none}.upload-picture{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.upload-picture .info{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding:12px 20px;-ms-flex-align:start;align-items:flex-start}.upload-picture .info .title{font-family:\"Open Sans\",sans-serif;font-weight:700;font-size:.875rem;line-height:150%;color:#333}.upload-picture .info .title .action-title{cursor:pointer;color:#428bca}.upload-picture .info .buttons{display:-ms-flexbox;display:flex;gap:8px}.upload-picture .info .buttons s-button{margin:0}.upload-picture .info .subtitle{padding:6px 0;font-family:\"Open Sans\",sans-serif;font-weight:400;font-size:.75rem;line-height:150%;color:#697882;text-align:center}.upload-picture--small .info{-ms-flex-align:center;align-items:center}.upload-picture--small .info .subtitle,.upload-picture--small .info .title{text-align:center}.upload-picture--small .info .buttons{-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}"]
|
|
8511
|
+
})
|
|
8512
|
+
], ProfilePicturePickerComponent);
|
|
8513
|
+
return ProfilePicturePickerComponent;
|
|
8514
|
+
}());
|
|
8515
|
+
|
|
8516
|
+
var ProfilePicturePickerModule = /** @class */ (function () {
|
|
8517
|
+
function ProfilePicturePickerModule() {
|
|
8518
|
+
}
|
|
8519
|
+
ProfilePicturePickerModule = __decorate([
|
|
8520
|
+
NgModule({
|
|
8521
|
+
imports: [
|
|
8522
|
+
CommonModule,
|
|
8523
|
+
ButtonModule,
|
|
8524
|
+
ThumbnailModule,
|
|
8525
|
+
ImageCropperModule,
|
|
8526
|
+
ConfirmDialogModule,
|
|
8527
|
+
],
|
|
8528
|
+
declarations: [ProfilePicturePickerComponent],
|
|
8529
|
+
exports: [ProfilePicturePickerComponent],
|
|
8530
|
+
providers: [
|
|
8531
|
+
ImageCropperService,
|
|
8532
|
+
ConfirmationService,
|
|
8533
|
+
],
|
|
8534
|
+
})
|
|
8535
|
+
], ProfilePicturePickerModule);
|
|
8536
|
+
return ProfilePicturePickerModule;
|
|
8537
|
+
}());
|
|
8538
|
+
|
|
8292
8539
|
var GlobalSearchSizeEnum;
|
|
8293
8540
|
(function (GlobalSearchSizeEnum) {
|
|
8294
8541
|
GlobalSearchSizeEnum["STANDARD"] = "STANDARD";
|
|
@@ -10076,5 +10323,5 @@ var CodeEditorModule = /** @class */ (function () {
|
|
|
10076
10323
|
* Generated bundle index. Do not edit.
|
|
10077
10324
|
*/
|
|
10078
10325
|
|
|
10079
|
-
export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, TextAreaFieldComponent as ɵba, TextFieldComponent as ɵbb, BooleanSwitchFieldComponent as ɵbc, DecimalField as ɵbe, StructureModule as ɵbf, HeaderComponent as ɵbg, FooterComponent as ɵbh, NumberLocaleOptions as ɵbi, ThumbnailService as ɵbj, TimelineItemModule as ɵbk, TimelineIconItemComponent as ɵbl, HorizontalTimelineModule as ɵbm, HorizontalTimelineComponent as ɵbn, VerticalTimelineModule as ɵbo, VerticalTimelineComponent as ɵbp, RangeLineComponent as ɵbq, CollapseOptionComponent as ɵbr, CollapsedItemsComponent as ɵbs, VerticalItemsComponent as ɵbt, InfiniteScrollModule as ɵbu, InfiniteScrollDirective as ɵbv, CustomTranslationsModule as ɵbw, CodeEditorComponent as ɵbx, CoreFacade as ɵby, CodeMirror6Core as ɵbz, LocalizedBignumberImpurePipe as ɵc, TooltipModule as ɵd, TooltipComponent as ɵe, TooltipDirective as ɵf, EmptyStateGoBackComponent as ɵg, InfoSignComponent as ɵh, TableColumnsComponent as ɵi, TablePagingComponent as ɵj, AutocompleteFieldComponent as ɵk, BooleanFieldComponent as ɵl, CalendarFieldComponent as ɵm, ChipsFieldComponent as ɵn, CurrencyFieldComponent as ɵo, DynamicFieldComponent as ɵp, DynamicFormDirective as ɵq, FieldsetComponent as ɵr, FileUploadComponent$1 as ɵs, LookupFieldComponent as ɵt, NumberFieldComponent as ɵu, BignumberFieldComponent as ɵv, RadioButtonComponent as ɵw, RowComponent as ɵx, SectionComponent as ɵy, SelectFieldComponent as ɵz };
|
|
10326
|
+
export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, TextAreaFieldComponent as ɵba, TextFieldComponent as ɵbb, BooleanSwitchFieldComponent as ɵbc, DecimalField as ɵbe, StructureModule as ɵbf, HeaderComponent as ɵbg, FooterComponent as ɵbh, NumberLocaleOptions as ɵbi, ThumbnailService as ɵbj, TimelineItemModule as ɵbk, TimelineIconItemComponent as ɵbl, HorizontalTimelineModule as ɵbm, HorizontalTimelineComponent as ɵbn, VerticalTimelineModule as ɵbo, VerticalTimelineComponent as ɵbp, RangeLineComponent as ɵbq, CollapseOptionComponent as ɵbr, CollapsedItemsComponent as ɵbs, VerticalItemsComponent as ɵbt, InfiniteScrollModule as ɵbu, InfiniteScrollDirective as ɵbv, CustomTranslationsModule as ɵbw, CodeEditorComponent as ɵbx, CoreFacade as ɵby, CodeMirror6Core as ɵbz, LocalizedBignumberImpurePipe as ɵc, TooltipModule as ɵd, TooltipComponent as ɵe, TooltipDirective as ɵf, EmptyStateGoBackComponent as ɵg, InfoSignComponent as ɵh, TableColumnsComponent as ɵi, TablePagingComponent as ɵj, AutocompleteFieldComponent as ɵk, BooleanFieldComponent as ɵl, CalendarFieldComponent as ɵm, ChipsFieldComponent as ɵn, CurrencyFieldComponent as ɵo, DynamicFieldComponent as ɵp, DynamicFormDirective as ɵq, FieldsetComponent as ɵr, FileUploadComponent$1 as ɵs, LookupFieldComponent as ɵt, NumberFieldComponent as ɵu, BignumberFieldComponent as ɵv, RadioButtonComponent as ɵw, RowComponent as ɵx, SectionComponent as ɵy, SelectFieldComponent as ɵz };
|
|
10080
10327
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|