@bnsights/bbsf-controls 1.0.107 → 1.0.109

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 (221) hide show
  1. package/README.md +11 -0
  2. package/esm2020/bnsights-bbsf-controls.mjs +5 -0
  3. package/esm2020/lib/Shared/Components/app-base-component.mjs +226 -0
  4. package/esm2020/lib/Shared/Components/ng-tag-input.mjs +331 -0
  5. package/esm2020/lib/Shared/Directives/template-name.directive.mjs +18 -0
  6. package/{esm2015/lib/Shared/Models/DropdownListItem.js → esm2020/lib/Shared/Models/DropdownListItem.mjs} +1 -1
  7. package/esm2020/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +21 -0
  8. package/esm2020/lib/Shared/Pipes/bbsf-date.pipe.mjs +21 -0
  9. package/esm2020/lib/Shared/default_intl.mjs +29 -0
  10. package/esm2020/lib/Shared/services/ControlUtility.mjs +162 -0
  11. package/esm2020/lib/Shared/services/GlobalSettings.service.mjs +30 -0
  12. package/esm2020/lib/Shared/services/OnPagingFiltersChange.service.mjs +24 -0
  13. package/esm2020/lib/Shared/services/render-component-service.service.mjs +30 -0
  14. package/esm2020/lib/Shared/services/validationErrorMassage.service.mjs +170 -0
  15. package/esm2020/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +262 -0
  16. package/esm2020/lib/controls/Calendar/Calendar.component.mjs +173 -0
  17. package/esm2020/lib/controls/CheckBox/CheckBox.component.mjs +117 -0
  18. package/esm2020/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +136 -0
  19. package/esm2020/lib/controls/DateTimePicker/DateTimePicker.component.mjs +223 -0
  20. package/esm2020/lib/controls/DropdownList/DropdownList.component.mjs +194 -0
  21. package/esm2020/lib/controls/FileUplaod/FileUplaod.component.mjs +447 -0
  22. package/esm2020/lib/controls/Form/Form.component.mjs +101 -0
  23. package/esm2020/lib/controls/HtmlEditor/HtmlEditor.component.mjs +226 -0
  24. package/esm2020/lib/controls/ImageUpload/ImageUpload.component.mjs +350 -0
  25. package/esm2020/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +325 -0
  26. package/esm2020/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +427 -0
  27. package/esm2020/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +429 -0
  28. package/esm2020/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +428 -0
  29. package/esm2020/lib/controls/Paging/JwPagination.component.mjs +156 -0
  30. package/esm2020/lib/controls/Paging/Paging.component.mjs +312 -0
  31. package/esm2020/lib/controls/Phone/Phone.component.mjs +129 -0
  32. package/esm2020/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +376 -0
  33. package/esm2020/lib/controls/RadioButton/RadioButton.component.mjs +109 -0
  34. package/esm2020/lib/controls/Recaptcha/Recaptcha.component.mjs +135 -0
  35. package/esm2020/lib/controls/Repeater/repeater/repeater.component.mjs +125 -0
  36. package/esm2020/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +750 -0
  37. package/esm2020/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +21 -0
  38. package/esm2020/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +108 -0
  39. package/esm2020/lib/controls/TagsInput/TagsInput.component.mjs +277 -0
  40. package/esm2020/lib/controls/TextArea/TextArea.component.mjs +196 -0
  41. package/esm2020/lib/controls/TextBox/TextBox.component.mjs +312 -0
  42. package/esm2020/lib/controls/Toggleslide/toggleslide.component.mjs +90 -0
  43. package/esm2020/lib/controls/bbsf-controls.module.mjs +361 -0
  44. package/esm2020/lib/controls/page-header-component/page-header-component.component.mjs +37 -0
  45. package/{esm2015/public-api.js → esm2020/public-api.mjs} +2 -2
  46. package/fesm2015/{bnsights-bbsf-controls.js → bnsights-bbsf-controls.mjs} +2214 -2111
  47. package/fesm2015/bnsights-bbsf-controls.mjs.map +1 -0
  48. package/fesm2020/bnsights-bbsf-controls.mjs +9098 -0
  49. package/fesm2020/bnsights-bbsf-controls.mjs.map +1 -0
  50. package/index.d.ts +5 -0
  51. package/lib/Shared/Components/app-base-component.d.ts +7 -0
  52. package/lib/Shared/Components/ng-tag-input.d.ts +4 -1
  53. package/lib/Shared/Directives/template-name.directive.d.ts +3 -0
  54. package/lib/Shared/Models/DropdownListItem.d.ts +2 -2
  55. package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +3 -0
  56. package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +3 -0
  57. package/lib/Shared/default_intl.d.ts +3 -0
  58. package/lib/Shared/services/ControlUtility.d.ts +3 -0
  59. package/lib/Shared/services/GlobalSettings.service.d.ts +3 -0
  60. package/lib/Shared/services/OnPagingFiltersChange.service.d.ts +3 -0
  61. package/lib/Shared/services/render-component-service.service.d.ts +3 -0
  62. package/lib/Shared/services/validationErrorMassage.service.d.ts +4 -3
  63. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +3 -0
  64. package/lib/controls/Calendar/Calendar.component.d.ts +3 -0
  65. package/lib/controls/CheckBox/CheckBox.component.d.ts +3 -0
  66. package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +3 -0
  67. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -0
  68. package/lib/controls/DropdownList/DropdownList.component.d.ts +5 -0
  69. package/lib/controls/FileUplaod/FileUplaod.component.d.ts +3 -0
  70. package/lib/controls/Form/Form.component.d.ts +3 -0
  71. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +3 -0
  72. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +3 -0
  73. package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +3 -0
  74. package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +3 -0
  75. package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +3 -0
  76. package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +3 -0
  77. package/lib/controls/Paging/JwPagination.component.d.ts +3 -0
  78. package/lib/controls/Paging/Paging.component.d.ts +3 -0
  79. package/lib/controls/Phone/Phone.component.d.ts +3 -0
  80. package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +3 -0
  81. package/lib/controls/RadioButton/RadioButton.component.d.ts +3 -0
  82. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +3 -0
  83. package/lib/controls/Repeater/repeater/repeater.component.d.ts +3 -0
  84. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +3 -0
  85. package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +3 -0
  86. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +3 -0
  87. package/lib/controls/TagsInput/TagsInput.component.d.ts +3 -0
  88. package/lib/controls/TextArea/TextArea.component.d.ts +3 -0
  89. package/lib/controls/TextBox/TextBox.component.d.ts +3 -0
  90. package/lib/controls/Toggleslide/toggleslide.component.d.ts +3 -0
  91. package/lib/controls/bbsf-controls.module.d.ts +71 -4
  92. package/lib/controls/page-header-component/page-header-component.component.d.ts +3 -0
  93. package/package.json +44 -48
  94. package/public-api.d.ts +1 -1
  95. package/bnsights-bbsf-controls-1.0.107.tgz +0 -0
  96. package/bnsights-bbsf-controls.d.ts +0 -5
  97. package/bnsights-bbsf-controls.metadata.json +0 -1
  98. package/bundles/bnsights-bbsf-controls.umd.js +0 -9636
  99. package/bundles/bnsights-bbsf-controls.umd.js.map +0 -1
  100. package/esm2015/bnsights-bbsf-controls.js +0 -6
  101. package/esm2015/lib/Shared/Components/app-base-component.js +0 -202
  102. package/esm2015/lib/Shared/Components/ng-tag-input.js +0 -323
  103. package/esm2015/lib/Shared/Directives/template-name.directive.js +0 -18
  104. package/esm2015/lib/Shared/Pipes/bbsf-date-time.pipe.js +0 -20
  105. package/esm2015/lib/Shared/Pipes/bbsf-date.pipe.js +0 -20
  106. package/esm2015/lib/Shared/default_intl.js +0 -29
  107. package/esm2015/lib/Shared/services/ControlUtility.js +0 -164
  108. package/esm2015/lib/Shared/services/GlobalSettings.service.js +0 -28
  109. package/esm2015/lib/Shared/services/OnPagingFiltersChange.service.js +0 -22
  110. package/esm2015/lib/Shared/services/render-component-service.service.js +0 -30
  111. package/esm2015/lib/Shared/services/validationErrorMassage.service.js +0 -172
  112. package/esm2015/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.js +0 -266
  113. package/esm2015/lib/controls/Calendar/Calendar.component.js +0 -177
  114. package/esm2015/lib/controls/CheckBox/CheckBox.component.js +0 -118
  115. package/esm2015/lib/controls/ConfirmationModal/ConfirmationModal.component.js +0 -139
  116. package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +0 -227
  117. package/esm2015/lib/controls/DropdownList/DropdownList.component.js +0 -192
  118. package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +0 -447
  119. package/esm2015/lib/controls/Form/Form.component.js +0 -106
  120. package/esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js +0 -226
  121. package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +0 -347
  122. package/esm2015/lib/controls/MapAutoComplete/MapAutoComplete.component.js +0 -325
  123. package/esm2015/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.js +0 -429
  124. package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +0 -434
  125. package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +0 -433
  126. package/esm2015/lib/controls/Paging/JwPagination.component.js +0 -129
  127. package/esm2015/lib/controls/Paging/Paging.component.js +0 -312
  128. package/esm2015/lib/controls/Phone/Phone.component.js +0 -129
  129. package/esm2015/lib/controls/ProfileImageUploader/ProfileImageUploader.component.js +0 -371
  130. package/esm2015/lib/controls/RadioButton/RadioButton.component.js +0 -111
  131. package/esm2015/lib/controls/Recaptcha/Recaptcha.component.js +0 -135
  132. package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +0 -117
  133. package/esm2015/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.js +0 -748
  134. package/esm2015/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.js +0 -19
  135. package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +0 -108
  136. package/esm2015/lib/controls/TagsInput/TagsInput.component.js +0 -278
  137. package/esm2015/lib/controls/TextArea/TextArea.component.js +0 -197
  138. package/esm2015/lib/controls/TextBox/TextBox.component.js +0 -309
  139. package/esm2015/lib/controls/Toggleslide/toggleslide.component.js +0 -90
  140. package/esm2015/lib/controls/bbsf-controls.module.js +0 -240
  141. package/esm2015/lib/controls/page-header-component/page-header-component.component.js +0 -32
  142. package/fesm2015/bnsights-bbsf-controls.js.map +0 -1
  143. package/src/lib/assets/.gitkeep +0 -0
  144. /package/{esm2015/lib/Shared/Enums/CalendarView.js → esm2020/lib/Shared/Enums/CalendarView.mjs} +0 -0
  145. /package/{esm2015/lib/Shared/Enums/ControlLayout.js → esm2020/lib/Shared/Enums/ControlLayout.mjs} +0 -0
  146. /package/{esm2015/lib/Shared/Enums/Countries.js → esm2020/lib/Shared/Enums/Countries.mjs} +0 -0
  147. /package/{esm2015/lib/Shared/Enums/Enums.js → esm2020/lib/Shared/Enums/Enums.mjs} +0 -0
  148. /package/{esm2015/lib/Shared/Enums/FileType.js → esm2020/lib/Shared/Enums/FileType.mjs} +0 -0
  149. /package/{esm2015/lib/Shared/Enums/FilterType.js → esm2020/lib/Shared/Enums/FilterType.mjs} +0 -0
  150. /package/{esm2015/lib/Shared/Enums/FontSize.js → esm2020/lib/Shared/Enums/FontSize.mjs} +0 -0
  151. /package/{esm2015/lib/Shared/Enums/ForceDirection.js → esm2020/lib/Shared/Enums/ForceDirection.mjs} +0 -0
  152. /package/{esm2015/lib/Shared/Enums/IconPosition.js → esm2020/lib/Shared/Enums/IconPosition.mjs} +0 -0
  153. /package/{esm2015/lib/Shared/Enums/ImageType.js → esm2020/lib/Shared/Enums/ImageType.mjs} +0 -0
  154. /package/{esm2015/lib/Shared/Enums/InputType.js → esm2020/lib/Shared/Enums/InputType.mjs} +0 -0
  155. /package/{esm2015/lib/Shared/Enums/Insert.js → esm2020/lib/Shared/Enums/Insert.mjs} +0 -0
  156. /package/{esm2015/lib/Shared/Enums/LanguageMode.js → esm2020/lib/Shared/Enums/LanguageMode.mjs} +0 -0
  157. /package/{esm2015/lib/Shared/Enums/LanguageValidation.js → esm2020/lib/Shared/Enums/LanguageValidation.mjs} +0 -0
  158. /package/{esm2015/lib/Shared/Enums/Misc.js → esm2020/lib/Shared/Enums/Misc.mjs} +0 -0
  159. /package/{esm2015/lib/Shared/Enums/PagingActionMode.js → esm2020/lib/Shared/Enums/PagingActionMode.mjs} +0 -0
  160. /package/{esm2015/lib/Shared/Enums/Para.js → esm2020/lib/Shared/Enums/Para.mjs} +0 -0
  161. /package/{esm2015/lib/Shared/Enums/PickerType.js → esm2020/lib/Shared/Enums/PickerType.mjs} +0 -0
  162. /package/{esm2015/lib/Shared/Enums/SelectMode.js → esm2020/lib/Shared/Enums/SelectMode.mjs} +0 -0
  163. /package/{esm2015/lib/Shared/Enums/StartView.js → esm2020/lib/Shared/Enums/StartView.mjs} +0 -0
  164. /package/{esm2015/lib/Shared/Enums/Style.js → esm2020/lib/Shared/Enums/Style.mjs} +0 -0
  165. /package/{esm2015/lib/Shared/Enums/StyleConfirmationMode.js → esm2020/lib/Shared/Enums/StyleConfirmationMode.mjs} +0 -0
  166. /package/{esm2015/lib/Shared/Enums/TagInputView.js → esm2020/lib/Shared/Enums/TagInputView.mjs} +0 -0
  167. /package/{esm2015/lib/Shared/Enums/menu-list-enum.js → esm2020/lib/Shared/Enums/menu-list-enum.mjs} +0 -0
  168. /package/{esm2015/lib/Shared/Models/Attribute.js → esm2020/lib/Shared/Models/Attribute.mjs} +0 -0
  169. /package/{esm2015/lib/Shared/Models/AutocompleteDTO.js → esm2020/lib/Shared/Models/AutocompleteDTO.mjs} +0 -0
  170. /package/{esm2015/lib/Shared/Models/AutocompleteOptions.js → esm2020/lib/Shared/Models/AutocompleteOptions.mjs} +0 -0
  171. /package/{esm2015/lib/Shared/Models/CalendarEventDTO.js → esm2020/lib/Shared/Models/CalendarEventDTO.mjs} +0 -0
  172. /package/{esm2015/lib/Shared/Models/CalendarOptions.js → esm2020/lib/Shared/Models/CalendarOptions.mjs} +0 -0
  173. /package/{esm2015/lib/Shared/Models/CancelDTO.js → esm2020/lib/Shared/Models/CancelDTO.mjs} +0 -0
  174. /package/{esm2015/lib/Shared/Models/CaptchaStyle.js → esm2020/lib/Shared/Models/CaptchaStyle.mjs} +0 -0
  175. /package/{esm2015/lib/Shared/Models/CheckBoxOptions.js → esm2020/lib/Shared/Models/CheckBoxOptions.mjs} +0 -0
  176. /package/{esm2015/lib/Shared/Models/ConfirmationModalOptions.js → esm2020/lib/Shared/Models/ConfirmationModalOptions.mjs} +0 -0
  177. /package/{esm2015/lib/Shared/Models/ControlOptionsBase.js → esm2020/lib/Shared/Models/ControlOptionsBase.mjs} +0 -0
  178. /package/{esm2015/lib/Shared/Models/CustomValidation.js → esm2020/lib/Shared/Models/CustomValidation.mjs} +0 -0
  179. /package/{esm2015/lib/Shared/Models/DropdownOptions.js → esm2020/lib/Shared/Models/DropdownOptions.mjs} +0 -0
  180. /package/{esm2015/lib/Shared/Models/EditPersonalImage.js → esm2020/lib/Shared/Models/EditPersonalImage.mjs} +0 -0
  181. /package/{esm2015/lib/Shared/Models/EnglishArabicDTO.js → esm2020/lib/Shared/Models/EnglishArabicDTO.mjs} +0 -0
  182. /package/{esm2015/lib/Shared/Models/FileDTO.js → esm2020/lib/Shared/Models/FileDTO.mjs} +0 -0
  183. /package/{esm2015/lib/Shared/Models/FileUploadModel.js → esm2020/lib/Shared/Models/FileUploadModel.mjs} +0 -0
  184. /package/{esm2015/lib/Shared/Models/FileUploadOptions.js → esm2020/lib/Shared/Models/FileUploadOptions.mjs} +0 -0
  185. /package/{esm2015/lib/Shared/Models/FilterItem.js → esm2020/lib/Shared/Models/FilterItem.mjs} +0 -0
  186. /package/{esm2015/lib/Shared/Models/FormOptions.js → esm2020/lib/Shared/Models/FormOptions.mjs} +0 -0
  187. /package/{esm2015/lib/Shared/Models/HtmlEditorOptions.js → esm2020/lib/Shared/Models/HtmlEditorOptions.mjs} +0 -0
  188. /package/{esm2015/lib/Shared/Models/ImageUploadOptions.js → esm2020/lib/Shared/Models/ImageUploadOptions.mjs} +0 -0
  189. /package/{esm2015/lib/Shared/Models/MapAutoCompleteOptions.js → esm2020/lib/Shared/Models/MapAutoCompleteOptions.mjs} +0 -0
  190. /package/{esm2015/lib/Shared/Models/MapAutocompleteDTO.js → esm2020/lib/Shared/Models/MapAutocompleteDTO.mjs} +0 -0
  191. /package/{esm2015/lib/Shared/Models/MultiLingualHtmlEditorOptions.js → esm2020/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs} +0 -0
  192. /package/{esm2015/lib/Shared/Models/MultiLingualTextAreaOptions.js → esm2020/lib/Shared/Models/MultiLingualTextAreaOptions.mjs} +0 -0
  193. /package/{esm2015/lib/Shared/Models/MultilingualControlOptionsBase.js → esm2020/lib/Shared/Models/MultilingualControlOptionsBase.mjs} +0 -0
  194. /package/{esm2015/lib/Shared/Models/MultilingualTextBoxOptions.js → esm2020/lib/Shared/Models/MultilingualTextBoxOptions.mjs} +0 -0
  195. /package/{esm2015/lib/Shared/Models/MultipleFileUploadModel.js → esm2020/lib/Shared/Models/MultipleFileUploadModel.mjs} +0 -0
  196. /package/{esm2015/lib/Shared/Models/PagingDTO.js → esm2020/lib/Shared/Models/PagingDTO.mjs} +0 -0
  197. /package/{esm2015/lib/Shared/Models/PagingOptions.js → esm2020/lib/Shared/Models/PagingOptions.mjs} +0 -0
  198. /package/{esm2015/lib/Shared/Models/PagingPayload.js → esm2020/lib/Shared/Models/PagingPayload.mjs} +0 -0
  199. /package/{esm2015/lib/Shared/Models/PhoneOptions.js → esm2020/lib/Shared/Models/PhoneOptions.mjs} +0 -0
  200. /package/{esm2015/lib/Shared/Models/ProfileImageUploadOptions.js → esm2020/lib/Shared/Models/ProfileImageUploadOptions.mjs} +0 -0
  201. /package/{esm2015/lib/Shared/Models/ProfilePictureDTO.js → esm2020/lib/Shared/Models/ProfilePictureDTO.mjs} +0 -0
  202. /package/{esm2015/lib/Shared/Models/RadioButtonItem.js → esm2020/lib/Shared/Models/RadioButtonItem.mjs} +0 -0
  203. /package/{esm2015/lib/Shared/Models/RadioButtonOptions.js → esm2020/lib/Shared/Models/RadioButtonOptions.mjs} +0 -0
  204. /package/{esm2015/lib/Shared/Models/RangeNumber.js → esm2020/lib/Shared/Models/RangeNumber.mjs} +0 -0
  205. /package/{esm2015/lib/Shared/Models/Recaptcha.js → esm2020/lib/Shared/Models/Recaptcha.mjs} +0 -0
  206. /package/{esm2015/lib/Shared/Models/RecaptchaOptions.js → esm2020/lib/Shared/Models/RecaptchaOptions.mjs} +0 -0
  207. /package/{esm2015/lib/Shared/Models/RepeaterField.js → esm2020/lib/Shared/Models/RepeaterField.mjs} +0 -0
  208. /package/{esm2015/lib/Shared/Models/RepeaterOptions.js → esm2020/lib/Shared/Models/RepeaterOptions.mjs} +0 -0
  209. /package/{esm2015/lib/Shared/Models/SaveDTO.js → esm2020/lib/Shared/Models/SaveDTO.mjs} +0 -0
  210. /package/{esm2015/lib/Shared/Models/TagsInputDTO.js → esm2020/lib/Shared/Models/TagsInputDTO.mjs} +0 -0
  211. /package/{esm2015/lib/Shared/Models/TagsInputOptions.js → esm2020/lib/Shared/Models/TagsInputOptions.mjs} +0 -0
  212. /package/{esm2015/lib/Shared/Models/TextAreaOptions.js → esm2020/lib/Shared/Models/TextAreaOptions.mjs} +0 -0
  213. /package/{esm2015/lib/Shared/Models/TextBoxOptions.js → esm2020/lib/Shared/Models/TextBoxOptions.mjs} +0 -0
  214. /package/{esm2015/lib/Shared/Models/ToggleslideOptions.js → esm2020/lib/Shared/Models/ToggleslideOptions.mjs} +0 -0
  215. /package/{esm2015/lib/Shared/Models/UploadPersonalImage.js → esm2020/lib/Shared/Models/UploadPersonalImage.mjs} +0 -0
  216. /package/{esm2015/lib/Shared/Models/bread-crumb.js → esm2020/lib/Shared/Models/bread-crumb.mjs} +0 -0
  217. /package/{esm2015/lib/Shared/Models/control-filter-Item.js → esm2020/lib/Shared/Models/control-filter-Item.mjs} +0 -0
  218. /package/{esm2015/lib/Shared/Models/datePickerOptions.js → esm2020/lib/Shared/Models/datePickerOptions.mjs} +0 -0
  219. /package/{esm2015/lib/Shared/Models/filter-options.js → esm2020/lib/Shared/Models/filter-options.mjs} +0 -0
  220. /package/{esm2015/lib/Shared/Models/page-header-options.js → esm2020/lib/Shared/Models/page-header-options.mjs} +0 -0
  221. /package/{esm2015/lib/Shared/config/environment.js → esm2020/lib/Shared/config/environment.mjs} +0 -0
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@bnsights/bbsf-controls" />
5
+ export * from './public-api';
@@ -6,6 +6,8 @@ import { FilterItem } from '../Models/FilterItem';
6
6
  import { CustomValidation } from '../Models/CustomValidation';
7
7
  import { EnglishArabicDTO } from '../Models/EnglishArabicDTO';
8
8
  import { EnvironmentService } from '@bnsights/bbsf-utilities';
9
+ import { FormOptions } from '../Models/FormOptions';
10
+ import * as i0 from "@angular/core";
9
11
  export declare abstract class AppBaseComponent {
10
12
  utilityService: UtilityService;
11
13
  modalService: NgbModal;
@@ -48,4 +50,9 @@ export declare abstract class AppBaseComponent {
48
50
  calculateInitials(name: string): string;
49
51
  getCurrentUserInitials(): string;
50
52
  getCurrentFailOver(val: EnglishArabicDTO): string;
53
+ addRequiredValidation(customControlOption: any[], form: FormGroup, formOptions: FormOptions): void;
54
+ removeRequiredValidation(customControlOption: any[], form: FormGroup, formOptions: FormOptions): void;
55
+ resetFormControlsValue(customControlsOptions: any[], form: FormGroup): void;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBaseComponent, never>;
57
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppBaseComponent>;
51
58
  }
@@ -1,7 +1,8 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { TypeaheadMatch } from 'ngx-bootstrap/typeahead/public_api';
4
3
  import { TagInputView } from '../Enums/TagInputView';
4
+ import { TypeaheadMatch } from 'ngx-bootstrap/typeahead';
5
+ import * as i0 from "@angular/core";
5
6
  export interface TagsChangedEvent {
6
7
  change: string;
7
8
  tag: any;
@@ -44,4 +45,6 @@ export declare class BTagsInputComponent implements ControlValueAccessor {
44
45
  registerOnTouched(fn: any): void;
45
46
  calculateInitials(name: string): string;
46
47
  onBlur(): void;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<BTagsInputComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<BTagsInputComponent, "b-tags-input", never, { "maxTags": "maxTags"; "removeLastOnBackspace": "removeLastOnBackspace"; "canDeleteTags": "canDeleteTags"; "canAddTags": "canAddTags"; "ViewMode": "ViewMode"; "placeholder": "placeholder"; "showDescription": "showDescription"; "options": "options"; "defaultImageURL": "defaultImageURL"; "minLengthBeforeOptions": "minLengthBeforeOptions"; "scrollableOptions": "scrollableOptions"; "scrollableOptionsInView": "scrollableOptionsInView"; }, { "onTagsChanged": "onTagsChanged"; "onMaxTagsReached": "onMaxTagsReached"; "onNoOptionsMatch": "onNoOptionsMatch"; "onBlurInput": "onBlurInput"; }, never, never, false, never>;
47
50
  }
@@ -1,6 +1,9 @@
1
1
  import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class NgTemplateNameDirective {
3
4
  template: TemplateRef<any>;
4
5
  name: string;
5
6
  constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgTemplateNameDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgTemplateNameDirective, "ng-template[name]", never, { "name": "name"; }, {}, never, never, false, never>;
6
9
  }
@@ -1,4 +1,4 @@
1
1
  export declare class DropdownListItem {
2
- id: any;
3
- itemName: any;
2
+ key: any;
3
+ value: any;
4
4
  }
@@ -1,7 +1,10 @@
1
1
  import { DatePipe } from '@angular/common';
2
2
  import { PipeTransform } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class BBSFDateTimePipe implements PipeTransform {
4
5
  datePipe: DatePipe;
5
6
  constructor(datePipe: DatePipe);
6
7
  transform(value: Date): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDateTimePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDateTimePipe, "bbsfDateTime", false>;
7
10
  }
@@ -1,7 +1,10 @@
1
1
  import { DatePipe } from '@angular/common';
2
2
  import { PipeTransform } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class BBSFDatePipe implements PipeTransform {
4
5
  datePipe: DatePipe;
5
6
  constructor(datePipe: DatePipe);
6
7
  transform(value: Date): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDatePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDatePipe, "bbsfDate", false>;
7
10
  }
@@ -1,5 +1,6 @@
1
1
  import { UtilityService } from '@bnsights/bbsf-utilities';
2
2
  import { OwlDateTimeIntl } from 'ng-pick-datetime';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DefaultIntl extends OwlDateTimeIntl {
4
5
  private utilityService;
5
6
  constructor(utilityService: UtilityService);
@@ -15,4 +16,6 @@ export declare class DefaultIntl extends OwlDateTimeIntl {
15
16
  hour12AMLabel: string;
16
17
  /** A label for the hour12 button (PM) */
17
18
  hour12PMLabel: string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DefaultIntl, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<DefaultIntl>;
18
21
  }
@@ -2,6 +2,7 @@ import { CustomValidation } from '../Models/CustomValidation';
2
2
  import { ErrorMassageValidation } from './validationErrorMassage.service';
3
3
  import { ValidationErrors, ValidatorFn, AbstractControl } from '@angular/forms';
4
4
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ControlUtility {
6
7
  private ErrorHandler;
7
8
  private controlValidationService;
@@ -26,4 +27,6 @@ export declare class ControlUtility {
26
27
  AddCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
27
28
  static getLocal(): string;
28
29
  IsValid(FormControl: AbstractControl): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ControlUtility, never>;
31
+ static ɵprov: i0.ɵɵInjectableDeclaration<ControlUtility>;
29
32
  }
@@ -1,5 +1,6 @@
1
1
  import { ControlLayout } from "../Enums/ControlLayout";
2
2
  import { LanguageMode } from "../Enums/LanguageMode";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class GlobalSettings {
4
5
  /** to set type of view if MultilingualTextArea is Vertical or Horizontal */
5
6
  ViewType: ControlLayout;
@@ -11,4 +12,6 @@ export declare class GlobalSettings {
11
12
  MaxLengthTextBox: number;
12
13
  MaxLengthTextArea: number;
13
14
  DefaultImageSrc: string;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<GlobalSettings, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<GlobalSettings>;
14
17
  }
@@ -1,7 +1,10 @@
1
1
  import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class OnPagingFiltersChangeService {
3
4
  private subject;
4
5
  ChangeValue(value: string): void;
5
6
  ClearValue(): void;
6
7
  GetValue(): Observable<any>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<OnPagingFiltersChangeService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<OnPagingFiltersChangeService>;
7
10
  }
@@ -1,7 +1,10 @@
1
1
  import { ComponentFactoryResolver, ViewContainerRef } from "@angular/core";
2
2
  import { FormGroup } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class RenderComponentService {
4
5
  private componentFactoryResolver;
5
6
  constructor(componentFactoryResolver: ComponentFactoryResolver);
6
7
  renderDynamicComponent<T>(viewContainerRef: ViewContainerRef, component: any, group: FormGroup, options: any, size?: number): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RenderComponentService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<RenderComponentService>;
7
10
  }
@@ -1,13 +1,14 @@
1
- import { Http } from '@angular/http';
2
1
  import { ControlContainer } from '@angular/forms';
3
2
  import { UtilityService } from '@bnsights/bbsf-utilities';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class ErrorMassageValidation {
5
- private http;
6
5
  private controlContainer;
7
6
  private utilityService;
8
7
  static controlContainerstatic: any;
9
- constructor(http: Http, controlContainer: ControlContainer, utilityService: UtilityService);
8
+ constructor(controlContainer: ControlContainer, utilityService: UtilityService);
10
9
  url: string;
11
10
  static showerror(FormControlName: string): void;
12
11
  getErrorMassageValidation(error: any): string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMassageValidation, [{ optional: true; }, null]>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMassageValidation>;
13
14
  }
@@ -7,6 +7,7 @@ import { Observable } from 'rxjs';
7
7
  import { HttpClient } from '@angular/common/http';
8
8
  import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
9
9
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class AutocompleteTextBoxComponent implements OnInit {
11
12
  private http;
12
13
  private ErrorHandler;
@@ -53,4 +54,6 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
53
54
  RemoveCustomValidation: (CustomValidation: any) => void;
54
55
  AddCustomValidation: (CustomValidation: any) => void;
55
56
  IsValid: () => void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteTextBoxComponent, [null, null, null, null, { optional: true; }, null, null, null, null]>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
56
59
  }
@@ -6,6 +6,7 @@ import { ErrorMassageValidation } from '../../Shared/services/validationErrorMas
6
6
  import { ControlUtility } from '../../Shared/services/ControlUtility';
7
7
  import { CalendarOptions } from '../../Shared/Models/CalendarOptions';
8
8
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class CalendarComponent implements OnInit {
10
11
  private ErrorHandler;
11
12
  private controlUtility;
@@ -36,4 +37,6 @@ export declare class CalendarComponent implements OnInit {
36
37
  getErrorValidation(Errorsitem: any[]): void;
37
38
  OnDayClickFunction(arg: any): void;
38
39
  OnEventClickFunction(arg: any): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [null, null, { optional: true; }, null, null, null, null]>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "BBSF-Calendar", never, { "group": "group"; "options": "options"; }, {}, never, never, false, never>;
39
42
  }
@@ -3,6 +3,7 @@ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from
3
3
  import { ControlUtility } from '../../Shared/services/ControlUtility';
4
4
  import { CheckBoxOptions } from '../../Shared/Models/CheckBoxOptions';
5
5
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class CheckBoxComponent implements OnInit {
7
8
  private controlUtility;
8
9
  private controlContainer;
@@ -31,4 +32,6 @@ export declare class CheckBoxComponent implements OnInit {
31
32
  RemoveCustomValidation: (CustomValidation: any) => void;
32
33
  AddCustomValidation: (CustomValidation: any) => void;
33
34
  IsValid: () => void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, [null, { optional: true; }, null, null, null, null]>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "BBSF-CheckBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
34
37
  }
@@ -5,6 +5,7 @@ import { UtilityService } from '@bnsights/bbsf-utilities';
5
5
  import { ConfirmationModalOptions } from '../../Shared/Models/ConfirmationModalOptions';
6
6
  import { SweetAlertIcon } from 'sweetalert2';
7
7
  import { StyleConfirmationMode } from '../../Shared/Enums/StyleConfirmationMode';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class ConfirmationModalComponent implements OnInit {
9
10
  utilityService: UtilityService;
10
11
  private modalService;
@@ -23,4 +24,6 @@ export declare class ConfirmationModalComponent implements OnInit {
23
24
  private setTextValues;
24
25
  submit(): void;
25
26
  private handleError;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationModalComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationModalComponent, "BBSF-ConfirmationModal", never, { "options": "options"; }, {}, never, never, false, never>;
26
29
  }
@@ -8,6 +8,7 @@ import { BBSFTranslateService, ControlValidationService, UtilityService } from '
8
8
  import { DatePipe } from '@angular/common';
9
9
  import { DateTimeAdapter } from 'ng-pick-datetime';
10
10
  import * as dateTimeClass from 'ng-pick-datetime/date-time/date-time.class';
11
+ import * as i0 from "@angular/core";
11
12
  export declare class DateInputComponent implements OnInit {
12
13
  datepipe: DatePipe;
13
14
  private onChangeService;
@@ -55,4 +56,6 @@ export declare class DateInputComponent implements OnInit {
55
56
  AddCustomValidation: (CustomValidation: any) => void;
56
57
  IsValid: () => void;
57
58
  getDateValue(): string;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [null, null, null, null, { optional: true; }, null, null, null, null, null]>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "BBSF-DateTimePicker", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
58
61
  }
@@ -6,6 +6,8 @@ import { DropdownListItem } from '../../Shared/Models/DropdownListItem';
6
6
  import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
7
7
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
8
8
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
+ import { ForceDirection } from '../../Shared/Enums/ForceDirection';
10
+ import * as i0 from "@angular/core";
9
11
  export declare class DropdownListComponent implements OnInit {
10
12
  private onChangeService;
11
13
  private controlUtility;
@@ -29,6 +31,7 @@ export declare class DropdownListComponent implements OnInit {
29
31
  validationRules: any[];
30
32
  validationRulesasync: any[];
31
33
  textDir: any;
34
+ ForceDirection: typeof ForceDirection;
32
35
  ngOnInit(): void;
33
36
  ngAfterViewInit(): void;
34
37
  resetError: () => void;
@@ -47,4 +50,6 @@ export declare class DropdownListComponent implements OnInit {
47
50
  AddCustomValidation: (CustomValidation: any) => void;
48
51
  IsValid: () => void;
49
52
  UpdateDataSource: (dataSource: DropdownListItem[]) => void;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownListComponent, [null, null, { optional: true; }, null, null, null, null]>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownListComponent, "BBSF-DropdownList", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; "onClear": "onClear"; }, never, never, false, never>;
50
55
  }
@@ -8,6 +8,7 @@ import { MultipleFileUploadModel } from '../../Shared/Models/MultipleFileUploadM
8
8
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
9
9
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
10
10
  import { FileDTO } from '../../Shared/Models/FileDTO';
11
+ import * as i0 from "@angular/core";
11
12
  export declare class FileUploadComponent implements OnInit {
12
13
  private controlContainer;
13
14
  MultipleFileUplaodControlHost: FormGroupDirective;
@@ -52,4 +53,6 @@ export declare class FileUploadComponent implements OnInit {
52
53
  RemoveCustomValidation: (CustomValidation: any) => void;
53
54
  AddCustomValidation: (CustomValidation: any) => void;
54
55
  IsValid: () => void;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, [{ optional: true; }, null, null, null, null, null]>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "BBSF-FileUplaod", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
55
58
  }
@@ -4,6 +4,7 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
4
4
  import { FormOptions } from '../../Shared/Models/FormOptions';
5
5
  import { ControlUtility } from '../../Shared/services/ControlUtility';
6
6
  import { Router } from '@angular/router';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class FormComponent implements OnInit {
8
9
  private controlUtility;
9
10
  private utilityService;
@@ -22,4 +23,6 @@ export declare class FormComponent implements OnInit {
22
23
  private handleError;
23
24
  showGlobalError(): void;
24
25
  randomString(length: any): string;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "BBSF-Form", never, { "options": "options"; }, { "OnChange": "OnChange"; }, never, ["*"], false, never>;
25
28
  }
@@ -5,6 +5,7 @@ import { HtmlEditorOptions } from '../../Shared/Models/HtmlEditorOptions';
5
5
  import { AngularEditorConfig } from '@kolkov/angular-editor';
6
6
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
7
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class HtmlEditorComponent implements OnInit {
9
10
  private zone;
10
11
  private controlUtility;
@@ -43,4 +44,6 @@ export declare class HtmlEditorComponent implements OnInit {
43
44
  RemoveCustomValidation: (CustomValidation: any) => void;
44
45
  AddCustomValidation: (CustomValidation: any) => void;
45
46
  IsValid: () => void;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, [null, null, { optional: true; }, null, null, null, null]>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "BBSF-HtmlEditor", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
46
49
  }
@@ -7,6 +7,7 @@ import { CropperComponent } from 'angular-cropperjs';
7
7
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
8
8
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
9
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class ImageUploaderComponent implements OnInit {
11
12
  private zone;
12
13
  private controlUtility;
@@ -64,4 +65,6 @@ export declare class ImageUploaderComponent implements OnInit {
64
65
  RemoveCustomValidation: (CustomValidation: any) => void;
65
66
  AddCustomValidation: (CustomValidation: any) => void;
66
67
  IsValid: () => void;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null, null]>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageUploaderComponent, "BBSF-ImageUpload", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
67
70
  }
@@ -7,6 +7,7 @@ import { MatGoogleMapsAutocompleteComponent } from '@angular-material-extensions
7
7
  import { MapsAPILoader, LazyMapsAPILoader } from '@agm/core';
8
8
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
9
9
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class MapAutoCompleteComponent implements OnInit {
11
12
  private mapsAPILoader;
12
13
  private ngZone;
@@ -48,4 +49,6 @@ export declare class MapAutoCompleteComponent implements OnInit {
48
49
  RemoveCustomValidation: (CustomValidation: any) => void;
49
50
  AddCustomValidation: (CustomValidation: any) => void;
50
51
  IsValid: () => void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapAutoCompleteComponent, [null, null, null, { optional: true; }, null, null, null, null, null]>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapAutoCompleteComponent, "BBSF-MapAutoComplete", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
51
54
  }
@@ -5,6 +5,7 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
5
5
  import { AngularEditorConfig } from '@kolkov/angular-editor';
6
6
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
7
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class MultiLingualHtmlEditorComponent implements OnInit {
9
10
  MultiLingualHtmlEditorFormControlHost: FormGroupDirective;
10
11
  private controlContainer;
@@ -59,4 +60,6 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
59
60
  RemoveCustomValidation: (CustomValidation: any) => void;
60
61
  AddCustomValidation: (CustomValidation: any) => void;
61
62
  IsValid: () => void;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualHtmlEditorComponent, [null, { optional: true; }, null, null, null, null]>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualHtmlEditorComponent, "BBSF-MultiLingualHtmlEditor", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
62
65
  }
@@ -4,6 +4,7 @@ import { MultiLingualTextAreaOptions } from '../../Shared/Models/MultiLingualTex
4
4
  import { ControlUtility } from '../../Shared/services/ControlUtility';
5
5
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
6
6
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class MultiLingualTextAreaComponent implements OnInit {
8
9
  MultiLingualTextAreaFormControlHost: FormGroupDirective;
9
10
  private controlContainer;
@@ -68,4 +69,6 @@ export declare class MultiLingualTextAreaComponent implements OnInit {
68
69
  RemoveCustomValidation: (CustomValidation: any) => void;
69
70
  AddCustomValidation: (CustomValidation: any) => void;
70
71
  IsValid: () => void;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextAreaComponent, "BBSF-MultiLingualTextArea", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
71
74
  }
@@ -4,6 +4,7 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
4
4
  import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
5
5
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
6
6
  import { MultiLingualTextBoxOptions } from '../../Shared/Models/MultilingualTextBoxOptions';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class MultiLingualTextBoxComponent implements OnInit {
8
9
  MultiLingualTextBoxFormControlHost: FormGroupDirective;
9
10
  private controlContainer;
@@ -67,4 +68,6 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
67
68
  showInputUsingLanguageMode(): void;
68
69
  onArabicFocus(isFocus: boolean): void;
69
70
  onEnglishFocus(isFocus: boolean): void;
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [null, { optional: true; }, null, null, null, null, null]>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
70
73
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class JwPaginationComponent implements OnInit, OnChanges {
3
4
  items: Array<any>;
4
5
  changePage: EventEmitter<any>;
@@ -21,4 +22,6 @@ export declare class JwPaginationComponent implements OnInit, OnChanges {
21
22
  endIndex: number;
22
23
  pages: any[];
23
24
  };
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<JwPaginationComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<JwPaginationComponent, "jw-pagination", never, { "items": "items"; "initialPage": "initialPage"; "pageSize": "pageSize"; "maxPages": "maxPages"; "ShowFirstAndLast": "ShowFirstAndLast"; }, { "changePage": "changePage"; }, never, never, false, never>;
24
27
  }
@@ -6,6 +6,7 @@ import { Subscription } from 'rxjs';
6
6
  import { FormGroup } from '@angular/forms';
7
7
  import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
8
8
  import { RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class PagingComponent<T> implements OnInit, OnDestroy {
10
11
  utilityService: UtilityService;
11
12
  private http;
@@ -51,4 +52,6 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
51
52
  setText(pagesNumber: number, itemsNumber: number): void;
52
53
  clearFilters(): void;
53
54
  getFiltersValue(): {};
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagingComponent<any>, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<PagingComponent<any>, "BBSF-Paging", never, { "options": "options"; "group": "group"; }, { "Items": "Items"; }, never, never, false, never>;
54
57
  }
@@ -6,6 +6,7 @@ import { Country } from '../../Shared/Enums/Countries';
6
6
  import { PhoneOptions } from '../../Shared/Models/PhoneOptions';
7
7
  import { ControlUtility } from '../../Shared/services/ControlUtility';
8
8
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class PhoneComponent implements OnInit {
10
11
  private controlUtility;
11
12
  private controlContainer;
@@ -37,4 +38,6 @@ export declare class PhoneComponent implements OnInit {
37
38
  RemoveCustomValidation: (CustomValidation: any) => void;
38
39
  AddCustomValidation: (CustomValidation: any) => void;
39
40
  IsValid: () => void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneComponent, [null, { optional: true; }, null, null, null, null]>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "BBSF-Phone", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
40
43
  }
@@ -7,6 +7,7 @@ import { ProfileImageUploadOptions } from '../../Shared/Models/ProfileImageUploa
7
7
  import { ProfilePictureDTO } from '../../Shared/Models/ProfilePictureDTO';
8
8
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
9
9
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
10
+ import * as i0 from "@angular/core";
10
11
  export declare class ProfileImageUploaderComponent implements OnInit {
11
12
  private zone;
12
13
  private controlUtility;
@@ -63,4 +64,6 @@ export declare class ProfileImageUploaderComponent implements OnInit {
63
64
  RemoveCustomValidation: (CustomValidation: any) => void;
64
65
  AddCustomValidation: (CustomValidation: any) => void;
65
66
  IsValid: () => void;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null]>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageUploaderComponent, "BBSF-ProfileImageUploader", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
66
69
  }
@@ -4,6 +4,7 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
4
4
  import { RadioButtonOptions } from '../../Shared/Models/RadioButtonOptions';
5
5
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
6
6
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class RadioButtonComponent implements OnInit {
8
9
  private controlUtility;
9
10
  private controlContainer;
@@ -31,4 +32,6 @@ export declare class RadioButtonComponent implements OnInit {
31
32
  RemoveCustomValidation: (CustomValidation: any) => void;
32
33
  AddCustomValidation: (CustomValidation: any) => void;
33
34
  IsValid: () => void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [null, { optional: true; }, null, null, null, null]>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "BBSF-RadioButton", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
34
37
  }
@@ -5,6 +5,7 @@ import { ControlValidationService, RequestHandlerService, UtilityService } from
5
5
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
6
6
  import { RecaptchaOptions } from '../../Shared/Models/RecaptchaOptions';
7
7
  import { RecaptchaModel } from '../../Shared/Models/Recaptcha';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class RecaptchaComponent implements OnInit {
9
10
  private controlUtility;
10
11
  private requestHandlerService;
@@ -35,4 +36,6 @@ export declare class RecaptchaComponent implements OnInit {
35
36
  RemoveCustomValidation: (CustomValidation: any) => void;
36
37
  AddCustomValidation: (CustomValidation: any) => void;
37
38
  IsValid: () => void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecaptchaComponent, "BBSF-Recaptcha", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
38
41
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit, TemplateRef } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { RepeaterOptions } from '../../../Shared/Models/RepeaterOptions';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class RepeaterComponent implements OnInit {
5
6
  group: FormGroup;
6
7
  options: RepeaterOptions;
@@ -23,4 +24,6 @@ export declare class RepeaterComponent implements OnInit {
23
24
  addItem(): void;
24
25
  ngAfterViewInit(): void;
25
26
  setCurrentIndex(i: number): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterComponent, "BBSF-repeater", never, { "group": "group"; "options": "options"; "initialTemplate": "initialTemplate"; }, {}, never, never, false, never>;
26
29
  }
@@ -2,6 +2,7 @@ import { AfterViewInit, OnInit, SimpleChanges, ViewContainerRef } from '@angular
2
2
  import { FormGroup, FormGroupDirective } from '@angular/forms';
3
3
  import { RepeaterField } from '../../../Shared/Models/RepeaterField';
4
4
  import { RenderComponentService } from '../../../Shared/services/render-component-service.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewInit {
6
7
  private renderComponentService;
7
8
  TextControlHost: FormGroupDirective;
@@ -17,4 +18,6 @@ export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewI
17
18
  ngOnInit(): void;
18
19
  ngAfterViewInit(): void;
19
20
  ngOnChanges(changes: SimpleChanges): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterFieldBuilderComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterFieldBuilderComponent, "repeater-field-builder", never, { "group": "group"; "itemNumber": "itemNumber"; "controlNumber": "controlNumber"; "RepeaterField": "RepeaterField"; "itemsValue": "itemsValue"; }, {}, never, never, false, never>;
20
23
  }
@@ -1,8 +1,11 @@
1
1
  import { OnInit, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class RepeaterItemFieldComponent implements OnInit {
3
4
  templates: Array<TemplateRef<any>>;
4
5
  filedIndex: number;
5
6
  itemIndex: number;
6
7
  constructor();
7
8
  ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterItemFieldComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterItemFieldComponent, "repeater-item-field", never, { "templates": "templates"; "filedIndex": "filedIndex"; "itemIndex": "itemIndex"; }, {}, never, never, false, never>;
8
11
  }
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { RepeaterOptions } from '../../../Shared/Models/RepeaterOptions';
4
4
  import { UtilityService } from '@bnsights/bbsf-utilities';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class RepeaterTableComponent implements OnInit {
6
7
  utilityService: UtilityService;
7
8
  group: FormGroup;
@@ -13,4 +14,6 @@ export declare class RepeaterTableComponent implements OnInit {
13
14
  ngOnInit(): void;
14
15
  deleteItem(Index: any): void;
15
16
  addItem(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterTableComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterTableComponent, "BBSF-repeater-table", never, { "group": "group"; "options": "options"; }, {}, never, never, false, never>;
16
19
  }
@@ -6,6 +6,7 @@ import { HttpClient } from '@angular/common/http';
6
6
  import { Observable, Subscription } from 'rxjs';
7
7
  import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
8
8
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class TagsInputComponent implements OnInit, OnDestroy {
10
11
  private http;
11
12
  private controlUtility;
@@ -52,4 +53,6 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
52
53
  IsValid: () => void;
53
54
  onTagsInputBlur(SearchKey: any): void;
54
55
  getTagsValue(): any[];
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsInputComponent, [null, null, null, { optional: true; }, null, null, null, null]>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
55
58
  }
@@ -4,6 +4,7 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
4
4
  import { ControlUtility } from '../../Shared/services/ControlUtility';
5
5
  import { TextAreaOptions } from '../../Shared/Models/TextAreaOptions';
6
6
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class TextAreaComponent implements OnInit {
8
9
  private controlUtility;
9
10
  private controlContainer;
@@ -45,4 +46,6 @@ export declare class TextAreaComponent implements OnInit {
45
46
  RemoveCustomValidation: (CustomValidation: any) => void;
46
47
  AddCustomValidation: (CustomValidation: any) => void;
47
48
  IsValid: () => void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never, false, never>;
48
51
  }
@@ -5,6 +5,7 @@ import { InputType } from '../../Shared/Enums/InputType';
5
5
  import { ControlUtility } from '../../Shared/services/ControlUtility';
6
6
  import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
7
  import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class TextboxComponent implements OnInit {
9
10
  private controlUtility;
10
11
  private controlContainer;
@@ -60,4 +61,6 @@ export declare class TextboxComponent implements OnInit {
60
61
  AddCustomValidation: (CustomValidation: any) => void;
61
62
  IsValid: () => void;
62
63
  onTextBlur(): void;
64
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, [null, { optional: true; }, null, null, null, null]>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; "OnBlur": "OnBlur"; }, never, never, false, never>;
63
66
  }