@bnsights/bbsf-controls 1.0.87 → 1.0.89
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.
- package/README.md +6 -2
- package/bnsights-bbsf-controls-1.0.89.tgz +0 -0
- package/bnsights-bbsf-controls.d.ts +1 -1
- package/bnsights-bbsf-controls.metadata.json +1 -0
- package/bundles/bnsights-bbsf-controls.umd.js +9454 -0
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -0
- package/esm2015/bnsights-bbsf-controls.js +6 -0
- package/esm2015/lib/Shared/Directives/template-name.directive.js +18 -0
- package/esm2015/lib/Shared/Pipes/bbsf-date-time.pipe.js +20 -0
- package/esm2015/lib/Shared/Pipes/bbsf-date.pipe.js +20 -0
- package/esm2015/lib/Shared/components/app-base-component.js +202 -0
- package/esm2015/lib/Shared/components/ng-tag-input.js +323 -0
- package/esm2015/lib/Shared/default_intl.js +29 -0
- package/esm2015/lib/Shared/services/ControlUtility.js +164 -0
- package/esm2015/lib/Shared/services/GlobalSettings.service.js +28 -0
- package/esm2015/lib/Shared/services/OnPagingFiltersChange.service.js +22 -0
- package/esm2015/lib/Shared/services/render-component-service.service.js +30 -0
- package/esm2015/lib/Shared/services/validationErrorMassage.service.js +137 -0
- package/esm2015/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.js +249 -0
- package/esm2015/lib/controls/Calendar/Calendar.component.js +177 -0
- package/esm2015/lib/controls/CheckBox/CheckBox.component.js +115 -0
- package/esm2015/lib/controls/ConfirmationModal/ConfirmationModal.component.js +139 -0
- package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +221 -0
- package/esm2015/lib/controls/DropdownList/DropdownList.component.js +179 -0
- package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +451 -0
- package/esm2015/lib/controls/Form/Form.component.js +106 -0
- package/esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js +223 -0
- package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +347 -0
- package/esm2015/lib/controls/MapAutoComplete/MapAutoComplete.component.js +325 -0
- package/esm2015/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.js +429 -0
- package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +430 -0
- package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +429 -0
- package/esm2015/lib/controls/Paging/JwPagination.component.js +129 -0
- package/esm2015/lib/controls/Paging/Paging.component.js +312 -0
- package/esm2015/lib/controls/Phone/Phone.component.js +124 -0
- package/esm2015/lib/controls/ProfileImageUploader/ProfileImageUploader.component.js +349 -0
- package/esm2015/lib/controls/RadioButton/RadioButton.component.js +108 -0
- package/esm2015/lib/controls/Recaptcha/Recaptcha.component.js +132 -0
- package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +117 -0
- package/esm2015/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.js +748 -0
- package/esm2015/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.js +19 -0
- package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +108 -0
- package/esm2015/lib/controls/TagsInput/TagsInput.component.js +269 -0
- package/esm2015/lib/controls/TextArea/TextArea.component.js +192 -0
- package/esm2015/lib/controls/TextBox/TextBox.component.js +263 -0
- package/esm2015/lib/controls/Toggleslide/toggleslide.component.js +84 -0
- package/esm2015/lib/controls/bbsf-controls.module.js +239 -0
- package/esm2015/lib/controls/page-header-component/page-header-component.component.js +32 -0
- package/fesm2015/{bnsights-bbsf-controls.mjs → bnsights-bbsf-controls.js} +1511 -1630
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -0
- package/lib/Shared/Directives/template-name.directive.d.ts +0 -3
- package/lib/Shared/Pipes/bbsf-date-time.pipe.d.ts +0 -3
- package/lib/Shared/Pipes/bbsf-date.pipe.d.ts +0 -3
- package/lib/Shared/components/app-base-component.d.ts +1 -3
- package/lib/Shared/components/ng-tag-input.d.ts +0 -3
- package/lib/Shared/default_intl.d.ts +0 -3
- package/lib/Shared/services/ControlUtility.d.ts +0 -3
- package/lib/Shared/services/GlobalSettings.service.d.ts +0 -3
- package/lib/Shared/services/OnPagingFiltersChange.service.d.ts +0 -3
- package/lib/Shared/services/render-component-service.service.d.ts +0 -3
- package/lib/Shared/services/validationErrorMassage.service.d.ts +0 -3
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +0 -3
- package/lib/controls/Calendar/Calendar.component.d.ts +5 -9
- package/lib/controls/CheckBox/CheckBox.component.d.ts +0 -3
- package/lib/controls/ConfirmationModal/ConfirmationModal.component.d.ts +0 -3
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +0 -3
- package/lib/controls/DropdownList/DropdownList.component.d.ts +0 -3
- package/lib/controls/FileUplaod/FileUplaod.component.d.ts +0 -3
- package/lib/controls/Form/Form.component.d.ts +0 -3
- package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +0 -3
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +0 -3
- package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +0 -3
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +0 -3
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +0 -3
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +0 -3
- package/lib/controls/Paging/JwPagination.component.d.ts +0 -3
- package/lib/controls/Paging/Paging.component.d.ts +0 -3
- package/lib/controls/Phone/Phone.component.d.ts +0 -3
- package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +0 -3
- package/lib/controls/RadioButton/RadioButton.component.d.ts +0 -3
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +0 -3
- package/lib/controls/Repeater/repeater/repeater.component.d.ts +0 -3
- package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +0 -3
- package/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.d.ts +0 -3
- package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +0 -3
- package/lib/controls/TagsInput/TagsInput.component.d.ts +0 -3
- package/lib/controls/TextArea/TextArea.component.d.ts +0 -3
- package/lib/controls/TextBox/TextBox.component.d.ts +0 -3
- package/lib/controls/Toggleslide/toggleslide.component.d.ts +0 -3
- package/lib/controls/bbsf-controls.module.d.ts +0 -74
- package/lib/controls/page-header-component/page-header-component.component.d.ts +0 -3
- package/package.json +15 -27
- package/bnsights-bbsf-controls-1.0.87.tgz +0 -0
- package/esm2020/bnsights-bbsf-controls.mjs +0 -5
- package/esm2020/lib/Shared/Directives/template-name.directive.mjs +0 -18
- package/esm2020/lib/Shared/Pipes/bbsf-date-time.pipe.mjs +0 -21
- package/esm2020/lib/Shared/Pipes/bbsf-date.pipe.mjs +0 -21
- package/esm2020/lib/Shared/components/app-base-component.mjs +0 -198
- package/esm2020/lib/Shared/components/ng-tag-input.mjs +0 -336
- package/esm2020/lib/Shared/default_intl.mjs +0 -29
- package/esm2020/lib/Shared/services/ControlUtility.mjs +0 -162
- package/esm2020/lib/Shared/services/GlobalSettings.service.mjs +0 -30
- package/esm2020/lib/Shared/services/OnPagingFiltersChange.service.mjs +0 -24
- package/esm2020/lib/Shared/services/render-component-service.service.mjs +0 -30
- package/esm2020/lib/Shared/services/validationErrorMassage.service.mjs +0 -137
- package/esm2020/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +0 -245
- package/esm2020/lib/controls/Calendar/Calendar.component.mjs +0 -172
- package/esm2020/lib/controls/CheckBox/CheckBox.component.mjs +0 -114
- package/esm2020/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +0 -136
- package/esm2020/lib/controls/DateTimePicker/DateTimePicker.component.mjs +0 -217
- package/esm2020/lib/controls/DropdownList/DropdownList.component.mjs +0 -179
- package/esm2020/lib/controls/FileUplaod/FileUplaod.component.mjs +0 -453
- package/esm2020/lib/controls/Form/Form.component.mjs +0 -101
- package/esm2020/lib/controls/HtmlEditor/HtmlEditor.component.mjs +0 -223
- package/esm2020/lib/controls/ImageUpload/ImageUpload.component.mjs +0 -350
- package/esm2020/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +0 -325
- package/esm2020/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +0 -427
- package/esm2020/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +0 -427
- package/esm2020/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +0 -426
- package/esm2020/lib/controls/Paging/JwPagination.component.mjs +0 -156
- package/esm2020/lib/controls/Paging/Paging.component.mjs +0 -312
- package/esm2020/lib/controls/Phone/Phone.component.mjs +0 -124
- package/esm2020/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +0 -354
- package/esm2020/lib/controls/RadioButton/RadioButton.component.mjs +0 -106
- package/esm2020/lib/controls/Recaptcha/Recaptcha.component.mjs +0 -132
- package/esm2020/lib/controls/Repeater/repeater/repeater.component.mjs +0 -125
- package/esm2020/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +0 -750
- package/esm2020/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.mjs +0 -21
- package/esm2020/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +0 -108
- package/esm2020/lib/controls/TagsInput/TagsInput.component.mjs +0 -268
- package/esm2020/lib/controls/TextArea/TextArea.component.mjs +0 -192
- package/esm2020/lib/controls/TextBox/TextBox.component.mjs +0 -266
- package/esm2020/lib/controls/Toggleslide/toggleslide.component.mjs +0 -84
- package/esm2020/lib/controls/bbsf-controls.module.mjs +0 -401
- package/esm2020/lib/controls/page-header-component/page-header-component.component.mjs +0 -37
- package/fesm2015/bnsights-bbsf-controls.mjs.map +0 -1
- package/fesm2020/bnsights-bbsf-controls.mjs +0 -8938
- package/fesm2020/bnsights-bbsf-controls.mjs.map +0 -1
- /package/{esm2020/lib/Shared/Enums/CalendarView.mjs → esm2015/lib/Shared/Enums/CalendarView.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/ControlLayout.mjs → esm2015/lib/Shared/Enums/ControlLayout.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Countries.mjs → esm2015/lib/Shared/Enums/Countries.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Enums.mjs → esm2015/lib/Shared/Enums/Enums.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/FileType.mjs → esm2015/lib/Shared/Enums/FileType.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/FilterType.mjs → esm2015/lib/Shared/Enums/FilterType.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/FontSize.mjs → esm2015/lib/Shared/Enums/FontSize.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/ForceDirection.mjs → esm2015/lib/Shared/Enums/ForceDirection.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/IconPosition.mjs → esm2015/lib/Shared/Enums/IconPosition.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/ImageType.mjs → esm2015/lib/Shared/Enums/ImageType.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/InputType.mjs → esm2015/lib/Shared/Enums/InputType.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Insert.mjs → esm2015/lib/Shared/Enums/Insert.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/LanguageMode.mjs → esm2015/lib/Shared/Enums/LanguageMode.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/LanguageValidation.mjs → esm2015/lib/Shared/Enums/LanguageValidation.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Misc.mjs → esm2015/lib/Shared/Enums/Misc.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/PagingActionMode.mjs → esm2015/lib/Shared/Enums/PagingActionMode.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Para.mjs → esm2015/lib/Shared/Enums/Para.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/PickerType.mjs → esm2015/lib/Shared/Enums/PickerType.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/SelectMode.mjs → esm2015/lib/Shared/Enums/SelectMode.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/StartView.mjs → esm2015/lib/Shared/Enums/StartView.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/Style.mjs → esm2015/lib/Shared/Enums/Style.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/StyleConfirmationMode.mjs → esm2015/lib/Shared/Enums/StyleConfirmationMode.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/TagInputView.mjs → esm2015/lib/Shared/Enums/TagInputView.js} +0 -0
- /package/{esm2020/lib/Shared/Enums/menu-list-enum.mjs → esm2015/lib/Shared/Enums/menu-list-enum.js} +0 -0
- /package/{esm2020/lib/Shared/Models/Attribute.mjs → esm2015/lib/Shared/Models/Attribute.js} +0 -0
- /package/{esm2020/lib/Shared/Models/AutocompleteDTO.mjs → esm2015/lib/Shared/Models/AutocompleteDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/AutocompleteOptions.mjs → esm2015/lib/Shared/Models/AutocompleteOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CalendarEventDTO.mjs → esm2015/lib/Shared/Models/CalendarEventDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CalendarOptions.mjs → esm2015/lib/Shared/Models/CalendarOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CancelDTO.mjs → esm2015/lib/Shared/Models/CancelDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CaptchaStyle.mjs → esm2015/lib/Shared/Models/CaptchaStyle.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CheckBoxOptions.mjs → esm2015/lib/Shared/Models/CheckBoxOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ConfirmationModalOptions.mjs → esm2015/lib/Shared/Models/ConfirmationModalOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ControlOptionsBase.mjs → esm2015/lib/Shared/Models/ControlOptionsBase.js} +0 -0
- /package/{esm2020/lib/Shared/Models/CustomValidation.mjs → esm2015/lib/Shared/Models/CustomValidation.js} +0 -0
- /package/{esm2020/lib/Shared/Models/DropdownListItem.mjs → esm2015/lib/Shared/Models/DropdownListItem.js} +0 -0
- /package/{esm2020/lib/Shared/Models/DropdownOptions.mjs → esm2015/lib/Shared/Models/DropdownOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/EditPersonalImage.mjs → esm2015/lib/Shared/Models/EditPersonalImage.js} +0 -0
- /package/{esm2020/lib/Shared/Models/EnglishArabicDTO.mjs → esm2015/lib/Shared/Models/EnglishArabicDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/FileDTO.mjs → esm2015/lib/Shared/Models/FileDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/FileUploadModel.mjs → esm2015/lib/Shared/Models/FileUploadModel.js} +0 -0
- /package/{esm2020/lib/Shared/Models/FileUploadOptions.mjs → esm2015/lib/Shared/Models/FileUploadOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/FilterItem.mjs → esm2015/lib/Shared/Models/FilterItem.js} +0 -0
- /package/{esm2020/lib/Shared/Models/FormOptions.mjs → esm2015/lib/Shared/Models/FormOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/HtmlEditorOptions.mjs → esm2015/lib/Shared/Models/HtmlEditorOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ImageUploadOptions.mjs → esm2015/lib/Shared/Models/ImageUploadOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MapAutoCompleteOptions.mjs → esm2015/lib/Shared/Models/MapAutoCompleteOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MapAutocompleteDTO.mjs → esm2015/lib/Shared/Models/MapAutocompleteDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs → esm2015/lib/Shared/Models/MultiLingualHtmlEditorOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MultiLingualTextAreaOptions.mjs → esm2015/lib/Shared/Models/MultiLingualTextAreaOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MultilingualControlOptionsBase.mjs → esm2015/lib/Shared/Models/MultilingualControlOptionsBase.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MultilingualTextBoxOptions.mjs → esm2015/lib/Shared/Models/MultilingualTextBoxOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/MultipleFileUploadModel.mjs → esm2015/lib/Shared/Models/MultipleFileUploadModel.js} +0 -0
- /package/{esm2020/lib/Shared/Models/PagingDTO.mjs → esm2015/lib/Shared/Models/PagingDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/PagingOptions.mjs → esm2015/lib/Shared/Models/PagingOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/PagingPayload.mjs → esm2015/lib/Shared/Models/PagingPayload.js} +0 -0
- /package/{esm2020/lib/Shared/Models/PhoneOptions.mjs → esm2015/lib/Shared/Models/PhoneOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ProfileImageUploadOptions.mjs → esm2015/lib/Shared/Models/ProfileImageUploadOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ProfilePictureDTO.mjs → esm2015/lib/Shared/Models/ProfilePictureDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RadioButtonItem.mjs → esm2015/lib/Shared/Models/RadioButtonItem.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RadioButtonOptions.mjs → esm2015/lib/Shared/Models/RadioButtonOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RangeNumber.mjs → esm2015/lib/Shared/Models/RangeNumber.js} +0 -0
- /package/{esm2020/lib/Shared/Models/Recaptcha.mjs → esm2015/lib/Shared/Models/Recaptcha.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RecaptchaOptions.mjs → esm2015/lib/Shared/Models/RecaptchaOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RepeaterField.mjs → esm2015/lib/Shared/Models/RepeaterField.js} +0 -0
- /package/{esm2020/lib/Shared/Models/RepeaterOptions.mjs → esm2015/lib/Shared/Models/RepeaterOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/SaveDTO.mjs → esm2015/lib/Shared/Models/SaveDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/TagsInputDTO.mjs → esm2015/lib/Shared/Models/TagsInputDTO.js} +0 -0
- /package/{esm2020/lib/Shared/Models/TagsInputOptions.mjs → esm2015/lib/Shared/Models/TagsInputOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/TextAreaOptions.mjs → esm2015/lib/Shared/Models/TextAreaOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/TextBoxOptions.mjs → esm2015/lib/Shared/Models/TextBoxOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/ToggleslideOptions.mjs → esm2015/lib/Shared/Models/ToggleslideOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/UploadPersonalImage.mjs → esm2015/lib/Shared/Models/UploadPersonalImage.js} +0 -0
- /package/{esm2020/lib/Shared/Models/bread-crumb.mjs → esm2015/lib/Shared/Models/bread-crumb.js} +0 -0
- /package/{esm2020/lib/Shared/Models/control-filter-Item.mjs → esm2015/lib/Shared/Models/control-filter-Item.js} +0 -0
- /package/{esm2020/lib/Shared/Models/datePickerOptions.mjs → esm2015/lib/Shared/Models/datePickerOptions.js} +0 -0
- /package/{esm2020/lib/Shared/Models/filter-options.mjs → esm2015/lib/Shared/Models/filter-options.js} +0 -0
- /package/{esm2020/lib/Shared/Models/page-header-options.mjs → esm2015/lib/Shared/Models/page-header-options.js} +0 -0
- /package/{esm2020/lib/Shared/config/environment.mjs → esm2015/lib/Shared/config/environment.js} +0 -0
- /package/{esm2020/public-api.mjs → esm2015/public-api.js} +0 -0
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class NgTemplateNameDirective {
|
|
4
3
|
template: TemplateRef<any>;
|
|
5
4
|
name: string;
|
|
6
5
|
constructor(template: TemplateRef<any>);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgTemplateNameDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgTemplateNameDirective, "ng-template[name]", never, { "name": "name"; }, {}, never>;
|
|
9
6
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { DatePipe } from '@angular/common';
|
|
2
2
|
import { PipeTransform } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class BBSFDateTimePipe implements PipeTransform {
|
|
5
4
|
datePipe: DatePipe;
|
|
6
5
|
constructor(datePipe: DatePipe);
|
|
7
6
|
transform(value: Date): string;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDateTimePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDateTimePipe, "bbsfDateTime">;
|
|
10
7
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { DatePipe } from '@angular/common';
|
|
2
2
|
import { PipeTransform } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class BBSFDatePipe implements PipeTransform {
|
|
5
4
|
datePipe: DatePipe;
|
|
6
5
|
constructor(datePipe: DatePipe);
|
|
7
6
|
transform(value: Date): string;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BBSFDatePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<BBSFDatePipe, "bbsfDate">;
|
|
10
7
|
}
|
|
@@ -6,7 +6,6 @@ import { FilterItem } from '../Models/FilterItem';
|
|
|
6
6
|
import { CustomValidation } from '../Models/CustomValidation';
|
|
7
7
|
import { EnglishArabicDTO } from '../Models/EnglishArabicDTO';
|
|
8
8
|
import { EnvironmentService } from '@bnsights/bbsf-utilities';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
9
|
export declare abstract class AppBaseComponent {
|
|
11
10
|
utilityService: UtilityService;
|
|
12
11
|
modalService: NgbModal;
|
|
@@ -32,6 +31,7 @@ export declare abstract class AppBaseComponent {
|
|
|
32
31
|
openModal(modal: any, size?: string): void;
|
|
33
32
|
download(fileDTO: any, fileName: string): void;
|
|
34
33
|
downloadPDF(fileDTO: any, fileName: string): void;
|
|
34
|
+
downloadWord(fileDTO: any, fileName: string): void;
|
|
35
35
|
private base64toBlob;
|
|
36
36
|
private calculatePageTitle;
|
|
37
37
|
getPagingFiltersValues(form: FormGroup, filters: FilterItem[]): any;
|
|
@@ -48,6 +48,4 @@ export declare abstract class AppBaseComponent {
|
|
|
48
48
|
calculateInitials(name: string): string;
|
|
49
49
|
getCurrentUserInitials(): string;
|
|
50
50
|
getCurrentFailOver(val: EnglishArabicDTO): string;
|
|
51
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppBaseComponent, never>;
|
|
52
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AppBaseComponent>;
|
|
53
51
|
}
|
|
@@ -2,7 +2,6 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { TypeaheadMatch } from 'ngx-bootstrap/typeahead/public_api';
|
|
4
4
|
import { TagInputView } from '../Enums/TagInputView';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export interface TagsChangedEvent {
|
|
7
6
|
change: string;
|
|
8
7
|
tag: any;
|
|
@@ -45,6 +44,4 @@ export declare class BTagsInputComponent implements ControlValueAccessor {
|
|
|
45
44
|
registerOnTouched(fn: any): void;
|
|
46
45
|
calculateInitials(name: string): string;
|
|
47
46
|
onBlur(): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BTagsInputComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BTagsInputComponent, "b-tags-input", never, { "maxTags": "maxTags"; "removeLastOnBackspace": "removeLastOnBackspace"; "canDeleteTags": "canDeleteTags"; "canAddTags": "canAddTags"; "ViewMode": "ViewMode"; "placeholder": "placeholder"; "showDescription": "showDescription"; "options": "options"; "defaultImageURL": "defaultImageURL"; "minLengthBeforeOptions": "minLengthBeforeOptions"; "scrollableOptions": "scrollableOptions"; "scrollableOptionsInView": "scrollableOptionsInView"; }, { "onTagsChanged": "onTagsChanged"; "onMaxTagsReached": "onMaxTagsReached"; "onNoOptionsMatch": "onNoOptionsMatch"; "onBlurInput": "onBlurInput"; }, never, never>;
|
|
50
47
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
2
2
|
import { OwlDateTimeIntl } from 'ng-pick-datetime';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class DefaultIntl extends OwlDateTimeIntl {
|
|
5
4
|
private utilityService;
|
|
6
5
|
constructor(utilityService: UtilityService);
|
|
@@ -16,6 +15,4 @@ export declare class DefaultIntl extends OwlDateTimeIntl {
|
|
|
16
15
|
hour12AMLabel: string;
|
|
17
16
|
/** A label for the hour12 button (PM) */
|
|
18
17
|
hour12PMLabel: string;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultIntl, never>;
|
|
20
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultIntl>;
|
|
21
18
|
}
|
|
@@ -2,7 +2,6 @@ import { CustomValidation } from '../Models/CustomValidation';
|
|
|
2
2
|
import { ErrorMassageValidation } from './validationErrorMassage.service';
|
|
3
3
|
import { ValidationErrors, ValidatorFn, AbstractControl } from '@angular/forms';
|
|
4
4
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class ControlUtility {
|
|
7
6
|
private ErrorHandler;
|
|
8
7
|
private controlValidationService;
|
|
@@ -27,6 +26,4 @@ export declare class ControlUtility {
|
|
|
27
26
|
AddCustomValidation(FormControl: AbstractControl, ValidationRole: any[], CustomValidation: CustomValidation): void;
|
|
28
27
|
static getLocal(): string;
|
|
29
28
|
IsValid(FormControl: AbstractControl): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ControlUtility, never>;
|
|
31
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ControlUtility>;
|
|
32
29
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ControlLayout } from "../Enums/ControlLayout";
|
|
2
2
|
import { LanguageMode } from "../Enums/LanguageMode";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class GlobalSettings {
|
|
5
4
|
/** to set type of view if MultilingualTextArea is Vertical or Horizontal */
|
|
6
5
|
ViewType: ControlLayout;
|
|
@@ -12,6 +11,4 @@ export declare class GlobalSettings {
|
|
|
12
11
|
MaxLengthTextBox: number;
|
|
13
12
|
MaxLengthTextArea: number;
|
|
14
13
|
DefaultImageSrc: string;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalSettings, never>;
|
|
16
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalSettings>;
|
|
17
14
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class OnPagingFiltersChangeService {
|
|
4
3
|
private subject;
|
|
5
4
|
ChangeValue(value: string): void;
|
|
6
5
|
ClearValue(): void;
|
|
7
6
|
GetValue(): Observable<any>;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OnPagingFiltersChangeService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<OnPagingFiltersChangeService>;
|
|
10
7
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { ComponentFactoryResolver, ViewContainerRef } from "@angular/core";
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class RenderComponentService {
|
|
5
4
|
private componentFactoryResolver;
|
|
6
5
|
constructor(componentFactoryResolver: ComponentFactoryResolver);
|
|
7
6
|
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
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Http } from '@angular/http';
|
|
2
2
|
import { ControlContainer } from '@angular/forms';
|
|
3
3
|
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class ErrorMassageValidation {
|
|
6
5
|
private http;
|
|
7
6
|
private controlContainer;
|
|
@@ -11,6 +10,4 @@ export declare class ErrorMassageValidation {
|
|
|
11
10
|
url: string;
|
|
12
11
|
static showerror(FormControlName: string): void;
|
|
13
12
|
getErrorMassageValidation(error: any): string;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMassageValidation, [null, { optional: true; }, null]>;
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMassageValidation>;
|
|
16
13
|
}
|
|
@@ -7,7 +7,6 @@ import { Observable } from 'rxjs';
|
|
|
7
7
|
import { HttpClient } from '@angular/common/http';
|
|
8
8
|
import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class AutocompleteTextBoxComponent implements OnInit {
|
|
12
11
|
private http;
|
|
13
12
|
private ErrorHandler;
|
|
@@ -53,6 +52,4 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
|
|
|
53
52
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
54
53
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
55
54
|
IsValid: () => void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteTextBoxComponent, [null, null, null, null, { optional: true; }, null, null, null, null]>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteTextBoxComponent, "BBSF-AutocompleteTextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
58
55
|
}
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { FullCalendarComponent } from '@fullcalendar/angular';
|
|
2
|
-
import
|
|
2
|
+
import * as core from '@fullcalendar/core';
|
|
3
3
|
import { OnInit } from '@angular/core';
|
|
4
4
|
import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms';
|
|
5
5
|
import { ErrorMassageValidation } from '../../Shared/services/validationErrorMassage.service';
|
|
6
6
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
7
7
|
import { CalendarOptions } from '../../Shared/Models/CalendarOptions';
|
|
8
|
-
import { CalendarOptions as CalendarOptionsModel, EventApi } from '@fullcalendar/angular';
|
|
9
8
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
9
|
export declare class CalendarComponent implements OnInit {
|
|
12
10
|
private ErrorHandler;
|
|
13
11
|
private controlUtility;
|
|
@@ -23,11 +21,11 @@ export declare class CalendarComponent implements OnInit {
|
|
|
23
21
|
CalendarFormControl: AbstractControl;
|
|
24
22
|
calendarComponent: FullCalendarComponent;
|
|
25
23
|
calendarVisible: boolean;
|
|
26
|
-
calendarOptions:
|
|
27
|
-
currentEvents: EventApi[];
|
|
28
|
-
calendarPlugins:
|
|
24
|
+
calendarOptions: core.CalendarOptions;
|
|
25
|
+
currentEvents: core.EventApi[];
|
|
26
|
+
calendarPlugins: core.PluginDef[];
|
|
29
27
|
calendarWeekends: boolean;
|
|
30
|
-
calendarEvents: EventInput[];
|
|
28
|
+
calendarEvents: core.EventInput[];
|
|
31
29
|
DefaultView: string;
|
|
32
30
|
CalendarViews: string;
|
|
33
31
|
locales: any[];
|
|
@@ -38,6 +36,4 @@ export declare class CalendarComponent implements OnInit {
|
|
|
38
36
|
getErrorValidation(Errorsitem: any[]): void;
|
|
39
37
|
OnDayClickFunction(arg: any): void;
|
|
40
38
|
OnEventClickFunction(arg: any): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "BBSF-Calendar", never, { "group": "group"; "options": "options"; }, {}, never, never>;
|
|
43
39
|
}
|
|
@@ -3,7 +3,6 @@ import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from
|
|
|
3
3
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
4
|
import { CheckBoxOptions } from '../../Shared/Models/CheckBoxOptions';
|
|
5
5
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class CheckBoxComponent implements OnInit {
|
|
8
7
|
private controlUtility;
|
|
9
8
|
private controlContainer;
|
|
@@ -32,6 +31,4 @@ export declare class CheckBoxComponent implements OnInit {
|
|
|
32
31
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
33
32
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
34
33
|
IsValid: () => void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "BBSF-CheckBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
37
34
|
}
|
|
@@ -5,7 +5,6 @@ import { StyleConfirmationMode } from '../../../public-api';
|
|
|
5
5
|
import { ConfirmationModalOptions } from '../../Shared/Models/ConfirmationModalOptions';
|
|
6
6
|
import { SweetAlertIcon } from 'sweetalert2';
|
|
7
7
|
import { Router } from '@angular/router';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class ConfirmationModalComponent implements OnInit {
|
|
10
9
|
utilityService: UtilityService;
|
|
11
10
|
private modalService;
|
|
@@ -24,6 +23,4 @@ export declare class ConfirmationModalComponent implements OnInit {
|
|
|
24
23
|
private setTextValues;
|
|
25
24
|
submit(): void;
|
|
26
25
|
private handleError;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationModalComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationModalComponent, "BBSF-ConfirmationModal", never, { "options": "options"; }, {}, never, never>;
|
|
29
26
|
}
|
|
@@ -8,7 +8,6 @@ import { BBSFTranslateService, ControlValidationService, UtilityService } from '
|
|
|
8
8
|
import { DatePipe } from '@angular/common';
|
|
9
9
|
import { DateTimeAdapter } from 'ng-pick-datetime';
|
|
10
10
|
import * as dateTimeClass from 'ng-pick-datetime/date-time/date-time.class';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
11
|
export declare class DateInputComponent implements OnInit {
|
|
13
12
|
datepipe: DatePipe;
|
|
14
13
|
private onChangeService;
|
|
@@ -55,6 +54,4 @@ export declare class DateInputComponent implements OnInit {
|
|
|
55
54
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
56
55
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
57
56
|
IsValid: () => void;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [null, null, null, null, { optional: true; }, null, null, null, null, null]>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "BBSF-DateTimePicker", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
60
57
|
}
|
|
@@ -6,7 +6,6 @@ import { DropdownListItem } from '../../Shared/Models/DropdownListItem';
|
|
|
6
6
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
7
7
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class DropdownListComponent implements OnInit {
|
|
11
10
|
private onChangeService;
|
|
12
11
|
private controlUtility;
|
|
@@ -47,6 +46,4 @@ export declare class DropdownListComponent implements OnInit {
|
|
|
47
46
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
48
47
|
IsValid: () => void;
|
|
49
48
|
UpdateDataSource: (dataSource: DropdownListItem[]) => void;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownListComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownListComponent, "BBSF-DropdownList", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; "onClear": "onClear"; }, never, never>;
|
|
52
49
|
}
|
|
@@ -8,7 +8,6 @@ import { MultipleFileUploadModel } from '../../Shared/Models/MultipleFileUploadM
|
|
|
8
8
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
10
|
import { FileDTO } from '../../Shared/Models/FileDTO';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
11
|
export declare class FileUploadComponent implements OnInit {
|
|
13
12
|
private controlContainer;
|
|
14
13
|
MultipleFileUplaodControlHost: FormGroupDirective;
|
|
@@ -53,6 +52,4 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
53
52
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
54
53
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
55
54
|
IsValid: () => void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, [{ optional: true; }, null, null, null, null, null]>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "BBSF-FileUplaod", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
58
55
|
}
|
|
@@ -4,7 +4,6 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
|
|
|
4
4
|
import { FormOptions } from '../../Shared/Models/FormOptions';
|
|
5
5
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class FormComponent implements OnInit {
|
|
9
8
|
private controlUtility;
|
|
10
9
|
private utilityService;
|
|
@@ -23,6 +22,4 @@ export declare class FormComponent implements OnInit {
|
|
|
23
22
|
private handleError;
|
|
24
23
|
showGlobalError(): void;
|
|
25
24
|
randomString(length: any): string;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "BBSF-Form", never, { "options": "options"; }, { "OnChange": "OnChange"; }, never, ["*"]>;
|
|
28
25
|
}
|
|
@@ -5,7 +5,6 @@ import { HtmlEditorOptions } from '../../Shared/Models/HtmlEditorOptions';
|
|
|
5
5
|
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
6
6
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class HtmlEditorComponent implements OnInit {
|
|
10
9
|
private zone;
|
|
11
10
|
private controlUtility;
|
|
@@ -44,6 +43,4 @@ export declare class HtmlEditorComponent implements OnInit {
|
|
|
44
43
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
45
44
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
46
45
|
IsValid: () => void;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "BBSF-HtmlEditor", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
49
46
|
}
|
|
@@ -7,7 +7,6 @@ import { CropperComponent } from 'angular-cropperjs';
|
|
|
7
7
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
9
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class ImageUploaderComponent implements OnInit {
|
|
12
11
|
private zone;
|
|
13
12
|
private controlUtility;
|
|
@@ -65,6 +64,4 @@ export declare class ImageUploaderComponent implements OnInit {
|
|
|
65
64
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
66
65
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
67
66
|
IsValid: () => void;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null, null]>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImageUploaderComponent, "BBSF-ImageUpload", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
70
67
|
}
|
|
@@ -7,7 +7,6 @@ import { MatGoogleMapsAutocompleteComponent } from '@angular-material-extensions
|
|
|
7
7
|
import { MapsAPILoader, LazyMapsAPILoader } from '@agm/core';
|
|
8
8
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class MapAutoCompleteComponent implements OnInit {
|
|
12
11
|
private mapsAPILoader;
|
|
13
12
|
private ngZone;
|
|
@@ -49,6 +48,4 @@ export declare class MapAutoCompleteComponent implements OnInit {
|
|
|
49
48
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
50
49
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
51
50
|
IsValid: () => void;
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapAutoCompleteComponent, [null, null, null, { optional: true; }, null, null, null, null, null]>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapAutoCompleteComponent, "BBSF-MapAutoComplete", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
54
51
|
}
|
|
@@ -5,7 +5,6 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
|
5
5
|
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
6
6
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
10
9
|
MultiLingualHtmlEditorFormControlHost: FormGroupDirective;
|
|
11
10
|
private controlContainer;
|
|
@@ -60,6 +59,4 @@ export declare class MultiLingualHtmlEditorComponent implements OnInit {
|
|
|
60
59
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
61
60
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
62
61
|
IsValid: () => void;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualHtmlEditorComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualHtmlEditorComponent, "BBSF-MultiLingualHtmlEditor", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
65
62
|
}
|
|
@@ -4,7 +4,6 @@ import { MultiLingualTextAreaOptions } from '../../Shared/Models/MultiLingualTex
|
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
5
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class MultiLingualTextAreaComponent implements OnInit {
|
|
9
8
|
MultiLingualTextAreaFormControlHost: FormGroupDirective;
|
|
10
9
|
private controlContainer;
|
|
@@ -69,6 +68,4 @@ export declare class MultiLingualTextAreaComponent implements OnInit {
|
|
|
69
68
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
70
69
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
71
70
|
IsValid: () => void;
|
|
72
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextAreaComponent, "BBSF-MultiLingualTextArea", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
74
71
|
}
|
|
@@ -4,7 +4,6 @@ import { MultiLingualTextBoxOptions } from '../../Shared/Models/MultilingualText
|
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
5
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
9
8
|
MultiLingualTextBoxFormControlHost: FormGroupDirective;
|
|
10
9
|
private controlContainer;
|
|
@@ -68,6 +67,4 @@ export declare class MultiLingualTextBoxComponent implements OnInit {
|
|
|
68
67
|
showInputUsingLanguageMode(): void;
|
|
69
68
|
onArabicFocus(isFocus: boolean): void;
|
|
70
69
|
onEnglishFocus(isFocus: boolean): void;
|
|
71
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLingualTextBoxComponent, [null, { optional: true; }, null, null, null, null, null]>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLingualTextBoxComponent, "BBSF-MultiLingualTextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
73
70
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class JwPaginationComponent implements OnInit, OnChanges {
|
|
4
3
|
items: Array<any>;
|
|
5
4
|
changePage: EventEmitter<any>;
|
|
@@ -22,6 +21,4 @@ export declare class JwPaginationComponent implements OnInit, OnChanges {
|
|
|
22
21
|
endIndex: number;
|
|
23
22
|
pages: any[];
|
|
24
23
|
};
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JwPaginationComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JwPaginationComponent, "jw-pagination", never, { "items": "items"; "initialPage": "initialPage"; "pageSize": "pageSize"; "maxPages": "maxPages"; "ShowFirstAndLast": "ShowFirstAndLast"; }, { "changePage": "changePage"; }, never, never>;
|
|
27
24
|
}
|
|
@@ -6,7 +6,6 @@ import { Subscription } from 'rxjs';
|
|
|
6
6
|
import { FormGroup } from '@angular/forms';
|
|
7
7
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
8
8
|
import { RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
11
10
|
utilityService: UtilityService;
|
|
12
11
|
private http;
|
|
@@ -52,6 +51,4 @@ export declare class PagingComponent<T> implements OnInit, OnDestroy {
|
|
|
52
51
|
setText(pagesNumber: number, itemsNumber: number): void;
|
|
53
52
|
clearFilters(): void;
|
|
54
53
|
getFiltersValue(): {};
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PagingComponent<any>, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagingComponent<any>, "BBSF-Paging", never, { "options": "options"; "group": "group"; }, { "Items": "Items"; }, never, never>;
|
|
57
54
|
}
|
|
@@ -6,7 +6,6 @@ import { SearchCountryField, CountryISO } from 'ngx-intl-tel-input';
|
|
|
6
6
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
7
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
8
8
|
import { Country } from '../../Shared/Enums/Countries';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class PhoneComponent implements OnInit {
|
|
11
10
|
private controlUtility;
|
|
12
11
|
private controlContainer;
|
|
@@ -38,6 +37,4 @@ export declare class PhoneComponent implements OnInit {
|
|
|
38
37
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
39
38
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
40
39
|
IsValid: () => void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "BBSF-Phone", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
43
40
|
}
|
|
@@ -7,7 +7,6 @@ import { ProfileImageUploadOptions } from '../../Shared/Models/ProfileImageUploa
|
|
|
7
7
|
import { ProfilePictureDTO } from '../../Shared/Models/ProfilePictureDTO';
|
|
8
8
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class ProfileImageUploaderComponent implements OnInit {
|
|
12
11
|
private zone;
|
|
13
12
|
private controlUtility;
|
|
@@ -64,6 +63,4 @@ export declare class ProfileImageUploaderComponent implements OnInit {
|
|
|
64
63
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
65
64
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
66
65
|
IsValid: () => void;
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileImageUploaderComponent, [null, null, { optional: true; }, null, null, null, null]>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageUploaderComponent, "BBSF-ProfileImageUploader", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
69
66
|
}
|
|
@@ -4,7 +4,6 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
|
4
4
|
import { RadioButtonOptions } from '../../Shared/Models/RadioButtonOptions';
|
|
5
5
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class RadioButtonComponent implements OnInit {
|
|
9
8
|
private controlUtility;
|
|
10
9
|
private controlContainer;
|
|
@@ -31,6 +30,4 @@ export declare class RadioButtonComponent implements OnInit {
|
|
|
31
30
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
32
31
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
33
32
|
IsValid: () => void;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "BBSF-RadioButton", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
36
33
|
}
|
|
@@ -5,7 +5,6 @@ import { ControlValidationService, RequestHandlerService, UtilityService } from
|
|
|
5
5
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
6
6
|
import { RecaptchaOptions } from '../../Shared/Models/RecaptchaOptions';
|
|
7
7
|
import { RecaptchaModel } from '../../Shared/Models/Recaptcha';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class RecaptchaComponent implements OnInit {
|
|
10
9
|
private controlUtility;
|
|
11
10
|
private requestHandlerService;
|
|
@@ -36,6 +35,4 @@ export declare class RecaptchaComponent implements OnInit {
|
|
|
36
35
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
37
36
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
38
37
|
IsValid: () => void;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RecaptchaComponent, "BBSF-Recaptcha", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
41
38
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { RepeaterOptions } from '../../../Shared/Models/RepeaterOptions';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class RepeaterComponent implements OnInit {
|
|
6
5
|
group: FormGroup;
|
|
7
6
|
options: RepeaterOptions;
|
|
@@ -24,6 +23,4 @@ export declare class RepeaterComponent implements OnInit {
|
|
|
24
23
|
addItem(): void;
|
|
25
24
|
ngAfterViewInit(): void;
|
|
26
25
|
setCurrentIndex(i: number): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterComponent, "BBSF-repeater", never, { "group": "group"; "options": "options"; "initialTemplate": "initialTemplate"; }, {}, never, never>;
|
|
29
26
|
}
|
|
@@ -2,7 +2,6 @@ import { AfterViewInit, OnInit, SimpleChanges, ViewContainerRef } from '@angular
|
|
|
2
2
|
import { FormGroup, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { RepeaterField } from '../../../Shared/Models/RepeaterField';
|
|
4
4
|
import { RenderComponentService } from '../../../Shared/services/render-component-service.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewInit {
|
|
7
6
|
private renderComponentService;
|
|
8
7
|
TextControlHost: FormGroupDirective;
|
|
@@ -18,6 +17,4 @@ export declare class RepeaterFieldBuilderComponent implements OnInit, AfterViewI
|
|
|
18
17
|
ngOnInit(): void;
|
|
19
18
|
ngAfterViewInit(): void;
|
|
20
19
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterFieldBuilderComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterFieldBuilderComponent, "repeater-field-builder", never, { "group": "group"; "itemNumber": "itemNumber"; "controlNumber": "controlNumber"; "RepeaterField": "RepeaterField"; "itemsValue": "itemsValue"; }, {}, never, never>;
|
|
23
20
|
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class RepeaterItemFieldComponent implements OnInit {
|
|
4
3
|
templates: Array<TemplateRef<any>>;
|
|
5
4
|
filedIndex: number;
|
|
6
5
|
itemIndex: number;
|
|
7
6
|
constructor();
|
|
8
7
|
ngOnInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterItemFieldComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterItemFieldComponent, "repeater-item-field", never, { "templates": "templates"; "filedIndex": "filedIndex"; "itemIndex": "itemIndex"; }, {}, never, never>;
|
|
11
8
|
}
|
|
@@ -2,7 +2,6 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { RepeaterOptions } from '../../../Shared/Models/RepeaterOptions';
|
|
4
4
|
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class RepeaterTableComponent implements OnInit {
|
|
7
6
|
utilityService: UtilityService;
|
|
8
7
|
group: FormGroup;
|
|
@@ -14,6 +13,4 @@ export declare class RepeaterTableComponent implements OnInit {
|
|
|
14
13
|
ngOnInit(): void;
|
|
15
14
|
deleteItem(Index: any): void;
|
|
16
15
|
addItem(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RepeaterTableComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepeaterTableComponent, "BBSF-repeater-table", never, { "group": "group"; "options": "options"; }, {}, never, never>;
|
|
19
16
|
}
|
|
@@ -6,7 +6,6 @@ import { HttpClient } from '@angular/common/http';
|
|
|
6
6
|
import { Observable, Subscription } from 'rxjs';
|
|
7
7
|
import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
11
10
|
private http;
|
|
12
11
|
private controlUtility;
|
|
@@ -52,6 +51,4 @@ export declare class TagsInputComponent implements OnInit, OnDestroy {
|
|
|
52
51
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
53
52
|
IsValid: () => void;
|
|
54
53
|
onTagsInputBlur(SearchKey: any): void;
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TagsInputComponent, [null, null, null, { optional: true; }, null, null, null, null]>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagsInputComponent, "BBSF-TagsInput", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
57
54
|
}
|
|
@@ -4,7 +4,6 @@ import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utiliti
|
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
5
|
import { TextAreaOptions } from '../../Shared/Models/TextAreaOptions';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class TextAreaComponent implements OnInit {
|
|
9
8
|
private controlUtility;
|
|
10
9
|
private controlContainer;
|
|
@@ -46,6 +45,4 @@ export declare class TextAreaComponent implements OnInit {
|
|
|
46
45
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
47
46
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
48
47
|
IsValid: () => void;
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "BBSF-TextArea", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
51
48
|
}
|
|
@@ -4,7 +4,6 @@ import { TextBoxOptions } from '../../Shared/Models/TextBoxOptions';
|
|
|
4
4
|
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
5
5
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
6
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class TextboxComponent implements OnInit {
|
|
9
8
|
private controlUtility;
|
|
10
9
|
private controlContainer;
|
|
@@ -56,6 +55,4 @@ export declare class TextboxComponent implements OnInit {
|
|
|
56
55
|
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
57
56
|
AddCustomValidation: (CustomValidation: any) => void;
|
|
58
57
|
IsValid: () => void;
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "BBSF-TextBox", never, { "group": "group"; "options": "options"; }, { "OnChange": "OnChange"; }, never, never>;
|
|
61
58
|
}
|