monkey-style-guide 2.0.184 → 2.0.185
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/esm2020/lib/components/file-upload/file-upload.component.mjs +7 -2
- package/esm2020/lib/components/image-crop/image-crop.component.mjs +1 -1
- package/fesm2015/monkey-style-guide.mjs +7 -2
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +7 -2
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/lib/components/file-upload/file-upload.component.d.ts +2 -1
- package/monkey-style-guide-2.0.185.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.184.tgz +0 -0
|
@@ -6533,6 +6533,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6533
6533
|
**************************/
|
|
6534
6534
|
class MonkeyFileUploadComponent {
|
|
6535
6535
|
constructor() {
|
|
6536
|
+
this.multiple = false;
|
|
6536
6537
|
this.onChange = new EventEmitter();
|
|
6537
6538
|
this.onHandleFilesReady = new EventEmitter();
|
|
6538
6539
|
this.onModelChange = (value) => { };
|
|
@@ -6644,7 +6645,7 @@ class MonkeyFileUploadComponent {
|
|
|
6644
6645
|
}
|
|
6645
6646
|
}
|
|
6646
6647
|
MonkeyFileUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyFileUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6647
|
-
MonkeyFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyFileUploadComponent, selector: "monkey-file-upload", inputs: { name: "name", label: "label", helperMessage: "helperMessage", placeholder: "placeholder", icon: "icon", infoMessage: "infoMessage", uploadOngoingMessage: "uploadOngoingMessage", errorMessage: "errorMessage", listenFiles: "listenFiles", maxSize: "maxSize", allowedExtensions: "allowedExtensions", maxSizeErrorMessage: "maxSizeErrorMessage", allowedExtensionErrorMessage: "allowedExtensionErrorMessage", fileUpload: "fileUpload", value: "value" }, outputs: { onChange: "onChange", onHandleFilesReady: "onHandleFilesReady" }, host: { listeners: { "click": "onClick($event)" } }, providers: [
|
|
6648
|
+
MonkeyFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyFileUploadComponent, selector: "monkey-file-upload", inputs: { name: "name", label: "label", helperMessage: "helperMessage", placeholder: "placeholder", icon: "icon", infoMessage: "infoMessage", uploadOngoingMessage: "uploadOngoingMessage", errorMessage: "errorMessage", listenFiles: "listenFiles", maxSize: "maxSize", allowedExtensions: "allowedExtensions", maxSizeErrorMessage: "maxSizeErrorMessage", allowedExtensionErrorMessage: "allowedExtensionErrorMessage", fileUpload: "fileUpload", multiple: "multiple", value: "value" }, outputs: { onChange: "onChange", onHandleFilesReady: "onHandleFilesReady" }, host: { listeners: { "click": "onClick($event)" } }, providers: [
|
|
6648
6649
|
{
|
|
6649
6650
|
provide: NG_VALUE_ACCESSOR,
|
|
6650
6651
|
useExisting: forwardRef(() => MonkeyFileUploadComponent),
|
|
@@ -6669,6 +6670,7 @@ MonkeyFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
6669
6670
|
(change)="onChangeValue($event.target.files)"
|
|
6670
6671
|
[id]="_id"
|
|
6671
6672
|
[disabled]="_disabled"
|
|
6673
|
+
[multiple]="multiple"
|
|
6672
6674
|
/>
|
|
6673
6675
|
<span>{{
|
|
6674
6676
|
value?.fileName
|
|
@@ -6729,6 +6731,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6729
6731
|
(change)="onChangeValue($event.target.files)"
|
|
6730
6732
|
[id]="_id"
|
|
6731
6733
|
[disabled]="_disabled"
|
|
6734
|
+
[multiple]="multiple"
|
|
6732
6735
|
/>
|
|
6733
6736
|
<span>{{
|
|
6734
6737
|
value?.fileName
|
|
@@ -6803,6 +6806,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6803
6806
|
type: Input
|
|
6804
6807
|
}], fileUpload: [{
|
|
6805
6808
|
type: Input
|
|
6809
|
+
}], multiple: [{
|
|
6810
|
+
type: Input
|
|
6806
6811
|
}], onChange: [{
|
|
6807
6812
|
type: Output
|
|
6808
6813
|
}], onHandleFilesReady: [{
|
|
@@ -7194,7 +7199,7 @@ MonkeyImageCropComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
7194
7199
|
>
|
|
7195
7200
|
{{ labelChangeImage }}
|
|
7196
7201
|
</monkey-button>
|
|
7197
|
-
`, isInline: true, components: [{ type: MonkeyFileUploadComponent, selector: "monkey-file-upload", inputs: ["name", "label", "helperMessage", "placeholder", "icon", "infoMessage", "uploadOngoingMessage", "errorMessage", "listenFiles", "maxSize", "allowedExtensions", "maxSizeErrorMessage", "allowedExtensionErrorMessage", "fileUpload", "value"], outputs: ["onChange", "onHandleFilesReady"] }, { type: MonkeyButtonComponent, selector: "monkey-button", inputs: ["label", "icon", "iconPosition", "type", "color", "disabled", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
7202
|
+
`, isInline: true, components: [{ type: MonkeyFileUploadComponent, selector: "monkey-file-upload", inputs: ["name", "label", "helperMessage", "placeholder", "icon", "infoMessage", "uploadOngoingMessage", "errorMessage", "listenFiles", "maxSize", "allowedExtensions", "maxSizeErrorMessage", "allowedExtensionErrorMessage", "fileUpload", "multiple", "value"], outputs: ["onChange", "onHandleFilesReady"] }, { type: MonkeyButtonComponent, selector: "monkey-button", inputs: ["label", "icon", "iconPosition", "type", "color", "disabled", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
7198
7203
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyImageCropComponent, decorators: [{
|
|
7199
7204
|
type: Component,
|
|
7200
7205
|
args: [{
|