@bnsights/bbsf-controls 1.0.111 → 1.0.112

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 (149) hide show
  1. package/README.md +4 -0
  2. package/esm2022/lib/Shared/Components/app-base-component.mjs +7 -7
  3. package/esm2022/lib/Shared/Enums/StartView.mjs +1 -1
  4. package/esm2022/lib/Shared/Enums/map-enums.mjs +7 -7
  5. package/esm2022/lib/Shared/Models/AutocompleteOptions.mjs +9 -9
  6. package/esm2022/lib/Shared/Models/CalendarOptions.mjs +7 -7
  7. package/esm2022/lib/Shared/Models/CheckBoxOptions.mjs +3 -3
  8. package/esm2022/lib/Shared/Models/ConfirmationModalOptions.mjs +16 -16
  9. package/esm2022/lib/Shared/Models/ControlOptionsBase.mjs +5 -5
  10. package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +24 -0
  11. package/esm2022/lib/Shared/Models/DropdownOptions.mjs +6 -6
  12. package/esm2022/lib/Shared/Models/EnglishArabicDTO.mjs +3 -3
  13. package/esm2022/lib/Shared/Models/FileUploadModel.mjs +1 -1
  14. package/esm2022/lib/Shared/Models/FileUploadOptions.mjs +3 -3
  15. package/esm2022/lib/Shared/Models/FormOptions.mjs +13 -13
  16. package/esm2022/lib/Shared/Models/HtmlEditorOptions.mjs +3 -3
  17. package/esm2022/lib/Shared/Models/ImageUploadOptions.mjs +4 -4
  18. package/esm2022/lib/Shared/Models/MapAutoCompleteOptions.mjs +1 -3
  19. package/esm2022/lib/Shared/Models/MapAutocompleteDTO.mjs +2 -2
  20. package/esm2022/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs +2 -2
  21. package/esm2022/lib/Shared/Models/MultiLingualTextAreaOptions.mjs +2 -2
  22. package/esm2022/lib/Shared/Models/{MultilingualTextBoxOptions.mjs → MultiLingualTextBoxOptions.mjs} +5 -5
  23. package/esm2022/lib/Shared/Models/MultilingualControlOptionsBase.mjs +6 -6
  24. package/esm2022/lib/Shared/Models/MultipleFileUploadModel.mjs +5 -5
  25. package/esm2022/lib/Shared/Models/PagingOptions.mjs +22 -22
  26. package/esm2022/lib/Shared/Models/PhoneOptions.mjs +4 -4
  27. package/esm2022/lib/Shared/Models/ProfileImageUploadOptions.mjs +3 -3
  28. package/esm2022/lib/Shared/Models/ProfilePictureDTO.mjs +1 -1
  29. package/esm2022/lib/Shared/Models/RadioButtonItem.mjs +1 -1
  30. package/esm2022/lib/Shared/Models/RadioButtonOptions.mjs +1 -1
  31. package/esm2022/lib/Shared/Models/RangeNumber.mjs +1 -1
  32. package/esm2022/lib/Shared/Models/Recaptcha.mjs +2 -2
  33. package/esm2022/lib/Shared/Models/RecaptchaOptions.mjs +9 -9
  34. package/esm2022/lib/Shared/Models/RepeaterField.mjs +1 -1
  35. package/esm2022/lib/Shared/Models/RepeaterOptions.mjs +9 -9
  36. package/esm2022/lib/Shared/Models/TagsInputDTO.mjs +1 -1
  37. package/esm2022/lib/Shared/Models/TagsInputOptions.mjs +19 -19
  38. package/esm2022/lib/Shared/Models/TextAreaOptions.mjs +1 -1
  39. package/esm2022/lib/Shared/Models/TextBoxOptions.mjs +9 -9
  40. package/esm2022/lib/Shared/Models/{ToggleslideOptions.mjs → ToggleSlideOptions.mjs} +2 -2
  41. package/esm2022/lib/Shared/Models/filter-options.mjs +5 -5
  42. package/esm2022/lib/Shared/Models/page-header-options.mjs +32 -32
  43. package/esm2022/lib/Shared/services/ControlUtility.mjs +37 -37
  44. package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +9 -9
  45. package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +81 -81
  46. package/esm2022/lib/controls/Calendar/Calendar.component.mjs +40 -40
  47. package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +35 -35
  48. package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +30 -30
  49. package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +90 -97
  50. package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +74 -74
  51. package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +155 -155
  52. package/esm2022/lib/controls/Form/Form.component.mjs +24 -24
  53. package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +55 -55
  54. package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +113 -113
  55. package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +62 -66
  56. package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +163 -163
  57. package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +193 -193
  58. package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +210 -210
  59. package/esm2022/lib/controls/Paging/Paging.component.mjs +85 -85
  60. package/esm2022/lib/controls/Phone/Phone.component.mjs +42 -42
  61. package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +112 -112
  62. package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +38 -38
  63. package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +46 -46
  64. package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +12 -12
  65. package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +556 -556
  66. package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +15 -15
  67. package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +100 -100
  68. package/esm2022/lib/controls/TextArea/TextArea.component.mjs +71 -71
  69. package/esm2022/lib/controls/TextBox/TextBox.component.mjs +116 -116
  70. package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +90 -0
  71. package/esm2022/lib/controls/bbsf-controls.module.mjs +2 -2
  72. package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +4 -4
  73. package/esm2022/public-api.mjs +7 -7
  74. package/fesm2022/bnsights-bbsf-controls.mjs +2801 -2813
  75. package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
  76. package/lib/Shared/Enums/map-enums.d.ts +1 -1
  77. package/lib/Shared/Models/AutocompleteOptions.d.ts +20 -20
  78. package/lib/Shared/Models/CalendarOptions.d.ts +10 -10
  79. package/lib/Shared/Models/CheckBoxOptions.d.ts +2 -2
  80. package/lib/Shared/Models/ConfirmationModalOptions.d.ts +14 -14
  81. package/lib/Shared/Models/ControlOptionsBase.d.ts +17 -17
  82. package/lib/Shared/Models/{datePickerOptions.d.ts → DatePickerOptions.d.ts} +12 -13
  83. package/lib/Shared/Models/DropdownOptions.d.ts +15 -15
  84. package/lib/Shared/Models/EnglishArabicDTO.d.ts +2 -2
  85. package/lib/Shared/Models/FileUploadModel.d.ts +1 -1
  86. package/lib/Shared/Models/FileUploadOptions.d.ts +8 -8
  87. package/lib/Shared/Models/FormOptions.d.ts +11 -11
  88. package/lib/Shared/Models/HtmlEditorOptions.d.ts +11 -11
  89. package/lib/Shared/Models/ImageUploadOptions.d.ts +9 -9
  90. package/lib/Shared/Models/MapAutoCompleteOptions.d.ts +1 -2
  91. package/lib/Shared/Models/MapAutocompleteDTO.d.ts +5 -5
  92. package/lib/Shared/Models/MultiLingualHtmlEditorOptions.d.ts +7 -7
  93. package/lib/Shared/Models/MultiLingualTextAreaOptions.d.ts +5 -5
  94. package/lib/Shared/Models/{MultilingualTextBoxOptions.d.ts → MultiLingualTextBoxOptions.d.ts} +6 -6
  95. package/lib/Shared/Models/MultilingualControlOptionsBase.d.ts +34 -34
  96. package/lib/Shared/Models/MultipleFileUploadModel.d.ts +4 -4
  97. package/lib/Shared/Models/PagingOptions.d.ts +25 -25
  98. package/lib/Shared/Models/PhoneOptions.d.ts +9 -9
  99. package/lib/Shared/Models/ProfileImageUploadOptions.d.ts +10 -10
  100. package/lib/Shared/Models/ProfilePictureDTO.d.ts +9 -9
  101. package/lib/Shared/Models/RadioButtonItem.d.ts +2 -2
  102. package/lib/Shared/Models/RadioButtonOptions.d.ts +2 -2
  103. package/lib/Shared/Models/RangeNumber.d.ts +2 -2
  104. package/lib/Shared/Models/Recaptcha.d.ts +4 -4
  105. package/lib/Shared/Models/RecaptchaOptions.d.ts +10 -10
  106. package/lib/Shared/Models/RepeaterField.d.ts +4 -4
  107. package/lib/Shared/Models/RepeaterOptions.d.ts +16 -16
  108. package/lib/Shared/Models/TagsInputDTO.d.ts +4 -4
  109. package/lib/Shared/Models/TagsInputOptions.d.ts +29 -29
  110. package/lib/Shared/Models/TextAreaOptions.d.ts +11 -11
  111. package/lib/Shared/Models/TextBoxOptions.d.ts +18 -18
  112. package/lib/Shared/Models/{ToggleslideOptions.d.ts → ToggleSlideOptions.d.ts} +3 -3
  113. package/lib/Shared/Models/filter-options.d.ts +4 -4
  114. package/lib/Shared/Models/page-header-options.d.ts +43 -43
  115. package/lib/Shared/services/ControlUtility.d.ts +8 -8
  116. package/lib/Shared/services/GlobalSettings.service.d.ts +8 -8
  117. package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +11 -11
  118. package/lib/controls/Calendar/Calendar.component.d.ts +7 -7
  119. package/lib/controls/CheckBox/CheckBox.component.d.ts +10 -10
  120. package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +20 -24
  121. package/lib/controls/DropdownList/DropdownList.component.d.ts +13 -13
  122. package/lib/controls/FileUplaod/FileUplaod.component.d.ts +11 -11
  123. package/lib/controls/Form/Form.component.d.ts +2 -2
  124. package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +12 -12
  125. package/lib/controls/ImageUpload/ImageUpload.component.d.ts +16 -16
  126. package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +6 -9
  127. package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +25 -25
  128. package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +24 -24
  129. package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +32 -32
  130. package/lib/controls/Paging/Paging.component.d.ts +9 -9
  131. package/lib/controls/Phone/Phone.component.d.ts +12 -12
  132. package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +18 -18
  133. package/lib/controls/RadioButton/RadioButton.component.d.ts +11 -11
  134. package/lib/controls/Recaptcha/Recaptcha.component.d.ts +10 -10
  135. package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +5 -5
  136. package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +1 -1
  137. package/lib/controls/TagsInput/TagsInput.component.d.ts +17 -17
  138. package/lib/controls/TextArea/TextArea.component.d.ts +14 -14
  139. package/lib/controls/TextBox/TextBox.component.d.ts +25 -25
  140. package/lib/controls/Toggleslide/{toggleslide.component.d.ts → Toggleslide.component.d.ts} +10 -10
  141. package/lib/controls/bbsf-controls.module.d.ts +1 -1
  142. package/package.json +3 -2
  143. package/public-api.d.ts +4 -4
  144. package/src/lib/assets/images/marker-pin.svg +4 -4
  145. package/esm2022/bnsights-test-test-controls.mjs +0 -5
  146. package/esm2022/lib/Shared/Models/datePickerOptions.mjs +0 -23
  147. package/esm2022/lib/controls/Toggleslide/toggleslide.component.mjs +0 -90
  148. package/fesm2022/bnsights-test-test-controls.mjs +0 -9164
  149. package/fesm2022/bnsights-test-test-controls.mjs.map +0 -1
@@ -1,4 +1,4 @@
1
- export declare enum AddressTypes {
1
+ export declare enum MapSearchTypes {
2
2
  Establishment = "establishment",
3
3
  Address = "address",
4
4
  Geocode = "geocode"
@@ -6,35 +6,35 @@ import { RangeNumber } from './RangeNumber';
6
6
  import { ControlOptionsBase } from './ControlOptionsBase';
7
7
  export declare class AutocompleteOptions extends ControlOptionsBase {
8
8
  /**Represent classes to textbox that allow us to select the AutoComplete by jquery or javascript */
9
- ValidationToken: string;
9
+ validationToken: string;
10
10
  /**To set value to textbox */
11
- Value: any;
12
- MaxLength?: number;
11
+ value: any;
12
+ maxLength?: number;
13
13
  /**Set the MinLength of characters In AutoComplete */
14
- MinLength?: number;
15
- MaxWordCount: number;
14
+ minLength?: number;
15
+ maxWordCount: number;
16
16
  /** set Range Number to Textbox with type number with From-Value and To-value*/
17
- NumberRange: RangeNumber;
17
+ numberRange: RangeNumber;
18
18
  /**Prevent AutoComplete of textbox*/
19
- AutoComplete: boolean;
19
+ autoComplete: boolean;
20
20
  /** text input on change */
21
- TrimTextOnChange: boolean;
21
+ trimTextOnChange: boolean;
22
22
  /** add button to for coping to clipboard */
23
- EnableCopyToClipboard: boolean;
23
+ enableCopyToClipboard: boolean;
24
24
  /**Prevent Defulat Password Validation to set Custom Validation */
25
- RemoveDefulatPasswordValidation: boolean;
25
+ removeDefulatPasswordValidation: boolean;
26
26
  /** to set Direction of textbox if textbox is Arabic or English */
27
- ForceDirection: ForceDirection;
27
+ forceDirection: ForceDirection;
28
28
  /** Set Type of AutoComplete ("text","password","email","number") */
29
- Type: InputType;
29
+ type: InputType;
30
30
  /** allow add value of AutoComplete dosn't exist in list*/
31
- AllowNewSelection: boolean;
32
- ControlId: string;
31
+ allowNewSelection: boolean;
32
+ controlId: string;
33
33
  /**the url of a remote server that supports jsonp calls */
34
- ActionURL: string;
35
- QueryParam: string;
36
- AutocompleteDTO: AutocompleteDTO;
37
- SelectedValue: any;
38
- ItemWithImage: boolean;
39
- CustomTemplate: TemplateRef<any>;
34
+ actionURL: string;
35
+ queryParam: string;
36
+ autocompleteDTO: AutocompleteDTO;
37
+ selectedValue: any;
38
+ itemWithImage: boolean;
39
+ customTemplate: TemplateRef<any>;
40
40
  }
@@ -3,21 +3,21 @@ import { CalendarEventDTO } from './CalendarEventDTO';
3
3
  import { ControlOptionsBase } from './ControlOptionsBase';
4
4
  export declare class CalendarOptions extends ControlOptionsBase {
5
5
  /** Represent DefaultView Of Calendar*/
6
- DefaultView: CalendarView;
6
+ defaultView: CalendarView;
7
7
  /** Represent OnEventClickFunction Of Calendar*/
8
- OnEventClickFunction: any;
8
+ onEventClickFunction: any;
9
9
  /** Represent CalendarViews Of Calendar*/
10
- CalendarViews: CalendarView[];
10
+ calendarViews: CalendarView[];
11
11
  /** Represent OnDayClickFunction Of Calendar*/
12
- OnDayClickFunction: any;
13
- EventList: CalendarEventDTO[];
12
+ onDayClickFunction: any;
13
+ eventList: CalendarEventDTO[];
14
14
  /** Set Allowc Calendar Weekends Of Calendar*/
15
- AllowCalendarWeekends: boolean;
15
+ allowCalendarWeekends: boolean;
16
16
  /** Set Calendar Visible Of Calendar*/
17
- CalendarVisible: boolean;
17
+ calendarVisible: boolean;
18
18
  /** Set DefaultDate Of Calendar*/
19
- DefaultDate: Date;
20
- Eventeditable: boolean;
21
- Eventselectable: boolean;
19
+ defaultDate: Date;
20
+ eventeditable: boolean;
21
+ eventselectable: boolean;
22
22
  dayMaxEvents: boolean | number;
23
23
  }
@@ -2,6 +2,6 @@ import { ForceDirection } from '../Enums/ForceDirection';
2
2
  import { ControlOptionsBase } from './ControlOptionsBase';
3
3
  export declare class CheckBoxOptions extends ControlOptionsBase {
4
4
  /**To set value to CheckBox */
5
- Value: boolean;
6
- ForceDirection: ForceDirection;
5
+ value: boolean;
6
+ forceDirection: ForceDirection;
7
7
  }
@@ -2,20 +2,20 @@ import { PagingComponent } from "../../controls/Paging/Paging.component";
2
2
  import { PagingActionMode } from "../Enums/PagingActionMode";
3
3
  import { StyleConfirmationMode } from "../Enums/StyleConfirmationMode";
4
4
  export declare class ConfirmationModalOptions {
5
- ConfirmationHeader: string;
6
- ConfirmationBody: string;
7
- SubmitButtonText: string;
8
- StyleConfirmationMode: StyleConfirmationMode;
9
- ServiceSubmitFunction: Function;
10
- ServiceSubmitModel: any[];
11
- PagingReference: PagingComponent<any>;
12
- PagingActionMode: PagingActionMode;
13
- OnErrorHandler: Function;
14
- OnSuccessHandler: Function;
15
- SuccessNotificationMessage: string;
16
- DisableSuccessNotification: boolean;
17
- DisableErrorNotification: boolean;
18
- DisableModalDismiss: boolean;
5
+ confirmationHeader: string;
6
+ confirmationBody: string;
7
+ submitButtonText: string;
8
+ styleConfirmationMode: StyleConfirmationMode;
9
+ serviceSubmitFunction: Function;
10
+ serviceSubmitModel: any[];
11
+ pagingReference: PagingComponent<any>;
12
+ pagingActionMode: PagingActionMode;
13
+ onErrorHandler: Function;
14
+ onSuccessHandler: Function;
15
+ successNotificationMessage: string;
16
+ disableSuccessNotification: boolean;
17
+ disableErrorNotification: boolean;
18
+ disableModalDismiss: boolean;
19
19
  showCancelButton: boolean;
20
20
  showCloseButton: boolean;
21
21
  }
@@ -3,42 +3,42 @@ import { Attribute } from './Attribute';
3
3
  import { CustomValidation } from "./CustomValidation";
4
4
  export declare class ControlOptionsBase {
5
5
  /** Represent Name Of Form Control*/
6
- Name: string;
6
+ name: string;
7
7
  /** Represent classes to Control that allow us to select the Control by jquery or javascript */
8
- ExtraClasses: string;
8
+ extraClasses: string;
9
9
  /** Represent classes to label that allow us to select the Control by jquery or javascript */
10
- LabelExtraClasses: string;
10
+ labelExtraClasses: string;
11
11
  /** Represent value of the label*/
12
- LabelValue: string;
12
+ labelValue: string;
13
13
  /** Represent Key of the label*/
14
- LabelKey: string;
14
+ labelKey: string;
15
15
  /** Represent value of the labelDescription show under Control*/
16
- LabelDescription: string;
16
+ labelDescription: string;
17
17
  /** Represent value of the Placeholder of Control */
18
- Placeholder: string;
18
+ placeholder: string;
19
19
  /**
20
20
  * Display "*" beside the label
21
21
  * if ForceAsterisk=true and IsRequired=True his display "*" ,
22
22
  * if ForceAsterisk=false and IsRequired=false this remove "*",
23
23
  *if ForceAsterisk=false and IsRequired=True this display "*" ,
24
24
  */
25
- ShowAsterisk: boolean;
25
+ showAsterisk: boolean;
26
26
  /** Ability to set Control required */
27
- IsRequired: boolean;
27
+ isRequired: boolean;
28
28
  /** Ability to display or hide the label of Control */
29
- HideLabel: boolean;
29
+ hideLabel: boolean;
30
30
  /** Sets an attribute disable="disabled" */
31
- IsDisabled: boolean;
31
+ isDisabled: boolean;
32
32
  /** to set type of view if Control is Vertical or Horizontal */
33
- ViewType: ControlLayout;
33
+ viewType: ControlLayout;
34
34
  /** Set List of Custom Attribute to Control */
35
- AttributeList: Attribute[];
35
+ attributeList: Attribute[];
36
36
  /** Allow to Pass Object With Body of Function which represent CustomValidation and massage for error massage */
37
- CustomValidation: CustomValidation[];
37
+ customValidation: CustomValidation[];
38
38
  /** Path of propriety which we need to patch value */
39
- PatchPath: string;
39
+ patchPath: string;
40
40
  /** Function which call to patch value */
41
- PatchFunction: Function;
41
+ patchFunction: Function;
42
42
  /** Sets an attribute readonly */
43
- IsReadonly: boolean;
43
+ isReadonly: boolean;
44
44
  }
@@ -5,25 +5,24 @@ import { SelectMode } from '../Enums/SelectMode';
5
5
  import { ControlOptionsBase } from './ControlOptionsBase';
6
6
  export declare class DatePickerOptions extends ControlOptionsBase {
7
7
  /**To set value to DatePicker */
8
- Value: Date;
8
+ value: Date;
9
9
  /**To set StartDate to DatePicker */
10
- StartDate: Date;
10
+ startDate: Date;
11
11
  /**To set EndDate to DatePicker */
12
- EndDate: Date;
13
- /** add button to for coping to clipboard */
14
- EnableCopyToClipboard: boolean;
15
- IsGMT: boolean;
12
+ endDate: Date;
13
+ isGMT: boolean;
16
14
  /**To set First Day Of Week to DatePicker */
17
- FirstDayOfWeek: number;
15
+ firstDayOfWeek: number;
18
16
  /**To set Hour12Timer to DatePicker is 12 Hour or 24 Hour*/
19
- Hour12Timer: boolean;
17
+ hour12Timer: boolean;
20
18
  /**To set PickerType to DatePicker is Calendar or Timer Or Both */
21
- PickerType: PickerType;
19
+ pickerType: PickerType;
22
20
  /**To set StartView to DatePicker is Year or Month Or Multi-Year */
23
- StartView: StartView;
21
+ startView: StartView;
24
22
  /**To set SelectMode to DatePicker is Single or Range */
25
- SelectMode: SelectMode;
26
- ForceDirection: ForceDirection;
23
+ selectMode: SelectMode;
24
+ forceDirection: ForceDirection;
27
25
  /**Name of DatePicker control to compare value with it */
28
- StartControlToCompareWith: string;
26
+ startControlToCompareWith: string;
27
+ validationClasses: string;
29
28
  }
@@ -3,31 +3,31 @@ import { ForceDirection } from '../Enums/ForceDirection';
3
3
  import { ControlOptionsBase } from './ControlOptionsBase';
4
4
  export declare class DropdownOptions extends ControlOptionsBase {
5
5
  /**To set DataSource to DropdownList */
6
- DataSource: DropdownListItem[];
6
+ dataSource: DropdownListItem[];
7
7
  /**To set SelectedItem to DropdownList */
8
- SelectedItems: any;
8
+ selectedItems: any;
9
9
  /** Disable Bootstrap DropdownList */
10
- DisableBootstrapSelect: boolean;
10
+ disableBootstrapSelect: boolean;
11
11
  /** to set DropdownList in SingleMode Or MultibleMode ,,If false => DisableBootstrapSelect must be equal false */
12
- SingleSelection: boolean;
12
+ singleSelection: boolean;
13
13
  /** to set Number Of selected Element That will Show In The Box */
14
- ItemsShowLimit: number;
14
+ itemsShowLimit: number;
15
15
  /** to Show Search Filter Box*/
16
- AllowSearchFilter: boolean;
16
+ allowSearchFilter: boolean;
17
17
  /** to set Limit Of selected Element For DropdownList */
18
- LimitSelection?: number;
18
+ limitSelection?: number;
19
19
  /** Set css classes to DropdownList */
20
- Classes: string;
20
+ classes: string;
21
21
  /** Allow Show Checkbox */
22
- ShowCheckbox?: boolean;
22
+ showCheckbox?: boolean;
23
23
  /** Allow Check ALL Items */
24
- EnableCheckAll?: boolean;
24
+ enableCheckAll?: boolean;
25
25
  /** Set key for item in DropdownList */
26
- ItemTempletkey: string;
26
+ itemTempletkey: string;
27
27
  /** Set value for item in DropdownList */
28
- ItemTempletvalue: string;
29
- ForceDirection: ForceDirection;
30
- NotFoundText: string;
28
+ itemTempletvalue: string;
29
+ forceDirection: ForceDirection;
30
+ notFoundText: string;
31
31
  /** Represent Value of disabled items tooltip*/
32
- DisabledItemsTooltipValue: string;
32
+ disabledItemsTooltipValue: string;
33
33
  }
@@ -1,4 +1,4 @@
1
1
  export declare class EnglishArabicDTO {
2
- English: string;
3
- Arabic: string;
2
+ english: string;
3
+ arabic: string;
4
4
  }
@@ -1,4 +1,4 @@
1
1
  import { FileDTO } from "./FileDTO";
2
2
  export declare class FileUploadModel {
3
- File: FileDTO;
3
+ file: FileDTO;
4
4
  }
@@ -1,19 +1,19 @@
1
1
  import { FileType } from '../Enums/FileType';
2
2
  import { ControlOptionsBase } from './ControlOptionsBase';
3
3
  export declare class FileUploadOptions extends ControlOptionsBase {
4
- Value: any;
4
+ value: any;
5
5
  /** Ability to set FileInput required */
6
- IsMultipleFile: boolean;
6
+ isMultipleFile: boolean;
7
7
  /** Sets boolean Value to Show IsDropZone Or Not */
8
- IsDropZone: boolean;
8
+ isDropZone: boolean;
9
9
  /** Set File MaxSize In MB */
10
- FileMaxSizeInMB: number;
10
+ fileMaxSizeInMB: number;
11
11
  /** Set Max Number Of Files */
12
- MaxNoOfFiles: number;
12
+ maxNoOfFiles: number;
13
13
  /** Set Min Number Of Files */
14
- MinNoOfFiles: number;
14
+ minNoOfFiles: number;
15
15
  /** Set File MaxSizeForAllFilesInMB In MB */
16
- MaxSizeForAllFilesInMB: number;
16
+ maxSizeForAllFilesInMB: number;
17
17
  /** Set List of Custom Attribute to FileInput */
18
- FileUploadAcceptsTypes: FileType[];
18
+ fileUploadAcceptsTypes: FileType[];
19
19
  }
@@ -2,15 +2,15 @@ import { FormGroup } from '@angular/forms';
2
2
  import { PagingActionMode } from '../Enums/PagingActionMode';
3
3
  import { PagingComponent } from '../../controls/Paging/Paging.component';
4
4
  export declare class FormOptions {
5
- FormGroup: FormGroup;
6
- PagingReference: PagingComponent<any>;
7
- PagingActionMode: PagingActionMode;
8
- GetModelFunction: Function;
9
- ServiceSubmitFunction: Function;
10
- OnErrorHandler: Function;
11
- OnSuccessHandler: Function;
12
- DisableSuccessNotification: boolean;
13
- DisableErrorNotification: boolean;
14
- DisableBlockUI: boolean;
15
- DisableModalDismiss: boolean;
5
+ formGroup: FormGroup;
6
+ pagingReference: PagingComponent<any>;
7
+ pagingActionMode: PagingActionMode;
8
+ getModelFunction: Function;
9
+ serviceSubmitFunction: Function;
10
+ onErrorHandler: Function;
11
+ onSuccessHandler: Function;
12
+ disableSuccessNotification: boolean;
13
+ disableErrorNotification: boolean;
14
+ disableBlockUI: boolean;
15
+ disableModalDismiss: boolean;
16
16
  }
@@ -8,24 +8,24 @@ import { Insert } from '../Enums/Insert';
8
8
  import { ControlOptionsBase } from './ControlOptionsBase';
9
9
  export declare class HtmlEditorOptions extends ControlOptionsBase {
10
10
  /**To set value to HtmlEditor */
11
- Value: any;
12
- MaxLength?: number;
11
+ value: any;
12
+ maxLength?: number;
13
13
  /**Set the MinLength of characters In HtmlEditor */
14
- MinLength?: number;
14
+ minLength?: number;
15
15
  /** to set Direction of HtmlEditor if HtmlEditor is Arabic or English */
16
- ForceDirection: ForceDirection;
16
+ forceDirection: ForceDirection;
17
17
  /** Set Height For */
18
- Height: number;
18
+ height: number;
19
19
  /** Set List of Custom Attribute to HtmlEditor */
20
- AttributeList: Attribute[];
20
+ attributeList: Attribute[];
21
21
  /** Set List of Misc like codeview Or undo Or redo */
22
- ToolsList_Misc?: Misc[];
22
+ toolsList_Misc?: Misc[];
23
23
  /** Set List of Style like bold Or italic Or underline Or clear */
24
- ToolsList_Style?: Style[];
24
+ toolsList_Style?: Style[];
25
25
  /** Set List of FontSize like fontname Or fontsize Or color */
26
- ToolsList_FontSize?: FontSize[];
26
+ toolsList_FontSize?: FontSize[];
27
27
  /** Set List of Para like style Or ul Or ol Or paragraph Or height */
28
- ToolsList_Para?: Para[];
28
+ toolsList_Para?: Para[];
29
29
  /** Set List of Insert like table Or picture Or link Or video Or hr */
30
- ToolsList_Insert?: Insert[];
30
+ toolsList_Insert?: Insert[];
31
31
  }
@@ -3,21 +3,21 @@ import { ImageType } from '../Enums/ImageType';
3
3
  import { ControlOptionsBase } from './ControlOptionsBase';
4
4
  export declare class ImageUploadOptions extends ControlOptionsBase {
5
5
  /**To set value to ImageUpload */
6
- Value: FileDTO;
6
+ value: FileDTO;
7
7
  /** Allow to Upload Multiple File */
8
- IsMultiple: boolean;
8
+ isMultiple: boolean;
9
9
  /** Allow to Use Drop Zone */
10
- AllowDropZone: boolean;
10
+ allowDropZone: boolean;
11
11
  /** Sets an attribute AllowImageCropper="true" */
12
- AllowImageCropper: boolean;
12
+ allowImageCropper: boolean;
13
13
  /** Set Height of Image Cropper Box */
14
- ImageCropperHeight: number;
14
+ imageCropperHeight: number;
15
15
  /** Set Width of Image Cropper Box */
16
- ImageCropperWidth: number;
16
+ imageCropperWidth: number;
17
17
  /** Set File MaxSize In MB */
18
- FileMaxSizeInMB: number;
18
+ fileMaxSizeInMB: number;
19
19
  /** Set List of Custom Attribute to FileInput */
20
- FileUploadAcceptsTypes: ImageType[];
20
+ fileUploadAcceptsTypes: ImageType[];
21
21
  /** Set Default Image */
22
- DefaultImageSrc: string;
22
+ defaultImageSrc: string;
23
23
  }
@@ -2,7 +2,6 @@ import { MapAutocompleteDTO } from './MapAutocompleteDTO';
2
2
  import { ControlOptionsBase } from './ControlOptionsBase';
3
3
  export declare class MapAutoCompleteOptions extends ControlOptionsBase {
4
4
  /** Sets Value of MapAutoComplete */
5
- Value: MapAutocompleteDTO;
6
- addressType: string;
5
+ value: MapAutocompleteDTO;
7
6
  showAdvancedMap: boolean;
8
7
  }
@@ -1,7 +1,7 @@
1
1
  export declare class MapAutocompleteDTO {
2
- Text: string;
3
- Latitude: number;
4
- Longitude: number;
5
- PlaceID: string;
6
- GoogleMapsURL: string;
2
+ text: string;
3
+ latitude: number;
4
+ longitude: number;
5
+ placeID: string;
6
+ googleMapsURL: string;
7
7
  }
@@ -6,17 +6,17 @@ import { Para } from '../Enums/Para';
6
6
  import { Insert } from '../Enums/Insert';
7
7
  import { MultilingualControlOptionsBase } from './MultilingualControlOptionsBase';
8
8
  export declare class MultiLingualHtmlEditorOptions extends MultilingualControlOptionsBase {
9
- Type: InputType;
9
+ type: InputType;
10
10
  /** Set Height For */
11
- Height: number;
11
+ height: number;
12
12
  /** Set List of Misc like codeview Or undo Or redo */
13
- ToolsList_Misc?: Misc[];
13
+ toolsList_Misc?: Misc[];
14
14
  /** Set List of Style like bold Or italic Or underline Or clear */
15
- ToolsList_Style?: Style[];
15
+ toolsList_Style?: Style[];
16
16
  /** Set List of FontSize like fontname Or fontsize Or color */
17
- ToolsList_FontSize?: FontSize[];
17
+ toolsList_FontSize?: FontSize[];
18
18
  /** Set List of Para like style Or ul Or ol Or paragraph Or height */
19
- ToolsList_Para?: Para[];
19
+ toolsList_Para?: Para[];
20
20
  /** Set List of Insert like table Or picture Or link Or video Or hr */
21
- ToolsList_Insert?: Insert[];
21
+ toolsList_Insert?: Insert[];
22
22
  }
@@ -2,11 +2,11 @@ import { InputType } from '../Enums/InputType';
2
2
  import { ControlLayout } from '../Enums/ControlLayout';
3
3
  import { MultilingualControlOptionsBase } from './MultilingualControlOptionsBase';
4
4
  export declare class MultiLingualTextAreaOptions extends MultilingualControlOptionsBase {
5
- Type: InputType;
5
+ type: InputType;
6
6
  /**Set Number Of Rows */
7
- Rows: number;
7
+ rows: number;
8
8
  /**Set Number Of columns */
9
- Cols: number;
10
- MultiControlPlacementType: ControlLayout;
11
- MaxLengthWarningLimit: number;
9
+ cols: number;
10
+ multiControlPlacementType: ControlLayout;
11
+ maxLengthWarningLimit: number;
12
12
  }
@@ -2,11 +2,11 @@ import { ControlLayout } from '../Enums/ControlLayout';
2
2
  import { IconPosition } from '../Enums/IconPosition';
3
3
  import { MultilingualControlOptionsBase } from './MultilingualControlOptionsBase';
4
4
  export declare class MultiLingualTextBoxOptions extends MultilingualControlOptionsBase {
5
- Icon: string;
6
- IconPositionEN: IconPosition;
7
- IconPositionAR: IconPosition;
8
- MultiControlPlacementType: ControlLayout;
9
- MaxLengthWarningLimit: number;
5
+ icon: string;
6
+ iconPositionEN: IconPosition;
7
+ iconPositionAR: IconPosition;
8
+ multiControlPlacementType: ControlLayout;
9
+ maxLengthWarningLimit: number;
10
10
  /**Prevent AutoComplete of inputs default value is "on" available values "on" and "off"*/
11
- AutoComplete: string;
11
+ autoComplete: string;
12
12
  }
@@ -4,74 +4,74 @@ import { CustomValidation } from './CustomValidation';
4
4
  import { EnglishArabicDTO } from './EnglishArabicDTO';
5
5
  export declare class MultilingualControlOptionsBase {
6
6
  /** Represent Name Of Form Control*/
7
- Name: string;
7
+ name: string;
8
8
  /** Represent key of the Label*/
9
- LabelKey: string;
9
+ labelKey: string;
10
10
  /** Represent value of the Label*/
11
- LabelValue: string;
11
+ labelValue: string;
12
12
  /** Represent Key of the label*/
13
- ArabicLabelKey: string;
13
+ arabicLabelKey: string;
14
14
  /** Represent Key of the label*/
15
- EnglishLabelKey: string;
15
+ englishLabelKey: string;
16
16
  /** Represent value of the ArabicLabel*/
17
- ArabicLabelValue: string;
17
+ arabicLabelValue: string;
18
18
  /** Represent value of the EnglishLabel*/
19
- EnglishLabelValue: string;
19
+ englishLabelValue: string;
20
20
  /** Represent value of the LabelDescription show under textbox*/
21
- LabelDescription: string;
21
+ labelDescription: string;
22
22
  /** Represent value of the ArabicLabelDescription show under MultipleLanguageText*/
23
- ArabicLabelDescription: string;
23
+ arabicLabelDescription: string;
24
24
  /** Represent value of the EnglishLabelDescription show under MultipleLanguageText*/
25
- EnglishLabelDescription: string;
25
+ englishLabelDescription: string;
26
26
  /**Represent ArabicPlaceholder Of Form Control*/
27
- ArabicPlaceholder: string;
27
+ arabicPlaceholder: string;
28
28
  /**Represent EnglishPlaceholder Of Form Control*/
29
- EnglishPlaceholder: string;
29
+ englishPlaceholder: string;
30
30
  /** Represent classes to label that allow us to select the Control by jquery or javascript */
31
- LabelExtraClasses: string;
31
+ labelExtraClasses: string;
32
32
  /**Represent classes to Arabic textbox that allow us to select the MultipleLanguageText by jquery or javascript */
33
- ExtraClasses_AR: string;
33
+ extraClasses_AR: string;
34
34
  /**Represent classes to English textbox that allow us to select the MultipleLanguageText by jquery or javascript */
35
- ExtraClasses_EN: string;
35
+ extraClasses_EN: string;
36
36
  /** to set type of view if MultipleLanguageText is Vertical or Horizontal */
37
- ViewType: ControlLayout;
37
+ viewType: ControlLayout;
38
38
  /** add button to for coping to clipboard */
39
- EnableCopyToClipboard: boolean;
39
+ enableCopyToClipboard: boolean;
40
40
  /**To Set Value To MultipleLanguageText with Object From Type "EnglishArabicDTO" */
41
- Value: EnglishArabicDTO;
41
+ value: EnglishArabicDTO;
42
42
  /**Set the MinLength of characters In TextBox */
43
- MinLength: number;
44
- MaxLength: number;
45
- MaxWordCount: number;
43
+ minLength: number;
44
+ maxLength: number;
45
+ maxWordCount: number;
46
46
  /**
47
47
  * Display "*" beside the label
48
48
  * if ForceAsterisk=true and IsRequired=True his display "*" ,
49
49
  * if if ForceAsterisk=false and IsRequired=false this remove "*",
50
50
  *if ForceAsterisk=false and IsRequired=True this display "*" ,
51
51
  */
52
- ShowAsterisk: boolean;
52
+ showAsterisk: boolean;
53
53
  /** Ability to set MultipleLanguageText required */
54
- IsRequired: boolean;
54
+ isRequired: boolean;
55
55
  /** Sets an attribute disable="disabled" */
56
- IsDisabled: boolean;
56
+ isDisabled: boolean;
57
57
  /** Ability to display or hide the EnglishField of MultipleLanguageText */
58
- IsHideEnglishFields: boolean;
58
+ isHideEnglishFields: boolean;
59
59
  /** Ability to display or hide the ArabicField of MultipleLanguageText */
60
- IsHideArabicFields: boolean;
60
+ isHideArabicFields: boolean;
61
61
  /** Ability to display or hide the EnglishLabel of MultipleLanguageText */
62
- IsHideEnglishLabel: boolean;
62
+ isHideEnglishLabel: boolean;
63
63
  /** Ability to display or hide the ArabicLable of MultipleLanguageText */
64
- IsHideArabicLabel: boolean;
64
+ isHideArabicLabel: boolean;
65
65
  /** trim input on change */
66
- TrimTextOnChange: boolean;
66
+ trimTextOnChange: boolean;
67
67
  /**To Set LanguageMode To MultipleLanguageText */
68
- LanguageMode: LanguageMode;
68
+ languageMode: LanguageMode;
69
69
  /** Allow to Pass Object With Body of Function which represent CustomValidation and massage for error massage */
70
- CustomValidation: CustomValidation[];
70
+ customValidation: CustomValidation[];
71
71
  /** Path of propriety which we need to patch value */
72
- PatchPath: string;
72
+ patchPath: string;
73
73
  /** Function which call to patch value */
74
- PatchFunction: Function;
74
+ patchFunction: Function;
75
75
  /** Sets an attribute readonly */
76
- IsReadonly: boolean;
76
+ isReadonly: boolean;
77
77
  }
@@ -1,7 +1,7 @@
1
1
  import { FileDTO } from "./FileDTO";
2
2
  export declare class MultipleFileUploadModel {
3
- CorrelationID_GUID?: string;
4
- UploadedFiles: FileDTO[];
5
- ExistingFiles: FileDTO[];
6
- RemovedFiles: string[];
3
+ correlationID_GUID?: string;
4
+ uploadedFiles: FileDTO[];
5
+ existingFiles: FileDTO[];
6
+ removedFiles: string[];
7
7
  }