@bnsights/bbsf-controls 1.0.107 → 1.0.110

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 (297) hide show
  1. package/README.md +15 -0
  2. package/esm2022/bnsights-bbsf-controls.mjs +5 -0
  3. package/esm2022/lib/Shared/Components/app-base-component.mjs +226 -0
  4. package/esm2022/lib/Shared/Components/ng-tag-input.mjs +331 -0
  5. package/esm2022/lib/Shared/Directives/template-name.directive.mjs +18 -0
  6. package/{esm2015/lib/Shared/Enums/CalendarView.js → esm2022/lib/Shared/Enums/CalendarView.mjs} +7 -7
  7. package/{esm2015/lib/Shared/Enums/ControlLayout.js → esm2022/lib/Shared/Enums/ControlLayout.mjs} +5 -5
  8. package/{esm2015/lib/Shared/Enums/Countries.js → esm2022/lib/Shared/Enums/Countries.mjs} +246 -246
  9. package/{esm2015/lib/Shared/Enums/Enums.js → esm2022/lib/Shared/Enums/Enums.mjs} +32 -32
  10. package/{esm2015/lib/Shared/Enums/FileType.js → esm2022/lib/Shared/Enums/FileType.mjs} +21 -21
  11. package/{esm2015/lib/Shared/Enums/FilterType.js → esm2022/lib/Shared/Enums/FilterType.mjs} +10 -10
  12. package/{esm2015/lib/Shared/Enums/FontSize.js → esm2022/lib/Shared/Enums/FontSize.mjs} +6 -6
  13. package/{esm2015/lib/Shared/Enums/ForceDirection.js → esm2022/lib/Shared/Enums/ForceDirection.mjs} +5 -5
  14. package/{esm2015/lib/Shared/Enums/IconPosition.js → esm2022/lib/Shared/Enums/IconPosition.mjs} +5 -5
  15. package/{esm2015/lib/Shared/Enums/ImageType.js → esm2022/lib/Shared/Enums/ImageType.mjs} +9 -9
  16. package/{esm2015/lib/Shared/Enums/InputType.js → esm2022/lib/Shared/Enums/InputType.mjs} +9 -9
  17. package/{esm2015/lib/Shared/Enums/Insert.js → esm2022/lib/Shared/Enums/Insert.mjs} +8 -8
  18. package/{esm2015/lib/Shared/Enums/LanguageMode.js → esm2022/lib/Shared/Enums/LanguageMode.mjs} +10 -10
  19. package/{esm2015/lib/Shared/Enums/LanguageValidation.js → esm2022/lib/Shared/Enums/LanguageValidation.mjs} +5 -5
  20. package/{esm2015/lib/Shared/Enums/Misc.js → esm2022/lib/Shared/Enums/Misc.mjs} +6 -6
  21. package/{esm2015/lib/Shared/Enums/PagingActionMode.js → esm2022/lib/Shared/Enums/PagingActionMode.mjs} +5 -5
  22. package/{esm2015/lib/Shared/Enums/Para.js → esm2022/lib/Shared/Enums/Para.mjs} +8 -8
  23. package/{esm2015/lib/Shared/Enums/PickerType.js → esm2022/lib/Shared/Enums/PickerType.mjs} +6 -6
  24. package/{esm2015/lib/Shared/Enums/SelectMode.js → esm2022/lib/Shared/Enums/SelectMode.mjs} +5 -5
  25. package/{esm2015/lib/Shared/Enums/StartView.js → esm2022/lib/Shared/Enums/StartView.mjs} +6 -6
  26. package/{esm2015/lib/Shared/Enums/Style.js → esm2022/lib/Shared/Enums/Style.mjs} +7 -7
  27. package/{esm2015/lib/Shared/Enums/StyleConfirmationMode.js → esm2022/lib/Shared/Enums/StyleConfirmationMode.mjs} +6 -6
  28. package/{esm2015/lib/Shared/Enums/TagInputView.js → esm2022/lib/Shared/Enums/TagInputView.mjs} +6 -6
  29. package/{esm2015/lib/Shared/Enums/menu-list-enum.js → esm2022/lib/Shared/Enums/menu-list-enum.mjs} +5 -5
  30. package/{esm2015/lib/Shared/Models/Attribute.js → esm2022/lib/Shared/Models/Attribute.mjs} +2 -2
  31. package/{esm2015/lib/Shared/Models/AutocompleteDTO.js → esm2022/lib/Shared/Models/AutocompleteDTO.mjs} +7 -7
  32. package/{esm2015/lib/Shared/Models/AutocompleteOptions.js → esm2022/lib/Shared/Models/AutocompleteOptions.mjs} +23 -23
  33. package/{esm2015/lib/Shared/Models/CalendarEventDTO.js → esm2022/lib/Shared/Models/CalendarEventDTO.mjs} +2 -2
  34. package/{esm2015/lib/Shared/Models/CalendarOptions.js → esm2022/lib/Shared/Models/CalendarOptions.mjs} +18 -18
  35. package/{esm2015/lib/Shared/Models/CancelDTO.js → esm2022/lib/Shared/Models/CancelDTO.mjs} +6 -6
  36. package/{esm2015/lib/Shared/Models/CaptchaStyle.js → esm2022/lib/Shared/Models/CaptchaStyle.mjs} +2 -2
  37. package/{esm2015/lib/Shared/Models/CheckBoxOptions.js → esm2022/lib/Shared/Models/CheckBoxOptions.mjs} +10 -10
  38. package/{esm2015/lib/Shared/Models/ConfirmationModalOptions.js → esm2022/lib/Shared/Models/ConfirmationModalOptions.mjs} +38 -38
  39. package/{esm2015/lib/Shared/Models/ControlOptionsBase.js → esm2022/lib/Shared/Models/ControlOptionsBase.mjs} +12 -12
  40. package/{esm2015/lib/Shared/Models/CustomValidation.js → esm2022/lib/Shared/Models/CustomValidation.mjs} +13 -13
  41. package/{esm2015/lib/Shared/Models/DropdownListItem.js → esm2022/lib/Shared/Models/DropdownListItem.mjs} +3 -3
  42. package/{esm2015/lib/Shared/Models/DropdownOptions.js → esm2022/lib/Shared/Models/DropdownOptions.mjs} +15 -15
  43. package/{esm2015/lib/Shared/Models/EditPersonalImage.js → esm2022/lib/Shared/Models/EditPersonalImage.mjs} +6 -6
  44. package/{esm2015/lib/Shared/Models/EnglishArabicDTO.js → esm2022/lib/Shared/Models/EnglishArabicDTO.mjs} +10 -10
  45. package/{esm2015/lib/Shared/Models/FileDTO.js → esm2022/lib/Shared/Models/FileDTO.mjs} +1 -1
  46. package/{esm2015/lib/Shared/Models/FileUploadModel.js → esm2022/lib/Shared/Models/FileUploadModel.mjs} +2 -2
  47. package/{esm2015/lib/Shared/Models/FileUploadOptions.js → esm2022/lib/Shared/Models/FileUploadOptions.mjs} +10 -10
  48. package/{esm2015/lib/Shared/Models/FilterItem.js → esm2022/lib/Shared/Models/FilterItem.mjs} +7 -7
  49. package/{esm2015/lib/Shared/Models/FormOptions.js → esm2022/lib/Shared/Models/FormOptions.mjs} +27 -27
  50. package/{esm2015/lib/Shared/Models/HtmlEditorOptions.js → esm2022/lib/Shared/Models/HtmlEditorOptions.mjs} +11 -11
  51. package/{esm2015/lib/Shared/Models/ImageUploadOptions.js → esm2022/lib/Shared/Models/ImageUploadOptions.mjs} +13 -13
  52. package/{esm2015/lib/Shared/Models/MapAutoCompleteOptions.js → esm2022/lib/Shared/Models/MapAutoCompleteOptions.mjs} +3 -3
  53. package/{esm2015/lib/Shared/Models/MapAutocompleteDTO.js → esm2022/lib/Shared/Models/MapAutocompleteDTO.mjs} +5 -5
  54. package/{esm2015/lib/Shared/Models/MultiLingualHtmlEditorOptions.js → esm2022/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs} +8 -8
  55. package/{esm2015/lib/Shared/Models/MultiLingualTextAreaOptions.js → esm2022/lib/Shared/Models/MultiLingualTextAreaOptions.mjs} +8 -8
  56. package/{esm2015/lib/Shared/Models/MultilingualControlOptionsBase.js → esm2022/lib/Shared/Models/MultilingualControlOptionsBase.mjs} +15 -15
  57. package/{esm2015/lib/Shared/Models/MultilingualTextBoxOptions.js → esm2022/lib/Shared/Models/MultilingualTextBoxOptions.mjs} +13 -13
  58. package/{esm2015/lib/Shared/Models/MultipleFileUploadModel.js → esm2022/lib/Shared/Models/MultipleFileUploadModel.mjs} +8 -8
  59. package/{esm2015/lib/Shared/Models/PagingDTO.js → esm2022/lib/Shared/Models/PagingDTO.mjs} +12 -12
  60. package/{esm2015/lib/Shared/Models/PagingOptions.js → esm2022/lib/Shared/Models/PagingOptions.mjs} +46 -46
  61. package/{esm2015/lib/Shared/Models/PagingPayload.js → esm2022/lib/Shared/Models/PagingPayload.mjs} +2 -2
  62. package/{esm2015/lib/Shared/Models/PhoneOptions.js → esm2022/lib/Shared/Models/PhoneOptions.mjs} +12 -12
  63. package/{esm2015/lib/Shared/Models/ProfileImageUploadOptions.js → esm2022/lib/Shared/Models/ProfileImageUploadOptions.mjs} +10 -10
  64. package/{esm2015/lib/Shared/Models/ProfilePictureDTO.js → esm2022/lib/Shared/Models/ProfilePictureDTO.mjs} +2 -2
  65. package/{esm2015/lib/Shared/Models/RadioButtonItem.js → esm2022/lib/Shared/Models/RadioButtonItem.mjs} +2 -2
  66. package/{esm2015/lib/Shared/Models/RadioButtonOptions.js → esm2022/lib/Shared/Models/RadioButtonOptions.mjs} +3 -3
  67. package/{esm2015/lib/Shared/Models/RangeNumber.js → esm2022/lib/Shared/Models/RangeNumber.mjs} +2 -2
  68. package/{esm2015/lib/Shared/Models/Recaptcha.js → esm2022/lib/Shared/Models/Recaptcha.mjs} +5 -5
  69. package/{esm2015/lib/Shared/Models/RecaptchaOptions.js → esm2022/lib/Shared/Models/RecaptchaOptions.mjs} +21 -21
  70. package/{esm2015/lib/Shared/Models/RepeaterField.js → esm2022/lib/Shared/Models/RepeaterField.mjs} +2 -2
  71. package/{esm2015/lib/Shared/Models/RepeaterOptions.js → esm2022/lib/Shared/Models/RepeaterOptions.mjs} +12 -12
  72. package/{esm2015/lib/Shared/Models/SaveDTO.js → esm2022/lib/Shared/Models/SaveDTO.mjs} +6 -6
  73. package/{esm2015/lib/Shared/Models/TagsInputDTO.js → esm2022/lib/Shared/Models/TagsInputDTO.mjs} +2 -2
  74. package/{esm2015/lib/Shared/Models/TagsInputOptions.js → esm2022/lib/Shared/Models/TagsInputOptions.mjs} +40 -40
  75. package/{esm2015/lib/Shared/Models/TextAreaOptions.js → esm2022/lib/Shared/Models/TextAreaOptions.mjs} +3 -3
  76. package/{esm2015/lib/Shared/Models/TextBoxOptions.js → esm2022/lib/Shared/Models/TextBoxOptions.mjs} +22 -22
  77. package/{esm2015/lib/Shared/Models/ToggleslideOptions.js → esm2022/lib/Shared/Models/ToggleslideOptions.mjs} +8 -8
  78. package/{esm2015/lib/Shared/Models/UploadPersonalImage.js → esm2022/lib/Shared/Models/UploadPersonalImage.mjs} +6 -6
  79. package/{esm2015/lib/Shared/Models/bread-crumb.js → esm2022/lib/Shared/Models/bread-crumb.mjs} +7 -7
  80. package/{esm2015/lib/Shared/Models/control-filter-Item.js → esm2022/lib/Shared/Models/control-filter-Item.mjs} +5 -5
  81. package/{esm2015/lib/Shared/Models/datePickerOptions.js → esm2022/lib/Shared/Models/datePickerOptions.mjs} +22 -22
  82. package/{esm2015/lib/Shared/Models/filter-options.js → esm2022/lib/Shared/Models/filter-options.mjs} +8 -8
  83. package/{esm2015/lib/Shared/Models/page-header-options.js → esm2022/lib/Shared/Models/page-header-options.mjs} +77 -77
  84. package/esm2022/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +21 -0
  85. package/esm2022/lib/Shared/Pipes/bbsf-date.pipe.mjs +21 -0
  86. package/{esm2015/lib/Shared/config/environment.js → esm2022/lib/Shared/config/environment.mjs} +11 -11
  87. package/esm2022/lib/Shared/default_intl.mjs +29 -0
  88. package/esm2022/lib/Shared/services/ControlUtility.mjs +162 -0
  89. package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +30 -0
  90. package/esm2022/lib/Shared/services/OnPagingFiltersChange.service.mjs +24 -0
  91. package/esm2022/lib/Shared/services/render-component-service.service.mjs +30 -0
  92. package/esm2022/lib/Shared/services/validationErrorMassage.service.mjs +170 -0
  93. package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +262 -0
  94. package/esm2022/lib/controls/Calendar/Calendar.component.mjs +173 -0
  95. package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +117 -0
  96. package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +136 -0
  97. package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +223 -0
  98. package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +193 -0
  99. package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +447 -0
  100. package/esm2022/lib/controls/Form/Form.component.mjs +101 -0
  101. package/{esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js → esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs} +226 -226
  102. package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +350 -0
  103. package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +324 -0
  104. package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +427 -0
  105. package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +429 -0
  106. package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +428 -0
  107. package/esm2022/lib/controls/Paging/JwPagination.component.mjs +156 -0
  108. package/esm2022/lib/controls/Paging/Paging.component.mjs +312 -0
  109. package/esm2022/lib/controls/Phone/Phone.component.mjs +129 -0
  110. package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +376 -0
  111. package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +109 -0
  112. package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +135 -0
  113. package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +125 -0
  114. package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +750 -0
  115. package/esm2022/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +21 -0
  116. package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +108 -0
  117. package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +277 -0
  118. package/esm2022/lib/controls/TextArea/TextArea.component.mjs +196 -0
  119. package/esm2022/lib/controls/TextBox/TextBox.component.mjs +306 -0
  120. package/esm2022/lib/controls/Toggleslide/toggleslide.component.mjs +90 -0
  121. package/esm2022/lib/controls/bbsf-controls.module.mjs +350 -0
  122. package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +37 -0
  123. package/{esm2015/public-api.js → esm2022/public-api.mjs} +130 -130
  124. package/{fesm2015/bnsights-bbsf-controls.js → fesm2022/bnsights-bbsf-controls.mjs} +8876 -8851
  125. package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -0
  126. package/index.d.ts +5 -0
  127. package/lib/Shared/Components/app-base-component.d.ts +58 -51
  128. package/lib/Shared/Components/ng-tag-input.d.ts +50 -47
  129. package/lib/Shared/Directives/template-name.directive.d.ts +9 -6
  130. package/lib/Shared/Enums/CalendarView.d.ts +6 -6
  131. package/lib/Shared/Enums/ControlLayout.d.ts +4 -4
  132. package/lib/Shared/Enums/Countries.d.ts +245 -245
  133. package/lib/Shared/Enums/Enums.d.ts +30 -30
  134. package/lib/Shared/Enums/FileType.d.ts +20 -20
  135. package/lib/Shared/Enums/FilterType.d.ts +9 -9
  136. package/lib/Shared/Enums/FontSize.d.ts +5 -5
  137. package/lib/Shared/Enums/ForceDirection.d.ts +4 -4
  138. package/lib/Shared/Enums/IconPosition.d.ts +4 -4
  139. package/lib/Shared/Enums/ImageType.d.ts +8 -8
  140. package/lib/Shared/Enums/InputType.d.ts +8 -8
  141. package/lib/Shared/Enums/Insert.d.ts +7 -7
  142. package/lib/Shared/Enums/LanguageMode.d.ts +9 -9
  143. package/lib/Shared/Enums/LanguageValidation.d.ts +4 -4
  144. package/lib/Shared/Enums/Misc.d.ts +5 -5
  145. package/lib/Shared/Enums/PagingActionMode.d.ts +4 -4
  146. package/lib/Shared/Enums/Para.d.ts +7 -7
  147. package/lib/Shared/Enums/PickerType.d.ts +5 -5
  148. package/lib/Shared/Enums/SelectMode.d.ts +4 -4
  149. package/lib/Shared/Enums/StartView.d.ts +5 -5
  150. package/lib/Shared/Enums/Style.d.ts +6 -6
  151. package/lib/Shared/Enums/StyleConfirmationMode.d.ts +5 -5
  152. package/lib/Shared/Enums/TagInputView.d.ts +5 -5
  153. package/lib/Shared/Enums/menu-list-enum.d.ts +4 -4
  154. package/lib/Shared/Models/Attribute.d.ts +4 -4
  155. package/lib/Shared/Models/AutocompleteDTO.d.ts +5 -5
  156. package/lib/Shared/Models/AutocompleteOptions.d.ts +40 -40
  157. package/lib/Shared/Models/CalendarEventDTO.d.ts +8 -8
  158. package/lib/Shared/Models/CalendarOptions.d.ts +23 -23
  159. package/lib/Shared/Models/CancelDTO.d.ts +5 -5
  160. package/lib/Shared/Models/CaptchaStyle.d.ts +7 -7
  161. package/lib/Shared/Models/CheckBoxOptions.d.ts +7 -7
  162. package/lib/Shared/Models/ConfirmationModalOptions.d.ts +21 -21
  163. package/lib/Shared/Models/ControlOptionsBase.d.ts +44 -44
  164. package/lib/Shared/Models/CustomValidation.d.ts +10 -10
  165. package/lib/Shared/Models/DropdownListItem.d.ts +4 -4
  166. package/lib/Shared/Models/DropdownOptions.d.ts +33 -33
  167. package/lib/Shared/Models/EditPersonalImage.d.ts +5 -5
  168. package/lib/Shared/Models/EnglishArabicDTO.d.ts +4 -4
  169. package/lib/Shared/Models/FileDTO.d.ts +19 -19
  170. package/lib/Shared/Models/FileUploadModel.d.ts +4 -4
  171. package/lib/Shared/Models/FileUploadOptions.d.ts +19 -19
  172. package/lib/Shared/Models/FilterItem.d.ts +13 -13
  173. package/lib/Shared/Models/FormOptions.d.ts +16 -16
  174. package/lib/Shared/Models/HtmlEditorOptions.d.ts +31 -31
  175. package/lib/Shared/Models/ImageUploadOptions.d.ts +23 -23
  176. package/lib/Shared/Models/MapAutoCompleteOptions.d.ts +6 -6
  177. package/lib/Shared/Models/MapAutocompleteDTO.d.ts +7 -7
  178. package/lib/Shared/Models/MultiLingualHtmlEditorOptions.d.ts +22 -22
  179. package/lib/Shared/Models/MultiLingualTextAreaOptions.d.ts +12 -12
  180. package/lib/Shared/Models/MultilingualControlOptionsBase.d.ts +77 -77
  181. package/lib/Shared/Models/MultilingualTextBoxOptions.d.ts +12 -12
  182. package/lib/Shared/Models/MultipleFileUploadModel.d.ts +7 -7
  183. package/lib/Shared/Models/PagingDTO.d.ts +11 -11
  184. package/lib/Shared/Models/PagingOptions.d.ts +56 -56
  185. package/lib/Shared/Models/PagingPayload.d.ts +5 -5
  186. package/lib/Shared/Models/PhoneOptions.d.ts +21 -21
  187. package/lib/Shared/Models/ProfileImageUploadOptions.d.ts +28 -28
  188. package/lib/Shared/Models/ProfilePictureDTO.d.ts +13 -13
  189. package/lib/Shared/Models/RadioButtonItem.d.ts +4 -4
  190. package/lib/Shared/Models/RadioButtonOptions.d.ts +8 -8
  191. package/lib/Shared/Models/RangeNumber.d.ts +4 -4
  192. package/lib/Shared/Models/Recaptcha.d.ts +6 -6
  193. package/lib/Shared/Models/RecaptchaOptions.d.ts +18 -18
  194. package/lib/Shared/Models/RepeaterField.d.ts +7 -7
  195. package/lib/Shared/Models/RepeaterOptions.d.ts +19 -19
  196. package/lib/Shared/Models/SaveDTO.d.ts +5 -5
  197. package/lib/Shared/Models/TagsInputDTO.d.ts +6 -6
  198. package/lib/Shared/Models/TagsInputOptions.d.ts +57 -57
  199. package/lib/Shared/Models/TextAreaOptions.d.ts +23 -23
  200. package/lib/Shared/Models/TextBoxOptions.d.ts +37 -37
  201. package/lib/Shared/Models/ToggleslideOptions.d.ts +9 -9
  202. package/lib/Shared/Models/UploadPersonalImage.d.ts +5 -5
  203. package/lib/Shared/Models/bread-crumb.d.ts +6 -6
  204. package/lib/Shared/Models/control-filter-Item.d.ts +6 -6
  205. package/lib/Shared/Models/datePickerOptions.d.ts +29 -29
  206. package/lib/Shared/Models/filter-options.d.ts +7 -7
  207. package/lib/Shared/Models/page-header-options.d.ts +71 -71
  208. package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +10 -7
  209. package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +10 -7
  210. package/lib/Shared/config/environment.d.ts +1 -1
  211. package/lib/Shared/default_intl.d.ts +21 -18
  212. package/lib/Shared/services/ControlUtility.d.ts +32 -29
  213. package/lib/Shared/services/GlobalSettings.service.d.ts +17 -14
  214. package/lib/Shared/services/OnPagingFiltersChange.service.d.ts +10 -7
  215. package/lib/Shared/services/render-component-service.service.d.ts +10 -7
  216. package/lib/Shared/services/validationErrorMassage.service.d.ts +14 -13
  217. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +59 -56
  218. package/lib/controls/Calendar/Calendar.component.d.ts +42 -39
  219. package/lib/controls/CheckBox/CheckBox.component.d.ts +37 -34
  220. package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +29 -26
  221. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +61 -58
  222. package/lib/controls/DropdownList/DropdownList.component.d.ts +55 -50
  223. package/lib/controls/FileUplaod/FileUplaod.component.d.ts +58 -55
  224. package/lib/controls/Form/Form.component.d.ts +28 -25
  225. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +49 -46
  226. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +70 -67
  227. package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +49 -51
  228. package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +65 -62
  229. package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +74 -71
  230. package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +73 -70
  231. package/lib/controls/Paging/JwPagination.component.d.ts +27 -24
  232. package/lib/controls/Paging/Paging.component.d.ts +57 -54
  233. package/lib/controls/Phone/Phone.component.d.ts +43 -40
  234. package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +69 -66
  235. package/lib/controls/RadioButton/RadioButton.component.d.ts +37 -34
  236. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +41 -38
  237. package/lib/controls/Repeater/repeater/repeater.component.d.ts +29 -26
  238. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +23 -20
  239. package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +11 -8
  240. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +19 -16
  241. package/lib/controls/TagsInput/TagsInput.component.d.ts +58 -55
  242. package/lib/controls/TextArea/TextArea.component.d.ts +51 -48
  243. package/lib/controls/TextBox/TextBox.component.d.ts +66 -63
  244. package/lib/controls/Toggleslide/toggleslide.component.d.ts +33 -30
  245. package/lib/controls/bbsf-controls.module.d.ts +68 -10
  246. package/lib/controls/page-header-component/page-header-component.component.d.ts +20 -17
  247. package/package.json +61 -78
  248. package/public-api.d.ts +117 -117
  249. package/src/lib/assets/Style.scss +4 -4
  250. package/bnsights-bbsf-controls-1.0.107.tgz +0 -0
  251. package/bnsights-bbsf-controls.d.ts +0 -5
  252. package/bnsights-bbsf-controls.metadata.json +0 -1
  253. package/bundles/bnsights-bbsf-controls.umd.js +0 -9636
  254. package/bundles/bnsights-bbsf-controls.umd.js.map +0 -1
  255. package/esm2015/bnsights-bbsf-controls.js +0 -6
  256. package/esm2015/lib/Shared/Components/app-base-component.js +0 -202
  257. package/esm2015/lib/Shared/Components/ng-tag-input.js +0 -323
  258. package/esm2015/lib/Shared/Directives/template-name.directive.js +0 -18
  259. package/esm2015/lib/Shared/Pipes/bbsf-date-time.pipe.js +0 -20
  260. package/esm2015/lib/Shared/Pipes/bbsf-date.pipe.js +0 -20
  261. package/esm2015/lib/Shared/default_intl.js +0 -29
  262. package/esm2015/lib/Shared/services/ControlUtility.js +0 -164
  263. package/esm2015/lib/Shared/services/GlobalSettings.service.js +0 -28
  264. package/esm2015/lib/Shared/services/OnPagingFiltersChange.service.js +0 -22
  265. package/esm2015/lib/Shared/services/render-component-service.service.js +0 -30
  266. package/esm2015/lib/Shared/services/validationErrorMassage.service.js +0 -172
  267. package/esm2015/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.js +0 -266
  268. package/esm2015/lib/controls/Calendar/Calendar.component.js +0 -177
  269. package/esm2015/lib/controls/CheckBox/CheckBox.component.js +0 -118
  270. package/esm2015/lib/controls/ConfirmationModal/ConfirmationModal.component.js +0 -139
  271. package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +0 -227
  272. package/esm2015/lib/controls/DropdownList/DropdownList.component.js +0 -192
  273. package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +0 -447
  274. package/esm2015/lib/controls/Form/Form.component.js +0 -106
  275. package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +0 -347
  276. package/esm2015/lib/controls/MapAutoComplete/MapAutoComplete.component.js +0 -325
  277. package/esm2015/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.js +0 -429
  278. package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +0 -434
  279. package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +0 -433
  280. package/esm2015/lib/controls/Paging/JwPagination.component.js +0 -129
  281. package/esm2015/lib/controls/Paging/Paging.component.js +0 -312
  282. package/esm2015/lib/controls/Phone/Phone.component.js +0 -129
  283. package/esm2015/lib/controls/ProfileImageUploader/ProfileImageUploader.component.js +0 -371
  284. package/esm2015/lib/controls/RadioButton/RadioButton.component.js +0 -111
  285. package/esm2015/lib/controls/Recaptcha/Recaptcha.component.js +0 -135
  286. package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +0 -117
  287. package/esm2015/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.js +0 -748
  288. package/esm2015/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.js +0 -19
  289. package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +0 -108
  290. package/esm2015/lib/controls/TagsInput/TagsInput.component.js +0 -278
  291. package/esm2015/lib/controls/TextArea/TextArea.component.js +0 -197
  292. package/esm2015/lib/controls/TextBox/TextBox.component.js +0 -309
  293. package/esm2015/lib/controls/Toggleslide/toggleslide.component.js +0 -90
  294. package/esm2015/lib/controls/bbsf-controls.module.js +0 -240
  295. package/esm2015/lib/controls/page-header-component/page-header-component.component.js +0 -32
  296. package/fesm2015/bnsights-bbsf-controls.js.map +0 -1
  297. package/src/lib/assets/.gitkeep +0 -0
@@ -1,55 +1,58 @@
1
- import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
2
- import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
- import { ControlUtility } from '../../Shared/services/ControlUtility';
4
- import { TagsInputOptions } from '../../Shared/Models/TagsInputOptions';
5
- import { HttpClient } from '@angular/common/http';
6
- import { Observable, Subscription } from 'rxjs';
7
- import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
8
- import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
- export declare class TagsInputComponent implements OnInit, OnDestroy {
10
- private http;
11
- private controlUtility;
12
- private requestHandlerService;
13
- private controlContainer;
14
- TagsInputControlHost: FormGroupDirective;
15
- private UtilityService;
16
- private controlValidationService;
17
- private globalSettings;
18
- static controlContainerstatic: any;
19
- constructor(http: HttpClient, controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, controlContainer: ControlContainer, TagsInputControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
20
- group: FormGroup;
21
- options: TagsInputOptions;
22
- OnChange: EventEmitter<any>;
23
- SearchKey: any;
24
- SelectedId: any[];
25
- tags: any[];
26
- NewSelectionValidationKey: string;
27
- TagsFormGroup: FormGroup;
28
- TagsFormControl: AbstractControl;
29
- IsNoMatch: any;
30
- markAllAsTouched: boolean;
31
- validationRules: any[];
32
- validationRulesasync: any[];
33
- changeValueSubscription: Subscription;
34
- SearchResultHasItems: boolean;
35
- textDir: any;
36
- static showErrorOfInputs(errors: any): void;
37
- ngOnDestroy(): void;
38
- ngOnInit(): void;
39
- ngAfterViewInit(): void;
40
- resetError: () => void;
41
- showGlobalError(): void;
42
- getErrorValidation(ErrorList: any): string;
43
- copyInputMessage(inputElement: any): void;
44
- searchFunctionFactory(Text: any): Observable<object>;
45
- AddTag(event: any, key: any): void;
46
- onTagsChanged(result: any): void;
47
- onNoOptionsMatch(event: any): void;
48
- RemoveRequiredValidation: () => void;
49
- AddRequiredValidation: () => void;
50
- RemoveCustomValidation: (CustomValidation: any) => void;
51
- AddCustomValidation: (CustomValidation: any) => void;
52
- IsValid: () => void;
53
- onTagsInputBlur(SearchKey: any): void;
54
- getTagsValue(): any[];
55
- }
1
+ import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
2
+ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
+ import { ControlUtility } from '../../Shared/services/ControlUtility';
4
+ import { TagsInputOptions } from '../../Shared/Models/TagsInputOptions';
5
+ import { HttpClient } from '@angular/common/http';
6
+ import { Observable, Subscription } from 'rxjs';
7
+ import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
8
+ import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class TagsInputComponent implements OnInit, OnDestroy {
11
+ private http;
12
+ private controlUtility;
13
+ private requestHandlerService;
14
+ private controlContainer;
15
+ TagsInputControlHost: FormGroupDirective;
16
+ private UtilityService;
17
+ private controlValidationService;
18
+ private globalSettings;
19
+ static controlContainerstatic: any;
20
+ constructor(http: HttpClient, controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, controlContainer: ControlContainer, TagsInputControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
21
+ group: FormGroup;
22
+ options: TagsInputOptions;
23
+ OnChange: EventEmitter<any>;
24
+ SearchKey: any;
25
+ SelectedId: any[];
26
+ tags: any[];
27
+ NewSelectionValidationKey: string;
28
+ TagsFormGroup: FormGroup;
29
+ TagsFormControl: AbstractControl;
30
+ IsNoMatch: any;
31
+ markAllAsTouched: boolean;
32
+ validationRules: any[];
33
+ validationRulesasync: any[];
34
+ changeValueSubscription: Subscription;
35
+ SearchResultHasItems: boolean;
36
+ textDir: any;
37
+ static showErrorOfInputs(errors: any): void;
38
+ ngOnDestroy(): void;
39
+ ngOnInit(): void;
40
+ ngAfterViewInit(): void;
41
+ resetError: () => void;
42
+ showGlobalError(): void;
43
+ getErrorValidation(ErrorList: any): string;
44
+ copyInputMessage(inputElement: any): void;
45
+ searchFunctionFactory(Text: any): Observable<object>;
46
+ AddTag(event: any, key: any): void;
47
+ onTagsChanged(result: any): void;
48
+ onNoOptionsMatch(event: any): void;
49
+ RemoveRequiredValidation: () => void;
50
+ AddRequiredValidation: () => void;
51
+ RemoveCustomValidation: (CustomValidation: any) => void;
52
+ AddCustomValidation: (CustomValidation: any) => void;
53
+ IsValid: () => void;
54
+ onTagsInputBlur(SearchKey: any): void;
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": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
58
+ }
@@ -1,48 +1,51 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
- import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
4
- import { ControlUtility } from '../../Shared/services/ControlUtility';
5
- import { TextAreaOptions } from '../../Shared/Models/TextAreaOptions';
6
- import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
- export declare class TextAreaComponent implements OnInit {
8
- private controlUtility;
9
- private controlContainer;
10
- TextAreaControlHost: FormGroupDirective;
11
- private UtilityService;
12
- private controlValidationService;
13
- private globalSettings;
14
- static controlContainerstatic: any;
15
- constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextAreaControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
16
- group: FormGroup;
17
- options: TextAreaOptions;
18
- OnChange: EventEmitter<any>;
19
- TextAreaFormControl: AbstractControl;
20
- WordCount: number;
21
- WordCountArray: number;
22
- IsShowWordCount: boolean;
23
- markAllAsTouched: boolean;
24
- validationRules: any[];
25
- validationRulesasync: any[];
26
- currentCharsCount: number;
27
- showCharsLimitMsg: boolean;
28
- hasCharsLimitValidationError: boolean;
29
- charsLimitMsgClass: string;
30
- minCharsLimit: number;
31
- maxLimitWarningMsg: string;
32
- textDir: any;
33
- ngOnInit(): void;
34
- ngAfterViewInit(): void;
35
- resetError: () => void;
36
- showGlobalError(): void;
37
- getErrorValidation(ErrorList: any): string;
38
- getInputType(type: number): string;
39
- trimControlValue(): void;
40
- copyInputMessage(inputElement: any): void;
41
- onTextChange(): void;
42
- onFocus(isFocus: boolean): void;
43
- RemoveRequiredValidation: () => void;
44
- AddRequiredValidation: () => void;
45
- RemoveCustomValidation: (CustomValidation: any) => void;
46
- AddCustomValidation: (CustomValidation: any) => void;
47
- IsValid: () => void;
48
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
+ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
4
+ import { ControlUtility } from '../../Shared/services/ControlUtility';
5
+ import { TextAreaOptions } from '../../Shared/Models/TextAreaOptions';
6
+ import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class TextAreaComponent implements OnInit {
9
+ private controlUtility;
10
+ private controlContainer;
11
+ TextAreaControlHost: FormGroupDirective;
12
+ private UtilityService;
13
+ private controlValidationService;
14
+ private globalSettings;
15
+ static controlContainerstatic: any;
16
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextAreaControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
+ group: FormGroup;
18
+ options: TextAreaOptions;
19
+ OnChange: EventEmitter<any>;
20
+ TextAreaFormControl: AbstractControl;
21
+ WordCount: number;
22
+ WordCountArray: number;
23
+ IsShowWordCount: boolean;
24
+ markAllAsTouched: boolean;
25
+ validationRules: any[];
26
+ validationRulesasync: any[];
27
+ currentCharsCount: number;
28
+ showCharsLimitMsg: boolean;
29
+ hasCharsLimitValidationError: boolean;
30
+ charsLimitMsgClass: string;
31
+ minCharsLimit: number;
32
+ maxLimitWarningMsg: string;
33
+ textDir: any;
34
+ ngOnInit(): void;
35
+ ngAfterViewInit(): void;
36
+ resetError: () => void;
37
+ showGlobalError(): void;
38
+ getErrorValidation(ErrorList: any): string;
39
+ getInputType(type: number): string;
40
+ trimControlValue(): void;
41
+ copyInputMessage(inputElement: any): void;
42
+ onTextChange(): void;
43
+ onFocus(isFocus: boolean): void;
44
+ RemoveRequiredValidation: () => void;
45
+ AddRequiredValidation: () => void;
46
+ RemoveCustomValidation: (CustomValidation: any) => void;
47
+ AddCustomValidation: (CustomValidation: any) => void;
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": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
51
+ }
@@ -1,63 +1,66 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
- import { TextBoxOptions } from '../../Shared/Models/TextBoxOptions';
4
- import { InputType } from '../../Shared/Enums/InputType';
5
- import { ControlUtility } from '../../Shared/services/ControlUtility';
6
- import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
- import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
- export declare class TextboxComponent implements OnInit {
9
- private controlUtility;
10
- private controlContainer;
11
- TextControlHost: FormGroupDirective;
12
- UtilityService: UtilityService;
13
- private controlValidationService;
14
- private globalSettings;
15
- static controlContainerstatic: any;
16
- constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
- group: FormGroup;
18
- options: TextBoxOptions;
19
- OnChange: EventEmitter<any>;
20
- OnBlur: EventEmitter<any>;
21
- inputType: typeof InputType;
22
- TextBoxFormControl: AbstractControl;
23
- MaskPattern: string;
24
- WordCount: number;
25
- WordCountArray: number;
26
- EmailValidationKey: string;
27
- URLValidationKey: string;
28
- PasswordComplexityHasNumber: string;
29
- ArabicLetterOnly: string;
30
- EnglishLetterOnly: string;
31
- PasswordComplexityHasCapitalLetter: string;
32
- PasswordComplexityHasSmallLetter: string;
33
- PasswordComplexityHasSpecialLetter: string;
34
- MaxWordCountValidationKey: string;
35
- IsShowWordCount: boolean;
36
- markAllAsTouched: boolean;
37
- validationRules: any[];
38
- validationRulesasync: any[];
39
- currentCharsCount: number;
40
- showCharsLimitMsg: boolean;
41
- hasCharsLimitValidationError: boolean;
42
- charsLimitMsgClass: string;
43
- minCharsLimit: number;
44
- maxLimitWarningMsg: string;
45
- textDir: any;
46
- ngOnInit(): void;
47
- ngAfterViewInit(): void;
48
- resetError: () => void;
49
- showGlobalError(): void;
50
- getErrorValidation(ErrorList: any): string;
51
- getInputType(type: number): string;
52
- trimControlValue(): void;
53
- copyInputMessage(inputElement: any): void;
54
- getCustomErrorsMassages(): void;
55
- onTextChange(): void;
56
- onFocus(isFocus: boolean): void;
57
- RemoveRequiredValidation: () => void;
58
- AddRequiredValidation: () => void;
59
- RemoveCustomValidation: (CustomValidation: any) => void;
60
- AddCustomValidation: (CustomValidation: any) => void;
61
- IsValid: () => void;
62
- onTextBlur(): void;
63
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
3
+ import { TextBoxOptions } from '../../Shared/Models/TextBoxOptions';
4
+ import { InputType } from '../../Shared/Enums/InputType';
5
+ import { ControlUtility } from '../../Shared/services/ControlUtility';
6
+ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
7
+ import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
8
+ import * as i0 from "@angular/core";
9
+ export declare class TextboxComponent implements OnInit {
10
+ private controlUtility;
11
+ private controlContainer;
12
+ TextControlHost: FormGroupDirective;
13
+ UtilityService: UtilityService;
14
+ private controlValidationService;
15
+ private globalSettings;
16
+ static controlContainerstatic: any;
17
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
+ group: FormGroup;
19
+ options: TextBoxOptions;
20
+ OnChange: EventEmitter<any>;
21
+ OnBlur: EventEmitter<any>;
22
+ inputType: typeof InputType;
23
+ TextBoxFormControl: AbstractControl;
24
+ MaskPattern: string;
25
+ WordCount: number;
26
+ WordCountArray: number;
27
+ EmailValidationKey: string;
28
+ URLValidationKey: string;
29
+ PasswordComplexityHasNumber: string;
30
+ ArabicLetterOnly: string;
31
+ EnglishLetterOnly: string;
32
+ PasswordComplexityHasCapitalLetter: string;
33
+ PasswordComplexityHasSmallLetter: string;
34
+ PasswordComplexityHasSpecialLetter: string;
35
+ MaxWordCountValidationKey: string;
36
+ IsShowWordCount: boolean;
37
+ markAllAsTouched: boolean;
38
+ validationRules: any[];
39
+ validationRulesasync: any[];
40
+ currentCharsCount: number;
41
+ showCharsLimitMsg: boolean;
42
+ hasCharsLimitValidationError: boolean;
43
+ charsLimitMsgClass: string;
44
+ minCharsLimit: number;
45
+ maxLimitWarningMsg: string;
46
+ textDir: any;
47
+ ngOnInit(): void;
48
+ ngAfterViewInit(): void;
49
+ resetError: () => void;
50
+ showGlobalError(): void;
51
+ getErrorValidation(ErrorList: any): string;
52
+ getInputType(type: number): string;
53
+ trimControlValue(): void;
54
+ copyInputMessage(inputElement: any): void;
55
+ getCustomErrorsMassages(): void;
56
+ onTextChange(): void;
57
+ onFocus(isFocus: boolean): void;
58
+ RemoveRequiredValidation: () => void;
59
+ AddRequiredValidation: () => void;
60
+ RemoveCustomValidation: (CustomValidation: any) => void;
61
+ AddCustomValidation: (CustomValidation: any) => void;
62
+ IsValid: () => void;
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": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; "OnBlur": "OnBlur"; }, never, never, false, never>;
66
+ }
@@ -1,30 +1,33 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { FormGroup, ControlContainer, FormGroupDirective, AbstractControl } from '@angular/forms';
3
- import { ControlUtility } from '../../Shared/services/ControlUtility';
4
- import { ToggleSlideOptions } from '../../Shared/Models/ToggleslideOptions';
5
- import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
6
- import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
- export declare class ToggleslideComponent implements OnInit {
8
- private controlUtility;
9
- private controlContainer;
10
- ToggleslideControlHost: FormGroupDirective;
11
- TextControlHost: FormGroupDirective;
12
- UtilityService: UtilityService;
13
- private controlValidationService;
14
- private globalSettings;
15
- static controlContainerstatic: any;
16
- constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, ToggleslideControlHost: FormGroupDirective, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
17
- group: FormGroup;
18
- options: ToggleSlideOptions;
19
- OnChange: EventEmitter<any>;
20
- ToggleslideFormControl: AbstractControl;
21
- SlideValue: boolean;
22
- markAllAsTouched: boolean;
23
- textDir: any;
24
- ngOnInit(): void;
25
- ngAfterViewInit(): void;
26
- resetError(): void;
27
- showGlobalError(): void;
28
- getErrorValidation(ErrorList: any[]): string;
29
- changeValueToggle(): void;
30
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { FormGroup, ControlContainer, FormGroupDirective, AbstractControl } from '@angular/forms';
3
+ import { ControlUtility } from '../../Shared/services/ControlUtility';
4
+ import { ToggleSlideOptions } from '../../Shared/Models/ToggleslideOptions';
5
+ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
6
+ import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ToggleslideComponent implements OnInit {
9
+ private controlUtility;
10
+ private controlContainer;
11
+ ToggleslideControlHost: FormGroupDirective;
12
+ TextControlHost: FormGroupDirective;
13
+ UtilityService: UtilityService;
14
+ private controlValidationService;
15
+ private globalSettings;
16
+ static controlContainerstatic: any;
17
+ constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, ToggleslideControlHost: FormGroupDirective, TextControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
18
+ group: FormGroup;
19
+ options: ToggleSlideOptions;
20
+ OnChange: EventEmitter<any>;
21
+ ToggleslideFormControl: AbstractControl;
22
+ SlideValue: boolean;
23
+ markAllAsTouched: boolean;
24
+ textDir: any;
25
+ ngOnInit(): void;
26
+ ngAfterViewInit(): void;
27
+ resetError(): void;
28
+ showGlobalError(): void;
29
+ getErrorValidation(ErrorList: any[]): string;
30
+ changeValueToggle(): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleslideComponent, [null, { optional: true; }, null, null, null, null, null]>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleslideComponent, "BBSF-Toggleslide", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "OnChange": "OnChange"; }, never, never, false, never>;
33
+ }
@@ -1,10 +1,68 @@
1
- import { Injector } from '@angular/core';
2
- import { IConfig } from 'ngx-mask';
3
- import { TranslateService } from '@ngx-translate/core';
4
- export declare let options: Partial<IConfig> | (() => Partial<IConfig>);
5
- export declare let AppInjector: Injector;
6
- export declare class BBSFControlsModule {
7
- private injector;
8
- private translate;
9
- constructor(injector: Injector, translate: TranslateService);
10
- }
1
+ import { IConfig } from 'ngx-mask';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./DateTimePicker/DateTimePicker.component";
4
+ import * as i2 from "./FileUplaod/FileUplaod.component";
5
+ import * as i3 from "./MultiLingualTextBox/MultiLingualTextBox.component";
6
+ import * as i4 from "./TextBox/TextBox.component";
7
+ import * as i5 from "./TextArea/TextArea.component";
8
+ import * as i6 from "./MultiLingualTextArea/MultiLingualTextArea.component";
9
+ import * as i7 from "./CheckBox/CheckBox.component";
10
+ import * as i8 from "./DropdownList/DropdownList.component";
11
+ import * as i9 from "./Phone/Phone.component";
12
+ import * as i10 from "./Toggleslide/toggleslide.component";
13
+ import * as i11 from "./HtmlEditor/HtmlEditor.component";
14
+ import * as i12 from "./MultiLingualHtmlEditor/MultiLingualHtmlEditor.component";
15
+ import * as i13 from "./ImageUpload/ImageUpload.component";
16
+ import * as i14 from "./ProfileImageUploader/ProfileImageUploader.component";
17
+ import * as i15 from "./Calendar/Calendar.component";
18
+ import * as i16 from "./MapAutoComplete/MapAutoComplete.component";
19
+ import * as i17 from "./AutocompleteTextBox/AutocompleteTextBox.component";
20
+ import * as i18 from "./TagsInput/TagsInput.component";
21
+ import * as i19 from "./Paging/Paging.component";
22
+ import * as i20 from "./Paging/JwPagination.component";
23
+ import * as i21 from "./RadioButton/RadioButton.component";
24
+ import * as i22 from "./Form/Form.component";
25
+ import * as i23 from "./ConfirmationModal/ConfirmationModal.component";
26
+ import * as i24 from "./Repeater/repeater/repeater.component";
27
+ import * as i25 from "./Repeater/repeater-field-builder/repeater-field-builder.component";
28
+ import * as i26 from "../Shared/Directives/template-name.directive";
29
+ import * as i27 from "./Repeater/repeater-item-field/repeater-item-field.component";
30
+ import * as i28 from "./Repeater/repeater-table/repeater-table.component";
31
+ import * as i29 from "../Shared/Pipes/bbsf-date-time.pipe";
32
+ import * as i30 from "../Shared/Pipes/bbsf-date.pipe";
33
+ import * as i31 from "../Shared/Components/ng-tag-input";
34
+ import * as i32 from "./Recaptcha/Recaptcha.component";
35
+ import * as i33 from "./page-header-component/page-header-component.component";
36
+ import * as i34 from "@angular/common";
37
+ import * as i35 from "ngx-infinite-scroll";
38
+ import * as i36 from "@ng-select/ng-select";
39
+ import * as i37 from "@fullcalendar/angular";
40
+ import * as i38 from "angular-cropperjs";
41
+ import * as i39 from "@ng-bootstrap/ng-bootstrap";
42
+ import * as i40 from "ngx-dropzone";
43
+ import * as i41 from "ng2-file-upload";
44
+ import * as i42 from "ngx-mask";
45
+ import * as i43 from "ngx-summernote";
46
+ import * as i44 from "@angular/material/slide-toggle";
47
+ import * as i45 from "ngx-intl-tel-input";
48
+ import * as i46 from "@danielmoncada/angular-datetime-picker";
49
+ import * as i47 from "ng-block-ui";
50
+ import * as i48 from "@angular/forms";
51
+ import * as i49 from "@angular/router";
52
+ import * as i50 from "ngx-toastr";
53
+ import * as i51 from "@angular/common/http";
54
+ import * as i52 from "@angular/cdk/overlay";
55
+ import * as i53 from "@ngrx/store-devtools";
56
+ import * as i54 from "ngx-bootstrap/datepicker";
57
+ import * as i55 from "ngx-bootstrap/typeahead";
58
+ import * as i56 from "@kolkov/angular-editor";
59
+ import * as i57 from "angular-ng-autocomplete";
60
+ import * as i58 from "@bnsights/bbsf-utilities";
61
+ import * as i59 from "ng-inline-svg-2";
62
+ import * as i60 from "@sweetalert2/ngx-sweetalert2";
63
+ export declare let options: Partial<IConfig> | (() => Partial<IConfig>);
64
+ export declare class BBSFControlsModule {
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<BBSFControlsModule, never>;
66
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BBSFControlsModule, [typeof i1.DateInputComponent, typeof i2.FileUploadComponent, typeof i3.MultiLingualTextBoxComponent, typeof i4.TextboxComponent, typeof i5.TextAreaComponent, typeof i6.MultiLingualTextAreaComponent, typeof i7.CheckBoxComponent, typeof i8.DropdownListComponent, typeof i9.PhoneComponent, typeof i10.ToggleslideComponent, typeof i11.HtmlEditorComponent, typeof i12.MultiLingualHtmlEditorComponent, typeof i13.ImageUploaderComponent, typeof i14.ProfileImageUploaderComponent, typeof i15.CalendarComponent, typeof i16.MapAutoCompleteComponent, typeof i17.AutocompleteTextBoxComponent, typeof i18.TagsInputComponent, typeof i19.PagingComponent, typeof i20.JwPaginationComponent, typeof i21.RadioButtonComponent, typeof i22.FormComponent, typeof i23.ConfirmationModalComponent, typeof i24.RepeaterComponent, typeof i25.RepeaterFieldBuilderComponent, typeof i26.NgTemplateNameDirective, typeof i27.RepeaterItemFieldComponent, typeof i28.RepeaterTableComponent, typeof i29.BBSFDateTimePipe, typeof i30.BBSFDatePipe, typeof i31.BTagsInputComponent, typeof i32.RecaptchaComponent, typeof i33.PageHeaderComponentComponent], [typeof i34.CommonModule, typeof i35.InfiniteScrollModule, typeof i36.NgSelectModule, typeof i37.FullCalendarModule, typeof i38.AngularCropperjsModule, typeof i39.NgbModule, typeof i40.NgxDropzoneModule, typeof i41.FileUploadModule, typeof i42.NgxMaskDirective, typeof i42.NgxMaskPipe, typeof i43.NgxSummernoteModule, typeof i44.MatSlideToggleModule, typeof i45.NgxIntlTelInputModule, typeof i46.OwlDateTimeModule, typeof i46.OwlNativeDateTimeModule, typeof i34.CommonModule, typeof i47.BlockUIModule, typeof i48.ReactiveFormsModule, typeof i49.RouterModule, typeof i50.ToastrModule, typeof i51.HttpClientModule, typeof i52.OverlayModule, typeof i53.StoreDevtoolsModule, typeof i48.FormsModule, typeof i54.BsDatepickerModule, typeof i55.TypeaheadModule, typeof i56.AngularEditorModule, typeof i57.AutocompleteLibModule, typeof i58.BBSFUtilitiesModule, typeof i59.InlineSVGModule, typeof i60.SweetAlert2Module], [typeof i1.DateInputComponent, typeof i2.FileUploadComponent, typeof i3.MultiLingualTextBoxComponent, typeof i4.TextboxComponent, typeof i5.TextAreaComponent, typeof i6.MultiLingualTextAreaComponent, typeof i7.CheckBoxComponent, typeof i8.DropdownListComponent, typeof i9.PhoneComponent, typeof i10.ToggleslideComponent, typeof i11.HtmlEditorComponent, typeof i12.MultiLingualHtmlEditorComponent, typeof i13.ImageUploaderComponent, typeof i14.ProfileImageUploaderComponent, typeof i15.CalendarComponent, typeof i16.MapAutoCompleteComponent, typeof i17.AutocompleteTextBoxComponent, typeof i18.TagsInputComponent, typeof i19.PagingComponent, typeof i20.JwPaginationComponent, typeof i21.RadioButtonComponent, typeof i22.FormComponent, typeof i19.PagingComponent, typeof i23.ConfirmationModalComponent, typeof i24.RepeaterComponent, typeof i25.RepeaterFieldBuilderComponent, typeof i26.NgTemplateNameDirective, typeof i27.RepeaterItemFieldComponent, typeof i28.RepeaterTableComponent, typeof i29.BBSFDateTimePipe, typeof i30.BBSFDatePipe, typeof i32.RecaptchaComponent, typeof i33.PageHeaderComponentComponent]>;
67
+ static ɵinj: i0.ɵɵInjectorDeclaration<BBSFControlsModule>;
68
+ }
@@ -1,17 +1,20 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { Router } from '@angular/router';
4
- import { UtilityService } from '@bnsights/bbsf-utilities';
5
- import { DataType } from '../../Shared/Enums/Enums';
6
- import { PageHeaderOptions } from '../../Shared/Models/page-header-options';
7
- export declare class PageHeaderComponentComponent implements OnInit {
8
- private router;
9
- utilityService: UtilityService;
10
- EN: boolean;
11
- group: FormGroup;
12
- options: PageHeaderOptions;
13
- DataTypeEnum: typeof DataType;
14
- constructor(router: Router, utilityService: UtilityService);
15
- translate(key: string): string;
16
- ngOnInit(): void;
17
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { Router } from '@angular/router';
4
+ import { UtilityService } from '@bnsights/bbsf-utilities';
5
+ import { DataType } from '../../Shared/Enums/Enums';
6
+ import { PageHeaderOptions } from '../../Shared/Models/page-header-options';
7
+ import * as i0 from "@angular/core";
8
+ export declare class PageHeaderComponentComponent implements OnInit {
9
+ private router;
10
+ utilityService: UtilityService;
11
+ EN: boolean;
12
+ group: FormGroup;
13
+ options: PageHeaderOptions;
14
+ DataTypeEnum: typeof DataType;
15
+ constructor(router: Router, utilityService: UtilityService);
16
+ translate(key: string): string;
17
+ ngOnInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponentComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponentComponent, "bbsf-page-header-component", never, { "group": { "alias": "group"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, false, never>;
20
+ }