v18.3.40 is released
This commit is contained in:
Родитель
ee6d7f1e21
Коммит
0be8bbe85a
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-barcode-generator",
|
||||
"version": "18.2.44",
|
||||
"version": "18.3.35",
|
||||
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Common
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `F158454` - Resolved the peer dependency warning issues.
|
||||
- `I285745` - Resolved the StartDate returns null issue in vue.
|
||||
|
||||
## 17.4.47 (2020-02-05)
|
||||
|
||||
### Common
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -197,7 +197,7 @@ function EJcomponentFactory(Component, options = {}) {
|
|||
(options.props || (options.props = {}))[prop] = {};
|
||||
(options.watch || (options.watch = {}))[prop] = function (newVal) {
|
||||
this.ej2Instances[prop] = newVal;
|
||||
if (this.dataBind) {
|
||||
if (this.dataBind && (options.name !== 'DateRangePickerComponent')) {
|
||||
this.dataBind();
|
||||
}
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -228,7 +228,7 @@ function EJcomponentFactory(Component, options) {
|
|||
(options.props || (options.props = {}))[prop] = {};
|
||||
(options.watch || (options.watch = {}))[prop] = function (newVal) {
|
||||
this.ej2Instances[prop] = newVal;
|
||||
if (this.dataBind) {
|
||||
if (this.dataBind && (options.name !== 'DateRangePickerComponent')) {
|
||||
this.dataBind();
|
||||
}
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -231,7 +231,7 @@ function EJcomponentFactory(Component, options) {
|
|||
(options.props || (options.props = {}))[prop] = {};
|
||||
(options.watch || (options.watch = {}))[prop] = function (newVal) {
|
||||
this.ej2Instances[prop] = newVal;
|
||||
if (this.dataBind) {
|
||||
if (this.dataBind && (options.name !== 'DateRangePickerComponent')) {
|
||||
this.dataBind();
|
||||
}
|
||||
};
|
||||
|
@ -364,7 +364,5 @@ exports.compile = compile;
|
|||
return exports;
|
||||
|
||||
});
|
||||
sfBlazor.libs.push("vuebase")
|
||||
sfBlazor.loadDependencies(["vue","base"], () => {
|
||||
|
||||
sf.vuebase = sf.vuebase({});
|
||||
});
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-base",
|
||||
"version": "17.4.51",
|
||||
"version": "18.3.35",
|
||||
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -24,7 +24,7 @@
|
|||
"module": "./index.js",
|
||||
"readme": "ReadMe.md",
|
||||
"peerDependencies": {
|
||||
"vue": "2.5.2 - 2.6.11"
|
||||
"vue": "2.5.2 - 2.6.12"
|
||||
},
|
||||
"dependencies": {
|
||||
"@syncfusion/ej2-base": "*"
|
||||
|
|
|
@ -40,7 +40,7 @@ export function EJcomponentFactory(
|
|||
};
|
||||
(options.watch || (options.watch = {}))[prop] = function (newVal: Object) { // watch it
|
||||
this.ej2Instances[prop] = newVal;
|
||||
if (this.dataBind) {
|
||||
if (this.dataBind && (options.name !== 'DateRangePickerComponent') ) {
|
||||
this.dataBind();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Button
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Warning message has been resolved.
|
||||
|
||||
## 18.2.58 (2020-09-15)
|
||||
|
||||
### CheckBox
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-buttons",
|
||||
"version": "18.2.44",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### DateRangePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#288129` - Issue with "values cannot be chosen while updating UTC time as start date and end date" has been resolved.
|
||||
|
||||
## 18.2.44 (2020-07-07)
|
||||
|
||||
### DatePicker
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-calendars",
|
||||
"version": "17.2.48",
|
||||
"version": "18.3.35",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-charts",
|
||||
"version": "17.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-circulargauge",
|
||||
"version": "17.4.39",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 CircularGauge Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,10 +2,55 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
|
||||
- `294302` - The issue with "Node overlapping issue in hierarchical tree layout" has been fixed.
|
||||
- `292214` - The issue "Mouse cursor does not place on a node" has been fixed
|
||||
- `292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### New Features
|
||||
|
||||
- `276871`, `F154206` - Customization support for individual symbols has been added.
|
||||
- `281811` - Now the ports are rendered over the HTML layer.
|
||||
- `246813` - Now supports the click event to notify the type of button clicked.
|
||||
- `283317` - Fixed user handle has been added to diagram nodes and connectors.
|
||||
- `F150538` - Added an Expand and Collapse palette notification event to the symbol palette.
|
||||
- `277397` - Added support to notify the pan state during the scroll change event.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `287578` - The issue "Connector segments not update properly" has been fixed.
|
||||
- `292951` - The issue "Text size is different if Text Node is created over another diagram" has been fixed.
|
||||
- `293420` - The issue "Annotation undo redo not working properly if the line routing is enabled" has been fixed.
|
||||
- `289382` - The issue "Exported data returns same png format for all other format" has been fixed.
|
||||
- `291513` - The issue " Exception occurs while change allowDrag from false to true for symbol palette" has been fixed.
|
||||
- `292558` - The issue "Node Rotate constraints does not work properly" has been fixed.
|
||||
- `289532` - The issue "Group offsetX and offsetY does not update after add child to it" has been fixed.
|
||||
- `291274` - The issue "Mouse Enter, Mouse Over event does not get triggered for selected item" has been fixed.
|
||||
- `F156456` - The issue "SVG image not exported properly" has been fixed
|
||||
- `#288628` - The issue "HTML node does not gets added at run time" has been fixed.
|
||||
- `#289513` - The issue with "Group rotation does not work as expected" has been fixed.
|
||||
- `287578` - The issue "Connector segments not update properly" has been fixed.
|
||||
- `289532` - The issue "Group width and height does not update" has been fixed.
|
||||
- `285600` - The issue "Complex hierarchical layout does not arrange properly" has been fixed.
|
||||
- `F157055` - The issue "Port inedge and outedge not updated properly" has been fixed.
|
||||
- `291364` - The issue "Connector's tooltip position updated wrongly" has been fixed.
|
||||
- `287349` - The issue "Infinite loop occurs while setting delete constraints for node in swim-lane and clear diagram" has been fixed.
|
||||
- `290066` - The issue "SendToBack and BringToFront not work for connector with group node" has been fixed.
|
||||
|
||||
## 18.2.59 (2020-09-21)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `289382` - The issue "Exported data returns same png format for all other format" has been fixed.
|
||||
|
@ -18,6 +63,8 @@
|
|||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `291364` - The issue "Connector's tooltip position updated wrongly" has been fixed.
|
||||
- `287349` - The issue "Infinite loop occurs while setting delete constraints for node in swim-lane and clear diagram" has been fixed.
|
||||
- `290066` - The issue "SendToBack and BringToFront not work for connector with group node" has been fixed.
|
||||
|
@ -26,6 +73,8 @@
|
|||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `287578` - The issue "Connector segments not update properly" has been fixed.
|
||||
- `289532` - The issue "Group width and height does not update" has been fixed.
|
||||
- `285600` - The issue "Complex hierarchical layout does not arrange properly" has been fixed.
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-diagrams",
|
||||
"version": "18.8.1",
|
||||
"version": "18.3.35",
|
||||
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,94 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Document Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `294075`,`293472` - Resolved table border rendering issue.
|
||||
- `#291766` - Resolved file picker not opening issue in IE.
|
||||
- `#296842` - Resolved issue on selecting a merge field.
|
||||
- `#292515` - Polish characters are now working properly in IE.
|
||||
- `#291766` - Resolved script error on loading a document with text wrapped image.
|
||||
- `#292515` - Resolved toolbar rendering issue in IE.
|
||||
- `289186`,`293172` - Text box with none style is now exported properly.
|
||||
- `#291766` - Resolved issue on table rendering black.
|
||||
- `293342`,`295176` - Ctrl + V now works properly in IE.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Document Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#283180` - Resolved font family no records found issue.
|
||||
- `#282303` - Paste dropdown now hides when creating or opening new document.
|
||||
- `#280951` - Table content renders properly now for table with merged cells.
|
||||
- `#280973` - Resolved script while getting bookmarks from selection.
|
||||
- `#284486` - Comment Tab in pane is removed when enable comment is false.
|
||||
- `#283344` - Resolved the initial delay in pasting images.
|
||||
- `#282707`,`#284035` - Resolved bullet list exporting issue in MAC devices.
|
||||
- `#284412` - Comment mark is now deleted properly when comment is deleted.
|
||||
- `#281339` - Resolved RTL issue when editing a list content.
|
||||
- `#276616` - Paragraph maintained when inserting text in whole paragraph similar to MS Word.
|
||||
- `#284775` - Resolved table resize enabled issue in protected mode.
|
||||
- `#282504` - Resolved footer content overlapping issue when inserting image and table in footer.
|
||||
- `#286986` - Table properties are now written properly on html exporting.
|
||||
- `#286520` - Inserted text selection now applied properly after applying style.
|
||||
- `#287740` - Paper size dropdown in page setup dialog now updated for document with A4 format.
|
||||
- `#282515` - Resolved error on exporting a document which contains restart numbering.
|
||||
- `#287633` - Table containing alignment is now exporting properly with alignment.
|
||||
- `#286469` - Resolved table formatting issue when table splits to multiple pages.
|
||||
- `#285747` - Resolved script error on server side export.
|
||||
- `#284704` - Resolved script error on changing the footer distance.
|
||||
- `#283529` - Resolved table layout issue when table is center aligned.
|
||||
- `#286474` - Resolved table re layout issue when table have left indent value.
|
||||
- `#289186` - Resolved issue on exporting a text box with line format none.
|
||||
- `#288198` - Font family customization is also available on modify style dialog now.
|
||||
- `#289187` - Resolved table border rendering issue when table have merged cells.
|
||||
- `#287255` - Resolved page unresponsive error occurs on mail merge.
|
||||
- `#286474`, `#288778` - Resolved script error thrown on choosing fill color.
|
||||
- `#155699` - Image resize history is now called before the content change event.
|
||||
- `#156086` - Resolved table layout issue on opening a saved document with merged cells.
|
||||
- `#148494` - Resolved script error on destroying the container.
|
||||
- `#289186` - Resolved layout issue on exporting a text box.
|
||||
- `#289172` - Resolved script error when two or more server request is passed at same time.
|
||||
- `#287775` - Resolved script error on saving a document with form field.
|
||||
- `#289902` - Custom page height and width is now updating properly in page setup dialog.
|
||||
- `#289902` - Resolved review pane enabled issue when track changes is disabled.
|
||||
- `#157264` - Resolved script error when finding a text with curly braces.
|
||||
- `#290625` - Tick icon in line spacing is aligned properly now.
|
||||
- `#291882` - Now,Text contents were not transformed to upper case while copying.
|
||||
- `#287582` - Apply shading property for form field is now maintained also on exported document.
|
||||
- `#280951` - Table contents were not rendered on footer region now.
|
||||
- `#287195` - Resolved script error throw while deleting large text inside a table.
|
||||
- `#155699` - Resolved selection change event gets triggered before created event of document editor issue.
|
||||
- `#290271` - Resolved some elements are not created with unique id in document editor component issue.
|
||||
- `#288253` - Exported document with comments from editor contain initials property in file level now.
|
||||
- `#287740` - Landscape Orientation not updated properly in page setup dialog now.
|
||||
- `#291080`, `#157393` - Restrict editing property works when setting on component creation now.
|
||||
|
||||
#### New Features
|
||||
|
||||
- Added API to delete bookmark.
|
||||
- `#267515`- Added API to get searched item hierarchical index.
|
||||
- `#284937`- Added API show restrict editing pane.
|
||||
- `#280089`, `#283427`, `#250760` - Added event to notify service failure.
|
||||
- `#275184` - Added support for retrieving next and previous element context type from current selection range.
|
||||
- `#243495` - Added support for automatic text color.
|
||||
- `#279355` - Added support to enable properties pane in read only mode.
|
||||
- `#260677`, `#277329` - Added support for cropping images in document editor.
|
||||
- `#250760` - Added before file open event to restrict document loading based on file size.
|
||||
- `#256210`, `#259583`, `#280989`, `#282228` - Added support for all Caps property for character.
|
||||
- `#156915` - Added public API to check whether the selection is in edit region.
|
||||
- `#287831` - Added public API to show spell check dialog.
|
||||
- `#284434` - Spell checker performance was optimized.
|
||||
- `#290372` - Added support to apply restart page number for different sections.
|
||||
- `#290423` - Added resize API in document editor container.
|
||||
- `#243495`, `#247427`, `#248347`, `#252755`, `#254094`, `#254684`, `#256926`, `#248347`, `#260233`, `#262638`, `#273681`, `#155458`, `#278038` - Added support to preserve content control feature.
|
||||
|
||||
## 18.2.58 (2020-09-15)
|
||||
|
||||
### Document Editor
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-documenteditor",
|
||||
"version": "18.2.58",
|
||||
"version": "18.3.35",
|
||||
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#291884` - Issue with "clear icon overlaps the selected value" has been resolved.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### ListBox
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-dropdowns",
|
||||
"version": "17.4.50",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 DropDown Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Gantt
|
||||
|
||||
|
|
|
@ -2,6 +2,25 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#293407` - `RowDeselecting` event triggered when clicking on expansion area issue has been resolved.
|
||||
- `#292818` - `Aggregate` column alignment issue has been fixed.
|
||||
- `#157969` - Default filtering operator when enabling `showFilterBarOperator` issue has been resolved.
|
||||
- `#157753` - Update and insert `actionFailure` events arguments structure issue has been fixed.
|
||||
- `#291959` - Radio button editing issue in dialog template has been fixed.
|
||||
- `#291000` - `CurrentLocale` pager DropDown API changing issue has been fixed.
|
||||
- `#288619` - Persist selection issue with initial selection has been fixed.
|
||||
- `#293646` - Dynamic query updating issue has been fixed.
|
||||
- `#295025` - sort order with foreign key column issue has been fixed.
|
||||
- `#293387` - Infinite scrolling with grouping issue has been fixed.
|
||||
- `#295712` - Scrollbar move issue when hide columns with RTL mode, has been fixed.
|
||||
- `#292471` - Template properties not showing in `pagerTemplate` issue has been fixed.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Grid
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-grids",
|
||||
"version": "17.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Heatmap
|
||||
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### In-place Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
`#292832` - The issue with Validation is not working when template has more then two input elements" has been resolved.
|
||||
|
||||
|
||||
## 18.2.59 (2020-09-21)
|
||||
|
||||
### In-place Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-inplace-editor",
|
||||
"version": "17.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-inputs",
|
||||
"version": "18.2.56",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,10 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Kanban
|
||||
|
||||
#### New Features
|
||||
|
||||
- `#288864` - We had improved the performance while loading a huge number of cards and now dragging cards only be refreshed instead of whole cards.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Kanban
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#287430` - The issue with "Mismatch in the events argument type information" has been resolved.
|
||||
|
||||
## 18.2.57 (2020-09-08)
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-kanban",
|
||||
"version": "0.21.1",
|
||||
"version": "18.3.35",
|
||||
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Dashboard Layout
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#271335` - The support for rendering panels with their respective column size in the mobile view has been provided.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Dashboard Layout
|
||||
|
@ -10,7 +18,6 @@
|
|||
|
||||
- `#284795, #286988, #291408, #291630` - The issue with rendering panels when using angular template has been fixed.
|
||||
- `#282904` - The issue with the empty space while setting allowFloating as true has been resolved.
|
||||
- `#271335` - The support for rendering panels with their respective column size in the mobile view has been provided.
|
||||
|
||||
## 18.2.58 (2020-09-15)
|
||||
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-layouts",
|
||||
"version": "18.2.54",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-lineargauge",
|
||||
"version": "17.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 LinearGauge Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-lists",
|
||||
"version": "18.2.54",
|
||||
"version": "18.3.35",
|
||||
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -14,6 +14,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Maps
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#292757` - The multiple tile maps in a single page will now work properly.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Maps
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-maps",
|
||||
"version": "17.4.39",
|
||||
"version": "18.3.35",
|
||||
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Context Menu
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I292579` - An issue with when we set the `heightAujustMode` as Fill it makes container height too high has been resolved.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### TreeView
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-navigations",
|
||||
"version": "18.2.44",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### New Features
|
||||
|
||||
- `#F158073`, `#291648` - Exposed the annotation UnSelect event in PDF Viewer.
|
||||
|
||||
- `#F158073`, `#291648`- Exposed the annotation UnSelect event in PDF Viewer.
|
||||
|
||||
## 18.2.56 (2020-09-01)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -7,7 +7,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
const properties = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
const properties = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
const modelProps = [];
|
||||
/**
|
||||
* `ejs-pdfviewer` represents the VueJS PdfViewer Component.
|
||||
|
@ -67,6 +67,9 @@ let PdfViewerComponent = class PdfViewerComponent extends ComponentBase {
|
|||
exportFormFieldsAsObject() {
|
||||
return this.ej2Instances.exportFormFieldsAsObject();
|
||||
}
|
||||
fireAnnotationUnSelect(id, pageNumber, annotation) {
|
||||
return this.ej2Instances.fireAnnotationUnSelect(id, pageNumber, annotation);
|
||||
}
|
||||
importAnnotations(importData) {
|
||||
return this.ej2Instances.importAnnotations(importData);
|
||||
}
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -20,7 +20,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var properties = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
var properties = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
var modelProps = [];
|
||||
/**
|
||||
* `ejs-pdfviewer` represents the VueJS PdfViewer Component.
|
||||
|
@ -83,6 +83,9 @@ var PdfViewerComponent = /** @__PURE__ @class */ (function (_super) {
|
|||
PdfViewerComponent.prototype.exportFormFieldsAsObject = function () {
|
||||
return this.ej2Instances.exportFormFieldsAsObject();
|
||||
};
|
||||
PdfViewerComponent.prototype.fireAnnotationUnSelect = function (id, pageNumber, annotation) {
|
||||
return this.ej2Instances.fireAnnotationUnSelect(id, pageNumber, annotation);
|
||||
};
|
||||
PdfViewerComponent.prototype.importAnnotations = function (importData) {
|
||||
return this.ej2Instances.importAnnotations(importData);
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pdfviewer",
|
||||
"version": "18.2.56",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 PDF viewer Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -3,7 +3,7 @@ import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
|
|||
import { PdfViewer } from '@syncfusion/ej2-pdfviewer';
|
||||
|
||||
|
||||
export const properties: string[] = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
export const properties: string[] = ['ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableCommentPanel', 'enableDownload', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'formFieldCollections', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'highlightSettings', 'hyperlinkOpenState', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormFieldDocument', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'lineSettings', 'locale', 'measurementSettings', 'pageCount', 'perimeterSettings', 'polygonSettings', 'printMode', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showNotificationDialog', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'bookmarkClick', 'buttonFieldClick', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
||||
export const modelProps: string[] = [];
|
||||
|
||||
/**
|
||||
|
@ -79,6 +79,10 @@ export class PdfViewerComponent extends ComponentBase {
|
|||
return this.ej2Instances.exportFormFieldsAsObject();
|
||||
}
|
||||
|
||||
public fireAnnotationUnSelect(id: string, pageNumber: number, annotation: any): void {
|
||||
return this.ej2Instances.fireAnnotationUnSelect(id, pageNumber, annotation);
|
||||
}
|
||||
|
||||
public importAnnotations(importData: any): void {
|
||||
return this.ej2Instances.importAnnotations(importData);
|
||||
}
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### New Features
|
||||
|
||||
- `#F156978` - Provided additional cell information for cell template event.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Delimiter issue in hyperlink feature has been fixed.
|
||||
|
||||
## 18.2.56 (2020-09-01)
|
||||
|
||||
### Pivot Table
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pivotview",
|
||||
"version": "18.2.58",
|
||||
"version": "18.3.35",
|
||||
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Dialog
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue with 'getValues' method is fixed.
|
||||
|
||||
## 18.2.57 (2020-09-08)
|
||||
|
||||
### QueryBuilder
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-querybuilder",
|
||||
"version": "18.2.46",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 QueryBuilder for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -106,6 +106,9 @@ let RichTextEditorComponent = class RichTextEditorComponent extends ComponentBas
|
|||
getText() {
|
||||
return this.ej2Instances.getText();
|
||||
}
|
||||
getXhtml() {
|
||||
return this.ej2Instances.getXhtml();
|
||||
}
|
||||
hideInlineToolbar() {
|
||||
return this.ej2Instances.hideInlineToolbar();
|
||||
}
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -122,6 +122,9 @@ var RichTextEditorComponent = /** @__PURE__ @class */ (function (_super) {
|
|||
RichTextEditorComponent.prototype.getText = function () {
|
||||
return this.ej2Instances.getText();
|
||||
};
|
||||
RichTextEditorComponent.prototype.getXhtml = function () {
|
||||
return this.ej2Instances.getXhtml();
|
||||
};
|
||||
RichTextEditorComponent.prototype.hideInlineToolbar = function () {
|
||||
return this.ej2Instances.hideInlineToolbar();
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-richtexteditor",
|
||||
"version": "17.1.38",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 RichTextEditor component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -125,6 +125,10 @@ export class RichTextEditorComponent extends ComponentBase {
|
|||
return this.ej2Instances.getText();
|
||||
}
|
||||
|
||||
public getXhtml(): string {
|
||||
return this.ej2Instances.getXhtml();
|
||||
}
|
||||
|
||||
public hideInlineToolbar(): void {
|
||||
return this.ej2Instances.hideInlineToolbar();
|
||||
}
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
|
||||
- `#289933` - An issue with the flickering clone drag element when dragging action is performed at the top most cells of the Scheduler has been fixed.
|
||||
- `#285797` - An issue with dragging an appointment beyond the schedule end time causes appointment to jump has been fixed.
|
||||
- `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
|
||||
- `#289933` - An issue with the flickering clone drag element when dragging action is performed at the top most cells of the Scheduler has been fixed.
|
||||
- `#292609` - An issue with dynamically changed `minDate` and `maxDate` property are not applying to editor start and end date pickers has been fixed.
|
||||
- `#296040` - An issue with event template is not applied in react scheduler has been fixed.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Schedule
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-schedule",
|
||||
"version": "18.2.47",
|
||||
"version": "18.3.35",
|
||||
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### SplitButton
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Warning message has been resolved.
|
||||
|
||||
## 18.1.43 (2020-04-07)
|
||||
|
||||
### SplitButton
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-splitbuttons",
|
||||
"version": "18.2.44",
|
||||
"version": "18.3.35",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
`#I295594`- Data validation export issue with the empty values has been fixed.
|
||||
`#I287796`- Image not displaying issue has been fixed.
|
||||
`#I296132`- Console issue while providing the incorrect data source format has been fixed.
|
||||
`#I296145`- Number value not updated properly with the property binding in angular spreadsheet fixed.
|
||||
`#I290629`- Script error throws while editing the formula bar after scrolling fixed.
|
||||
`#I288573` - Fixed issue of cell is duplicated randomly on merge cell during scrolling.
|
||||
`#I295398`- Added isLocked cell property in import export support.
|
||||
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-spreadsheet",
|
||||
"version": "18.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 18.3.40 (2020-10-13)
|
||||
|
||||
### TreeGrid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#292453` - Treegrid refresh method works fine after updating the data.
|
||||
|
||||
## 18.3.35 (2020-10-01)
|
||||
|
||||
### TreeGrid
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-treegrid",
|
||||
"version": "18.2.48",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 TreeGrid Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-treemap",
|
||||
"version": "17.4.39",
|
||||
"version": "18.3.35",
|
||||
"description": "Essential JS 2 TreeMap Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче