ngx-wapp-components 3.2.7 → 3.2.9-alpha.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/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.1",
|
|
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
|
+
}
|
|
@@ -1961,7 +1961,6 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
1961
1961
|
fileSizeService: FileSizeService;
|
|
1962
1962
|
allowMultipleImages: boolean;
|
|
1963
1963
|
activeImageUpload: boolean;
|
|
1964
|
-
deactiveImageMethods: boolean;
|
|
1965
1964
|
imagesAlreadyUploaded: any[];
|
|
1966
1965
|
imageSingleMode: any;
|
|
1967
1966
|
uploadUrl: string;
|
|
@@ -1969,7 +1968,6 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
1969
1968
|
deleteUrl: string;
|
|
1970
1969
|
headers: HttpHeaders;
|
|
1971
1970
|
activePositionProperty: boolean;
|
|
1972
|
-
startPostionFromZero: boolean;
|
|
1973
1971
|
activeTypeMediaProperty: boolean;
|
|
1974
1972
|
viewSingleMode: boolean;
|
|
1975
1973
|
viewMultiMode: boolean;
|
|
@@ -2001,6 +1999,7 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
2001
1999
|
isDeletingMultiMode: boolean;
|
|
2002
2000
|
actualMaxSize: number;
|
|
2003
2001
|
timelife: number;
|
|
2002
|
+
imageHeight: any;
|
|
2004
2003
|
onlyImageSelected: any;
|
|
2005
2004
|
onlyCroppedImageSelected: any;
|
|
2006
2005
|
dimensionsInput: WImageCropperData;
|
|
@@ -2035,12 +2034,13 @@ declare class WImageFileUploaderComponent implements OnInit, OnChanges {
|
|
|
2035
2034
|
findIndex(img: any): number;
|
|
2036
2035
|
openImageFileSelector(): void;
|
|
2037
2036
|
openSingleImageFileSelector(): void;
|
|
2037
|
+
getImageHeight(): string;
|
|
2038
2038
|
getGalleryClass(): "w-image-file-uploader-gallery-field" | "w-image-file-uploader-gallery";
|
|
2039
2039
|
isValid(): boolean;
|
|
2040
2040
|
getFileName(file: any): string;
|
|
2041
2041
|
sanitizeFileName(name: string): string;
|
|
2042
2042
|
static ɵfac: i0.ɵɵFactoryDeclaration<WImageFileUploaderComponent, never>;
|
|
2043
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WImageFileUploaderComponent, "w-image-file-uploader", never, { "allowMultipleImages": { "alias": "allowMultipleImages"; "required": false; }; "activeImageUpload": { "alias": "activeImageUpload"; "required": false; }; "
|
|
2043
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WImageFileUploaderComponent, "w-image-file-uploader", never, { "allowMultipleImages": { "alias": "allowMultipleImages"; "required": false; }; "activeImageUpload": { "alias": "activeImageUpload"; "required": false; }; "imagesAlreadyUploaded": { "alias": "imagesAlreadyUploaded"; "required": false; }; "imageSingleMode": { "alias": "imageSingleMode"; "required": false; }; "uploadUrl": { "alias": "uploadUrl"; "required": false; }; "updateUrl": { "alias": "updateUrl"; "required": false; }; "deleteUrl": { "alias": "deleteUrl"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "activePositionProperty": { "alias": "activePositionProperty"; "required": false; }; "activeTypeMediaProperty": { "alias": "activeTypeMediaProperty"; "required": false; }; "viewSingleMode": { "alias": "viewSingleMode"; "required": false; }; "viewMultiMode": { "alias": "viewMultiMode"; "required": false; }; "allowDeleteImage": { "alias": "allowDeleteImage"; "required": false; }; "identificatorName": { "alias": "identificatorImageName"; "required": false; }; "identificatorValue": { "alias": "identificatorImagesCollectionValue"; "required": false; }; "imageUploadConfig": { "alias": "imageUploadConfig"; "required": false; }; "activeFieldVersion": { "alias": "activeFieldVersion"; "required": false; }; "fieldVersionReduced": { "alias": "fieldVersionReduced"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "required": { "alias": "required"; "required": false; }; "customHeightImg": { "alias": "customHeightImg"; "required": false; }; "activeMessagesOverlay": { "alias": "activeMessagesOverlay"; "required": false; }; }, { "onUploadFinished": "onUploadFinished"; "onErrorHandler": "onErrorHandler"; "onReturnImagesB64": "onReturnImagesB64"; "onDeleteImage": "onDeleteImage"; }, never, never, false, never>;
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
2046
|
interface WFileB64 {
|
|
@@ -2368,6 +2368,7 @@ declare class WAutocompleteSearchComponent {
|
|
|
2368
2368
|
}
|
|
2369
2369
|
|
|
2370
2370
|
declare class WToggleButtonComponent implements OnInit, ControlValueAccessor {
|
|
2371
|
+
private renderer;
|
|
2371
2372
|
onLabel: string;
|
|
2372
2373
|
offLabel: string;
|
|
2373
2374
|
size: string;
|
|
@@ -2377,12 +2378,16 @@ declare class WToggleButtonComponent implements OnInit, ControlValueAccessor {
|
|
|
2377
2378
|
tooltip: string;
|
|
2378
2379
|
disabled: boolean;
|
|
2379
2380
|
formControl: FormControl | null;
|
|
2381
|
+
allowEmpty: boolean;
|
|
2382
|
+
buttonClass: string;
|
|
2380
2383
|
onChangeEvent: EventEmitter<any>;
|
|
2384
|
+
viewSelectorEl: ElementRef;
|
|
2381
2385
|
sizeType: typeof SizeType;
|
|
2382
2386
|
buttonType: typeof ButtonType;
|
|
2383
2387
|
onChange: any;
|
|
2384
2388
|
onTouch: any;
|
|
2385
2389
|
ngModelValue: any;
|
|
2390
|
+
constructor(renderer: Renderer2);
|
|
2386
2391
|
ngOnInit(): void;
|
|
2387
2392
|
writeValue(value: any): void;
|
|
2388
2393
|
registerOnChange(fn: any): void;
|
|
@@ -2395,7 +2400,7 @@ declare class WToggleButtonComponent implements OnInit, ControlValueAccessor {
|
|
|
2395
2400
|
isEmpty(label: string): boolean;
|
|
2396
2401
|
hasOnlyIcon(icon: string, label: string): boolean;
|
|
2397
2402
|
static ɵfac: i0.ɵɵFactoryDeclaration<WToggleButtonComponent, never>;
|
|
2398
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WToggleButtonComponent, "w-toggle-button", never, { "onLabel": { "alias": "onLabel"; "required": false; }; "offLabel": { "alias": "offLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "onIcon": { "alias": "onIcon"; "required": false; }; "offIcon": { "alias": "offIcon"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
|
|
2403
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WToggleButtonComponent, "w-toggle-button", never, { "onLabel": { "alias": "onLabel"; "required": false; }; "offLabel": { "alias": "offLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "onIcon": { "alias": "onIcon"; "required": false; }; "offIcon": { "alias": "offIcon"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
|
|
2399
2404
|
}
|
|
2400
2405
|
|
|
2401
2406
|
declare class WEditCheckboxComponent {
|