Skip to content

Commit a408cf5

Browse files
author
pipeline
committed
v1.0 is released
1 parent fa3e6f0 commit a408cf5

File tree

71 files changed

+215
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+215
-54
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 17.4.49 (2020-02-11)
5+
## 1.0 (2020-02-18)
66

77
### Barcode
88

components/base/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 17.4.49 (2020-02-11)
5+
## 1.0 (2020-02-18)
66

77
### Common
88

components/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 17.4.49 (2020-02-11)
5+
## 1.0 (2020-02-18)
66

77
### Button
88

components/calendars/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 1.0 (2020-02-18)
6+
7+
### Calendar
8+
9+
#### Bug Fixes
10+
11+
- Now, selection style is applied to the previous month selected date in the current month view.
12+
13+
### DatePicker
14+
15+
#### Bug Fixes
16+
17+
- `#261189` - Issue with "unable to select the value `1/1/1970` from datepicker popup in IE and Edge browser" has been resolved.
18+
519
## 17.4.49 (2020-02-11)
620

721
### DateTimePicker

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "17.4.47",
3+
"version": "17.4.49",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22

33
## [Unreleased]
44

5-
## 17.4.49 (2020-02-11)
5+
## 1.0 (2020-02-18)
66

77
### Chart
88

99
#### Bug Fixes
1010

1111
- `#262128` - Legend gets cropped while adding series dynamically issue has fixed.
1212
- `#261471` - Pie annotation template is not center in `blazor` issue fixed.
13+
- `#255275` - Trendline throws console error when legend click issue fixed.
14+
- `#262734` - Stripline date time is not support in asp core issue fixed.
1315

1416
## 17.4.47 (2020-02-05)
1517

components/charts/dist/ej2-vue-charts.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/ej2-vue-charts.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es2015.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es5.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/src/bullet-chart/bulletchart.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { BulletChart } from '@syncfusion/ej2-charts';
55
import { BulletRangeCollectionDirective, BulletRangeDirective, BulletRangeCollectionPlugin, BulletRangePlugin } from './ranges.directive'
66

77

8-
export const properties: string[] = ['animation', 'border', 'categoryField', 'categoryLabelStyle', 'dataLabel', 'dataSource', 'enableGroupSeparator', 'enablePersistence', 'enableRtl', 'height', 'interval', 'labelFormat', 'labelPosition', 'labelStyle', 'locale', 'majorTickLines', 'margin', 'maximum', 'minimum', 'minorTickLines', 'minorTicksPerInterval', 'opposedPosition', 'orientation', 'query', 'ranges', 'subtitle', 'subtitleStyle', 'tabIndex', 'targetColor', 'targetField', 'targetTypes', 'targetWidth', 'theme', 'tickPosition', 'title', 'titlePosition', 'titleStyle', 'tooltip', 'type', 'valueBorder', 'valueField', 'valueFill', 'valueHeight', 'width', 'beforePrint', 'load', 'loaded', 'tooltipRender'];
8+
export const properties: string[] = ['animation', 'border', 'categoryField', 'categoryLabelStyle', 'dataLabel', 'dataSource', 'enableGroupSeparator', 'enablePersistence', 'enableRtl', 'height', 'interval', 'labelFormat', 'labelPosition', 'labelStyle', 'locale', 'majorTickLines', 'margin', 'maximum', 'minimum', 'minorTickLines', 'minorTicksPerInterval', 'opposedPosition', 'orientation', 'query', 'ranges', 'subtitle', 'subtitleStyle', 'tabIndex', 'targetColor', 'targetField', 'targetTypes', 'targetWidth', 'theme', 'tickPosition', 'title', 'titlePosition', 'titleStyle', 'tooltip', 'type', 'valueBorder', 'valueField', 'valueFill', 'valueHeight', 'width', 'barRender', 'beforePrint', 'load', 'loaded', 'tooltipRender'];
99
export const modelProps: string[] = ['dataSource'];
1010

1111
/**

components/circulargauge/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 1.0 (2020-02-18)
9+
10+
### CircularGauge
11+
12+
#### Bug Fixes
13+
14+
- Axis labels are rendering properly now in the cross position.
15+
816
## 17.4.41 (2020-01-07)
917

1018
### CircularGauge

components/diagrams/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## 1.0 (2020-02-18)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `F149624` - The issue "Diagram Component Export renders with black background on safari browser" has been fixed.
12+
- `F151341` - The issue "Specifying a layout results in exception when state of nodes changes" has been fixed.
13+
- `F151232` - The issue "Cannot read the property '0' of undefined" has been fixed.
14+
- `#263839` - The issue "Fit To Page leaving too much space around content" has been fixed.
15+
- `F151197` - The issue with the Zoom-Pan option that disables the connectors has been fixed.
16+
- `#264576` - The issue "Snapping support on zooming the diagram" has been fixed.
17+
518
## 17.4.46 (2020-01-30)
619

720
### Diagram
@@ -11,6 +24,7 @@
1124
- `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
1225
- `#253884` - Template support for HTML node has been provided.
1326
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
27+
- `#239063`, `#239214` - The support has been provided to notify key actions in command manager
1428

1529
#### Bug Fixes
1630

components/diagrams/dist/ej2-vue-diagrams.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/ej2-vue-diagrams.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es2015.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es5.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/src/diagram/diagram.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { PortsDirective, PortDirective, PortsPlugin, PortPlugin } from './ports.
1010
import { NodesDirective, NodeDirective, NodesPlugin, NodePlugin } from './nodes.directive'
1111

1212

13-
export const properties: string[] = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'width', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'historyChange', 'historyStateChange', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
13+
export const properties: string[] = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'width', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
1414
export const modelProps: string[] = [];
1515

1616
/**

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "17.4.47",
3+
"version": "17.4.49",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 1.0 (2020-02-18)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#261827` - Issue when ListBox and menu component in a same page has been resolved.
12+
513
## 17.4.49 (2020-02-11)
614

715
### DropDownList

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "17.4.47",
3+
"version": "17.4.49",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22

33
## [Unreleased]
44

5+
## 1.0 (2020-02-18)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#262675` - Provided the support to prevent the XSS attacks using the `enableHtmlSanitizer` property.
12+
- The issue with the given `name` column's width that is not applied in details view has been resolved.
13+
514
## 17.4.44 (2021-01-21)
615

716
### File Manager
817

918
#### Bug Fixes
1019

11-
- Resolved the script error when navigate any folder after changing the toolbar settings dynamically in the file manager component.
20+
- Resolved the script error when navigate any folder after changing the toolbar settings dynamically in the file manager component.
1221

1322
## 17.4.43 (2020-01-14)
1423

0 commit comments

Comments
 (0)