Skip to content

Commit 544df4d

Browse files
author
pipeline
committed
v22.2.8 is released
1 parent 8a0f74b commit 544df4d

File tree

30 files changed

+244
-17
lines changed

30 files changed

+244
-17
lines changed

components/buttons/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 22.2.7 (2023-08-02)
5+
## 22.2.8 (2023-08-08)
6+
7+
### Checkbox
8+
9+
#### Bug Fixes
10+
11+
- `#I488474` - The issue with "Hovering the checkbox checked items of checkbox is unchecked while using RTL mode" has been resolved.
12+
13+
## 22.2.5 (2023-07-27)
614

715
### Checkbox
816

components/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "22.1.39",
3+
"version": "22.2.5",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 22.2.8 (2023-08-08)
6+
7+
### TimePicker
8+
9+
#### Features
10+
11+
- `#I480992` - Added support for configuring server time zone settings to the component. The `serverTimezoneOffset` property can now be used to set the pre-bound value based on the time zone provided to the component.
12+
513
## 21.1.34 (2023-06-21)
614

715
### DatePicker

components/calendars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "22.1.38",
3+
"version": "22.2.5",
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/calendars/src/timepicker/timepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { isUndefined } from '@syncfusion/ej2-base';
55
import { TimePicker } from '@syncfusion/ej2-calendars';
66

77

8-
export const properties: string[] = ['isLazyUpdate', 'plugins', 'allowEdit', 'cssClass', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'scrollTo', 'showClearButton', 'step', 'strictMode', 'value', 'width', 'zIndex', 'blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'itemRender', 'open'];
8+
export const properties: string[] = ['isLazyUpdate', 'plugins', 'allowEdit', 'cssClass', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'scrollTo', 'serverTimezoneOffset', 'showClearButton', 'step', 'strictMode', 'value', 'width', 'zIndex', 'blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'itemRender', 'open'];
99
export const modelProps: string[] = ['value'];
1010

1111
export const testProp: any = getProps({props: properties});

components/charts/CHANGELOG.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 22.2.8 (2023-08-08)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I483107` - Data editing is now working properly, along with the zoom property.
12+
- `#I484578` - The trendline is now rendered for the polynomial type in datetime.
13+
- `#I485511` - Fixed an issue where the trackball was not rendered properly in canvas mode.
14+
515
## 22.2.7 (2023-08-02)
616

717
### Chart
@@ -88,6 +98,15 @@
8898
#### Breaking Changes
8999

90100
- To differentiate between marker shapes in the `ChartShape` enumeration, the existing Cross shape has been replaced with Plus, while a new enumeration, Cross, has been added for the cross shape.
101+
- The font family for chart elements such as the title, axis labels, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
102+
103+
| Theme | Previous Font Family | New Font Family |
104+
|---|---|---|
105+
| Material | Segoe UI | Roboto |
106+
| Bootstrap 5 | Segoe UI | Helvetica |
107+
| Bootstrap 4 | Segoe UI | Helvetica |
108+
| Bootstrap | Segoe UI | Helvetica |
109+
| TailWind | Segoe UI | Inter |
91110

92111
#### Bug Fixes
93112

@@ -102,6 +121,85 @@
102121
- By default, the series type and trendline dropdowns have been removed from the stock chart period selector. However, you can still add them to the list upon request or as needed. This modification provides a cleaner interface and reduces clutter in the stock chart period selector.
103122
- By default, the tooltip for the range selector in the stock chart has been removed. Instead, the tooltip will now appear only when you move the slider.
104123
- The print option has been removed from the period selector because it is already available in the export dropdown. This modification provides a cleaner interface and reduces clutter in the stock chart's period selector.
124+
- The font family for stock chart elements such as the title, axis labels, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
125+
126+
| Theme | Previous Font Family | New Font Family |
127+
|---|---|---|
128+
| Material | Segoe UI | Roboto |
129+
| Bootstrap 5 | Segoe UI | Helvetica |
130+
| Bootstrap 4 | Segoe UI | Helvetica |
131+
| Bootstrap | Segoe UI | Helvetica |
132+
| TailWind | Segoe UI | Inter |
133+
134+
### Accumulation chart
135+
136+
#### Breaking Changes
137+
138+
- The font family for accumulation chart elements such as the title, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
139+
140+
| Theme | Previous Font Family | New Font Family |
141+
|---|---|---|
142+
| Material | Segoe UI | Roboto |
143+
| Bootstrap 5 | Segoe UI | Helvetica |
144+
| Bootstrap 4 | Segoe UI | Helvetica |
145+
| Bootstrap | Segoe UI | Helvetica |
146+
| TailWind | Segoe UI | Inter |
147+
148+
### Bullet Chart
149+
150+
#### Breaking Changes
151+
152+
- The font family for bullet chart elements such as the title, labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
153+
154+
| Theme | Previous Font Family | New Font Family |
155+
|---|---|---|
156+
| Material | Segoe UI | Roboto |
157+
| Bootstrap 5 | Segoe UI | Helvetica |
158+
| Bootstrap 4 | Segoe UI | Helvetica |
159+
| Bootstrap | Segoe UI | Helvetica |
160+
| TailWind | Segoe UI | Inter |
161+
162+
### RangeNavigator
163+
164+
#### Breaking Changes
165+
166+
- The font family for range navigator elements such as the axis labels, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
167+
168+
| Theme | Previous Font Family | New Font Family |
169+
|---|---|---|
170+
| Material | Segoe UI | Roboto |
171+
| Bootstrap 5 | Segoe UI | Helvetica |
172+
| Bootstrap 4 | Segoe UI | Helvetica |
173+
| Bootstrap | Segoe UI | Helvetica |
174+
| TailWind | Segoe UI | Inter |
175+
176+
### Sparkline
177+
178+
#### Breaking Changes
179+
180+
- The font family for sparkline elements such as the data labels, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
181+
182+
| Theme | Previous Font Family | New Font Family |
183+
|---|---|---|
184+
| Material | Segoe UI | Roboto |
185+
| Bootstrap 5 | Segoe UI | Helvetica |
186+
| Bootstrap 4 | Segoe UI | Helvetica |
187+
| Bootstrap | Segoe UI | Helvetica |
188+
| TailWind | Segoe UI | Inter |
189+
190+
### Smith Chart
191+
192+
#### Breaking Changes
193+
194+
- The font family for smith chart elements such as the title, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
195+
196+
| Theme | Previous Font Family | New Font Family |
197+
|---|---|---|
198+
| Material | Segoe UI | Roboto |
199+
| Bootstrap 5 | Segoe UI | Helvetica |
200+
| Bootstrap 4 | Segoe UI | Helvetica |
201+
| Bootstrap | Segoe UI | Helvetica |
202+
| TailWind | Segoe UI | Inter |
105203

106204
## 21.2.10 (2023-06-13)
107205

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "22.2.5",
3+
"version": "22.2.7",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 22.2.8 (2023-08-08)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I482420` - Now, Connector draw cursor is enabled while hover the group node port.
12+
- `#I484353` - Now, copy paste the group node multiple times is working properly.
13+
514
## 22.2.7 (2023-08-02)
615

716
### Diagram

components/diagrams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "22.2.5",
3+
"version": "22.2.7",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 22.2.8 (2023-08-08)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I482386`, `#I486455` - Resolved the spell check issue.
12+
- `#I482694` - Now, the table Header repeating is proper while enter new data at last row of the page.
13+
- `#I483711` - Fixed the issue in custom style preservation and applying.
14+
- `#I478257` - Fixed the issue in list format rendering.
15+
- `#I484131` - Resolved the table lines missing after saving the document.
16+
- `#I485502` - Resolved the issue in exporting the document with an image.
17+
- `#I486096` - Now, Update field appear in the context menu.
18+
519
## 22.2.7 (2023-08-02)
620

721
### Document Editor

0 commit comments

Comments
 (0)