@bnsights/bbsf-controls 1.2.25 → 1.2.27
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/README.md +11 -0
- package/fesm2022/bnsights-bbsf-controls.mjs +219 -36
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Models/FileUploadCropperOptions.d.ts +18 -0
- package/lib/Shared/Models/FileUploadOptions.d.ts +3 -0
- package/lib/Shared/Models/index.d.ts +1 -0
- package/lib/controls/FileUpload/FileUpload.component.d.ts +11 -2
- package/lib/controls/LogoCropper/LogoCropper.component.d.ts +33 -0
- package/lib/modules/bbsf-uploads.module.d.ts +2 -1
- package/package.json +3 -2
- package/public-api.d.ts +2 -0
package/README.md
CHANGED
|
@@ -400,6 +400,14 @@ If the issue persists, consider using a different HTML editor component that's c
|
|
|
400
400
|
|
|
401
401
|
## Change Log
|
|
402
402
|
|
|
403
|
+
## 1.2.27 / 22-06-2026
|
|
404
|
+
|
|
405
|
+
=====================
|
|
406
|
+
|
|
407
|
+
- Added optional image cropper support to `BBSF-FileUpload` through `FileUploadOptions.cropperOptions`.
|
|
408
|
+
- Added exported cropper option models for configuring modal behavior, orientation presets, and cancel behavior.
|
|
409
|
+
- Preserved existing upload behavior unless cropper options are explicitly enabled.
|
|
410
|
+
|
|
403
411
|
## 1.2.26 / 15-06-2026
|
|
404
412
|
|
|
405
413
|
=====================
|
|
@@ -407,6 +415,9 @@ If the issue persists, consider using a different HTML editor component that's c
|
|
|
407
415
|
- Added explicit package exports for controls SCSS assets so Angular browser and application builders can resolve deep style imports from consuming packages.
|
|
408
416
|
- Kept backward compatibility for extensionless Sass imports such as `@bnsights/bbsf-controls/src/lib/assets/sass/variables`.
|
|
409
417
|
- Marked CSS, SCSS, and packaged assets as side-effectful so published global styles are preserved by consumers.
|
|
418
|
+
- Added `LogoCropperComponent` as a standalone upload modal component exported from `@bnsights/bbsf-controls`.
|
|
419
|
+
- Re-exported `LogoCropperComponent` through `BBSFUploadsModule` and the package public API.
|
|
420
|
+
- Added `ngx-image-cropper` dependency for logo cropping support with Angular 19-compatible peer dependencies.
|
|
410
421
|
|
|
411
422
|
## 1.2.25 / 15-06-2026
|
|
412
423
|
|