@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,37 +1,37 @@
1
- import { InputType } from '../Enums/InputType';
2
- import { RangeNumber } from './RangeNumber';
3
- import { ForceDirection } from '../Enums/ForceDirection';
4
- import { IconPosition } from '../Enums/IconPosition';
5
- import { LanguageValidation } from '../Enums/LanguageValidation';
6
- import { ControlOptionsBase } from './ControlOptionsBase';
7
- export declare class TextBoxOptions extends ControlOptionsBase {
8
- /**To set value to Control */
9
- Value: any;
10
- MaxLength?: number;
11
- /**Set the MinLength of characters In TextBox */
12
- MinLength?: number;
13
- MaxWordCount: number;
14
- /** set Range Number to Textbox with type number with From-Value and To-value*/
15
- NumberRange: RangeNumber;
16
- /**Prevent AutoComplete of textbox default value is "on" available values "on" and "off"*/
17
- AutoComplete: string;
18
- /** text input on change */
19
- TrimTextOnChange: boolean;
20
- /** add button to for coping to clipboard */
21
- EnableCopyToClipboard: boolean;
22
- /**Prevent Defulat Password Validation to set Custom Validation */
23
- RemoveDefaultPasswordValidation: boolean;
24
- /** to set Direction of textbox if textbox is Arabic or English */
25
- ForceDirection: ForceDirection;
26
- /** to set Language of textbox if textbox language is Arabic or English */
27
- LanguageValidation: LanguageValidation;
28
- /** Set Type of TextBox ("text","password","email","number") */
29
- Type: InputType;
30
- /** Set Mask Pattern Attribute to TextBox */
31
- MaskPattern: string;
32
- Icon: string;
33
- IconPosition: IconPosition;
34
- NoMargin: boolean;
35
- ValidationRules: any[];
36
- MaxLengthWarningLimit: number;
37
- }
1
+ import { InputType } from '../Enums/InputType';
2
+ import { RangeNumber } from './RangeNumber';
3
+ import { ForceDirection } from '../Enums/ForceDirection';
4
+ import { IconPosition } from '../Enums/IconPosition';
5
+ import { LanguageValidation } from '../Enums/LanguageValidation';
6
+ import { ControlOptionsBase } from './ControlOptionsBase';
7
+ export declare class TextBoxOptions extends ControlOptionsBase {
8
+ /**To set value to Control */
9
+ Value: any;
10
+ MaxLength?: number;
11
+ /**Set the MinLength of characters In TextBox */
12
+ MinLength?: number;
13
+ MaxWordCount: number;
14
+ /** set Range Number to Textbox with type number with From-Value and To-value*/
15
+ NumberRange: RangeNumber;
16
+ /**Prevent AutoComplete of textbox default value is "on" available values "on" and "off"*/
17
+ AutoComplete: string;
18
+ /** text input on change */
19
+ TrimTextOnChange: boolean;
20
+ /** add button to for coping to clipboard */
21
+ EnableCopyToClipboard: boolean;
22
+ /**Prevent Defulat Password Validation to set Custom Validation */
23
+ RemoveDefaultPasswordValidation: boolean;
24
+ /** to set Direction of textbox if textbox is Arabic or English */
25
+ ForceDirection: ForceDirection;
26
+ /** to set Language of textbox if textbox language is Arabic or English */
27
+ LanguageValidation: LanguageValidation;
28
+ /** Set Type of TextBox ("text","password","email","number") */
29
+ Type: InputType;
30
+ /** Set Mask Pattern Attribute to TextBox */
31
+ MaskPattern: string;
32
+ Icon: string;
33
+ IconPosition: IconPosition;
34
+ NoMargin: boolean;
35
+ ValidationRules: any[];
36
+ MaxLengthWarningLimit: number;
37
+ }
@@ -1,9 +1,9 @@
1
- import { ForceDirection } from '../Enums/ForceDirection';
2
- import { ControlOptionsBase } from './ControlOptionsBase';
3
- export declare class ToggleSlideOptions extends ControlOptionsBase {
4
- /**Display validation message only on added repeater when add class "v-required"*/
5
- ValidationClasses: string;
6
- /**To set value to ToggleSlide */
7
- Value: boolean;
8
- ForceDirection: ForceDirection;
9
- }
1
+ import { ForceDirection } from '../Enums/ForceDirection';
2
+ import { ControlOptionsBase } from './ControlOptionsBase';
3
+ export declare class ToggleSlideOptions extends ControlOptionsBase {
4
+ /**Display validation message only on added repeater when add class "v-required"*/
5
+ ValidationClasses: string;
6
+ /**To set value to ToggleSlide */
7
+ Value: boolean;
8
+ ForceDirection: ForceDirection;
9
+ }
@@ -1,5 +1,5 @@
1
- export declare class UploadPersonalImage {
2
- constructor();
3
- English: string;
4
- Arabic: string;
5
- }
1
+ export declare class UploadPersonalImage {
2
+ constructor();
3
+ English: string;
4
+ Arabic: string;
5
+ }
@@ -1,6 +1,6 @@
1
- export declare class BreadCrumb {
2
- constructor(label: string, active: boolean, route?: string);
3
- label: string;
4
- active: boolean;
5
- route: string;
6
- }
1
+ export declare class BreadCrumb {
2
+ constructor(label: string, active: boolean, route?: string);
3
+ label: string;
4
+ active: boolean;
5
+ route: string;
6
+ }
@@ -1,6 +1,6 @@
1
- import { DataType } from "../Enums/Enums";
2
- export declare class ControlFilterItem {
3
- key: DataType;
4
- value: any;
5
- onChange?: Function;
6
- }
1
+ import { DataType } from "../Enums/Enums";
2
+ export declare class ControlFilterItem {
3
+ key: DataType;
4
+ value: any;
5
+ onChange?: Function;
6
+ }
@@ -1,29 +1,29 @@
1
- import { ForceDirection } from '../Enums/ForceDirection';
2
- import { StartView } from '../Enums/StartView';
3
- import { PickerType } from '../Enums/PickerType';
4
- import { SelectMode } from '../Enums/SelectMode';
5
- import { ControlOptionsBase } from './ControlOptionsBase';
6
- export declare class DatePickerOptions extends ControlOptionsBase {
7
- /**To set value to DatePicker */
8
- Value: Date;
9
- /**To set StartDate to DatePicker */
10
- StartDate: Date;
11
- /**To set EndDate to DatePicker */
12
- EndDate: Date;
13
- /** add button to for coping to clipboard */
14
- EnableCopyToClipboard: boolean;
15
- IsGMT: boolean;
16
- /**To set First Day Of Week to DatePicker */
17
- FirstDayOfWeek: number;
18
- /**To set Hour12Timer to DatePicker is 12 Hour or 24 Hour*/
19
- Hour12Timer: boolean;
20
- /**To set PickerType to DatePicker is Calendar or Timer Or Both */
21
- PickerType: PickerType;
22
- /**To set StartView to DatePicker is Year or Month Or Multi-Year */
23
- StartView: StartView;
24
- /**To set SelectMode to DatePicker is Single or Range */
25
- SelectMode: SelectMode;
26
- ForceDirection: ForceDirection;
27
- /**Name of DatePicker control to compare value with it */
28
- StartControlToCompareWith: string;
29
- }
1
+ import { ForceDirection } from '../Enums/ForceDirection';
2
+ import { StartView } from '../Enums/StartView';
3
+ import { PickerType } from '../Enums/PickerType';
4
+ import { SelectMode } from '../Enums/SelectMode';
5
+ import { ControlOptionsBase } from './ControlOptionsBase';
6
+ export declare class DatePickerOptions extends ControlOptionsBase {
7
+ /**To set value to DatePicker */
8
+ Value: Date;
9
+ /**To set StartDate to DatePicker */
10
+ StartDate: Date;
11
+ /**To set EndDate to DatePicker */
12
+ EndDate: Date;
13
+ /** add button to for coping to clipboard */
14
+ EnableCopyToClipboard: boolean;
15
+ IsGMT: boolean;
16
+ /**To set First Day Of Week to DatePicker */
17
+ FirstDayOfWeek: number;
18
+ /**To set Hour12Timer to DatePicker is 12 Hour or 24 Hour*/
19
+ Hour12Timer: boolean;
20
+ /**To set PickerType to DatePicker is Calendar or Timer Or Both */
21
+ PickerType: PickerType;
22
+ /**To set StartView to DatePicker is Year or Month Or Multi-Year */
23
+ StartView: StartView;
24
+ /**To set SelectMode to DatePicker is Single or Range */
25
+ SelectMode: SelectMode;
26
+ ForceDirection: ForceDirection;
27
+ /**Name of DatePicker control to compare value with it */
28
+ StartControlToCompareWith: string;
29
+ }
@@ -1,7 +1,7 @@
1
- import { ControlFilterItem } from "./control-filter-Item";
2
- export declare class FilterOptions {
3
- ControlsOptions: ControlFilterItem[];
4
- ApplyFunction: Function;
5
- RestFunction: Function;
6
- ShowLoadingInFiltersBox: boolean;
7
- }
1
+ import { ControlFilterItem } from "./control-filter-Item";
2
+ export declare class FilterOptions {
3
+ ControlsOptions: ControlFilterItem[];
4
+ ApplyFunction: Function;
5
+ RestFunction: Function;
6
+ ShowLoadingInFiltersBox: boolean;
7
+ }
@@ -1,71 +1,71 @@
1
- import { BreadCrumb } from "./bread-crumb";
2
- import { FilterOptions } from "./filter-options";
3
- import { TextBoxOptions } from "./TextBoxOptions";
4
- export declare class PageHeaderOptions {
5
- constructor();
6
- TitleKey: string;
7
- TitleValue: string;
8
- SubTitleKey: string;
9
- BreadCrumb: BreadCrumbModel;
10
- AddButton: AddButton;
11
- EditButton: EditButton;
12
- DeleteButton: DeleteButton;
13
- ExportButton: ExportButton;
14
- GridView: GridViewModel;
15
- SearchTextBox: TextBoxModel;
16
- FiltersButton: FiltersButton;
17
- Filters: FilterOptions;
18
- DropDownActions: DropdownActions;
19
- Listing: boolean;
20
- }
21
- export declare class BreadCrumbModel {
22
- Active: boolean;
23
- BreadCrumbItems: BreadCrumb[];
24
- }
25
- export declare class AddButton {
26
- Active: boolean;
27
- ButtonTextKey: string;
28
- Function: Function;
29
- }
30
- export declare class EditButton {
31
- Active: boolean;
32
- ButtonTextKey: string;
33
- Function: Function;
34
- }
35
- export declare class DeleteButton {
36
- Active: boolean;
37
- ButtonTextKey: string;
38
- Function: Function;
39
- }
40
- export declare class FiltersButton {
41
- Active: boolean;
42
- ButtonTextKey: string;
43
- Function: Function;
44
- ShowLoadingInFiltersBox: boolean;
45
- constructor();
46
- }
47
- export declare class ExportButton {
48
- Active: boolean;
49
- ButtonTextKey: string;
50
- Function: Function;
51
- }
52
- export declare class GridViewModel {
53
- Active: boolean;
54
- ToggleFunction: Function;
55
- ShowGridViewByDefault: boolean;
56
- }
57
- export declare class TextBoxModel {
58
- Active: boolean;
59
- TextSearchBoxOptions: TextBoxOptions;
60
- }
61
- export declare class DropdownActions {
62
- Active: boolean;
63
- DropdownActionItems: DropdownActionItem[];
64
- }
65
- export declare class DropdownActionItem {
66
- constructor(text: string, svg: string, functionName: Function, routerLink?: string);
67
- Text: string;
68
- SVG: string;
69
- Function: Function;
70
- RouterLink: string;
71
- }
1
+ import { BreadCrumb } from "./bread-crumb";
2
+ import { FilterOptions } from "./filter-options";
3
+ import { TextBoxOptions } from "./TextBoxOptions";
4
+ export declare class PageHeaderOptions {
5
+ constructor();
6
+ TitleKey: string;
7
+ TitleValue: string;
8
+ SubTitleKey: string;
9
+ BreadCrumb: BreadCrumbModel;
10
+ AddButton: AddButton;
11
+ EditButton: EditButton;
12
+ DeleteButton: DeleteButton;
13
+ ExportButton: ExportButton;
14
+ GridView: GridViewModel;
15
+ SearchTextBox: TextBoxModel;
16
+ FiltersButton: FiltersButton;
17
+ Filters: FilterOptions;
18
+ DropDownActions: DropdownActions;
19
+ Listing: boolean;
20
+ }
21
+ export declare class BreadCrumbModel {
22
+ Active: boolean;
23
+ BreadCrumbItems: BreadCrumb[];
24
+ }
25
+ export declare class AddButton {
26
+ Active: boolean;
27
+ ButtonTextKey: string;
28
+ Function: Function;
29
+ }
30
+ export declare class EditButton {
31
+ Active: boolean;
32
+ ButtonTextKey: string;
33
+ Function: Function;
34
+ }
35
+ export declare class DeleteButton {
36
+ Active: boolean;
37
+ ButtonTextKey: string;
38
+ Function: Function;
39
+ }
40
+ export declare class FiltersButton {
41
+ Active: boolean;
42
+ ButtonTextKey: string;
43
+ Function: Function;
44
+ ShowLoadingInFiltersBox: boolean;
45
+ constructor();
46
+ }
47
+ export declare class ExportButton {
48
+ Active: boolean;
49
+ ButtonTextKey: string;
50
+ Function: Function;
51
+ }
52
+ export declare class GridViewModel {
53
+ Active: boolean;
54
+ ToggleFunction: Function;
55
+ ShowGridViewByDefault: boolean;
56
+ }
57
+ export declare class TextBoxModel {
58
+ Active: boolean;
59
+ TextSearchBoxOptions: TextBoxOptions;
60
+ }
61
+ export declare class DropdownActions {
62
+ Active: boolean;
63
+ DropdownActionItems: DropdownActionItem[];
64
+ }
65
+ export declare class DropdownActionItem {
66
+ constructor(text: string, svg: string, functionName: Function, routerLink?: string);
67
+ Text: string;
68
+ SVG: string;
69
+ Function: Function;
70
+ RouterLink: string;
71
+ }
@@ -1,7 +1,10 @@
1
- import { DatePipe } from '@angular/common';
2
- import { PipeTransform } from '@angular/core';
3
- export declare class BBSFDateTimePipe implements PipeTransform {
4
- datePipe: DatePipe;
5
- constructor(datePipe: DatePipe);
6
- transform(value: Date): string;
7
- }
1
+ import { DatePipe } from '@angular/common';
2
+ import { PipeTransform } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BBSFDateTimePipe implements PipeTransform {
5
+ datePipe: DatePipe;
6
+ constructor(datePipe: DatePipe);
7
+ transform(value: Date): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDateTimePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDateTimePipe, "bbsfDateTime", false>;
10
+ }
@@ -1,7 +1,10 @@
1
- import { DatePipe } from '@angular/common';
2
- import { PipeTransform } from '@angular/core';
3
- export declare class BBSFDatePipe implements PipeTransform {
4
- datePipe: DatePipe;
5
- constructor(datePipe: DatePipe);
6
- transform(value: Date): string;
7
- }
1
+ import { DatePipe } from '@angular/common';
2
+ import { PipeTransform } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BBSFDatePipe implements PipeTransform {
5
+ datePipe: DatePipe;
6
+ constructor(datePipe: DatePipe);
7
+ transform(value: Date): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDatePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDatePipe, "bbsfDate", false>;
10
+ }
@@ -1 +1 @@
1
- export declare const environment: any;
1
+ export declare const environment: any;
@@ -1,18 +1,21 @@
1
- import { UtilityService } from '@bnsights/bbsf-utilities';
2
- import { OwlDateTimeIntl } from 'ng-pick-datetime';
3
- export declare class DefaultIntl extends OwlDateTimeIntl {
4
- private utilityService;
5
- constructor(utilityService: UtilityService);
6
- /** A label for the range 'from' in picker info */
7
- rangeFromLabel: string;
8
- /** A label for the range 'to' in picker info */
9
- rangeToLabel: string;
10
- /** A label for the cancel button */
11
- cancelBtnLabel: string;
12
- /** A label for the set button */
13
- setBtnLabel: string;
14
- /** A label for the hour12 button (AM) */
15
- hour12AMLabel: string;
16
- /** A label for the hour12 button (PM) */
17
- hour12PMLabel: string;
18
- }
1
+ import { UtilityService } from '@bnsights/bbsf-utilities';
2
+ import { OwlDateTimeIntl } from '@danielmoncada/angular-datetime-picker';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DefaultIntl extends OwlDateTimeIntl {
5
+ private utilityService;
6
+ constructor(utilityService: UtilityService);
7
+ /** A label for the range 'from' in picker info */
8
+ rangeFromLabel: string;
9
+ /** A label for the range 'to' in picker info */
10
+ rangeToLabel: string;
11
+ /** A label for the cancel button */
12
+ cancelBtnLabel: string;
13
+ /** A label for the set button */
14
+ setBtnLabel: string;
15
+ /** A label for the hour12 button (AM) */
16
+ hour12AMLabel: string;
17
+ /** A label for the hour12 button (PM) */
18
+ hour12PMLabel: string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DefaultIntl, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<DefaultIntl>;
21
+ }
@@ -1,29 +1,32 @@
1
- import { CustomValidation } from '../Models/CustomValidation';
2
- import { ErrorMassageValidation } from './validationErrorMassage.service';
3
- import { ValidationErrors, ValidatorFn, AbstractControl } from '@angular/forms';
4
- import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
5
- export declare class ControlUtility {
6
- private ErrorHandler;
7
- private controlValidationService;
8
- private utilityService;
9
- constructor(ErrorHandler: ErrorMassageValidation, controlValidationService: ControlValidationService, utilityService: UtilityService);
10
- getErrorValidation(Errorsitem: any[], CustomValidation?: CustomValidation): string;
11
- patternValidator(regex: RegExp, error: ValidationErrors): ValidatorFn;
12
- patchControlValue(originalValue: any, PatchFunction: any, PatchPath: any): void;
13
- arabicValidator(error: ValidationErrors): ValidatorFn;
14
- getInputType(type: number): string;
15
- trimControlValue(value: any): any;
16
- CopyInputMessage(inputElement: any): void;
17
- getErrorValidationMassage(ErrorList: any, group: any, options: any): string;
18
- scrollToGlobalErrorMassage(): void;
19
- setAttributeForControl(options: any): void;
20
- showGlobalError(formId?: string): void;
21
- RemoveRequiredValidation(FormControl: AbstractControl, ValidationRole: any[], Options: any): void;
22
- AddRequiredValidation(FormControl: AbstractControl, ValidationRole: any[], Options: any): void;
23
- addRequiredToControl(FormControl: AbstractControl, Options: any): void;
24
- removeRequiredFromControl(FormControl: AbstractControl, Options: any): void;
25
- RemoveCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
26
- AddCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
27
- static getLocal(): string;
28
- IsValid(FormControl: AbstractControl): void;
29
- }
1
+ import { CustomValidation } from '../Models/CustomValidation';
2
+ import { ErrorMassageValidation } from './validationErrorMassage.service';
3
+ import { ValidationErrors, ValidatorFn, AbstractControl } from '@angular/forms';
4
+ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ControlUtility {
7
+ private ErrorHandler;
8
+ private controlValidationService;
9
+ private utilityService;
10
+ constructor(ErrorHandler: ErrorMassageValidation, controlValidationService: ControlValidationService, utilityService: UtilityService);
11
+ getErrorValidation(Errorsitem: any[], CustomValidation?: CustomValidation): string;
12
+ patternValidator(regex: RegExp, error: ValidationErrors): ValidatorFn;
13
+ patchControlValue(originalValue: any, PatchFunction: any, PatchPath: any): void;
14
+ arabicValidator(error: ValidationErrors): ValidatorFn;
15
+ getInputType(type: number): string;
16
+ trimControlValue(value: any): any;
17
+ CopyInputMessage(inputElement: any): void;
18
+ getErrorValidationMassage(ErrorList: any, group: any, options: any): string;
19
+ scrollToGlobalErrorMassage(): void;
20
+ setAttributeForControl(options: any): void;
21
+ showGlobalError(formId?: string): void;
22
+ RemoveRequiredValidation(FormControl: AbstractControl, ValidationRole: any[], Options: any): void;
23
+ AddRequiredValidation(FormControl: AbstractControl, ValidationRole: any[], Options: any): void;
24
+ addRequiredToControl(FormControl: AbstractControl, Options: any): void;
25
+ removeRequiredFromControl(FormControl: AbstractControl, Options: any): void;
26
+ RemoveCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
27
+ AddCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
28
+ static getLocal(): string;
29
+ IsValid(FormControl: AbstractControl): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ControlUtility, never>;
31
+ static ɵprov: i0.ɵɵInjectableDeclaration<ControlUtility>;
32
+ }
@@ -1,14 +1,17 @@
1
- import { ControlLayout } from "../Enums/ControlLayout";
2
- import { LanguageMode } from "../Enums/LanguageMode";
3
- export declare class GlobalSettings {
4
- /** to set type of view if MultilingualTextArea is Vertical or Horizontal */
5
- ViewType: ControlLayout;
6
- MultiControlPlacementType: ControlLayout;
7
- /**To Set LanguageMode To MultipleLanguageText */
8
- LanguageMode: LanguageMode;
9
- HideAstericsWhenRequired: boolean;
10
- MaxLengthWarningLimit: number;
11
- MaxLengthTextBox: number;
12
- MaxLengthTextArea: number;
13
- DefaultImageSrc: string;
14
- }
1
+ import { ControlLayout } from "../Enums/ControlLayout";
2
+ import { LanguageMode } from "../Enums/LanguageMode";
3
+ import * as i0 from "@angular/core";
4
+ export declare class GlobalSettings {
5
+ /** to set type of view if MultilingualTextArea is Vertical or Horizontal */
6
+ ViewType: ControlLayout;
7
+ MultiControlPlacementType: ControlLayout;
8
+ /**To Set LanguageMode To MultipleLanguageText */
9
+ LanguageMode: LanguageMode;
10
+ HideAstericsWhenRequired: boolean;
11
+ MaxLengthWarningLimit: number;
12
+ MaxLengthTextBox: number;
13
+ MaxLengthTextArea: number;
14
+ DefaultImageSrc: string;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<GlobalSettings, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<GlobalSettings>;
17
+ }
@@ -1,7 +1,10 @@
1
- import { Observable } from 'rxjs';
2
- export declare class OnPagingFiltersChangeService {
3
- private subject;
4
- ChangeValue(value: string): void;
5
- ClearValue(): void;
6
- GetValue(): Observable<any>;
7
- }
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class OnPagingFiltersChangeService {
4
+ private subject;
5
+ ChangeValue(value: string): void;
6
+ ClearValue(): void;
7
+ GetValue(): Observable<any>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<OnPagingFiltersChangeService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<OnPagingFiltersChangeService>;
10
+ }
@@ -1,7 +1,10 @@
1
- import { ComponentFactoryResolver, ViewContainerRef } from "@angular/core";
2
- import { FormGroup } from '@angular/forms';
3
- export declare class RenderComponentService {
4
- private componentFactoryResolver;
5
- constructor(componentFactoryResolver: ComponentFactoryResolver);
6
- renderDynamicComponent<T>(viewContainerRef: ViewContainerRef, component: any, group: FormGroup, options: any, size?: number): void;
7
- }
1
+ import { ComponentFactoryResolver, ViewContainerRef } from "@angular/core";
2
+ import { FormGroup } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RenderComponentService {
5
+ private componentFactoryResolver;
6
+ constructor(componentFactoryResolver: ComponentFactoryResolver);
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>;
10
+ }
@@ -1,13 +1,14 @@
1
- import { Http } from '@angular/http';
2
- import { ControlContainer } from '@angular/forms';
3
- import { UtilityService } from '@bnsights/bbsf-utilities';
4
- export declare class ErrorMassageValidation {
5
- private http;
6
- private controlContainer;
7
- private utilityService;
8
- static controlContainerstatic: any;
9
- constructor(http: Http, controlContainer: ControlContainer, utilityService: UtilityService);
10
- url: string;
11
- static showerror(FormControlName: string): void;
12
- getErrorMassageValidation(error: any): string;
13
- }
1
+ import { ControlContainer } from '@angular/forms';
2
+ import { UtilityService } from '@bnsights/bbsf-utilities';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ErrorMassageValidation {
5
+ private controlContainer;
6
+ private utilityService;
7
+ static controlContainerstatic: any;
8
+ constructor(controlContainer: ControlContainer, utilityService: UtilityService);
9
+ url: string;
10
+ static showerror(FormControlName: string): void;
11
+ getErrorMassageValidation(error: any): string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMassageValidation, [{ optional: true; }, null]>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMassageValidation>;
14
+ }