Skip to content

Commit 26ba100

Browse files
author
pipeline
committed
v20.3.47 is released
1 parent 0dad749 commit 26ba100

File tree

1,396 files changed

+22347
-16406
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,396 files changed

+22347
-16406
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gulp sitemap-generate
4848

4949
### Copy source
5050

51-
It select all the files in `src/app/` and check the indexof value of the files is `/common`. If the condition satisfies it copy the files to `src/source`. Use the below command to run this task.
51+
It select all the files in `src/app/` and check the indexof value of the files in `/common`. If the condition satisfies it copy the files to `src/source`. Use the below command to run this task.
5252

5353
```
5454
gulp copy-source
@@ -64,7 +64,7 @@ npm run build:prod
6464

6565
### Move
6666

67-
It copy files from OpennewSamples folder to output folder and replace `(/assets)` to `(./assets` if the `./output/main-es5.js` is exist. To run this task use the below command.
67+
It copy files from OpennewSamples folder to output folder and replace `(/assets)` to `(./assets)` if the `./output/main-es5.js` is exist. To run this task use the below command.
6868

6969
```
7070
gulp move
@@ -207,7 +207,7 @@ export let samplesList: any = [
207207

208208
No, In your sample level html files, you don't read css files.
209209

210-
For example: [Refer Here](https://gitlab.syncfusion.com/essential-studio/ej2-diagram-angular-samples/blob/master/src/app/diagram/bpmn-editor.html#L1).
210+
For example: [Refer Here](https://github.com/syncfusion/ej2-angular-samples/blob/master/src/app/diagram/bpmn-editor.html#L1).
211211

212212
### 2) How to solve below Error while compilation?
213213

@@ -224,4 +224,4 @@ export let samplesList: any = [
224224

225225
If you have used some control in your samples, you have to map component module in your control module.
226226

227-
For Example: If You use `ejs-dropdownlist` control in your [sample](https://gitlab.syncfusion.com/essential-studio/ej2-diagram-angular-samples/blob/release/17.1.0.1/src/app/diagram/ports.html#L133), you need to import that control module in your sample level [modulefile](https://gitlab.syncfusion.com/essential-studio/ej2-diagram-angular-samples/blob/release/17.1.0.1/src/app/diagram/diagram.module.ts#L14)
227+
For Example: If You use `ejs-dropdownlist` control in your [sample](https://github.com/syncfusion/ej2-angular-samples/blob/master/src/app/diagram/ports.html#L133), you need to import that control module in your sample level [modulefile](https://github.com/syncfusion/ej2-angular-samples/blob/master/src/app/diagram/diagram.module.ts#L13)

angular.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
"with": "src/environments/environment.prod.ts"
3636
}
3737
],
38-
"optimization": false,
38+
"optimization": true,
3939
"outputHashing": "all",
4040
"sourceMap": false,
4141
"extractCss": true,
4242
"namedChunks": false,
43-
"aot": false,
43+
"aot": true,
4444
"extractLicenses": true,
4545
"vendorChunk": false,
46-
"buildOptimizer": false
46+
"buildOptimizer": true
4747
}
4848
}
4949
},
@@ -96,4 +96,4 @@
9696
}
9797
}},
9898
"defaultProject": "ngsb10"
99-
}
99+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-angular-samples",
3-
"version": "20.2.43",
3+
"version": "20.3.47",
44
"private": true,
55
"dependencies": {
66
"@angular/animations": "~10.0.0",
@@ -47,6 +47,7 @@
4747
"@syncfusion/ej2-angular-spreadsheet": "*",
4848
"@syncfusion/ej2-angular-treegrid": "*",
4949
"@syncfusion/ej2-angular-treemap": "*",
50+
"@syncfusion/ej2-angular-image-editor": "*",
5051
"@syncfusion/ej2-react-notifications": "*",
5152
"@types/codemirror": "0.0.56",
5253
"@types/marked": "^0.3.0",

sampleOrder.json

Lines changed: 70 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
"icon": "Icons"
88
}
99
},
10+
"appbar": {
11+
"ControlName": "AppBar",
12+
"Samples": {
13+
"default": "Default Functionalities",
14+
"color": "Color"
15+
}
16+
},
1017
"auto-complete": {
1118
"ControlName": "AutoComplete",
1219
"Samples": {
@@ -369,7 +376,6 @@
369376
"ControlName": "Dialog",
370377
"Samples": {
371378
"default": "Default Functionalities",
372-
"custom-dialog": "Custom Dialogs",
373379
"modal-dialog": "Modal",
374380
"template": "Template",
375381
"dialog-contents-via-ajax": "Ajax Content",
@@ -401,6 +407,13 @@
401407
"document-protection": "Document Protection"
402408
}
403409
},
410+
"image-editor": {
411+
"ControlName": "Image Editor",
412+
"Samples": {
413+
"default": "Default Functionalities",
414+
"profile-picture": "Profile Picture"
415+
}
416+
},
404417
"drop-down-list": {
405418
"ControlName": "Dropdown List",
406419
"Samples": {
@@ -440,6 +453,15 @@
440453
"ftp-file-provider":"FTP File Provider"
441454
}
442455
},
456+
"floating-action-button": {
457+
"ControlName": "Floating Action Button",
458+
"Samples": {
459+
"overview": "Overview",
460+
"default": "Default Functionalities",
461+
"position": "Position",
462+
"styles": "Styles"
463+
}
464+
},
443465
"form-validator": {
444466
"ControlName": "Form Validator",
445467
"Samples": {
@@ -684,6 +706,14 @@
684706
"toolbar-integration": "Toolbar Integration"
685707
}
686708
},
709+
"mention": {
710+
"ControlName": "Mention",
711+
"Samples": {
712+
"default": "Default Functionalities",
713+
"multiple-list": "Multiple List",
714+
"template": "Template"
715+
}
716+
},
687717
"multi-select": {
688718
"ControlName": "MultiSelect Dropdown",
689719
"Samples": {
@@ -761,6 +791,14 @@
761791
"defer-update": "Defer Layout Update",
762792
"exporting": "Export"
763793
}
794+
},
795+
"predefined-dialogs" : {
796+
"ControlName" : "Predefined Dialogs",
797+
"Samples" : {
798+
"default": "Default Functionalities",
799+
"customization": "Customization",
800+
"animation": "Animation"
801+
}
764802
},
765803
"progress-bar" : {
766804
"ControlName" : "Progress Bar",
@@ -808,6 +846,7 @@
808846
"image": "Image",
809847
"inline": "Inline",
810848
"paste-cleanup": "name:Paste from MS Word'",
849+
"mention-integration": "Mention Integration",
811850
"iframe": "IFrame",
812851
"print": "Print",
813852
"ajax-load": "Ajax Content",
@@ -823,8 +862,7 @@
823862
"markdown-editor-preview": "Preview",
824863
"markdown-editor-custom-format": "Custom Format",
825864
"reactive-form": "Reactive Form",
826-
"template-driven": "Template Driven",
827-
"tribute": "Tribute JS"
865+
"template-driven": "Template Driven"
828866
}
829867
},
830868
"schedule": {
@@ -921,6 +959,13 @@
921959
"toolbar": "Toolbar"
922960
}
923961
},
962+
"skeleton": {
963+
"ControlName": "Skeleton",
964+
"Samples": {
965+
"default": "Default Functionalities",
966+
"animation": "Animation"
967+
}
968+
},
924969
"smith-chart": {
925970
"ControlName": "Smith Chart",
926971
"Samples": {
@@ -941,6 +986,17 @@
941986
"range-band": "Range Band"
942987
}
943988
},
989+
"speed-dial": {
990+
"ControlName": "SpeedDial",
991+
"Samples": {
992+
"default": "Default Functionalities",
993+
"linear": "Position (Linear)",
994+
"radial": "Radial Menu",
995+
"styles": "Styles",
996+
"template": "Template",
997+
"modal": "Modal"
998+
}
999+
},
9441000
"splitter": {
9451001
"ControlName": "Splitter",
9461002
"Samples": {
@@ -1020,6 +1076,16 @@
10201076
"api": "API"
10211077
}
10221078
},
1079+
"message": {
1080+
"ControlName": "Message",
1081+
"Samples": {
1082+
"default": "Default Functionalities",
1083+
"variants": "Variants",
1084+
"icons": "Icons",
1085+
"customization": "Customization",
1086+
"template": "Template"
1087+
}
1088+
},
10231089
"toolbar": {
10241090
"ControlName": "Toolbar",
10251091
"Samples": {
@@ -1143,4 +1209,4 @@
11431209
"file-upload-with-reactive-forms": "Reactive Forms"
11441210
}
11451211
}
1146-
}
1212+
}

src/app/accordion/ajax-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/accordion/default-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/accordion/icon-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/accordion/keyboard-interaction-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/appbar/appbar.module.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { NgModule, CUSTOM_ELEMENTS_SCHEMA, ModuleWithProviders } from '@angular/core';
2+
import { RouterModule } from '@angular/router';
3+
import { AppBarAllModule, MenuAllModule } from '@syncfusion/ej2-angular-navigations';
4+
import { ButtonAllModule } from '@syncfusion/ej2-angular-buttons';
5+
import { DropDownButtonAllModule } from '@syncfusion/ej2-angular-splitbuttons';
6+
import { AppBarDefaultComponent } from './default.component';
7+
import { AppBarColorComponent } from './color.component';
8+
import { SharedModule } from '../common/shared.module';
9+
import { BrowserModule } from '@angular/platform-browser';
10+
11+
export const appbarAppRoutes: Object[] = [
12+
{ path: ':theme/appbar/default', component: AppBarDefaultComponent, name: 'Default Functionalities', description: 'This sample demonstrates the default functionalities of the Syncfusion Angular AppBar component.', category: 'AppBar' },
13+
{ path: ':theme/appbar/color', component: AppBarColorComponent, name: 'Color', description: 'This sample demonstrates the available bar color modes in the Syncfusion Angular AppBar component.', category: 'AppBar' }
14+
];
15+
16+
export const appbarRouter: ModuleWithProviders<any> = RouterModule.forChild(appbarAppRoutes);
17+
18+
@NgModule({
19+
imports: [appbarRouter, AppBarAllModule, ButtonAllModule, DropDownButtonAllModule, MenuAllModule, SharedModule, BrowserModule],
20+
declarations: [
21+
AppBarDefaultComponent,
22+
AppBarColorComponent
23+
],
24+
schemas: [CUSTOM_ELEMENTS_SCHEMA]
25+
})
26+
export class AppBarSampleModule { }

src/app/appbar/color-stackb.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)