@bnsights/bbsf-controls 1.2.26 → 1.2.28
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 +21 -5
- package/bnsights-bbsf-controls-1.2.27.tgz +0 -0
- package/bnsights-bbsf-controls-1.2.28.tgz +0 -0
- package/fesm2022/bnsights-bbsf-controls.mjs +243 -136
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Models/ControlOptionsBase.d.ts +46 -0
- package/lib/Shared/Models/FileUploadCropperOptions.d.ts +18 -0
- package/lib/Shared/Models/FileUploadOptions.d.ts +17 -0
- package/lib/Shared/Models/index.d.ts +1 -0
- package/lib/Shared/services/ControlUtility.d.ts +2 -1
- package/lib/Shared/services/validationErrorMassage.service.d.ts +2 -1
- package/lib/controls/FileUpload/FileUpload.component.d.ts +11 -2
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
BBSF Controls package is part of BBSF 3 packages. It has all the form controls that we use to build our application forms.
|
|
4
4
|
|
|
5
|
-
For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsights.com/controls) or [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
|
|
6
|
-
|
|
7
|
-
## 🚀 NEW! Tree-Shakable Granular Modules (v2.0+)
|
|
8
|
-
|
|
9
|
-
The package now supports **true tree-shaking** through granular modules for optimal bundle size!
|
|
5
|
+
For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsights.com/controls) or [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
|
|
6
|
+
|
|
7
|
+
## 🚀 NEW! Tree-Shakable Granular Modules (v2.0+)
|
|
8
|
+
|
|
9
|
+
The package now supports **true tree-shaking** through granular modules for optimal bundle size!
|
|
10
10
|
|
|
11
11
|
### 📦 Available Modules
|
|
12
12
|
|
|
@@ -400,6 +400,22 @@ 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.28 / 23-06-2026
|
|
404
|
+
|
|
405
|
+
=====================
|
|
406
|
+
|
|
407
|
+
- Added optional `FileUploadOptions` overrides for validation error message labels.
|
|
408
|
+
- Supported host-provided localized labels for max file count, min file count, total size, file size, type tooltip, duplicate file, and required validation messages.
|
|
409
|
+
- Threaded file upload options through validation helpers and applied the duplicate-file override message.
|
|
410
|
+
|
|
411
|
+
## 1.2.27 / 22-06-2026
|
|
412
|
+
|
|
413
|
+
=====================
|
|
414
|
+
|
|
415
|
+
- Added optional image cropper support to `BBSF-FileUpload` through `FileUploadOptions.cropperOptions`.
|
|
416
|
+
- Added exported cropper option models for configuring modal behavior, orientation presets, and cancel behavior.
|
|
417
|
+
- Preserved existing upload behavior unless cropper options are explicitly enabled.
|
|
418
|
+
|
|
403
419
|
## 1.2.26 / 15-06-2026
|
|
404
420
|
|
|
405
421
|
=====================
|
|
Binary file
|
|
Binary file
|