@bnsights/bbsf-controls 1.0.28 → 1.0.31

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.
Files changed (28) hide show
  1. package/README.md +2 -3
  2. package/bnsights-bbsf-controls-1.0.31.tgz +0 -0
  3. package/bnsights-bbsf-controls.metadata.json +1 -1
  4. package/bundles/bnsights-bbsf-controls.umd.js +524 -355
  5. package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
  6. package/esm2015/lib/Shared/Enums/LanguageValidation.js +6 -0
  7. package/esm2015/lib/Shared/Models/RepeaterField.js +1 -1
  8. package/esm2015/lib/Shared/Models/RepeaterOptions.js +2 -1
  9. package/esm2015/lib/Shared/Models/TextBoxOptions.js +3 -1
  10. package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +15 -9
  11. package/esm2015/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.js +376 -336
  12. package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +105 -0
  13. package/esm2015/lib/controls/TextBox/TextBox.component.js +14 -13
  14. package/esm2015/lib/controls/bbsf-controls.module.js +4 -1
  15. package/esm2015/public-api.js +3 -1
  16. package/fesm2015/bnsights-bbsf-controls.js +515 -356
  17. package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
  18. package/lib/Shared/Enums/LanguageValidation.d.ts +4 -0
  19. package/lib/Shared/Models/RepeaterField.d.ts +1 -0
  20. package/lib/Shared/Models/RepeaterOptions.d.ts +3 -0
  21. package/lib/Shared/Models/TextBoxOptions.d.ts +3 -0
  22. package/lib/controls/Repeater/repeater/repeater.component.d.ts +2 -1
  23. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +3 -0
  24. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +16 -0
  25. package/package.json +2 -2
  26. package/public-api.d.ts +2 -0
  27. package/src/lib/assets/Style.css +5 -1
  28. package/bnsights-bbsf-controls-1.0.28.tgz +0 -0
package/README.md CHANGED
@@ -6,8 +6,7 @@ For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsigh
6
6
 
7
7
  ## Change Log
8
8
 
9
- 1.0.28 / 22-3-2022
9
+ 1.0.31 / 29-3-2022
10
10
  ===================
11
- * Fix locals in DateTimePick and Image Cropper
12
- * Fix Validation regular expression
11
+ * Update repeater-table control
13
12