Skip to content

Commit ad66b6d

Browse files
author
pipeline
committed
v22.1.34 is released
1 parent fc9020b commit ad66b6d

File tree

646 files changed

+13556
-2193
lines changed

Some content is hidden

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

646 files changed

+13556
-2193
lines changed

config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@
176176
"workflow",
177177
"form-validator",
178178
"signature",
179-
"multiline-textbox",
180-
null
179+
"multiline-textbox"
181180
]
182181
}

index.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,21 @@
221221
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
222222
<span class="switch-text">Tailwind CSS Dark</span>
223223
</li>
224-
<li class='active' id="material" role="listitem">
224+
<li class='e-list' id="material" role="listitem">
225225
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
226226
<span class="switch-text">Material</span>
227227
</li>
228228
<li class="e-list" id="material-dark">
229229
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
230230
<span class="switch-text">Material Dark</span>
231+
</li>
232+
<li class='active' id="material3" role="listitem">
233+
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
234+
<span class="switch-text">Material 3</span>
235+
</li>
236+
<li class="e-list" id="material3-dark" role="listitem">
237+
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
238+
<span class="switch-text">Material 3 Dark</span>
231239
</li>
232240
<li id="fabric" role="listitem">
233241
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
@@ -277,6 +285,8 @@
277285
<option value="tailwind-dark">Tailwind CSS Dark</option>
278286
<option value="material">Material</option>
279287
<option value="material-dark">Material Dark</option>
288+
<option value="material3">Material 3</option>
289+
<option value="material3-dark">Material 3 Dark</option>
280290
<option value="fabric">Fabric</option>
281291
<option value="fabric-dark">Fabric Dark</option>
282292
<option value="bootstrap4">Bootstrap v4</option>

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-samples",
3-
"version": "21.1.35",
3+
"version": "22.1.34",
44
"description": "Samples for Syncfusion Essential JS 2",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
File renamed without changes.

src/accordion/ajax.html renamed to src/accordion/fetch.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@
9595
</div>
9696
<div id="action-description">
9797
<p>
98-
This sample demonstrates rendering <code>Accordion</code> content from external source using <code>Ajax</code> library. The content of panel “Network & Connectivity" is loaded from external element.
98+
This sample demonstrates rendering <code>Accordion</code> content from external source using <code>Fetch</code> library. The content of panel “Network & Connectivity" is loaded from external element.
9999
</p>
100100
</div>
101101
<div id="description">
102102
<p>
103-
This sample illustrates the external webpage content loaded inside the Accordion panel by using AJAX library.
103+
This sample illustrates the external webpage content loaded inside the Accordion panel by using FETCH library.
104104
</p>
105105
<p>
106106
More information about Accordion can be found in this <a target="_blank" href="https://ej2.syncfusion.com/documentation/accordion/getting-started/">

src/accordion/ajax.ts renamed to src/accordion/fetch.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
import { loadCultureFiles } from '../common/culture-loader';
22
/**
3-
* Accordion Ajax Sample
3+
* Accordion Fetch Sample
44
*/
55
import { Accordion, ExpandEventArgs } from '@syncfusion/ej2-navigations';
6-
import { Ajax } from '@syncfusion/ej2-base';
6+
import { Fetch } from '@syncfusion/ej2-base';
77

88
let acrdnObj: Accordion;
99
let nestAcrdn: Accordion;
1010
(window as any).default = (): void => {
1111
loadCultureFiles();
1212

13-
let ajax: Ajax = new Ajax('./src/accordion/ajax-content.html', 'GET', true);
14-
ajax.send().then();
15-
ajax.onSuccess = (data: string): void => {
13+
let fetch: Fetch = new Fetch('./src/accordion/fetch-content.html', 'GET', "application/json",);
14+
fetch.send().then();
15+
fetch.onSuccess = (data: string): void => {
1616
//Initialize Accordion component
1717
acrdnObj = new Accordion({
1818
expandMode: 'Single',

src/accordion/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"api": {"AccordionItem": ["header", "content", "expanded"], "Accordion":["items"] }
1313
},
1414
{
15-
"url": "ajax",
16-
"name": "Ajax Content",
15+
"url": "fetch",
16+
"name": "Fetch Content",
1717
"category": "Accordion",
18-
"description":"The sample demonstrates how to load the content to the Accordion control from external sources using Ajax library in TypeScript platform.",
18+
"description":"The sample demonstrates how to load the content to the Accordion control from external sources using Fetch library in TypeScript platform.",
1919
"api": {"Accordion": ["expandMode","expanding"] }
2020
},
2121
{

src/arc-gauge/key-performance-indicator.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
</p>
2525
</div>
2626
<style>
27+
#gauge_Annotations_0 {
28+
line-height: 0.4;
29+
}
2730
.triangle-up {
2831
width: 20;
2932
height: 20;

src/auto-complete/data-binding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as data from './dataSource.json';
1414
let atcObj1: AutoComplete = new AutoComplete({
1515
// bind the DataManager instance to dataSource property
1616
dataSource: new DataManager({
17-
url: 'https://ej2services.syncfusion.com/js/development/api/Employees',
17+
url: 'https://services.syncfusion.com/js/production/api/Employees',
1818
adaptor: new WebApiAdaptor,
1919
crossDomain: true
2020
}),

src/auto-complete/grouping-icon.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ <h4> Icons</h4>
5252
color: #495057;
5353
}
5454
.material-dark .e-list-icon,
55+
.material3-dark .e-list-icon,
5556
.bootstrap5-dark .e-list-icon,
5657
.tailwind-dark .e-list-icon,
5758
.fluent-dark .e-list-icon {

0 commit comments

Comments
 (0)