Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions browser/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,14 @@
<a class="nav-link" href="#" data-nav="/samples/inputs/tooltip/triggers">─<span>Triggers</span></a>
</div>

<div class="nav-group">INTERACTIONS</div>
<label id="nav-chat" class="nav-component">Chat</label>
<div id="nav-chat-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/interactions/chat/features">─<span>Features</span></a>
<a class="nav-link" href="#" data-nav="/samples/interactions/chat/overview">─<span>Overview</span></a>
<a class="nav-link" href="#" data-nav="/samples/interactions/chat/styling">─<span>Styling</span></a>
</div>

<div class="nav-group">LAYOUTS</div>
<label id="nav-accordion" class="nav-component">Accordion</label>
<div id="nav-accordion-list" class="nav-list" state="collapsed">
Expand Down
Binary file added browser/src/assets/delivery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions browser/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { RouterExcel } from "./samples/excel/router";
import { RouterGauges } from "./samples/gauges/router";
import { RouterGrids } from "./samples/grids/router";
import { RouterInputs } from "./samples/inputs/router";
import { RouterInteractions } from "./samples/interactions/router";
import { RouterLayouts } from "./samples/layouts/router";
import { RouterMaps } from "./samples/maps/router";
import { RouterMenus } from "./samples/menus/router";
Expand Down Expand Up @@ -113,6 +114,9 @@ export class Router {
else if (route.indexOf("/inputs/") >= 0) {
this.displaySample(await RouterInputs.get(route));
}
else if (route.indexOf("/interactions/") >= 0) {
this.displaySample(await RouterInteractions.get(route));
}
else if (route.indexOf("/layouts/") >= 0) {
this.displaySample(await RouterLayouts.get(route));
}
Expand Down
2 changes: 1 addition & 1 deletion browser/tasks/gulp-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ function updateIG(cb) {
{ version: "6.0.2-beta.0", name: "igniteui-webcomponents-dashboards" },
// these IG packages are sometimes updated:
{ version: "6.0.3", name: "igniteui-webcomponents-grids" },
{ version: "6.2.1" , name: "igniteui-webcomponents" },
{ version: "6.3.0-RC.0" , name: "igniteui-webcomponents" },
{ version: "1.16.0", name: "igniteui-dockmanager" },
// other packages:
{ version: "^5.96.1", name: "webpack" },
Expand Down
Loading
Loading