-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pipeline
committed
Dec 14, 2024
1 parent
e1632e6
commit ae1fe06
Showing
1,722 changed files
with
12,115 additions
and
4,985 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
|
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.