Skip to content

Commit 954f1d5

Browse files
author
pipeline
committed
v28.1.33 is released
1 parent b1aec65 commit 954f1d5

File tree

1,737 files changed

+15660
-8103
lines changed

Some content is hidden

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

1,737 files changed

+15660
-8103
lines changed

gulpfile.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,9 @@ function combineSampleList(platform, seo, done) {
285285
for (var i = 0; i < orderKeys.length; i++) {
286286
console.log('Category : ' + orderKeys[i]);
287287
var components = sampleOrder[orderKeys[i]];
288-
let category = orderKeys[i];
289288
for (var j = 0; j < components.length; j++) {
290289
console.log('Component : ' + components[j]);
291-
var currentData = getSamples(data, components[j], category);
290+
var currentData = getSamples(data, components[j]);
292291
currentData.order = i;
293292
result.push(currentData);
294293
}
@@ -350,11 +349,11 @@ function getSampleOrder(controls) {
350349
return controlWiseSampleOrder;
351350
}
352351

353-
function getSamples(data, component, category) {
352+
function getSamples(data, component) {
354353
var dataList = Object.keys(data);
355354
for (var i = 0; i < dataList.length; i++) {
356355
var currentData = data[dataList[i]];
357-
if (component === currentData.name && category === currentData.category) {
356+
if (component === currentData.name) {
358357
return currentData;
359358
}
360359
}
@@ -465,4 +464,4 @@ gulp.task('serve', function(done) {
465464
};
466465
bs.init(options, done);
467466
});
468-
});
467+
});

index.html

+13-7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2121
<meta name="description"
2222
content="Explore and learn Syncfusion JavaScript (ES5) UI controls library using large collection of feature-wise examples for each components." />
23+
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
2324
<meta name="author" content="Syncfusion" />
2425
<link rel="shortcut icon" href="favicon.ico" />
2526
<link rel="manifest" href="./manifest.webmanifest">
@@ -28,7 +29,7 @@
2829
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
2930
</link>
3031
<link href="styles/highlight.css" rel="stylesheet" />
31-
<link id="themelink" href="styles/fluent2.css" rel="stylesheet" />
32+
<link id="themelink" href="styles/tailwind3.css" rel="stylesheet" />
3233
<link href="styles/index.css" rel="stylesheet" />
3334
<link href="src/common/lib/content/codemirror.css" rel="stylesheet">
3435
</link>
@@ -139,7 +140,7 @@
139140
</div>
140141
<div class='sb-header-item sb-table-cell'>
141142
<div id='sb-header-text' class='e-sb-header-text'>
142-
<span class='sb-header-text-left'>Essential Studio for</span>
143+
<span class='sb-header-text-left'>Essential Studio<sup>®</sup> for</span>
143144
<span class='sb-header-text-right' role="button" tabindex="0">JavaScript (ES5)</span>
144145
</div>
145146
</div>
@@ -257,19 +258,23 @@
257258
<span class="sb-icons sb-theme-select sb-icon-icon-selection"></span>
258259
<span class="switch-text">Fluent 2</span>
259260
</li>
260-
<li class="e-list" id="tailwind" role="listitem">
261+
<li class="e-list" id="tailwind3" role="listitem">
261262
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
262263
<span class="switch-text">Tailwind CSS</span>
263264
</li>
264265
<li class="e-list" id="fluent2-highcontrast" role="listitem">
265266
<span class="sb-icons sb-theme-select sb-icon-icon-selection"></span>
266267
<span class="switch-text">Fluent 2 High Contrast</span>
267268
</li>
268-
<li class="e-list" id="highcontrast" role="listitem">
269+
<li class="e-list sb-hide" id="highcontrast" role="listitem">
269270
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
270271
<span class="switch-text">High Contrast</span>
271272
</li>
272-
<li class="e-list" id="fluent" role="listitem">
273+
<li class="e-list sb-hide" id="tailwind" role="listitem">
274+
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
275+
<span class="switch-text">Tailwind</span>
276+
</li>
277+
<li class="e-list sb-hide" id="fluent" role="listitem">
273278
<span class="sb-icons sb-theme-select sb-icon-icon-selection"></span>
274279
<span class="switch-text">Fluent</span>
275280
</li>
@@ -294,9 +299,10 @@
294299
<option value="material3">Material 3</option>
295300
<option value="bootstrap5">Bootstrap 5</option>
296301
<option value="fluent2">Fluent 2</option>
297-
<option value="tailwind">Tailwind CSS</option>
302+
<option value="tailwind3">Tailwind CSS</option>
298303
<option value="fluent2-highcontrast">Fluent 2 High Contrast</option>
299304
<option value="highcontrast">High Contrast</option>
305+
<option value="tailwind">Tailwind</option>
300306
<option value="fluent">Fluent</option>
301307
</select>
302308
</div>
@@ -448,7 +454,7 @@ <h1 class='sb-sample-text' aria-level="1" role="heading">Data Grid</h1>
448454
<div class="col-sm-12">
449455
<div class="col-sm-12">
450456
<div id="banner-head" class="banner-header">Transform your JavaScript web
451-
apps today with Syncfusion Javascript controls</div>
457+
apps today with Syncfusion<sup>®</sup> Javascript controls</div>
452458
</div>
453459
<div class="col-sm-12 cnt-area">
454460
<div class="content-area">

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-javascript-samples",
3-
"version": "27.1.48",
3+
"version": "28.1.33",
44
"description": "Examples of JavaScript (ES5) UI Controls",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/accordion/default-stack.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"index.html":"<html><head><script src=\"//ej2.syncfusion.com/javascript/demos/accordion/default/datasource.js\" type=\"text/javascript\"></script>\n<script src=\"https://cdn.syncfusion.com/ej2/26.2.4/dist/ej2.min.js\" type=\"text/javascript\"></script>\n <link href=\"https://cdn.syncfusion.com/ej2/26.2.4/material.css\" rel=\"stylesheet\">\n\n <link href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" rel=\"stylesheet\">\n\n <style>\n body{\n touch-action:none;\n }\n .control-section{\n margin-top:100px;\n }\n </style></head><body><div class=\"stackblitz-container {{theme}}\"><div class=\"control-section\">\n <div class=\"control_wrapper accordion-control-section\">\n <div id=\"Accordion_default\"></div>\n </div>\n</div>\n\n\n","index.js":"{{ripple}}/**\n * Accordion Default Sample\n */\n\n //Initialize Accordion component\n var accordion = new ej.navigations.Accordion({\n items: [\n { header: 'ASP.NET', expanded: true, content: 'Microsoft ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services. ASP.NET pages execute on the server and generate markup such as HTML, WML, or XML that is sent to a desktop or mobile browser. ASP.NET pages use a compiled,event-driven programming model that improves performance and enables the separation of application logic and user interface.' },\n { header: 'ASP.NET MVC', content: 'The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating Web applications. The ASP.NET MVC framework is a lightweight, highly testable presentation framework that (as with Web Forms-based applications) is integrated with existing ASP.NET features, such as master pages and membership-based authentication.' },\n { header: 'JavaScript', content: 'JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed.More recently, however, it has become common in both game development and the creation of desktop applications.' }\n ]\n });\n //Render initialized Accordion component\n accordion.appendTo('#Accordion_default');\n"}
1+
{"index.html":"<html><head><script src=\"//ej2.syncfusion.com/javascript/demos/accordion/default/datasource.js\" type=\"text/javascript\"></script>\n<script src=\"https://cdn.syncfusion.com/ej2/27.1.48/dist/ej2.min.js\" type=\"text/javascript\"></script>\n <link href=\"https://cdn.syncfusion.com/ej2/27.1.48/material.css\" rel=\"stylesheet\">\n\n <link href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" rel=\"stylesheet\">\n\n <style>\n body{\n touch-action:none;\n }\n .control-section{\n margin-top:100px;\n }\n </style></head><body><div class=\"stackblitz-container {{theme}}\"><div class=\"control-section\">\n <div class=\"control_wrapper accordion-control-section\">\n <div id=\"Accordion_default\"></div>\n </div>\n</div>\n\n\n","index.js":"{{ripple}}/**\n * Accordion Default Sample\n */\n\n //Initialize Accordion component\n var accordion = new ej.navigations.Accordion({\n items: [\n { header: 'ASP.NET', expanded: true, content: 'Microsoft ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services. ASP.NET pages execute on the server and generate markup such as HTML, WML, or XML that is sent to a desktop or mobile browser. ASP.NET pages use a compiled,event-driven programming model that improves performance and enables the separation of application logic and user interface.' },\n { header: 'ASP.NET MVC', content: 'The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating Web applications. The ASP.NET MVC framework is a lightweight, highly testable presentation framework that (as with Web Forms-based applications) is integrated with existing ASP.NET features, such as master pages and membership-based authentication.' },\n { header: 'JavaScript', content: 'JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed.More recently, however, it has become common in both game development and the creation of desktop applications.' }\n ]\n });\n //Render initialized Accordion component\n accordion.appendTo('#Accordion_default');\n"}

0 commit comments

Comments
 (0)