aurelia-syncfusion-ej2-bridge 0.1.0-beta.28 → 0.1.0-beta.30
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.
|
@@ -6,110 +6,122 @@ exports.ControlBindings = {
|
|
|
6
6
|
oneWay: ["enablePersistence", "enableRtl", "locale"]
|
|
7
7
|
},
|
|
8
8
|
accordion: {
|
|
9
|
-
oneWay: ["animation", "expandMode", "height", "items", "width"],
|
|
9
|
+
oneWay: ["animation", "dataSource", "enableHtmlSanitizer", "expandMode", "expandedIndices", "height", "itemTemplate", "items", "width"],
|
|
10
10
|
events: ["clicked", "created", "destroyed", "expanded", "expanding"]
|
|
11
11
|
},
|
|
12
12
|
autoComplete: {
|
|
13
|
-
oneWay: ["actionFailureTemplate", "allowCustom", "autofill", "cssClass", "dataSource", "enabled", "fields", "
|
|
13
|
+
oneWay: ["actionFailureTemplate", "allowCustom", "autofill", "cssClass", "dataSource", "enabled", "fields", "ignoreAccent", "ignoreCase", "itemTemplate", "minLength", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "showPopupButton", "sortOrder", "suggestionCount", "width", "zIndex"],
|
|
14
14
|
twoWay: ["value"],
|
|
15
15
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "customValueSpecifier", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
16
16
|
},
|
|
17
17
|
button: {
|
|
18
|
-
oneWay: ["disabled", "isPrimary", "content", "cssClass", "iconCss", "iconPosition", "isToggle", "enableRtl"],
|
|
18
|
+
oneWay: ["disabled", "isPrimary", "content", "cssClass", "enableHtmlSanitizer", "iconCss", "iconPosition", "isToggle", "enableRtl"],
|
|
19
19
|
events: ["created"]
|
|
20
20
|
},
|
|
21
21
|
checkbox: {
|
|
22
|
-
oneWay: ["cssClass", "disabled", "indeterminate", "label", "labelPosition", "name", "value"],
|
|
22
|
+
oneWay: ["cssClass", "disabled", "enableHtmlSanitizer", "htmlAttributes", "indeterminate", "label", "labelPosition", "name", "value"],
|
|
23
23
|
twoWay: ["checked"],
|
|
24
24
|
events: ["change", "created"]
|
|
25
25
|
},
|
|
26
26
|
comboBox: {
|
|
27
|
-
oneWay: ["actionFailureTemplate", "allowCustom", "allowFiltering", "autofill", "cssClass", "dataSource", "enabled", "fields",
|
|
27
|
+
oneWay: ["actionFailureTemplate", "allowCustom", "allowFiltering", "autofill", "cssClass", "dataSource", "enabled", "fields",
|
|
28
|
+
"filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "index", "itemTemplate", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "sortOrder", "text", "width", "zIndex"],
|
|
28
29
|
twoWay: ["value"],
|
|
29
30
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "customValueSpecifier", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
30
31
|
},
|
|
31
32
|
dashboardLayout: {
|
|
32
|
-
oneWay: ["allowDragging", "allowFloating", "allowResizing", "cellSpacing", "columns", "draggableHandle",
|
|
33
|
+
oneWay: ["allowDragging", "allowFloating", "allowResizing", "cellSpacing", "columns", "draggableHandle",
|
|
34
|
+
"enableHtmlSanitizer", "mediaQuery", "panels", "resizableHandles", "showGridLines"],
|
|
33
35
|
events: ["change", "created", "destroyed", "drag", "dragStart", "dragStop", "resize", "resizeStart", "resizeStop"]
|
|
34
36
|
},
|
|
35
37
|
datePicker: {
|
|
36
|
-
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "placeholder", "readonly", "showClearButton", "showTodayButton", "start", "strictMode", "weekNumber", "width", "zindex"],
|
|
38
|
+
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enableMask", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "openOnFocus", "placeholder", "readonly", "serverTimezoneOffset", "showClearButton", "showTodayButton", "start", "strictMode", "weekNumber", "weekRule", "width", "zindex"],
|
|
37
39
|
twoWay: ["value"],
|
|
38
40
|
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
39
41
|
},
|
|
40
42
|
dateRangePicker: {
|
|
41
|
-
oneWay: ["allowEdit", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "maxDays", "min", "minDays", "placeholder", "presets", "readonly", "separator", "showClearButton", "start", "strictMode", "weekNumber", "width", "zindex"],
|
|
43
|
+
oneWay: ["allowEdit", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "maxDays", "min", "minDays", "openOnFocus", "placeholder", "presets", "readonly", "separator", "serverTimezoneOffset", "showClearButton", "start", "strictMode", "weekNumber", "weekRule", "width", "zindex"],
|
|
42
44
|
twoWay: ["value", "startDate", "endDate"],
|
|
43
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell", "select"]
|
|
45
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell", "select"]
|
|
44
46
|
},
|
|
45
47
|
dateTimePicker: {
|
|
46
|
-
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "placeholder", "readonly", "scrollTo", "showClearButton", "showTodayButton", "start", "step", "strictMode", "timeFormat", "weekNumber", "width", "zindex"],
|
|
48
|
+
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enableMask", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "maskPlaceholder", "max", "min", "openOnFocus", "placeholder", "readonly", "scrollTo", "serverTimezoneOffset", "showClearButton", "showTodayButton", "start", "step", "strictMode", "timeFormat", "weekNumber", "weekRule", "width", "zindex"],
|
|
47
49
|
twoWay: ["value"],
|
|
48
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
50
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
49
51
|
},
|
|
50
52
|
dropDownList: {
|
|
51
|
-
oneWay: ["actionFailureTemplate", "allowFiltering", "cssClass", "dataSource", "enabled", "fields", "filterBarPlaceholder",
|
|
53
|
+
oneWay: ["actionFailureTemplate", "allowFiltering", "cssClass", "dataSource", "enabled", "fields", "filterBarPlaceholder",
|
|
54
|
+
"filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "index", "itemTemplate", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "sortOrder", "text", "valueTemplate", "width", "zindex"],
|
|
52
55
|
twoWay: ["value"],
|
|
53
56
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
54
57
|
},
|
|
55
58
|
dropDownTree: {
|
|
56
|
-
oneWay: ["actionFailureTemplate", "allowFiltering", "allowMultiSelection", "changeOnBlur", "cssClass", "delimiterChar", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "mode", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "readonly", "selectAllText", "showCheckBox", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "treeSettings", "unSelectAllText", "wrapText", "zIndex"],
|
|
59
|
+
oneWay: ["actionFailureTemplate", "allowFiltering", "allowMultiSelection", "changeOnBlur", "cssClass", "customTemplate", "delimiterChar", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "mode", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "readonly", "selectAllText", "showCheckBox", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "treeSettings", "unSelectAllText", "width", "wrapText", "zIndex"],
|
|
57
60
|
twoWay: ["text", "value"],
|
|
58
61
|
events: ["actionFailure", "beforeOpen", "blur", "change", "close", "created", "dataBound", "destroyed", "filtering", "focus", "keyPress", "open", "select"]
|
|
59
62
|
},
|
|
60
63
|
fileManager: {
|
|
61
|
-
oneWay: ["ajaxSettings", "allowDragAndDrop", "allowMultiSelection", "contextMenuSettings", "cssClass", "detailsViewSettings", "enableHtmlSanitizer", "height", "navigationPaneSettings", "path", "popupTarget", "rootAliasName", "searchSettings", "selectedItems", "showFileExtension", "showHiddenItems", "showThumbnail", "sortOrder", "toolbarSettings", "uploadSettings", "view", "width"],
|
|
64
|
+
oneWay: ["ajaxSettings", "allowDragAndDrop", "allowMultiSelection", "contextMenuSettings", "cssClass", "detailsViewSettings", "enableHtmlSanitizer", "height", "navigationPaneSettings", "path", "popupTarget", "rootAliasName", "searchSettings", "selectedItems", "showFileExtension", "showHiddenItems", "showThumbnail", "sortBy", "sortOrder", "toolbarSettings", "uploadSettings", "view", "width"],
|
|
62
65
|
twoWay: [],
|
|
63
66
|
events: ["beforeDownload", "beforeImageLoad", "beforePopupClose", "beforePopupOpen", "beforeSend", "created", "destroyed", "failure", "fileDragStart", "fileDragStop", "fileDragging", "fileDropped", "fileLoad", "fileOpen", "fileSelect", "fileSelection", "menuClick", "menuOpen", "popupClose", "popupOpen", "success", "toolbarClick", "toolbarCreate", "uploadListCreate"]
|
|
64
67
|
},
|
|
65
68
|
grid: {
|
|
66
|
-
oneWay: ["aggregates", "allowExcelExport", "disabled", "allowFiltering", "allowGrouping", "allowMultiSorting", "allowPaging", "allowPdfExport",
|
|
67
|
-
"allowReordering", "allowResizing", "allowRowDragAndDrop", "allowSelection", "allowSorting", "allowTextWrap", "childGrid", "clipboardModule",
|
|
68
|
-
"columnMenuItems", "columnMenuModule", "columnQueryMode", "columns", "contextMenuItems", "contextMenuModule", "dataSource",
|
|
69
|
-
"detailTemplate", "editModule", "editSettings", "enableAltRow", "enableAutoFill", "enableColumnVirtualization", "enableHover", "enableVirtualiziation",
|
|
70
|
-
"excelExportModule", "filterModule", "filterSettings", "frozenColumns", "frozenRows", "gridLines", "groupModule", "groupSettings", "height", "hierarchyPrintMode", "keyboardModule",
|
|
71
|
-
"pageSettings", "pagerModule", "pagerTemplate", "pdfExportModule", "printMode", "printModule", "query", "queryString", "reorderModule", "rowDragAndDropModule", "rowDropSettings", "rowHeight",
|
|
69
|
+
oneWay: ["aggregates", "allowExcelExport", "disabled", "allowFiltering", "allowGrouping", "allowKeyboard", "allowMultiSorting", "allowPaging", "allowPdfExport",
|
|
70
|
+
"allowReordering", "allowResizing", "allowRowDragAndDrop", "allowSelection", "allowSorting", "allowTextWrap", "childGrid", "clipMode", "clipboardModule", "columnChooserSettings",
|
|
71
|
+
"columnMenuItems", "columnMenuModule", "columnQueryMode", "columns", "contextMenuItems", "contextMenuModule", "cssClass", "currentAction", "currentViewData", "dataSource",
|
|
72
|
+
"detailTemplate", "editModule", "editSettings", "ej2StatePersistenceVersion", "enableAdaptiveUI", "enableAltRow", "enableAutoFill", "enableColumnVirtualization", "enableHeaderFocus", "enableHover", "enableImmutableMode", "enableInfinitScrolling", "enableStickyHeader", "enableVirtualMaskRow", "enableVirtualiziation",
|
|
73
|
+
"excelExportModule", "filterModule", "filterSettings", "frozenColumns", "frozenRows", "gridLines", "groupModule", "groupSettings", "height", "hierarchyPrintMode", "infiniteScrollModule", "infiniteScrollSettings", "keyboardModule", "loadingIndicator",
|
|
74
|
+
"pageSettings", "pagerModule", "pagerTemplate", "parentDetails", "pdfExportModule", "printMode", "printModule", "query", "queryString", "reorderModule", "resizeSettings", "rowDragAndDropModule", "rowDropSettings", "rowHeight", "rowRenderingMode",
|
|
72
75
|
"rowTemplate", "scrollModule", "searchModule", "searchSettings", "selectionModule", "selectionSettings", "showColumnChooser", "showColumnMenu", "showHider", "sortModule",
|
|
73
76
|
"sortSettings", "textWrapSettings", "toolbar", "toolbarModule", "toolbarTemplate", "width"],
|
|
74
77
|
fromView: [
|
|
75
78
|
"currentViewData"
|
|
76
79
|
],
|
|
77
80
|
twoWay: ["selectedRowIndex"],
|
|
78
|
-
events: ["
|
|
81
|
+
events: ["actionBegin", "actionComplete", "actionFailure", "batchAdd", "batchCancel", "batchDelete", "beforeAutoFill", "beforeBatchAdd", "beforeBatchDelete", "beforeBatchSave", "beforeCopy", "beforeDataBound", "beforeExcelExport", "beforeOpenAdaptiveDialog", "beforeOpenColumnChooser", "beforePaste", "beforePdfExport", "beforePrint", "beginEdit", "cellDeselected", "cellDeselecting", "cellEdit", "cellSave", "cellSaved", "cellSelected", "cellSelecting", "checkBoxChange", "columnDataStateChange", "columnDeselected", "columnDeselecting", "columnDrag", "columnDragStart", "columnDrop", "columnMenuClick", "columnMenuOpen", "columnSelected", "columnSelecting", "commandClick", "contextMenuClick", "contextMenuOpen", "created", "dataBound", "dataSourceChanged", "dataStateChange", "destroyed", "detailDataBound", "excelAggregateQueryCellInfo", "excelExportComplete", "excelHeaderQueryCellInfo", "excelQueryCellInfo", "exportDetailDataBound", "exporeGroupCaption", "headerCellInfo", "keyPressed", "lazyLoadGroupCollapse", "lazyLoadGroupExpand", "load", "pdfAggregateQueryCellInfo", "pdfExportComplete", "pdfHeaderQueryCellInfo", "pdfQueryCellInfo", "printComplete", "queryCellInfo", "recordClick", "recordDoubleClick", "resizeStart", "resizeStop", "resizing", "rowDataBound", "rowDeselected", "rowDeselecting", "rowDrag", "rowDragStart", "rowDragStartHelper", "rowDrop", "rowSelected", "rowSelecting", "toolbarClick"]
|
|
79
82
|
},
|
|
80
83
|
listView: {
|
|
81
|
-
oneWay: ["animation", "checkBoxPosition", "cssClass", "dataSource", "enable", "
|
|
84
|
+
oneWay: ["animation", "checkBoxPosition", "cssClass", "dataSource", "enable", "enableHtmlSanitizer", "enableVirtualization", "fields", "groupTemplate", "headerTemplate", "headerTitle", "height", "htmlAttributes", "query", "showCheckBox", "showHeader", "showIcon", "sortOrder", "template", "width"],
|
|
82
85
|
events: ["actionBegin", "actionComplete", "actionFailure", "select"]
|
|
83
86
|
},
|
|
84
87
|
maskedTextBox: {
|
|
85
88
|
oneWay: ["cssClass", "customCharacters", "enabled", "floatLabelType", "htmlAttributes", "mask", "placeholder", "promptChar", "showClearButton", "width"],
|
|
86
89
|
twoWay: ["value"],
|
|
87
|
-
events: ["blur", "change", "created", "destroyed", "focus"
|
|
90
|
+
events: ["blur", "change", "created", "destroyed", "focus"]
|
|
88
91
|
},
|
|
89
92
|
multiSelect: {
|
|
90
|
-
oneWay: ["actionFailureTemplate",
|
|
93
|
+
oneWay: ["actionFailureTemplate",
|
|
94
|
+
"addTagOnBlur", "allowCustomValue", "allowFiltering", "changeOnBlur", "closePopupOnSelect", "cssClass", "dataSource", "delimiterChar", "enableGroupCheckBox", "enableHtmlSanitizer", "enableSelectionOrder", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "hideSelectedItem", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "locale", "maximumSelectionLength", "mode", "noRecordsTemplate", "openOnClick", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "selectAllText", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "text", "unSelectAllText", "valueTemplate", "width", "zIndex"],
|
|
91
95
|
twoWay: ["value"],
|
|
92
|
-
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen",
|
|
96
|
+
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen",
|
|
97
|
+
"beforeSelectAll", "blur", "change", "chipSelection", "close", "created", "customValueSelection", "dataBound", "destroyed", "filtering", "focus", "open", "removed", "removing", "select", "selectedAll", "tagging"]
|
|
93
98
|
},
|
|
94
99
|
numericTextBox: {
|
|
95
|
-
oneWay: ["cssClass", "currency", "decimals", "enabled", "floatLabelType", "format", "htmlAttributes", "max", "min", "placeholder", "readonly", "showClearButton", "showSpinButton", "step", "
|
|
100
|
+
oneWay: ["cssClass", "currency", "decimals", "enabled", "floatLabelType", "format", "htmlAttributes", "max", "min", "placeholder", "readonly", "showClearButton", "showSpinButton", "step", "strictMode", "validateDecimalOnType", "width"],
|
|
96
101
|
twoWay: ["value"],
|
|
97
102
|
events: ["blur", "change", "created", "destroyed", "focus"]
|
|
98
103
|
},
|
|
99
104
|
pager: {
|
|
100
|
-
|
|
105
|
+
oneWay: ["cssClass", "customText", "enableExternalMessage", "enablePagerMessage", "enableQueryString", "externalMessage",
|
|
106
|
+
"pageCount", "pageSize", "pageSizes",
|
|
107
|
+
"template"],
|
|
108
|
+
twoWay: ["currentPage", "totalRecordsCount"],
|
|
101
109
|
events: ["click", "created", "dropDownChanged"]
|
|
102
110
|
},
|
|
103
111
|
progressButton: {
|
|
104
|
-
oneWay: ["animationSettings", "content", "cssClass", "disabled", "duration", "enableProgress", "iconCss", "iconPosition", "isPrimary", "isToggle", "spinSettings"],
|
|
112
|
+
oneWay: ["animationSettings", "content", "cssClass", "disabled", "duration", "enableHtmlSanitizer", "enableProgress", "iconCss", "iconPosition", "isPrimary", "isToggle", "spinSettings"],
|
|
105
113
|
events: ["begin", "created", "end", "fail", "progress"]
|
|
106
114
|
},
|
|
107
115
|
radio: {
|
|
108
|
-
oneWay: ["checked", "cssClass", "disabled", "label", "labelPosition", "name", "value"],
|
|
116
|
+
oneWay: ["checked", "cssClass", "disabled", "enableHtmlSanitizer", "htmlAttributes", "label", "labelPosition", "name", "value"],
|
|
109
117
|
events: ["change", "created"]
|
|
110
118
|
},
|
|
111
119
|
schedule: {
|
|
112
|
-
oneWay: ["agendaDaysCount", "allowDragAndDrop", "allowInline", "allowKeyboardInteraction", "allowMultiCellSelection", "allowMultiDrag", "allowMultiRowSelection", "allowResizing",
|
|
120
|
+
oneWay: ["agendaDaysCount", "allowDragAndDrop", "allowInline", "allowKeyboardInteraction", "allowMultiCellSelection", "allowMultiDrag", "allowMultiRowSelection", "allowResizing",
|
|
121
|
+
"allowSwiping", "calendarMode", "cellHeaderTemplate", "cellTemplate", "cssClass", "currentView", "dateFormat", "dateHeaderTemplate",
|
|
122
|
+
"dayHeaderTemplate",
|
|
123
|
+
"enableAdaptiveUI",
|
|
124
|
+
"enableAllDayScroll", "editorTemplate", "enableRecurrenceValidation", "endHour", "eventDragArea", "eventSettings", "firstDayOfWeek", "firstMonthOfYear", "group", "headerIndentTemplate", "headerRows", "height", "hideEmptyAgendaDays", "maxDate", "minDate", "monthHeaderTemplate", "monthsCount", "quickInfoOnSelectionEnd", "quickInfoTemplates", "readonly", "resourceHeaderTemplate", "resources", "rowAutoHeight", "selectedDate", "showHeaderBar", "showQuickInfo", "showTimeIndicator", "showWeekNumber", "showWeekend", "startHour", "timeFormat", "timeScale", "timezone", "timezoneDataSource", "views", "weekRule", "width", "workDays", "workHours"],
|
|
113
125
|
events: ["actionBegin", "actionComplete", "actionFailure", "cellClick", "cellDoubleClick", "created", "dataBinding", "dataBound", "destroyed", "drag", "dragStart", "dragStop", "eventClick", "eventRendered", "hover", "moreEventsClick", "navigating", "popupClose", "popupOpen", "renderCell", "resizeStart", "resizeStop", "resizing", "select"]
|
|
114
126
|
},
|
|
115
127
|
sidebar: {
|
|
@@ -117,36 +129,47 @@ exports.ControlBindings = {
|
|
|
117
129
|
events: ["change", "close", "created", "destroyed", "open"]
|
|
118
130
|
},
|
|
119
131
|
slider: {
|
|
120
|
-
oneWay: ["cssClass", "customValues", "enableAnimation", "enabled", "limits", "max", "min", "orientation", "readonly", "showButtons", "step", "ticks", "tooltip", "type"],
|
|
132
|
+
oneWay: ["colorRange", "cssClass", "customValues", "enableAnimation", "enableHtmlSanitizer", "enabled", "limits", "max", "min", "orientation", "readonly", "showButtons", "step", "ticks", "tooltip", "type", "width"],
|
|
121
133
|
twoWay: ["value"],
|
|
122
134
|
events: ["change", "changed", "created", "renderedTicks", "renderingTicks", "tooltipChange"]
|
|
123
135
|
},
|
|
124
136
|
splitter: {
|
|
125
|
-
oneWay: ["cssClass", "enableHtmlSanitizer",
|
|
137
|
+
oneWay: ["cssClass", "enableHtmlSanitizer",
|
|
138
|
+
"enableReversePanes", "enabled", "height", "orientation", "paneSettings", "separatorSize", "width"],
|
|
126
139
|
events: ["beforeCollapse", "beforeExpand", "beforeSanitizeHtml", "collapsed", "created", "expanded", "resizeStart", "resizeStop", "resizing"]
|
|
127
140
|
},
|
|
128
141
|
switch: {
|
|
129
|
-
oneWay: ["cssClass", "disabled",
|
|
142
|
+
oneWay: ["cssClass", "disabled", "name", "offLabel", "onLabel"],
|
|
130
143
|
twoWay: ["value", "checked"],
|
|
131
144
|
events: ["change", "created"]
|
|
132
145
|
},
|
|
133
146
|
textBox: {
|
|
134
|
-
oneWay: [
|
|
147
|
+
oneWay: [
|
|
148
|
+
"autocomplete",
|
|
149
|
+
"cssClass", "enabled", "floatLabelType", "htmlAttributes", "multiline", "placeholder", "readonly", "showClearButton", "type"
|
|
150
|
+
],
|
|
135
151
|
twoWay: ["value"],
|
|
136
152
|
events: ["blur", "change", "created", "destroyed", "focus", "input"]
|
|
137
153
|
},
|
|
138
154
|
timePicker: {
|
|
139
|
-
oneWay: ["allowEdit", "cssClass", "enabled", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "placeholder", "readonly", "scrollTo", "showClearButton", "step", "strictMode", "width", "zIndex"],
|
|
155
|
+
oneWay: ["allowEdit", "cssClass", "enableMask", "enabled", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "maskPlaceholder", "openOnFocus", "placeholder", "readonly", "scrollTo", "showClearButton", "step", "strictMode", "width", "zIndex"],
|
|
140
156
|
twoWay: ["value", "min", "max"],
|
|
141
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "itemRender", "open"]
|
|
157
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "itemRender", "open"]
|
|
142
158
|
},
|
|
143
159
|
treeView: {
|
|
144
|
-
oneWay: ["allowDragAndDrop", "allowEditing", "allowMultiSelection",
|
|
145
|
-
|
|
146
|
-
|
|
160
|
+
oneWay: ["allowDragAndDrop", "allowEditing", "allowMultiSelection",
|
|
161
|
+
"allowTextWrap", "animation", "autoCheck", "cssClass",
|
|
162
|
+
"disabled", "dragArea",
|
|
163
|
+
"enableHtmlSanitizer", "expandOn", "fields",
|
|
164
|
+
"fullRowNavigable", "fullRowSelect", "loadOnDemand", "nodeTemplate", "showCheckBox", "sortOrder"],
|
|
165
|
+
twoWay: ["selectedNodes", "checkedNodes",
|
|
166
|
+
"expandedNodes"],
|
|
167
|
+
events: ["actionFailure", "created", "dataBound", "dataSourceChanged", "destroyed", "drawNode", "keyPress", "nodeChecked", "nodeChecking", "nodeClicked", "nodeCollapsed", "nodeCollapsing", "nodeDragStart", "nodeDragStop", "nodeDragging", "nodeDropped", "nodeEdited", "nodeEditing", "nodeExpanded", "nodeExpanding", "nodeSelected", "nodeSelecting"]
|
|
147
168
|
},
|
|
148
169
|
uploader: {
|
|
149
|
-
oneWay: ["allowedExtensions", "asyncSettings", "autoUpload", "buttons", "cssClass", "directoryUpload", "dropArea",
|
|
150
|
-
|
|
170
|
+
oneWay: ["allowedExtensions", "asyncSettings", "autoUpload", "buttons", "cssClass", "directoryUpload", "dropArea",
|
|
171
|
+
"dropEffect", "enabled", "files", "htmlAttributes", "maxFileSize", "minFileSize", "multiple", "sequentialUpload", "showFileList", "template", "formData"],
|
|
172
|
+
events: ["actionComplete",
|
|
173
|
+
"beforeRemove", "beforeUpload", "canceling", "change", "chunkFailure", "chunkSuccess", "chunkUploading", "clearing", "created", "failure", "fileListRendering", "pausing", "progress", "removing", "rendering", "resuming", "selected", "success", "uploading"]
|
|
151
174
|
}
|
|
152
175
|
};
|
|
@@ -3,110 +3,122 @@ export const ControlBindings = {
|
|
|
3
3
|
oneWay: ["enablePersistence", "enableRtl", "locale"]
|
|
4
4
|
},
|
|
5
5
|
accordion: {
|
|
6
|
-
oneWay: ["animation", "expandMode", "height", "items", "width"],
|
|
6
|
+
oneWay: ["animation", "dataSource", "enableHtmlSanitizer", "expandMode", "expandedIndices", "height", "itemTemplate", "items", "width"],
|
|
7
7
|
events: ["clicked", "created", "destroyed", "expanded", "expanding"]
|
|
8
8
|
},
|
|
9
9
|
autoComplete: {
|
|
10
|
-
oneWay: ["actionFailureTemplate", "allowCustom", "autofill", "cssClass", "dataSource", "enabled", "fields", "
|
|
10
|
+
oneWay: ["actionFailureTemplate", "allowCustom", "autofill", "cssClass", "dataSource", "enabled", "fields", "ignoreAccent", "ignoreCase", "itemTemplate", "minLength", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "showPopupButton", "sortOrder", "suggestionCount", "width", "zIndex"],
|
|
11
11
|
twoWay: ["value"],
|
|
12
12
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "customValueSpecifier", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
13
13
|
},
|
|
14
14
|
button: {
|
|
15
|
-
oneWay: ["disabled", "isPrimary", "content", "cssClass", "iconCss", "iconPosition", "isToggle", "enableRtl"],
|
|
15
|
+
oneWay: ["disabled", "isPrimary", "content", "cssClass", "enableHtmlSanitizer", "iconCss", "iconPosition", "isToggle", "enableRtl"],
|
|
16
16
|
events: ["created"]
|
|
17
17
|
},
|
|
18
18
|
checkbox: {
|
|
19
|
-
oneWay: ["cssClass", "disabled", "indeterminate", "label", "labelPosition", "name", "value"],
|
|
19
|
+
oneWay: ["cssClass", "disabled", "enableHtmlSanitizer", "htmlAttributes", "indeterminate", "label", "labelPosition", "name", "value"],
|
|
20
20
|
twoWay: ["checked"],
|
|
21
21
|
events: ["change", "created"]
|
|
22
22
|
},
|
|
23
23
|
comboBox: {
|
|
24
|
-
oneWay: ["actionFailureTemplate", "allowCustom", "allowFiltering", "autofill", "cssClass", "dataSource", "enabled", "fields",
|
|
24
|
+
oneWay: ["actionFailureTemplate", "allowCustom", "allowFiltering", "autofill", "cssClass", "dataSource", "enabled", "fields",
|
|
25
|
+
"filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "index", "itemTemplate", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "sortOrder", "text", "width", "zIndex"],
|
|
25
26
|
twoWay: ["value"],
|
|
26
27
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "customValueSpecifier", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
27
28
|
},
|
|
28
29
|
dashboardLayout: {
|
|
29
|
-
oneWay: ["allowDragging", "allowFloating", "allowResizing", "cellSpacing", "columns", "draggableHandle",
|
|
30
|
+
oneWay: ["allowDragging", "allowFloating", "allowResizing", "cellSpacing", "columns", "draggableHandle",
|
|
31
|
+
"enableHtmlSanitizer", "mediaQuery", "panels", "resizableHandles", "showGridLines"],
|
|
30
32
|
events: ["change", "created", "destroyed", "drag", "dragStart", "dragStop", "resize", "resizeStart", "resizeStop"]
|
|
31
33
|
},
|
|
32
34
|
datePicker: {
|
|
33
|
-
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "placeholder", "readonly", "showClearButton", "showTodayButton", "start", "strictMode", "weekNumber", "width", "zindex"],
|
|
35
|
+
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enableMask", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "openOnFocus", "placeholder", "readonly", "serverTimezoneOffset", "showClearButton", "showTodayButton", "start", "strictMode", "weekNumber", "weekRule", "width", "zindex"],
|
|
34
36
|
twoWay: ["value"],
|
|
35
37
|
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
36
38
|
},
|
|
37
39
|
dateRangePicker: {
|
|
38
|
-
oneWay: ["allowEdit", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "maxDays", "min", "minDays", "placeholder", "presets", "readonly", "separator", "showClearButton", "start", "strictMode", "weekNumber", "width", "zindex"],
|
|
40
|
+
oneWay: ["allowEdit", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "maxDays", "min", "minDays", "openOnFocus", "placeholder", "presets", "readonly", "separator", "serverTimezoneOffset", "showClearButton", "start", "strictMode", "weekNumber", "weekRule", "width", "zindex"],
|
|
39
41
|
twoWay: ["value", "startDate", "endDate"],
|
|
40
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell", "select"]
|
|
42
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell", "select"]
|
|
41
43
|
},
|
|
42
44
|
dateTimePicker: {
|
|
43
|
-
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "max", "min", "placeholder", "readonly", "scrollTo", "showClearButton", "showTodayButton", "start", "step", "strictMode", "timeFormat", "weekNumber", "width", "zindex"],
|
|
45
|
+
oneWay: ["allowEdit", "calendarMode", "cssClass", "dayHeaderFormat", "depth", "enableMask", "enabled", "firstDayOfWeek", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "maskPlaceholder", "max", "min", "openOnFocus", "placeholder", "readonly", "scrollTo", "serverTimezoneOffset", "showClearButton", "showTodayButton", "start", "step", "strictMode", "timeFormat", "weekNumber", "weekRule", "width", "zindex"],
|
|
44
46
|
twoWay: ["value"],
|
|
45
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
47
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "navigated", "open", "renderDayCell"]
|
|
46
48
|
},
|
|
47
49
|
dropDownList: {
|
|
48
|
-
oneWay: ["actionFailureTemplate", "allowFiltering", "cssClass", "dataSource", "enabled", "fields", "filterBarPlaceholder",
|
|
50
|
+
oneWay: ["actionFailureTemplate", "allowFiltering", "cssClass", "dataSource", "enabled", "fields", "filterBarPlaceholder",
|
|
51
|
+
"filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "index", "itemTemplate", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "showClearButton", "sortOrder", "text", "valueTemplate", "width", "zindex"],
|
|
49
52
|
twoWay: ["value"],
|
|
50
53
|
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen", "blur", "change", "close", "created", "dataBound", "destroyed", "filtering", "focus", "open", "select"]
|
|
51
54
|
},
|
|
52
55
|
dropDownTree: {
|
|
53
|
-
oneWay: ["actionFailureTemplate", "allowFiltering", "allowMultiSelection", "changeOnBlur", "cssClass", "delimiterChar", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "mode", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "readonly", "selectAllText", "showCheckBox", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "treeSettings", "unSelectAllText", "wrapText", "zIndex"],
|
|
56
|
+
oneWay: ["actionFailureTemplate", "allowFiltering", "allowMultiSelection", "changeOnBlur", "cssClass", "customTemplate", "delimiterChar", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "headerTemplate", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "mode", "noRecordsTemplate", "placeholder", "popupHeight", "popupWidth", "readonly", "selectAllText", "showCheckBox", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "treeSettings", "unSelectAllText", "width", "wrapText", "zIndex"],
|
|
54
57
|
twoWay: ["text", "value"],
|
|
55
58
|
events: ["actionFailure", "beforeOpen", "blur", "change", "close", "created", "dataBound", "destroyed", "filtering", "focus", "keyPress", "open", "select"]
|
|
56
59
|
},
|
|
57
60
|
fileManager: {
|
|
58
|
-
oneWay: ["ajaxSettings", "allowDragAndDrop", "allowMultiSelection", "contextMenuSettings", "cssClass", "detailsViewSettings", "enableHtmlSanitizer", "height", "navigationPaneSettings", "path", "popupTarget", "rootAliasName", "searchSettings", "selectedItems", "showFileExtension", "showHiddenItems", "showThumbnail", "sortOrder", "toolbarSettings", "uploadSettings", "view", "width"],
|
|
61
|
+
oneWay: ["ajaxSettings", "allowDragAndDrop", "allowMultiSelection", "contextMenuSettings", "cssClass", "detailsViewSettings", "enableHtmlSanitizer", "height", "navigationPaneSettings", "path", "popupTarget", "rootAliasName", "searchSettings", "selectedItems", "showFileExtension", "showHiddenItems", "showThumbnail", "sortBy", "sortOrder", "toolbarSettings", "uploadSettings", "view", "width"],
|
|
59
62
|
twoWay: [],
|
|
60
63
|
events: ["beforeDownload", "beforeImageLoad", "beforePopupClose", "beforePopupOpen", "beforeSend", "created", "destroyed", "failure", "fileDragStart", "fileDragStop", "fileDragging", "fileDropped", "fileLoad", "fileOpen", "fileSelect", "fileSelection", "menuClick", "menuOpen", "popupClose", "popupOpen", "success", "toolbarClick", "toolbarCreate", "uploadListCreate"]
|
|
61
64
|
},
|
|
62
65
|
grid: {
|
|
63
|
-
oneWay: ["aggregates", "allowExcelExport", "disabled", "allowFiltering", "allowGrouping", "allowMultiSorting", "allowPaging", "allowPdfExport",
|
|
64
|
-
"allowReordering", "allowResizing", "allowRowDragAndDrop", "allowSelection", "allowSorting", "allowTextWrap", "childGrid", "clipboardModule",
|
|
65
|
-
"columnMenuItems", "columnMenuModule", "columnQueryMode", "columns", "contextMenuItems", "contextMenuModule", "dataSource",
|
|
66
|
-
"detailTemplate", "editModule", "editSettings", "enableAltRow", "enableAutoFill", "enableColumnVirtualization", "enableHover", "enableVirtualiziation",
|
|
67
|
-
"excelExportModule", "filterModule", "filterSettings", "frozenColumns", "frozenRows", "gridLines", "groupModule", "groupSettings", "height", "hierarchyPrintMode", "keyboardModule",
|
|
68
|
-
"pageSettings", "pagerModule", "pagerTemplate", "pdfExportModule", "printMode", "printModule", "query", "queryString", "reorderModule", "rowDragAndDropModule", "rowDropSettings", "rowHeight",
|
|
66
|
+
oneWay: ["aggregates", "allowExcelExport", "disabled", "allowFiltering", "allowGrouping", "allowKeyboard", "allowMultiSorting", "allowPaging", "allowPdfExport",
|
|
67
|
+
"allowReordering", "allowResizing", "allowRowDragAndDrop", "allowSelection", "allowSorting", "allowTextWrap", "childGrid", "clipMode", "clipboardModule", "columnChooserSettings",
|
|
68
|
+
"columnMenuItems", "columnMenuModule", "columnQueryMode", "columns", "contextMenuItems", "contextMenuModule", "cssClass", "currentAction", "currentViewData", "dataSource",
|
|
69
|
+
"detailTemplate", "editModule", "editSettings", "ej2StatePersistenceVersion", "enableAdaptiveUI", "enableAltRow", "enableAutoFill", "enableColumnVirtualization", "enableHeaderFocus", "enableHover", "enableImmutableMode", "enableInfinitScrolling", "enableStickyHeader", "enableVirtualMaskRow", "enableVirtualiziation",
|
|
70
|
+
"excelExportModule", "filterModule", "filterSettings", "frozenColumns", "frozenRows", "gridLines", "groupModule", "groupSettings", "height", "hierarchyPrintMode", "infiniteScrollModule", "infiniteScrollSettings", "keyboardModule", "loadingIndicator",
|
|
71
|
+
"pageSettings", "pagerModule", "pagerTemplate", "parentDetails", "pdfExportModule", "printMode", "printModule", "query", "queryString", "reorderModule", "resizeSettings", "rowDragAndDropModule", "rowDropSettings", "rowHeight", "rowRenderingMode",
|
|
69
72
|
"rowTemplate", "scrollModule", "searchModule", "searchSettings", "selectionModule", "selectionSettings", "showColumnChooser", "showColumnMenu", "showHider", "sortModule",
|
|
70
73
|
"sortSettings", "textWrapSettings", "toolbar", "toolbarModule", "toolbarTemplate", "width"],
|
|
71
74
|
fromView: [
|
|
72
75
|
"currentViewData"
|
|
73
76
|
],
|
|
74
77
|
twoWay: ["selectedRowIndex"],
|
|
75
|
-
events: ["
|
|
78
|
+
events: ["actionBegin", "actionComplete", "actionFailure", "batchAdd", "batchCancel", "batchDelete", "beforeAutoFill", "beforeBatchAdd", "beforeBatchDelete", "beforeBatchSave", "beforeCopy", "beforeDataBound", "beforeExcelExport", "beforeOpenAdaptiveDialog", "beforeOpenColumnChooser", "beforePaste", "beforePdfExport", "beforePrint", "beginEdit", "cellDeselected", "cellDeselecting", "cellEdit", "cellSave", "cellSaved", "cellSelected", "cellSelecting", "checkBoxChange", "columnDataStateChange", "columnDeselected", "columnDeselecting", "columnDrag", "columnDragStart", "columnDrop", "columnMenuClick", "columnMenuOpen", "columnSelected", "columnSelecting", "commandClick", "contextMenuClick", "contextMenuOpen", "created", "dataBound", "dataSourceChanged", "dataStateChange", "destroyed", "detailDataBound", "excelAggregateQueryCellInfo", "excelExportComplete", "excelHeaderQueryCellInfo", "excelQueryCellInfo", "exportDetailDataBound", "exporeGroupCaption", "headerCellInfo", "keyPressed", "lazyLoadGroupCollapse", "lazyLoadGroupExpand", "load", "pdfAggregateQueryCellInfo", "pdfExportComplete", "pdfHeaderQueryCellInfo", "pdfQueryCellInfo", "printComplete", "queryCellInfo", "recordClick", "recordDoubleClick", "resizeStart", "resizeStop", "resizing", "rowDataBound", "rowDeselected", "rowDeselecting", "rowDrag", "rowDragStart", "rowDragStartHelper", "rowDrop", "rowSelected", "rowSelecting", "toolbarClick"]
|
|
76
79
|
},
|
|
77
80
|
listView: {
|
|
78
|
-
oneWay: ["animation", "checkBoxPosition", "cssClass", "dataSource", "enable", "
|
|
81
|
+
oneWay: ["animation", "checkBoxPosition", "cssClass", "dataSource", "enable", "enableHtmlSanitizer", "enableVirtualization", "fields", "groupTemplate", "headerTemplate", "headerTitle", "height", "htmlAttributes", "query", "showCheckBox", "showHeader", "showIcon", "sortOrder", "template", "width"],
|
|
79
82
|
events: ["actionBegin", "actionComplete", "actionFailure", "select"]
|
|
80
83
|
},
|
|
81
84
|
maskedTextBox: {
|
|
82
85
|
oneWay: ["cssClass", "customCharacters", "enabled", "floatLabelType", "htmlAttributes", "mask", "placeholder", "promptChar", "showClearButton", "width"],
|
|
83
86
|
twoWay: ["value"],
|
|
84
|
-
events: ["blur", "change", "created", "destroyed", "focus"
|
|
87
|
+
events: ["blur", "change", "created", "destroyed", "focus"]
|
|
85
88
|
},
|
|
86
89
|
multiSelect: {
|
|
87
|
-
oneWay: ["actionFailureTemplate",
|
|
90
|
+
oneWay: ["actionFailureTemplate",
|
|
91
|
+
"addTagOnBlur", "allowCustomValue", "allowFiltering", "changeOnBlur", "closePopupOnSelect", "cssClass", "dataSource", "delimiterChar", "enableGroupCheckBox", "enableHtmlSanitizer", "enableSelectionOrder", "enabled", "fields", "filterBarPlaceholder", "filterType", "floatLabelType", "footerTemplate", "groupTemplate", "headerTemplate", "hideSelectedItem", "htmlAttributes", "ignoreAccent", "ignoreCase", "itemTemplate", "locale", "maximumSelectionLength", "mode", "noRecordsTemplate", "openOnClick", "placeholder", "popupHeight", "popupWidth", "query", "readonly", "selectAllText", "showClearButton", "showDropDownIcon", "showSelectAll", "sortOrder", "text", "unSelectAllText", "valueTemplate", "width", "zIndex"],
|
|
88
92
|
twoWay: ["value"],
|
|
89
|
-
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen",
|
|
93
|
+
events: ["actionBegin", "actionComplete", "actionFailure", "beforeOpen",
|
|
94
|
+
"beforeSelectAll", "blur", "change", "chipSelection", "close", "created", "customValueSelection", "dataBound", "destroyed", "filtering", "focus", "open", "removed", "removing", "select", "selectedAll", "tagging"]
|
|
90
95
|
},
|
|
91
96
|
numericTextBox: {
|
|
92
|
-
oneWay: ["cssClass", "currency", "decimals", "enabled", "floatLabelType", "format", "htmlAttributes", "max", "min", "placeholder", "readonly", "showClearButton", "showSpinButton", "step", "
|
|
97
|
+
oneWay: ["cssClass", "currency", "decimals", "enabled", "floatLabelType", "format", "htmlAttributes", "max", "min", "placeholder", "readonly", "showClearButton", "showSpinButton", "step", "strictMode", "validateDecimalOnType", "width"],
|
|
93
98
|
twoWay: ["value"],
|
|
94
99
|
events: ["blur", "change", "created", "destroyed", "focus"]
|
|
95
100
|
},
|
|
96
101
|
pager: {
|
|
97
|
-
|
|
102
|
+
oneWay: ["cssClass", "customText", "enableExternalMessage", "enablePagerMessage", "enableQueryString", "externalMessage",
|
|
103
|
+
"pageCount", "pageSize", "pageSizes",
|
|
104
|
+
"template"],
|
|
105
|
+
twoWay: ["currentPage", "totalRecordsCount"],
|
|
98
106
|
events: ["click", "created", "dropDownChanged"]
|
|
99
107
|
},
|
|
100
108
|
progressButton: {
|
|
101
|
-
oneWay: ["animationSettings", "content", "cssClass", "disabled", "duration", "enableProgress", "iconCss", "iconPosition", "isPrimary", "isToggle", "spinSettings"],
|
|
109
|
+
oneWay: ["animationSettings", "content", "cssClass", "disabled", "duration", "enableHtmlSanitizer", "enableProgress", "iconCss", "iconPosition", "isPrimary", "isToggle", "spinSettings"],
|
|
102
110
|
events: ["begin", "created", "end", "fail", "progress"]
|
|
103
111
|
},
|
|
104
112
|
radio: {
|
|
105
|
-
oneWay: ["checked", "cssClass", "disabled", "label", "labelPosition", "name", "value"],
|
|
113
|
+
oneWay: ["checked", "cssClass", "disabled", "enableHtmlSanitizer", "htmlAttributes", "label", "labelPosition", "name", "value"],
|
|
106
114
|
events: ["change", "created"]
|
|
107
115
|
},
|
|
108
116
|
schedule: {
|
|
109
|
-
oneWay: ["agendaDaysCount", "allowDragAndDrop", "allowInline", "allowKeyboardInteraction", "allowMultiCellSelection", "allowMultiDrag", "allowMultiRowSelection", "allowResizing",
|
|
117
|
+
oneWay: ["agendaDaysCount", "allowDragAndDrop", "allowInline", "allowKeyboardInteraction", "allowMultiCellSelection", "allowMultiDrag", "allowMultiRowSelection", "allowResizing",
|
|
118
|
+
"allowSwiping", "calendarMode", "cellHeaderTemplate", "cellTemplate", "cssClass", "currentView", "dateFormat", "dateHeaderTemplate",
|
|
119
|
+
"dayHeaderTemplate",
|
|
120
|
+
"enableAdaptiveUI",
|
|
121
|
+
"enableAllDayScroll", "editorTemplate", "enableRecurrenceValidation", "endHour", "eventDragArea", "eventSettings", "firstDayOfWeek", "firstMonthOfYear", "group", "headerIndentTemplate", "headerRows", "height", "hideEmptyAgendaDays", "maxDate", "minDate", "monthHeaderTemplate", "monthsCount", "quickInfoOnSelectionEnd", "quickInfoTemplates", "readonly", "resourceHeaderTemplate", "resources", "rowAutoHeight", "selectedDate", "showHeaderBar", "showQuickInfo", "showTimeIndicator", "showWeekNumber", "showWeekend", "startHour", "timeFormat", "timeScale", "timezone", "timezoneDataSource", "views", "weekRule", "width", "workDays", "workHours"],
|
|
110
122
|
events: ["actionBegin", "actionComplete", "actionFailure", "cellClick", "cellDoubleClick", "created", "dataBinding", "dataBound", "destroyed", "drag", "dragStart", "dragStop", "eventClick", "eventRendered", "hover", "moreEventsClick", "navigating", "popupClose", "popupOpen", "renderCell", "resizeStart", "resizeStop", "resizing", "select"]
|
|
111
123
|
},
|
|
112
124
|
sidebar: {
|
|
@@ -114,36 +126,47 @@ export const ControlBindings = {
|
|
|
114
126
|
events: ["change", "close", "created", "destroyed", "open"]
|
|
115
127
|
},
|
|
116
128
|
slider: {
|
|
117
|
-
oneWay: ["cssClass", "customValues", "enableAnimation", "enabled", "limits", "max", "min", "orientation", "readonly", "showButtons", "step", "ticks", "tooltip", "type"],
|
|
129
|
+
oneWay: ["colorRange", "cssClass", "customValues", "enableAnimation", "enableHtmlSanitizer", "enabled", "limits", "max", "min", "orientation", "readonly", "showButtons", "step", "ticks", "tooltip", "type", "width"],
|
|
118
130
|
twoWay: ["value"],
|
|
119
131
|
events: ["change", "changed", "created", "renderedTicks", "renderingTicks", "tooltipChange"]
|
|
120
132
|
},
|
|
121
133
|
splitter: {
|
|
122
|
-
oneWay: ["cssClass", "enableHtmlSanitizer",
|
|
134
|
+
oneWay: ["cssClass", "enableHtmlSanitizer",
|
|
135
|
+
"enableReversePanes", "enabled", "height", "orientation", "paneSettings", "separatorSize", "width"],
|
|
123
136
|
events: ["beforeCollapse", "beforeExpand", "beforeSanitizeHtml", "collapsed", "created", "expanded", "resizeStart", "resizeStop", "resizing"]
|
|
124
137
|
},
|
|
125
138
|
switch: {
|
|
126
|
-
oneWay: ["cssClass", "disabled",
|
|
139
|
+
oneWay: ["cssClass", "disabled", "name", "offLabel", "onLabel"],
|
|
127
140
|
twoWay: ["value", "checked"],
|
|
128
141
|
events: ["change", "created"]
|
|
129
142
|
},
|
|
130
143
|
textBox: {
|
|
131
|
-
oneWay: [
|
|
144
|
+
oneWay: [
|
|
145
|
+
"autocomplete",
|
|
146
|
+
"cssClass", "enabled", "floatLabelType", "htmlAttributes", "multiline", "placeholder", "readonly", "showClearButton", "type"
|
|
147
|
+
],
|
|
132
148
|
twoWay: ["value"],
|
|
133
149
|
events: ["blur", "change", "created", "destroyed", "focus", "input"]
|
|
134
150
|
},
|
|
135
151
|
timePicker: {
|
|
136
|
-
oneWay: ["allowEdit", "cssClass", "enabled", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "placeholder", "readonly", "scrollTo", "showClearButton", "step", "strictMode", "width", "zIndex"],
|
|
152
|
+
oneWay: ["allowEdit", "cssClass", "enableMask", "enabled", "floatLabelType", "format", "htmlAttributes", "keyConfigs", "maskPlaceholder", "openOnFocus", "placeholder", "readonly", "scrollTo", "showClearButton", "step", "strictMode", "width", "zIndex"],
|
|
137
153
|
twoWay: ["value", "min", "max"],
|
|
138
|
-
events: ["blur", "change", "close", "created", "destroyed", "focus", "itemRender", "open"]
|
|
154
|
+
events: ["blur", "change", "cleared", "close", "created", "destroyed", "focus", "itemRender", "open"]
|
|
139
155
|
},
|
|
140
156
|
treeView: {
|
|
141
|
-
oneWay: ["allowDragAndDrop", "allowEditing", "allowMultiSelection",
|
|
142
|
-
|
|
143
|
-
|
|
157
|
+
oneWay: ["allowDragAndDrop", "allowEditing", "allowMultiSelection",
|
|
158
|
+
"allowTextWrap", "animation", "autoCheck", "cssClass",
|
|
159
|
+
"disabled", "dragArea",
|
|
160
|
+
"enableHtmlSanitizer", "expandOn", "fields",
|
|
161
|
+
"fullRowNavigable", "fullRowSelect", "loadOnDemand", "nodeTemplate", "showCheckBox", "sortOrder"],
|
|
162
|
+
twoWay: ["selectedNodes", "checkedNodes",
|
|
163
|
+
"expandedNodes"],
|
|
164
|
+
events: ["actionFailure", "created", "dataBound", "dataSourceChanged", "destroyed", "drawNode", "keyPress", "nodeChecked", "nodeChecking", "nodeClicked", "nodeCollapsed", "nodeCollapsing", "nodeDragStart", "nodeDragStop", "nodeDragging", "nodeDropped", "nodeEdited", "nodeEditing", "nodeExpanded", "nodeExpanding", "nodeSelected", "nodeSelecting"]
|
|
144
165
|
},
|
|
145
166
|
uploader: {
|
|
146
|
-
oneWay: ["allowedExtensions", "asyncSettings", "autoUpload", "buttons", "cssClass", "directoryUpload", "dropArea",
|
|
147
|
-
|
|
167
|
+
oneWay: ["allowedExtensions", "asyncSettings", "autoUpload", "buttons", "cssClass", "directoryUpload", "dropArea",
|
|
168
|
+
"dropEffect", "enabled", "files", "htmlAttributes", "maxFileSize", "minFileSize", "multiple", "sequentialUpload", "showFileList", "template", "formData"],
|
|
169
|
+
events: ["actionComplete",
|
|
170
|
+
"beforeRemove", "beforeUpload", "canceling", "change", "chunkFailure", "chunkSuccess", "chunkUploading", "clearing", "created", "failure", "fileListRendering", "pausing", "progress", "removing", "rendering", "resuming", "selected", "success", "uploading"]
|
|
148
171
|
}
|
|
149
172
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aurelia-syncfusion-ej2-bridge",
|
|
3
3
|
"description": "An Aurelia plugin wrapper for syncfusion EJ2 controls",
|
|
4
|
-
"version": "0.1.0-beta.
|
|
4
|
+
"version": "0.1.0-beta.30",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aurelia",
|
|
7
7
|
"syncfusion"
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@syncfusion/ej2": "^20.
|
|
15
|
+
"@syncfusion/ej2": "^20.4.51"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"start": "au run",
|
|
19
19
|
"build": "au build-plugin"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@syncfusion/ej2": "^20.
|
|
22
|
+
"@syncfusion/ej2": "^20.4.51",
|
|
23
23
|
"@types/jest": "^24.0.9",
|
|
24
24
|
"@types/node": "^10.11.6",
|
|
25
25
|
"aurelia-animator-css": "^1.0.4",
|
|
@@ -100,4 +100,4 @@
|
|
|
100
100
|
"html"
|
|
101
101
|
]
|
|
102
102
|
}
|
|
103
|
-
}
|
|
103
|
+
}
|