@bnsights/bbsf-controls 1.0.193 → 1.0.194-beta.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.
Files changed (112) hide show
  1. package/README.md +331 -0
  2. package/esm2022/lib/Shared/Components/app-base-component.mjs +3 -3
  3. package/esm2022/lib/Shared/Components/ng-tag-input.mjs +12 -7
  4. package/esm2022/lib/Shared/Directives/appPreventDoubleClick.directive.mjs +3 -2
  5. package/esm2022/lib/Shared/Directives/template-name.directive.mjs +4 -3
  6. package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +4 -4
  7. package/esm2022/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +4 -3
  8. package/esm2022/lib/Shared/Pipes/bbsf-date.pipe.mjs +4 -3
  9. package/esm2022/lib/Shared/default_intl.mjs +2 -2
  10. package/esm2022/lib/Shared/services/ControlUtility.mjs +2 -2
  11. package/esm2022/lib/Shared/services/file-upload.service.mjs +3 -3
  12. package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +2 -2
  13. package/esm2022/lib/Shared/utils/date-formatter.mjs +48 -0
  14. package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +24 -16
  15. package/esm2022/lib/controls/Calendar/Calendar.component.mjs +19 -12
  16. package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +14 -10
  17. package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +8 -5
  18. package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +21 -14
  19. package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +12 -6
  20. package/esm2022/lib/controls/FileUpload/FileUpload.component.mjs +15 -7
  21. package/esm2022/lib/controls/Form/Form.component.mjs +22 -6
  22. package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +14 -9
  23. package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +17 -9
  24. package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +22 -13
  25. package/esm2022/lib/controls/MarkdownEditor/markdown-editor.component.mjs +16 -8
  26. package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +14 -9
  27. package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +12 -7
  28. package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +18 -12
  29. package/esm2022/lib/controls/Paging/JwPagination.component.mjs +8 -4
  30. package/esm2022/lib/controls/Paging/Paging.component.mjs +25 -12
  31. package/esm2022/lib/controls/Phone/Phone.component.mjs +14 -9
  32. package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +17 -9
  33. package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +10 -6
  34. package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +13 -14
  35. package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +13 -7
  36. package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +6 -4
  37. package/esm2022/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +5 -4
  38. package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +13 -7
  39. package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +19 -14
  40. package/esm2022/lib/controls/TextArea/TextArea.component.mjs +20 -12
  41. package/esm2022/lib/controls/TextBox/TextBox.component.mjs +16 -10
  42. package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +13 -7
  43. package/esm2022/lib/controls/bbsf-controls.module.mjs +70 -333
  44. package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +15 -11
  45. package/esm2022/lib/modules/bbsf-core.module.mjs +210 -0
  46. package/esm2022/lib/modules/bbsf-datetime.module.mjs +90 -0
  47. package/esm2022/lib/modules/bbsf-dropdown.module.mjs +57 -0
  48. package/esm2022/lib/modules/bbsf-editors.module.mjs +97 -0
  49. package/esm2022/lib/modules/bbsf-forms-basic.module.mjs +79 -0
  50. package/esm2022/lib/modules/bbsf-multilingual.module.mjs +60 -0
  51. package/esm2022/lib/modules/bbsf-phone.module.mjs +57 -0
  52. package/esm2022/lib/modules/bbsf-specialized.module.mjs +160 -0
  53. package/esm2022/lib/modules/bbsf-uploads.module.mjs +106 -0
  54. package/esm2022/lib/modules/bbsf-utility.module.mjs +103 -0
  55. package/esm2022/public-api.mjs +38 -2
  56. package/fesm2022/bnsights-bbsf-controls.mjs +8673 -7750
  57. package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
  58. package/lib/Shared/Components/app-base-component.d.ts +2 -2
  59. package/lib/Shared/Components/ng-tag-input.d.ts +2 -3
  60. package/lib/Shared/Directives/appPreventDoubleClick.directive.d.ts +1 -1
  61. package/lib/Shared/Directives/template-name.directive.d.ts +1 -1
  62. package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +1 -1
  63. package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +1 -1
  64. package/lib/Shared/default_intl.d.ts +1 -1
  65. package/lib/Shared/services/ControlUtility.d.ts +1 -1
  66. package/lib/Shared/services/file-upload.service.d.ts +1 -1
  67. package/lib/Shared/services/validationErrorMassage.service.d.ts +1 -1
  68. package/lib/Shared/utils/date-formatter.d.ts +23 -0
  69. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +5 -4
  70. package/lib/controls/Calendar/Calendar.component.d.ts +5 -4
  71. package/lib/controls/CheckBox/CheckBox.component.d.ts +3 -2
  72. package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +2 -2
  73. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -3
  74. package/lib/controls/DropdownList/DropdownList.component.d.ts +2 -2
  75. package/lib/controls/FileUpload/FileUpload.component.d.ts +3 -4
  76. package/lib/controls/Form/Form.component.d.ts +2 -2
  77. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +3 -3
  78. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +4 -4
  79. package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +5 -4
  80. package/lib/controls/MarkdownEditor/markdown-editor.component.d.ts +2 -2
  81. package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +3 -3
  82. package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +2 -2
  83. package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +3 -2
  84. package/lib/controls/Paging/JwPagination.component.d.ts +1 -1
  85. package/lib/controls/Paging/Paging.component.d.ts +5 -4
  86. package/lib/controls/Phone/Phone.component.d.ts +2 -2
  87. package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +3 -3
  88. package/lib/controls/RadioButton/RadioButton.component.d.ts +2 -2
  89. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +3 -2
  90. package/lib/controls/Repeater/repeater/repeater.component.d.ts +1 -1
  91. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +1 -1
  92. package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +1 -1
  93. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +2 -2
  94. package/lib/controls/TagsInput/TagsInput.component.d.ts +5 -4
  95. package/lib/controls/TextArea/TextArea.component.d.ts +3 -2
  96. package/lib/controls/TextBox/TextBox.component.d.ts +2 -2
  97. package/lib/controls/Toggleslide/Toggleslide.component.d.ts +2 -2
  98. package/lib/controls/bbsf-controls.module.d.ts +35 -66
  99. package/lib/controls/page-header-component/page-header-component.component.d.ts +2 -2
  100. package/lib/modules/bbsf-core.module.d.ts +90 -0
  101. package/lib/modules/bbsf-datetime.module.d.ts +41 -0
  102. package/lib/modules/bbsf-dropdown.module.d.ts +33 -0
  103. package/lib/modules/bbsf-editors.module.d.ts +47 -0
  104. package/lib/modules/bbsf-forms-basic.module.d.ts +35 -0
  105. package/lib/modules/bbsf-multilingual.module.d.ts +31 -0
  106. package/lib/modules/bbsf-phone.module.d.ts +33 -0
  107. package/lib/modules/bbsf-specialized.module.d.ts +63 -0
  108. package/lib/modules/bbsf-uploads.module.d.ts +50 -0
  109. package/lib/modules/bbsf-utility.module.d.ts +45 -0
  110. package/package.json +2 -13
  111. package/public-api.d.ts +12 -0
  112. package/src/lib/assets/Style.scss +0 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.