diff --git a/dist/amd/aurelia-syncfusion-bridge.d.ts b/dist/amd/aurelia-syncfusion-bridge.d.ts
index 3b9df1e8d..b299e19fe 100644
--- a/dist/amd/aurelia-syncfusion-bridge.d.ts
+++ b/dist/amd/aurelia-syncfusion-bridge.d.ts
@@ -81,10 +81,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -193,6 +194,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -461,10 +463,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -473,6 +475,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/amd/chart/series.js b/dist/amd/chart/series.js
index 019c7ca8b..253c91ba3 100644
--- a/dist/amd/chart/series.js
+++ b/dist/amd/chart/series.js
@@ -14,7 +14,7 @@ define(['exports', '../common/constants', '../common/decorators', '../common/com
var _dec, _dec2, _dec3, _class;
- var Series = exports.Series = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'series'), _dec3 = (0, _decorators.generateBindables)('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
+ var Series = exports.Series = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'series'), _dec3 = (0, _decorators.generateBindables)('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
_classCallCheck(this, Series);
}) || _class) || _class) || _class);
});
\ No newline at end of file
diff --git a/dist/amd/common/widget-base.js b/dist/amd/common/widget-base.js
index 30cd190d9..eb0f72eda 100644
--- a/dist/amd/common/widget-base.js
+++ b/dist/amd/common/widget-base.js
@@ -71,6 +71,9 @@ define(['exports', './events', '../common/util', '../common/decorators'], functi
WidgetBase.prototype.bind = function bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
};
WidgetBase.prototype.createTwoWays = function createTwoWays() {
diff --git a/dist/amd/config-builder.js b/dist/amd/config-builder.js
index 5ce17abed..291025480 100644
--- a/dist/amd/config-builder.js
+++ b/dist/amd/config-builder.js
@@ -20,7 +20,7 @@ define(['exports'], function (exports) {
}
EjConfigBuilder.prototype.useAll = function useAll() {
- this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejTemplate();
+ this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejSpellCheck().ejTemplate();
return this;
};
@@ -406,6 +406,11 @@ define(['exports'], function (exports) {
return this;
};
+ EjConfigBuilder.prototype.ejSpellCheck = function ejSpellCheck() {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ };
+
EjConfigBuilder.prototype.ejTemplate = function ejTemplate() {
this.resources.push('./common/template');
return this;
diff --git a/dist/amd/currencytextbox/currencytextbox.js b/dist/amd/currencytextbox/currencytextbox.js
index a4ebaa670..21ace5f67 100644
--- a/dist/amd/currencytextbox/currencytextbox.js
+++ b/dist/amd/currencytextbox/currencytextbox.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'currency-textbox'), _dec2 = (0, _decorators.generateBindables)('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'currency-textbox'), _dec2 = (0, _decorators.generateBindables)('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejCurrencyTextbox, _WidgetBase);
function ejCurrencyTextbox(element) {
diff --git a/dist/amd/datepicker/datepicker.js b/dist/amd/datepicker/datepicker.js
index 0602f2db0..1f2c0570b 100644
--- a/dist/amd/datepicker/datepicker.js
+++ b/dist/amd/datepicker/datepicker.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejDatePicker = exports.ejDatePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-picker'), _dec2 = (0, _decorators.generateBindables)('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejDatePicker = exports.ejDatePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-picker'), _dec2 = (0, _decorators.generateBindables)('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDatePicker, _WidgetBase);
function ejDatePicker(element) {
diff --git a/dist/amd/daterangepicker/daterangepicker.js b/dist/amd/daterangepicker/daterangepicker.js
index 7e6726537..4544f9acd 100644
--- a/dist/amd/daterangepicker/daterangepicker.js
+++ b/dist/amd/daterangepicker/daterangepicker.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejDateRangePicker = exports.ejDateRangePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-range-picker'), _dec2 = (0, _decorators.generateBindables)('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejDateRangePicker = exports.ejDateRangePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-range-picker'), _dec2 = (0, _decorators.generateBindables)('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDateRangePicker, _WidgetBase);
function ejDateRangePicker(element) {
diff --git a/dist/amd/diagram/diagram.js b/dist/amd/diagram/diagram.js
index 1cabfe6be..1a5c45ca9 100644
--- a/dist/amd/diagram/diagram.js
+++ b/dist/amd/diagram/diagram.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _class;
- var ejDiagram = exports.ejDiagram = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'diagram'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ var ejDiagram = exports.ejDiagram = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'diagram'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejDiagram, _WidgetBase);
function ejDiagram(element) {
diff --git a/dist/amd/fileexplorer/fileexplorer.js b/dist/amd/fileexplorer/fileexplorer.js
index 24b7cc289..cf23fbd7f 100644
--- a/dist/amd/fileexplorer/fileexplorer.js
+++ b/dist/amd/fileexplorer/fileexplorer.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _class;
- var ejFileExplorer = exports.ejFileExplorer = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'file-explorer'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ var ejFileExplorer = exports.ejFileExplorer = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'file-explorer'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejFileExplorer, _WidgetBase);
function ejFileExplorer(element) {
diff --git a/dist/amd/gantt/gantt.js b/dist/amd/gantt/gantt.js
index 3f736aae5..83ad62de0 100644
--- a/dist/amd/gantt/gantt.js
+++ b/dist/amd/gantt/gantt.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _class;
- var ejGantt = exports.ejGantt = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'gantt'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ var ejGantt = exports.ejGantt = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'gantt'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejGantt, _WidgetBase);
function ejGantt(element) {
diff --git a/dist/amd/numerictextbox/numerictextbox.js b/dist/amd/numerictextbox/numerictextbox.js
index 19eb836b4..20db729d5 100644
--- a/dist/amd/numerictextbox/numerictextbox.js
+++ b/dist/amd/numerictextbox/numerictextbox.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejNumericTextbox = exports.ejNumericTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'numeric-textbox'), _dec2 = (0, _decorators.generateBindables)('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejNumericTextbox = exports.ejNumericTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'numeric-textbox'), _dec2 = (0, _decorators.generateBindables)('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejNumericTextbox, _WidgetBase);
function ejNumericTextbox(element) {
diff --git a/dist/amd/pager/pager.js b/dist/amd/pager/pager.js
index 7fae27b50..7e5d89372 100644
--- a/dist/amd/pager/pager.js
+++ b/dist/amd/pager/pager.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _class;
- var ejPager = exports.ejPager = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'pager'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ var ejPager = exports.ejPager = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'pager'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejPager, _WidgetBase);
function ejPager(element) {
diff --git a/dist/amd/percentagetextbox/percentagetextbox.js b/dist/amd/percentagetextbox/percentagetextbox.js
index 68e0960eb..f2fbe18d1 100644
--- a/dist/amd/percentagetextbox/percentagetextbox.js
+++ b/dist/amd/percentagetextbox/percentagetextbox.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'percentage-textbox'), _dec2 = (0, _decorators.generateBindables)('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'percentage-textbox'), _dec2 = (0, _decorators.generateBindables)('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejPercentageTextbox, _WidgetBase);
function ejPercentageTextbox(element) {
diff --git a/dist/amd/radialslider/radialslider.js b/dist/amd/radialslider/radialslider.js
index 1ce0be9de..e4d4a4405 100644
--- a/dist/amd/radialslider/radialslider.js
+++ b/dist/amd/radialslider/radialslider.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _class;
- var ejRadialSlider = exports.ejRadialSlider = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'radial-slider'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ var ejRadialSlider = exports.ejRadialSlider = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'radial-slider'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejRadialSlider, _WidgetBase);
function ejRadialSlider(element) {
diff --git a/dist/amd/spellcheck/spellcheck.js b/dist/amd/spellcheck/spellcheck.js
new file mode 100644
index 000000000..808d70893
--- /dev/null
+++ b/dist/amd/spellcheck/spellcheck.js
@@ -0,0 +1,55 @@
+define(['exports', '../common/widget-base', '../common/constants', '../common/decorators', '../common/common', 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min'], function (exports, _widgetBase, _constants, _decorators, _common) {
+ 'use strict';
+
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.ejSpellCheck = undefined;
+
+ function _classCallCheck(instance, Constructor) {
+ if (!(instance instanceof Constructor)) {
+ throw new TypeError("Cannot call a class as a function");
+ }
+ }
+
+ function _possibleConstructorReturn(self, call) {
+ if (!self) {
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
+ }
+
+ return call && (typeof call === "object" || typeof call === "function") ? call : self;
+ }
+
+ function _inherits(subClass, superClass) {
+ if (typeof superClass !== "function" && superClass !== null) {
+ throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
+ }
+
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
+ constructor: {
+ value: subClass,
+ enumerable: false,
+ writable: true,
+ configurable: true
+ }
+ });
+ if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
+ }
+
+ var _dec, _dec2, _dec3, _dec4, _class;
+
+ var ejSpellCheck = exports.ejSpellCheck = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'spell-check'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _inherits(ejSpellCheck, _WidgetBase);
+
+ function ejSpellCheck(element) {
+ _classCallCheck(this, ejSpellCheck);
+
+ var _this = _possibleConstructorReturn(this, _WidgetBase.call(this));
+
+ _this.element = element;
+ return _this;
+ }
+
+ return ejSpellCheck;
+ }(_widgetBase.WidgetBase)) || _class) || _class) || _class) || _class);
+});
\ No newline at end of file
diff --git a/dist/amd/splitbutton/splitbutton.js b/dist/amd/splitbutton/splitbutton.js
index 2ed1ce267..5a44a9f27 100644
--- a/dist/amd/splitbutton/splitbutton.js
+++ b/dist/amd/splitbutton/splitbutton.js
@@ -38,7 +38,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _class;
- var ejSplitButton = exports.ejSplitButton = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'split-button'), _dec2 = (0, _decorators.generateBindables)('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ var ejSplitButton = exports.ejSplitButton = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'split-button'), _dec2 = (0, _decorators.generateBindables)('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejSplitButton, _WidgetBase);
function ejSplitButton(element) {
diff --git a/dist/amd/spreadsheet/sheet.js b/dist/amd/spreadsheet/sheet.js
index a5d0994f7..597737648 100644
--- a/dist/amd/spreadsheet/sheet.js
+++ b/dist/amd/spreadsheet/sheet.js
@@ -14,7 +14,7 @@ define(['exports', '../common/constants', '../common/decorators', '../common/com
var _dec, _dec2, _dec3, _class;
- var Sheet = exports.Sheet = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'sheet'), _dec3 = (0, _decorators.generateBindables)('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
+ var Sheet = exports.Sheet = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'sheet'), _dec3 = (0, _decorators.generateBindables)('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
_classCallCheck(this, Sheet);
}) || _class) || _class) || _class);
});
\ No newline at end of file
diff --git a/dist/amd/treegrid/treegrid.js b/dist/amd/treegrid/treegrid.js
index a611b30b9..15f196d56 100644
--- a/dist/amd/treegrid/treegrid.js
+++ b/dist/amd/treegrid/treegrid.js
@@ -81,7 +81,7 @@ define(['exports', '../common/widget-base', '../common/constants', '../common/de
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _desc, _value, _class2, _descriptor;
- var ejTreeGrid = exports.ejTreeGrid = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = (0, _common.inject)(Element, _common.TemplatingEngine), _dec5 = (0, _common.children)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
+ var ejTreeGrid = exports.ejTreeGrid = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = (0, _common.inject)(Element, _common.TemplatingEngine), _dec5 = (0, _common.children)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
_inherits(ejTreeGrid, _WidgetBase);
function ejTreeGrid(element, templateEngine) {
diff --git a/dist/amd/treegrid/treegridcolumn.js b/dist/amd/treegrid/treegridcolumn.js
index 2547e02da..4996b0df7 100644
--- a/dist/amd/treegrid/treegridcolumn.js
+++ b/dist/amd/treegrid/treegridcolumn.js
@@ -57,7 +57,7 @@ define(['exports', '../common/constants', '../common/decorators', '../common/com
var _dec, _dec2, _dec3, _dec4, _class, _desc, _value, _class2, _descriptor;
- var TreeGridColumn = exports.TreeGridColumn = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec3 = (0, _decorators.generateBindables)('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing']), _dec4 = (0, _common.children)(_constants.constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
+ var TreeGridColumn = exports.TreeGridColumn = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec3 = (0, _decorators.generateBindables)('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing']), _dec4 = (0, _common.children)(_constants.constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
function TreeGridColumn() {
_classCallCheck(this, TreeGridColumn);
diff --git a/dist/amd/treemap/level.js b/dist/amd/treemap/level.js
index 19ab8db6c..d872ac04b 100644
--- a/dist/amd/treemap/level.js
+++ b/dist/amd/treemap/level.js
@@ -14,7 +14,7 @@ define(['exports', '../common/constants', '../common/decorators', '../common/com
var _dec, _dec2, _dec3, _class;
- var Level = exports.Level = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'level'), _dec3 = (0, _decorators.generateBindables)('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
+ var Level = exports.Level = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'level'), _dec3 = (0, _decorators.generateBindables)('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
_classCallCheck(this, Level);
}) || _class) || _class) || _class);
});
\ No newline at end of file
diff --git a/dist/aurelia-syncfusion-bridge.d.ts b/dist/aurelia-syncfusion-bridge.d.ts
index 630d0e2b2..d0ca3fd6e 100644
--- a/dist/aurelia-syncfusion-bridge.d.ts
+++ b/dist/aurelia-syncfusion-bridge.d.ts
@@ -77,10 +77,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -189,6 +190,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -457,10 +459,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -469,6 +471,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/aurelia-syncfusion-bridge.js b/dist/aurelia-syncfusion-bridge.js
index bd884d819..bdb703cbf 100644
--- a/dist/aurelia-syncfusion-bridge.js
+++ b/dist/aurelia-syncfusion-bridge.js
@@ -89,6 +89,7 @@ export class EjConfigBuilder {
.ejUploadbox()
.ejSignature()
.ejTooltip()
+ .ejSpellCheck()
.ejTemplate();
return this;
}
@@ -404,6 +405,10 @@ export class EjConfigBuilder {
this.resources.push('./tooltip/tooltip');
return this;
}
+ ejSpellCheck(): EjConfigBuilder {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ }
ejTemplate(): EjConfigBuilder {
this.resources.push('./common/template');
return this;
@@ -524,7 +529,7 @@ export class ejChart extends WidgetBase {
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}series`)
-@generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])
+@generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])
export class Series {
}
@@ -854,6 +859,9 @@ export class WidgetBase {
bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
}
createTwoWays() {
@@ -976,7 +984,7 @@ export class WidgetBase {
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}currency-textbox`)
-@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejCurrencyTextbox extends WidgetBase {
constructor(element) {
@@ -990,7 +998,7 @@ export class ejCurrencyTextbox extends WidgetBase {
import 'syncfusion-javascript/Scripts/ej/web/ej.datepicker.min';
@customAttribute(`${constants.attributePrefix}date-picker`)
-@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
+@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejDatePicker extends WidgetBase {
constructor(element) {
@@ -1004,7 +1012,7 @@ export class ejDatePicker extends WidgetBase {
import 'syncfusion-javascript/Scripts/ej/web/ej.daterangepicker.min';
@customAttribute(`${constants.attributePrefix}date-range-picker`)
-@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])
+@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])
@inject(Element)
export class ejDateRangePicker extends WidgetBase {
constructor(element) {
@@ -1033,7 +1041,7 @@ import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.diagram.min';
@customElement(`${constants.elementPrefix}diagram`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])
+@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])
@inject(Element)
export class ejDiagram extends WidgetBase {
constructor(element) {
@@ -1088,7 +1096,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.fileexplorer.min';
@customElement(`${constants.elementPrefix}file-explorer`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejFileExplorer extends WidgetBase {
constructor(element) {
@@ -1102,7 +1110,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.gantt.min';
@customElement(`${constants.elementPrefix}gantt`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])
+@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])
@inject(Element)
export class ejGantt extends WidgetBase {
constructor(element) {
@@ -1322,7 +1330,7 @@ export class ejNavigationDrawer extends WidgetBase {
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}numeric-textbox`)
-@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejNumericTextbox extends WidgetBase {
constructor(element) {
@@ -1351,7 +1359,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.pager.min';
@customElement(`${constants.elementPrefix}pager`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPager extends WidgetBase {
constructor(element) {
@@ -1378,7 +1386,7 @@ export class ejPdfViewer extends WidgetBase {
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}percentage-textbox`)
-@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPercentageTextbox extends WidgetBase {
constructor(element) {
@@ -1510,7 +1518,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.radialslider.min';
@customElement(`${constants.elementPrefix}radial-slider`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])
+@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])
@inject(Element)
export class ejRadialSlider extends WidgetBase {
constructor(element) {
@@ -1650,13 +1658,12 @@ export class ScheduleResource {
}
-import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
+import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
-@customElement(`${constants.elementPrefix}signature`)
-@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejSignature', ['backgroundColor', 'backgroundImage', 'enabled', 'height', 'isResponsive', 'saveImageFormat', 'saveWithBackground', 'showRoundedCorner', 'strokeColor', 'strokeWidth', 'width'])
+@customAttribute(`${constants.attributePrefix}scroller`)
+@generateBindables('ejScroller', ['animationSpeed', 'autoHide', 'buttonSize', 'enabled', 'enablePersistence', 'enableRTL', 'enableTouchScroll', 'height', 'scrollerSize', 'scrollLeft', 'scrollOneStepBy', 'scrollTop', 'targetPane', 'width'], ['scrollLeft', 'scrollTop'], {'enableRTL': 'enableRtl'})
@inject(Element)
-export class ejSignature extends WidgetBase {
+export class ejScroller extends WidgetBase {
constructor(element) {
super();
this.element = element;
@@ -1664,12 +1671,13 @@ export class ejSignature extends WidgetBase {
}
-import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
-@customAttribute(`${constants.attributePrefix}scroller`)
-@generateBindables('ejScroller', ['animationSpeed', 'autoHide', 'buttonSize', 'enabled', 'enablePersistence', 'enableRTL', 'enableTouchScroll', 'height', 'scrollerSize', 'scrollLeft', 'scrollOneStepBy', 'scrollTop', 'targetPane', 'width'], ['scrollLeft', 'scrollTop'], {'enableRTL': 'enableRtl'})
+@customElement(`${constants.elementPrefix}signature`)
+@inlineView(`${constants.aureliaTemplateString}`)
+@generateBindables('ejSignature', ['backgroundColor', 'backgroundImage', 'enabled', 'height', 'isResponsive', 'saveImageFormat', 'saveWithBackground', 'showRoundedCorner', 'strokeColor', 'strokeWidth', 'width'])
@inject(Element)
-export class ejScroller extends WidgetBase {
+export class ejSignature extends WidgetBase {
constructor(element) {
super();
this.element = element;
@@ -1704,10 +1712,24 @@ export class ejSparkline extends WidgetBase {
}
+import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
+
+@customElement(`${constants.elementPrefix}spell-check`)
+@inlineView(`${constants.aureliaTemplateString}`)
+@generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate'])
+@inject(Element)
+export class ejSpellCheck extends WidgetBase {
+ constructor(element) {
+ super();
+ this.element = element;
+ }
+}
+
+
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
@customAttribute(`${constants.attributePrefix}split-button`)
-@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})
+@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})
@inject(Element)
export class ejSplitButton extends WidgetBase {
constructor(element) {
@@ -1733,7 +1755,7 @@ export class ejSplitter extends WidgetBase {
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}sheet`)
-@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell'])
+@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell'])
export class Sheet {
}
@@ -1894,7 +1916,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.treegrid.min';
@customElement(`${constants.elementPrefix}tree-grid`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})
+@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})
@inject(Element, TemplatingEngine)
export class ejTreeGrid extends WidgetBase {
@children(`${constants.elementPrefix}tree-grid-column`) columns = [];
@@ -1911,7 +1933,7 @@ export class ejTreeGrid extends WidgetBase {
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}tree-grid-column`)
-@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing'])
+@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing'])
export class TreeGridColumn {
@children(`${constants.elementPrefix}template`) angularTemplate = [];
@@ -1926,7 +1948,7 @@ export class TreeGridColumn {
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}level`)
-@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])
+@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])
export class Level {
}
diff --git a/dist/commonjs/aurelia-syncfusion-bridge.d.ts b/dist/commonjs/aurelia-syncfusion-bridge.d.ts
index 3b9df1e8d..b299e19fe 100644
--- a/dist/commonjs/aurelia-syncfusion-bridge.d.ts
+++ b/dist/commonjs/aurelia-syncfusion-bridge.d.ts
@@ -81,10 +81,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -193,6 +194,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -461,10 +463,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -473,6 +475,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/commonjs/chart/series.js b/dist/commonjs/chart/series.js
index 00abf6978..94061fea1 100644
--- a/dist/commonjs/chart/series.js
+++ b/dist/commonjs/chart/series.js
@@ -15,6 +15,6 @@ var _common = require('../common/common');
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-var Series = exports.Series = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'series'), _dec3 = (0, _decorators.generateBindables)('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
+var Series = exports.Series = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'series'), _dec3 = (0, _decorators.generateBindables)('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
_classCallCheck(this, Series);
}) || _class) || _class) || _class);
\ No newline at end of file
diff --git a/dist/commonjs/common/widget-base.js b/dist/commonjs/common/widget-base.js
index 893efaaeb..8196e384c 100644
--- a/dist/commonjs/common/widget-base.js
+++ b/dist/commonjs/common/widget-base.js
@@ -72,6 +72,9 @@ var WidgetBase = exports.WidgetBase = (_dec = (0, _decorators.delayed)(), (_clas
WidgetBase.prototype.bind = function bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
};
WidgetBase.prototype.createTwoWays = function createTwoWays() {
diff --git a/dist/commonjs/config-builder.js b/dist/commonjs/config-builder.js
index ed80974b5..cba3b4d70 100644
--- a/dist/commonjs/config-builder.js
+++ b/dist/commonjs/config-builder.js
@@ -15,7 +15,7 @@ var EjConfigBuilder = exports.EjConfigBuilder = function () {
}
EjConfigBuilder.prototype.useAll = function useAll() {
- this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejTemplate();
+ this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejSpellCheck().ejTemplate();
return this;
};
@@ -401,6 +401,11 @@ var EjConfigBuilder = exports.EjConfigBuilder = function () {
return this;
};
+ EjConfigBuilder.prototype.ejSpellCheck = function ejSpellCheck() {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ };
+
EjConfigBuilder.prototype.ejTemplate = function ejTemplate() {
this.resources.push('./common/template');
return this;
diff --git a/dist/commonjs/currencytextbox/currencytextbox.js b/dist/commonjs/currencytextbox/currencytextbox.js
index 229616fe8..6b24f820f 100644
--- a/dist/commonjs/currencytextbox/currencytextbox.js
+++ b/dist/commonjs/currencytextbox/currencytextbox.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'currency-textbox'), _dec2 = (0, _decorators.generateBindables)('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'currency-textbox'), _dec2 = (0, _decorators.generateBindables)('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejCurrencyTextbox, _WidgetBase);
function ejCurrencyTextbox(element) {
diff --git a/dist/commonjs/datepicker/datepicker.js b/dist/commonjs/datepicker/datepicker.js
index ec5a572a2..643609860 100644
--- a/dist/commonjs/datepicker/datepicker.js
+++ b/dist/commonjs/datepicker/datepicker.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejDatePicker = exports.ejDatePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-picker'), _dec2 = (0, _decorators.generateBindables)('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejDatePicker = exports.ejDatePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-picker'), _dec2 = (0, _decorators.generateBindables)('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDatePicker, _WidgetBase);
function ejDatePicker(element) {
diff --git a/dist/commonjs/daterangepicker/daterangepicker.js b/dist/commonjs/daterangepicker/daterangepicker.js
index e46fe7b99..157828e0e 100644
--- a/dist/commonjs/daterangepicker/daterangepicker.js
+++ b/dist/commonjs/daterangepicker/daterangepicker.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejDateRangePicker = exports.ejDateRangePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-range-picker'), _dec2 = (0, _decorators.generateBindables)('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejDateRangePicker = exports.ejDateRangePicker = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'date-range-picker'), _dec2 = (0, _decorators.generateBindables)('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDateRangePicker, _WidgetBase);
function ejDateRangePicker(element) {
diff --git a/dist/commonjs/diagram/diagram.js b/dist/commonjs/diagram/diagram.js
index 17384eeef..901534b28 100644
--- a/dist/commonjs/diagram/diagram.js
+++ b/dist/commonjs/diagram/diagram.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejDiagram = exports.ejDiagram = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'diagram'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+var ejDiagram = exports.ejDiagram = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'diagram'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejDiagram, _WidgetBase);
function ejDiagram(element) {
diff --git a/dist/commonjs/fileexplorer/fileexplorer.js b/dist/commonjs/fileexplorer/fileexplorer.js
index 8311bf635..768fc7607 100644
--- a/dist/commonjs/fileexplorer/fileexplorer.js
+++ b/dist/commonjs/fileexplorer/fileexplorer.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejFileExplorer = exports.ejFileExplorer = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'file-explorer'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+var ejFileExplorer = exports.ejFileExplorer = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'file-explorer'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejFileExplorer, _WidgetBase);
function ejFileExplorer(element) {
diff --git a/dist/commonjs/gantt/gantt.js b/dist/commonjs/gantt/gantt.js
index 32211d026..0e2b763c4 100644
--- a/dist/commonjs/gantt/gantt.js
+++ b/dist/commonjs/gantt/gantt.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejGantt = exports.ejGantt = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'gantt'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+var ejGantt = exports.ejGantt = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'gantt'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejGantt, _WidgetBase);
function ejGantt(element) {
diff --git a/dist/commonjs/numerictextbox/numerictextbox.js b/dist/commonjs/numerictextbox/numerictextbox.js
index 1a2ecd5a1..52f03724f 100644
--- a/dist/commonjs/numerictextbox/numerictextbox.js
+++ b/dist/commonjs/numerictextbox/numerictextbox.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejNumericTextbox = exports.ejNumericTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'numeric-textbox'), _dec2 = (0, _decorators.generateBindables)('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejNumericTextbox = exports.ejNumericTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'numeric-textbox'), _dec2 = (0, _decorators.generateBindables)('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejNumericTextbox, _WidgetBase);
function ejNumericTextbox(element) {
diff --git a/dist/commonjs/pager/pager.js b/dist/commonjs/pager/pager.js
index d8035b413..225c2d5c9 100644
--- a/dist/commonjs/pager/pager.js
+++ b/dist/commonjs/pager/pager.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejPager = exports.ejPager = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'pager'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+var ejPager = exports.ejPager = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'pager'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejPager, _WidgetBase);
function ejPager(element) {
diff --git a/dist/commonjs/percentagetextbox/percentagetextbox.js b/dist/commonjs/percentagetextbox/percentagetextbox.js
index 5214c1688..d0a450b90 100644
--- a/dist/commonjs/percentagetextbox/percentagetextbox.js
+++ b/dist/commonjs/percentagetextbox/percentagetextbox.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'percentage-textbox'), _dec2 = (0, _decorators.generateBindables)('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'percentage-textbox'), _dec2 = (0, _decorators.generateBindables)('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejPercentageTextbox, _WidgetBase);
function ejPercentageTextbox(element) {
diff --git a/dist/commonjs/radialslider/radialslider.js b/dist/commonjs/radialslider/radialslider.js
index 911470b7e..ebadfc75b 100644
--- a/dist/commonjs/radialslider/radialslider.js
+++ b/dist/commonjs/radialslider/radialslider.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejRadialSlider = exports.ejRadialSlider = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'radial-slider'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+var ejRadialSlider = exports.ejRadialSlider = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'radial-slider'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejRadialSlider, _WidgetBase);
function ejRadialSlider(element) {
diff --git a/dist/commonjs/spellcheck/spellcheck.js b/dist/commonjs/spellcheck/spellcheck.js
new file mode 100644
index 000000000..0d30c9fe0
--- /dev/null
+++ b/dist/commonjs/spellcheck/spellcheck.js
@@ -0,0 +1,39 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ejSpellCheck = undefined;
+
+var _dec, _dec2, _dec3, _dec4, _class;
+
+var _widgetBase = require('../common/widget-base');
+
+var _constants = require('../common/constants');
+
+var _decorators = require('../common/decorators');
+
+var _common = require('../common/common');
+
+require('syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min');
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+
+var ejSpellCheck = exports.ejSpellCheck = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'spell-check'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate']), _dec4 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _inherits(ejSpellCheck, _WidgetBase);
+
+ function ejSpellCheck(element) {
+ _classCallCheck(this, ejSpellCheck);
+
+ var _this = _possibleConstructorReturn(this, _WidgetBase.call(this));
+
+ _this.element = element;
+ return _this;
+ }
+
+ return ejSpellCheck;
+}(_widgetBase.WidgetBase)) || _class) || _class) || _class) || _class);
\ No newline at end of file
diff --git a/dist/commonjs/splitbutton/splitbutton.js b/dist/commonjs/splitbutton/splitbutton.js
index b7e6bf7fb..1e6a7c9cf 100644
--- a/dist/commonjs/splitbutton/splitbutton.js
+++ b/dist/commonjs/splitbutton/splitbutton.js
@@ -23,7 +23,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-var ejSplitButton = exports.ejSplitButton = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'split-button'), _dec2 = (0, _decorators.generateBindables)('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+var ejSplitButton = exports.ejSplitButton = (_dec = (0, _common.customAttribute)(_constants.constants.attributePrefix + 'split-button'), _dec2 = (0, _decorators.generateBindables)('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = (0, _common.inject)(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejSplitButton, _WidgetBase);
function ejSplitButton(element) {
diff --git a/dist/commonjs/spreadsheet/sheet.js b/dist/commonjs/spreadsheet/sheet.js
index 35d7a7ded..8572a530b 100644
--- a/dist/commonjs/spreadsheet/sheet.js
+++ b/dist/commonjs/spreadsheet/sheet.js
@@ -15,6 +15,6 @@ var _common = require('../common/common');
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-var Sheet = exports.Sheet = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'sheet'), _dec3 = (0, _decorators.generateBindables)('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
+var Sheet = exports.Sheet = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'sheet'), _dec3 = (0, _decorators.generateBindables)('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
_classCallCheck(this, Sheet);
}) || _class) || _class) || _class);
\ No newline at end of file
diff --git a/dist/commonjs/treegrid/treegrid.js b/dist/commonjs/treegrid/treegrid.js
index 582ff7765..e933117ee 100644
--- a/dist/commonjs/treegrid/treegrid.js
+++ b/dist/commonjs/treegrid/treegrid.js
@@ -68,7 +68,7 @@ function _initializerWarningHelper(descriptor, context) {
throw new Error('Decorating class property failed. Please ensure that transform-class-properties is enabled.');
}
-var ejTreeGrid = exports.ejTreeGrid = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = (0, _common.inject)(Element, _common.TemplatingEngine), _dec5 = (0, _common.children)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
+var ejTreeGrid = exports.ejTreeGrid = (_dec = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid'), _dec2 = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec3 = (0, _decorators.generateBindables)('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = (0, _common.inject)(Element, _common.TemplatingEngine), _dec5 = (0, _common.children)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
_inherits(ejTreeGrid, _WidgetBase);
function ejTreeGrid(element, templateEngine) {
diff --git a/dist/commonjs/treegrid/treegridcolumn.js b/dist/commonjs/treegrid/treegridcolumn.js
index 6b58684de..4fe2df5bd 100644
--- a/dist/commonjs/treegrid/treegridcolumn.js
+++ b/dist/commonjs/treegrid/treegridcolumn.js
@@ -60,7 +60,7 @@ function _initializerWarningHelper(descriptor, context) {
throw new Error('Decorating class property failed. Please ensure that transform-class-properties is enabled.');
}
-var TreeGridColumn = exports.TreeGridColumn = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec3 = (0, _decorators.generateBindables)('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing']), _dec4 = (0, _common.children)(_constants.constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
+var TreeGridColumn = exports.TreeGridColumn = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'tree-grid-column'), _dec3 = (0, _decorators.generateBindables)('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing']), _dec4 = (0, _common.children)(_constants.constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
function TreeGridColumn() {
_classCallCheck(this, TreeGridColumn);
diff --git a/dist/commonjs/treemap/level.js b/dist/commonjs/treemap/level.js
index 4b6034cda..e6ca975cd 100644
--- a/dist/commonjs/treemap/level.js
+++ b/dist/commonjs/treemap/level.js
@@ -15,6 +15,6 @@ var _common = require('../common/common');
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-var Level = exports.Level = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'level'), _dec3 = (0, _decorators.generateBindables)('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
+var Level = exports.Level = (_dec = (0, _common.inlineView)('' + _constants.constants.aureliaTemplateString), _dec2 = (0, _common.customElement)(_constants.constants.elementPrefix + 'level'), _dec3 = (0, _decorators.generateBindables)('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
_classCallCheck(this, Level);
}) || _class) || _class) || _class);
\ No newline at end of file
diff --git a/dist/dev/aurelia-syncfusion-bridge.d.ts b/dist/dev/aurelia-syncfusion-bridge.d.ts
index 3b9df1e8d..b299e19fe 100644
--- a/dist/dev/aurelia-syncfusion-bridge.d.ts
+++ b/dist/dev/aurelia-syncfusion-bridge.d.ts
@@ -81,10 +81,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -193,6 +194,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -461,10 +463,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -473,6 +475,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/dev/chart/series.js b/dist/dev/chart/series.js
index 1e0e2f66d..1ac3972b0 100644
--- a/dist/dev/chart/series.js
+++ b/dist/dev/chart/series.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Series', Series = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'series'), _dec3 = generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
+ _export('Series', Series = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'series'), _dec3 = generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
_classCallCheck(this, Series);
}) || _class) || _class) || _class));
diff --git a/dist/dev/common/widget-base.js b/dist/dev/common/widget-base.js
index 84e5a1091..57aa8d827 100644
--- a/dist/dev/common/widget-base.js
+++ b/dist/dev/common/widget-base.js
@@ -78,6 +78,9 @@ System.register(['./events', '../common/util', '../common/decorators'], function
WidgetBase.prototype.bind = function bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
};
WidgetBase.prototype.createTwoWays = function createTwoWays() {
diff --git a/dist/dev/config-builder.js b/dist/dev/config-builder.js
index a2573d896..93fb018b9 100644
--- a/dist/dev/config-builder.js
+++ b/dist/dev/config-builder.js
@@ -23,7 +23,7 @@ System.register([], function (_export, _context) {
}
EjConfigBuilder.prototype.useAll = function useAll() {
- this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejTemplate();
+ this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejSpellCheck().ejTemplate();
return this;
};
@@ -409,6 +409,11 @@ System.register([], function (_export, _context) {
return this;
};
+ EjConfigBuilder.prototype.ejSpellCheck = function ejSpellCheck() {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ };
+
EjConfigBuilder.prototype.ejTemplate = function ejTemplate() {
this.resources.push('./common/template');
return this;
diff --git a/dist/dev/currencytextbox/currencytextbox.js b/dist/dev/currencytextbox/currencytextbox.js
index f56385063..14cf961ab 100644
--- a/dist/dev/currencytextbox/currencytextbox.js
+++ b/dist/dev/currencytextbox/currencytextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejCurrencyTextbox', ejCurrencyTextbox = (_dec = customAttribute(constants.attributePrefix + 'currency-textbox'), _dec2 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejCurrencyTextbox', ejCurrencyTextbox = (_dec = customAttribute(constants.attributePrefix + 'currency-textbox'), _dec2 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejCurrencyTextbox, _WidgetBase);
function ejCurrencyTextbox(element) {
diff --git a/dist/dev/datepicker/datepicker.js b/dist/dev/datepicker/datepicker.js
index 3ea3166a1..341cb5220 100644
--- a/dist/dev/datepicker/datepicker.js
+++ b/dist/dev/datepicker/datepicker.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjDatepickerMin) {}],
execute: function () {
- _export('ejDatePicker', ejDatePicker = (_dec = customAttribute(constants.attributePrefix + 'date-picker'), _dec2 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejDatePicker', ejDatePicker = (_dec = customAttribute(constants.attributePrefix + 'date-picker'), _dec2 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDatePicker, _WidgetBase);
function ejDatePicker(element) {
diff --git a/dist/dev/daterangepicker/daterangepicker.js b/dist/dev/daterangepicker/daterangepicker.js
index e90248062..b39d54803 100644
--- a/dist/dev/daterangepicker/daterangepicker.js
+++ b/dist/dev/daterangepicker/daterangepicker.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjDaterangepickerMin) {}],
execute: function () {
- _export('ejDateRangePicker', ejDateRangePicker = (_dec = customAttribute(constants.attributePrefix + 'date-range-picker'), _dec2 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejDateRangePicker', ejDateRangePicker = (_dec = customAttribute(constants.attributePrefix + 'date-range-picker'), _dec2 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDateRangePicker, _WidgetBase);
function ejDateRangePicker(element) {
diff --git a/dist/dev/diagram/diagram.js b/dist/dev/diagram/diagram.js
index 75aa4c331..6aa6aded5 100644
--- a/dist/dev/diagram/diagram.js
+++ b/dist/dev/diagram/diagram.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjDatavisualizationEjDiagramMin) {}],
execute: function () {
- _export('ejDiagram', ejDiagram = (_dec = customElement(constants.elementPrefix + 'diagram'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejDiagram', ejDiagram = (_dec = customElement(constants.elementPrefix + 'diagram'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejDiagram, _WidgetBase);
function ejDiagram(element) {
diff --git a/dist/dev/dist/dev/chart/series.js.map b/dist/dev/dist/dev/chart/series.js.map
index 83554e2d8..473c9c8df 100644
--- a/dist/dev/dist/dev/chart/series.js.map
+++ b/dist/dev/dist/dev/chart/series.js.map
@@ -1 +1 @@
-{"version":3,"sources":["chart/series.js"],"names":["constants","generateBindables","inlineView","customElement","Series","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;wBAMPC,M,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,Y,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,eAAD,EAAkB,QAAlB,EAA4B,eAA5B,EAA6C,aAA7C,EAA4D,aAA5D,EAA2E,eAA3E,EAA4F,eAA5F,EAA6G,WAA7G,EAA0H,YAA1H,EAAwI,qBAAxI,EAA+J,cAA/J,EAA+K,UAA/K,EAA2L,iBAA3L,EAA8M,mBAA9M,EAAmO,UAAnO,EAA+O,SAA/O,EAA0P,YAA1P,EAAwQ,cAAxQ,EAAwR,eAAxR,EAAyS,MAAzS,EAAiT,MAAjT,EAAyT,cAAzT,EAAyU,aAAzU,EAAwV,UAAxV,EAAoW,UAApW,EAAgX,YAAhX,EAA8X,cAA9X,EAA8Y,YAA9Y,EAA4Z,eAA5Z,EAA6a,WAA7a,EAA0b,aAA1b,EAAyc,eAAzc,EAA0d,SAA1d,EAAqe,UAAre,EAAif,QAAjf,EAA2f,MAA3f,EAAmgB,SAAngB,EAA8gB,iBAA9gB,EAAiiB,SAAjiB,EAA4iB,gBAA5iB,EAA8jB,qBAA9jB,EAAqlB,YAArlB,EAAmmB,UAAnmB,EAA+mB,oBAA/mB,EAAqoB,cAAroB,EAAqpB,eAArpB,EAAsqB,cAAtqB,EAAsrB,UAAtrB,EAAksB,QAAlsB,EAA4sB,aAA5sB,EAA2tB,OAA3tB,EAAouB,YAApuB,EAAkvB,cAAlvB,EAAkwB,SAAlwB,EAA6wB,MAA7wB,EAAqxB,YAArxB,EAAmyB,iBAAnyB,EAAszB,WAAtzB,EAAm0B,OAAn0B,EAA40B,WAA50B,EAAy1B,OAAz1B,EAAk2B,MAAl2B,EAA02B,KAA12B,EAAi3B,MAAj3B,EAAy3B,OAAz3B,EAAk4B,uBAAl4B,EAA25B,QAA35B,EAAq6B,MAAr6B,EAA66B,YAA76B,EAA27B,mBAA37B,EAAg9B,mBAAh9B,CAA5B,C","file":"../../../chart/series.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}series`)\r\n@generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])\r\n\r\nexport class Series {\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["chart/series.js"],"names":["constants","generateBindables","inlineView","customElement","Series","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;wBAMPC,M,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,Y,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,eAAD,EAAkB,QAAlB,EAA4B,mBAA5B,EAAiD,eAAjD,EAAkE,aAAlE,EAAiF,aAAjF,EAAgG,eAAhG,EAAiH,eAAjH,EAAkI,WAAlI,EAA+I,YAA/I,EAA6J,uBAA7J,EAAsL,qBAAtL,EAA6M,cAA7M,EAA6N,UAA7N,EAAyO,iBAAzO,EAA4P,mBAA5P,EAAiR,UAAjR,EAA6R,SAA7R,EAAwS,YAAxS,EAAsT,cAAtT,EAAsU,eAAtU,EAAuV,MAAvV,EAA+V,MAA/V,EAAuW,cAAvW,EAAuX,aAAvX,EAAsY,UAAtY,EAAkZ,UAAlZ,EAA8Z,YAA9Z,EAA4a,cAA5a,EAA4b,YAA5b,EAA0c,eAA1c,EAA2d,WAA3d,EAAwe,aAAxe,EAAuf,eAAvf,EAAwgB,YAAxgB,EAAshB,SAAthB,EAAiiB,UAAjiB,EAA6iB,QAA7iB,EAAujB,MAAvjB,EAA+jB,SAA/jB,EAA0kB,iBAA1kB,EAA6lB,SAA7lB,EAAwmB,gBAAxmB,EAA0nB,qBAA1nB,EAAipB,YAAjpB,EAA+pB,UAA/pB,EAA2qB,oBAA3qB,EAAisB,cAAjsB,EAAitB,eAAjtB,EAAkuB,cAAluB,EAAkvB,UAAlvB,EAA8vB,QAA9vB,EAAwwB,aAAxwB,EAAuxB,OAAvxB,EAAgyB,YAAhyB,EAA8yB,cAA9yB,EAA8zB,SAA9zB,EAAy0B,MAAz0B,EAAi1B,YAAj1B,EAA+1B,iBAA/1B,EAAk3B,WAAl3B,EAA+3B,OAA/3B,EAAw4B,WAAx4B,EAAq5B,OAAr5B,EAA85B,MAA95B,EAAs6B,KAAt6B,EAA66B,MAA76B,EAAq7B,OAAr7B,EAA87B,uBAA97B,EAAu9B,QAAv9B,EAAi+B,MAAj+B,EAAy+B,YAAz+B,EAAu/B,mBAAv/B,EAA4gC,mBAA5gC,CAA5B,C","file":"../../../chart/series.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}series`)\r\n@generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])\r\n\r\nexport class Series {\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/common/widget-base.js.map b/dist/dev/dist/dev/common/widget-base.js.map
index 9b9b3327f..e101b0b30 100644
--- a/dist/dev/dist/dev/common/widget-base.js.map
+++ b/dist/dev/dist/dev/common/widget-base.js.map
@@ -1 +1 @@
-{"version":3,"sources":["common/widget-base.js"],"names":["getEventOption","Util","delayed","firstValue","WidgetBase","createWidget","option","allOption","getWidgetOptions","element","ejOptions","isEditor","createTwoWays","eWidget","widget","jQuery","$","controlName","data","templateProcessor","initWidgetDependancies","model","_change","evt","util","getBindablePropertyName","value","bind","ctx","overrideCtx","parentCtx","twoWays","len","length","i","prop","ej","createObject","addTwoways","newVal","isApp","viewModelProp","undefined","defaults","hasValue","propOptions","getOptions","controlProperties","eventOption","hasChildProperty","getChildProperties","Object","assign","options","PropertyName","childPropertyName","childCollection","childProperties","push","attached","forEach","template","setTemplates","propertyChanged","property","newValue","oldValue","modelValue","getControlPropertyName","isTwoway","detached","clearTempalte","destroy"],"mappings":"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","file":"../../../common/widget-base.js","sourcesContent":["import {getEventOption} from './events';\r\nimport {Util} from '../common/util';\r\nimport {delayed} from '../common/decorators';\r\n\r\nlet firstValue = {};\r\nexport class WidgetBase {\r\n/**\r\n* To Create an widget\r\n* @param option Object which contains Element in which widget will be created\r\n*/\r\n createWidget(option) {\r\n this.allOption = this.getWidgetOptions(option.element);\r\n if (!this.ejOptions && !this.isEditor) {\r\n this.createTwoWays();\r\n }\r\n this.eWidget = this.widget = jQuery($(option.element))[this.controlName](this.allOption).data(this.controlName);\r\n if (this.templateProcessor) {\r\n this.templateProcessor.initWidgetDependancies();\r\n }\r\n if (this.isEditor) {\r\n this.widget.model._change = (evt) => {\r\n if ('eValue' in this) {\r\n this[this.util.getBindablePropertyName('value')] = evt.value;\r\n }\r\n };\r\n }\r\n }\r\n\r\n bind(ctx, overrideCtx) {\r\n this.parentCtx = overrideCtx;\r\n }\r\n\r\n createTwoWays() {\r\n let model = this.allOption;\r\n let twoWays = this.twoWays;\r\n let len = twoWays.length;\r\n for (let i = 0; i < len; i++) {\r\n let prop = twoWays[i];\r\n ej.createObject(prop, this.addTwoways(prop), model);\r\n }\r\n }\r\n\r\n addTwoways(prop) {\r\n let model = this;\r\n let value = firstValue;\r\n return function(newVal, isApp) {\r\n if (value === firstValue) {\r\n let viewModelProp = model.util.getBindablePropertyName(prop);\r\n value = model[viewModelProp];\r\n if (value === undefined) {\r\n value = this.defaults[prop];\r\n }\r\n return value;\r\n }\r\n if (newVal === undefined) {\r\n return value;\r\n }\r\n if (value === newVal) {\r\n return null;\r\n }\r\n value = newVal;\r\n if (!isApp && model.util.hasValue(newVal) ) {\r\n let viewModelProp = model.util.getBindablePropertyName(prop);\r\n model[viewModelProp] = newVal;\r\n }\r\n return null;\r\n };\r\n }\r\n/**\r\n* To get property and event options from the element\r\n* @param element Element from which options are acquired\r\n*/\r\n getWidgetOptions(element) {\r\n let propOptions;\r\n if (this.ejOptions) {\r\n propOptions = this.ejOptions;\r\n } else {\r\n propOptions = this.util.getOptions(this, this.controlProperties);\r\n }\r\n let eventOption = getEventOption(element);\r\n if (this.hasChildProperty) {\r\n this.getChildProperties(propOptions);\r\n }\r\n return Object.assign({}, propOptions, eventOption);\r\n }\r\n\r\n getChildProperties(options) {\r\n let PropertyName = this.childPropertyName;\r\n let childCollection = this[PropertyName];\r\n let len = childCollection.length;\r\n if (len) {\r\n options[PropertyName] = [];\r\n let childProperties = childCollection[0].controlProperties;\r\n for (let i = 0; i < len; i++) {\r\n options[PropertyName].push(this.util.getOptions(childCollection[i], childProperties));\r\n }\r\n }\r\n }\r\n\r\n @delayed()\r\n attached() {\r\n if (this.templateProcessor) {\r\n this[this.childPropertyName].forEach(template => template.setTemplates());\r\n }\r\n this.util = new Util();\r\n this.createWidget({ element: this.element });\r\n }\r\n/**\r\n * To change widget model value\r\n * @param property The viewModel property name\r\n * @param newValue New value of the property\r\n * @param oldvalue Pld value of the property\r\n */\r\n propertyChanged(property, newValue, oldValue) {\r\n if (this.widget) {\r\n let modelValue;\r\n let prop = this.util.getControlPropertyName(this, property);\r\n if (prop) {\r\n if (prop === 'widget') {\r\n return;\r\n } else if (prop !== 'options') {\r\n modelValue = this.widget.model[prop];\r\n let isTwoway = typeof modelValue === 'function';\r\n if (isTwoway) {\r\n modelValue = modelValue();\r\n }\r\n if (modelValue !== newValue) {\r\n if (isTwoway) {\r\n newValue = this.addTwoways(prop);\r\n }\r\n this.widget.option(prop, newValue);\r\n }\r\n } else {\r\n this.widget.option(newValue);\r\n }\r\n }\r\n }\r\n }\r\n detached() {\r\n if (this.templateProcessor) {\r\n this.templateProcessor.clearTempalte();\r\n }\r\n if (this.widget) {\r\n this.widget.destroy();\r\n }\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["common/widget-base.js"],"names":["getEventOption","Util","delayed","firstValue","WidgetBase","createWidget","option","allOption","getWidgetOptions","element","ejOptions","isEditor","createTwoWays","eWidget","widget","jQuery","$","controlName","data","templateProcessor","initWidgetDependancies","model","_change","evt","util","getBindablePropertyName","value","bind","ctx","overrideCtx","parentCtx","eValue","twoWays","len","length","i","prop","ej","createObject","addTwoways","newVal","isApp","viewModelProp","undefined","defaults","hasValue","propOptions","getOptions","controlProperties","eventOption","hasChildProperty","getChildProperties","Object","assign","options","PropertyName","childPropertyName","childCollection","childProperties","push","attached","forEach","template","setTemplates","propertyChanged","property","newValue","oldValue","modelValue","getControlPropertyName","isTwoway","detached","clearTempalte","destroy"],"mappings":"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","file":"../../../common/widget-base.js","sourcesContent":["import {getEventOption} from './events';\r\nimport {Util} from '../common/util';\r\nimport {delayed} from '../common/decorators';\r\n\r\nlet firstValue = {};\r\nexport class WidgetBase {\r\n/**\r\n* To Create an widget\r\n* @param option Object which contains Element in which widget will be created\r\n*/\r\n createWidget(option) {\r\n this.allOption = this.getWidgetOptions(option.element);\r\n if (!this.ejOptions && !this.isEditor) {\r\n this.createTwoWays();\r\n }\r\n this.eWidget = this.widget = jQuery($(option.element))[this.controlName](this.allOption).data(this.controlName);\r\n if (this.templateProcessor) {\r\n this.templateProcessor.initWidgetDependancies();\r\n }\r\n if (this.isEditor) {\r\n this.widget.model._change = (evt) => {\r\n if ('eValue' in this) {\r\n this[this.util.getBindablePropertyName('value')] = evt.value;\r\n }\r\n };\r\n }\r\n }\r\n\r\n bind(ctx, overrideCtx) {\r\n this.parentCtx = overrideCtx;\r\n if (this.widget && this.isEditor) {\r\n this.widget.option('value', this.eValue);\r\n }\r\n }\r\n\r\n createTwoWays() {\r\n let model = this.allOption;\r\n let twoWays = this.twoWays;\r\n let len = twoWays.length;\r\n for (let i = 0; i < len; i++) {\r\n let prop = twoWays[i];\r\n ej.createObject(prop, this.addTwoways(prop), model);\r\n }\r\n }\r\n\r\n addTwoways(prop) {\r\n let model = this;\r\n let value = firstValue;\r\n return function(newVal, isApp) {\r\n if (value === firstValue) {\r\n let viewModelProp = model.util.getBindablePropertyName(prop);\r\n value = model[viewModelProp];\r\n if (value === undefined) {\r\n value = this.defaults[prop];\r\n }\r\n return value;\r\n }\r\n if (newVal === undefined) {\r\n return value;\r\n }\r\n if (value === newVal) {\r\n return null;\r\n }\r\n value = newVal;\r\n if (!isApp && model.util.hasValue(newVal) ) {\r\n let viewModelProp = model.util.getBindablePropertyName(prop);\r\n model[viewModelProp] = newVal;\r\n }\r\n return null;\r\n };\r\n }\r\n/**\r\n* To get property and event options from the element\r\n* @param element Element from which options are acquired\r\n*/\r\n getWidgetOptions(element) {\r\n let propOptions;\r\n if (this.ejOptions) {\r\n propOptions = this.ejOptions;\r\n } else {\r\n propOptions = this.util.getOptions(this, this.controlProperties);\r\n }\r\n let eventOption = getEventOption(element);\r\n if (this.hasChildProperty) {\r\n this.getChildProperties(propOptions);\r\n }\r\n return Object.assign({}, propOptions, eventOption);\r\n }\r\n\r\n getChildProperties(options) {\r\n let PropertyName = this.childPropertyName;\r\n let childCollection = this[PropertyName];\r\n let len = childCollection.length;\r\n if (len) {\r\n options[PropertyName] = [];\r\n let childProperties = childCollection[0].controlProperties;\r\n for (let i = 0; i < len; i++) {\r\n options[PropertyName].push(this.util.getOptions(childCollection[i], childProperties));\r\n }\r\n }\r\n }\r\n\r\n @delayed()\r\n attached() {\r\n if (this.templateProcessor) {\r\n this[this.childPropertyName].forEach(template => template.setTemplates());\r\n }\r\n this.util = new Util();\r\n this.createWidget({ element: this.element });\r\n }\r\n/**\r\n * To change widget model value\r\n * @param property The viewModel property name\r\n * @param newValue New value of the property\r\n * @param oldvalue Pld value of the property\r\n */\r\n propertyChanged(property, newValue, oldValue) {\r\n if (this.widget) {\r\n let modelValue;\r\n let prop = this.util.getControlPropertyName(this, property);\r\n if (prop) {\r\n if (prop === 'widget') {\r\n return;\r\n } else if (prop !== 'options') {\r\n modelValue = this.widget.model[prop];\r\n let isTwoway = typeof modelValue === 'function';\r\n if (isTwoway) {\r\n modelValue = modelValue();\r\n }\r\n if (modelValue !== newValue) {\r\n if (isTwoway) {\r\n newValue = this.addTwoways(prop);\r\n }\r\n this.widget.option(prop, newValue);\r\n }\r\n } else {\r\n this.widget.option(newValue);\r\n }\r\n }\r\n }\r\n }\r\n detached() {\r\n if (this.templateProcessor) {\r\n this.templateProcessor.clearTempalte();\r\n }\r\n if (this.widget) {\r\n this.widget.destroy();\r\n }\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/config-builder.js.map b/dist/dev/dist/dev/config-builder.js.map
index aa0e0de63..ea08248e4 100644
--- a/dist/dev/dist/dev/config-builder.js.map
+++ b/dist/dev/dist/dev/config-builder.js.map
@@ -1 +1 @@
-{"version":3,"sources":["config-builder.js"],"names":["EjConfigBuilder","resources","useGlobalResources","useAll","ejGrid","ejChart","ejSunburstChart","ejMap","ejTreeMap","ejRangeNavigator","ejDiagram","ejHeatMap","ejHeatMapLegend","ejSparkline","ejSymbolPalette","ejOverview","ejPager","ejBulletGraph","ejCircularGauge","ejLinearGauge","ejDigitalGauge","ejSplitter","ejDatePicker","ejGantt","ejTreeGrid","ejColorPicker","ejDialog","ejScroller","ejBarcode","ejPdfViewer","ejNumericTextbox","ejCurrencyTextbox","ejPercentageTextbox","ejTimePicker","ejToolbar","ejMenu","ejMaskEdit","ejTreeView","ejKanban","ejRibbon","ejSpreadsheet","ejRating","ejListBox","ejListView","ejNavigationDrawer","ejRotator","ejRTE","ejDropDownList","ejAutocomplete","ejRadialMenu","ejRadialSlider","ejTile","ejAccordion","ejTab","ejCheckBox","ejRadioButton","ejToggleButton","ejSplitButton","ejGroupButton","ejDateTimePicker","ejDateRangePicker","ejProgressBar","ejTagCloud","ejButton","ejSlider","ejFileExplorer","ejPivotGrid","ejPivotChart","ejPivotGauge","ejPivotSchemaDesigner","ejPivotTreeMap","ejWaitingPopup","ejReportViewer","ejSchedule","ejUploadbox","ejSignature","ejTooltip","ejTemplate","withoutGlobalResources","push"],"mappings":"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","file":"../../config-builder.js","sourcesContent":["/**\r\n* Plugin configuration builder\r\n*/\r\nexport class EjConfigBuilder {\r\n\r\n resources: string[] = [];\r\n useGlobalResources: boolean = true;\r\n\r\n /**\r\n * Globally register all EJ wrappers including templating support\r\n */\r\n useAll() : EjConfigBuilder {\r\n this.ejGrid()\r\n .ejChart()\r\n .ejSunburstChart()\r\n .ejMap()\r\n .ejTreeMap()\r\n .ejRangeNavigator()\r\n .ejDiagram()\r\n .ejHeatMap()\r\n .ejHeatMapLegend()\r\n .ejSparkline()\r\n .ejSymbolPalette()\r\n .ejOverview()\r\n .ejPager()\r\n .ejBulletGraph()\r\n .ejCircularGauge()\r\n .ejLinearGauge()\r\n .ejDigitalGauge()\r\n .ejSplitter()\r\n .ejDatePicker()\r\n .ejGantt()\r\n .ejTreeGrid()\r\n .ejColorPicker()\r\n .ejDialog()\r\n .ejScroller()\r\n .ejBarcode()\r\n .ejPdfViewer()\r\n .ejNumericTextbox()\r\n .ejCurrencyTextbox()\r\n .ejPercentageTextbox()\r\n .ejTimePicker()\r\n .ejToolbar()\r\n .ejMenu()\r\n .ejMaskEdit()\r\n .ejTreeView()\r\n .ejKanban()\r\n .ejRibbon()\r\n .ejSpreadsheet()\r\n .ejRating()\r\n .ejListBox()\r\n .ejListView()\r\n .ejNavigationDrawer()\r\n .ejRotator()\r\n .ejRTE()\r\n .ejDropDownList()\r\n .ejAutocomplete()\r\n .ejRadialMenu()\r\n .ejRadialSlider()\r\n .ejTile()\r\n .ejAccordion()\r\n .ejTab()\r\n .ejCheckBox()\r\n .ejRadioButton()\r\n .ejToggleButton()\r\n .ejSplitButton()\r\n .ejGroupButton()\r\n .ejDateTimePicker()\r\n .ejDateRangePicker()\r\n .ejProgressBar()\r\n .ejTagCloud()\r\n .ejButton()\r\n .ejSlider()\r\n .ejFileExplorer()\r\n .ejPivotGrid()\r\n .ejPivotChart()\r\n .ejPivotGauge()\r\n .ejPivotSchemaDesigner()\r\n .ejPivotTreeMap()\r\n .ejWaitingPopup()\r\n .ejReportViewer()\r\n .ejSchedule()\r\n .ejUploadbox()\r\n .ejSignature()\r\n .ejTooltip()\r\n .ejTemplate();\r\n return this;\r\n }\r\n /**\r\n * Don't globalize any resources\r\n * Allows you to import wrappers yourself via \r\n */\r\n withoutGlobalResources(): EjConfigBuilder {\r\n this.useGlobalResources = false;\r\n return this;\r\n }\r\n ejGrid(): EjConfigBuilder {\r\n this.resources.push('./grid/grid');\r\n this.resources.push('./grid/column');\r\n return this;\r\n }\r\n ejChart(): EjConfigBuilder {\r\n this.resources.push('./chart/chart');\r\n this.resources.push('./chart/series');\r\n return this;\r\n }\r\n ejSunburstChart(): EjConfigBuilder {\r\n this.resources.push('./sunburstchart/sunburstchart');\r\n this.resources.push('./sunburstchart/sunburstlevels');\r\n return this;\r\n }\r\n ejMap(): EjConfigBuilder {\r\n this.resources.push('./map/map');\r\n this.resources.push('./map/layer');\r\n return this;\r\n }\r\n ejTreeMap(): EjConfigBuilder {\r\n this.resources.push('./treemap/treemap');\r\n this.resources.push('./treemap/level');\r\n return this;\r\n }\r\n ejRangeNavigator(): EjConfigBuilder {\r\n this.resources.push('./rangenavigator/rangenavigator');\r\n this.resources.push('./rangenavigator/rangeseries');\r\n return this;\r\n }\r\n ejDiagram(): EjConfigBuilder {\r\n this.resources.push('./diagram/diagram');\r\n return this;\r\n }\r\n ejHeatMap(): EjConfigBuilder {\r\n this.resources.push('./heatmap/heatmap');\r\n return this;\r\n }\r\n ejHeatMapLegend(): EjConfigBuilder {\r\n this.resources.push('./heatmaplegend/heatmaplegend');\r\n return this;\r\n }\r\n ejSparkline(): EjConfigBuilder {\r\n this.resources.push('./sparkline/sparkline');\r\n return this;\r\n }\r\n ejSymbolPalette(): EjConfigBuilder {\r\n this.resources.push('./symbolpalette/symbolpalette');\r\n return this;\r\n }\r\n ejOverview(): EjConfigBuilder {\r\n this.resources.push('./overview/overview');\r\n return this;\r\n }\r\n ejPager(): EjConfigBuilder {\r\n this.resources.push('./pager/pager');\r\n return this;\r\n }\r\n ejBulletGraph(): EjConfigBuilder {\r\n this.resources.push('./bulletgraph/bulletgraph');\r\n this.resources.push('./bulletgraph/qualitativerange');\r\n return this;\r\n }\r\n ejCircularGauge(): EjConfigBuilder {\r\n this.resources.push('./circulargauge/circulargauge');\r\n return this;\r\n }\r\n ejLinearGauge(): EjConfigBuilder {\r\n this.resources.push('./lineargauge/lineargauge');\r\n return this;\r\n }\r\n ejDigitalGauge(): EjConfigBuilder {\r\n this.resources.push('./digitalgauge/digitalgauge');\r\n return this;\r\n }\r\n ejSplitter(): EjConfigBuilder {\r\n this.resources.push('./splitter/splitter');\r\n return this;\r\n }\r\n ejDatePicker(): EjConfigBuilder {\r\n this.resources.push('./datepicker/datepicker');\r\n return this;\r\n }\r\n ejGantt(): EjConfigBuilder {\r\n this.resources.push('./gantt/gantt');\r\n return this;\r\n }\r\n ejTreeGrid(): EjConfigBuilder {\r\n this.resources.push('./treegrid/treegrid');\r\n this.resources.push('./treegrid/treegridcolumn');\r\n return this;\r\n }\r\n ejColorPicker(): EjConfigBuilder {\r\n this.resources.push('./colorpicker/colorpicker');\r\n return this;\r\n }\r\n ejDialog(): EjConfigBuilder {\r\n this.resources.push('./dialog/dialog');\r\n return this;\r\n }\r\n ejScroller(): EjConfigBuilder {\r\n this.resources.push('./scroller/scroller');\r\n return this;\r\n }\r\n ejBarcode(): EjConfigBuilder {\r\n this.resources.push('./barcode/barcode');\r\n return this;\r\n }\r\n ejPdfViewer(): EjConfigBuilder {\r\n this.resources.push('./pdfviewer/pdfviewer');\r\n return this;\r\n }\r\n ejNumericTextbox(): EjConfigBuilder {\r\n this.resources.push('./numerictextbox/numerictextbox');\r\n return this;\r\n }\r\n ejCurrencyTextbox(): EjConfigBuilder {\r\n this.resources.push('./currencytextbox/currencytextbox');\r\n return this;\r\n }\r\n ejPercentageTextbox(): EjConfigBuilder {\r\n this.resources.push('./percentagetextbox/percentagetextbox');\r\n return this;\r\n }\r\n ejTimePicker(): EjConfigBuilder {\r\n this.resources.push('./timepicker/timepicker');\r\n return this;\r\n }\r\n ejToolbar(): EjConfigBuilder {\r\n this.resources.push('./toolbar/toolbar');\r\n return this;\r\n }\r\n ejMenu(): EjConfigBuilder {\r\n this.resources.push('./menu/menu');\r\n return this;\r\n }\r\n ejMaskEdit(): EjConfigBuilder {\r\n this.resources.push('./maskedit/maskedit');\r\n return this;\r\n }\r\n ejTreeView(): EjConfigBuilder {\r\n this.resources.push('./treeview/treeview');\r\n return this;\r\n }\r\n ejKanban(): EjConfigBuilder {\r\n this.resources.push('./kanban/kanban');\r\n this.resources.push('./kanban/kanbancolumn');\r\n return this;\r\n }\r\n ejRibbon(): EjConfigBuilder {\r\n this.resources.push('./ribbon/ribbon');\r\n return this;\r\n }\r\n ejSpreadsheet(): EjConfigBuilder {\r\n this.resources.push('./spreadsheet/spreadsheet');\r\n this.resources.push('./spreadsheet/sheet');\r\n return this;\r\n }\r\n ejRating(): EjConfigBuilder {\r\n this.resources.push('./rating/rating');\r\n return this;\r\n }\r\n ejListBox(): EjConfigBuilder {\r\n this.resources.push('./listbox/listbox');\r\n return this;\r\n }\r\n ejListView(): EjConfigBuilder {\r\n this.resources.push('./listview/listview');\r\n return this;\r\n }\r\n ejNavigationDrawer(): EjConfigBuilder {\r\n this.resources.push('./navigationdrawer/navigationdrawer');\r\n return this;\r\n }\r\n ejRotator(): EjConfigBuilder {\r\n this.resources.push('./rotator/rotator');\r\n return this;\r\n }\r\n ejRTE(): EjConfigBuilder {\r\n this.resources.push('./rte/rte');\r\n return this;\r\n }\r\n ejDropDownList(): EjConfigBuilder {\r\n this.resources.push('./dropdownlist/dropdownlist');\r\n return this;\r\n }\r\n ejAutocomplete(): EjConfigBuilder {\r\n this.resources.push('./autocomplete/autocomplete');\r\n return this;\r\n }\r\n ejRadialMenu(): EjConfigBuilder {\r\n this.resources.push('./radialmenu/radialmenu');\r\n this.resources.push('./radialmenu/item');\r\n return this;\r\n }\r\n ejRadialSlider(): EjConfigBuilder {\r\n this.resources.push('./radialslider/radialslider');\r\n return this;\r\n }\r\n ejTile(): EjConfigBuilder {\r\n this.resources.push('./tile/tile');\r\n return this;\r\n }\r\n ejAccordion(): EjConfigBuilder {\r\n this.resources.push('./accordion/accordion');\r\n return this;\r\n }\r\n ejTab(): EjConfigBuilder {\r\n this.resources.push('./tab/tab');\r\n return this;\r\n }\r\n ejCheckBox(): EjConfigBuilder {\r\n this.resources.push('./checkbox/checkbox');\r\n return this;\r\n }\r\n ejRadioButton(): EjConfigBuilder {\r\n this.resources.push('./radiobutton/radiobutton');\r\n return this;\r\n }\r\n ejToggleButton(): EjConfigBuilder {\r\n this.resources.push('./togglebutton/togglebutton');\r\n return this;\r\n }\r\n ejSplitButton(): EjConfigBuilder {\r\n this.resources.push('./splitbutton/splitbutton');\r\n return this;\r\n }\r\n ejGroupButton(): EjConfigBuilder {\r\n this.resources.push('./groupbutton/groupbutton');\r\n return this;\r\n }\r\n ejDateTimePicker(): EjConfigBuilder {\r\n this.resources.push('./datetimepicker/datetimepicker');\r\n return this;\r\n }\r\n ejDateRangePicker(): EjConfigBuilder {\r\n this.resources.push('./daterangepicker/daterangepicker');\r\n return this;\r\n }\r\n ejProgressBar(): EjConfigBuilder {\r\n this.resources.push('./progressbar/progressbar');\r\n return this;\r\n }\r\n ejTagCloud(): EjConfigBuilder {\r\n this.resources.push('./tagcloud/tagcloud');\r\n return this;\r\n }\r\n ejButton(): EjConfigBuilder {\r\n this.resources.push('./button/button');\r\n return this;\r\n }\r\n ejSlider(): EjConfigBuilder {\r\n this.resources.push('./slider/slider');\r\n return this;\r\n }\r\n ejFileExplorer(): EjConfigBuilder {\r\n this.resources.push('./fileexplorer/fileexplorer');\r\n return this;\r\n }\r\n ejPivotGrid(): EjConfigBuilder {\r\n this.resources.push('./pivotgrid/pivotgrid');\r\n return this;\r\n }\r\n ejPivotChart(): EjConfigBuilder {\r\n this.resources.push('./pivotchart/pivotchart');\r\n return this;\r\n }\r\n ejPivotGauge(): EjConfigBuilder {\r\n this.resources.push('./pivotgauge/pivotgauge');\r\n return this;\r\n }\r\n ejPivotSchemaDesigner(): EjConfigBuilder {\r\n this.resources.push('./pivotschemadesigner/pivotschemadesigner');\r\n return this;\r\n }\r\n ejPivotTreeMap(): EjConfigBuilder {\r\n this.resources.push('./pivottreemap/pivottreemap');\r\n return this;\r\n }\r\n ejWaitingPopup(): EjConfigBuilder {\r\n this.resources.push('./waitingpopup/waitingpopup');\r\n return this;\r\n }\r\n ejReportViewer(): EjConfigBuilder {\r\n this.resources.push('./reportviewer/reportviewer');\r\n return this;\r\n }\r\n ejSchedule(): EjConfigBuilder {\r\n this.resources.push('./schedule/schedule');\r\n this.resources.push('./schedule/scheduleresource');\r\n return this;\r\n }\r\n ejUploadbox(): EjConfigBuilder {\r\n this.resources.push('./uploadbox/uploadbox');\r\n return this;\r\n }\r\n ejSignature(): EjConfigBuilder {\r\n this.resources.push('./signature/signature');\r\n return this;\r\n }\r\n ejTooltip(): EjConfigBuilder {\r\n this.resources.push('./tooltip/tooltip');\r\n return this;\r\n }\r\n ejTemplate(): EjConfigBuilder {\r\n this.resources.push('./common/template');\r\n return this;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["config-builder.js"],"names":["EjConfigBuilder","resources","useGlobalResources","useAll","ejGrid","ejChart","ejSunburstChart","ejMap","ejTreeMap","ejRangeNavigator","ejDiagram","ejHeatMap","ejHeatMapLegend","ejSparkline","ejSymbolPalette","ejOverview","ejPager","ejBulletGraph","ejCircularGauge","ejLinearGauge","ejDigitalGauge","ejSplitter","ejDatePicker","ejGantt","ejTreeGrid","ejColorPicker","ejDialog","ejScroller","ejBarcode","ejPdfViewer","ejNumericTextbox","ejCurrencyTextbox","ejPercentageTextbox","ejTimePicker","ejToolbar","ejMenu","ejMaskEdit","ejTreeView","ejKanban","ejRibbon","ejSpreadsheet","ejRating","ejListBox","ejListView","ejNavigationDrawer","ejRotator","ejRTE","ejDropDownList","ejAutocomplete","ejRadialMenu","ejRadialSlider","ejTile","ejAccordion","ejTab","ejCheckBox","ejRadioButton","ejToggleButton","ejSplitButton","ejGroupButton","ejDateTimePicker","ejDateRangePicker","ejProgressBar","ejTagCloud","ejButton","ejSlider","ejFileExplorer","ejPivotGrid","ejPivotChart","ejPivotGauge","ejPivotSchemaDesigner","ejPivotTreeMap","ejWaitingPopup","ejReportViewer","ejSchedule","ejUploadbox","ejSignature","ejTooltip","ejSpellCheck","ejTemplate","withoutGlobalResources","push"],"mappings":"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","file":"../../config-builder.js","sourcesContent":["/**\r\n* Plugin configuration builder\r\n*/\r\nexport class EjConfigBuilder {\r\n\r\n resources: string[] = [];\r\n useGlobalResources: boolean = true;\r\n\r\n /**\r\n * Globally register all EJ wrappers including templating support\r\n */\r\n useAll() : EjConfigBuilder {\r\n this.ejGrid()\r\n .ejChart()\r\n .ejSunburstChart()\r\n .ejMap()\r\n .ejTreeMap()\r\n .ejRangeNavigator()\r\n .ejDiagram()\r\n .ejHeatMap()\r\n .ejHeatMapLegend()\r\n .ejSparkline()\r\n .ejSymbolPalette()\r\n .ejOverview()\r\n .ejPager()\r\n .ejBulletGraph()\r\n .ejCircularGauge()\r\n .ejLinearGauge()\r\n .ejDigitalGauge()\r\n .ejSplitter()\r\n .ejDatePicker()\r\n .ejGantt()\r\n .ejTreeGrid()\r\n .ejColorPicker()\r\n .ejDialog()\r\n .ejScroller()\r\n .ejBarcode()\r\n .ejPdfViewer()\r\n .ejNumericTextbox()\r\n .ejCurrencyTextbox()\r\n .ejPercentageTextbox()\r\n .ejTimePicker()\r\n .ejToolbar()\r\n .ejMenu()\r\n .ejMaskEdit()\r\n .ejTreeView()\r\n .ejKanban()\r\n .ejRibbon()\r\n .ejSpreadsheet()\r\n .ejRating()\r\n .ejListBox()\r\n .ejListView()\r\n .ejNavigationDrawer()\r\n .ejRotator()\r\n .ejRTE()\r\n .ejDropDownList()\r\n .ejAutocomplete()\r\n .ejRadialMenu()\r\n .ejRadialSlider()\r\n .ejTile()\r\n .ejAccordion()\r\n .ejTab()\r\n .ejCheckBox()\r\n .ejRadioButton()\r\n .ejToggleButton()\r\n .ejSplitButton()\r\n .ejGroupButton()\r\n .ejDateTimePicker()\r\n .ejDateRangePicker()\r\n .ejProgressBar()\r\n .ejTagCloud()\r\n .ejButton()\r\n .ejSlider()\r\n .ejFileExplorer()\r\n .ejPivotGrid()\r\n .ejPivotChart()\r\n .ejPivotGauge()\r\n .ejPivotSchemaDesigner()\r\n .ejPivotTreeMap()\r\n .ejWaitingPopup()\r\n .ejReportViewer()\r\n .ejSchedule()\r\n .ejUploadbox()\r\n .ejSignature()\r\n .ejTooltip()\r\n .ejSpellCheck()\r\n .ejTemplate();\r\n return this;\r\n }\r\n /**\r\n * Don't globalize any resources\r\n * Allows you to import wrappers yourself via \r\n */\r\n withoutGlobalResources(): EjConfigBuilder {\r\n this.useGlobalResources = false;\r\n return this;\r\n }\r\n ejGrid(): EjConfigBuilder {\r\n this.resources.push('./grid/grid');\r\n this.resources.push('./grid/column');\r\n return this;\r\n }\r\n ejChart(): EjConfigBuilder {\r\n this.resources.push('./chart/chart');\r\n this.resources.push('./chart/series');\r\n return this;\r\n }\r\n ejSunburstChart(): EjConfigBuilder {\r\n this.resources.push('./sunburstchart/sunburstchart');\r\n this.resources.push('./sunburstchart/sunburstlevels');\r\n return this;\r\n }\r\n ejMap(): EjConfigBuilder {\r\n this.resources.push('./map/map');\r\n this.resources.push('./map/layer');\r\n return this;\r\n }\r\n ejTreeMap(): EjConfigBuilder {\r\n this.resources.push('./treemap/treemap');\r\n this.resources.push('./treemap/level');\r\n return this;\r\n }\r\n ejRangeNavigator(): EjConfigBuilder {\r\n this.resources.push('./rangenavigator/rangenavigator');\r\n this.resources.push('./rangenavigator/rangeseries');\r\n return this;\r\n }\r\n ejDiagram(): EjConfigBuilder {\r\n this.resources.push('./diagram/diagram');\r\n return this;\r\n }\r\n ejHeatMap(): EjConfigBuilder {\r\n this.resources.push('./heatmap/heatmap');\r\n return this;\r\n }\r\n ejHeatMapLegend(): EjConfigBuilder {\r\n this.resources.push('./heatmaplegend/heatmaplegend');\r\n return this;\r\n }\r\n ejSparkline(): EjConfigBuilder {\r\n this.resources.push('./sparkline/sparkline');\r\n return this;\r\n }\r\n ejSymbolPalette(): EjConfigBuilder {\r\n this.resources.push('./symbolpalette/symbolpalette');\r\n return this;\r\n }\r\n ejOverview(): EjConfigBuilder {\r\n this.resources.push('./overview/overview');\r\n return this;\r\n }\r\n ejPager(): EjConfigBuilder {\r\n this.resources.push('./pager/pager');\r\n return this;\r\n }\r\n ejBulletGraph(): EjConfigBuilder {\r\n this.resources.push('./bulletgraph/bulletgraph');\r\n this.resources.push('./bulletgraph/qualitativerange');\r\n return this;\r\n }\r\n ejCircularGauge(): EjConfigBuilder {\r\n this.resources.push('./circulargauge/circulargauge');\r\n return this;\r\n }\r\n ejLinearGauge(): EjConfigBuilder {\r\n this.resources.push('./lineargauge/lineargauge');\r\n return this;\r\n }\r\n ejDigitalGauge(): EjConfigBuilder {\r\n this.resources.push('./digitalgauge/digitalgauge');\r\n return this;\r\n }\r\n ejSplitter(): EjConfigBuilder {\r\n this.resources.push('./splitter/splitter');\r\n return this;\r\n }\r\n ejDatePicker(): EjConfigBuilder {\r\n this.resources.push('./datepicker/datepicker');\r\n return this;\r\n }\r\n ejGantt(): EjConfigBuilder {\r\n this.resources.push('./gantt/gantt');\r\n return this;\r\n }\r\n ejTreeGrid(): EjConfigBuilder {\r\n this.resources.push('./treegrid/treegrid');\r\n this.resources.push('./treegrid/treegridcolumn');\r\n return this;\r\n }\r\n ejColorPicker(): EjConfigBuilder {\r\n this.resources.push('./colorpicker/colorpicker');\r\n return this;\r\n }\r\n ejDialog(): EjConfigBuilder {\r\n this.resources.push('./dialog/dialog');\r\n return this;\r\n }\r\n ejScroller(): EjConfigBuilder {\r\n this.resources.push('./scroller/scroller');\r\n return this;\r\n }\r\n ejBarcode(): EjConfigBuilder {\r\n this.resources.push('./barcode/barcode');\r\n return this;\r\n }\r\n ejPdfViewer(): EjConfigBuilder {\r\n this.resources.push('./pdfviewer/pdfviewer');\r\n return this;\r\n }\r\n ejNumericTextbox(): EjConfigBuilder {\r\n this.resources.push('./numerictextbox/numerictextbox');\r\n return this;\r\n }\r\n ejCurrencyTextbox(): EjConfigBuilder {\r\n this.resources.push('./currencytextbox/currencytextbox');\r\n return this;\r\n }\r\n ejPercentageTextbox(): EjConfigBuilder {\r\n this.resources.push('./percentagetextbox/percentagetextbox');\r\n return this;\r\n }\r\n ejTimePicker(): EjConfigBuilder {\r\n this.resources.push('./timepicker/timepicker');\r\n return this;\r\n }\r\n ejToolbar(): EjConfigBuilder {\r\n this.resources.push('./toolbar/toolbar');\r\n return this;\r\n }\r\n ejMenu(): EjConfigBuilder {\r\n this.resources.push('./menu/menu');\r\n return this;\r\n }\r\n ejMaskEdit(): EjConfigBuilder {\r\n this.resources.push('./maskedit/maskedit');\r\n return this;\r\n }\r\n ejTreeView(): EjConfigBuilder {\r\n this.resources.push('./treeview/treeview');\r\n return this;\r\n }\r\n ejKanban(): EjConfigBuilder {\r\n this.resources.push('./kanban/kanban');\r\n this.resources.push('./kanban/kanbancolumn');\r\n return this;\r\n }\r\n ejRibbon(): EjConfigBuilder {\r\n this.resources.push('./ribbon/ribbon');\r\n return this;\r\n }\r\n ejSpreadsheet(): EjConfigBuilder {\r\n this.resources.push('./spreadsheet/spreadsheet');\r\n this.resources.push('./spreadsheet/sheet');\r\n return this;\r\n }\r\n ejRating(): EjConfigBuilder {\r\n this.resources.push('./rating/rating');\r\n return this;\r\n }\r\n ejListBox(): EjConfigBuilder {\r\n this.resources.push('./listbox/listbox');\r\n return this;\r\n }\r\n ejListView(): EjConfigBuilder {\r\n this.resources.push('./listview/listview');\r\n return this;\r\n }\r\n ejNavigationDrawer(): EjConfigBuilder {\r\n this.resources.push('./navigationdrawer/navigationdrawer');\r\n return this;\r\n }\r\n ejRotator(): EjConfigBuilder {\r\n this.resources.push('./rotator/rotator');\r\n return this;\r\n }\r\n ejRTE(): EjConfigBuilder {\r\n this.resources.push('./rte/rte');\r\n return this;\r\n }\r\n ejDropDownList(): EjConfigBuilder {\r\n this.resources.push('./dropdownlist/dropdownlist');\r\n return this;\r\n }\r\n ejAutocomplete(): EjConfigBuilder {\r\n this.resources.push('./autocomplete/autocomplete');\r\n return this;\r\n }\r\n ejRadialMenu(): EjConfigBuilder {\r\n this.resources.push('./radialmenu/radialmenu');\r\n this.resources.push('./radialmenu/item');\r\n return this;\r\n }\r\n ejRadialSlider(): EjConfigBuilder {\r\n this.resources.push('./radialslider/radialslider');\r\n return this;\r\n }\r\n ejTile(): EjConfigBuilder {\r\n this.resources.push('./tile/tile');\r\n return this;\r\n }\r\n ejAccordion(): EjConfigBuilder {\r\n this.resources.push('./accordion/accordion');\r\n return this;\r\n }\r\n ejTab(): EjConfigBuilder {\r\n this.resources.push('./tab/tab');\r\n return this;\r\n }\r\n ejCheckBox(): EjConfigBuilder {\r\n this.resources.push('./checkbox/checkbox');\r\n return this;\r\n }\r\n ejRadioButton(): EjConfigBuilder {\r\n this.resources.push('./radiobutton/radiobutton');\r\n return this;\r\n }\r\n ejToggleButton(): EjConfigBuilder {\r\n this.resources.push('./togglebutton/togglebutton');\r\n return this;\r\n }\r\n ejSplitButton(): EjConfigBuilder {\r\n this.resources.push('./splitbutton/splitbutton');\r\n return this;\r\n }\r\n ejGroupButton(): EjConfigBuilder {\r\n this.resources.push('./groupbutton/groupbutton');\r\n return this;\r\n }\r\n ejDateTimePicker(): EjConfigBuilder {\r\n this.resources.push('./datetimepicker/datetimepicker');\r\n return this;\r\n }\r\n ejDateRangePicker(): EjConfigBuilder {\r\n this.resources.push('./daterangepicker/daterangepicker');\r\n return this;\r\n }\r\n ejProgressBar(): EjConfigBuilder {\r\n this.resources.push('./progressbar/progressbar');\r\n return this;\r\n }\r\n ejTagCloud(): EjConfigBuilder {\r\n this.resources.push('./tagcloud/tagcloud');\r\n return this;\r\n }\r\n ejButton(): EjConfigBuilder {\r\n this.resources.push('./button/button');\r\n return this;\r\n }\r\n ejSlider(): EjConfigBuilder {\r\n this.resources.push('./slider/slider');\r\n return this;\r\n }\r\n ejFileExplorer(): EjConfigBuilder {\r\n this.resources.push('./fileexplorer/fileexplorer');\r\n return this;\r\n }\r\n ejPivotGrid(): EjConfigBuilder {\r\n this.resources.push('./pivotgrid/pivotgrid');\r\n return this;\r\n }\r\n ejPivotChart(): EjConfigBuilder {\r\n this.resources.push('./pivotchart/pivotchart');\r\n return this;\r\n }\r\n ejPivotGauge(): EjConfigBuilder {\r\n this.resources.push('./pivotgauge/pivotgauge');\r\n return this;\r\n }\r\n ejPivotSchemaDesigner(): EjConfigBuilder {\r\n this.resources.push('./pivotschemadesigner/pivotschemadesigner');\r\n return this;\r\n }\r\n ejPivotTreeMap(): EjConfigBuilder {\r\n this.resources.push('./pivottreemap/pivottreemap');\r\n return this;\r\n }\r\n ejWaitingPopup(): EjConfigBuilder {\r\n this.resources.push('./waitingpopup/waitingpopup');\r\n return this;\r\n }\r\n ejReportViewer(): EjConfigBuilder {\r\n this.resources.push('./reportviewer/reportviewer');\r\n return this;\r\n }\r\n ejSchedule(): EjConfigBuilder {\r\n this.resources.push('./schedule/schedule');\r\n this.resources.push('./schedule/scheduleresource');\r\n return this;\r\n }\r\n ejUploadbox(): EjConfigBuilder {\r\n this.resources.push('./uploadbox/uploadbox');\r\n return this;\r\n }\r\n ejSignature(): EjConfigBuilder {\r\n this.resources.push('./signature/signature');\r\n return this;\r\n }\r\n ejTooltip(): EjConfigBuilder {\r\n this.resources.push('./tooltip/tooltip');\r\n return this;\r\n }\r\n ejSpellCheck(): EjConfigBuilder {\r\n this.resources.push('./spellcheck/spellcheck');\r\n return this;\r\n }\r\n ejTemplate(): EjConfigBuilder {\r\n this.resources.push('./common/template');\r\n return this;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/currencytextbox/currencytextbox.js.map b/dist/dev/dist/dev/currencytextbox/currencytextbox.js.map
index d7b2ad5ad..fa612b07b 100644
--- a/dist/dev/dist/dev/currencytextbox/currencytextbox.js.map
+++ b/dist/dev/dist/dev/currencytextbox/currencytextbox.js.map
@@ -1 +1 @@
-{"version":3,"sources":["currencytextbox/currencytextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejCurrencyTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;mCAOZC,iB,WAHZF,gBAAmBF,UAAUK,eAA7B,sB,UACAJ,kBAAkB,mBAAlB,EAAuC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAvC,EAAqc,EAArc,EAAyc,EAAC,aAAa,WAAd,EAAzc,C,UACAE,OAAOG,OAAP,C;;;AAEC,mCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALoCR,U","file":"../../../currencytextbox/currencytextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}currency-textbox`)\r\n@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejCurrencyTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["currencytextbox/currencytextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejCurrencyTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;mCAOZC,iB,WAHZF,gBAAmBF,UAAUK,eAA7B,sB,UACAJ,kBAAkB,mBAAlB,EAAuC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAvC,EAAqc,CAAC,OAAD,CAArc,EAAgd,EAAC,aAAa,WAAd,EAAhd,C,UACAE,OAAOG,OAAP,C;;;AAEC,mCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALoCR,U","file":"../../../currencytextbox/currencytextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}currency-textbox`)\r\n@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejCurrencyTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/datepicker/datepicker.js.map b/dist/dev/dist/dev/datepicker/datepicker.js.map
index bbfa5fa04..ae4b6e3ee 100644
--- a/dist/dev/dist/dev/datepicker/datepicker.js.map
+++ b/dist/dev/dist/dev/datepicker/datepicker.js.map
@@ -1 +1 @@
-{"version":3,"sources":["datepicker/datepicker.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejDatePicker","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;8BAOZC,Y,WAHZF,gBAAmBF,UAAUK,eAA7B,iB,UACAJ,kBAAkB,cAAlB,EAAkC,CAAC,WAAD,EAAc,gBAAd,EAAgC,eAAhC,EAAiD,YAAjD,EAA+D,UAA/D,EAA2E,YAA3E,EAAyF,iBAAzF,EAA4G,YAA5G,EAA0H,eAA1H,EAA2I,iBAA3I,EAA8J,SAA9J,EAAyK,mBAAzK,EAA8L,WAA9L,EAA2M,kBAA3M,EAA+N,QAA/N,EAAyO,cAAzO,EAAyP,QAAzP,EAAmQ,kBAAnQ,EAAuR,kBAAvR,EAA2S,gBAA3S,EAA6T,QAA7T,EAAuU,SAAvU,EAAkV,SAAlV,EAA6V,UAA7V,EAAyW,mBAAzW,EAA8X,YAA9X,EAA4Y,iBAA5Y,EAA+Z,iBAA/Z,EAAkb,mBAAlb,EAAuc,aAAvc,EAAsd,cAAtd,EAAse,UAAte,EAAkf,YAAlf,EAAggB,YAAhgB,EAA8gB,eAA9gB,EAA+hB,mBAA/hB,EAAojB,iBAApjB,EAAukB,OAAvkB,EAAglB,eAAhlB,EAAimB,OAAjmB,CAAlC,EAA6oB,CAAC,OAAD,CAA7oB,EAAwpB,EAAC,aAAa,WAAd,EAAxpB,C,UACAE,OAAOG,OAAP,C;;;AAEC,8BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QAL+BR,U","file":"../../../datepicker/datepicker.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.datepicker.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}date-picker`)\r\n@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejDatePicker extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["datepicker/datepicker.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejDatePicker","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;8BAOZC,Y,WAHZF,gBAAmBF,UAAUK,eAA7B,iB,UACAJ,kBAAkB,cAAlB,EAAkC,CAAC,WAAD,EAAc,gBAAd,EAAgC,eAAhC,EAAiD,YAAjD,EAA+D,UAA/D,EAA2E,YAA3E,EAAyF,iBAAzF,EAA4G,YAA5G,EAA0H,eAA1H,EAA2I,iBAA3I,EAA8J,SAA9J,EAAyK,mBAAzK,EAA8L,WAA9L,EAA2M,kBAA3M,EAA+N,QAA/N,EAAyO,cAAzO,EAAyP,QAAzP,EAAmQ,kBAAnQ,EAAuR,kBAAvR,EAA2S,gBAA3S,EAA6T,QAA7T,EAAuU,SAAvU,EAAkV,SAAlV,EAA6V,UAA7V,EAAyW,mBAAzW,EAA8X,YAA9X,EAA4Y,iBAA5Y,EAA+Z,iBAA/Z,EAAkb,mBAAlb,EAAuc,aAAvc,EAAsd,cAAtd,EAAse,UAAte,EAAkf,YAAlf,EAAggB,YAAhgB,EAA8gB,eAA9gB,EAA+hB,mBAA/hB,EAAojB,iBAApjB,EAAukB,OAAvkB,EAAglB,eAAhlB,EAAimB,YAAjmB,EAA+mB,OAA/mB,CAAlC,EAA2pB,CAAC,OAAD,CAA3pB,EAAsqB,EAAC,aAAa,WAAd,EAAtqB,C,UACAE,OAAOG,OAAP,C;;;AAEC,8BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QAL+BR,U","file":"../../../datepicker/datepicker.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.datepicker.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}date-picker`)\r\n@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejDatePicker extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/daterangepicker/daterangepicker.js.map b/dist/dev/dist/dev/daterangepicker/daterangepicker.js.map
index 6722ed52f..c8c0220ca 100644
--- a/dist/dev/dist/dev/daterangepicker/daterangepicker.js.map
+++ b/dist/dev/dist/dev/daterangepicker/daterangepicker.js.map
@@ -1 +1 @@
-{"version":3,"sources":["daterangepicker/daterangepicker.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejDateRangePicker","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;mCAOZC,iB,WAHZF,gBAAmBF,UAAUK,eAA7B,uB,UACAJ,kBAAkB,mBAAlB,EAAuC,CAAC,WAAD,EAAc,YAAd,EAA4B,UAA5B,EAAwC,YAAxC,EAAsD,kBAAtD,EAA0E,SAA1E,EAAqF,mBAArF,EAA0G,SAA1G,EAAqH,QAArH,EAA+H,QAA/H,EAAyI,QAAzI,EAAmJ,WAAnJ,EAAgK,iBAAhK,EAAmL,mBAAnL,EAAwM,YAAxM,EAAsN,OAAtN,EAA+N,eAA/N,EAAgP,OAAhP,CAAvC,EAAiS,CAAC,OAAD,CAAjS,C,UACAE,OAAOG,OAAP,C;;;AAEC,mCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALoCR,U","file":"../../../daterangepicker/daterangepicker.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.daterangepicker.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}date-range-picker`)\r\n@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])\r\n@inject(Element)\r\nexport class ejDateRangePicker extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["daterangepicker/daterangepicker.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejDateRangePicker","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;mCAOZC,iB,WAHZF,gBAAmBF,UAAUK,eAA7B,uB,UACAJ,kBAAkB,mBAAlB,EAAuC,CAAC,WAAD,EAAc,YAAd,EAA4B,UAA5B,EAAwC,YAAxC,EAAsD,kBAAtD,EAA0E,SAA1E,EAAqF,mBAArF,EAA0G,SAA1G,EAAqH,QAArH,EAA+H,QAA/H,EAAyI,QAAzI,EAAmJ,WAAnJ,EAAgK,WAAhK,EAA6K,iBAA7K,EAAgM,mBAAhM,EAAqN,YAArN,EAAmO,OAAnO,EAA4O,eAA5O,EAA6P,OAA7P,CAAvC,EAA8S,CAAC,OAAD,CAA9S,C,UACAE,OAAOG,OAAP,C;;;AAEC,mCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALoCR,U","file":"../../../daterangepicker/daterangepicker.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.daterangepicker.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}date-range-picker`)\r\n@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])\r\n@inject(Element)\r\nexport class ejDateRangePicker extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/diagram/diagram.js.map b/dist/dev/dist/dev/diagram/diagram.js.map
index 03caa1be5..f1479e098 100644
--- a/dist/dev/dist/dev/diagram/diagram.js.map
+++ b/dist/dev/dist/dev/diagram/diagram.js.map
@@ -1 +1 @@
-{"version":3,"sources":["diagram/diagram.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejDiagram","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;2BAQtBC,S,WAJZH,cAAiBF,UAAUM,aAA3B,a,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,WAAlB,EAA+B,CAAC,iBAAD,EAAoB,iBAApB,EAAuC,iBAAvC,EAA0D,gBAA1D,EAA4E,YAA5E,EAA0F,mBAA1F,EAA+G,aAA/G,EAA8H,aAA9H,EAA6I,oBAA7I,EAAmK,iBAAnK,EAAsL,UAAtL,EAAkM,kBAAlM,EAAsN,mBAAtN,EAA2O,QAA3O,EAAqP,gBAArP,EAAuQ,oBAAvQ,EAA6R,QAA7R,EAAuS,QAAvS,EAAiT,OAAjT,EAA0T,cAA1T,EAA0U,cAA1U,EAA0V,gBAA1V,EAA4W,eAA5W,EAA6X,aAA7X,EAA4Y,cAA5Y,EAA4Z,MAA5Z,EAAoa,SAApa,EAA+a,OAA/a,EAAwb,YAAxb,CAA/B,C,UACAG,OAAOI,OAAP,C;;;AAEC,2BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJ4BV,U","file":"../../../diagram/diagram.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/datavisualization/ej.diagram.min';\r\n\r\n@customElement(`${constants.elementPrefix}diagram`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])\r\n@inject(Element)\r\nexport class ejDiagram extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["diagram/diagram.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejDiagram","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;2BAQtBC,S,WAJZH,cAAiBF,UAAUM,aAA3B,a,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,WAAlB,EAA+B,CAAC,iBAAD,EAAoB,iBAApB,EAAuC,iBAAvC,EAA0D,gBAA1D,EAA4E,YAA5E,EAA0F,mBAA1F,EAA+G,aAA/G,EAA8H,aAA9H,EAA6I,oBAA7I,EAAmK,iBAAnK,EAAsL,UAAtL,EAAkM,kBAAlM,EAAsN,mBAAtN,EAA2O,QAA3O,EAAqP,gBAArP,EAAuQ,oBAAvQ,EAA6R,QAA7R,EAAuS,QAAvS,EAAiT,OAAjT,EAA0T,cAA1T,EAA0U,cAA1U,EAA0V,gBAA1V,EAA4W,eAA5W,EAA6X,aAA7X,EAA4Y,eAA5Y,EAA6Z,cAA7Z,EAA6a,MAA7a,EAAqb,SAArb,EAAgc,OAAhc,EAAyc,YAAzc,CAA/B,C,UACAG,OAAOI,OAAP,C;;;AAEC,2BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJ4BV,U","file":"../../../diagram/diagram.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/datavisualization/ej.diagram.min';\r\n\r\n@customElement(`${constants.elementPrefix}diagram`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])\r\n@inject(Element)\r\nexport class ejDiagram extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/fileexplorer/fileexplorer.js.map b/dist/dev/dist/dev/fileexplorer/fileexplorer.js.map
index 70231dd16..4483e019a 100644
--- a/dist/dev/dist/dev/fileexplorer/fileexplorer.js.map
+++ b/dist/dev/dist/dev/fileexplorer/fileexplorer.js.map
@@ -1 +1 @@
-{"version":3,"sources":["fileexplorer/fileexplorer.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejFileExplorer","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;gCAQtBC,c,WAJZH,cAAiBF,UAAUM,aAA3B,mB,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,gBAAlB,EAAoC,CAAC,YAAD,EAAe,cAAf,EAA+B,cAA/B,EAA+C,kBAA/C,EAAmE,yBAAnE,EAA8F,qBAA9F,EAAqH,qBAArH,EAA4I,UAA5I,EAAwJ,mBAAxJ,EAA6K,cAA7K,EAA6L,WAA7L,EAA0M,yBAA1M,EAAqO,WAArO,EAAkP,gBAAlP,EAAoQ,cAApQ,EAAoR,QAApR,EAA8R,cAA9R,EAA8S,QAA9S,EAAwT,QAAxT,EAAkU,WAAlU,EAA+U,UAA/U,EAA2V,WAA3V,EAAwW,UAAxW,EAAoX,MAApX,EAA4X,gBAA5X,EAA8Y,eAA9Y,EAA+Z,cAA/Z,EAA+a,iBAA/a,EAAkc,YAAlc,EAAgd,mBAAhd,EAAqe,eAAre,EAAsf,aAAtf,EAAqgB,oBAArgB,EAA2hB,OAA3hB,EAAoiB,WAApiB,EAAijB,gBAAjjB,EAAmkB,OAAnkB,CAApC,EAAinB,EAAjnB,EAAqnB,EAAC,aAAa,WAAd,EAArnB,C,UACAG,OAAOI,OAAP,C;;;AAEC,gCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJiCV,U","file":"../../../fileexplorer/fileexplorer.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.fileexplorer.min';\r\n\r\n@customElement(`${constants.elementPrefix}file-explorer`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejFileExplorer extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["fileexplorer/fileexplorer.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejFileExplorer","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;gCAQtBC,c,WAJZH,cAAiBF,UAAUM,aAA3B,mB,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,gBAAlB,EAAoC,CAAC,YAAD,EAAe,cAAf,EAA+B,cAA/B,EAA+C,kBAA/C,EAAmE,yBAAnE,EAA8F,qBAA9F,EAAqH,qBAArH,EAA4I,UAA5I,EAAwJ,mBAAxJ,EAA6K,cAA7K,EAA6L,WAA7L,EAA0M,yBAA1M,EAAqO,WAArO,EAAkP,gBAAlP,EAAoQ,cAApQ,EAAoR,QAApR,EAA8R,cAA9R,EAA8S,QAA9S,EAAwT,QAAxT,EAAkU,WAAlU,EAA+U,UAA/U,EAA2V,WAA3V,EAAwW,UAAxW,EAAoX,MAApX,EAA4X,gBAA5X,EAA8Y,gBAA9Y,EAAga,eAAha,EAAib,cAAjb,EAAic,iBAAjc,EAAod,YAApd,EAAke,mBAAle,EAAuf,eAAvf,EAAwgB,aAAxgB,EAAuhB,oBAAvhB,EAA6iB,OAA7iB,EAAsjB,WAAtjB,EAAmkB,gBAAnkB,EAAqlB,OAArlB,CAApC,EAAmoB,EAAnoB,EAAuoB,EAAC,aAAa,WAAd,EAAvoB,C,UACAG,OAAOI,OAAP,C;;;AAEC,gCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJiCV,U","file":"../../../fileexplorer/fileexplorer.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.fileexplorer.min';\r\n\r\n@customElement(`${constants.elementPrefix}file-explorer`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejFileExplorer extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/gantt/gantt.js.map b/dist/dev/dist/dev/gantt/gantt.js.map
index cbd669e25..d0ad60ccb 100644
--- a/dist/dev/dist/dev/gantt/gantt.js.map
+++ b/dist/dev/dist/dev/gantt/gantt.js.map
@@ -1 +1 @@
-{"version":3,"sources":["gantt/gantt.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejGantt","elementPrefix","aureliaTemplateString","Element","element"],"mappings":"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","file":"../../../gantt/gantt.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.gantt.min';\r\n\r\n@customElement(`${constants.elementPrefix}gantt`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])\r\n@inject(Element)\r\nexport class ejGantt extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["gantt/gantt.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejGantt","elementPrefix","aureliaTemplateString","Element","element"],"mappings":"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","file":"../../../gantt/gantt.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.gantt.min';\r\n\r\n@customElement(`${constants.elementPrefix}gantt`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])\r\n@inject(Element)\r\nexport class ejGantt extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/numerictextbox/numerictextbox.js.map b/dist/dev/dist/dev/numerictextbox/numerictextbox.js.map
index 38012150a..0d60963b4 100644
--- a/dist/dev/dist/dev/numerictextbox/numerictextbox.js.map
+++ b/dist/dev/dist/dev/numerictextbox/numerictextbox.js.map
@@ -1 +1 @@
-{"version":3,"sources":["numerictextbox/numerictextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejNumericTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;kCAOZC,gB,WAHZF,gBAAmBF,UAAUK,eAA7B,qB,UACAJ,kBAAkB,kBAAlB,EAAsC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAtC,EAAoc,EAApc,EAAwc,EAAC,aAAa,WAAd,EAAxc,C,UACAE,OAAOG,OAAP,C;;;AAEC,kCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALmCR,U","file":"../../../numerictextbox/numerictextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}numeric-textbox`)\r\n@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejNumericTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["numerictextbox/numerictextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejNumericTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;kCAOZC,gB,WAHZF,gBAAmBF,UAAUK,eAA7B,qB,UACAJ,kBAAkB,kBAAlB,EAAsC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAtC,EAAoc,CAAC,OAAD,CAApc,EAA+c,EAAC,aAAa,WAAd,EAA/c,C,UACAE,OAAOG,OAAP,C;;;AAEC,kCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALmCR,U","file":"../../../numerictextbox/numerictextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}numeric-textbox`)\r\n@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejNumericTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/pager/pager.js.map b/dist/dev/dist/dev/pager/pager.js.map
index 90aed54b0..81271cc49 100644
--- a/dist/dev/dist/dev/pager/pager.js.map
+++ b/dist/dev/dist/dev/pager/pager.js.map
@@ -1 +1 @@
-{"version":3,"sources":["pager/pager.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejPager","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;yBAQtBC,O,WAJZH,cAAiBF,UAAUM,aAA3B,W,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,SAAlB,EAA6B,CAAC,YAAD,EAAe,aAAf,EAA8B,uBAA9B,EAAuD,mBAAvD,EAA4E,WAA5E,EAAyF,iBAAzF,EAA4G,QAA5G,EAAsH,WAAtH,EAAmI,UAAnI,EAA+I,YAA/I,EAA6J,mBAA7J,EAAkL,cAAlL,CAA7B,EAAgO,EAAhO,EAAoO,EAAC,aAAa,WAAd,EAApO,C,UACAG,OAAOI,OAAP,C;;;AAEC,yBAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJ0BV,U","file":"../../../pager/pager.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.pager.min';\r\n\r\n@customElement(`${constants.elementPrefix}pager`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejPager extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["pager/pager.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejPager","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;yBAQtBC,O,WAJZH,cAAiBF,UAAUM,aAA3B,W,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,SAAlB,EAA6B,CAAC,YAAD,EAAe,aAAf,EAA8B,uBAA9B,EAAuD,mBAAvD,EAA4E,WAA5E,EAAyF,iBAAzF,EAA4G,QAA5G,EAAsH,WAAtH,EAAmI,UAAnI,EAA+I,cAA/I,EAA+J,YAA/J,EAA6K,mBAA7K,EAAkM,cAAlM,CAA7B,EAAgP,EAAhP,EAAoP,EAAC,aAAa,WAAd,EAApP,C,UACAG,OAAOI,OAAP,C;;;AAEC,yBAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJ0BV,U","file":"../../../pager/pager.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.pager.min';\r\n\r\n@customElement(`${constants.elementPrefix}pager`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejPager extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/percentagetextbox/percentagetextbox.js.map b/dist/dev/dist/dev/percentagetextbox/percentagetextbox.js.map
index 17d935821..03aebe640 100644
--- a/dist/dev/dist/dev/percentagetextbox/percentagetextbox.js.map
+++ b/dist/dev/dist/dev/percentagetextbox/percentagetextbox.js.map
@@ -1 +1 @@
-{"version":3,"sources":["percentagetextbox/percentagetextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejPercentageTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;qCAOZC,mB,WAHZF,gBAAmBF,UAAUK,eAA7B,wB,UACAJ,kBAAkB,qBAAlB,EAAyC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAzC,EAAuc,EAAvc,EAA2c,EAAC,aAAa,WAAd,EAA3c,C,UACAE,OAAOG,OAAP,C;;;AAEC,qCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALsCR,U","file":"../../../percentagetextbox/percentagetextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}percentage-textbox`)\r\n@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejPercentageTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["percentagetextbox/percentagetextbox.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejPercentageTextbox","attributePrefix","Element","element","isEditor"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;qCAOZC,mB,WAHZF,gBAAmBF,UAAUK,eAA7B,wB,UACAJ,kBAAkB,qBAAlB,EAAyC,CAAC,gBAAD,EAAmB,UAAnB,EAA+B,eAA/B,EAAgD,SAAhD,EAA2D,mBAA3D,EAAgF,WAAhF,EAA6F,kBAA7F,EAAiH,WAAjH,EAA8H,gBAA9H,EAAgJ,QAAhJ,EAA0J,gBAA1J,EAA4K,eAA5K,EAA6L,QAA7L,EAAuM,UAAvM,EAAmN,UAAnN,EAA+N,MAA/N,EAAuO,iBAAvO,EAA0P,iBAA1P,EAA6Q,UAA7Q,EAAyR,mBAAzR,EAA8S,gBAA9S,EAAgU,gBAAhU,EAAkV,mBAAlV,EAAuW,iBAAvW,EAA0X,OAA1X,EAAmY,eAAnY,EAAoZ,OAApZ,CAAzC,EAAuc,CAAC,OAAD,CAAvc,EAAkd,EAAC,aAAa,WAAd,EAAld,C,UACAE,OAAOG,OAAP,C;;;AAEC,qCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKC,QAAL,GAAgB,IAAhB;AACA,gBAAKD,OAAL,GAAeA,OAAf;AAHmB;AAIpB;;;QALsCR,U","file":"../../../percentagetextbox/percentagetextbox.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}percentage-textbox`)\r\n@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})\r\n@inject(Element)\r\nexport class ejPercentageTextbox extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.isEditor = true;\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/radialslider/radialslider.js.map b/dist/dev/dist/dev/radialslider/radialslider.js.map
index d3231357b..211897ae3 100644
--- a/dist/dev/dist/dev/radialslider/radialslider.js.map
+++ b/dist/dev/dist/dev/radialslider/radialslider.js.map
@@ -1 +1 @@
-{"version":3,"sources":["radialslider/radialslider.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejRadialSlider","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;gCAQtBC,c,WAJZH,cAAiBF,UAAUM,aAA3B,mB,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,gBAAlB,EAAoC,CAAC,UAAD,EAAa,UAAb,EAAyB,iBAAzB,EAA4C,gBAA5C,EAA8D,UAA9D,EAA0E,QAA1E,EAAoF,uBAApF,EAA6G,qBAA7G,EAAoI,YAApI,EAAkJ,QAAlJ,EAA4J,iBAA5J,EAA+K,YAA/K,EAA6L,aAA7L,EAA4M,OAA5M,EAAqN,OAArN,CAApC,EAAmQ,CAAC,OAAD,EAAU,OAAV,CAAnQ,C,UACAG,OAAOI,OAAP,C;;;AAEC,gCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJiCV,U","file":"../../../radialslider/radialslider.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.radialslider.min';\r\n\r\n@customElement(`${constants.elementPrefix}radial-slider`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])\r\n@inject(Element)\r\nexport class ejRadialSlider extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["radialslider/radialslider.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejRadialSlider","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;gCAQtBC,c,WAJZH,cAAiBF,UAAUM,aAA3B,mB,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,gBAAlB,EAAoC,CAAC,UAAD,EAAa,UAAb,EAAyB,iBAAzB,EAA4C,gBAA5C,EAA8D,UAA9D,EAA0E,QAA1E,EAAoF,uBAApF,EAA6G,qBAA7G,EAAoI,YAApI,EAAkJ,QAAlJ,EAA4J,QAA5J,EAAsK,iBAAtK,EAAyL,YAAzL,EAAuM,aAAvM,EAAsN,OAAtN,EAA+N,OAA/N,CAApC,EAA6Q,CAAC,OAAD,EAAU,OAAV,CAA7Q,C,UACAG,OAAOI,OAAP,C;;;AAEC,gCAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJiCV,U","file":"../../../radialslider/radialslider.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.radialslider.min';\r\n\r\n@customElement(`${constants.elementPrefix}radial-slider`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])\r\n@inject(Element)\r\nexport class ejRadialSlider extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/spellcheck/spellcheck.js.map b/dist/dev/dist/dev/spellcheck/spellcheck.js.map
new file mode 100644
index 000000000..5ae75c5a9
--- /dev/null
+++ b/dist/dev/dist/dev/spellcheck/spellcheck.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["spellcheck/spellcheck.js"],"names":["WidgetBase","constants","generateBindables","customElement","inlineView","inject","ejSpellCheck","elementPrefix","aureliaTemplateString","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,mB,iBAAAA,a;AAAeC,gB,iBAAAA,U;AAAYC,Y,iBAAAA,M;;;8BAQtBC,Y,WAJZH,cAAiBF,UAAUM,aAA3B,iB,UACAH,gBAAcH,UAAUO,qBAAxB,C,UACAN,kBAAkB,cAAlB,EAAkC,CAAC,oBAAD,EAAuB,iBAAvB,EAA0C,QAA1C,EAAoD,oBAApD,EAA0E,aAA1E,EAAyF,qBAAzF,EAAgH,gBAAhH,EAAkI,cAAlI,EAAkJ,sBAAlJ,EAA0K,oBAA1K,CAAlC,C,UACAG,OAAOI,OAAP,C;;;AAEC,8BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJ+BV,U","file":"../../../spellcheck/spellcheck.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customElement, inlineView, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';\r\n\r\n@customElement(`${constants.elementPrefix}spell-check`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate'])\r\n@inject(Element)\r\nexport class ejSpellCheck extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/splitbutton/splitbutton.js.map b/dist/dev/dist/dev/splitbutton/splitbutton.js.map
index 5c1b2b2fa..735fca368 100644
--- a/dist/dev/dist/dev/splitbutton/splitbutton.js.map
+++ b/dist/dev/dist/dev/splitbutton/splitbutton.js.map
@@ -1 +1 @@
-{"version":3,"sources":["splitbutton/splitbutton.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejSplitButton","attributePrefix","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;+BAOZC,a,WAHZF,gBAAmBF,UAAUK,eAA7B,kB,UACAJ,kBAAkB,eAAlB,EAAmC,CAAC,eAAD,EAAkB,YAAlB,EAAgC,aAAhC,EAA+C,UAA/C,EAA2D,SAA3D,EAAsE,WAAtE,EAAmF,QAAnF,EAA6F,gBAA7F,EAA+G,eAA/G,EAAgI,YAAhI,EAA8I,mBAA9I,EAAmK,MAAnK,EAA2K,YAA3K,EAAyL,UAAzL,EAAqM,MAArM,EAA6M,OAA7M,CAAnC,EAA0P,EAA1P,EAA8P,EAAC,aAAa,WAAd,EAA2B,YAAY,UAAvC,EAA9P,C,UACAE,OAAOG,OAAP,C;;;AAEC,+BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJgCR,U","file":"../../../splitbutton/splitbutton.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}split-button`)\r\n@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})\r\n@inject(Element)\r\nexport class ejSplitButton extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["splitbutton/splitbutton.js"],"names":["WidgetBase","constants","generateBindables","customAttribute","inject","ejSplitButton","attributePrefix","Element","element"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,qB,iBAAAA,e;AAAiBC,Y,iBAAAA,M;;;+BAOZC,a,WAHZF,gBAAmBF,UAAUK,eAA7B,kB,UACAJ,kBAAkB,eAAlB,EAAmC,CAAC,eAAD,EAAkB,YAAlB,EAAgC,aAAhC,EAA+C,UAA/C,EAA2D,SAA3D,EAAsE,WAAtE,EAAmF,QAAnF,EAA6F,gBAA7F,EAA+G,eAA/G,EAAgI,YAAhI,EAA8I,mBAA9I,EAAmK,MAAnK,EAA2K,YAA3K,EAAyL,UAAzL,EAAqM,QAArM,EAA+M,MAA/M,EAAuN,OAAvN,CAAnC,EAAoQ,EAApQ,EAAwQ,EAAC,aAAa,WAAd,EAA2B,YAAY,UAAvC,EAAxQ,C,UACAE,OAAOG,OAAP,C;;;AAEC,+BAAYC,OAAZ,EAAqB;AAAA;;AAAA,uDACnB,sBADmB;;AAEnB,gBAAKA,OAAL,GAAeA,OAAf;AAFmB;AAGpB;;;QAJgCR,U","file":"../../../splitbutton/splitbutton.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {customAttribute, inject} from '../common/common';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';\r\n\r\n@customAttribute(`${constants.attributePrefix}split-button`)\r\n@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})\r\n@inject(Element)\r\nexport class ejSplitButton extends WidgetBase {\r\n constructor(element) {\r\n super();\r\n this.element = element;\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/spreadsheet/sheet.js.map b/dist/dev/dist/dev/spreadsheet/sheet.js.map
index 5b575795d..85e497695 100644
--- a/dist/dev/dist/dev/spreadsheet/sheet.js.map
+++ b/dist/dev/dist/dev/spreadsheet/sheet.js.map
@@ -1 +1 @@
-{"version":3,"sources":["spreadsheet/sheet.js"],"names":["constants","generateBindables","inlineView","customElement","Sheet","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;uBAMPC,K,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,W,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,QAAD,EAAW,WAAX,EAAwB,aAAxB,EAAuC,UAAvC,EAAmD,aAAnD,EAAkE,YAAlE,EAAgF,qBAAhF,EAAuG,YAAvG,EAAqH,eAArH,EAAsI,cAAtI,EAAsJ,aAAtJ,EAAqK,UAArK,EAAiL,YAAjL,EAA+L,YAA/L,EAA6M,OAA7M,EAAsN,eAAtN,EAAuO,UAAvO,EAAmP,MAAnP,EAA2P,eAA3P,EAA4Q,YAA5Q,EAA0R,cAA1R,EAA0S,WAA1S,CAA5B,C","file":"../../../spreadsheet/sheet.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}sheet`)\r\n@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell'])\r\n\r\nexport class Sheet {\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["spreadsheet/sheet.js"],"names":["constants","generateBindables","inlineView","customElement","Sheet","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;uBAMPC,K,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,W,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,QAAD,EAAW,WAAX,EAAwB,aAAxB,EAAuC,UAAvC,EAAmD,aAAnD,EAAkE,YAAlE,EAAgF,qBAAhF,EAAuG,YAAvG,EAAqH,eAArH,EAAsI,cAAtI,EAAsJ,aAAtJ,EAAqK,UAArK,EAAiL,YAAjL,EAA+L,YAA/L,EAA6M,OAA7M,EAAsN,eAAtN,EAAuO,UAAvO,EAAmP,MAAnP,EAA2P,eAA3P,EAA4Q,YAA5Q,EAA0R,cAA1R,EAA0S,WAA1S,EAAuT,WAAvT,CAA5B,C","file":"../../../spreadsheet/sheet.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}sheet`)\r\n@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell'])\r\n\r\nexport class Sheet {\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/treegrid/treegrid.js.map b/dist/dev/dist/dev/treegrid/treegrid.js.map
index bac115b17..b13872551 100644
--- a/dist/dev/dist/dev/treegrid/treegrid.js.map
+++ b/dist/dev/dist/dev/treegrid/treegrid.js.map
@@ -1 +1 @@
-{"version":3,"sources":["treegrid/treegrid.js"],"names":["WidgetBase","constants","generateBindables","inject","inlineView","customElement","children","TemplatingEngine","TemplateProcessor","ejTreeGrid","elementPrefix","aureliaTemplateString","Element","element","templateEngine","hasChildProperty","childPropertyName","templateProcessor","initTemplate"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,Y,iBAAAA,M;AAAQC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;AAAeC,c,iBAAAA,Q;AAAUC,sB,iBAAAA,gB;;AAC7CC,uB,4BAAAA,iB;;;4BAQKC,U,WAJZJ,cAAiBJ,UAAUS,aAA3B,e,UACAN,gBAAcH,UAAUU,qBAAxB,C,UACAT,kBAAkB,YAAlB,EAAgC,CAAC,mBAAD,EAAsB,uBAAtB,EAA+C,kBAA/C,EAAmE,gBAAnE,EAAqF,yBAArF,EAAgH,mBAAhH,EAAqI,gBAArI,EAAuJ,cAAvJ,EAAuK,aAAvK,EAAsL,kBAAtL,EAA0M,oBAA1M,EAAgO,cAAhO,EAAgP,SAAhP,EAA2P,oBAA3P,EAAiR,qBAAjR,EAAwS,UAAxS,EAAoT,YAApT,EAAkU,oBAAlU,EAAwV,aAAxV,EAAuW,cAAvW,EAAuX,cAAvX,EAAuY,mBAAvY,EAA4Z,cAA5Z,EAA4a,sBAA5a,EAAoc,sBAApc,EAA4d,aAA5d,EAA2e,gBAA3e,EAA6f,QAA7f,EAAugB,kBAAvgB,EAA2hB,WAA3hB,EAAwiB,cAAxiB,EAAwjB,iBAAxjB,EAA2kB,cAA3kB,EAA2lB,qBAA3lB,EAAknB,OAAlnB,EAA2nB,WAA3nB,EAAwoB,eAAxoB,EAAypB,kBAAzpB,EAA6qB,qBAA7qB,EAAosB,mBAApsB,EAAytB,mBAAztB,EAA8uB,mBAA9uB,EAAmwB,gBAAnwB,EAAqxB,0BAArxB,EAAizB,iBAAjzB,EAAo0B,kBAAp0B,EAAw1B,gBAAx1B,EAA02B,kBAA12B,EAA83B,aAA93B,EAA64B,qBAA74B,EAAo6B,2BAAp6B,EAAi8B,cAAj8B,EAAi9B,cAAj9B,EAAi+B,iBAAj+B,EAAo/B,iBAAp/B,CAAhC,EAAwiC,CAAC,YAAD,EAAe,kBAAf,EAAmC,qBAAnC,EAA0D,0BAA1D,CAAxiC,EAA+nC,EAAC,oBAAoB,kBAArB,EAAyC,iBAAiB,eAA1D,EAA/nC,C,UACAC,OAAOS,OAAP,EAAgBL,gBAAhB,C,UAEED,SAAYL,UAAUS,aAAtB,sB;;;AACD,4BAAYG,OAAZ,EAAqBC,cAArB,EAAqC;AAAA;;AAAA,uDACnC,sBADmC;;AAAA;;AAEnC,gBAAKD,OAAL,GAAeA,OAAf;AACA,gBAAKE,gBAAL,GAAwB,IAAxB;AACA,gBAAKC,iBAAL,GAAyB,SAAzB;AACA,gBAAKC,iBAAL,GAAyB,IAAIT,iBAAJ,QAA4BM,cAA5B,CAAzB;AACA,gBAAKG,iBAAL,CAAuBC,YAAvB;AANmC;AAOpC;;;QAT6BlB,U;;;iBACoC,E","file":"../../../treegrid/treegrid.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inject, inlineView, customElement, children, TemplatingEngine} from '../common/common';\r\nimport {TemplateProcessor} from '../common/template-processor';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.treegrid.min';\r\n\r\n@customElement(`${constants.elementPrefix}tree-grid`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})\r\n@inject(Element, TemplatingEngine)\r\nexport class ejTreeGrid extends WidgetBase {\r\n @children(`${constants.elementPrefix}tree-grid-column`) columns = [];\r\n constructor(element, templateEngine) {\r\n super();\r\n this.element = element;\r\n this.hasChildProperty = true;\r\n this.childPropertyName = 'columns';\r\n this.templateProcessor = new TemplateProcessor(this, templateEngine);\r\n this.templateProcessor.initTemplate();\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["treegrid/treegrid.js"],"names":["WidgetBase","constants","generateBindables","inject","inlineView","customElement","children","TemplatingEngine","TemplateProcessor","ejTreeGrid","elementPrefix","aureliaTemplateString","Element","element","templateEngine","hasChildProperty","childPropertyName","templateProcessor","initTemplate"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,gB,qBAAAA,U;;AACAC,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,Y,iBAAAA,M;AAAQC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;AAAeC,c,iBAAAA,Q;AAAUC,sB,iBAAAA,gB;;AAC7CC,uB,4BAAAA,iB;;;4BAQKC,U,WAJZJ,cAAiBJ,UAAUS,aAA3B,e,UACAN,gBAAcH,UAAUU,qBAAxB,C,UACAT,kBAAkB,YAAlB,EAAgC,CAAC,mBAAD,EAAsB,uBAAtB,EAA+C,kBAA/C,EAAmE,gBAAnE,EAAqF,yBAArF,EAAgH,mBAAhH,EAAqI,gBAArI,EAAuJ,cAAvJ,EAAuK,aAAvK,EAAsL,eAAtL,EAAuM,kBAAvM,EAA2N,oBAA3N,EAAiP,cAAjP,EAAiQ,SAAjQ,EAA4Q,oBAA5Q,EAAkS,qBAAlS,EAAyT,UAAzT,EAAqU,YAArU,EAAmV,oBAAnV,EAAyW,aAAzW,EAAwX,cAAxX,EAAwY,cAAxY,EAAwZ,mBAAxZ,EAA6a,cAA7a,EAA6b,sBAA7b,EAAqd,sBAArd,EAA6e,aAA7e,EAA4f,gBAA5f,EAA8gB,QAA9gB,EAAwhB,kBAAxhB,EAA4iB,WAA5iB,EAAyjB,cAAzjB,EAAykB,iBAAzkB,EAA4lB,cAA5lB,EAA4mB,qBAA5mB,EAAmoB,OAAnoB,EAA4oB,WAA5oB,EAAypB,eAAzpB,EAA0qB,kBAA1qB,EAA8rB,qBAA9rB,EAAqtB,mBAArtB,EAA0uB,mBAA1uB,EAA+vB,mBAA/vB,EAAoxB,gBAApxB,EAAsyB,0BAAtyB,EAAk0B,iBAAl0B,EAAq1B,kBAAr1B,EAAy2B,gBAAz2B,EAA23B,kBAA33B,EAA+4B,aAA/4B,EAA85B,qBAA95B,EAAq7B,2BAAr7B,EAAk9B,cAAl9B,EAAk+B,cAAl+B,EAAk/B,iBAAl/B,EAAqgC,iBAArgC,CAAhC,EAAyjC,CAAC,YAAD,EAAe,kBAAf,EAAmC,qBAAnC,EAA0D,0BAA1D,CAAzjC,EAAgpC,EAAC,oBAAoB,kBAArB,EAAyC,iBAAiB,eAA1D,EAAhpC,C,UACAC,OAAOS,OAAP,EAAgBL,gBAAhB,C,UAEED,SAAYL,UAAUS,aAAtB,sB;;;AACD,4BAAYG,OAAZ,EAAqBC,cAArB,EAAqC;AAAA;;AAAA,uDACnC,sBADmC;;AAAA;;AAEnC,gBAAKD,OAAL,GAAeA,OAAf;AACA,gBAAKE,gBAAL,GAAwB,IAAxB;AACA,gBAAKC,iBAAL,GAAyB,SAAzB;AACA,gBAAKC,iBAAL,GAAyB,IAAIT,iBAAJ,QAA4BM,cAA5B,CAAzB;AACA,gBAAKG,iBAAL,CAAuBC,YAAvB;AANmC;AAOpC;;;QAT6BlB,U;;;iBACoC,E","file":"../../../treegrid/treegrid.js","sourcesContent":["import {WidgetBase} from '../common/widget-base';\r\nimport {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inject, inlineView, customElement, children, TemplatingEngine} from '../common/common';\r\nimport {TemplateProcessor} from '../common/template-processor';\r\n\r\nimport 'syncfusion-javascript/Scripts/ej/web/ej.treegrid.min';\r\n\r\n@customElement(`${constants.elementPrefix}tree-grid`)\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})\r\n@inject(Element, TemplatingEngine)\r\nexport class ejTreeGrid extends WidgetBase {\r\n @children(`${constants.elementPrefix}tree-grid-column`) columns = [];\r\n constructor(element, templateEngine) {\r\n super();\r\n this.element = element;\r\n this.hasChildProperty = true;\r\n this.childPropertyName = 'columns';\r\n this.templateProcessor = new TemplateProcessor(this, templateEngine);\r\n this.templateProcessor.initTemplate();\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/treegrid/treegridcolumn.js.map b/dist/dev/dist/dev/treegrid/treegridcolumn.js.map
index 8501b5389..dfb8d9d8a 100644
--- a/dist/dev/dist/dev/treegrid/treegridcolumn.js.map
+++ b/dist/dev/dist/dev/treegrid/treegridcolumn.js.map
@@ -1 +1 @@
-{"version":3,"sources":["treegrid/treegridcolumn.js"],"names":["constants","generateBindables","inlineView","customElement","children","Util","TreeGridColumn","aureliaTemplateString","elementPrefix","setTemplates","angularTemplate","util","getBindablePropertyName","template"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;AAAeC,c,iBAAAA,Q;;AAC3BC,U,eAAAA,I;;;gCAMKC,c,WAJZJ,gBAAcF,UAAUO,qBAAxB,C,UACAJ,cAAiBH,UAAUQ,aAA3B,sB,UACAP,kBAAkB,SAAlB,EAA6B,CAAC,gBAAD,EAAmB,4BAAnB,EAAiD,cAAjD,EAAiE,oBAAjE,EAAuF,YAAvF,EAAqG,UAArG,EAAiH,cAAjH,EAAiI,OAAjI,EAA0I,UAA1I,EAAsJ,YAAtJ,EAAoK,iBAApK,EAAuL,gBAAvL,EAAyM,YAAzM,EAAuN,mBAAvN,EAA4O,cAA5O,EAA4P,SAA5P,EAAuQ,OAAvQ,EAAgR,kBAAhR,EAAoS,QAApS,EAA8S,kBAA9S,EAAkU,iBAAlU,EAAqV,UAArV,EAAiW,WAAjW,EAA8W,cAA9W,EAA8X,qBAA9X,EAAqZ,UAArZ,EAAia,SAAja,EAA4a,eAA5a,EAA6b,iBAA7b,EAAgd,eAAhd,CAA7B,C,UAGEG,SAAYJ,UAAUQ,aAAtB,c;;;;;;;iCACDC,Y,2BAAe;AACb,cAAI,KAAKC,eAAL,CAAqB,CAArB,CAAJ,EAA6B;AAC3B,gBAAIC,OAAO,IAAIN,IAAJ,EAAX;AACA,iBAAKM,KAAKC,uBAAL,CAA6B,iBAA7B,CAAL,IAAwD,KAAKF,eAAL,CAAqB,CAArB,EAAwBG,QAAhF;AACD;AACF,S;;;;;;iBANiE,E","file":"../../../treegrid/treegridcolumn.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement, children} from '../common/common';\r\nimport {Util} from '../common/util';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}tree-grid-column`)\r\n@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing'])\r\n\r\nexport class TreeGridColumn {\r\n @children(`${constants.elementPrefix}template`) angularTemplate = [];\r\n setTemplates() {\r\n if (this.angularTemplate[0]) {\r\n let util = new Util();\r\n this[util.getBindablePropertyName('angularTemplate')] = this.angularTemplate[0].template;\r\n }\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["treegrid/treegridcolumn.js"],"names":["constants","generateBindables","inlineView","customElement","children","Util","TreeGridColumn","aureliaTemplateString","elementPrefix","setTemplates","angularTemplate","util","getBindablePropertyName","template"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;AAAeC,c,iBAAAA,Q;;AAC3BC,U,eAAAA,I;;;gCAMKC,c,WAJZJ,gBAAcF,UAAUO,qBAAxB,C,UACAJ,cAAiBH,UAAUQ,aAA3B,sB,UACAP,kBAAkB,SAAlB,EAA6B,CAAC,gBAAD,EAAmB,4BAAnB,EAAiD,cAAjD,EAAiE,oBAAjE,EAAuF,YAAvF,EAAqG,cAArG,EAAqH,UAArH,EAAiI,cAAjI,EAAiJ,OAAjJ,EAA0J,UAA1J,EAAsK,YAAtK,EAAoL,iBAApL,EAAuM,gBAAvM,EAAyN,YAAzN,EAAuO,mBAAvO,EAA4P,cAA5P,EAA4Q,SAA5Q,EAAuR,OAAvR,EAAgS,kBAAhS,EAAoT,QAApT,EAA8T,kBAA9T,EAAkV,iBAAlV,EAAqW,UAArW,EAAiX,WAAjX,EAA8X,cAA9X,EAA8Y,UAA9Y,EAA0Z,qBAA1Z,EAAib,UAAjb,EAA6b,SAA7b,EAAwc,eAAxc,EAAyd,iBAAzd,EAA4e,UAA5e,EAAwf,eAAxf,CAA7B,C,UAGEG,SAAYJ,UAAUQ,aAAtB,c;;;;;;;iCACDC,Y,2BAAe;AACb,cAAI,KAAKC,eAAL,CAAqB,CAArB,CAAJ,EAA6B;AAC3B,gBAAIC,OAAO,IAAIN,IAAJ,EAAX;AACA,iBAAKM,KAAKC,uBAAL,CAA6B,iBAA7B,CAAL,IAAwD,KAAKF,eAAL,CAAqB,CAArB,EAAwBG,QAAhF;AACD;AACF,S;;;;;;iBANiE,E","file":"../../../treegrid/treegridcolumn.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement, children} from '../common/common';\r\nimport {Util} from '../common/util';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}tree-grid-column`)\r\n@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing'])\r\n\r\nexport class TreeGridColumn {\r\n @children(`${constants.elementPrefix}template`) angularTemplate = [];\r\n setTemplates() {\r\n if (this.angularTemplate[0]) {\r\n let util = new Util();\r\n this[util.getBindablePropertyName('angularTemplate')] = this.angularTemplate[0].template;\r\n }\r\n }\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/dist/dev/treemap/level.js.map b/dist/dev/dist/dev/treemap/level.js.map
index 90043046b..c79305368 100644
--- a/dist/dev/dist/dev/treemap/level.js.map
+++ b/dist/dev/dist/dev/treemap/level.js.map
@@ -1 +1 @@
-{"version":3,"sources":["treemap/level.js"],"names":["constants","generateBindables","inlineView","customElement","Level","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;uBAMPC,K,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,W,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,iBAAD,EAAoB,kBAApB,EAAwC,sBAAxC,EAAgE,UAAhE,EAA4E,cAA5E,EAA4F,WAA5F,EAAyG,cAAzG,EAAyH,gBAAzH,EAA2I,sBAA3I,EAAmK,eAAnK,EAAoL,eAApL,EAAqM,qBAArM,EAA4N,YAA5N,EAA0O,YAA1O,CAA5B,C","file":"../../../treemap/level.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}level`)\r\n@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])\r\n\r\nexport class Level {\r\n}\r\n\r\n"]}
\ No newline at end of file
+{"version":3,"sources":["treemap/level.js"],"names":["constants","generateBindables","inlineView","customElement","Level","aureliaTemplateString","elementPrefix"],"mappings":";;;;;;;;;;;;;;;AAAQA,e,oBAAAA,S;;AACAC,uB,qBAAAA,iB;;AACAC,gB,iBAAAA,U;AAAYC,mB,iBAAAA,a;;;uBAMPC,K,WAJZF,gBAAcF,UAAUK,qBAAxB,C,UACAF,cAAiBH,UAAUM,aAA3B,W,UACAL,kBAAkB,QAAlB,EAA4B,CAAC,iBAAD,EAAoB,kBAApB,EAAwC,sBAAxC,EAAgE,UAAhE,EAA4E,cAA5E,EAA4F,WAA5F,EAAyG,cAAzG,EAAyH,gBAAzH,EAA2I,sBAA3I,EAAmK,eAAnK,EAAoL,cAApL,EAAoM,eAApM,EAAqN,qBAArN,EAA4O,YAA5O,EAA0P,YAA1P,CAA5B,C","file":"../../../treemap/level.js","sourcesContent":["import {constants} from '../common/constants';\r\nimport {generateBindables} from '../common/decorators';\r\nimport {inlineView, customElement} from '../common/common';\r\n\r\n@inlineView(`${constants.aureliaTemplateString}`)\r\n@customElement(`${constants.elementPrefix}level`)\r\n@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])\r\n\r\nexport class Level {\r\n}\r\n\r\n"]}
\ No newline at end of file
diff --git a/dist/dev/fileexplorer/fileexplorer.js b/dist/dev/fileexplorer/fileexplorer.js
index 8a29a2d25..6ee3df978 100644
--- a/dist/dev/fileexplorer/fileexplorer.js
+++ b/dist/dev/fileexplorer/fileexplorer.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjFileexplorerMin) {}],
execute: function () {
- _export('ejFileExplorer', ejFileExplorer = (_dec = customElement(constants.elementPrefix + 'file-explorer'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejFileExplorer', ejFileExplorer = (_dec = customElement(constants.elementPrefix + 'file-explorer'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejFileExplorer, _WidgetBase);
function ejFileExplorer(element) {
diff --git a/dist/dev/gantt/gantt.js b/dist/dev/gantt/gantt.js
index f61ede6a3..09f0a5a42 100644
--- a/dist/dev/gantt/gantt.js
+++ b/dist/dev/gantt/gantt.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjGanttMin) {}],
execute: function () {
- _export('ejGantt', ejGantt = (_dec = customElement(constants.elementPrefix + 'gantt'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejGantt', ejGantt = (_dec = customElement(constants.elementPrefix + 'gantt'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejGantt, _WidgetBase);
function ejGantt(element) {
diff --git a/dist/dev/numerictextbox/numerictextbox.js b/dist/dev/numerictextbox/numerictextbox.js
index 5ed39121f..c9d8b5462 100644
--- a/dist/dev/numerictextbox/numerictextbox.js
+++ b/dist/dev/numerictextbox/numerictextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejNumericTextbox', ejNumericTextbox = (_dec = customAttribute(constants.attributePrefix + 'numeric-textbox'), _dec2 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejNumericTextbox', ejNumericTextbox = (_dec = customAttribute(constants.attributePrefix + 'numeric-textbox'), _dec2 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejNumericTextbox, _WidgetBase);
function ejNumericTextbox(element) {
diff --git a/dist/dev/pager/pager.js b/dist/dev/pager/pager.js
index cb35bb3cf..4cb8a61e7 100644
--- a/dist/dev/pager/pager.js
+++ b/dist/dev/pager/pager.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjPagerMin) {}],
execute: function () {
- _export('ejPager', ejPager = (_dec = customElement(constants.elementPrefix + 'pager'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejPager', ejPager = (_dec = customElement(constants.elementPrefix + 'pager'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejPager, _WidgetBase);
function ejPager(element) {
diff --git a/dist/dev/percentagetextbox/percentagetextbox.js b/dist/dev/percentagetextbox/percentagetextbox.js
index 6e30b36de..b952be2ff 100644
--- a/dist/dev/percentagetextbox/percentagetextbox.js
+++ b/dist/dev/percentagetextbox/percentagetextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejPercentageTextbox', ejPercentageTextbox = (_dec = customAttribute(constants.attributePrefix + 'percentage-textbox'), _dec2 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejPercentageTextbox', ejPercentageTextbox = (_dec = customAttribute(constants.attributePrefix + 'percentage-textbox'), _dec2 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejPercentageTextbox, _WidgetBase);
function ejPercentageTextbox(element) {
diff --git a/dist/dev/radialslider/radialslider.js b/dist/dev/radialslider/radialslider.js
index 4be4a029d..b8454c129 100644
--- a/dist/dev/radialslider/radialslider.js
+++ b/dist/dev/radialslider/radialslider.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjRadialsliderMin) {}],
execute: function () {
- _export('ejRadialSlider', ejRadialSlider = (_dec = customElement(constants.elementPrefix + 'radial-slider'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejRadialSlider', ejRadialSlider = (_dec = customElement(constants.elementPrefix + 'radial-slider'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejRadialSlider, _WidgetBase);
function ejRadialSlider(element) {
diff --git a/dist/dev/spellcheck/spellcheck.js b/dist/dev/spellcheck/spellcheck.js
new file mode 100644
index 000000000..630a18cbd
--- /dev/null
+++ b/dist/dev/spellcheck/spellcheck.js
@@ -0,0 +1,70 @@
+'use strict';
+
+System.register(['../common/widget-base', '../common/constants', '../common/decorators', '../common/common', 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min'], function (_export, _context) {
+ "use strict";
+
+ var WidgetBase, constants, generateBindables, customElement, inlineView, inject, _dec, _dec2, _dec3, _dec4, _class, ejSpellCheck;
+
+ function _classCallCheck(instance, Constructor) {
+ if (!(instance instanceof Constructor)) {
+ throw new TypeError("Cannot call a class as a function");
+ }
+ }
+
+ function _possibleConstructorReturn(self, call) {
+ if (!self) {
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
+ }
+
+ return call && (typeof call === "object" || typeof call === "function") ? call : self;
+ }
+
+ function _inherits(subClass, superClass) {
+ if (typeof superClass !== "function" && superClass !== null) {
+ throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
+ }
+
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
+ constructor: {
+ value: subClass,
+ enumerable: false,
+ writable: true,
+ configurable: true
+ }
+ });
+ if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
+ }
+
+ return {
+ setters: [function (_commonWidgetBase) {
+ WidgetBase = _commonWidgetBase.WidgetBase;
+ }, function (_commonConstants) {
+ constants = _commonConstants.constants;
+ }, function (_commonDecorators) {
+ generateBindables = _commonDecorators.generateBindables;
+ }, function (_commonCommon) {
+ customElement = _commonCommon.customElement;
+ inlineView = _commonCommon.inlineView;
+ inject = _commonCommon.inject;
+ }, function (_syncfusionJavascriptScriptsEjWebEjSpellcheckMin) {}],
+ execute: function () {
+ _export('ejSpellCheck', ejSpellCheck = (_dec = customElement(constants.elementPrefix + 'spell-check'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _inherits(ejSpellCheck, _WidgetBase);
+
+ function ejSpellCheck(element) {
+ _classCallCheck(this, ejSpellCheck);
+
+ var _this = _possibleConstructorReturn(this, _WidgetBase.call(this));
+
+ _this.element = element;
+ return _this;
+ }
+
+ return ejSpellCheck;
+ }(WidgetBase)) || _class) || _class) || _class) || _class));
+
+ _export('ejSpellCheck', ejSpellCheck);
+ }
+ };
+});
+//# sourceMappingURL=../dist/dev/spellcheck/spellcheck.js.map
diff --git a/dist/dev/splitbutton/splitbutton.js b/dist/dev/splitbutton/splitbutton.js
index 805cbc823..681e8a27d 100644
--- a/dist/dev/splitbutton/splitbutton.js
+++ b/dist/dev/splitbutton/splitbutton.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjSplitbuttonMin) {}],
execute: function () {
- _export('ejSplitButton', ejSplitButton = (_dec = customAttribute(constants.attributePrefix + 'split-button'), _dec2 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejSplitButton', ejSplitButton = (_dec = customAttribute(constants.attributePrefix + 'split-button'), _dec2 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejSplitButton, _WidgetBase);
function ejSplitButton(element) {
diff --git a/dist/dev/spreadsheet/sheet.js b/dist/dev/spreadsheet/sheet.js
index 4b7580224..6e79c1cdb 100644
--- a/dist/dev/spreadsheet/sheet.js
+++ b/dist/dev/spreadsheet/sheet.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Sheet', Sheet = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'sheet'), _dec3 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
+ _export('Sheet', Sheet = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'sheet'), _dec3 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
_classCallCheck(this, Sheet);
}) || _class) || _class) || _class));
diff --git a/dist/dev/treegrid/treegrid.js b/dist/dev/treegrid/treegrid.js
index f0d51f05d..be372d7a6 100644
--- a/dist/dev/treegrid/treegrid.js
+++ b/dist/dev/treegrid/treegrid.js
@@ -95,7 +95,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
TemplateProcessor = _commonTemplateProcessor.TemplateProcessor;
}, function (_syncfusionJavascriptScriptsEjWebEjTreegridMin) {}],
execute: function () {
- _export('ejTreeGrid', ejTreeGrid = (_dec = customElement(constants.elementPrefix + 'tree-grid'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = inject(Element, TemplatingEngine), _dec5 = children(constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
+ _export('ejTreeGrid', ejTreeGrid = (_dec = customElement(constants.elementPrefix + 'tree-grid'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = inject(Element, TemplatingEngine), _dec5 = children(constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
_inherits(ejTreeGrid, _WidgetBase);
function ejTreeGrid(element, templateEngine) {
diff --git a/dist/dev/treegrid/treegridcolumn.js b/dist/dev/treegrid/treegridcolumn.js
index 33afa4218..1a087cb10 100644
--- a/dist/dev/treegrid/treegridcolumn.js
+++ b/dist/dev/treegrid/treegridcolumn.js
@@ -67,7 +67,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
Util = _commonUtil.Util;
}],
execute: function () {
- _export('TreeGridColumn', TreeGridColumn = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'tree-grid-column'), _dec3 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing']), _dec4 = children(constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
+ _export('TreeGridColumn', TreeGridColumn = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'tree-grid-column'), _dec3 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing']), _dec4 = children(constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
function TreeGridColumn() {
_classCallCheck(this, TreeGridColumn);
diff --git a/dist/dev/treemap/level.js b/dist/dev/treemap/level.js
index 805a3cf88..ed1e983dd 100644
--- a/dist/dev/treemap/level.js
+++ b/dist/dev/treemap/level.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Level', Level = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'level'), _dec3 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
+ _export('Level', Level = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'level'), _dec3 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
_classCallCheck(this, Level);
}) || _class) || _class) || _class));
diff --git a/dist/es6/aurelia-syncfusion-bridge.d.ts b/dist/es6/aurelia-syncfusion-bridge.d.ts
index 3b9df1e8d..b299e19fe 100644
--- a/dist/es6/aurelia-syncfusion-bridge.d.ts
+++ b/dist/es6/aurelia-syncfusion-bridge.d.ts
@@ -81,10 +81,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -193,6 +194,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -461,10 +463,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -473,6 +475,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/es6/chart/series.js b/dist/es6/chart/series.js
index a4793613d..df877c072 100644
--- a/dist/es6/chart/series.js
+++ b/dist/es6/chart/series.js
@@ -4,7 +4,7 @@ import {inlineView, customElement} from '../common/common';
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}series`)
-@generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])
+@generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings'])
export class Series {
}
diff --git a/dist/es6/common/widget-base.js b/dist/es6/common/widget-base.js
index 6d7643032..a37215566 100644
--- a/dist/es6/common/widget-base.js
+++ b/dist/es6/common/widget-base.js
@@ -28,6 +28,9 @@ export class WidgetBase {
bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
}
createTwoWays() {
diff --git a/dist/es6/config-builder.js b/dist/es6/config-builder.js
index 356340438..8adff3fba 100644
--- a/dist/es6/config-builder.js
+++ b/dist/es6/config-builder.js
@@ -83,6 +83,7 @@ export class EjConfigBuilder {
.ejUploadbox()
.ejSignature()
.ejTooltip()
+ .ejSpellCheck()
.ejTemplate();
return this;
}
@@ -398,6 +399,10 @@ export class EjConfigBuilder {
this.resources.push('./tooltip/tooltip');
return this;
}
+ ejSpellCheck(): EjConfigBuilder {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ }
ejTemplate(): EjConfigBuilder {
this.resources.push('./common/template');
return this;
diff --git a/dist/es6/currencytextbox/currencytextbox.js b/dist/es6/currencytextbox/currencytextbox.js
index 11d451811..eafdca142 100644
--- a/dist/es6/currencytextbox/currencytextbox.js
+++ b/dist/es6/currencytextbox/currencytextbox.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}currency-textbox`)
-@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejCurrencyTextbox extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/datepicker/datepicker.js b/dist/es6/datepicker/datepicker.js
index fd52c6226..67af00ad0 100644
--- a/dist/es6/datepicker/datepicker.js
+++ b/dist/es6/datepicker/datepicker.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.datepicker.min';
@customAttribute(`${constants.attributePrefix}date-picker`)
-@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
+@generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejDatePicker extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/daterangepicker/daterangepicker.js b/dist/es6/daterangepicker/daterangepicker.js
index 26c406d6f..8b8ddb039 100644
--- a/dist/es6/daterangepicker/daterangepicker.js
+++ b/dist/es6/daterangepicker/daterangepicker.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.daterangepicker.min';
@customAttribute(`${constants.attributePrefix}date-range-picker`)
-@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])
+@generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value'])
@inject(Element)
export class ejDateRangePicker extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/diagram/diagram.js b/dist/es6/diagram/diagram.js
index c3edc2a59..4dfacd6df 100644
--- a/dist/es6/diagram/diagram.js
+++ b/dist/es6/diagram/diagram.js
@@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.diagram.min';
@customElement(`${constants.elementPrefix}diagram`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])
+@generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor'])
@inject(Element)
export class ejDiagram extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/fileexplorer/fileexplorer.js b/dist/es6/fileexplorer/fileexplorer.js
index 8215176fc..ccffc3583 100644
--- a/dist/es6/fileexplorer/fileexplorer.js
+++ b/dist/es6/fileexplorer/fileexplorer.js
@@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.fileexplorer.min';
@customElement(`${constants.elementPrefix}file-explorer`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejFileExplorer extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/gantt/gantt.js b/dist/es6/gantt/gantt.js
index e4740d4b7..953fd7f7e 100644
--- a/dist/es6/gantt/gantt.js
+++ b/dist/es6/gantt/gantt.js
@@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.gantt.min';
@customElement(`${constants.elementPrefix}gantt`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])
+@generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes'])
@inject(Element)
export class ejGantt extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/numerictextbox/numerictextbox.js b/dist/es6/numerictextbox/numerictextbox.js
index 61ff738b6..b36dd26f5 100644
--- a/dist/es6/numerictextbox/numerictextbox.js
+++ b/dist/es6/numerictextbox/numerictextbox.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}numeric-textbox`)
-@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejNumericTextbox extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/pager/pager.js b/dist/es6/pager/pager.js
index 3305b0c7e..5f8314a1b 100644
--- a/dist/es6/pager/pager.js
+++ b/dist/es6/pager/pager.js
@@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.pager.min';
@customElement(`${constants.elementPrefix}pager`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPager extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/percentagetextbox/percentagetextbox.js b/dist/es6/percentagetextbox/percentagetextbox.js
index f06a9df07..f6043f5ff 100644
--- a/dist/es6/percentagetextbox/percentagetextbox.js
+++ b/dist/es6/percentagetextbox/percentagetextbox.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';
@customAttribute(`${constants.attributePrefix}percentage-textbox`)
-@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
+@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPercentageTextbox extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/radialslider/radialslider.js b/dist/es6/radialslider/radialslider.js
index 9812c32c8..b40645a33 100644
--- a/dist/es6/radialslider/radialslider.js
+++ b/dist/es6/radialslider/radialslider.js
@@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.radialslider.min';
@customElement(`${constants.elementPrefix}radial-slider`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])
+@generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks'])
@inject(Element)
export class ejRadialSlider extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/spellcheck/spellcheck.js b/dist/es6/spellcheck/spellcheck.js
new file mode 100644
index 000000000..9df52399e
--- /dev/null
+++ b/dist/es6/spellcheck/spellcheck.js
@@ -0,0 +1,18 @@
+import {WidgetBase} from '../common/widget-base';
+import {constants} from '../common/constants';
+import {generateBindables} from '../common/decorators';
+import {customElement, inlineView, inject} from '../common/common';
+
+import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
+
+@customElement(`${constants.elementPrefix}spell-check`)
+@inlineView(`${constants.aureliaTemplateString}`)
+@generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate'])
+@inject(Element)
+export class ejSpellCheck extends WidgetBase {
+ constructor(element) {
+ super();
+ this.element = element;
+ }
+}
+
diff --git a/dist/es6/splitbutton/splitbutton.js b/dist/es6/splitbutton/splitbutton.js
index 79b73cc5f..0b6ad8046 100644
--- a/dist/es6/splitbutton/splitbutton.js
+++ b/dist/es6/splitbutton/splitbutton.js
@@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
@customAttribute(`${constants.attributePrefix}split-button`)
-@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})
+@generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], {'enableRTL': 'enableRtl', 'targetID': 'targetId'})
@inject(Element)
export class ejSplitButton extends WidgetBase {
constructor(element) {
diff --git a/dist/es6/spreadsheet/sheet.js b/dist/es6/spreadsheet/sheet.js
index 962a1578f..54ac40e72 100644
--- a/dist/es6/spreadsheet/sheet.js
+++ b/dist/es6/spreadsheet/sheet.js
@@ -4,7 +4,7 @@ import {inlineView, customElement} from '../common/common';
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}sheet`)
-@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell'])
+@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell'])
export class Sheet {
}
diff --git a/dist/es6/treegrid/treegrid.js b/dist/es6/treegrid/treegrid.js
index 99a445e92..36748f4f7 100644
--- a/dist/es6/treegrid/treegrid.js
+++ b/dist/es6/treegrid/treegrid.js
@@ -8,7 +8,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.treegrid.min';
@customElement(`${constants.elementPrefix}tree-grid`)
@inlineView(`${constants.aureliaTemplateString}`)
-@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})
+@generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], {'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId'})
@inject(Element, TemplatingEngine)
export class ejTreeGrid extends WidgetBase {
@children(`${constants.elementPrefix}tree-grid-column`) columns = [];
diff --git a/dist/es6/treegrid/treegridcolumn.js b/dist/es6/treegrid/treegridcolumn.js
index 9fb506588..930406c58 100644
--- a/dist/es6/treegrid/treegridcolumn.js
+++ b/dist/es6/treegrid/treegridcolumn.js
@@ -5,7 +5,7 @@ import {Util} from '../common/util';
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}tree-grid-column`)
-@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing'])
+@generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing'])
export class TreeGridColumn {
@children(`${constants.elementPrefix}template`) angularTemplate = [];
diff --git a/dist/es6/treemap/level.js b/dist/es6/treemap/level.js
index abe122a04..75c1880c0 100644
--- a/dist/es6/treemap/level.js
+++ b/dist/es6/treemap/level.js
@@ -4,7 +4,7 @@ import {inlineView, customElement} from '../common/common';
@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}level`)
-@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])
+@generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels'])
export class Level {
}
diff --git a/dist/system/aurelia-syncfusion-bridge.d.ts b/dist/system/aurelia-syncfusion-bridge.d.ts
index 3b9df1e8d..b299e19fe 100644
--- a/dist/system/aurelia-syncfusion-bridge.d.ts
+++ b/dist/system/aurelia-syncfusion-bridge.d.ts
@@ -81,10 +81,11 @@ declare module 'aurelia-syncfusion-bridge' {
import 'syncfusion-javascript/Scripts/ej/web/ej.rotator.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.rte.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.schedule.min';
- import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/common/ej.scroller.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.signature.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.slider.min';
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min';
+ import 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.splitter.min';
import 'syncfusion-javascript/Scripts/ej/web/ej.spreadsheet.min';
@@ -193,6 +194,7 @@ declare module 'aurelia-syncfusion-bridge' {
ejUploadbox(): EjConfigBuilder;
ejSignature(): EjConfigBuilder;
ejTooltip(): EjConfigBuilder;
+ ejSpellCheck(): EjConfigBuilder;
ejTemplate(): EjConfigBuilder;
}
export function configure(aurelia: any, configCallback?: ((builder: EjConfigBuilder) => void)): any;
@@ -461,10 +463,10 @@ declare module 'aurelia-syncfusion-bridge' {
export class ScheduleResource {
}
- export class ejSignature extends WidgetBase {
+ export class ejScroller extends WidgetBase {
constructor(element?: any);
}
- export class ejScroller extends WidgetBase {
+ export class ejSignature extends WidgetBase {
constructor(element?: any);
}
export class ejSlider extends WidgetBase {
@@ -473,6 +475,9 @@ declare module 'aurelia-syncfusion-bridge' {
export class ejSparkline extends WidgetBase {
constructor(element?: any);
}
+ export class ejSpellCheck extends WidgetBase {
+ constructor(element?: any);
+ }
export class ejSplitButton extends WidgetBase {
constructor(element?: any);
}
diff --git a/dist/system/chart/series.js b/dist/system/chart/series.js
index 4c84a2617..e2a5aaaba 100644
--- a/dist/system/chart/series.js
+++ b/dist/system/chart/series.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Series', Series = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'series'), _dec3 = generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
+ _export('Series', Series = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'series'), _dec3 = generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec(_class = _dec2(_class = _dec3(_class = function Series() {
_classCallCheck(this, Series);
}) || _class) || _class) || _class));
diff --git a/dist/system/common/widget-base.js b/dist/system/common/widget-base.js
index 07c9a6cb0..1743f6b03 100644
--- a/dist/system/common/widget-base.js
+++ b/dist/system/common/widget-base.js
@@ -78,6 +78,9 @@ System.register(['./events', '../common/util', '../common/decorators'], function
WidgetBase.prototype.bind = function bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
};
WidgetBase.prototype.createTwoWays = function createTwoWays() {
diff --git a/dist/system/config-builder.js b/dist/system/config-builder.js
index 4d6323ebe..c29dfcd24 100644
--- a/dist/system/config-builder.js
+++ b/dist/system/config-builder.js
@@ -23,7 +23,7 @@ System.register([], function (_export, _context) {
}
EjConfigBuilder.prototype.useAll = function useAll() {
- this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejTemplate();
+ this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejSpellCheck().ejTemplate();
return this;
};
@@ -409,6 +409,11 @@ System.register([], function (_export, _context) {
return this;
};
+ EjConfigBuilder.prototype.ejSpellCheck = function ejSpellCheck() {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ };
+
EjConfigBuilder.prototype.ejTemplate = function ejTemplate() {
this.resources.push('./common/template');
return this;
diff --git a/dist/system/currencytextbox/currencytextbox.js b/dist/system/currencytextbox/currencytextbox.js
index e0b69c512..b9f31a68a 100644
--- a/dist/system/currencytextbox/currencytextbox.js
+++ b/dist/system/currencytextbox/currencytextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejCurrencyTextbox', ejCurrencyTextbox = (_dec = customAttribute(constants.attributePrefix + 'currency-textbox'), _dec2 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejCurrencyTextbox', ejCurrencyTextbox = (_dec = customAttribute(constants.attributePrefix + 'currency-textbox'), _dec2 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejCurrencyTextbox, _WidgetBase);
function ejCurrencyTextbox(element) {
diff --git a/dist/system/datepicker/datepicker.js b/dist/system/datepicker/datepicker.js
index 5659cb862..73c7f4657 100644
--- a/dist/system/datepicker/datepicker.js
+++ b/dist/system/datepicker/datepicker.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjDatepickerMin) {}],
execute: function () {
- _export('ejDatePicker', ejDatePicker = (_dec = customAttribute(constants.attributePrefix + 'date-picker'), _dec2 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejDatePicker', ejDatePicker = (_dec = customAttribute(constants.attributePrefix + 'date-picker'), _dec2 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDatePicker, _WidgetBase);
function ejDatePicker(element) {
diff --git a/dist/system/daterangepicker/daterangepicker.js b/dist/system/daterangepicker/daterangepicker.js
index bc66648ad..83af687ad 100644
--- a/dist/system/daterangepicker/daterangepicker.js
+++ b/dist/system/daterangepicker/daterangepicker.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjDaterangepickerMin) {}],
execute: function () {
- _export('ejDateRangePicker', ejDateRangePicker = (_dec = customAttribute(constants.attributePrefix + 'date-range-picker'), _dec2 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejDateRangePicker', ejDateRangePicker = (_dec = customAttribute(constants.attributePrefix + 'date-range-picker'), _dec2 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejDateRangePicker, _WidgetBase);
function ejDateRangePicker(element) {
diff --git a/dist/system/diagram/diagram.js b/dist/system/diagram/diagram.js
index fde188b75..717306b6c 100644
--- a/dist/system/diagram/diagram.js
+++ b/dist/system/diagram/diagram.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjDatavisualizationEjDiagramMin) {}],
execute: function () {
- _export('ejDiagram', ejDiagram = (_dec = customElement(constants.elementPrefix + 'diagram'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejDiagram', ejDiagram = (_dec = customElement(constants.elementPrefix + 'diagram'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejDiagram, _WidgetBase);
function ejDiagram(element) {
diff --git a/dist/system/fileexplorer/fileexplorer.js b/dist/system/fileexplorer/fileexplorer.js
index 7d8598bcf..a56f87b00 100644
--- a/dist/system/fileexplorer/fileexplorer.js
+++ b/dist/system/fileexplorer/fileexplorer.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjFileexplorerMin) {}],
execute: function () {
- _export('ejFileExplorer', ejFileExplorer = (_dec = customElement(constants.elementPrefix + 'file-explorer'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejFileExplorer', ejFileExplorer = (_dec = customElement(constants.elementPrefix + 'file-explorer'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejFileExplorer, _WidgetBase);
function ejFileExplorer(element) {
diff --git a/dist/system/gantt/gantt.js b/dist/system/gantt/gantt.js
index bf6b3a487..0ede745fa 100644
--- a/dist/system/gantt/gantt.js
+++ b/dist/system/gantt/gantt.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjGanttMin) {}],
execute: function () {
- _export('ejGantt', ejGantt = (_dec = customElement(constants.elementPrefix + 'gantt'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejGantt', ejGantt = (_dec = customElement(constants.elementPrefix + 'gantt'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejGantt, _WidgetBase);
function ejGantt(element) {
diff --git a/dist/system/numerictextbox/numerictextbox.js b/dist/system/numerictextbox/numerictextbox.js
index d4b66f778..f727b78d1 100644
--- a/dist/system/numerictextbox/numerictextbox.js
+++ b/dist/system/numerictextbox/numerictextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejNumericTextbox', ejNumericTextbox = (_dec = customAttribute(constants.attributePrefix + 'numeric-textbox'), _dec2 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejNumericTextbox', ejNumericTextbox = (_dec = customAttribute(constants.attributePrefix + 'numeric-textbox'), _dec2 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejNumericTextbox, _WidgetBase);
function ejNumericTextbox(element) {
diff --git a/dist/system/pager/pager.js b/dist/system/pager/pager.js
index 82e50bec4..f49479e0d 100644
--- a/dist/system/pager/pager.js
+++ b/dist/system/pager/pager.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjPagerMin) {}],
execute: function () {
- _export('ejPager', ejPager = (_dec = customElement(constants.elementPrefix + 'pager'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejPager', ejPager = (_dec = customElement(constants.elementPrefix + 'pager'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejPager, _WidgetBase);
function ejPager(element) {
diff --git a/dist/system/percentagetextbox/percentagetextbox.js b/dist/system/percentagetextbox/percentagetextbox.js
index ddb552eed..eba545814 100644
--- a/dist/system/percentagetextbox/percentagetextbox.js
+++ b/dist/system/percentagetextbox/percentagetextbox.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjEditorMin) {}],
execute: function () {
- _export('ejPercentageTextbox', ejPercentageTextbox = (_dec = customAttribute(constants.attributePrefix + 'percentage-textbox'), _dec2 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejPercentageTextbox', ejPercentageTextbox = (_dec = customAttribute(constants.attributePrefix + 'percentage-textbox'), _dec2 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejPercentageTextbox, _WidgetBase);
function ejPercentageTextbox(element) {
diff --git a/dist/system/radialslider/radialslider.js b/dist/system/radialslider/radialslider.js
index df5370b17..6a7e49bc8 100644
--- a/dist/system/radialslider/radialslider.js
+++ b/dist/system/radialslider/radialslider.js
@@ -48,7 +48,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjRadialsliderMin) {}],
execute: function () {
- _export('ejRadialSlider', ejRadialSlider = (_dec = customElement(constants.elementPrefix + 'radial-slider'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _export('ejRadialSlider', ejRadialSlider = (_dec = customElement(constants.elementPrefix + 'radial-slider'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
_inherits(ejRadialSlider, _WidgetBase);
function ejRadialSlider(element) {
diff --git a/dist/system/spellcheck/spellcheck.js b/dist/system/spellcheck/spellcheck.js
new file mode 100644
index 000000000..9a6948853
--- /dev/null
+++ b/dist/system/spellcheck/spellcheck.js
@@ -0,0 +1,69 @@
+'use strict';
+
+System.register(['../common/widget-base', '../common/constants', '../common/decorators', '../common/common', 'syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min'], function (_export, _context) {
+ "use strict";
+
+ var WidgetBase, constants, generateBindables, customElement, inlineView, inject, _dec, _dec2, _dec3, _dec4, _class, ejSpellCheck;
+
+ function _classCallCheck(instance, Constructor) {
+ if (!(instance instanceof Constructor)) {
+ throw new TypeError("Cannot call a class as a function");
+ }
+ }
+
+ function _possibleConstructorReturn(self, call) {
+ if (!self) {
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
+ }
+
+ return call && (typeof call === "object" || typeof call === "function") ? call : self;
+ }
+
+ function _inherits(subClass, superClass) {
+ if (typeof superClass !== "function" && superClass !== null) {
+ throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
+ }
+
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
+ constructor: {
+ value: subClass,
+ enumerable: false,
+ writable: true,
+ configurable: true
+ }
+ });
+ if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
+ }
+
+ return {
+ setters: [function (_commonWidgetBase) {
+ WidgetBase = _commonWidgetBase.WidgetBase;
+ }, function (_commonConstants) {
+ constants = _commonConstants.constants;
+ }, function (_commonDecorators) {
+ generateBindables = _commonDecorators.generateBindables;
+ }, function (_commonCommon) {
+ customElement = _commonCommon.customElement;
+ inlineView = _commonCommon.inlineView;
+ inject = _commonCommon.inject;
+ }, function (_syncfusionJavascriptScriptsEjWebEjSpellcheckMin) {}],
+ execute: function () {
+ _export('ejSpellCheck', ejSpellCheck = (_dec = customElement(constants.elementPrefix + 'spell-check'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate']), _dec4 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = function (_WidgetBase) {
+ _inherits(ejSpellCheck, _WidgetBase);
+
+ function ejSpellCheck(element) {
+ _classCallCheck(this, ejSpellCheck);
+
+ var _this = _possibleConstructorReturn(this, _WidgetBase.call(this));
+
+ _this.element = element;
+ return _this;
+ }
+
+ return ejSpellCheck;
+ }(WidgetBase)) || _class) || _class) || _class) || _class));
+
+ _export('ejSpellCheck', ejSpellCheck);
+ }
+ };
+});
\ No newline at end of file
diff --git a/dist/system/splitbutton/splitbutton.js b/dist/system/splitbutton/splitbutton.js
index 6225c2e97..b5c811f6b 100644
--- a/dist/system/splitbutton/splitbutton.js
+++ b/dist/system/splitbutton/splitbutton.js
@@ -47,7 +47,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
inject = _commonCommon.inject;
}, function (_syncfusionJavascriptScriptsEjWebEjSplitbuttonMin) {}],
execute: function () {
- _export('ejSplitButton', ejSplitButton = (_dec = customAttribute(constants.attributePrefix + 'split-button'), _dec2 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
+ _export('ejSplitButton', ejSplitButton = (_dec = customAttribute(constants.attributePrefix + 'split-button'), _dec2 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec3 = inject(Element), _dec(_class = _dec2(_class = _dec3(_class = function (_WidgetBase) {
_inherits(ejSplitButton, _WidgetBase);
function ejSplitButton(element) {
diff --git a/dist/system/spreadsheet/sheet.js b/dist/system/spreadsheet/sheet.js
index 729e34414..6e5dd74f3 100644
--- a/dist/system/spreadsheet/sheet.js
+++ b/dist/system/spreadsheet/sheet.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Sheet', Sheet = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'sheet'), _dec3 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
+ _export('Sheet', Sheet = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'sheet'), _dec3 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell']), _dec(_class = _dec2(_class = _dec3(_class = function Sheet() {
_classCallCheck(this, Sheet);
}) || _class) || _class) || _class));
diff --git a/dist/system/treegrid/treegrid.js b/dist/system/treegrid/treegrid.js
index b84ef83d0..13bf02eb8 100644
--- a/dist/system/treegrid/treegrid.js
+++ b/dist/system/treegrid/treegrid.js
@@ -95,7 +95,7 @@ System.register(['../common/widget-base', '../common/constants', '../common/deco
TemplateProcessor = _commonTemplateProcessor.TemplateProcessor;
}, function (_syncfusionJavascriptScriptsEjWebEjTreegridMin) {}],
execute: function () {
- _export('ejTreeGrid', ejTreeGrid = (_dec = customElement(constants.elementPrefix + 'tree-grid'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = inject(Element, TemplatingEngine), _dec5 = children(constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
+ _export('ejTreeGrid', ejTreeGrid = (_dec = customElement(constants.elementPrefix + 'tree-grid'), _dec2 = inlineView('' + constants.aureliaTemplateString), _dec3 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec4 = inject(Element, TemplatingEngine), _dec5 = children(constants.elementPrefix + 'tree-grid-column'), _dec(_class = _dec2(_class = _dec3(_class = _dec4(_class = (_class2 = function (_WidgetBase) {
_inherits(ejTreeGrid, _WidgetBase);
function ejTreeGrid(element, templateEngine) {
diff --git a/dist/system/treegrid/treegridcolumn.js b/dist/system/treegrid/treegridcolumn.js
index 68589d8e5..89edec3d9 100644
--- a/dist/system/treegrid/treegridcolumn.js
+++ b/dist/system/treegrid/treegridcolumn.js
@@ -67,7 +67,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
Util = _commonUtil.Util;
}],
execute: function () {
- _export('TreeGridColumn', TreeGridColumn = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'tree-grid-column'), _dec3 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing']), _dec4 = children(constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
+ _export('TreeGridColumn', TreeGridColumn = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'tree-grid-column'), _dec3 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing']), _dec4 = children(constants.elementPrefix + 'template'), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () {
function TreeGridColumn() {
_classCallCheck(this, TreeGridColumn);
diff --git a/dist/system/treemap/level.js b/dist/system/treemap/level.js
index cd15ae967..4385eef7c 100644
--- a/dist/system/treemap/level.js
+++ b/dist/system/treemap/level.js
@@ -21,7 +21,7 @@ System.register(['../common/constants', '../common/decorators', '../common/commo
customElement = _commonCommon.customElement;
}],
execute: function () {
- _export('Level', Level = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'level'), _dec3 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
+ _export('Level', Level = (_dec = inlineView('' + constants.aureliaTemplateString), _dec2 = customElement(constants.elementPrefix + 'level'), _dec3 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec(_class = _dec2(_class = _dec3(_class = function Level() {
_classCallCheck(this, Level);
}) || _class) || _class) || _class));
diff --git a/dist/temp/aurelia-syncfusion-bridge.js b/dist/temp/aurelia-syncfusion-bridge.js
index caa09c038..2f4d58103 100644
--- a/dist/temp/aurelia-syncfusion-bridge.js
+++ b/dist/temp/aurelia-syncfusion-bridge.js
@@ -1,9 +1,9 @@
'use strict';
exports.__esModule = true;
-exports.ejWaitingPopup = exports.ejUploadbox = exports.ejTreeView = exports.ejTreeMap = exports.Level = exports.TreeGridColumn = exports.ejTreeGrid = exports.ejTooltip = exports.ejToolbar = exports.ejToggleButton = exports.ejTimePicker = exports.ejTile = exports.ejTagCloud = exports.ejTab = exports.ejSymbolPalette = exports.SunburstLevels = exports.ejSunburstChart = exports.ejSpreadsheet = exports.Sheet = exports.ejSplitter = exports.ejSplitButton = exports.ejSparkline = exports.ejSlider = exports.ejScroller = exports.ejSignature = exports.ScheduleResource = exports.ejSchedule = exports.ejRte = exports.ejRotator = exports.ejRibbon = exports.ejReportViewer = exports.ejRating = exports.RangeSeries = exports.ejRangeNavigator = exports.ejRadioButton = exports.ejRadialSlider = exports.ejRadialMenu = exports.Item = exports.ejProgressBar = exports.ejPivotTreeMap = exports.ejPivotSchemaDesigner = exports.ejPivotGrid = exports.ejPivotGauge = exports.ejPivotChart = exports.ejPercentageTextbox = exports.ejPdfViewer = exports.ejPager = exports.ejOverview = exports.ejNumericTextbox = exports.ejNavigationDrawer = exports.ejMenu = exports.ejMaskEdit = exports.ejMap = exports.Layer = exports.ejListView = exports.ejListBox = exports.ejLinearGauge = exports.KanbanColumn = exports.ejKanban = exports.ejHeatMapLegend = exports.ejHeatMap = exports.ejGroupButton = exports.ejGrid = exports.Column = exports.ejGantt = exports.ejFileExplorer = exports.ejDropDownList = exports.ejDigitalGauge = exports.ejDialog = exports.ejDiagram = exports.ejDateTimePicker = exports.ejDateRangePicker = exports.ejDatePicker = exports.ejCurrencyTextbox = exports.WidgetBase = exports.Util = exports.Template = exports.TemplateProcessor = exports.constants = exports.TemplatingEngine = exports.children = exports.customElement = exports.inlineView = exports.inject = exports.bindable = exports.customAttribute = exports.ejColorPicker = exports.ejCircularGauge = exports.ejCheckBox = exports.Series = exports.ejChart = exports.ejButton = exports.QualitativeRange = exports.ejBulletGraph = exports.ejBarcode = exports.ejAutocomplete = exports.ejAccordion = exports.EjConfigBuilder = undefined;
+exports.ejWaitingPopup = exports.ejUploadbox = exports.ejTreeView = exports.ejTreeMap = exports.Level = exports.TreeGridColumn = exports.ejTreeGrid = exports.ejTooltip = exports.ejToolbar = exports.ejToggleButton = exports.ejTimePicker = exports.ejTile = exports.ejTagCloud = exports.ejTab = exports.ejSymbolPalette = exports.SunburstLevels = exports.ejSunburstChart = exports.ejSpreadsheet = exports.Sheet = exports.ejSplitter = exports.ejSplitButton = exports.ejSpellCheck = exports.ejSparkline = exports.ejSlider = exports.ejSignature = exports.ejScroller = exports.ScheduleResource = exports.ejSchedule = exports.ejRte = exports.ejRotator = exports.ejRibbon = exports.ejReportViewer = exports.ejRating = exports.RangeSeries = exports.ejRangeNavigator = exports.ejRadioButton = exports.ejRadialSlider = exports.ejRadialMenu = exports.Item = exports.ejProgressBar = exports.ejPivotTreeMap = exports.ejPivotSchemaDesigner = exports.ejPivotGrid = exports.ejPivotGauge = exports.ejPivotChart = exports.ejPercentageTextbox = exports.ejPdfViewer = exports.ejPager = exports.ejOverview = exports.ejNumericTextbox = exports.ejNavigationDrawer = exports.ejMenu = exports.ejMaskEdit = exports.ejMap = exports.Layer = exports.ejListView = exports.ejListBox = exports.ejLinearGauge = exports.KanbanColumn = exports.ejKanban = exports.ejHeatMapLegend = exports.ejHeatMap = exports.ejGroupButton = exports.ejGrid = exports.Column = exports.ejGantt = exports.ejFileExplorer = exports.ejDropDownList = exports.ejDigitalGauge = exports.ejDialog = exports.ejDiagram = exports.ejDateTimePicker = exports.ejDateRangePicker = exports.ejDatePicker = exports.ejCurrencyTextbox = exports.WidgetBase = exports.Util = exports.Template = exports.TemplateProcessor = exports.constants = exports.TemplatingEngine = exports.children = exports.customElement = exports.inlineView = exports.inject = exports.bindable = exports.customAttribute = exports.ejColorPicker = exports.ejCircularGauge = exports.ejCheckBox = exports.Series = exports.ejChart = exports.ejButton = exports.QualitativeRange = exports.ejBulletGraph = exports.ejBarcode = exports.ejAutocomplete = exports.ejAccordion = exports.EjConfigBuilder = undefined;
-var _dec, _dec2, _dec3, _dec4, _class2, _dec5, _dec6, _dec7, _class3, _dec8, _dec9, _dec10, _dec11, _class4, _dec12, _dec13, _dec14, _dec15, _dec16, _class5, _desc, _value, _class6, _descriptor, _dec17, _dec18, _dec19, _class8, _dec20, _dec21, _dec22, _class9, _dec23, _dec24, _dec25, _dec26, _dec27, _class10, _desc2, _value2, _class11, _descriptor2, _dec28, _dec29, _dec30, _class13, _dec31, _dec32, _dec33, _class14, _dec34, _dec35, _dec36, _dec37, _class15, _dec38, _dec39, _dec40, _class16, _dec41, _class17, _dec42, _dec43, _dec44, _dec45, _class18, _desc3, _value3, _class19, _descriptor3, _dec46, _desc4, _value4, _class21, _dec47, _dec48, _dec49, _class22, _dec50, _dec51, _dec52, _class23, _dec53, _dec54, _dec55, _class24, _dec56, _dec57, _dec58, _class25, _dec59, _dec60, _dec61, _dec62, _class26, _dec63, _dec64, _dec65, _dec66, _class27, _dec67, _dec68, _dec69, _dec70, _class28, _dec71, _dec72, _dec73, _class29, _dec74, _dec75, _dec76, _dec77, _class30, _dec78, _dec79, _dec80, _dec81, _class31, _dec82, _dec83, _dec84, _dec85, _class32, _desc5, _value5, _class33, _descriptor4, _dec86, _dec87, _dec88, _dec89, _dec90, _class35, _desc6, _value6, _class36, _descriptor5, _dec91, _dec92, _dec93, _class38, _dec94, _dec95, _dec96, _dec97, _class39, _dec98, _dec99, _dec100, _dec101, _class40, _dec102, _dec103, _dec104, _dec105, _dec106, _class41, _desc7, _value7, _class42, _descriptor6, _dec107, _dec108, _dec109, _class44, _dec110, _dec111, _dec112, _dec113, _class45, _dec114, _dec115, _dec116, _class46, _dec117, _dec118, _dec119, _dec120, _class47, _dec121, _dec122, _dec123, _class48, _dec124, _dec125, _dec126, _dec127, _dec128, _class49, _desc8, _value8, _class50, _descriptor7, _dec129, _dec130, _dec131, _class52, _dec132, _dec133, _dec134, _class53, _dec135, _dec136, _dec137, _dec138, _class54, _dec139, _dec140, _dec141, _class55, _dec142, _dec143, _dec144, _dec145, _class56, _dec146, _dec147, _dec148, _dec149, _class57, _dec150, _dec151, _dec152, _dec153, _class58, _dec154, _dec155, _dec156, _class59, _dec157, _dec158, _dec159, _dec160, _class60, _dec161, _dec162, _dec163, _dec164, _class61, _dec165, _dec166, _dec167, _dec168, _class62, _dec169, _dec170, _dec171, _dec172, _class63, _dec173, _dec174, _dec175, _dec176, _class64, _dec177, _dec178, _dec179, _class65, _dec180, _dec181, _dec182, _dec183, _class66, _desc9, _value9, _class67, _descriptor8, _dec184, _dec185, _dec186, _dec187, _dec188, _class69, _desc10, _value10, _class70, _descriptor9, _dec189, _dec190, _dec191, _dec192, _class72, _dec193, _dec194, _dec195, _class73, _dec196, _dec197, _dec198, _dec199, _dec200, _class74, _desc11, _value11, _class75, _descriptor10, _dec201, _dec202, _dec203, _class77, _dec204, _dec205, _dec206, _class78, _dec207, _dec208, _dec209, _dec210, _class79, _dec211, _dec212, _dec213, _dec214, _class80, _dec215, _dec216, _dec217, _class81, _dec218, _dec219, _dec220, _class82, _dec221, _dec222, _dec223, _dec224, _dec225, _class83, _desc12, _value12, _class84, _descriptor11, _dec226, _dec227, _dec228, _class86, _dec229, _dec230, _dec231, _dec232, _class87, _dec233, _dec234, _dec235, _class88, _dec236, _dec237, _dec238, _class89, _dec239, _dec240, _dec241, _dec242, _class90, _dec243, _dec244, _dec245, _class91, _dec246, _dec247, _dec248, _dec249, _class92, _dec250, _dec251, _dec252, _class93, _dec253, _dec254, _dec255, _dec256, _dec257, _class94, _desc13, _value13, _class95, _descriptor12, _dec258, _dec259, _dec260, _dec261, _dec262, _class97, _desc14, _value14, _class98, _descriptor13, _dec263, _dec264, _dec265, _class100, _dec266, _dec267, _dec268, _dec269, _class101, _dec270, _dec271, _dec272, _dec273, _class102, _dec274, _dec275, _dec276, _dec277, _class103, _dec278, _dec279, _dec280, _dec281, _class104, _dec282, _dec283, _dec284, _class105, _dec285, _dec286, _dec287, _class106, _dec288, _dec289, _dec290, _class107, _dec291, _dec292, _dec293, _class108, _dec294, _dec295, _dec296, _dec297, _dec298, _class109, _desc15, _value15, _class110, _descriptor14, _dec299, _dec300, _dec301, _dec302, _class112, _desc16, _value16, _class113, _descriptor15, _dec303, _dec304, _dec305, _class115, _dec306, _dec307, _dec308, _dec309, _dec310, _class116, _desc17, _value17, _class117, _descriptor16, _dec311, _dec312, _dec313, _class119, _dec314, _dec315, _dec316, _dec317, _class120, _dec318, _dec319, _dec320, _class121;
+var _dec, _dec2, _dec3, _dec4, _class2, _dec5, _dec6, _dec7, _class3, _dec8, _dec9, _dec10, _dec11, _class4, _dec12, _dec13, _dec14, _dec15, _dec16, _class5, _desc, _value, _class6, _descriptor, _dec17, _dec18, _dec19, _class8, _dec20, _dec21, _dec22, _class9, _dec23, _dec24, _dec25, _dec26, _dec27, _class10, _desc2, _value2, _class11, _descriptor2, _dec28, _dec29, _dec30, _class13, _dec31, _dec32, _dec33, _class14, _dec34, _dec35, _dec36, _dec37, _class15, _dec38, _dec39, _dec40, _class16, _dec41, _class17, _dec42, _dec43, _dec44, _dec45, _class18, _desc3, _value3, _class19, _descriptor3, _dec46, _desc4, _value4, _class21, _dec47, _dec48, _dec49, _class22, _dec50, _dec51, _dec52, _class23, _dec53, _dec54, _dec55, _class24, _dec56, _dec57, _dec58, _class25, _dec59, _dec60, _dec61, _dec62, _class26, _dec63, _dec64, _dec65, _dec66, _class27, _dec67, _dec68, _dec69, _dec70, _class28, _dec71, _dec72, _dec73, _class29, _dec74, _dec75, _dec76, _dec77, _class30, _dec78, _dec79, _dec80, _dec81, _class31, _dec82, _dec83, _dec84, _dec85, _class32, _desc5, _value5, _class33, _descriptor4, _dec86, _dec87, _dec88, _dec89, _dec90, _class35, _desc6, _value6, _class36, _descriptor5, _dec91, _dec92, _dec93, _class38, _dec94, _dec95, _dec96, _dec97, _class39, _dec98, _dec99, _dec100, _dec101, _class40, _dec102, _dec103, _dec104, _dec105, _dec106, _class41, _desc7, _value7, _class42, _descriptor6, _dec107, _dec108, _dec109, _class44, _dec110, _dec111, _dec112, _dec113, _class45, _dec114, _dec115, _dec116, _class46, _dec117, _dec118, _dec119, _dec120, _class47, _dec121, _dec122, _dec123, _class48, _dec124, _dec125, _dec126, _dec127, _dec128, _class49, _desc8, _value8, _class50, _descriptor7, _dec129, _dec130, _dec131, _class52, _dec132, _dec133, _dec134, _class53, _dec135, _dec136, _dec137, _dec138, _class54, _dec139, _dec140, _dec141, _class55, _dec142, _dec143, _dec144, _dec145, _class56, _dec146, _dec147, _dec148, _dec149, _class57, _dec150, _dec151, _dec152, _dec153, _class58, _dec154, _dec155, _dec156, _class59, _dec157, _dec158, _dec159, _dec160, _class60, _dec161, _dec162, _dec163, _dec164, _class61, _dec165, _dec166, _dec167, _dec168, _class62, _dec169, _dec170, _dec171, _dec172, _class63, _dec173, _dec174, _dec175, _dec176, _class64, _dec177, _dec178, _dec179, _class65, _dec180, _dec181, _dec182, _dec183, _class66, _desc9, _value9, _class67, _descriptor8, _dec184, _dec185, _dec186, _dec187, _dec188, _class69, _desc10, _value10, _class70, _descriptor9, _dec189, _dec190, _dec191, _dec192, _class72, _dec193, _dec194, _dec195, _class73, _dec196, _dec197, _dec198, _dec199, _dec200, _class74, _desc11, _value11, _class75, _descriptor10, _dec201, _dec202, _dec203, _class77, _dec204, _dec205, _dec206, _class78, _dec207, _dec208, _dec209, _dec210, _class79, _dec211, _dec212, _dec213, _dec214, _class80, _dec215, _dec216, _dec217, _class81, _dec218, _dec219, _dec220, _class82, _dec221, _dec222, _dec223, _dec224, _dec225, _class83, _desc12, _value12, _class84, _descriptor11, _dec226, _dec227, _dec228, _class86, _dec229, _dec230, _dec231, _class87, _dec232, _dec233, _dec234, _dec235, _class88, _dec236, _dec237, _dec238, _class89, _dec239, _dec240, _dec241, _dec242, _class90, _dec243, _dec244, _dec245, _dec246, _class91, _dec247, _dec248, _dec249, _class92, _dec250, _dec251, _dec252, _dec253, _class93, _dec254, _dec255, _dec256, _class94, _dec257, _dec258, _dec259, _dec260, _dec261, _class95, _desc13, _value13, _class96, _descriptor12, _dec262, _dec263, _dec264, _dec265, _dec266, _class98, _desc14, _value14, _class99, _descriptor13, _dec267, _dec268, _dec269, _class101, _dec270, _dec271, _dec272, _dec273, _class102, _dec274, _dec275, _dec276, _dec277, _class103, _dec278, _dec279, _dec280, _dec281, _class104, _dec282, _dec283, _dec284, _dec285, _class105, _dec286, _dec287, _dec288, _class106, _dec289, _dec290, _dec291, _class107, _dec292, _dec293, _dec294, _class108, _dec295, _dec296, _dec297, _class109, _dec298, _dec299, _dec300, _dec301, _dec302, _class110, _desc15, _value15, _class111, _descriptor14, _dec303, _dec304, _dec305, _dec306, _class113, _desc16, _value16, _class114, _descriptor15, _dec307, _dec308, _dec309, _class116, _dec310, _dec311, _dec312, _dec313, _dec314, _class117, _desc17, _value17, _class118, _descriptor16, _dec315, _dec316, _dec317, _class120, _dec318, _dec319, _dec320, _dec321, _class121, _dec322, _dec323, _dec324, _class122;
exports.configure = configure;
exports.generateBindables = generateBindables;
@@ -117,14 +117,16 @@ require('syncfusion-javascript/Scripts/ej/web/ej.rte.min');
require('syncfusion-javascript/Scripts/ej/web/ej.schedule.min');
-require('syncfusion-javascript/Scripts/ej/web/ej.signature.min');
-
require('syncfusion-javascript/Scripts/ej/common/ej.scroller.min');
+require('syncfusion-javascript/Scripts/ej/web/ej.signature.min');
+
require('syncfusion-javascript/Scripts/ej/web/ej.slider.min');
require('syncfusion-javascript/Scripts/ej/datavisualization/ej.sparkline.min');
+require('syncfusion-javascript/Scripts/ej/web/ej.spellcheck.min');
+
require('syncfusion-javascript/Scripts/ej/web/ej.splitbutton.min');
require('syncfusion-javascript/Scripts/ej/web/ej.splitter.min');
@@ -215,7 +217,7 @@ var EjConfigBuilder = exports.EjConfigBuilder = function () {
}
EjConfigBuilder.prototype.useAll = function useAll() {
- this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejTemplate();
+ this.ejGrid().ejChart().ejSunburstChart().ejMap().ejTreeMap().ejRangeNavigator().ejDiagram().ejHeatMap().ejHeatMapLegend().ejSparkline().ejSymbolPalette().ejOverview().ejPager().ejBulletGraph().ejCircularGauge().ejLinearGauge().ejDigitalGauge().ejSplitter().ejDatePicker().ejGantt().ejTreeGrid().ejColorPicker().ejDialog().ejScroller().ejBarcode().ejPdfViewer().ejNumericTextbox().ejCurrencyTextbox().ejPercentageTextbox().ejTimePicker().ejToolbar().ejMenu().ejMaskEdit().ejTreeView().ejKanban().ejRibbon().ejSpreadsheet().ejRating().ejListBox().ejListView().ejNavigationDrawer().ejRotator().ejRTE().ejDropDownList().ejAutocomplete().ejRadialMenu().ejRadialSlider().ejTile().ejAccordion().ejTab().ejCheckBox().ejRadioButton().ejToggleButton().ejSplitButton().ejGroupButton().ejDateTimePicker().ejDateRangePicker().ejProgressBar().ejTagCloud().ejButton().ejSlider().ejFileExplorer().ejPivotGrid().ejPivotChart().ejPivotGauge().ejPivotSchemaDesigner().ejPivotTreeMap().ejWaitingPopup().ejReportViewer().ejSchedule().ejUploadbox().ejSignature().ejTooltip().ejSpellCheck().ejTemplate();
return this;
};
@@ -601,6 +603,11 @@ var EjConfigBuilder = exports.EjConfigBuilder = function () {
return this;
};
+ EjConfigBuilder.prototype.ejSpellCheck = function ejSpellCheck() {
+ this.resources.push('./spellcheck/spellcheck');
+ return this;
+ };
+
EjConfigBuilder.prototype.ejTemplate = function ejTemplate() {
this.resources.push('./common/template');
return this;
@@ -728,7 +735,7 @@ var ejChart = exports.ejChart = (_dec23 = (0, _aureliaTemplating.customElement)(
return [];
}
})), _class11)) || _class10) || _class10) || _class10) || _class10);
-var Series = exports.Series = (_dec28 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec29 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'series'), _dec30 = generateBindables('series', ['bearFillColor', 'border', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec28(_class13 = _dec29(_class13 = _dec30(_class13 = function Series() {
+var Series = exports.Series = (_dec28 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec29 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'series'), _dec30 = generateBindables('series', ['bearFillColor', 'border', 'animationDuration', 'bullFillColor', 'columnFacet', 'columnWidth', 'columnSpacing', 'stackingGroup', 'dashArray', 'dataSource', 'cardinalSplineTension', 'doughnutCoefficient', 'doughnutSize', 'drawType', 'enableAnimation', 'enableSmartLabels', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'fill', 'font', 'funnelHeight', 'funnelWidth', 'gapRatio', 'isClosed', 'isStacking', 'isTransposed', 'showMedian', 'labelPosition', 'splitMode', 'boxPlotMode', 'bubbleOptions', 'splineType', 'lineCap', 'lineJoin', 'marker', 'name', 'opacity', 'outlierSettings', 'palette', 'pieCoefficient', 'pieOfPieCoefficient', 'splitValue', 'gapWidth', 'emptyPointSettings', 'positiveFill', 'connectorLine', 'dragSettings', 'errorBar', 'points', 'pyramidMode', 'query', 'startAngle', 'cornerRadius', 'tooltip', 'type', 'visibility', 'visibleOnLegend', 'xAxisName', 'xName', 'yAxisName', 'yName', 'high', 'low', 'open', 'close', 'pointColorMappingName', 'zOrder', 'size', 'trendlines', 'highlightSettings', 'selectionSettings']), _dec28(_class13 = _dec29(_class13 = _dec30(_class13 = function Series() {
_classCallCheck(this, Series);
}) || _class13) || _class13) || _class13);
var ejCheckBox = exports.ejCheckBox = (_dec31 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'check-box'), _dec32 = generateBindables('ejCheckBox', ['checked', 'checkState', 'cssClass', 'enabled', 'enablePersistence', 'enableRTL', 'enableTriState', 'htmlAttributes', 'id', 'idPrefix', 'name', 'showRoundedCorner', 'size', 'text', 'validationMessage', 'validationRules', 'value'], ['checked', 'checkState'], { 'enableRTL': 'enableRtl' }), _dec33 = (0, _aureliaDependencyInjection.inject)(Element), _dec31(_class14 = _dec32(_class14 = _dec33(_class14 = function (_WidgetBase7) {
@@ -1105,6 +1112,9 @@ var WidgetBase = exports.WidgetBase = (_dec46 = delayed(), (_class21 = function
WidgetBase.prototype.bind = function bind(ctx, overrideCtx) {
this.parentCtx = overrideCtx;
+ if (this.widget && this.isEditor) {
+ this.widget.option('value', this.eValue);
+ }
};
WidgetBase.prototype.createTwoWays = function createTwoWays() {
@@ -1218,7 +1228,7 @@ var WidgetBase = exports.WidgetBase = (_dec46 = delayed(), (_class21 = function
return WidgetBase;
}(), (_applyDecoratedDescriptor(_class21.prototype, 'attached', [_dec46], Object.getOwnPropertyDescriptor(_class21.prototype, 'attached'), _class21.prototype)), _class21));
-var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec47 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'currency-textbox'), _dec48 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec49 = (0, _aureliaDependencyInjection.inject)(Element), _dec47(_class22 = _dec48(_class22 = _dec49(_class22 = function (_WidgetBase10) {
+var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec47 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'currency-textbox'), _dec48 = generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec49 = (0, _aureliaDependencyInjection.inject)(Element), _dec47(_class22 = _dec48(_class22 = _dec49(_class22 = function (_WidgetBase10) {
_inherits(ejCurrencyTextbox, _WidgetBase10);
function ejCurrencyTextbox(element) {
@@ -1233,7 +1243,7 @@ var ejCurrencyTextbox = exports.ejCurrencyTextbox = (_dec47 = (0, _aureliaTempla
return ejCurrencyTextbox;
}(WidgetBase)) || _class22) || _class22) || _class22);
-var ejDatePicker = exports.ejDatePicker = (_dec50 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'date-picker'), _dec51 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec52 = (0, _aureliaDependencyInjection.inject)(Element), _dec50(_class23 = _dec51(_class23 = _dec52(_class23 = function (_WidgetBase11) {
+var ejDatePicker = exports.ejDatePicker = (_dec50 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'date-picker'), _dec51 = generateBindables('ejDatePicker', ['allowEdit', 'allowDrillDown', 'blackoutDates', 'buttonText', 'cssClass', 'dateFormat', 'dayHeaderFormat', 'depthLevel', 'displayInline', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'fields', 'headerFormat', 'height', 'highlightSection', 'highlightWeekend', 'htmlAttributes', 'locale', 'maxDate', 'minDate', 'readOnly', 'showDisabledRange', 'showFooter', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'showTooltip', 'specialDates', 'startDay', 'startLevel', 'stepMonths', 'tooltipFormat', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'weekNumber', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec52 = (0, _aureliaDependencyInjection.inject)(Element), _dec50(_class23 = _dec51(_class23 = _dec52(_class23 = function (_WidgetBase11) {
_inherits(ejDatePicker, _WidgetBase11);
function ejDatePicker(element) {
@@ -1248,7 +1258,7 @@ var ejDatePicker = exports.ejDatePicker = (_dec50 = (0, _aureliaTemplating.custo
return ejDatePicker;
}(WidgetBase)) || _class23) || _class23) || _class23);
-var ejDateRangePicker = exports.ejDateRangePicker = (_dec53 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'date-range-picker'), _dec54 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec55 = (0, _aureliaDependencyInjection.inject)(Element), _dec53(_class24 = _dec54(_class24 = _dec55(_class24 = function (_WidgetBase12) {
+var ejDateRangePicker = exports.ejDateRangePicker = (_dec53 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'date-range-picker'), _dec54 = generateBindables('ejDateRangePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateFormat', 'enableTimePicker', 'enabled', 'enablePersistence', 'endDate', 'height', 'locale', 'ranges', 'separator', 'startDate', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'watermarkText', 'width'], ['value']), _dec55 = (0, _aureliaDependencyInjection.inject)(Element), _dec53(_class24 = _dec54(_class24 = _dec55(_class24 = function (_WidgetBase12) {
_inherits(ejDateRangePicker, _WidgetBase12);
function ejDateRangePicker(element) {
@@ -1278,7 +1288,7 @@ var ejDateTimePicker = exports.ejDateTimePicker = (_dec56 = (0, _aureliaTemplati
return ejDateTimePicker;
}(WidgetBase)) || _class25) || _class25) || _class25);
-var ejDiagram = exports.ejDiagram = (_dec59 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'diagram'), _dec60 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec61 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec62 = (0, _aureliaDependencyInjection.inject)(Element), _dec59(_class26 = _dec60(_class26 = _dec61(_class26 = _dec62(_class26 = function (_WidgetBase14) {
+var ejDiagram = exports.ejDiagram = (_dec59 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'diagram'), _dec60 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec61 = generateBindables('ejDiagram', ['backgroundColor', 'backgroundImage', 'bridgeDirection', 'commandManager', 'connectors', 'connectorTemplate', 'constraints', 'contextMenu', 'dataSourceSettings', 'defaultSettings', 'drawType', 'enableAutoScroll', 'enableContextMenu', 'height', 'historyManager', 'labelRenderingMode', 'layout', 'locale', 'nodes', 'nodeTemplate', 'pageSettings', 'scrollSettings', 'selectedItems', 'showTooltip', 'rulerSettings', 'snapSettings', 'tool', 'tooltip', 'width', 'zoomFactor']), _dec62 = (0, _aureliaDependencyInjection.inject)(Element), _dec59(_class26 = _dec60(_class26 = _dec61(_class26 = _dec62(_class26 = function (_WidgetBase14) {
_inherits(ejDiagram, _WidgetBase14);
function ejDiagram(element) {
@@ -1334,7 +1344,7 @@ var ejDropDownList = exports.ejDropDownList = (_dec71 = (0, _aureliaTemplating.c
return ejDropDownList;
}(WidgetBase)) || _class29) || _class29) || _class29);
-var ejFileExplorer = exports.ejFileExplorer = (_dec74 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'file-explorer'), _dec75 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec76 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec77 = (0, _aureliaDependencyInjection.inject)(Element), _dec74(_class30 = _dec75(_class30 = _dec76(_class30 = _dec77(_class30 = function (_WidgetBase18) {
+var ejFileExplorer = exports.ejFileExplorer = (_dec74 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'file-explorer'), _dec75 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec76 = generateBindables('ejFileExplorer', ['ajaxAction', 'ajaxDataType', 'ajaxSettings', 'allowDragAndDrop', 'allowKeyboardNavigation', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'enablePersistence', 'enableResize', 'enableRTL', 'enableThumbnailCompress', 'fileTypes', 'filterSettings', 'gridSettings', 'height', 'isResponsive', 'layout', 'locale', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'path', 'rootFolderName', 'selectedFolder', 'selectedItems', 'showCheckbox', 'showContextMenu', 'showFooter', 'showRoundedCorner', 'showThumbnail', 'showToolbar', 'showNavigationPane', 'tools', 'toolsList', 'uploadSettings', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec77 = (0, _aureliaDependencyInjection.inject)(Element), _dec74(_class30 = _dec75(_class30 = _dec76(_class30 = _dec77(_class30 = function (_WidgetBase18) {
_inherits(ejFileExplorer, _WidgetBase18);
function ejFileExplorer(element) {
@@ -1348,7 +1358,7 @@ var ejFileExplorer = exports.ejFileExplorer = (_dec74 = (0, _aureliaTemplating.c
return ejFileExplorer;
}(WidgetBase)) || _class30) || _class30) || _class30) || _class30);
-var ejGantt = exports.ejGantt = (_dec78 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'gantt'), _dec79 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec80 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec81 = (0, _aureliaDependencyInjection.inject)(Element), _dec78(_class31 = _dec79(_class31 = _dec80(_class31 = _dec81(_class31 = function (_WidgetBase19) {
+var ejGantt = exports.ejGantt = (_dec78 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'gantt'), _dec79 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec80 = generateBindables('ejGantt', ['addDialogFields', 'allowColumnResize', 'allowGanttChartEditing', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowMultipleExporting', 'allowSelection', 'allowSorting', 'allowDragAndDrop', 'enablePredecessorValidation', 'baselineColor', 'workMapping', 'expandStateMapping', 'baselineEndDateMapping', 'baselineStartDateMapping', 'childMapping', 'columnDialogFields', 'connectorLineBackground', 'connectorlineWidth', 'cssClass', 'cellTooltipTemplate', 'dragTooltip', 'dataSource', 'dateFormat', 'dayWorkingTime', 'durationMapping', 'durationUnit', 'editDialogFields', 'isResponsive', 'splitterSettings', 'editSettings', 'enableAltRow', 'enableWBS', 'enableWBSPredecessor', 'enableCollapseAll', 'leftTaskLabelMapping', 'rightTaskLabelMapping', 'leftTaskLabelTemplate', 'rightTaskLabelTemplate', 'enableContextMenu', 'enableProgressBarResizing', 'enableResize', 'enableTaskbarDragTooltip', 'enableTaskbarTooltip', 'enableVirtualization', 'endDateMapping', 'highlightWeekends', 'holidays', 'includeWeekend', 'locale', 'milestoneMapping', 'showColumnOptions', 'parentTaskbarTemplate', 'taskType', 'workUnit', 'taskSchedulingMode', 'selectionType', 'parentProgressbarBackground', 'resourceUnitMapping', 'notesMapping', 'taskSchedulingModeMapping', 'durationUnitMapping', 'parentTaskbarBackground', 'parentTaskIdMapping', 'predecessorMapping', 'progressbarBackground', 'progressbarHeight', 'progressbarTooltipTemplate', 'progressbarTooltipTemplateId', 'progressMapping', 'query', 'renderBaseline', 'resourceIdMapping', 'resourceInfoMapping', 'resourceNameMapping', 'resources', 'roundOffDayworkingTime', 'rowHeight', 'scheduleEndDate', 'scheduleHeaderSettings', 'scheduleStartDate', 'selectedRowIndex', 'showColumnChooser', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'showProgressStatus', 'showResourceNames', 'showTaskNames', 'sizeSettings', 'selectedCellIndexes', 'sortSettings', 'splitterPosition', 'startDateMapping', 'stripLines', 'taskbarBackground', 'taskbarEditingTooltipTemplate', 'taskbarEditingTooltipTemplateId', 'taskbarHeight', 'taskbarTooltipTemplate', 'taskbarTemplate', 'milestoneTemplate', 'readOnly', 'taskbarTooltipTemplateId', 'taskIdMapping', 'taskNameMapping', 'toolbarSettings', 'treeColumnIndex', 'selectionMode', 'validateManualTasksOnLinking', 'weekendBackground', 'workingTimeScale', 'workWeek'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes']), _dec81 = (0, _aureliaDependencyInjection.inject)(Element), _dec78(_class31 = _dec79(_class31 = _dec80(_class31 = _dec81(_class31 = function (_WidgetBase19) {
_inherits(ejGantt, _WidgetBase19);
function ejGantt(element) {
@@ -1587,7 +1597,7 @@ var ejNavigationDrawer = exports.ejNavigationDrawer = (_dec135 = (0, _aureliaTem
return ejNavigationDrawer;
}(WidgetBase)) || _class54) || _class54) || _class54) || _class54);
-var ejNumericTextbox = exports.ejNumericTextbox = (_dec139 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'numeric-textbox'), _dec140 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec141 = (0, _aureliaDependencyInjection.inject)(Element), _dec139(_class55 = _dec140(_class55 = _dec141(_class55 = function (_WidgetBase32) {
+var ejNumericTextbox = exports.ejNumericTextbox = (_dec139 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'numeric-textbox'), _dec140 = generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec141 = (0, _aureliaDependencyInjection.inject)(Element), _dec139(_class55 = _dec140(_class55 = _dec141(_class55 = function (_WidgetBase32) {
_inherits(ejNumericTextbox, _WidgetBase32);
function ejNumericTextbox(element) {
@@ -1616,7 +1626,7 @@ var ejOverview = exports.ejOverview = (_dec142 = (0, _aureliaTemplating.customEl
return ejOverview;
}(WidgetBase)) || _class56) || _class56) || _class56) || _class56);
-var ejPager = exports.ejPager = (_dec146 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'pager'), _dec147 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec148 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec149 = (0, _aureliaDependencyInjection.inject)(Element), _dec146(_class57 = _dec147(_class57 = _dec148(_class57 = _dec149(_class57 = function (_WidgetBase34) {
+var ejPager = exports.ejPager = (_dec146 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'pager'), _dec147 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec148 = generateBindables('ejPager', ['customText', 'currentPage', 'enableExternalMessage', 'enableQueryString', 'enableRTL', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizeList', 'totalPages', 'totalRecordsCount', 'showPageInfo'], [], { 'enableRTL': 'enableRtl' }), _dec149 = (0, _aureliaDependencyInjection.inject)(Element), _dec146(_class57 = _dec147(_class57 = _dec148(_class57 = _dec149(_class57 = function (_WidgetBase34) {
_inherits(ejPager, _WidgetBase34);
function ejPager(element) {
@@ -1644,7 +1654,7 @@ var ejPdfViewer = exports.ejPdfViewer = (_dec150 = (0, _aureliaTemplating.custom
return ejPdfViewer;
}(WidgetBase)) || _class58) || _class58) || _class58) || _class58);
-var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec154 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'percentage-textbox'), _dec155 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec156 = (0, _aureliaDependencyInjection.inject)(Element), _dec154(_class59 = _dec155(_class59 = _dec156(_class59 = function (_WidgetBase36) {
+var ejPercentageTextbox = exports.ejPercentageTextbox = (_dec154 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'percentage-textbox'), _dec155 = generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec156 = (0, _aureliaDependencyInjection.inject)(Element), _dec154(_class59 = _dec155(_class59 = _dec156(_class59 = function (_WidgetBase36) {
_inherits(ejPercentageTextbox, _WidgetBase36);
function ejPercentageTextbox(element) {
@@ -1789,7 +1799,7 @@ var ejRadialMenu = exports.ejRadialMenu = (_dec184 = (0, _aureliaTemplating.cust
return [];
}
})), _class70)) || _class69) || _class69) || _class69) || _class69);
-var ejRadialSlider = exports.ejRadialSlider = (_dec189 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'radial-slider'), _dec190 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec191 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec192 = (0, _aureliaDependencyInjection.inject)(Element), _dec189(_class72 = _dec190(_class72 = _dec191(_class72 = _dec192(_class72 = function (_WidgetBase44) {
+var ejRadialSlider = exports.ejRadialSlider = (_dec189 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'radial-slider'), _dec190 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec191 = generateBindables('ejRadialSlider', ['autoOpen', 'cssClass', 'enableAnimation', 'enableRoundOff', 'endAngle', 'inline', 'innerCircleImageClass', 'innerCircleImageUrl', 'labelSpace', 'locale', 'radius', 'showInnerCircle', 'startAngle', 'strokeWidth', 'ticks', 'value'], ['value', 'ticks']), _dec192 = (0, _aureliaDependencyInjection.inject)(Element), _dec189(_class72 = _dec190(_class72 = _dec191(_class72 = _dec192(_class72 = function (_WidgetBase44) {
_inherits(ejRadialSlider, _WidgetBase44);
function ejRadialSlider(element) {
@@ -1939,11 +1949,11 @@ var ejSchedule = exports.ejSchedule = (_dec221 = (0, _aureliaTemplating.customEl
var ScheduleResource = exports.ScheduleResource = (_dec226 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec227 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'schedule-resource'), _dec228 = generateBindables('resources', ['field', 'title', 'name', 'allowMultiple', 'resourceSettings']), _dec226(_class86 = _dec227(_class86 = _dec228(_class86 = function ScheduleResource() {
_classCallCheck(this, ScheduleResource);
}) || _class86) || _class86) || _class86);
-var ejSignature = exports.ejSignature = (_dec229 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'signature'), _dec230 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec231 = generateBindables('ejSignature', ['backgroundColor', 'backgroundImage', 'enabled', 'height', 'isResponsive', 'saveImageFormat', 'saveWithBackground', 'showRoundedCorner', 'strokeColor', 'strokeWidth', 'width']), _dec232 = (0, _aureliaDependencyInjection.inject)(Element), _dec229(_class87 = _dec230(_class87 = _dec231(_class87 = _dec232(_class87 = function (_WidgetBase53) {
- _inherits(ejSignature, _WidgetBase53);
+var ejScroller = exports.ejScroller = (_dec229 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'scroller'), _dec230 = generateBindables('ejScroller', ['animationSpeed', 'autoHide', 'buttonSize', 'enabled', 'enablePersistence', 'enableRTL', 'enableTouchScroll', 'height', 'scrollerSize', 'scrollLeft', 'scrollOneStepBy', 'scrollTop', 'targetPane', 'width'], ['scrollLeft', 'scrollTop'], { 'enableRTL': 'enableRtl' }), _dec231 = (0, _aureliaDependencyInjection.inject)(Element), _dec229(_class87 = _dec230(_class87 = _dec231(_class87 = function (_WidgetBase53) {
+ _inherits(ejScroller, _WidgetBase53);
- function ejSignature(element) {
- _classCallCheck(this, ejSignature);
+ function ejScroller(element) {
+ _classCallCheck(this, ejScroller);
var _this55 = _possibleConstructorReturn(this, _WidgetBase53.call(this));
@@ -1951,13 +1961,13 @@ var ejSignature = exports.ejSignature = (_dec229 = (0, _aureliaTemplating.custom
return _this55;
}
- return ejSignature;
-}(WidgetBase)) || _class87) || _class87) || _class87) || _class87);
-var ejScroller = exports.ejScroller = (_dec233 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'scroller'), _dec234 = generateBindables('ejScroller', ['animationSpeed', 'autoHide', 'buttonSize', 'enabled', 'enablePersistence', 'enableRTL', 'enableTouchScroll', 'height', 'scrollerSize', 'scrollLeft', 'scrollOneStepBy', 'scrollTop', 'targetPane', 'width'], ['scrollLeft', 'scrollTop'], { 'enableRTL': 'enableRtl' }), _dec235 = (0, _aureliaDependencyInjection.inject)(Element), _dec233(_class88 = _dec234(_class88 = _dec235(_class88 = function (_WidgetBase54) {
- _inherits(ejScroller, _WidgetBase54);
+ return ejScroller;
+}(WidgetBase)) || _class87) || _class87) || _class87);
+var ejSignature = exports.ejSignature = (_dec232 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'signature'), _dec233 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec234 = generateBindables('ejSignature', ['backgroundColor', 'backgroundImage', 'enabled', 'height', 'isResponsive', 'saveImageFormat', 'saveWithBackground', 'showRoundedCorner', 'strokeColor', 'strokeWidth', 'width']), _dec235 = (0, _aureliaDependencyInjection.inject)(Element), _dec232(_class88 = _dec233(_class88 = _dec234(_class88 = _dec235(_class88 = function (_WidgetBase54) {
+ _inherits(ejSignature, _WidgetBase54);
- function ejScroller(element) {
- _classCallCheck(this, ejScroller);
+ function ejSignature(element) {
+ _classCallCheck(this, ejSignature);
var _this56 = _possibleConstructorReturn(this, _WidgetBase54.call(this));
@@ -1965,8 +1975,8 @@ var ejScroller = exports.ejScroller = (_dec233 = (0, _aureliaTemplating.customAt
return _this56;
}
- return ejScroller;
-}(WidgetBase)) || _class88) || _class88) || _class88);
+ return ejSignature;
+}(WidgetBase)) || _class88) || _class88) || _class88) || _class88);
var ejSlider = exports.ejSlider = (_dec236 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'slider'), _dec237 = generateBindables('ejSlider', ['allowMouseWheel', 'animationSpeed', 'cssClass', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'height', 'htmlAttributes', 'incrementStep', 'largeStep', 'maxValue', 'minValue', 'orientation', 'readOnly', 'showRoundedCorner', 'showScale', 'showSmallTicks', 'showTooltip', 'sliderType', 'smallStep', 'value', 'values', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec238 = (0, _aureliaDependencyInjection.inject)(Element), _dec236(_class89 = _dec237(_class89 = _dec238(_class89 = function (_WidgetBase55) {
_inherits(ejSlider, _WidgetBase55);
@@ -1995,11 +2005,11 @@ var ejSparkline = exports.ejSparkline = (_dec239 = (0, _aureliaTemplating.custom
return ejSparkline;
}(WidgetBase)) || _class90) || _class90) || _class90) || _class90);
-var ejSplitButton = exports.ejSplitButton = (_dec243 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'split-button'), _dec244 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec245 = (0, _aureliaDependencyInjection.inject)(Element), _dec243(_class91 = _dec244(_class91 = _dec245(_class91 = function (_WidgetBase57) {
- _inherits(ejSplitButton, _WidgetBase57);
+var ejSpellCheck = exports.ejSpellCheck = (_dec243 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'spell-check'), _dec244 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec245 = generateBindables('ejSpellCheck', ['dictionarySettings', 'misspellWordCss', 'locale', 'maxSuggestionCount', 'ignoreWords', 'contextMenuSettings', 'ignoreSettings', 'isResponsive', 'enableValidateOnType', 'controlsToValidate']), _dec246 = (0, _aureliaDependencyInjection.inject)(Element), _dec243(_class91 = _dec244(_class91 = _dec245(_class91 = _dec246(_class91 = function (_WidgetBase57) {
+ _inherits(ejSpellCheck, _WidgetBase57);
- function ejSplitButton(element) {
- _classCallCheck(this, ejSplitButton);
+ function ejSpellCheck(element) {
+ _classCallCheck(this, ejSpellCheck);
var _this59 = _possibleConstructorReturn(this, _WidgetBase57.call(this));
@@ -2007,13 +2017,13 @@ var ejSplitButton = exports.ejSplitButton = (_dec243 = (0, _aureliaTemplating.cu
return _this59;
}
- return ejSplitButton;
-}(WidgetBase)) || _class91) || _class91) || _class91);
-var ejSplitter = exports.ejSplitter = (_dec246 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'splitter'), _dec247 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec248 = generateBindables('ejSplitter', ['allowKeyboardNavigation', 'animationSpeed', 'cssClass', 'enableAnimation', 'enableRTL', 'height', 'htmlAttributes', 'isResponsive', 'orientation', 'properties', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec249 = (0, _aureliaDependencyInjection.inject)(Element), _dec246(_class92 = _dec247(_class92 = _dec248(_class92 = _dec249(_class92 = function (_WidgetBase58) {
- _inherits(ejSplitter, _WidgetBase58);
+ return ejSpellCheck;
+}(WidgetBase)) || _class91) || _class91) || _class91) || _class91);
+var ejSplitButton = exports.ejSplitButton = (_dec247 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'split-button'), _dec248 = generateBindables('ejSplitButton', ['arrowPosition', 'buttonMode', 'contentType', 'cssClass', 'enabled', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'prefixIcon', 'showRoundedCorner', 'size', 'suffixIcon', 'targetID', 'target', 'text', 'width'], [], { 'enableRTL': 'enableRtl', 'targetID': 'targetId' }), _dec249 = (0, _aureliaDependencyInjection.inject)(Element), _dec247(_class92 = _dec248(_class92 = _dec249(_class92 = function (_WidgetBase58) {
+ _inherits(ejSplitButton, _WidgetBase58);
- function ejSplitter(element) {
- _classCallCheck(this, ejSplitter);
+ function ejSplitButton(element) {
+ _classCallCheck(this, ejSplitButton);
var _this60 = _possibleConstructorReturn(this, _WidgetBase58.call(this));
@@ -2021,93 +2031,93 @@ var ejSplitter = exports.ejSplitter = (_dec246 = (0, _aureliaTemplating.customEl
return _this60;
}
+ return ejSplitButton;
+}(WidgetBase)) || _class92) || _class92) || _class92);
+var ejSplitter = exports.ejSplitter = (_dec250 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'splitter'), _dec251 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec252 = generateBindables('ejSplitter', ['allowKeyboardNavigation', 'animationSpeed', 'cssClass', 'enableAnimation', 'enableRTL', 'height', 'htmlAttributes', 'isResponsive', 'orientation', 'properties', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec253 = (0, _aureliaDependencyInjection.inject)(Element), _dec250(_class93 = _dec251(_class93 = _dec252(_class93 = _dec253(_class93 = function (_WidgetBase59) {
+ _inherits(ejSplitter, _WidgetBase59);
+
+ function ejSplitter(element) {
+ _classCallCheck(this, ejSplitter);
+
+ var _this61 = _possibleConstructorReturn(this, _WidgetBase59.call(this));
+
+ _this61.element = element;
+ return _this61;
+ }
+
return ejSplitter;
-}(WidgetBase)) || _class92) || _class92) || _class92) || _class92);
-var Sheet = exports.Sheet = (_dec250 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec251 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sheet'), _dec252 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell']), _dec250(_class93 = _dec251(_class93 = _dec252(_class93 = function Sheet() {
+}(WidgetBase)) || _class93) || _class93) || _class93) || _class93);
+var Sheet = exports.Sheet = (_dec254 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec255 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sheet'), _dec256 = generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'frozenRows', 'frozenColumns', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'sheetName', 'startCell']), _dec254(_class94 = _dec255(_class94 = _dec256(_class94 = function Sheet() {
_classCallCheck(this, Sheet);
-}) || _class93) || _class93) || _class93);
-var ejSpreadsheet = exports.ejSpreadsheet = (_dec253 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'spreadsheet'), _dec254 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec255 = generateBindables('ejSpreadsheet', ['activeSheetIndex', 'allowAutoCellType', 'allowAutoFill', 'allowAutoSum', 'allowCellFormatting', 'allowCellType', 'allowCharts', 'allowClear', 'allowClipboard', 'allowComments', 'allowConditionalFormats', 'allowDataValidation', 'allowDelete', 'allowDragAndDrop', 'allowEditing', 'allowFiltering', 'allowFormatAsTable', 'allowFormatPainter', 'allowFormulaBar', 'allowFreezing', 'allowHyperlink', 'allowImport', 'allowInsert', 'allowKeyboardNavigation', 'allowLockCell', 'allowMerging', 'allowOverflow', 'allowResizing', 'allowSearching', 'allowSelection', 'allowSorting', 'allowUndoRedo', 'allowWrap', 'apWidth', 'autoFillSettings', 'chartSettings', 'columnCount', 'columnWidth', 'cssClass', 'customFormulas', 'enableContextMenu', 'enablePivotTable', 'enableTouch', 'exportSettings', 'formatSettings', 'importSettings', 'isReadOnly', 'locale', 'nameManager', 'pictureSettings', 'printSettings', 'ribbonSettings', 'rowCount', 'rowHeight', 'scrollSettings', 'selectionSettings', 'sheetCount', 'sheets', 'showPager', 'showRibbon', 'undoRedoStep', 'userName']), _dec256 = (0, _aureliaDependencyInjection.inject)(Element), _dec257 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'sheet'), _dec253(_class94 = _dec254(_class94 = _dec255(_class94 = _dec256(_class94 = (_class95 = function (_WidgetBase59) {
- _inherits(ejSpreadsheet, _WidgetBase59);
+}) || _class94) || _class94) || _class94);
+var ejSpreadsheet = exports.ejSpreadsheet = (_dec257 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'spreadsheet'), _dec258 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec259 = generateBindables('ejSpreadsheet', ['activeSheetIndex', 'allowAutoCellType', 'allowAutoFill', 'allowAutoSum', 'allowCellFormatting', 'allowCellType', 'allowCharts', 'allowClear', 'allowClipboard', 'allowComments', 'allowConditionalFormats', 'allowDataValidation', 'allowDelete', 'allowDragAndDrop', 'allowEditing', 'allowFiltering', 'allowFormatAsTable', 'allowFormatPainter', 'allowFormulaBar', 'allowFreezing', 'allowHyperlink', 'allowImport', 'allowInsert', 'allowKeyboardNavigation', 'allowLockCell', 'allowMerging', 'allowOverflow', 'allowResizing', 'allowSearching', 'allowSelection', 'allowSorting', 'allowUndoRedo', 'allowWrap', 'apWidth', 'autoFillSettings', 'chartSettings', 'columnCount', 'columnWidth', 'cssClass', 'customFormulas', 'enableContextMenu', 'enablePivotTable', 'enableTouch', 'exportSettings', 'formatSettings', 'importSettings', 'isReadOnly', 'locale', 'nameManager', 'pictureSettings', 'printSettings', 'ribbonSettings', 'rowCount', 'rowHeight', 'scrollSettings', 'selectionSettings', 'sheetCount', 'sheets', 'showPager', 'showRibbon', 'undoRedoStep', 'userName']), _dec260 = (0, _aureliaDependencyInjection.inject)(Element), _dec261 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'sheet'), _dec257(_class95 = _dec258(_class95 = _dec259(_class95 = _dec260(_class95 = (_class96 = function (_WidgetBase60) {
+ _inherits(ejSpreadsheet, _WidgetBase60);
function ejSpreadsheet(element) {
_classCallCheck(this, ejSpreadsheet);
- var _this61 = _possibleConstructorReturn(this, _WidgetBase59.call(this));
+ var _this62 = _possibleConstructorReturn(this, _WidgetBase60.call(this));
- _initDefineProp(_this61, 'sheets', _descriptor12, _this61);
+ _initDefineProp(_this62, 'sheets', _descriptor12, _this62);
- _this61.element = element;
- _this61.hasChildProperty = true;
- _this61.childPropertyName = 'sheets';
- return _this61;
+ _this62.element = element;
+ _this62.hasChildProperty = true;
+ _this62.childPropertyName = 'sheets';
+ return _this62;
}
return ejSpreadsheet;
-}(WidgetBase), (_descriptor12 = _applyDecoratedDescriptor(_class95.prototype, 'sheets', [_dec257], {
+}(WidgetBase), (_descriptor12 = _applyDecoratedDescriptor(_class96.prototype, 'sheets', [_dec261], {
enumerable: true,
initializer: function initializer() {
return [];
}
-})), _class95)) || _class94) || _class94) || _class94) || _class94);
-var ejSunburstChart = exports.ejSunburstChart = (_dec258 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sunburst-chart'), _dec259 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec260 = generateBindables('ejSunburstChart', ['background', 'valueMemberPath', 'border', 'segmentBorder', 'dataSource', 'palette', 'parentNode', 'xName', 'yName', 'isResponsive', 'size', 'visible', 'tooltip', 'points', 'startAngle', 'endAngle', 'radius', 'innerRadius', 'dataLabelSettings', 'title', 'highlightSettings', 'selectionSettings', 'levels', 'legend', 'theme', 'margin', 'enableAnimation', 'opacity', 'zoomSettings', 'animationType']), _dec261 = (0, _aureliaDependencyInjection.inject)(Element), _dec262 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'sunburst-levels'), _dec258(_class97 = _dec259(_class97 = _dec260(_class97 = _dec261(_class97 = (_class98 = function (_WidgetBase60) {
- _inherits(ejSunburstChart, _WidgetBase60);
+})), _class96)) || _class95) || _class95) || _class95) || _class95);
+var ejSunburstChart = exports.ejSunburstChart = (_dec262 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sunburst-chart'), _dec263 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec264 = generateBindables('ejSunburstChart', ['background', 'valueMemberPath', 'border', 'segmentBorder', 'dataSource', 'palette', 'parentNode', 'xName', 'yName', 'isResponsive', 'size', 'visible', 'tooltip', 'points', 'startAngle', 'endAngle', 'radius', 'innerRadius', 'dataLabelSettings', 'title', 'highlightSettings', 'selectionSettings', 'levels', 'legend', 'theme', 'margin', 'enableAnimation', 'opacity', 'zoomSettings', 'animationType']), _dec265 = (0, _aureliaDependencyInjection.inject)(Element), _dec266 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'sunburst-levels'), _dec262(_class98 = _dec263(_class98 = _dec264(_class98 = _dec265(_class98 = (_class99 = function (_WidgetBase61) {
+ _inherits(ejSunburstChart, _WidgetBase61);
function ejSunburstChart(element) {
_classCallCheck(this, ejSunburstChart);
- var _this62 = _possibleConstructorReturn(this, _WidgetBase60.call(this));
+ var _this63 = _possibleConstructorReturn(this, _WidgetBase61.call(this));
- _initDefineProp(_this62, 'levels', _descriptor13, _this62);
+ _initDefineProp(_this63, 'levels', _descriptor13, _this63);
- _this62.element = element;
- _this62.hasChildProperty = true;
- _this62.childPropertyName = 'levels';
- return _this62;
+ _this63.element = element;
+ _this63.hasChildProperty = true;
+ _this63.childPropertyName = 'levels';
+ return _this63;
}
return ejSunburstChart;
-}(WidgetBase), (_descriptor13 = _applyDecoratedDescriptor(_class98.prototype, 'levels', [_dec262], {
+}(WidgetBase), (_descriptor13 = _applyDecoratedDescriptor(_class99.prototype, 'levels', [_dec266], {
enumerable: true,
initializer: function initializer() {
return [];
}
-})), _class98)) || _class97) || _class97) || _class97) || _class97);
-var SunburstLevels = exports.SunburstLevels = (_dec263 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec264 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sunburst-levels'), _dec265 = generateBindables('levels', ['groupMemberPath']), _dec263(_class100 = _dec264(_class100 = _dec265(_class100 = function SunburstLevels() {
+})), _class99)) || _class98) || _class98) || _class98) || _class98);
+var SunburstLevels = exports.SunburstLevels = (_dec267 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec268 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'sunburst-levels'), _dec269 = generateBindables('levels', ['groupMemberPath']), _dec267(_class101 = _dec268(_class101 = _dec269(_class101 = function SunburstLevels() {
_classCallCheck(this, SunburstLevels);
-}) || _class100) || _class100) || _class100);
-var ejSymbolPalette = exports.ejSymbolPalette = (_dec266 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'symbol-palette'), _dec267 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec268 = generateBindables('ejSymbolPalette', ['allowDrag', 'cssClass', 'defaultSettings', 'diagramId', 'headerHeight', 'height', 'paletteItemHeight', 'paletteItemWidth', 'palettes', 'previewHeight', 'previewOffset', 'previewWidth', 'showPaletteItemText', 'width']), _dec269 = (0, _aureliaDependencyInjection.inject)(Element), _dec266(_class101 = _dec267(_class101 = _dec268(_class101 = _dec269(_class101 = function (_WidgetBase61) {
- _inherits(ejSymbolPalette, _WidgetBase61);
+}) || _class101) || _class101) || _class101);
+var ejSymbolPalette = exports.ejSymbolPalette = (_dec270 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'symbol-palette'), _dec271 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec272 = generateBindables('ejSymbolPalette', ['allowDrag', 'cssClass', 'defaultSettings', 'diagramId', 'headerHeight', 'height', 'paletteItemHeight', 'paletteItemWidth', 'palettes', 'previewHeight', 'previewOffset', 'previewWidth', 'showPaletteItemText', 'width']), _dec273 = (0, _aureliaDependencyInjection.inject)(Element), _dec270(_class102 = _dec271(_class102 = _dec272(_class102 = _dec273(_class102 = function (_WidgetBase62) {
+ _inherits(ejSymbolPalette, _WidgetBase62);
function ejSymbolPalette(element) {
_classCallCheck(this, ejSymbolPalette);
- var _this63 = _possibleConstructorReturn(this, _WidgetBase61.call(this));
-
- _this63.element = element;
- return _this63;
- }
-
- return ejSymbolPalette;
-}(WidgetBase)) || _class101) || _class101) || _class101) || _class101);
-var ejTab = exports.ejTab = (_dec270 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tab'), _dec271 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec272 = generateBindables('ejTab', ['ajaxSettings', 'allowKeyboardNavigation', 'collapsible', 'cssClass', 'disabledItemIndex', 'enableAnimation', 'enabled', 'enabledItemIndex', 'enablePersistence', 'enableRTL', 'enableTabScroll', 'events', 'headerPosition', 'headerSize', 'height', 'heightAdjustMode', 'hiddenItemIndex', 'htmlAttributes', 'idPrefix', 'selectedItemIndex', 'showCloseButton', 'showReloadIcon', 'showRoundedCorner', 'width'], ['selectedItemIndex'], { 'enableRTL': 'enableRtl' }), _dec273 = (0, _aureliaDependencyInjection.inject)(Element), _dec270(_class102 = _dec271(_class102 = _dec272(_class102 = _dec273(_class102 = function (_WidgetBase62) {
- _inherits(ejTab, _WidgetBase62);
-
- function ejTab(element) {
- _classCallCheck(this, ejTab);
-
var _this64 = _possibleConstructorReturn(this, _WidgetBase62.call(this));
_this64.element = element;
return _this64;
}
- return ejTab;
+ return ejSymbolPalette;
}(WidgetBase)) || _class102) || _class102) || _class102) || _class102);
-var ejTagCloud = exports.ejTagCloud = (_dec274 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tag-cloud'), _dec275 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec276 = generateBindables('ejTagCloud', ['cssClass', 'dataSource', 'enableRTL', 'fields', 'htmlAttributes', 'format', 'maxFontSize', 'minFontSize', 'query', 'showTitle', 'titleImage', 'titleText'], [], { 'enableRTL': 'enableRtl' }), _dec277 = (0, _aureliaDependencyInjection.inject)(Element), _dec274(_class103 = _dec275(_class103 = _dec276(_class103 = _dec277(_class103 = function (_WidgetBase63) {
- _inherits(ejTagCloud, _WidgetBase63);
+var ejTab = exports.ejTab = (_dec274 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tab'), _dec275 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec276 = generateBindables('ejTab', ['ajaxSettings', 'allowKeyboardNavigation', 'collapsible', 'cssClass', 'disabledItemIndex', 'enableAnimation', 'enabled', 'enabledItemIndex', 'enablePersistence', 'enableRTL', 'enableTabScroll', 'events', 'headerPosition', 'headerSize', 'height', 'heightAdjustMode', 'hiddenItemIndex', 'htmlAttributes', 'idPrefix', 'selectedItemIndex', 'showCloseButton', 'showReloadIcon', 'showRoundedCorner', 'width'], ['selectedItemIndex'], { 'enableRTL': 'enableRtl' }), _dec277 = (0, _aureliaDependencyInjection.inject)(Element), _dec274(_class103 = _dec275(_class103 = _dec276(_class103 = _dec277(_class103 = function (_WidgetBase63) {
+ _inherits(ejTab, _WidgetBase63);
- function ejTagCloud(element) {
- _classCallCheck(this, ejTagCloud);
+ function ejTab(element) {
+ _classCallCheck(this, ejTab);
var _this65 = _possibleConstructorReturn(this, _WidgetBase63.call(this));
@@ -2115,13 +2125,13 @@ var ejTagCloud = exports.ejTagCloud = (_dec274 = (0, _aureliaTemplating.customEl
return _this65;
}
- return ejTagCloud;
+ return ejTab;
}(WidgetBase)) || _class103) || _class103) || _class103) || _class103);
-var ejTile = exports.ejTile = (_dec278 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tile'), _dec279 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec280 = generateBindables('ejTile', ['badge', 'caption', 'cssClass', 'enablePersistence', 'height', 'imageClass', 'imagePosition', 'imageTemplateId', 'imageUrl', 'locale', 'liveTile', 'tileSize', 'width', 'showRoundedCorner', 'allowSelection', 'backgroundColor']), _dec281 = (0, _aureliaDependencyInjection.inject)(Element), _dec278(_class104 = _dec279(_class104 = _dec280(_class104 = _dec281(_class104 = function (_WidgetBase64) {
- _inherits(ejTile, _WidgetBase64);
+var ejTagCloud = exports.ejTagCloud = (_dec278 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tag-cloud'), _dec279 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec280 = generateBindables('ejTagCloud', ['cssClass', 'dataSource', 'enableRTL', 'fields', 'htmlAttributes', 'format', 'maxFontSize', 'minFontSize', 'query', 'showTitle', 'titleImage', 'titleText'], [], { 'enableRTL': 'enableRtl' }), _dec281 = (0, _aureliaDependencyInjection.inject)(Element), _dec278(_class104 = _dec279(_class104 = _dec280(_class104 = _dec281(_class104 = function (_WidgetBase64) {
+ _inherits(ejTagCloud, _WidgetBase64);
- function ejTile(element) {
- _classCallCheck(this, ejTile);
+ function ejTagCloud(element) {
+ _classCallCheck(this, ejTagCloud);
var _this66 = _possibleConstructorReturn(this, _WidgetBase64.call(this));
@@ -2129,42 +2139,42 @@ var ejTile = exports.ejTile = (_dec278 = (0, _aureliaTemplating.customElement)(c
return _this66;
}
- return ejTile;
+ return ejTagCloud;
}(WidgetBase)) || _class104) || _class104) || _class104) || _class104);
-var ejTimePicker = exports.ejTimePicker = (_dec282 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'time-picker'), _dec283 = generateBindables('ejTimePicker', ['cssClass', 'disableTimeRanges', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'height', 'hourInterval', 'htmlAttributes', 'interval', 'locale', 'maxTime', 'minTime', 'minutesInterval', 'popupHeight', 'popupWidth', 'readOnly', 'secondsInterval', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec284 = (0, _aureliaDependencyInjection.inject)(Element), _dec282(_class105 = _dec283(_class105 = _dec284(_class105 = function (_WidgetBase65) {
- _inherits(ejTimePicker, _WidgetBase65);
+var ejTile = exports.ejTile = (_dec282 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tile'), _dec283 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec284 = generateBindables('ejTile', ['badge', 'caption', 'cssClass', 'enablePersistence', 'height', 'imageClass', 'imagePosition', 'imageTemplateId', 'imageUrl', 'locale', 'liveTile', 'tileSize', 'width', 'showRoundedCorner', 'allowSelection', 'backgroundColor']), _dec285 = (0, _aureliaDependencyInjection.inject)(Element), _dec282(_class105 = _dec283(_class105 = _dec284(_class105 = _dec285(_class105 = function (_WidgetBase65) {
+ _inherits(ejTile, _WidgetBase65);
- function ejTimePicker(element) {
- _classCallCheck(this, ejTimePicker);
+ function ejTile(element) {
+ _classCallCheck(this, ejTile);
var _this67 = _possibleConstructorReturn(this, _WidgetBase65.call(this));
- _this67.isEditor = true;
_this67.element = element;
return _this67;
}
- return ejTimePicker;
-}(WidgetBase)) || _class105) || _class105) || _class105);
-var ejToggleButton = exports.ejToggleButton = (_dec285 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'toggle-button'), _dec286 = generateBindables('ejToggleButton', ['activePrefixIcon', 'activeSuffixIcon', 'activeText', 'contentType', 'cssClass', 'defaultPrefixIcon', 'defaultSuffixIcon', 'defaultText', 'enabled', 'enablePersistence', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'preventToggle', 'showRoundedCorner', 'size', 'toggleState', 'type', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec287 = (0, _aureliaDependencyInjection.inject)(Element), _dec285(_class106 = _dec286(_class106 = _dec287(_class106 = function (_WidgetBase66) {
- _inherits(ejToggleButton, _WidgetBase66);
+ return ejTile;
+}(WidgetBase)) || _class105) || _class105) || _class105) || _class105);
+var ejTimePicker = exports.ejTimePicker = (_dec286 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'time-picker'), _dec287 = generateBindables('ejTimePicker', ['cssClass', 'disableTimeRanges', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'height', 'hourInterval', 'htmlAttributes', 'interval', 'locale', 'maxTime', 'minTime', 'minutesInterval', 'popupHeight', 'popupWidth', 'readOnly', 'secondsInterval', 'showPopupButton', 'showRoundedCorner', 'timeFormat', 'value', 'width'], ['value'], { 'enableRTL': 'enableRtl' }), _dec288 = (0, _aureliaDependencyInjection.inject)(Element), _dec286(_class106 = _dec287(_class106 = _dec288(_class106 = function (_WidgetBase66) {
+ _inherits(ejTimePicker, _WidgetBase66);
- function ejToggleButton(element) {
- _classCallCheck(this, ejToggleButton);
+ function ejTimePicker(element) {
+ _classCallCheck(this, ejTimePicker);
var _this68 = _possibleConstructorReturn(this, _WidgetBase66.call(this));
+ _this68.isEditor = true;
_this68.element = element;
return _this68;
}
- return ejToggleButton;
+ return ejTimePicker;
}(WidgetBase)) || _class106) || _class106) || _class106);
-var ejToolbar = exports.ejToolbar = (_dec288 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'toolbar'), _dec289 = generateBindables('ejToolbar', ['cssClass', 'dataSource', 'disabledItemIndices', 'enabled', 'enabledItemIndices', 'enableRTL', 'enableSeparator', 'fields', 'height', 'htmlAttributes', 'hide', 'isResponsive', 'Items', 'orientation', 'query', 'responsiveType', 'showRoundedCorner', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec290 = (0, _aureliaDependencyInjection.inject)(Element), _dec288(_class107 = _dec289(_class107 = _dec290(_class107 = function (_WidgetBase67) {
- _inherits(ejToolbar, _WidgetBase67);
+var ejToggleButton = exports.ejToggleButton = (_dec289 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'toggle-button'), _dec290 = generateBindables('ejToggleButton', ['activePrefixIcon', 'activeSuffixIcon', 'activeText', 'contentType', 'cssClass', 'defaultPrefixIcon', 'defaultSuffixIcon', 'defaultText', 'enabled', 'enablePersistence', 'enableRTL', 'height', 'htmlAttributes', 'imagePosition', 'preventToggle', 'showRoundedCorner', 'size', 'toggleState', 'type', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec291 = (0, _aureliaDependencyInjection.inject)(Element), _dec289(_class107 = _dec290(_class107 = _dec291(_class107 = function (_WidgetBase67) {
+ _inherits(ejToggleButton, _WidgetBase67);
- function ejToolbar(element) {
- _classCallCheck(this, ejToolbar);
+ function ejToggleButton(element) {
+ _classCallCheck(this, ejToggleButton);
var _this69 = _possibleConstructorReturn(this, _WidgetBase67.call(this));
@@ -2172,13 +2182,13 @@ var ejToolbar = exports.ejToolbar = (_dec288 = (0, _aureliaTemplating.customAttr
return _this69;
}
- return ejToolbar;
+ return ejToggleButton;
}(WidgetBase)) || _class107) || _class107) || _class107);
-var ejTooltip = exports.ejTooltip = (_dec291 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'tooltip'), _dec292 = generateBindables('ejTooltip', ['allowKeyboardNavigation', 'animation', 'associate', 'autoCloseTimeout', 'closeMode', 'collision', 'containment', 'content', 'cssClass', 'enabled', 'enableRTL', 'height', 'isBalloon', 'position', 'showRoundedCorner', 'showShadow', 'target', 'tip', 'title', 'trigger', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec293 = (0, _aureliaDependencyInjection.inject)(Element), _dec291(_class108 = _dec292(_class108 = _dec293(_class108 = function (_WidgetBase68) {
- _inherits(ejTooltip, _WidgetBase68);
+var ejToolbar = exports.ejToolbar = (_dec292 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'toolbar'), _dec293 = generateBindables('ejToolbar', ['cssClass', 'dataSource', 'disabledItemIndices', 'enabled', 'enabledItemIndices', 'enableRTL', 'enableSeparator', 'fields', 'height', 'htmlAttributes', 'hide', 'isResponsive', 'Items', 'orientation', 'query', 'responsiveType', 'showRoundedCorner', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec294 = (0, _aureliaDependencyInjection.inject)(Element), _dec292(_class108 = _dec293(_class108 = _dec294(_class108 = function (_WidgetBase68) {
+ _inherits(ejToolbar, _WidgetBase68);
- function ejTooltip(element) {
- _classCallCheck(this, ejTooltip);
+ function ejToolbar(element) {
+ _classCallCheck(this, ejToolbar);
var _this70 = _possibleConstructorReturn(this, _WidgetBase68.call(this));
@@ -2186,34 +2196,48 @@ var ejTooltip = exports.ejTooltip = (_dec291 = (0, _aureliaTemplating.customAttr
return _this70;
}
- return ejTooltip;
+ return ejToolbar;
}(WidgetBase)) || _class108) || _class108) || _class108);
-var ejTreeGrid = exports.ejTreeGrid = (_dec294 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-grid'), _dec295 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec296 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec297 = (0, _aureliaDependencyInjection.inject)(Element, _aureliaTemplating.TemplatingEngine), _dec298 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'tree-grid-column'), _dec294(_class109 = _dec295(_class109 = _dec296(_class109 = _dec297(_class109 = (_class110 = function (_WidgetBase69) {
- _inherits(ejTreeGrid, _WidgetBase69);
+var ejTooltip = exports.ejTooltip = (_dec295 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'tooltip'), _dec296 = generateBindables('ejTooltip', ['allowKeyboardNavigation', 'animation', 'associate', 'autoCloseTimeout', 'closeMode', 'collision', 'containment', 'content', 'cssClass', 'enabled', 'enableRTL', 'height', 'isBalloon', 'position', 'showRoundedCorner', 'showShadow', 'target', 'tip', 'title', 'trigger', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec297 = (0, _aureliaDependencyInjection.inject)(Element), _dec295(_class109 = _dec296(_class109 = _dec297(_class109 = function (_WidgetBase69) {
+ _inherits(ejTooltip, _WidgetBase69);
- function ejTreeGrid(element, templateEngine) {
- _classCallCheck(this, ejTreeGrid);
+ function ejTooltip(element) {
+ _classCallCheck(this, ejTooltip);
var _this71 = _possibleConstructorReturn(this, _WidgetBase69.call(this));
- _initDefineProp(_this71, 'columns', _descriptor14, _this71);
-
_this71.element = element;
- _this71.hasChildProperty = true;
- _this71.childPropertyName = 'columns';
- _this71.templateProcessor = new TemplateProcessor(_this71, templateEngine);
- _this71.templateProcessor.initTemplate();
return _this71;
}
+ return ejTooltip;
+}(WidgetBase)) || _class109) || _class109) || _class109);
+var ejTreeGrid = exports.ejTreeGrid = (_dec298 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-grid'), _dec299 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec300 = generateBindables('ejTreeGrid', ['allowColumnResize', 'allowColumnReordering', 'allowDragAndDrop', 'allowFiltering', 'allowKeyboardNavigation', 'allowMultiSorting', 'allowSelection', 'allowSorting', 'allowPaging', 'allowTextWrap', 'altRowTemplateID', 'expandStateMapping', 'childMapping', 'columns', 'columnDialogFields', 'contextMenuSettings', 'cssClass', 'dataSource', 'headerTextOverflow', 'dragTooltip', 'editSettings', 'enableAltRow', 'enableCollapseAll', 'enableResize', 'enableVirtualization', 'columnResizeSettings', 'commonWidth', 'filterSettings', 'locale', 'parseRowTemplate', 'idMapping', 'isResponsive', 'parentIdMapping', 'pageSettings', 'cellTooltipTemplate', 'query', 'rowHeight', 'rowTemplateID', 'selectedRowIndex', 'selectedCellIndexes', 'selectionSettings', 'showColumnOptions', 'showColumnChooser', 'showDetailsRow', 'showDetailsRowInfoColumn', 'detailsTemplate', 'detailsRowHeight', 'showSummaryRow', 'showTotalSummary', 'summaryRows', 'showGridCellTooltip', 'showGridExpandCellTooltip', 'sizeSettings', 'sortSettings', 'toolbarSettings', 'treeColumnIndex'], ['dataSource', 'selectedRowIndex', 'selectedCellIndexes', 'pageSettings.currentPage'], { 'altRowTemplateID': 'altRowTemplateId', 'rowTemplateID': 'rowTemplateId' }), _dec301 = (0, _aureliaDependencyInjection.inject)(Element, _aureliaTemplating.TemplatingEngine), _dec302 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'tree-grid-column'), _dec298(_class110 = _dec299(_class110 = _dec300(_class110 = _dec301(_class110 = (_class111 = function (_WidgetBase70) {
+ _inherits(ejTreeGrid, _WidgetBase70);
+
+ function ejTreeGrid(element, templateEngine) {
+ _classCallCheck(this, ejTreeGrid);
+
+ var _this72 = _possibleConstructorReturn(this, _WidgetBase70.call(this));
+
+ _initDefineProp(_this72, 'columns', _descriptor14, _this72);
+
+ _this72.element = element;
+ _this72.hasChildProperty = true;
+ _this72.childPropertyName = 'columns';
+ _this72.templateProcessor = new TemplateProcessor(_this72, templateEngine);
+ _this72.templateProcessor.initTemplate();
+ return _this72;
+ }
+
return ejTreeGrid;
-}(WidgetBase), (_descriptor14 = _applyDecoratedDescriptor(_class110.prototype, 'columns', [_dec298], {
+}(WidgetBase), (_descriptor14 = _applyDecoratedDescriptor(_class111.prototype, 'columns', [_dec302], {
enumerable: true,
initializer: function initializer() {
return [];
}
-})), _class110)) || _class109) || _class109) || _class109) || _class109);
-var TreeGridColumn = exports.TreeGridColumn = (_dec299 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec300 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-grid-column'), _dec301 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'allowFreezing']), _dec302 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'template'), _dec299(_class112 = _dec300(_class112 = _dec301(_class112 = (_class113 = function () {
+})), _class111)) || _class110) || _class110) || _class110) || _class110);
+var TreeGridColumn = exports.TreeGridColumn = (_dec303 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec304 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-grid-column'), _dec305 = generateBindables('columns', ['allowFiltering', 'allowFilteringBlankContent', 'allowSorting', 'allowCellSelection', 'editParams', 'editTemplate', 'editType', 'dropdownData', 'field', 'template', 'templateID', 'angularTemplate', 'filterEditType', 'headerText', 'displayAsCheckbox', 'showCheckbox', 'visible', 'width', 'headerTemplateID', 'format', 'isTemplateColumn', 'headerTextAlign', 'isFrozen', 'textAlign', 'allowEditing', 'commands', 'showInColumnChooser', 'clipMode', 'tooltip', 'headerTooltip', 'validationRules', 'priority', 'allowFreezing']), _dec306 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'template'), _dec303(_class113 = _dec304(_class113 = _dec305(_class113 = (_class114 = function () {
function TreeGridColumn() {
_classCallCheck(this, TreeGridColumn);
@@ -2228,77 +2252,77 @@ var TreeGridColumn = exports.TreeGridColumn = (_dec299 = (0, _aureliaTemplating.
};
return TreeGridColumn;
-}(), (_descriptor15 = _applyDecoratedDescriptor(_class113.prototype, 'angularTemplate', [_dec302], {
+}(), (_descriptor15 = _applyDecoratedDescriptor(_class114.prototype, 'angularTemplate', [_dec306], {
enumerable: true,
initializer: function initializer() {
return [];
}
-})), _class113)) || _class112) || _class112) || _class112);
-var Level = exports.Level = (_dec303 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec304 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'level'), _dec305 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec303(_class115 = _dec304(_class115 = _dec305(_class115 = function Level() {
+})), _class114)) || _class113) || _class113) || _class113);
+var Level = exports.Level = (_dec307 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec308 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'level'), _dec309 = generateBindables('levels', ['groupBackground', 'groupBorderColor', 'groupBorderThickness', 'groupGap', 'groupPadding', 'groupPath', 'headerHeight', 'headerTemplate', 'headerVisibilityMode', 'labelPosition', 'textOverflow', 'labelTemplate', 'labelVisibilityMode', 'showHeader', 'showLabels']), _dec307(_class116 = _dec308(_class116 = _dec309(_class116 = function Level() {
_classCallCheck(this, Level);
-}) || _class115) || _class115) || _class115);
-var ejTreeMap = exports.ejTreeMap = (_dec306 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-map'), _dec307 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec308 = generateBindables('ejTreeMap', ['borderBrush', 'borderThickness', 'uniColorMapping', 'desaturationColorMapping', 'paletteColorMapping', 'colorValuePath', 'dataSource', 'dockPosition', 'drillDownHeaderColor', 'drillDownSelectionColor', 'isHierarchicalDatasource', 'header', 'enableDrillDown', 'isResponsive', 'enableResize', 'draggingOnSelection', 'draggingGroupOnSelection', 'groupColorMapping', 'legendSettings', 'highlightBorderBrush', 'highlightBorderThickness', 'highlightGroupBorderBrush', 'highlightGroupBorderThickness', 'highlightGroupOnSelection', 'highlightOnSelection', 'itemsLayoutMode', 'enableGroupSeparator', 'locale', 'leafItemSettings', 'rangeColorMapping', 'selectionMode', 'groupSelectionMode', 'showLegend', 'enableGradient', 'showTooltip', 'tooltipTemplate', 'treeMapItems', 'levels', 'weightValuePath'], ['dataSource', 'weightValuePath']), _dec309 = (0, _aureliaDependencyInjection.inject)(Element), _dec310 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'level'), _dec306(_class116 = _dec307(_class116 = _dec308(_class116 = _dec309(_class116 = (_class117 = function (_WidgetBase70) {
- _inherits(ejTreeMap, _WidgetBase70);
+}) || _class116) || _class116) || _class116);
+var ejTreeMap = exports.ejTreeMap = (_dec310 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'tree-map'), _dec311 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec312 = generateBindables('ejTreeMap', ['borderBrush', 'borderThickness', 'uniColorMapping', 'desaturationColorMapping', 'paletteColorMapping', 'colorValuePath', 'dataSource', 'dockPosition', 'drillDownHeaderColor', 'drillDownSelectionColor', 'isHierarchicalDatasource', 'header', 'enableDrillDown', 'isResponsive', 'enableResize', 'draggingOnSelection', 'draggingGroupOnSelection', 'groupColorMapping', 'legendSettings', 'highlightBorderBrush', 'highlightBorderThickness', 'highlightGroupBorderBrush', 'highlightGroupBorderThickness', 'highlightGroupOnSelection', 'highlightOnSelection', 'itemsLayoutMode', 'enableGroupSeparator', 'locale', 'leafItemSettings', 'rangeColorMapping', 'selectionMode', 'groupSelectionMode', 'showLegend', 'enableGradient', 'showTooltip', 'tooltipTemplate', 'treeMapItems', 'levels', 'weightValuePath'], ['dataSource', 'weightValuePath']), _dec313 = (0, _aureliaDependencyInjection.inject)(Element), _dec314 = (0, _aureliaTemplating.children)(constants.elementPrefix + 'level'), _dec310(_class117 = _dec311(_class117 = _dec312(_class117 = _dec313(_class117 = (_class118 = function (_WidgetBase71) {
+ _inherits(ejTreeMap, _WidgetBase71);
function ejTreeMap(element) {
_classCallCheck(this, ejTreeMap);
- var _this72 = _possibleConstructorReturn(this, _WidgetBase70.call(this));
+ var _this73 = _possibleConstructorReturn(this, _WidgetBase71.call(this));
- _initDefineProp(_this72, 'levels', _descriptor16, _this72);
+ _initDefineProp(_this73, 'levels', _descriptor16, _this73);
- _this72.element = element;
- _this72.hasChildProperty = true;
- _this72.childPropertyName = 'levels';
- return _this72;
+ _this73.element = element;
+ _this73.hasChildProperty = true;
+ _this73.childPropertyName = 'levels';
+ return _this73;
}
return ejTreeMap;
-}(WidgetBase), (_descriptor16 = _applyDecoratedDescriptor(_class117.prototype, 'levels', [_dec310], {
+}(WidgetBase), (_descriptor16 = _applyDecoratedDescriptor(_class118.prototype, 'levels', [_dec314], {
enumerable: true,
initializer: function initializer() {
return [];
}
-})), _class117)) || _class116) || _class116) || _class116) || _class116);
-var ejTreeView = exports.ejTreeView = (_dec311 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'tree-view'), _dec312 = generateBindables('ejTreeView', ['allowDragAndDrop', 'allowDragAndDropAcrossControl', 'allowDropSibling', 'allowDropChild', 'allowEditing', 'allowKeyboardNavigation', 'allowMultiSelection', 'autoCheck', 'autoCheckParentNode', 'checkedNodes', 'cssClass', 'enableAnimation', 'enabled', 'enableMultipleExpand', 'enablePersistence', 'enableRTL', 'expandedNodes', 'expandOn', 'fields', 'fullRowSelect', 'height', 'htmlAttributes', 'loadOnDemand', 'selectedNode', 'selectedNodes', 'showCheckbox', 'sortSettings', 'template', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec313 = (0, _aureliaDependencyInjection.inject)(Element), _dec311(_class119 = _dec312(_class119 = _dec313(_class119 = function (_WidgetBase71) {
- _inherits(ejTreeView, _WidgetBase71);
+})), _class118)) || _class117) || _class117) || _class117) || _class117);
+var ejTreeView = exports.ejTreeView = (_dec315 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'tree-view'), _dec316 = generateBindables('ejTreeView', ['allowDragAndDrop', 'allowDragAndDropAcrossControl', 'allowDropSibling', 'allowDropChild', 'allowEditing', 'allowKeyboardNavigation', 'allowMultiSelection', 'autoCheck', 'autoCheckParentNode', 'checkedNodes', 'cssClass', 'enableAnimation', 'enabled', 'enableMultipleExpand', 'enablePersistence', 'enableRTL', 'expandedNodes', 'expandOn', 'fields', 'fullRowSelect', 'height', 'htmlAttributes', 'loadOnDemand', 'selectedNode', 'selectedNodes', 'showCheckbox', 'sortSettings', 'template', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec317 = (0, _aureliaDependencyInjection.inject)(Element), _dec315(_class120 = _dec316(_class120 = _dec317(_class120 = function (_WidgetBase72) {
+ _inherits(ejTreeView, _WidgetBase72);
function ejTreeView(element) {
_classCallCheck(this, ejTreeView);
- var _this73 = _possibleConstructorReturn(this, _WidgetBase71.call(this));
+ var _this74 = _possibleConstructorReturn(this, _WidgetBase72.call(this));
- _this73.element = element;
- return _this73;
+ _this74.element = element;
+ return _this74;
}
return ejTreeView;
-}(WidgetBase)) || _class119) || _class119) || _class119);
-var ejUploadbox = exports.ejUploadbox = (_dec314 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'uploadbox'), _dec315 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec316 = generateBindables('ejUploadbox', ['allowDragAndDrop', 'asyncUpload', 'autoUpload', 'buttonText', 'cssClass', 'customFileDetails', 'dialogAction', 'dialogPosition', 'dialogText', 'dropAreaText', 'dropAreaHeight', 'dropAreaWidth', 'enabled', 'enableRTL', 'extensionsAllow', 'extensionsDeny', 'fileSize', 'height', 'htmlAttributes', 'locale', 'multipleFilesSelection', 'pushFile', 'removeUrl', 'saveUrl', 'showBrowseButton', 'showFileDetails', 'showRoundedCorner', 'uploadName', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec317 = (0, _aureliaDependencyInjection.inject)(Element), _dec314(_class120 = _dec315(_class120 = _dec316(_class120 = _dec317(_class120 = function (_WidgetBase72) {
- _inherits(ejUploadbox, _WidgetBase72);
+}(WidgetBase)) || _class120) || _class120) || _class120);
+var ejUploadbox = exports.ejUploadbox = (_dec318 = (0, _aureliaTemplating.customElement)(constants.elementPrefix + 'uploadbox'), _dec319 = (0, _aureliaTemplating.inlineView)('' + constants.aureliaTemplateString), _dec320 = generateBindables('ejUploadbox', ['allowDragAndDrop', 'asyncUpload', 'autoUpload', 'buttonText', 'cssClass', 'customFileDetails', 'dialogAction', 'dialogPosition', 'dialogText', 'dropAreaText', 'dropAreaHeight', 'dropAreaWidth', 'enabled', 'enableRTL', 'extensionsAllow', 'extensionsDeny', 'fileSize', 'height', 'htmlAttributes', 'locale', 'multipleFilesSelection', 'pushFile', 'removeUrl', 'saveUrl', 'showBrowseButton', 'showFileDetails', 'showRoundedCorner', 'uploadName', 'width'], [], { 'enableRTL': 'enableRtl' }), _dec321 = (0, _aureliaDependencyInjection.inject)(Element), _dec318(_class121 = _dec319(_class121 = _dec320(_class121 = _dec321(_class121 = function (_WidgetBase73) {
+ _inherits(ejUploadbox, _WidgetBase73);
function ejUploadbox(element) {
_classCallCheck(this, ejUploadbox);
- var _this74 = _possibleConstructorReturn(this, _WidgetBase72.call(this));
+ var _this75 = _possibleConstructorReturn(this, _WidgetBase73.call(this));
- _this74.element = element;
- return _this74;
+ _this75.element = element;
+ return _this75;
}
return ejUploadbox;
-}(WidgetBase)) || _class120) || _class120) || _class120) || _class120);
-var ejWaitingPopup = exports.ejWaitingPopup = (_dec318 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'waiting-popup'), _dec319 = generateBindables('ejWaitingPopup', ['cssClass', 'htmlAttributes', 'showImage', 'showOnInit', 'target', 'appendTo', 'template', 'text']), _dec320 = (0, _aureliaDependencyInjection.inject)(Element), _dec318(_class121 = _dec319(_class121 = _dec320(_class121 = function (_WidgetBase73) {
- _inherits(ejWaitingPopup, _WidgetBase73);
+}(WidgetBase)) || _class121) || _class121) || _class121) || _class121);
+var ejWaitingPopup = exports.ejWaitingPopup = (_dec322 = (0, _aureliaTemplating.customAttribute)(constants.attributePrefix + 'waiting-popup'), _dec323 = generateBindables('ejWaitingPopup', ['cssClass', 'htmlAttributes', 'showImage', 'showOnInit', 'target', 'appendTo', 'template', 'text']), _dec324 = (0, _aureliaDependencyInjection.inject)(Element), _dec322(_class122 = _dec323(_class122 = _dec324(_class122 = function (_WidgetBase74) {
+ _inherits(ejWaitingPopup, _WidgetBase74);
function ejWaitingPopup(element) {
_classCallCheck(this, ejWaitingPopup);
- var _this75 = _possibleConstructorReturn(this, _WidgetBase73.call(this));
+ var _this76 = _possibleConstructorReturn(this, _WidgetBase74.call(this));
- _this75.element = element;
- return _this75;
+ _this76.element = element;
+ return _this76;
}
return ejWaitingPopup;
-}(WidgetBase)) || _class121) || _class121) || _class121);
\ No newline at end of file
+}(WidgetBase)) || _class122) || _class122) || _class122);
\ No newline at end of file
diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md
index 7fc59db2c..ab2a726e0 100644
--- a/doc/CHANGELOG.md
+++ b/doc/CHANGELOG.md
@@ -1,3 +1,33 @@
+## 1.0.0 (2017-08-08)
+
+
+#### Bug Fixes
+
+* **jsondata:** fixed some encodings ([6d9410e2](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/6d9410e2ff6b794bf7562818115261804419a497))
+
+
+#### Features
+
+* **all:**
+ * updated to aurelia dependencies to 1.0.0 ([3943227a](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/3943227a26bc9e47ae3f80070477494a25da64dc))
+ * initial version ([f55a0a5d](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/f55a0a5d5fd3f3a5e3375eb005b549cf90c3750b))
+
+
+## 0.3.0 (2017-08-08)
+
+
+#### Bug Fixes
+
+* **jsondata:** fixed some encodings ([6d9410e2](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/6d9410e2ff6b794bf7562818115261804419a497))
+
+
+#### Features
+
+* **all:**
+ * updated to aurelia dependencies to 1.0.0 ([3943227a](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/3943227a26bc9e47ae3f80070477494a25da64dc))
+ * initial version ([f55a0a5d](https://github.com/aurelia-ui-toolkits/aurelia-syncfusion-bridge.git/commit/f55a0a5d5fd3f3a5e3375eb005b549cf90c3750b))
+
+
## 0.11.0 (2017-07-04)
diff --git a/package.json b/package.json
index 69359a918..ef164b193 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "aurelia-syncfusion-bridge",
- "version": "0.2.2",
+ "version": "1.0.0",
"registry": "github",
"description": "A set of Syncfusion wrappers for Aurelia allowing developers to easily use Syncfusion components in their Aurelia application",
"keywords": [
diff --git a/sample/src/samples/grid/remote-Data.js b/sample/src/samples/grid/remote-Data.js
index 6028798ba..fb1bf83d4 100644
--- a/sample/src/samples/grid/remote-Data.js
+++ b/sample/src/samples/grid/remote-Data.js
@@ -1,9 +1,8 @@
export class RemoteData {
- constructor() {
- this.OrdersList = ej.DataManager({ // eslint-disable-line new-cap
- url: 'http://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
- crossDomain: true
- });
- }
+ constructor() {
+ this.OrdersList = ej.DataManager({ // eslint-disable-line new-cap
+ url: 'http://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
+ crossDomain: true
+ });
+ }
}
-