ngx-wapp-components 3.2.8 → 3.2.9-alpha.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-wapp-components",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.9-alpha.2",
|
|
4
4
|
"description": "This is a Wapping reusable component library published by Wapping.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code",
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"type": "module"
|
|
63
|
-
}
|
|
63
|
+
}
|
|
@@ -1999,6 +1999,7 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
1999
1999
|
isDeletingMultiMode: boolean;
|
|
2000
2000
|
actualMaxSize: number;
|
|
2001
2001
|
timelife: number;
|
|
2002
|
+
imageHeight: any;
|
|
2002
2003
|
onlyImageSelected: any;
|
|
2003
2004
|
onlyCroppedImageSelected: any;
|
|
2004
2005
|
dimensionsInput: WImageCropperData;
|
|
@@ -2033,6 +2034,7 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
2033
2034
|
findIndex(img: any): number;
|
|
2034
2035
|
openImageFileSelector(): void;
|
|
2035
2036
|
openSingleImageFileSelector(): void;
|
|
2037
|
+
getImageHeight(): string;
|
|
2036
2038
|
getGalleryClass(): "w-image-file-uploader-gallery-field" | "w-image-file-uploader-gallery";
|
|
2037
2039
|
isValid(): boolean;
|
|
2038
2040
|
getFileName(file: any): string;
|
|
@@ -2448,6 +2450,7 @@ declare class WSelectButtonComponent implements AfterViewInit {
|
|
|
2448
2450
|
formControl: FormControl | null;
|
|
2449
2451
|
stateClass: string;
|
|
2450
2452
|
allowEmpty: boolean;
|
|
2453
|
+
variant: string;
|
|
2451
2454
|
onChangeEvent: EventEmitter<any>;
|
|
2452
2455
|
sizeType: typeof SizeType;
|
|
2453
2456
|
viewSelectorEl: ElementRef;
|
|
@@ -2464,7 +2467,7 @@ declare class WSelectButtonComponent implements AfterViewInit {
|
|
|
2464
2467
|
onButtonChanged(): void;
|
|
2465
2468
|
onButtonChangedForm(value: any): void;
|
|
2466
2469
|
static ɵfac: i0.ɵɵFactoryDeclaration<WSelectButtonComponent, never>;
|
|
2467
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WSelectButtonComponent, "w-select-button", never, { "stateOptions": { "alias": "stateOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "stateClass": { "alias": "stateClass"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
|
|
2470
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WSelectButtonComponent, "w-select-button", never, { "stateOptions": { "alias": "stateOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "stateClass": { "alias": "stateClass"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
|
|
2468
2471
|
}
|
|
2469
2472
|
|
|
2470
2473
|
interface WAddress {
|