Skip to content

Commit b8c1fcb

Browse files
author
pipeline
committed
v30.1.37 is released
1 parent c159d48 commit b8c1fcb

File tree

1,893 files changed

+56229
-3977
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,893 files changed

+56229
-3977
lines changed

angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"src/favicon.ico",
2525
"src/assets",
2626
"src/styles",
27-
"src/source"
27+
"src/source",
28+
"src/embedding-model"
2829
],
2930
"styles": [],
3031
"scripts": []

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"styleDependency": ["ej2"],
66
"github": ["/source/**/*.{css,ts,html,json}", "!/source/**/*.{d.ts,ngfactory.ts,ngstyle.ts,ngsummary.json}", "./styles/images{,/**}", "./styles/{index.css,highlight.css}", "./styles/*.scss", "./dist/zone.min.js", "/source/**/images{,/**}", "/source/common/cldr-data{,/**}", "./index.html", "./favicon.ico", "package.json", "tsconfig-aot.json", "webpack.config.js", "license"],
77
"publishSamples": ["./output/**/*.*"],
8-
"releaseVersion": "29.1.33",
8+
"releaseVersion": "30.1.37",
99
"platform": "angular",
1010
"customNames": [
1111
"listview",

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": "29.1.33",
3+
"version": "30.1.37",
44
"private": true,
55
"dependencies": {
66
"@angular/animations": "17.1.2",
@@ -50,6 +50,7 @@
5050
"@syncfusion/ej2-angular-treemap": "*",
5151
"@syncfusion/ej2-angular-image-editor": "*",
5252
"@syncfusion/ej2-angular-interactive-chat": "*",
53+
"@syncfusion/ej2-angular-blockeditor": "*",
5354
"marked": "4.0.10",
5455
"rxjs": "7.8.0"
5556
},

sampleOrder.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,10 +800,19 @@
800800
"default": "Default Functionalities",
801801
"custom-views": "Custom Views",
802802
"streaming": "Streaming Response",
803+
"attachments": "File Attachments",
803804
"template": "Template",
804805
"dialog": "Dialog"
805806
}
806807
},
808+
"block-editor": {
809+
"ControlName": "Block Editor",
810+
"Samples": {
811+
"overview": "Overview",
812+
"api": "API",
813+
"events": "Events"
814+
}
815+
},
807816
"chat-ui": {
808817
"ControlName": "Chat UI",
809818
"Samples": {
@@ -840,7 +849,8 @@
840849
"esigning-pdf-forms": "eSigning PDF Forms",
841850
"annotations": "Annotations",
842851
"hand-written": "Handwritten Signature",
843-
"invisible-signature": "Invisible Signature"
852+
"invisible-signature": "Invisible Signature",
853+
"programmatic-operations": "Programmatic Operations"
844854
}
845855
},
846856
"pivot-table": {

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/accordion/templates-stackb.json

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

src/app/ai-assistview/ai-assistview.module.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { BrowserModule } from '@angular/platform-browser';
55
import { AIAssistDefaultComponent } from './default.component';
66
import { AIAssistCustomViewsComponent } from './custom-views.component';
77
import { AIAssistStreamComponent } from './streaming.component';
8+
import { AIAssistAttachmentComponent } from './attachments.component';
89
import { AIAssistDialogComponent } from './dialog.component';
910
import { AIAssistTemplateComponent } from './template.component';
1011

@@ -21,12 +22,18 @@ export const aiassistviewAppRoutes: Object[] = [
2122
{displayName: 'custom-views.component.css', path: './src/ai-assistview/custom-views.component.css'},
2223
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
2324
] },
24-
{ path: ':theme/ai-assistview/streaming', component: AIAssistStreamComponent, name: 'Streaming Response', description: 'Showcases the AiAssistView component with its streaming support.', category: 'AI AssistView', order: '01', type: 'new', sourceFiles: [
25+
{ path: ':theme/ai-assistview/streaming', component: AIAssistStreamComponent, name: 'Streaming Response', description: 'Showcases the AiAssistView component with its streaming support.', category: 'AI AssistView', order: '01', sourceFiles: [
2526
{displayName: 'streaming.component.ts', path: './src/ai-assistview/streaming.component.ts'},
2627
{displayName: 'streaming.html', path: './src/ai-assistview/streaming.html'},
2728
{displayName: 'streaming.component.css', path: './src/ai-assistview/streaming.component.css'},
2829
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
2930
] },
31+
{ path: ':theme/ai-assistview/attachments', component: AIAssistAttachmentComponent, name: 'File Attachments', description: 'Showcases the AiAssistView control with its attachment support.', category: 'AI AssistView', order: '01', type: 'new', sourceFiles: [
32+
{displayName: 'attachments.component.ts', path: './src/ai-assistview/attachments.component.ts'},
33+
{displayName: 'attachments.html', path: './src/ai-assistview/attachments.html'},
34+
{displayName: 'attachments.component.css', path: './src/ai-assistview/attachments.component.css'},
35+
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
36+
] },
3037
{ path: ':theme/ai-assistview/template', component: AIAssistTemplateComponent, name: 'Template', description: 'Showcases the template properties of the AiAssistView component.', category: 'AI AssistView', order: '01', sourceFiles: [
3138
{displayName: 'template.component.ts', path: './src/ai-assistview/template.component.ts'},
3239
{displayName: 'template.html', path: './src/ai-assistview/template.html'},

src/app/ai-assistview/attachments-stackb.json

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

0 commit comments

Comments
 (0)