Skip to content

Commit

Permalink
v28.1.33 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Dec 14, 2024
1 parent e1632e6 commit ae1fe06
Show file tree
Hide file tree
Showing 1,722 changed files with 12,115 additions and 4,985 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"styleDependency": ["ej2"],
"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"],
"publishSamples": ["./output/**/*.*"],
"releaseVersion": "27.1.48",
"releaseVersion": "28.1.33",
"platform": "angular",
"customNames": [
"listview",
Expand Down
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ej2-angular-samples",
"version": "27.1.48",
"version": "28.1.33",
"private": true,
"dependencies": {
"@angular/animations": "17.1.2",
Expand Down Expand Up @@ -59,7 +59,7 @@
"@angular/compiler-cli": "17.1.2",
"@types/jasmine": "4.3.0",
"child_process": "1.0.2",
"codemirror": "5.58.2",
"codemirror": "5.37.0",
"elasticlunr": "0.9.5",
"fuse.js": "6.6.2",
"gulp": "4.0.2",
Expand All @@ -75,14 +75,12 @@
"shelljs": "0.8.5",
"tslib": "2.3.0",
"typescript": "5.3.3",
"zone.js": "0.14.3",
"@xenova/transformers": "2.17.2",
"openai": "4.57.0"
"zone.js": "0.14.3"
},
"scripts": {
"ng": "ng",
"start": "npm run build && node --max-old-space-size=8192 ./node_modules/@angular/cli/bin/ng serve",
"build:prod": "node ./node_modules/@angular/cli/bin/ng build --aot --source-map=false --vendor-chunk=true --output-hashing none",
"build": "gulp Angular-latest-changes && gulp styles-replace"
}
}
}
13 changes: 11 additions & 2 deletions sampleOrder.json
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,15 @@
"dialog": "Dialog"
}
},
"chat-ui": {
"ControlName": "Chat UI",
"Samples": {
"default": "Default Functionalities",
"template": "Template",
"api": "API",
"chat-integration": "Use Case"
}
},
"pager": {
"ControlName": "Pager",
"Samples": {
Expand Down Expand Up @@ -954,8 +963,8 @@
"template-driven": "Template Driven"
}
},
"mark-down-editor": {
"ControllerName": "Markdown Editor",
"markdown-editor": {
"ControlName": "Markdown Editor",
"Samples":{
"overview": "Overview",
"default-functionalities": "Default Functionalities",
Expand Down
2 changes: 1 addition & 1 deletion src/app/accordion/default-stackb.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/app/accordion/icon-stackb.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/app/accordion/keyboard-interaction-stackb.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/app/accordion/templates-stackb.json

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions src/app/ai-assistview/ai-assistview.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { NgModule, ModuleWithProviders, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { RouterModule } from '@angular/router';

import { BrowserModule } from '@angular/platform-browser';
import { AIAssistDefaultComponent } from './default.component';
import { AIAssistCustomViewsComponent } from './custom-views.component';
import { AIAssistDialogComponent } from './dialog.component';
import { AIAssistTemplateComponent } from './template.component';

export const aiassistviewAppRoutes: Object[] = [
{ path: ':theme/ai-assistview/default', component: AIAssistDefaultComponent, name: 'Default Functionalities', description: 'Showcases the default combinations of the AiAssistView component.', category: 'AI AssistView', order: '01', sourceFiles: [
{displayName: 'default.component.ts', path: './src/ai-assistview/default.component.ts'},
{displayName: 'default.html', path: './src/ai-assistview/default.html'},
{displayName: 'default.component.css', path: './src/ai-assistview/default.component.css'},
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
] },
{ path: ':theme/ai-assistview/custom-views', component: AIAssistCustomViewsComponent, name: 'Custom Views', description: 'Showcases the views combinations of the AiAssistView component.', category: 'AI AssistView', order: '01', sourceFiles: [
{displayName: 'custom-views.component.ts', path: './src/ai-assistview/custom-views.component.ts'},
{displayName: 'custom-views.html', path: './src/ai-assistview/custom-views.html'},
{displayName: 'custom-views.component.css', path: './src/ai-assistview/custom-views.component.css'},
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
] },
{ path: ':theme/ai-assistview/template', component: AIAssistTemplateComponent, name: 'Template', description: 'Showcases the template properties of the AiAssistView component.', category: 'AI AssistView', order: '01', sourceFiles: [
{displayName: 'template.component.ts', path: './src/ai-assistview/template.component.ts'},
{displayName: 'template.html', path: './src/ai-assistview/template.html'},
{displayName: 'template.component.css', path: './src/ai-assistview/template.component.css'},
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
] },
{ path: ':theme/ai-assistview/dialog', component: AIAssistDialogComponent, name: 'Dialog', description: 'Showcases the default combinations of the AiAssistView component views.', category: 'Integration', order: '02', sourceFiles: [
{displayName: 'dialog.component.ts', path: './src/ai-assistview/dialog.component.ts'},
{displayName: 'dialog.html', path: './src/ai-assistview/dialog.html'},
{displayName: 'dialog.component.css', path: './src/ai-assistview/dialog.component.css'},
{displayName: 'promptResponseData.ts', path: './src/ai-assistview/promptResponseData.ts'}
] }
];

export const AIAssistSampleModule: ModuleWithProviders<any> = RouterModule.forChild(aiassistviewAppRoutes);

18 changes: 0 additions & 18 deletions src/app/ai-assistview/aiassistview.module.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/app/ai-assistview/custom-views-stackb.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/app/ai-assistview/custom-views.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}

.views-aiassistview .view-container .responseItemContent {
padding: 10px 10px;
padding: 10px;
margin-top: 10px;
display: flex;
gap: 10px;
Expand Down
2 changes: 1 addition & 1 deletion src/app/ai-assistview/custom-views.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<e-views>
<e-view type="Assist" name="Prompt" [viewTemplate]="promptViewContent()"></e-view>
<e-view type="Custom" name="Response" [viewTemplate]="responseViewContent()" iconCss="e-icons e-comment-show"></e-view>
<e-view type="Custom" name="Custom" [viewTemplate]="viewTemplate" iconCss="e-icons e-comment-show"></e-view>
<e-view type="Custom" name="Custom" [viewTemplate]="viewTemplate"></e-view>
</e-views>
</div>
</div>
Expand Down
Loading

0 comments on commit ae1fe06

Please sign in to comment.