@bnsights/bbsf-controls 1.0.111 → 1.0.113
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 +9 -0
- package/bnsights-bbsf-controls-1.0.113.tgz +0 -0
- package/esm2022/lib/Shared/Components/app-base-component.mjs +11 -11
- package/esm2022/lib/Shared/Enums/StartView.mjs +1 -1
- package/esm2022/lib/Shared/Enums/map-enums.mjs +7 -7
- package/esm2022/lib/Shared/Models/Attribute.mjs +1 -1
- package/esm2022/lib/Shared/Models/AutocompleteOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/CalendarOptions.mjs +7 -7
- package/esm2022/lib/Shared/Models/CancelDTO.mjs +3 -3
- package/esm2022/lib/Shared/Models/CheckBoxOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ConfirmationModalOptions.mjs +16 -16
- package/esm2022/lib/Shared/Models/ControlOptionsBase.mjs +5 -5
- package/esm2022/lib/Shared/Models/DatePickerOptions.mjs +24 -0
- package/esm2022/lib/Shared/Models/DropdownOptions.mjs +6 -6
- package/esm2022/lib/Shared/Models/EnglishArabicDTO.mjs +3 -3
- package/esm2022/lib/Shared/Models/FileDTO.mjs +22 -2
- package/esm2022/lib/Shared/Models/FileUploadModel.mjs +1 -1
- package/esm2022/lib/Shared/Models/FileUploadOptions.mjs +5 -3
- package/esm2022/lib/Shared/Models/FilterItem.mjs +2 -2
- package/esm2022/lib/Shared/Models/FormOptions.mjs +13 -13
- package/esm2022/lib/Shared/Models/HtmlEditorOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ImageUploadOptions.mjs +4 -4
- package/esm2022/lib/Shared/Models/MapAutoCompleteOptions.mjs +1 -3
- package/esm2022/lib/Shared/Models/MapAutocompleteDTO.mjs +2 -2
- package/esm2022/lib/Shared/Models/MultiLingualHtmlEditorOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/MultiLingualTextAreaOptions.mjs +2 -2
- package/esm2022/lib/Shared/Models/{MultilingualTextBoxOptions.mjs → MultiLingualTextBoxOptions.mjs} +5 -5
- package/esm2022/lib/Shared/Models/MultilingualControlOptionsBase.mjs +6 -6
- package/esm2022/lib/Shared/Models/MultipleFileUploadModel.mjs +5 -5
- package/esm2022/lib/Shared/Models/PagingOptions.mjs +22 -22
- package/esm2022/lib/Shared/Models/PhoneOptions.mjs +4 -4
- package/esm2022/lib/Shared/Models/ProfileImageUploadOptions.mjs +3 -3
- package/esm2022/lib/Shared/Models/ProfilePictureDTO.mjs +1 -1
- package/esm2022/lib/Shared/Models/RadioButtonItem.mjs +1 -1
- package/esm2022/lib/Shared/Models/RadioButtonOptions.mjs +1 -1
- package/esm2022/lib/Shared/Models/RangeNumber.mjs +1 -1
- package/esm2022/lib/Shared/Models/Recaptcha.mjs +2 -2
- package/esm2022/lib/Shared/Models/RecaptchaOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/RepeaterField.mjs +1 -1
- package/esm2022/lib/Shared/Models/RepeaterOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/TagsInputDTO.mjs +1 -1
- package/esm2022/lib/Shared/Models/TagsInputOptions.mjs +19 -19
- package/esm2022/lib/Shared/Models/TextAreaOptions.mjs +1 -1
- package/esm2022/lib/Shared/Models/TextBoxOptions.mjs +9 -9
- package/esm2022/lib/Shared/Models/{ToggleslideOptions.mjs → ToggleSlideOptions.mjs} +2 -2
- package/esm2022/lib/Shared/Models/UploadPersonalImage.mjs +3 -3
- package/esm2022/lib/Shared/Models/filter-options.mjs +5 -5
- package/esm2022/lib/Shared/Models/page-header-options.mjs +32 -32
- package/esm2022/lib/Shared/services/ControlUtility.mjs +37 -37
- package/esm2022/lib/Shared/services/GlobalSettings.service.mjs +9 -9
- package/esm2022/lib/Shared/services/file-upload.service.mjs +29 -0
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +81 -81
- package/esm2022/lib/controls/Calendar/Calendar.component.mjs +40 -40
- package/esm2022/lib/controls/CheckBox/CheckBox.component.mjs +35 -35
- package/esm2022/lib/controls/ConfirmationModal/ConfirmationModal.component.mjs +30 -30
- package/esm2022/lib/controls/DateTimePicker/DateTimePicker.component.mjs +98 -97
- package/esm2022/lib/controls/DropdownList/DropdownList.component.mjs +74 -74
- package/esm2022/lib/controls/FileUplaod/FileUplaod.component.mjs +258 -191
- package/esm2022/lib/controls/Form/Form.component.mjs +24 -24
- package/esm2022/lib/controls/HtmlEditor/HtmlEditor.component.mjs +55 -55
- package/esm2022/lib/controls/ImageUpload/ImageUpload.component.mjs +126 -126
- package/esm2022/lib/controls/MapAutoComplete/MapAutoComplete.component.mjs +62 -66
- package/esm2022/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.mjs +163 -163
- package/esm2022/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.mjs +193 -193
- package/esm2022/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.mjs +210 -210
- package/esm2022/lib/controls/Paging/Paging.component.mjs +88 -88
- package/esm2022/lib/controls/Phone/Phone.component.mjs +42 -42
- package/esm2022/lib/controls/ProfileImageUploader/ProfileImageUploader.component.mjs +127 -127
- package/esm2022/lib/controls/RadioButton/RadioButton.component.mjs +38 -38
- package/esm2022/lib/controls/Recaptcha/Recaptcha.component.mjs +46 -46
- package/esm2022/lib/controls/Repeater/repeater/repeater.component.mjs +12 -12
- package/esm2022/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.mjs +556 -556
- package/esm2022/lib/controls/Repeater/repeater-table/repeater-table.component.mjs +15 -15
- package/esm2022/lib/controls/TagsInput/TagsInput.component.mjs +100 -100
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +71 -71
- package/esm2022/lib/controls/TextBox/TextBox.component.mjs +116 -116
- package/esm2022/lib/controls/Toggleslide/Toggleslide.component.mjs +90 -0
- package/esm2022/lib/controls/bbsf-controls.module.mjs +2 -2
- package/esm2022/lib/controls/page-header-component/page-header-component.component.mjs +4 -4
- package/esm2022/public-api.mjs +7 -7
- package/fesm2022/bnsights-bbsf-controls.mjs +3001 -2892
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Enums/map-enums.d.ts +1 -1
- package/lib/Shared/Models/Attribute.d.ts +1 -1
- package/lib/Shared/Models/AutocompleteOptions.d.ts +20 -20
- package/lib/Shared/Models/CalendarOptions.d.ts +10 -10
- package/lib/Shared/Models/CancelDTO.d.ts +2 -2
- package/lib/Shared/Models/CheckBoxOptions.d.ts +2 -2
- package/lib/Shared/Models/ConfirmationModalOptions.d.ts +14 -14
- package/lib/Shared/Models/ControlOptionsBase.d.ts +17 -17
- package/lib/Shared/Models/{datePickerOptions.d.ts → DatePickerOptions.d.ts} +12 -13
- package/lib/Shared/Models/DropdownOptions.d.ts +15 -15
- package/lib/Shared/Models/EnglishArabicDTO.d.ts +2 -2
- package/lib/Shared/Models/FileDTO.d.ts +18 -18
- package/lib/Shared/Models/FileUploadModel.d.ts +1 -1
- package/lib/Shared/Models/FileUploadOptions.d.ts +10 -8
- package/lib/Shared/Models/FilterItem.d.ts +4 -4
- package/lib/Shared/Models/FormOptions.d.ts +11 -11
- package/lib/Shared/Models/HtmlEditorOptions.d.ts +11 -11
- package/lib/Shared/Models/ImageUploadOptions.d.ts +9 -9
- package/lib/Shared/Models/MapAutoCompleteOptions.d.ts +1 -2
- package/lib/Shared/Models/MapAutocompleteDTO.d.ts +5 -5
- package/lib/Shared/Models/MultiLingualHtmlEditorOptions.d.ts +7 -7
- package/lib/Shared/Models/MultiLingualTextAreaOptions.d.ts +5 -5
- package/lib/Shared/Models/{MultilingualTextBoxOptions.d.ts → MultiLingualTextBoxOptions.d.ts} +6 -6
- package/lib/Shared/Models/MultilingualControlOptionsBase.d.ts +34 -34
- package/lib/Shared/Models/MultipleFileUploadModel.d.ts +4 -4
- package/lib/Shared/Models/PagingOptions.d.ts +25 -25
- package/lib/Shared/Models/PhoneOptions.d.ts +9 -9
- package/lib/Shared/Models/ProfileImageUploadOptions.d.ts +10 -10
- package/lib/Shared/Models/ProfilePictureDTO.d.ts +9 -9
- package/lib/Shared/Models/RadioButtonItem.d.ts +2 -2
- package/lib/Shared/Models/RadioButtonOptions.d.ts +2 -2
- package/lib/Shared/Models/RangeNumber.d.ts +2 -2
- package/lib/Shared/Models/Recaptcha.d.ts +4 -4
- package/lib/Shared/Models/RecaptchaOptions.d.ts +10 -10
- package/lib/Shared/Models/RepeaterField.d.ts +4 -4
- package/lib/Shared/Models/RepeaterOptions.d.ts +16 -16
- package/lib/Shared/Models/TagsInputDTO.d.ts +4 -4
- package/lib/Shared/Models/TagsInputOptions.d.ts +29 -29
- package/lib/Shared/Models/TextAreaOptions.d.ts +11 -11
- package/lib/Shared/Models/TextBoxOptions.d.ts +18 -18
- package/lib/Shared/Models/{ToggleslideOptions.d.ts → ToggleSlideOptions.d.ts} +3 -3
- package/lib/Shared/Models/UploadPersonalImage.d.ts +2 -2
- package/lib/Shared/Models/filter-options.d.ts +4 -4
- package/lib/Shared/Models/page-header-options.d.ts +43 -43
- package/lib/Shared/services/ControlUtility.d.ts +8 -8
- package/lib/Shared/services/GlobalSettings.service.d.ts +8 -8
- package/lib/Shared/services/file-upload.service.d.ts +11 -0
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +11 -11
- package/lib/controls/Calendar/Calendar.component.d.ts +7 -7
- package/lib/controls/CheckBox/CheckBox.component.d.ts +10 -10
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +22 -24
- package/lib/controls/DropdownList/DropdownList.component.d.ts +13 -13
- package/lib/controls/FileUplaod/FileUplaod.component.d.ts +20 -16
- package/lib/controls/Form/Form.component.d.ts +2 -2
- package/lib/controls/HtmlEditor/HtmlEditor.component.d.ts +12 -12
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +16 -16
- package/lib/controls/MapAutoComplete/MapAutoComplete.component.d.ts +6 -9
- package/lib/controls/MultiLingualHtmlEditor/MultiLingualHtmlEditor.component.d.ts +25 -25
- package/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.d.ts +24 -24
- package/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.d.ts +32 -32
- package/lib/controls/Paging/Paging.component.d.ts +11 -11
- package/lib/controls/Phone/Phone.component.d.ts +12 -12
- package/lib/controls/ProfileImageUploader/ProfileImageUploader.component.d.ts +18 -18
- package/lib/controls/RadioButton/RadioButton.component.d.ts +11 -11
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +10 -10
- package/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.d.ts +5 -5
- package/lib/controls/Repeater/repeater-table/repeater-table.component.d.ts +1 -1
- package/lib/controls/TagsInput/TagsInput.component.d.ts +17 -17
- package/lib/controls/TextArea/TextArea.component.d.ts +14 -14
- package/lib/controls/TextBox/TextBox.component.d.ts +25 -25
- package/lib/controls/Toggleslide/{toggleslide.component.d.ts → Toggleslide.component.d.ts} +10 -10
- package/lib/controls/bbsf-controls.module.d.ts +1 -1
- package/package.json +4 -3
- package/public-api.d.ts +4 -4
- package/src/lib/assets/Style-rtl.scss +16 -0
- package/src/lib/assets/images/marker-pin.svg +4 -4
- package/src/lib/assets/sass/file-upload.scss +39 -1
- package/src/lib/assets/sass/image-upload.scss +5 -6
- package/esm2022/bnsights-test-test-controls.mjs +0 -5
- package/esm2022/lib/Shared/Models/datePickerOptions.mjs +0 -23
- package/esm2022/lib/controls/Toggleslide/toggleslide.component.mjs +0 -90
- package/fesm2022/bnsights-test-test-controls.mjs +0 -9164
- package/fesm2022/bnsights-test-test-controls.mjs.map +0 -1
|
@@ -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
|
-
|
|
9
|
+
validationToken: string;
|
|
10
10
|
/**To set value to textbox */
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
value: any;
|
|
12
|
+
maxLength?: number;
|
|
13
13
|
/**Set the MinLength of characters In AutoComplete */
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
minLength?: number;
|
|
15
|
+
maxWordCount: number;
|
|
16
16
|
/** set Range Number to Textbox with type number with From-Value and To-value*/
|
|
17
|
-
|
|
17
|
+
numberRange: RangeNumber;
|
|
18
18
|
/**Prevent AutoComplete of textbox*/
|
|
19
|
-
|
|
19
|
+
autoComplete: boolean;
|
|
20
20
|
/** text input on change */
|
|
21
|
-
|
|
21
|
+
trimTextOnChange: boolean;
|
|
22
22
|
/** add button to for coping to clipboard */
|
|
23
|
-
|
|
23
|
+
enableCopyToClipboard: boolean;
|
|
24
24
|
/**Prevent Defulat Password Validation to set Custom Validation */
|
|
25
|
-
|
|
25
|
+
removeDefulatPasswordValidation: boolean;
|
|
26
26
|
/** to set Direction of textbox if textbox is Arabic or English */
|
|
27
|
-
|
|
27
|
+
forceDirection: ForceDirection;
|
|
28
28
|
/** Set Type of AutoComplete ("text","password","email","number") */
|
|
29
|
-
|
|
29
|
+
type: InputType;
|
|
30
30
|
/** allow add value of AutoComplete dosn't exist in list*/
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
allowNewSelection: boolean;
|
|
32
|
+
controlId: string;
|
|
33
33
|
/**the url of a remote server that supports jsonp calls */
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
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
|
-
|
|
6
|
+
defaultView: CalendarView;
|
|
7
7
|
/** Represent OnEventClickFunction Of Calendar*/
|
|
8
|
-
|
|
8
|
+
onEventClickFunction: any;
|
|
9
9
|
/** Represent CalendarViews Of Calendar*/
|
|
10
|
-
|
|
10
|
+
calendarViews: CalendarView[];
|
|
11
11
|
/** Represent OnDayClickFunction Of Calendar*/
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
onDayClickFunction: any;
|
|
13
|
+
eventList: CalendarEventDTO[];
|
|
14
14
|
/** Set Allowc Calendar Weekends Of Calendar*/
|
|
15
|
-
|
|
15
|
+
allowCalendarWeekends: boolean;
|
|
16
16
|
/** Set Calendar Visible Of Calendar*/
|
|
17
|
-
|
|
17
|
+
calendarVisible: boolean;
|
|
18
18
|
/** Set DefaultDate Of Calendar*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
6
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
6
|
+
name: string;
|
|
7
7
|
/** Represent classes to Control that allow us to select the Control by jquery or javascript */
|
|
8
|
-
|
|
8
|
+
extraClasses: string;
|
|
9
9
|
/** Represent classes to label that allow us to select the Control by jquery or javascript */
|
|
10
|
-
|
|
10
|
+
labelExtraClasses: string;
|
|
11
11
|
/** Represent value of the label*/
|
|
12
|
-
|
|
12
|
+
labelValue: string;
|
|
13
13
|
/** Represent Key of the label*/
|
|
14
|
-
|
|
14
|
+
labelKey: string;
|
|
15
15
|
/** Represent value of the labelDescription show under Control*/
|
|
16
|
-
|
|
16
|
+
labelDescription: string;
|
|
17
17
|
/** Represent value of the Placeholder of Control */
|
|
18
|
-
|
|
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
|
-
|
|
25
|
+
showAsterisk: boolean;
|
|
26
26
|
/** Ability to set Control required */
|
|
27
|
-
|
|
27
|
+
isRequired: boolean;
|
|
28
28
|
/** Ability to display or hide the label of Control */
|
|
29
|
-
|
|
29
|
+
hideLabel: boolean;
|
|
30
30
|
/** Sets an attribute disable="disabled" */
|
|
31
|
-
|
|
31
|
+
isDisabled: boolean;
|
|
32
32
|
/** to set type of view if Control is Vertical or Horizontal */
|
|
33
|
-
|
|
33
|
+
viewType: ControlLayout;
|
|
34
34
|
/** Set List of Custom Attribute to Control */
|
|
35
|
-
|
|
35
|
+
attributeList: Attribute[];
|
|
36
36
|
/** Allow to Pass Object With Body of Function which represent CustomValidation and massage for error massage */
|
|
37
|
-
|
|
37
|
+
customValidation: CustomValidation[];
|
|
38
38
|
/** Path of propriety which we need to patch value */
|
|
39
|
-
|
|
39
|
+
patchPath: string;
|
|
40
40
|
/** Function which call to patch value */
|
|
41
|
-
|
|
41
|
+
patchFunction: Function;
|
|
42
42
|
/** Sets an attribute readonly */
|
|
43
|
-
|
|
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
|
-
|
|
8
|
+
value: Date;
|
|
9
9
|
/**To set StartDate to DatePicker */
|
|
10
|
-
|
|
10
|
+
startDate: Date;
|
|
11
11
|
/**To set EndDate to DatePicker */
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
EnableCopyToClipboard: boolean;
|
|
15
|
-
IsGMT: boolean;
|
|
12
|
+
endDate: Date;
|
|
13
|
+
isGMT: boolean;
|
|
16
14
|
/**To set First Day Of Week to DatePicker */
|
|
17
|
-
|
|
15
|
+
firstDayOfWeek: number;
|
|
18
16
|
/**To set Hour12Timer to DatePicker is 12 Hour or 24 Hour*/
|
|
19
|
-
|
|
17
|
+
hour12Timer: boolean;
|
|
20
18
|
/**To set PickerType to DatePicker is Calendar or Timer Or Both */
|
|
21
|
-
|
|
19
|
+
pickerType: PickerType;
|
|
22
20
|
/**To set StartView to DatePicker is Year or Month Or Multi-Year */
|
|
23
|
-
|
|
21
|
+
startView: StartView;
|
|
24
22
|
/**To set SelectMode to DatePicker is Single or Range */
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
selectMode: SelectMode;
|
|
24
|
+
forceDirection: ForceDirection;
|
|
27
25
|
/**Name of DatePicker control to compare value with it */
|
|
28
|
-
|
|
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
|
-
|
|
6
|
+
dataSource: DropdownListItem[];
|
|
7
7
|
/**To set SelectedItem to DropdownList */
|
|
8
|
-
|
|
8
|
+
selectedItems: any;
|
|
9
9
|
/** Disable Bootstrap DropdownList */
|
|
10
|
-
|
|
10
|
+
disableBootstrapSelect: boolean;
|
|
11
11
|
/** to set DropdownList in SingleMode Or MultibleMode ,,If false => DisableBootstrapSelect must be equal false */
|
|
12
|
-
|
|
12
|
+
singleSelection: boolean;
|
|
13
13
|
/** to set Number Of selected Element That will Show In The Box */
|
|
14
|
-
|
|
14
|
+
itemsShowLimit: number;
|
|
15
15
|
/** to Show Search Filter Box*/
|
|
16
|
-
|
|
16
|
+
allowSearchFilter: boolean;
|
|
17
17
|
/** to set Limit Of selected Element For DropdownList */
|
|
18
|
-
|
|
18
|
+
limitSelection?: number;
|
|
19
19
|
/** Set css classes to DropdownList */
|
|
20
|
-
|
|
20
|
+
classes: string;
|
|
21
21
|
/** Allow Show Checkbox */
|
|
22
|
-
|
|
22
|
+
showCheckbox?: boolean;
|
|
23
23
|
/** Allow Check ALL Items */
|
|
24
|
-
|
|
24
|
+
enableCheckAll?: boolean;
|
|
25
25
|
/** Set key for item in DropdownList */
|
|
26
|
-
|
|
26
|
+
itemTempletkey: string;
|
|
27
27
|
/** Set value for item in DropdownList */
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
itemTempletvalue: string;
|
|
29
|
+
forceDirection: ForceDirection;
|
|
30
|
+
notFoundText: string;
|
|
31
31
|
/** Represent Value of disabled items tooltip*/
|
|
32
|
-
|
|
32
|
+
disabledItemsTooltipValue: string;
|
|
33
33
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
export declare class FileDTO {
|
|
2
|
+
iD?: number;
|
|
3
|
+
iDEncyrpted?: string;
|
|
4
|
+
iD_GUID?: string;
|
|
5
|
+
mimeType?: string;
|
|
6
|
+
nameWithExtension?: string;
|
|
7
|
+
correlationId?: string;
|
|
8
|
+
modified?: Date;
|
|
9
|
+
modifiedBy?: string;
|
|
10
|
+
fontAwesomeClass?: string;
|
|
11
|
+
providerName?: string;
|
|
12
|
+
tags?: string;
|
|
13
|
+
fileName: string;
|
|
14
|
+
fileType: string;
|
|
15
|
+
fileBase64: string;
|
|
16
|
+
bytes?: any;
|
|
17
|
+
fileSizeInMB: number;
|
|
18
|
+
fileURL?: string;
|
|
19
19
|
}
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
import { FileType } from '../Enums/FileType';
|
|
2
2
|
import { ControlOptionsBase } from './ControlOptionsBase';
|
|
3
3
|
export declare class FileUploadOptions extends ControlOptionsBase {
|
|
4
|
-
|
|
4
|
+
value: any;
|
|
5
5
|
/** Ability to set FileInput required */
|
|
6
|
-
|
|
6
|
+
isMultipleFile: boolean;
|
|
7
7
|
/** Sets boolean Value to Show IsDropZone Or Not */
|
|
8
|
-
|
|
8
|
+
isDropZone: boolean;
|
|
9
9
|
/** Set File MaxSize In MB */
|
|
10
|
-
|
|
10
|
+
fileMaxSizeInMB: number;
|
|
11
11
|
/** Set Max Number Of Files */
|
|
12
|
-
|
|
12
|
+
maxNoOfFiles: number;
|
|
13
13
|
/** Set Min Number Of Files */
|
|
14
|
-
|
|
14
|
+
minNoOfFiles: number;
|
|
15
15
|
/** Set File MaxSizeForAllFilesInMB In MB */
|
|
16
|
-
|
|
16
|
+
maxSizeForAllFilesInMB: number;
|
|
17
17
|
/** Set List of Custom Attribute to FileInput */
|
|
18
|
-
|
|
18
|
+
fileUploadAcceptsTypes: FileType[];
|
|
19
|
+
/** Ability to set Upload File Async */
|
|
20
|
+
isUploadFileAsync: boolean;
|
|
19
21
|
}
|
|
@@ -3,11 +3,11 @@ export declare class FilterItem {
|
|
|
3
3
|
/** jQuery selector used to retrieve the parameter value*/
|
|
4
4
|
jQuerySelector: string;
|
|
5
5
|
/** FormControlName used to retrieve the value Of Control*/
|
|
6
|
-
|
|
6
|
+
formControlName: string;
|
|
7
7
|
/** The action parameter exact name (case sensitive)*/
|
|
8
|
-
|
|
8
|
+
actionParameterName: string;
|
|
9
9
|
/** Check If This Filter Is Form Control Or js Filter */
|
|
10
|
-
|
|
10
|
+
isFormControl: boolean;
|
|
11
11
|
/**Set Filter Type To Filter*/
|
|
12
|
-
|
|
12
|
+
filterType: FilterType;
|
|
13
13
|
}
|
|
@@ -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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
12
|
-
|
|
11
|
+
value: any;
|
|
12
|
+
maxLength?: number;
|
|
13
13
|
/**Set the MinLength of characters In HtmlEditor */
|
|
14
|
-
|
|
14
|
+
minLength?: number;
|
|
15
15
|
/** to set Direction of HtmlEditor if HtmlEditor is Arabic or English */
|
|
16
|
-
|
|
16
|
+
forceDirection: ForceDirection;
|
|
17
17
|
/** Set Height For */
|
|
18
|
-
|
|
18
|
+
height: number;
|
|
19
19
|
/** Set List of Custom Attribute to HtmlEditor */
|
|
20
|
-
|
|
20
|
+
attributeList: Attribute[];
|
|
21
21
|
/** Set List of Misc like codeview Or undo Or redo */
|
|
22
|
-
|
|
22
|
+
toolsList_Misc?: Misc[];
|
|
23
23
|
/** Set List of Style like bold Or italic Or underline Or clear */
|
|
24
|
-
|
|
24
|
+
toolsList_Style?: Style[];
|
|
25
25
|
/** Set List of FontSize like fontname Or fontsize Or color */
|
|
26
|
-
|
|
26
|
+
toolsList_FontSize?: FontSize[];
|
|
27
27
|
/** Set List of Para like style Or ul Or ol Or paragraph Or height */
|
|
28
|
-
|
|
28
|
+
toolsList_Para?: Para[];
|
|
29
29
|
/** Set List of Insert like table Or picture Or link Or video Or hr */
|
|
30
|
-
|
|
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
|
-
|
|
6
|
+
value: FileDTO;
|
|
7
7
|
/** Allow to Upload Multiple File */
|
|
8
|
-
|
|
8
|
+
isMultiple: boolean;
|
|
9
9
|
/** Allow to Use Drop Zone */
|
|
10
|
-
|
|
10
|
+
allowDropZone: boolean;
|
|
11
11
|
/** Sets an attribute AllowImageCropper="true" */
|
|
12
|
-
|
|
12
|
+
allowImageCropper: boolean;
|
|
13
13
|
/** Set Height of Image Cropper Box */
|
|
14
|
-
|
|
14
|
+
imageCropperHeight: number;
|
|
15
15
|
/** Set Width of Image Cropper Box */
|
|
16
|
-
|
|
16
|
+
imageCropperWidth: number;
|
|
17
17
|
/** Set File MaxSize In MB */
|
|
18
|
-
|
|
18
|
+
fileMaxSizeInMB: number;
|
|
19
19
|
/** Set List of Custom Attribute to FileInput */
|
|
20
|
-
|
|
20
|
+
fileUploadAcceptsTypes: ImageType[];
|
|
21
21
|
/** Set Default Image */
|
|
22
|
-
|
|
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
|
-
|
|
6
|
-
addressType: string;
|
|
5
|
+
value: MapAutocompleteDTO;
|
|
7
6
|
showAdvancedMap: boolean;
|
|
8
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
|
-
|
|
9
|
+
type: InputType;
|
|
10
10
|
/** Set Height For */
|
|
11
|
-
|
|
11
|
+
height: number;
|
|
12
12
|
/** Set List of Misc like codeview Or undo Or redo */
|
|
13
|
-
|
|
13
|
+
toolsList_Misc?: Misc[];
|
|
14
14
|
/** Set List of Style like bold Or italic Or underline Or clear */
|
|
15
|
-
|
|
15
|
+
toolsList_Style?: Style[];
|
|
16
16
|
/** Set List of FontSize like fontname Or fontsize Or color */
|
|
17
|
-
|
|
17
|
+
toolsList_FontSize?: FontSize[];
|
|
18
18
|
/** Set List of Para like style Or ul Or ol Or paragraph Or height */
|
|
19
|
-
|
|
19
|
+
toolsList_Para?: Para[];
|
|
20
20
|
/** Set List of Insert like table Or picture Or link Or video Or hr */
|
|
21
|
-
|
|
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
|
-
|
|
5
|
+
type: InputType;
|
|
6
6
|
/**Set Number Of Rows */
|
|
7
|
-
|
|
7
|
+
rows: number;
|
|
8
8
|
/**Set Number Of columns */
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
cols: number;
|
|
10
|
+
multiControlPlacementType: ControlLayout;
|
|
11
|
+
maxLengthWarningLimit: number;
|
|
12
12
|
}
|
package/lib/Shared/Models/{MultilingualTextBoxOptions.d.ts → MultiLingualTextBoxOptions.d.ts}
RENAMED
|
@@ -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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
|
|
11
|
+
autoComplete: string;
|
|
12
12
|
}
|