├── .vs └── Smart.Blazor.Demos │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── config │ ├── applicationhost.config │ └── debuggerConfiguration-28b94209-ca6c-4f1f-bc98-2e978388a66c.json │ ├── project-colors.json │ ├── v16 │ └── .suo │ └── v17 │ ├── .futdcache.v1 │ ├── .suo │ └── fileList.bin ├── AdminTemplateDemos ├── .vs │ └── AdminTemplateDemos │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── project-colors.json │ │ ├── v16 │ │ └── .suo │ │ └── v17 │ │ ├── .futdcache.v1 │ │ └── .suo ├── AdminTemplateDemos.csproj ├── AdminTemplateDemos.sln ├── App.razor ├── Data │ ├── DataService.cs │ ├── Person.cs │ ├── WeatherForecast.cs │ └── WeatherForecastService.cs ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ ├── Index.razor │ └── PageTemplates │ │ ├── Documentation │ │ └── ChangelogPage.razor │ │ ├── FormPlugins │ │ └── AdvancedInputsPage.razor │ │ ├── Forms │ │ └── BasicInputsPage.razor │ │ ├── Pages │ │ ├── 404Page.razor │ │ ├── 500Page.razor │ │ ├── BlankPage.razor │ │ ├── InvoicePage.razor │ │ ├── KnowledgeBasePage.razor │ │ ├── PricingPage.razor │ │ ├── ResetPasswordPage.razor │ │ ├── SignInPage.razor │ │ └── SignUpPage.razor │ │ ├── SampleApps │ │ ├── Analytics │ │ │ └── AnalyticsPage.razor │ │ ├── ChatPage.razor │ │ ├── Crypto │ │ │ └── CryptoPage.razor │ │ ├── Dashboards │ │ │ ├── Dashboard1Page.razor │ │ │ ├── Dashboard2Page.razor │ │ │ └── Dashboard3Page.razor │ │ ├── ECommerce │ │ │ ├── ClientsPage.razor │ │ │ ├── ECommerceDetailsPage.razor │ │ │ ├── ECommerceListPage.razor │ │ │ └── ECommercePage.razor │ │ ├── InboxPage.razor │ │ ├── Kanban │ │ │ ├── Tasks2Page.razor │ │ │ └── TasksPage.razor │ │ ├── Profile │ │ │ ├── Profile1Page.razor │ │ │ ├── Profile2Page.razor │ │ │ ├── SocialPage.razor │ │ │ └── UsersListPage.razor │ │ └── Projects │ │ │ ├── DetailPage.razor │ │ │ ├── ProjectsList1Page.razor │ │ │ └── ProjectsList2Page.razor │ │ ├── Tables │ │ ├── ColumnSearch.razor │ │ ├── MultiSelection.razor │ │ ├── ResponsiveTable.razor │ │ ├── TableWithButtons.razor │ │ └── Tables.razor │ │ └── UIElements │ │ ├── ButtonsPage.razor │ │ ├── CardsPage.razor │ │ ├── CarouselPage.razor │ │ ├── ChartsPage.razor │ │ ├── EmbedVideo.razor │ │ ├── General.razor │ │ ├── GridLayout.razor │ │ ├── Modals.razor │ │ └── Typography.razor ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ ├── FolderProfile.pubxml.user │ │ ├── FolderProfile1.pubxml │ │ └── FolderProfile1.pubxml.user │ └── launchSettings.json ├── Shared │ ├── CodeView.razor │ ├── Example.razor │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ ├── SurveyPrompt.razor │ └── ToolBar.razor ├── _Imports.razor ├── global.json └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── icon-192.png │ ├── images │ ├── Album.png │ ├── album-web-page-template.png │ ├── albums_alternative.png │ ├── albums_pop.png │ ├── albums_rnb.png │ ├── albums_rock.png │ ├── angular.svg │ ├── animal-2028258_960_720.png │ ├── api.svg │ ├── area1.png │ ├── area2.png │ ├── arrow-down.svg │ ├── arrow-right.svg │ ├── arrow-up.svg │ ├── avatar.png │ ├── banner.png │ ├── battery-1049664_960_720.jpg │ ├── blog-web-page-template.png │ ├── bootstrap.svg │ ├── brand.jpg │ ├── branding.jpg │ ├── brands │ │ ├── circle-angular.svg │ │ ├── circle-google.png │ │ ├── circle-htmlelements.png │ │ └── circle-jqwidgets.png │ ├── business-cards.jpg │ ├── card-demo-chart-1.png │ ├── card-demo-chart-2.png │ ├── card-demo-chart-3.png │ ├── card-demo-chart-4.png │ ├── card-demo-chart-5.png │ ├── cards.jpg │ ├── carousel-background-1.jpg │ ├── carousel-background-2.jpg │ ├── carousel-background-3.jpg │ ├── carousel-large-1.jpg │ ├── carousel-large-2.jpg │ ├── carousel-large-3.jpg │ ├── carousel-large-4.jpg │ ├── carousel-large-5.jpg │ ├── carousel-large-6.jpg │ ├── carousel-large-7.jpg │ ├── carousel-medium-1.jpg │ ├── carousel-medium-2.jpg │ ├── carousel-medium-3.jpg │ ├── carousel-medium-4.jpg │ ├── carousel-medium-5.jpg │ ├── carousel-medium-6.jpg │ ├── carousel-medium-7.jpg │ ├── carousel-small-1.jpg │ ├── carousel-small-2.jpg │ ├── carousel-small-3.jpg │ ├── carousel-small-4.jpg │ ├── carousel-small-5.jpg │ ├── carousel-small-6.jpg │ ├── carousel-small-7.jpg │ ├── carousel-small-8.jpg │ ├── carousel-small-9.jpg │ ├── carousel-square-1.jpg │ ├── carousel-square-2.jpg │ ├── carousel-square-3.jpeg │ ├── carousel-square-3.jpg │ ├── carousel-square-4.jpg │ ├── carousel-square-5.jpg │ ├── carousel-square-6.jpg │ ├── carousel-square-7.jpg │ ├── carousel-xs-1.jpg │ ├── carousel-xs-2.jpg │ ├── carousel-xs-3.jpg │ ├── carousel-xs-4.jpg │ ├── carousel-xs-5.jpg │ ├── carousel-xs-6.jpg │ ├── carousel-xs-7.jpg │ ├── carousel │ │ ├── adaptive-height │ │ │ ├── slide-1.jpg │ │ │ ├── slide-2.jpg │ │ │ └── slide-3.jpg │ │ └── full-screen │ │ │ ├── slide-1.jpg │ │ │ ├── slide-2.jpg │ │ │ └── slide-3.jpg │ ├── chart-custom-element-background.png │ ├── chart.png │ ├── check-mark-circle.svg │ ├── check-mark-empty.svg │ ├── check-mark-heart-empty.svg │ ├── check-mark-heart-indetermined.svg │ ├── check-mark-heart.svg │ ├── check-mark-indetermined.svg │ ├── check-mark.svg │ ├── checkout-web-page-template.png │ ├── components-accordion.png │ ├── components-alert.png │ ├── components-buttons-mobile.png │ ├── components-buttons.png │ ├── components-gauge.png │ ├── components-listcontrols-expand1.png │ ├── components-listcontrols-leave1.png │ ├── components-lists.png │ ├── components-menus-usage1.png │ ├── components-menus-usage2.png │ ├── components-menus-usage3.png │ ├── components-menus-usage3do.png │ ├── components-menus-usage4a.png │ ├── components-menus.png │ ├── components-pickers.png │ ├── components-progress-and-activity.png │ ├── components-sliders.png │ ├── components-snackbars.png │ ├── components-tabs-usage-desktop1.png │ ├── components-tabs-usage-desktop2.png │ ├── components-tabs-usage-desktop3.png │ ├── components-tabs-usage-desktop4.png │ ├── components-tabs-usage-desktop5.png │ ├── components-tabs-usage-desktop6.png │ ├── components-tabs-usage-example3.png │ ├── components-tabs-usage-mobile1.png │ ├── components-tabs-usage-mobile2.png │ ├── components-tabs-usage-mobile3.png │ ├── components-tabs-usage-mobile6.png │ ├── components-tabs.png │ ├── components-text-fields.png │ ├── components-toasts-mobile1.png │ ├── components-toasts-tabletdesktop2.png │ ├── components-tooltips-touch1.png │ ├── components-tooltips-touch2.png │ ├── components-tooltips.png │ ├── components-windows-appearance.png │ ├── components-windows-confirmation.png │ ├── components-windows-header.png │ ├── components-windows.png │ ├── computer-1185626_960_720.jpg │ ├── create-area-dark.png │ ├── create-area.png │ ├── create-bar-dark.png │ ├── create-bar.png │ ├── create-column-dark.png │ ├── create-column.png │ ├── create-line-dark.png │ ├── create-line.png │ ├── create-pie-dark.png │ ├── create-pie.png │ ├── create-scatter-dark.png │ ├── create-scatter.png │ ├── csssprites.png │ ├── csssprites_white.png │ ├── dashboard.png │ ├── demand.svg │ ├── demo-background.jpg │ ├── demo-background_big.jpg │ ├── desk-3139127_1920.jpg │ ├── digital-marketing-1433427_960_720.jpg │ ├── digital-marketing-1725340_960_720.jpg │ ├── docking.png │ ├── dog-2474784_960_720.jpg │ ├── earth.png │ ├── email.svg │ ├── entrepreneur-593358_960_720.jpg │ ├── flat-button-demo.png │ ├── flat-button-demo2.png │ ├── flat-demo-start.png │ ├── floating-demo-start.png │ ├── fuel.png │ ├── gantt.png │ ├── gauge.png │ ├── gear-1077550_960_720.png │ ├── girl-2366438_960_720.jpg │ ├── girl-2771001_960_720.jpg │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── grid-business.png │ ├── grid-dashboard.png │ ├── handshake-3498407_960_720.png │ ├── help-icon.png │ ├── house-2723396_960_720.jpg │ ├── ico-chat.png │ ├── icons-sprite.svg │ ├── icons-stack.svg │ ├── image-1247354_960_720.jpg │ ├── instagram-1581266_960_720.jpg │ ├── line-1174799_960_720.jpg │ ├── listBox-usage.png │ ├── listBox-usage2.png │ ├── listBox-usage3.png │ ├── loader.gif │ ├── loader2.gif │ ├── logo-2078018_960_720.png │ ├── logo-google-1991840_960_720.png │ ├── lotus-with-hands-1889661_960_720.png │ ├── man-4252192_960_720.jpg │ ├── marketing.svg │ ├── mars.png │ ├── moon.png │ ├── multi1.png │ ├── multi2.png │ ├── museum.jpg │ ├── notifications-icon.png │ ├── notifications-icon2.png │ ├── office-1209640_960_720.jpg │ ├── optional-example.png │ ├── paint-1369406.jpg │ ├── paint-work-02-1531044.jpg │ ├── people │ │ ├── andrew.jpg │ │ ├── andrew.png │ │ ├── anne.jpg │ │ ├── anne.png │ │ ├── janet.jpg │ │ ├── janet.png │ │ ├── john.jpg │ │ ├── john.png │ │ ├── laura.jpg │ │ ├── laura.png │ │ ├── maria.jpg │ │ ├── maria.png │ │ ├── mark.jpg │ │ ├── mark.png │ │ ├── nancy.jpg │ │ ├── nancy.png │ │ ├── robert.jpg │ │ ├── robert.png │ │ ├── steven.jpg │ │ └── steven.png │ ├── personalization.svg │ ├── phonebook │ │ ├── Maria.jpeg │ │ ├── andrew.png │ │ ├── anne.png │ │ ├── avril.jpeg │ │ ├── avril.png │ │ ├── janet.png │ │ ├── johanna.jpeg │ │ ├── johanna.png │ │ ├── johnny.jpeg │ │ ├── johnny.png │ │ ├── laura.png │ │ ├── margaret.png │ │ ├── maria.png │ │ ├── mark.jpeg │ │ ├── mark.png │ │ ├── maya.jpeg │ │ ├── maya.png │ │ ├── michael.png │ │ ├── monica.jpeg │ │ ├── monica.png │ │ ├── nancy.png │ │ ├── robert.png │ │ ├── steven.jpeg │ │ ├── steven.png │ │ ├── toni.jpeg │ │ └── toni.png │ ├── photo-1530424426433-967ce567454d.jpg │ ├── power-button-off.svg │ ├── power-button-on.svg │ ├── pricing-web-application.png │ ├── products │ │ ├── 1.jpg │ │ ├── 1.png │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── iphone-x.png │ │ ├── iphone.png │ │ ├── macbook-pro.png │ │ ├── product-1.png │ │ ├── product-2.png │ │ ├── product-3.png │ │ ├── product-4.png │ │ ├── product-5.png │ │ ├── product-6.png │ │ ├── product-7.png │ │ └── product-8.png │ ├── progres-bar-loading-files.jpeg │ ├── progress-bar-indeterminate.jpg │ ├── progress-bar-refresh.jpeg │ ├── quadrocopter-1658967_960_720.png │ ├── raised-button-demo.png │ ├── raised-button-demo2.png │ ├── react.svg │ ├── required-example.png │ ├── row-1-col-1.jpg │ ├── row-2-col-1.jpg │ ├── row-3-col-1.jpg │ ├── row-4-col-1.jpg │ ├── sales.svg │ ├── shape-header.svg │ ├── ship-2459940_960_720.jpg │ ├── sidebar-page-template-demo.jpg │ ├── sign-in-web-page-template.png │ ├── single1.png │ ├── single2.png │ ├── sketch.svg │ ├── slider-controls.png │ ├── smart-home-3148026_1920.jpg │ ├── social-color-1_logo-facebook.svg │ ├── social-color-1_logo-fb-simple.svg │ ├── social-color-1_logo-google-plus.svg │ ├── social-color-1_logo-twitter.svg │ ├── spreadsheet.png │ ├── squirrel-row-1-col-1.jpg │ ├── squirrel-row-1-col-2.jpg │ ├── squirrel-row-1-col-3.jpg │ ├── squirrel-row-1-col-4.jpg │ ├── squirrel-row-1-col-5.jpg │ ├── startup-594091_960_720.jpg │ ├── statistics-3679874_960_720.png │ ├── store.jpg │ ├── sun.png │ ├── switch-mark-heart-gray.svg │ ├── switch-mark-heart-red.svg │ ├── tablet-184888_960_720.jpg │ ├── theme-dark.png │ ├── theme-light.png │ ├── time-1606153_960_720.png │ ├── travel │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── tree-2733772_960_720.jpg │ ├── tux-158547_960_720.png │ ├── two-line-list-icon.png │ ├── two-line-list.png │ ├── valentine-day-min.jpg │ ├── volumebooster.png │ ├── vuejs.svg │ ├── wind.png │ ├── windows-3590598_960_720.jpg │ ├── woman-1594711_960_720.jpg │ ├── woman-2003647_960_720.jpg │ ├── woman-3096664_960_720.jpg │ └── youtube-1837872_960_720.png │ ├── index.html │ └── sample-data │ └── weather.json ├── README.md ├── Smart.Blazor.Demos.sln ├── Smart.Blazor.Demos ├── .vs │ └── Smart.Blazor.Demos │ │ ├── config │ │ ├── applicationhost.config │ │ └── debuggerConfiguration-13af40a5-a202-4c1a-870a-4e4873bc8901.json │ │ └── v16 │ │ └── .suo ├── App.razor ├── Data │ ├── DataService.cs │ ├── Person.cs │ ├── WeatherForecast.cs │ └── WeatherForecastService.cs ├── Pages │ ├── AccordionPage.razor │ ├── BadgePage.razor │ ├── BreadcrumbPage.razor │ ├── ButtonDemos │ │ ├── ButtonBasicPage.razor │ │ └── ButtonDynamicPage.razor │ ├── ButtonGroupPage.razor │ ├── CalendarDemos │ │ ├── CalendarClassicDisplayModePage.razor │ │ ├── CalendarCustomHeaderPage.razor │ │ ├── CalendarEventsPage.razor │ │ ├── CalendarFirstDayOfWeekPage.razor │ │ ├── CalendarFooterPage.razor │ │ ├── CalendarImportantDaysPage.razor │ │ ├── CalendarListDisplayViewModePage.razor │ │ ├── CalendarLocalePage.razor │ │ ├── CalendarMethodsPage.razor │ │ ├── CalendarMinMaxDatePage.razor │ │ ├── CalendarMultipleMonthsPage.razor │ │ ├── CalendarNavigationModePage.razor │ │ ├── CalendarPage.razor │ │ ├── CalendarRestrictedDatesPage.razor │ │ ├── CalendarRightToLeftPage.razor │ │ ├── CalendarViewsPage.razor │ │ ├── CalendarWeekNumbersPage.razor │ │ └── CalendarWeeksVisibilityPage.razor │ ├── CardPage.razor │ ├── CardViewDemos │ │ ├── CardViewCollapsibleCardsPage.razor │ │ ├── CardViewDeferredScrollPage.razor │ │ ├── CardViewDragDropPage.razor │ │ ├── CardViewEditablePage.razor │ │ ├── CardViewFilteringAndSortingPage.razor │ │ ├── CardViewLocalizationPage.razor │ │ ├── CardViewOverviewPage.razor │ │ ├── CardViewPage.razor │ │ ├── CardViewRightToLeftPage.razor │ │ ├── CardViewSettingsPage.razor │ │ └── CardViewSimplePage.razor │ ├── CarouselPage.razor │ ├── ChartDemos │ │ ├── Chart100StackedAreaSeriesPage.razor │ │ ├── Chart100StackedColumnSeriesPage.razor │ │ ├── Chart100StackedLineSeriesPage.razor │ │ ├── ChartAreaRangeLinePage.razor │ │ ├── ChartAreaSeriesMissingPointsPage_.razor │ │ ├── ChartAreaSeriesPage.razor │ │ ├── ChartBarSeriesPage.razor │ │ ├── ChartBubbleSeriesPage_.razor │ │ ├── ChartColorBandsPage.razor │ │ ├── ChartColumnRangePage.razor │ │ ├── ChartColumnSeriesPage.razor │ │ ├── ChartColumnSeriesSpacingPage.razor │ │ ├── ChartCrosshairsPage.razor │ │ ├── ChartCustomStylingPage.razor │ │ ├── ChartDonutSeriesPage.razor │ │ ├── ChartEventsPage_.razor │ │ ├── ChartExportAndPrintPage.razor │ │ ├── ChartExportPage.razor │ │ ├── ChartFinancialSeriesCandlestickPage.razor │ │ ├── ChartFinancialSeriesOhlcPage.razor │ │ ├── ChartFixedPlacementColumnsPage.razor │ │ ├── ChartFunnelSeriesPage.razor │ │ ├── ChartLineSeriesConditionalColorsPage.razor │ │ ├── ChartLineSeriesLabelsPage.razor │ │ ├── ChartLineSeriesMissingPointsPage_.razor │ │ ├── ChartLiveUpdatesPage_.razor │ │ ├── ChartLogarithmicAxisBase10Page.razor │ │ ├── ChartLogarithmicAxisBaselinePage.razor │ │ ├── ChartLogarithmicAxisPage.razor │ │ ├── ChartLogarithmicXAxisPage.razor │ │ ├── ChartMethodsPage_.razor │ │ ├── ChartNegativeBarSeriesPage.razor │ │ ├── ChartOverviewPage.razor │ │ ├── ChartPartialPolarPage.razor │ │ ├── ChartPieSeriesLegendPage.razor │ │ ├── ChartPieSeriesPage.razor │ │ ├── ChartPolarSeriesBandsPage.razor │ │ ├── ChartPolarSeriesPage.razor │ │ ├── ChartPyramidSeriesPage.razor │ │ ├── ChartRangeSelectorDatePage.razor │ │ ├── ChartRangeSelectorNumericPage.razor │ │ ├── ChartRightToLeftPage.razor │ │ ├── ChartScatterLargeDataPage.razor │ │ ├── ChartScatterPage_.razor │ │ ├── ChartSparklinesPage.razor │ │ ├── ChartSpiderSeriesPage.razor │ │ ├── ChartSplineSeriesBandsPage.razor │ │ ├── ChartSplineSeriesPage.razor │ │ ├── ChartStackedColumnSeriesPage.razor │ │ ├── ChartStackedFunnelSeriesPage.razor │ │ ├── ChartStackedGroupedColumnSeriesPage.razor │ │ ├── ChartStackedLineSeriesPage.razor │ │ ├── ChartStackedPyramidSeriesPage.razor │ │ ├── ChartStepLineSeriesPage.razor │ │ ├── ChartWaterfallMultipleSeriesPage.razor │ │ └── ChartWaterfallSeriesPage.razor │ ├── ChartPage.razor │ ├── CheckInputPage.razor │ ├── CheckboxPage.razor │ ├── ColorInputPage.razor │ ├── ColorPanelPage.razor │ ├── ColorPickerPage.razor │ ├── ComboBoxPage.razor │ ├── Counter.razor │ ├── DateInputPage.razor │ ├── DateRangeInputPage.razor │ ├── DateTimePickerPage.razor │ ├── DockingLayoutDemos │ │ ├── DockingLayoutBasicPage.razor │ │ ├── DockingLayoutDynamicPage.razor │ │ ├── DockingLayoutDynamicPageTestComponent1.razor │ │ ├── DockingLayoutDynamicPageTestComponent2.razor │ │ └── DockingLayoutPageInjectComponent.razor │ ├── DropDownButtonPage.razor │ ├── DropDownListDemos │ │ ├── DropDownListAdvancedSelectionDisplayModePage.razor │ │ ├── DropDownListAutoCompletePage.razor │ │ ├── DropDownListAutoHeightPage.razor │ │ ├── DropDownListAutomaticPositioningPage.razor │ │ ├── DropDownListBasicPage.razor │ │ ├── DropDownListButtonPositionPage.razor │ │ ├── DropDownListCheckboxesPage.razor │ │ ├── DropDownListDefaultSelectionModePage.razor │ │ ├── DropDownListDropDownOpenModesPage.razor │ │ ├── DropDownListFilterablePage.razor │ │ ├── DropDownListItemTemplatePage.razor │ │ ├── DropDownListMethodsPage.razor │ │ ├── DropDownListMultipleSelectionModePage.razor │ │ ├── DropDownListMultipleSelectionPage.razor │ │ ├── DropDownListOpenModesPage.razor │ │ ├── DropDownListOverviewPage.razor │ │ ├── DropDownListPlaceholderCustomizationPage.razor │ │ ├── DropDownListPopupResizingPage.razor │ │ ├── DropDownListPositionPage.razor │ │ ├── DropDownListResizingPage.razor │ │ ├── DropDownListRightToLeftPage.razor │ │ └── DropDownListTokenTemplatePage.razor │ ├── EditorDemos │ │ ├── EditorAutoSavePage.razor │ │ ├── EditorCharCounterPage.razor │ │ ├── EditorEditModeMarkdownCustomFormatsPage.razor │ │ ├── EditorEditModeMarkdownPage.razor │ │ ├── EditorEditorInsideWindowPage.razor │ │ ├── EditorEventsPage.razor │ │ ├── EditorExportHtmlPage.razor │ │ ├── EditorExportMarkdownPage.razor │ │ ├── EditorFindAndReplacePage.razor │ │ ├── EditorKeyboardShortcutsPage.razor │ │ ├── EditorLocalizationPage.razor │ │ ├── EditorMethodsPage-.razor │ │ ├── EditorOverviewPage.razor │ │ ├── EditorPasteFormatPage.razor │ │ ├── EditorRightToLeftPage.razor │ │ ├── EditorSanitizedPage.razor │ │ ├── EditorToolbarCustomItemsPage.razor │ │ ├── EditorToolbarSingleLineRibbonPage.razor │ │ ├── EditorToolbarStickyPage.razor │ │ └── EditorToolbarViewModePage.razor │ ├── EditorPage.razor │ ├── FetchData.razor │ ├── FileUploadPage.razor │ ├── FormPage.razor │ ├── GanttChartDemos │ │ ├── GanttChartAutoHeightPage.razor │ │ ├── GanttChartAutoSchedulePage.razor │ │ ├── GanttChartAutoScrollPage.razor │ │ ├── GanttChartCollapseExpandPage.razor │ │ ├── GanttChartCustomTaskEditorPage.razor │ │ ├── GanttChartDataSourcePage.razor │ │ ├── GanttChartDisableDragResizePage.razor │ │ ├── GanttChartDurationPage.razor │ │ ├── GanttChartEventsPage.razor │ │ ├── GanttChartExportPage.razor │ │ ├── GanttChartGetTasks.razor │ │ ├── GanttChartInfiniteTimelinePage.razor │ │ ├── GanttChartInvertedPage.razor │ │ ├── GanttChartLoadSaveStatePage.razor │ │ ├── GanttChartLocalizePage.razor │ │ ├── GanttChartMethodsPage.razor │ │ ├── GanttChartMinMaxTaskDatesPage.razor │ │ ├── GanttChartNestedProjectPage.razor │ │ ├── GanttChartNonworkingDaysPage.razor │ │ ├── GanttChartNonworkingHoursPage.razor │ │ ├── GanttChartOverviewPage.razor │ │ ├── GanttChartResourceManagementPage.razor │ │ ├── GanttChartResourceTimelineModeDiagramPage.razor │ │ ├── GanttChartResourceTimelineModeHistogramPage.razor │ │ ├── GanttChartResourceTimelineViewPage.razor │ │ ├── GanttChartResourceViewPage.razor │ │ ├── GanttChartResourceViewPanelPage.razor │ │ ├── GanttChartResourceWorkAndMaterialPage.razor │ │ ├── GanttChartRightToLeftPage.razor │ │ ├── GanttChartSimpleProjectDragPage.razor │ │ ├── GanttChartSnapToNearestPage.razor │ │ ├── GanttChartSortingPage.razor │ │ ├── GanttChartSynchronizedProjectDragPage.razor │ │ ├── GanttChartSynchronizedProjectPage.razor │ │ ├── GanttChartTaskColumnsPage.razor │ │ ├── GanttChartTaskConnectionsPage.razor │ │ ├── GanttChartTaskFilteringPage.razor │ │ ├── GanttChartTaskProgressLabelPage.razor │ │ └── GanttChartViewPage.razor │ ├── GanttChartPage.razor │ ├── GaugePage.razor │ ├── GridDemos │ │ ├── GridAddNewColumnPage.razor │ │ ├── GridAllowCellsWrapPage.razor │ │ ├── GridAllowColumnHeaderEditPage.razor │ │ ├── GridAllowRowHeaderEditPage.razor │ │ ├── GridAlternatingRowsPage.razor │ │ ├── GridAppearanceRowHeaderIconsPage.razor │ │ ├── GridAutoSizePage.razor │ │ ├── GridBasicPage.razor │ │ ├── GridCascadingEditorsPage.razor │ │ ├── GridCellsWrapDynamicPage.razor │ │ ├── GridChartDynamicDataPage.razor │ │ ├── GridCheckboxPage.razor │ │ ├── GridColumnChooserPage.razor │ │ ├── GridColumnFormattingPage.razor │ │ ├── GridColumnMenuPage.razor │ │ ├── GridColumnPanelPage.razor │ │ ├── GridColumnReorderPage.razor │ │ ├── GridColumnResizePage.razor │ │ ├── GridColumnTypeEmailPage.razor │ │ ├── GridColumnTypeUrlPage.razor │ │ ├── GridColumnWidthFromMediaQueryPage.razor │ │ ├── GridColumnsCopyPage.razor │ │ ├── GridConditionalFormattingPanelPage.razor │ │ ├── GridContextMenuPage.razor │ │ ├── GridCreateChartFromGridPage.razor │ │ ├── GridDataExportGroupingPage.razor │ │ ├── GridDataExportPage.razor │ │ ├── GridDataExportTreeGridPage.razor │ │ ├── GridDataGridBindToCsvPage.razor │ │ ├── GridDataGridBindToJsonPage.razor │ │ ├── GridDataGridBindToTsvPage.razor │ │ ├── GridDataGridBindToXmlPage.razor │ │ ├── GridDataGridUpdateDataPage.razor │ │ ├── GridDataImportPage.razor │ │ ├── GridDeferredScrollPage.razor │ │ ├── GridDynamicColumnsPage.razor │ │ ├── GridDynamicRowsPage.razor │ │ ├── GridEditingAddNewRowAutoPage.razor │ │ ├── GridEditingAddRowPage.razor │ │ ├── GridEditingBatchPage.razor │ │ ├── GridEditingCellAutoCompletePage.razor │ │ ├── GridEditingCellDatetimePage.razor │ │ ├── GridEditingCellDropdownsPage.razor │ │ ├── GridEditingCellPage.razor │ │ ├── GridEditingCellValidationPage.razor │ │ ├── GridEditingCommandColumnCustomPage.razor │ │ ├── GridEditingCommandColumnInlinePage.razor │ │ ├── GridEditingCommandColumnLabelsPage.razor │ │ ├── GridEditingCommandColumnNearPage.razor │ │ ├── GridEditingCommandColumnPage.razor │ │ ├── GridEditingDateEditorPage.razor │ │ ├── GridEditingDialogPage.razor │ │ ├── GridEditingRowPage.razor │ │ ├── GridEditingRowValidationPage.razor │ │ ├── GridEditingTextareaEditorPage.razor │ │ ├── GridExportToImagePage.razor │ │ ├── GridFilteringCustomIconsPage.razor │ │ ├── GridFilteringExcelPage.razor │ │ ├── GridFilteringHierarchicalDataPage.razor │ │ ├── GridFilteringPage.razor │ │ ├── GridFilteringPanelPage.razor │ │ ├── GridFilteringRowPage.razor │ │ ├── GridFreezeColumnFirstAndLastPage.razor │ │ ├── GridFreezeColumnLastPage.razor │ │ ├── GridFreezeColumnPage.razor │ │ ├── GridFreezeFirstLastRowPage.razor │ │ ├── GridGroupingBasicPage.razor │ │ ├── GridGroupingCompactPage.razor │ │ ├── GridGroupingCustomStylePage.razor │ │ ├── GridGroupingHeaderPanelPage.razor │ │ ├── GridGroupingPage.razor │ │ ├── GridGroupingPagingPage.razor │ │ ├── GridGroupingPanelPage.razor │ │ ├── GridGroupingStylingPage.razor │ │ ├── GridGroupingSummaryPage.razor │ │ ├── GridLinesPage.razor │ │ ├── GridLiveUpdatePage.razor │ │ ├── GridLiveUpdatePerformancePage.razor │ │ ├── GridLocalizationPage.razor │ │ ├── GridMultisortingPage.razor │ │ ├── GridOverviewPage.razor │ │ ├── GridPage.razor │ │ ├── GridPagingAdvancedPage.razor │ │ ├── GridPagingPage.razor │ │ ├── GridPagingSpinnerPage.razor │ │ ├── GridPerformancePage.razor │ │ ├── GridPrintPage.razor │ │ ├── GridRightToLeftPage.razor │ │ ├── GridRowDetailsPage.razor │ │ ├── GridRowHeadersPage.razor │ │ ├── GridRowResizePage.razor │ │ ├── GridSearchPanelPage.razor │ │ ├── GridSelectionModeAutoShowCheckboxPage.razor │ │ ├── GridSelectionModeCellPage.razor │ │ ├── GridSelectionModeCheckboxesConfigPage.razor │ │ ├── GridSelectionModeEventsPage.razor │ │ ├── GridSelectionModePage.razor │ │ ├── GridSelectionModeRowPage.razor │ │ ├── GridSortAnimationPage.razor │ │ ├── GridSortIconsPage.razor │ │ ├── GridSortingPage.razor │ │ ├── GridStickyColumnsPage.razor │ │ ├── GridSummaryPage.razor │ │ ├── GridTreeGridAnimationPage.razor │ │ ├── GridTreeGridCheckboxPage.razor │ │ ├── GridTreeGridEditingPage.razor │ │ ├── GridTreeGridIconsPage.razor │ │ ├── GridTreeGridLargeDataPage.razor │ │ ├── GridTreeGridNestedDataPage.razor │ │ └── GridTreeGridPage.razor │ ├── GridPage.razor │ ├── Index.razor │ ├── InputPage.razor │ ├── KanbanDemos │ │ ├── KanbanAddingTasksColumnsPage.razor │ │ ├── KanbanBasicPage.razor │ │ ├── KanbanCommentsPage.razor │ │ ├── KanbanEditablePage.razor │ │ ├── KanbanExportPage.razor │ │ ├── KanbanFilteringAndSortingPage.razor │ │ ├── KanbanHierarchicalColumnsLeavesPage.razor │ │ ├── KanbanHierarchicalColumnsPage.razor │ │ ├── KanbanHierarchicalColumnsTabsPage.razor │ │ ├── KanbanHorizontalOrientationPage.razor │ │ ├── KanbanMethodsPage.razor │ │ ├── KanbanMultipleKanbansPage.razor │ │ ├── KanbanPage.razor │ │ ├── KanbanRightToLeftPage.razor │ │ ├── KanbanStateMaintenancePage.razor │ │ ├── KanbanSwimlanesPage.razor │ │ ├── KanbanSwimlanesPartialPage.razor │ │ ├── KanbanTaskProgressPage.razor │ │ ├── KanbanUserPrivilegesPage.razor │ │ └── KanbanUsersPage.razor │ ├── ListBoxDemos │ │ ├── ListBoxBasicPage.razor │ │ ├── ListBoxCheckboxesPage.razor │ │ ├── ListBoxEditableItemsPage.razor │ │ ├── ListBoxFilterPage.razor │ │ ├── ListBoxGroupingPage.razor │ │ ├── ListBoxImagesPage.razor │ │ ├── ListBoxItemTemplatePage.razor │ │ ├── ListBoxLazyLoadingPage.razor │ │ ├── ListBoxMethodsPage.razor │ │ ├── ListBoxPage.razor │ │ ├── ListBoxRadioButtonsPage.razor │ │ ├── ListBoxReorderPage.razor │ │ ├── ListBoxRightToLeftPage.razor │ │ ├── ListBoxSelectAllPage.razor │ │ ├── ListBoxSelectDetailPage.razor │ │ ├── ListBoxSelectionMultiExtendedPage.razor │ │ └── ListBoxVirtualizationPage.razor │ ├── ListMenuPage.razor │ ├── MaskedTextBoxPage.razor │ ├── MenuDemos │ │ ├── MenuAddRemoveItemsPage.razor │ │ ├── MenuBasicPage.razor │ │ ├── MenuCheckboxesPage.razor │ │ ├── MenuDataSourcePage.razor │ │ ├── MenuDropDownPositionPage.razor │ │ ├── MenuHiddenScrollButtonsPage.razor │ │ ├── MenuItemsLayoutPage.razor │ │ ├── MenuItemsWithIconsPage.razor │ │ ├── MenuLoadFromUlPage.razor │ │ ├── MenuMixedCheckModePage.razor │ │ ├── MenuOverviewPage.razor │ │ ├── MenuPage.razor │ │ ├── MenuRightToLeftPage.razor │ │ ├── MenuSelectionModePage.razor │ │ ├── MenuTreePage.razor │ │ └── MenuVerticalPage.razor │ ├── MultiComboInputPage.razor │ ├── MultiInputPage.razor │ ├── MultiSplitButtonPage.razor │ ├── MultilineTextBoxPage.razor │ ├── NumberInputPage.razor │ ├── NumericTextBoxPage.razor │ ├── PageTemplates │ │ ├── Documentation │ │ │ └── ChangelogPage.razor │ │ ├── FormPlugins │ │ │ └── AdvancedInputsPage.razor │ │ ├── Forms │ │ │ └── BasicInputsPage.razor │ │ ├── Pages │ │ │ ├── 404Page.razor │ │ │ ├── 500Page.razor │ │ │ └── BlankPage.razor │ │ ├── SampleApps │ │ │ ├── Analytics │ │ │ │ └── AnalyticsPage.razor │ │ │ ├── ChatPage.razor │ │ │ └── ECommerce │ │ │ │ ├── ClientsPage.razor │ │ │ │ └── ECommercePage.razor │ │ ├── Tables │ │ │ ├── ColumnSearch.razor │ │ │ ├── MultiSelection.razor │ │ │ ├── ResponsiveTable.razor │ │ │ ├── TableWithButtons.razor │ │ │ └── Tables.razor │ │ └── UIElements │ │ │ ├── ButtonsPage.razor │ │ │ ├── CardsPage.razor │ │ │ ├── CarouselPage.razor │ │ │ └── ChartsPage.razor │ ├── PagerPage.razor │ ├── PasswordTextBoxPage.razor │ ├── PivotTableDemos │ │ ├── PivotTableBasicPage.razor │ │ ├── PivotTableClassicGroupLayoutPage.razor │ │ ├── PivotTableColumnReorderPage.razor │ │ ├── PivotTableColumnSettingsPage.razor │ │ ├── PivotTableColumnTotalsPage.razor │ │ ├── PivotTableDemoPage.razor │ │ ├── PivotTableDesignerPage.razor │ │ ├── PivotTableDesignerWithToolbarPage.razor │ │ ├── PivotTableDrillDownPage.razor │ │ ├── PivotTableEmptyCellSettingsPage.razor │ │ ├── PivotTableExportPage.razor │ │ ├── PivotTableMultipleGroupsPage.razor │ │ ├── PivotTableMultiplePivotsPage.razor │ │ ├── PivotTableNoGroupingPage.razor │ │ ├── PivotTableRightToLeftPage.razor │ │ ├── PivotTableRowHeaderPage.razor │ │ ├── PivotTableRowTotalsPage.razor │ │ ├── PivotTableSelectionDetailsPage.razor │ │ ├── PivotTableSelectionPage.razor │ │ ├── PivotTableSimpleArrayPage.razor │ │ ├── PivotTableSortingByRowPage.razor │ │ ├── PivotTableSortingPage.razor │ │ └── PivotTableToolbarPage.razor │ ├── PowerButtonPage.razor │ ├── ProgressBarPage.razor │ ├── QueryBuilderDemos │ │ ├── QueryBuilderOverviewPage.razor │ │ ├── QueryBuilderRightToLeftPage.razor │ │ └── QueryBuilderValuePage.razor │ ├── RadioButtonPage.razor │ ├── RatingPage.razor │ ├── RepeatButtonPage.razor │ ├── SchedulerDemos │ │ ├── SchedulerCurrentTimeIndicatorPage.razor │ │ ├── SchedulerCustomHeaderPositioningPage.razor │ │ ├── SchedulerCustomStylesPage.razor │ │ ├── SchedulerCustomViewMenuShortcutsPage.razor │ │ ├── SchedulerDragAndDropPage.razor │ │ ├── SchedulerEventNotificationsPage.razor │ │ ├── SchedulerEventRenderModePage.razor │ │ ├── SchedulerEventStatusesPage.razor │ │ ├── SchedulerEventsFiringPage.razor │ │ ├── SchedulerExportPage.razor │ │ ├── SchedulerHeaderNavigationStylePage.razor │ │ ├── SchedulerHideViewDaysPage.razor │ │ ├── SchedulerLoadSaveStatePage.razor │ │ ├── SchedulerLocalizationPage.razor │ │ ├── SchedulerOverviewPage.razor │ │ ├── SchedulerRepeatingEventsPage.razor │ │ ├── SchedulerResourcesPage.razor │ │ ├── SchedulerRestrictedDatesPage.razor │ │ ├── SchedulerRestrictedHoursPage.razor │ │ └── SchedulerTimelineViewsPage.razor │ ├── SchedulerPage.razor │ ├── ScrollbarPage.razor │ ├── SliderPage.razor │ ├── SortablePage.razor │ ├── SplitterPage.razor │ ├── SwitchButtonPage.razor │ ├── TableBasic.razor │ ├── TableDemos │ │ ├── TableBasicPage.razor │ │ ├── TableBindToListPage.razor │ │ ├── TableCellEditingPage.razor │ │ ├── TableChangeColumnsPage.razor │ │ ├── TableColumnHierarchyPage.razor │ │ ├── TableColumnReorderPage.razor │ │ ├── TableColumnResizePage.razor │ │ ├── TableConditionalFormattingPage.razor │ │ ├── TableCustomSelectionPage.razor │ │ ├── TableExpandableRowsPage.razor │ │ ├── TableExportPage.razor │ │ ├── TableFilterRowPage.razor │ │ ├── TableFilteringPage.razor │ │ ├── TableFooterRowPage.razor │ │ ├── TableFormulasPage.razor │ │ ├── TableGroupingPage.razor │ │ ├── TableHtmlVirtualizationPage.razor │ │ ├── TableLocalizationPage.razor │ │ ├── TableMultipleHeadersFootersPage.razor │ │ ├── TablePage.razor │ │ ├── TablePagingPage.razor │ │ ├── TableResponsiveColumnsPage.razor │ │ ├── TableRightToLeftPage.razor │ │ ├── TableRowEditingPage.razor │ │ ├── TableSelectionExtendedPage.razor │ │ ├── TableSelectionPage.razor │ │ ├── TableSizeModeAutoPage.razor │ │ ├── TableSortingPagingFilteringPage.razor │ │ ├── TableStateMaintenancePage.razor │ │ ├── TableStickyColumnsPage.razor │ │ ├── TableStickyFooterPage.razor │ │ ├── TableStickyHeaderPage.razor │ │ ├── TableTableBorderedDarkPage.razor │ │ ├── TableTableBorderedPage.razor │ │ ├── TableTableDarkHeadPage.razor │ │ ├── TableTableDarkPage.razor │ │ ├── TableTableElevatedPage.razor │ │ ├── TableTableHoverPage.razor │ │ ├── TableTableManySortPage.razor │ │ ├── TableTablePrimaryHeadPage.razor │ │ ├── TableTableResponsivePage.razor │ │ ├── TableTableSortPage.razor │ │ ├── TableTableStripedPage.razor │ │ ├── TableTreeModeFilteringPage.razor │ │ ├── TableTreeModePage.razor │ │ ├── TableTreeModePagingPage.razor │ │ └── TableTreeModeSelectionPage.razor │ ├── TablePage.razor │ ├── TabsDemos │ │ ├── TabsAutoHeightPage.razor │ │ ├── TabsBadgesPage.razor │ │ ├── TabsBasicPage.razor │ │ ├── TabsCloseButtonsPage.razor │ │ ├── TabsDataSourcePage.razor │ │ ├── TabsGroupingPage.razor │ │ ├── TabsHiddenScrollButtonsPage.razor │ │ ├── TabsInsertRemoveUpdatePage.razor │ │ ├── TabsIntegrationPage.razor │ │ ├── TabsLabelSettingsPage.razor │ │ ├── TabsLayoutPage.razor │ │ ├── TabsOverviewPage.razor │ │ ├── TabsPage.razor │ │ ├── TabsPositionPage.razor │ │ ├── TabsReorderPage.razor │ │ ├── TabsRightToLeftPage.razor │ │ ├── TabsSelectionModePage.razor │ │ ├── TabsStylingPage.razor │ │ └── TabsTitleTemplatePage.razor │ ├── TabsPage.razor │ ├── TankPage.razor │ ├── TextAreaPage.razor │ ├── TextBoxDemos │ │ ├── TextBoxBasicPage.razor │ │ └── TextBoxEventsPage.razor │ ├── TimeInputPage.razor │ ├── TimePickerPage.razor │ ├── ToastPage.razor │ ├── ToggleButtonPage.razor │ ├── TooltipPage.razor │ ├── TreeDemos │ │ ├── TreeAddRemoveItemsPage.razor │ │ ├── TreeBasicPage.razor │ │ ├── TreeConnectingLinesPage.razor │ │ ├── TreeCustomToggleElementPage.razor │ │ ├── TreeCustomizationPage.razor │ │ ├── TreeDataSourcePage.razor │ │ ├── TreeEditableLabelsPage.razor │ │ ├── TreeFilteringPage.razor │ │ ├── TreeHierarchicalCheckboxesPage.razor │ │ ├── TreeOverviewPage.razor │ │ ├── TreeRightToLeftPage.razor │ │ ├── TreeScrollModesPage.razor │ │ ├── TreeSelectionDisplayModesPage.razor │ │ ├── TreeSelectionModesPage.razor │ │ ├── TreeSortingPage.razor │ │ ├── TreeStateMaintenancePage.razor │ │ └── TreeUpdate.razor │ ├── TreePage.razor │ ├── TwoWayBinding │ │ ├── CalendarBindingPage.razor │ │ ├── CheckBoxBindingPage.razor │ │ ├── CheckInputBindingPage.razor │ │ ├── ComboBoxBindingPage.razor │ │ ├── DateInputBindingPage.razor │ │ ├── DateTimePickerBindingPage.razor │ │ ├── DropDownListBindingPage.razor │ │ ├── EditorBindingPage.razor │ │ ├── GaugeBindingPage.razor │ │ ├── InputBindingPage.razor │ │ ├── ListBoxBindingPage.razor │ │ ├── MultiComboInputBindingPage.razor │ │ ├── MultiInputBindingPage.razor │ │ ├── NumberInputBindingPage.razor │ │ ├── PasswordTextBoxBindingPage.razor │ │ ├── SwitchButtonBindingPage.razor │ │ ├── TextAreaBindingPage.razor │ │ └── TextBoxBindingPage.razor │ └── WindowPage.razor ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ ├── FolderProfile.pubxml.user │ │ ├── FolderProfile1.pubxml │ │ └── FolderProfile1.pubxml.user │ └── launchSettings.json ├── Shared │ ├── CodeView.razor │ ├── Example.razor │ ├── MainLayout.razor │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ ├── SurveyPrompt.razor │ └── ToolBar.razor ├── Smart.Blazor.Demos.csproj ├── _Imports.razor └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── images │ │ ├── csssprites.png │ │ └── csssprites_white.png │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ ├── site.css │ └── smart │ │ └── style.css │ ├── favicon.ico │ ├── index.html │ ├── js │ ├── formula-parser.min.js │ ├── highlight.min.js │ ├── highlight.pack.js │ ├── html2canvas.min.js │ ├── jszip.min.js │ ├── pdfmake.min.js │ ├── rrule.import.js │ ├── rrule.min.js │ ├── smart.blazor.js │ ├── vfs_fonts.js │ ├── webcomponents-lite.js │ └── webfont.js │ ├── sample-data │ ├── data.js │ └── weather.json │ └── smart │ └── style.css ├── global.json └── images ├── blazor-nuget.png ├── blazor-server.png └── blazor-webassembly.png /.vs/Smart.Blazor.Demos/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/.vs/Smart.Blazor.Demos/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/config/debuggerConfiguration-28b94209-ca6c-4f1f-bc98-2e978388a66c.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "port": 62124, 6 | "name": "Visual Studio launch configuration override" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "28b94209-ca6c-4f1f-bc98-2e978388a66c": { 5 | "ProjectGuid": "28b94209-ca6c-4f1f-bc98-2e978388a66c", 6 | "DisplayName": "Smart.Blazor.Demos", 7 | "ColorIndex": 0 8 | } 9 | }, 10 | "NextColorIndex": 1 11 | } -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/.vs/Smart.Blazor.Demos/v16/.suo -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/.vs/Smart.Blazor.Demos/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/.vs/Smart.Blazor.Demos/v17/.suo -------------------------------------------------------------------------------- /.vs/Smart.Blazor.Demos/v17/fileList.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/.vs/Smart.Blazor.Demos/v17/fileList.bin -------------------------------------------------------------------------------- /AdminTemplateDemos/.vs/AdminTemplateDemos/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/.vs/AdminTemplateDemos/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /AdminTemplateDemos/.vs/AdminTemplateDemos/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "f1dcad06-82f1-4180-918d-035df7cc89cd": { 5 | "ProjectGuid": "f1dcad06-82f1-4180-918d-035df7cc89cd", 6 | "DisplayName": "AdminTemplateDemos", 7 | "ColorIndex": 0 8 | }, 9 | "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { 10 | "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", 11 | "DisplayName": "Miscellaneous Files", 12 | "ColorIndex": -1 13 | } 14 | }, 15 | "NextColorIndex": 1 16 | } -------------------------------------------------------------------------------- /AdminTemplateDemos/.vs/AdminTemplateDemos/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/.vs/AdminTemplateDemos/v16/.suo -------------------------------------------------------------------------------- /AdminTemplateDemos/.vs/AdminTemplateDemos/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/.vs/AdminTemplateDemos/v17/.futdcache.v1 -------------------------------------------------------------------------------- /AdminTemplateDemos/.vs/AdminTemplateDemos/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/.vs/AdminTemplateDemos/v17/.suo -------------------------------------------------------------------------------- /AdminTemplateDemos/AdminTemplateDemos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /AdminTemplateDemos/AdminTemplateDemos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32112.339 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdminTemplateDemos", "AdminTemplateDemos.csproj", "{F1DCAD06-82F1-4180-918D-035DF7CC89CD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F1DCAD06-82F1-4180-918D-035DF7CC89CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F1DCAD06-82F1-4180-918D-035DF7CC89CD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F1DCAD06-82F1-4180-918D-035DF7CC89CD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F1DCAD06-82F1-4180-918D-035DF7CC89CD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {1E164B51-CA98-4F48-A35C-CC6347281A7C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Data/Person.cs: -------------------------------------------------------------------------------- 1 | namespace JqxSmartTests.Data 2 | { 3 | public class Person 4 | { 5 | public string FirstName { get; set; } 6 | public string LastName { get; set; } 7 | public int Age { get; set; } 8 | 9 | public Person() { } 10 | 11 | public Person(string firstName, string lastName, int age) 12 | { 13 | FirstName = firstName; 14 | LastName = lastName; 15 | Age = age; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Smart.Blazor.Demos.Data 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Linq; 3 | using System.Threading.Tasks; 4 | 5 | namespace Smart.Blazor.Demos.Data 6 | { 7 | public class WeatherForecastService 8 | { 9 | private static readonly string[] Summaries = new[] 10 | { 11 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 12 | }; 13 | 14 | public Task GetForecastAsync(DateTime startDate) 15 | { 16 | var rng = new Random(); 17 | return Task.FromResult(Enumerable.Range(1, 15).Select(index => new WeatherForecast 18 | { 19 | Date = startDate.AddDays(index), 20 | TemperatureC = rng.Next(-20, 55), 21 | Summary = Summaries[rng.Next(Summaries.Length)] 22 | }).ToArray()); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Pages/Counter.razor: -------------------------------------------------------------------------------- 1 | @page "/counter" 2 | 3 | Counter 4 | 5 |

Counter

6 | 7 |

Current count: @currentCount

8 | 9 | 10 | 11 | @code { 12 | private int currentCount = 0; 13 | 14 | private void IncrementCount() 15 | { 16 | currentCount++; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Pages/PageTemplates/Pages/404Page.razor: -------------------------------------------------------------------------------- 1 | @page "/404" 2 | 3 | 4 |
5 |
6 |
7 |

404

8 |
Page not found
9 |

The requested URL was not found on this server.
The page might have been removed.

10 | 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Pages/PageTemplates/Pages/500Page.razor: -------------------------------------------------------------------------------- 1 | @page "/500" 2 | 3 | 4 |
5 |
6 |
7 |

500

8 |
Internal server error
9 |

The server encountered an unexpected condition which prevented it
from fulfilling the request.

10 | 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Pages/PageTemplates/Pages/BlankPage.razor: -------------------------------------------------------------------------------- 1 | @page "/blank" 2 | 3 | 4 |
5 |
6 |

Blank Page

7 |
8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |

Empty card

17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Program.cs: -------------------------------------------------------------------------------- 1 | using AdminTemplateDemos; 2 | using Microsoft.AspNetCore.Components.Web; 3 | using Microsoft.AspNetCore.Components.WebAssembly.Hosting; 4 | using Smart.Blazor; 5 | using Smart.Blazor.Demos.Data; 6 | 7 | var builder = WebAssemblyHostBuilder.CreateDefault(args); 8 | builder.RootComponents.Add("#app"); 9 | builder.RootComponents.Add("head::after"); 10 | 11 | builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); 12 | builder.Services.AddSmart(); 13 | builder.Services.AddSingleton(); 14 | 15 | await builder.Build().RunAsync(); 16 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False 8 | False 9 | True 10 | Release 11 | Any CPU 12 | FileSystem 13 | bin\Release\net6.0\browser-wasm\publish\ 14 | FileSystem 15 | 16 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False|2022-04-10T10:10:54.4378216Z;False|2022-04-10T13:10:42.4218300+03:00; 8 | 9 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Properties/PublishProfiles/FolderProfile1.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False 8 | False 9 | True 10 | Release 11 | Any CPU 12 | FileSystem 13 | bin\Release\net6.0\browser-wasm\publish\ 14 | FileSystem 15 | 16 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Properties/PublishProfiles/FolderProfile1.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | True|2022-04-10T15:21:59.7031532Z;False|2022-04-10T13:11:24.0021367+03:00; 8 | <_PublishTargetUrl>C:\inetpub\wwwroot\Team\blazor\AdminTemplateDemos\bin\Release\net6.0\browser-wasm\publish\ 9 | 10 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:32980", 7 | "sslPort": 44349 8 | } 9 | }, 10 | "profiles": { 11 | "AdminTemplateDemos": { 12 | "commandName": "Project", 13 | "dotnetRunMessages": true, 14 | "launchBrowser": true, 15 | "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", 16 | "applicationUrl": "https://localhost:7148;http://localhost:5148", 17 | "environmentVariables": { 18 | "ASPNETCORE_ENVIRONMENT": "Development" 19 | } 20 | }, 21 | "IIS Express": { 22 | "commandName": "IISExpress", 23 | "launchBrowser": true, 24 | "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Shared/CodeView.razor: -------------------------------------------------------------------------------- 1 | @using System.Text.RegularExpressions; 2 | @inject IJSRuntime JSRuntime 3 | 4 |
@source
5 | 6 | @code { 7 | private ElementReference pre; 8 | private string source; 9 | 10 | [Parameter] 11 | public string PageName { get; set; } 12 | 13 | protected override async Task OnInitializedAsync() 14 | { 15 | var http = new HttpClient(); 16 | 17 | source = await http.GetStringAsync($"https://raw.githubusercontent.com/HTMLElements/smart-blazor/main/Pages/{PageName}"); 18 | source = Regex.Replace(source, "]*>\n", ""); 19 | } 20 | 21 | protected override async Task OnAfterRenderAsync(bool firstRender) 22 | { 23 | if (!String.IsNullOrEmpty(source)) 24 | { 25 | await JSRuntime.InvokeAsync("hljs.highlightBlock", pre); 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /AdminTemplateDemos/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 |
4 | 7 | 8 |
9 |
10 | About 11 |
12 | 13 |
14 | @Body 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /AdminTemplateDemos/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- 1 | 
2 | 3 | @Title 4 | 5 | 6 | Please take our 7 | brief survey 8 | 9 | and tell us what you think. 10 |
11 | 12 | @code { 13 | // Demonstrates how a parent component can supply parameters 14 | [Parameter] 15 | public string? Title { get; set; } 16 | } 17 | -------------------------------------------------------------------------------- /AdminTemplateDemos/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using System.Net.Http.Json 3 | @using Microsoft.AspNetCore.Components.Forms 4 | @using Microsoft.AspNetCore.Components.Routing 5 | @using Microsoft.AspNetCore.Components.Web 6 | @using Microsoft.AspNetCore.Components.Web.Virtualization 7 | @using Microsoft.AspNetCore.Components.WebAssembly.Http 8 | @using Microsoft.JSInterop 9 | @using AdminTemplateDemos 10 | @using AdminTemplateDemos.Shared 11 | @using Smart.Blazor 12 | -------------------------------------------------------------------------------- /AdminTemplateDemos/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "6.0.101" 4 | } 5 | } -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Waybury 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/icon-192.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/Album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/Album.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/album-web-page-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/album-web-page-template.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/albums_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/albums_alternative.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/albums_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/albums_pop.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/albums_rnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/albums_rnb.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/albums_rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/albums_rock.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/animal-2028258_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/animal-2028258_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/area1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/area1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/area2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/area2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/avatar.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/banner.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/battery-1049664_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/battery-1049664_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/blog-web-page-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/blog-web-page-template.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/bootstrap.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/brand.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/branding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/branding.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/brands/circle-angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/brands/circle-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/brands/circle-google.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/brands/circle-htmlelements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/brands/circle-htmlelements.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/brands/circle-jqwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/brands/circle-jqwidgets.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/business-cards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/business-cards.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/card-demo-chart-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/card-demo-chart-1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/card-demo-chart-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/card-demo-chart-2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/card-demo-chart-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/card-demo-chart-3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/card-demo-chart-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/card-demo-chart-4.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/card-demo-chart-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/card-demo-chart-5.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/cards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/cards.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-background-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-background-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-background-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-background-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-background-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-background-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-large-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-large-7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-medium-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-medium-7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-8.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-small-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-small-9.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-square-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-square-7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel-xs-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel-xs-7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/adaptive-height/slide-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/carousel/full-screen/slide-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/chart-custom-element-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/chart-custom-element-background.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/chart.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-heart-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-heart-indetermined.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark-indetermined.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/check-mark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/checkout-web-page-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/checkout-web-page-template.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-accordion.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-alert.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-buttons-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-buttons-mobile.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-buttons.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-gauge.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-listcontrols-expand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-listcontrols-expand1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-listcontrols-leave1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-listcontrols-leave1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-lists.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus-usage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus-usage1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus-usage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus-usage2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus-usage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus-usage3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus-usage3do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus-usage3do.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus-usage4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus-usage4a.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-menus.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-pickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-pickers.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-progress-and-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-progress-and-activity.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-sliders.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-snackbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-snackbars.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop4.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop5.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-desktop6.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-example3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs-usage-mobile6.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tabs.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-text-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-text-fields.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-toasts-mobile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-toasts-mobile1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-toasts-tabletdesktop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-toasts-tabletdesktop2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tooltips-touch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tooltips-touch1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tooltips-touch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tooltips-touch2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-tooltips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-tooltips.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-windows-appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-windows-appearance.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-windows-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-windows-confirmation.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-windows-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-windows-header.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/components-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/components-windows.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/computer-1185626_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/computer-1185626_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-area-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-area-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-area.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-bar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-bar-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-bar.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-column-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-column-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-column.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-line-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-line-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-line.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-pie-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-pie-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-pie.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-scatter-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-scatter-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/create-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/create-scatter.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/csssprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/csssprites.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/csssprites_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/csssprites_white.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/dashboard.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/demo-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/demo-background.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/demo-background_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/demo-background_big.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/desk-3139127_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/desk-3139127_1920.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/digital-marketing-1433427_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/digital-marketing-1433427_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/digital-marketing-1725340_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/digital-marketing-1725340_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/docking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/docking.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/dog-2474784_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/dog-2474784_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/earth.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/entrepreneur-593358_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/entrepreneur-593358_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/flat-button-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/flat-button-demo.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/flat-button-demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/flat-button-demo2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/flat-demo-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/flat-demo-start.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/floating-demo-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/floating-demo-start.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/fuel.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/gantt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/gantt.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/gauge.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/gear-1077550_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/gear-1077550_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/girl-2366438_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/girl-2366438_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/girl-2771001_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/girl-2771001_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/grid-business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/grid-business.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/grid-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/grid-dashboard.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/handshake-3498407_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/handshake-3498407_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/help-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/help-icon.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/house-2723396_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/house-2723396_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/ico-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/ico-chat.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/image-1247354_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/image-1247354_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/instagram-1581266_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/instagram-1581266_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/line-1174799_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/line-1174799_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/listBox-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/listBox-usage.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/listBox-usage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/listBox-usage2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/listBox-usage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/listBox-usage3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/loader.gif -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/loader2.gif -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/logo-2078018_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/logo-2078018_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/logo-google-1991840_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/logo-google-1991840_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/lotus-with-hands-1889661_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/lotus-with-hands-1889661_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/man-4252192_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/man-4252192_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/mars.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/moon.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/multi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/multi1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/multi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/multi2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/museum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/museum.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/notifications-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/notifications-icon.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/notifications-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/notifications-icon2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/office-1209640_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/office-1209640_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/optional-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/optional-example.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/paint-1369406.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/paint-1369406.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/paint-work-02-1531044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/paint-work-02-1531044.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/andrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/andrew.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/andrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/andrew.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/anne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/anne.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/anne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/anne.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/janet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/janet.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/janet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/janet.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/john.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/john.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/john.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/laura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/laura.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/laura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/laura.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/maria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/maria.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/maria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/maria.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/mark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/mark.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/mark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/nancy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/nancy.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/nancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/nancy.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/robert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/robert.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/robert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/robert.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/steven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/steven.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/people/steven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/people/steven.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/Maria.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/Maria.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/andrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/andrew.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/anne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/anne.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/avril.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/avril.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/avril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/avril.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/janet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/janet.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/johanna.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/johanna.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/johanna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/johanna.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/johnny.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/johnny.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/johnny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/johnny.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/laura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/laura.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/margaret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/margaret.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/maria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/maria.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/mark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/mark.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/mark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/maya.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/maya.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/maya.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/michael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/michael.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/monica.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/monica.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/monica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/monica.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/nancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/nancy.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/robert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/robert.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/steven.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/steven.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/steven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/steven.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/toni.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/toni.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/phonebook/toni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/phonebook/toni.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/photo-1530424426433-967ce567454d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/photo-1530424426433-967ce567454d.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/pricing-web-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/pricing-web-application.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/iphone-x.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/iphone.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/macbook-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/macbook-pro.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-3.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-4.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-5.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-6.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-7.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/products/product-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/products/product-8.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/progres-bar-loading-files.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/progres-bar-loading-files.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/progress-bar-indeterminate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/progress-bar-indeterminate.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/progress-bar-refresh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/progress-bar-refresh.jpeg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/quadrocopter-1658967_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/quadrocopter-1658967_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/raised-button-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/raised-button-demo.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/raised-button-demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/raised-button-demo2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/required-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/required-example.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/row-1-col-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/row-1-col-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/row-2-col-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/row-2-col-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/row-3-col-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/row-3-col-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/row-4-col-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/row-4-col-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/shape-header.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/ship-2459940_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/ship-2459940_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/sidebar-page-template-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/sidebar-page-template-demo.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/sign-in-web-page-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/sign-in-web-page-template.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/single1.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/single2.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/slider-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/slider-controls.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/smart-home-3148026_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/smart-home-3148026_1920.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/social-color-1_logo-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/social-color-1_logo-fb-simple.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/social-color-1_logo-google-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/spreadsheet.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/squirrel-row-1-col-5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/startup-594091_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/startup-594091_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/statistics-3679874_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/statistics-3679874_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/store.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/sun.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/switch-mark-heart-gray.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/switch-mark-heart-red.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/tablet-184888_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/tablet-184888_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/theme-dark.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/theme-light.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/time-1606153_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/time-1606153_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/1.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/10.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/11.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/12.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/13.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/14.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/15.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/16.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/17.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/18.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/19.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/2.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/20.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/21.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/22.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/23.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/24.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/25.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/26.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/27.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/28.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/29.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/3.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/30.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/31.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/32.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/33.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/34.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/35.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/36.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/37.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/4.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/5.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/6.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/7.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/8.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/travel/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/travel/9.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/tree-2733772_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/tree-2733772_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/tux-158547_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/tux-158547_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/two-line-list-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/two-line-list-icon.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/two-line-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/two-line-list.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/valentine-day-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/valentine-day-min.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/volumebooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/volumebooster.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/wind.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/windows-3590598_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/windows-3590598_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/woman-1594711_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/woman-1594711_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/woman-2003647_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/woman-2003647_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/woman-3096664_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/woman-3096664_960_720.jpg -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/images/youtube-1837872_960_720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/AdminTemplateDemos/wwwroot/images/youtube-1837872_960_720.png -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | AdminTemplateDemos 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
Loading...
19 | 20 |
21 | An unhandled error has occurred. 22 | Reload 23 | 🗙 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /AdminTemplateDemos/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "date": "2018-05-06", 4 | "temperatureC": 1, 5 | "summary": "Freezing" 6 | }, 7 | { 8 | "date": "2018-05-07", 9 | "temperatureC": 14, 10 | "summary": "Bracing" 11 | }, 12 | { 13 | "date": "2018-05-08", 14 | "temperatureC": -13, 15 | "summary": "Freezing" 16 | }, 17 | { 18 | "date": "2018-05-09", 19 | "temperatureC": -16, 20 | "summary": "Balmy" 21 | }, 22 | { 23 | "date": "2018-05-10", 24 | "temperatureC": -2, 25 | "summary": "Chilly" 26 | } 27 | ] 28 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/.vs/Smart.Blazor.Demos/config/debuggerConfiguration-13af40a5-a202-4c1a-870a-4e4873bc8901.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "port": 62882, 6 | "name": "Visual Studio launch configuration override" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/.vs/Smart.Blazor.Demos/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/.vs/Smart.Blazor.Demos/v16/.suo -------------------------------------------------------------------------------- /Smart.Blazor.Demos/App.razor: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 |

Sorry, there's nothing at this address.

8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Data/Person.cs: -------------------------------------------------------------------------------- 1 | namespace JqxSmartTests.Data 2 | { 3 | public class Person 4 | { 5 | public string FirstName { get; set; } 6 | public string LastName { get; set; } 7 | public int Age { get; set; } 8 | 9 | public Person() { } 10 | 11 | public Person(string firstName, string lastName, int age) 12 | { 13 | FirstName = firstName; 14 | LastName = lastName; 15 | Age = age; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Smart.Blazor.Demos.Data 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Linq; 3 | using System.Threading.Tasks; 4 | 5 | namespace Smart.Blazor.Demos.Data 6 | { 7 | public class WeatherForecastService 8 | { 9 | private static readonly string[] Summaries = new[] 10 | { 11 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 12 | }; 13 | 14 | public Task GetForecastAsync(DateTime startDate) 15 | { 16 | var rng = new Random(); 17 | return Task.FromResult(Enumerable.Range(1, 15).Select(index => new WeatherForecast 18 | { 19 | Date = startDate.AddDays(index), 20 | TemperatureC = rng.Next(-20, 55), 21 | Summary = Summaries[rng.Next(Summaries.Length)] 22 | }).ToArray()); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/AccordionPage.razor: -------------------------------------------------------------------------------- 1 | @page "/accordion-basic" 2 | 3 |

Accordion with single expand

4 | 5 | First Item Content. 6 | Second Item Content. 7 | Third Item Content. 8 | Fourth Item Content. 9 | 10 |

Accordion with multiple expand

11 | 12 | First Item Content. 13 | Second Item Content. 14 | Third Item Content. 15 | Fourth Item Content. 16 | 17 | 18 | 19 | @code { 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/BreadcrumbPage.razor: -------------------------------------------------------------------------------- 1 | @page "/breadcrumb-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | private List data = new List() 8 | { 9 | new { label= "Planets", value= "A" }, 10 | new { label= "Continents", value= "B" }, 11 | new { label= "Countries", value= "C" }, 12 | new { label= "States", value= "D" }, 13 | new { label= "Cities", value= "E" } 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ButtonDemos/ButtonDynamicPage.razor: -------------------------------------------------------------------------------- 1 | @page "/button-dynamic" 2 | 3 | 4 | @if (_show) 5 | { 6 | 7 | } 8 | 9 | @code { 10 | private bool _show = false; 11 | private void OnShow() => _show = !_show; 12 | } 13 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ButtonGroupPage.razor: -------------------------------------------------------------------------------- 1 | @page "/buttongroup-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | private List dataSource = new List() { 8 | "A", "B", "C" 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarClassicDisplayModePage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-classic-display-mode" 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarCustomHeaderPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-custom-header" 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | @code { 15 | string headerTemplate = "headerTemplate"; 16 | List selectedDates = new List() { "2017-08-17" }; 17 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarEventsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-events" 2 | 3 | 4 | 5 |
6 |
Events
7 |
8 | @eventLog 9 |
10 |
11 |
12 | 13 | @code { 14 | private string eventLog; 15 | 16 | private void OnChange(Event eventObj) 17 | { 18 | CalendarChangeEventDetail detail = eventObj["Detail"]; 19 | 20 | eventLog = (detail.Value as List)[0].ToString(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarFooterPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-footer" 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | @code { 15 | string footerTemplate = "templateWithButtons"; 16 | string[] viewSections = new string[] { "title", "header", "footer" }; 17 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarImportantDaysPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-important-days" 2 | 3 | 4 | 5 | 6 | 10 | 11 |
12 |
Important Dates
13 |
14 | 9 June 2021
15 | 1 July 2021
16 | 30 July 2021
17 | 24 December 2021
18 |
19 |
20 |
21 | 22 | @code { 23 | string importantDatesTemplate = "importantDatesTemplate"; 24 | List importantDates = new List() { "2021, 6, 9", "2021, 7, 1", "2021, 7, 30", "2021, 12, 24" }; 25 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarLocalePage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-locale" 2 | 3 | 4 | 5 | 6 |
7 |
Choose a locale
8 |
9 |
10 |
@log
11 |
12 |
13 |
14 | 15 | @code { 16 | string locale = "en"; 17 | 18 | string[] dataSource = new string[] { "en", "tr", "ar", "ru", "de", "es", "pt", "fr", "zh", "ja", "it", "bg", "nl" }; 19 | 20 | string log = ""; 21 | 22 | private void OnChange(Event eventObj) 23 | { 24 | DropDownListChangeEventDetail args = eventObj["Detail"]; 25 | 26 | locale = args.Label; 27 | log = "Current locale is " + args.Label; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-basic" 2 | 3 | 4 |
5 |
Events
6 |
7 | @eventLog 8 |
9 |
10 | 11 | 12 | @code { 13 | private string eventLog; 14 | 15 | private void OnChange(Event eventObj) 16 | { 17 | CalendarChangeEventDetail detail = eventObj["Detail"]; 18 | 19 | eventLog = (detail.Value as List)[0].ToString(); 20 | } 21 | } 22 | 23 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarRestrictedDatesPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-restricted-dates" 2 | 3 | 4 | 5 | 6 |
7 |
Restricted Dates
8 |
9 | 25 July 2021
10 | 15 July 2021
11 | 1 January 2021
12 |
13 |
14 |
15 | 16 | @code { 17 | List selectedDates = new List() { "2021-7-4" }; 18 | List restrictedDates = new List() { "2021-7-25", "2021-7-15", "2021-1-1" }; 19 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarRightToLeftPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-right-to-left" 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarViewsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-views" 2 | 3 | 4 | 5 | 6 |
7 |
View Mode
8 |
9 | Landscape 10 | Portrait 11 |
12 |
13 |
14 | 15 | @code { 16 | RadioButton landscapeRadioButton; 17 | 18 | ViewLayout view = ViewLayout.Landscape; 19 | string[] viewSections = new string[] { "title", "header" }; 20 | 21 | private void OnLandscapeChecked() 22 | { 23 | view = ViewLayout.Landscape; 24 | } 25 | 26 | private void OnPortraitChecked() 27 | { 28 | view = ViewLayout.Portrait; 29 | } 30 | 31 | private void OnReady(RadioButton radioButton) 32 | { 33 | radioButton.Checked = true; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarWeekNumbersPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-week-numbers" 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CalendarDemos/CalendarWeeksVisibilityPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-weeks-visibility" 2 | 3 | 10 | 11 | 12 | 13 | 14 |
15 |
Number of weeks(1-6)
16 |
17 | 18 |
19 |
20 |
21 | 22 | @code { 23 | Input input; 24 | int weeks = 2; 25 | 26 | private void OnChange(Event eventObj) 27 | { 28 | weeks = int.Parse(input.Value); 29 | } 30 | 31 | private void OnReady(Input input) 32 | { 33 | input.Value = (2).ToString(); 34 | } 35 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CheckInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/checkinput-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | @if (forecasts == null) 8 | { 9 |

Loading...

10 | } 11 | else 12 | { 13 |

Forecasts Summary

14 | 15 | } 16 | 17 | 18 | @code { 19 | private WeatherForecast[] forecasts; 20 | private string[] summaries; 21 | 22 | protected override async Task OnInitializedAsync() 23 | { 24 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 25 | summaries = forecasts.Select(item => item.Summary).ToArray(); 26 | } 27 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/CheckboxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/checkbox-basic" 2 | 3 | 4 | Check Box 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ColorInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/colorinput-basic" 2 | 3 | 4 | 5 | 6 | 7 | 8 | @code { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ColorPanelPage.razor: -------------------------------------------------------------------------------- 1 | @page "/colorpanel-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ColorPickerPage.razor: -------------------------------------------------------------------------------- 1 | @page "/colorpicker-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ComboBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/combobox-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | @if (forecasts == null) 8 | { 9 |

Loading...

10 | } 11 | else 12 | { 13 |

Forecasts Summary

14 | 15 | @foreach (var forecast in forecasts) 16 | { 17 | 18 | } 19 | 20 | } 21 | 22 | 23 | @code { 24 | private WeatherForecast[] forecasts; 25 | 26 | protected override async Task OnInitializedAsync() 27 | { 28 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 29 | } 30 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/Counter.razor: -------------------------------------------------------------------------------- 1 | @page "/counter" 2 | 3 |

Counter

4 | 5 |

Current count: @currentCount

6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/DateInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/dateinput-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/DateRangeInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/daterangeinput-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/DockingLayoutDemos/DockingLayoutDynamicPageTestComponent1.razor: -------------------------------------------------------------------------------- 1 | 

TestComponent1

2 | 3 | @code { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/DockingLayoutDemos/DockingLayoutDynamicPageTestComponent2.razor: -------------------------------------------------------------------------------- 1 | 

TestComponent2

2 | 3 | @code { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/DropDownButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/dropdownbutton-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | @if (forecasts == null) 8 | { 9 |

Loading...

10 | } 11 | else 12 | { 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | @foreach (var forecast in forecasts) 24 | { 25 | 26 | 27 | 28 | 29 | 30 | 31 | } 32 | 33 |
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
34 | } 35 | 36 |
37 | 38 | 39 | 40 | @code { 41 | private WeatherForecast[] forecasts; 42 | 43 | protected override async Task OnInitializedAsync() 44 | { 45 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/FileUploadPage.razor: -------------------------------------------------------------------------------- 1 | @page "/fileupload-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/GaugePage.razor: -------------------------------------------------------------------------------- 1 | @page "/gauge-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/InputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/input-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 |

Press "a" to Open the Auto-complete dropdown

7 | 8 | 9 | 10 | @code { 11 | private WeatherForecast[] forecasts; 12 | private List items = new List(); 13 | string text = "Hi from Smart"; 14 | 15 | protected override async Task OnInitializedAsync() 16 | { 17 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 18 | 19 | foreach (WeatherForecast forecast in forecasts) 20 | { 21 | items.Add(forecast.Date.ToString() + ", " + forecast.Summary); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/KanbanDemos/KanbanPage.razor: -------------------------------------------------------------------------------- 1 | @page "/kanban" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject RandomDataService RandomDataService 5 | 6 | 7 | 8 | 9 | 10 | 11 | @code { 12 | List columns = new List{ 13 | new KanbanColumn() { 14 | Label = "To do", 15 | DataField = "ToDo" 16 | }, 17 | new KanbanColumn() { 18 | Label = "inProgress", 19 | DataField = "InProgress" 20 | }, 21 | new KanbanColumn() { 22 | Label = "Testing", 23 | DataField = "Testing" 24 | }, 25 | new KanbanColumn() { 26 | Label = "Done", 27 | DataField = "Done" 28 | } 29 | }; 30 | 31 | public KanbanDataRecord[] Data; 32 | 33 | protected override async Task OnInitializedAsync() 34 | { 35 | Data = await RandomDataService.GetKanbanDataAsync(); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ListBoxDemos/ListBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/listbox" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | @if (forecasts == null) 7 | { 8 |

Loading...

9 | } 10 | else 11 | { 12 |

Forecasts Summary

13 | 14 | @foreach (var forecast in forecasts) 15 | { 16 | 17 | } 18 | 19 | } 20 | 21 | @code { 22 | private WeatherForecast[] forecasts; 23 | 24 | protected override async Task OnInitializedAsync() 25 | { 26 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 27 | } 28 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ListBoxDemos/ListBoxSelectDetailPage.razor: -------------------------------------------------------------------------------- 1 | @page "/listbox-select-detail" 2 | 3 |
4 | 8 | 9 |

Selected Indexes: @SelectedIndexes

10 |

Selected Values: @SelectedValues

11 |
12 | 13 | @code { 14 | private ListBox _listBox; 15 | public string[] Items = new[] { "1", "2", "3", "4" }; 16 | 17 | public string SelectedIndexes => 18 | $"[{string.Join(",", _listBox?.SelectedIndexes ?? System.Array.Empty())}]"; 19 | 20 | public string SelectedValues => 21 | $"[{string.Join(",", _listBox?.SelectedValues ?? System.Array.Empty())}]"; 22 | 23 | private void OnListBoxReady(ListBox listbox) 24 | { 25 | _listBox.Changed += ListBox_Changed; 26 | } 27 | 28 | private void ListBox_Changed(object sender, ListBoxChangedEventArgs e) 29 | { 30 | StateHasChanged(); 31 | } 32 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MaskedTextBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/maskedtextbox-basic" 2 | 3 | 4 | 5 | 6 | 7 | 8 | @code { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MenuDemos/MenuItemsWithIconsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/menu-items-with-icons" 2 | 3 | 12 | 13 | 14 | 15 | Sun 16 | 17 | Planets 18 | Earth 19 | Mars 20 | 21 | Moon 22 | 23 | 24 | 25 | @code { 26 | } 27 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MultiComboInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multicomboinput-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | @if (forecasts == null) 8 | { 9 |

Loading...

10 | } 11 | else 12 | { 13 |

Forecasts Summary

14 | 15 | } 16 | 17 | 18 | @code { 19 | private WeatherForecast[] forecasts; 20 | private string[] summaries; 21 | 22 | protected override async Task OnInitializedAsync() 23 | { 24 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 25 | summaries = forecasts.Select(item => item.Summary).ToArray(); 26 | } 27 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MultiInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multiinput-basic" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | @if (forecasts == null) 7 | { 8 |

Loading...

9 | } 10 | else 11 | { 12 |

Forecasts Summary

13 | 14 | } 15 | 16 | 17 | @code { 18 | private WeatherForecast[] forecasts; 19 | private string[] summaries; 20 | 21 | protected override async Task OnInitializedAsync() 22 | { 23 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 24 | summaries = forecasts.Select(item => item.Summary).ToArray(); 25 | } 26 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MultiSplitButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multisplitbutton-basic" 2 | 3 | 4 | 5 | Afghanistan 6 | Albania 7 | Algeria 8 | American Samoa 9 | Andorra 10 | Angola 11 | Anguilla 12 | Antarctica 13 | Antigua and Barbuda 14 | Argentina 15 | Armenia 16 | Aruba 17 | Australia 18 | Austria 19 | Azerbaijan 20 | Bahamas 21 | 22 | 23 | 24 | @code { 25 | private string[] buttons = new string[] { "A", "B", "C" }; 26 | } 27 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/MultilineTextBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multilinetextbox-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/NumericTextBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/numerictextbox-basic" 2 | 3 | 4 | 10 | 11 | 12 | 13 | @code { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PageTemplates/Pages/404Page.razor: -------------------------------------------------------------------------------- 1 | @page "/404" 2 | 3 | 4 |
5 |
6 |
7 |

404

8 |
Page not found
9 |

The requested URL was not found on this server.
The page might have been removed.

10 | 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PageTemplates/Pages/500Page.razor: -------------------------------------------------------------------------------- 1 | @page "/500" 2 | 3 | 4 |
5 |
6 |
7 |

500

8 |
Internal server error
9 |

The server encountered an unexpected condition which prevented it
from fulfilling the request.

10 | 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PageTemplates/Pages/BlankPage.razor: -------------------------------------------------------------------------------- 1 | @page "/blank" 2 | 3 | 4 |
5 |
6 |

Blank Page

7 |
8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |

Empty card

17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PagerPage.razor: -------------------------------------------------------------------------------- 1 | @page "/pager-basic" 2 | 3 | 4 |
5 |
6 |
7 |
8 |
9 |

10 | Smart.Pager provides navigation for paged information, typically used with 11 | a grid or table. 12 |

13 |
14 |
15 |
16 |
17 |
18 |

Usage

19 |
20 |

Navigation

21 |

User can navigate between pages and/or items via built-in optional buttons.

22 |
23 | 25 |
26 |
27 |
28 | 29 | 30 | @code { 31 | 32 | } 33 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PasswordTextBoxPage.razor: -------------------------------------------------------------------------------- 1 | @page "/passwordtextbox-basic" 2 | 3 | 4 |
5 |
6 |
7 | >
8 |
9 | >
10 | 11 | 12 | @if (submittted) 13 | { 14 |

Thank you for submitting your data.

15 | } 16 | 17 | 18 | 19 | @code { 20 | private bool submittted = false; 21 | 22 | private async void OnClick() 23 | { 24 | submittted = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/PowerButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/powerbutton-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ProgressBarPage.razor: -------------------------------------------------------------------------------- 1 | @page "/progressbar-basic" 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | @code { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/RadioButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/radiobutton-basic" 2 | 3 | 4 | 5 |

6 | 7 | 8 | 9 | @code { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/RatingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/rating-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/RepeatButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/repeatbutton-basic" 2 | 3 |

Counter

4 | 5 |

Current count: @currentCount

6 | 7 | Click me 8 | 9 | 10 | @code { 11 | private int currentCount = 0; 12 | 13 | private void IncrementCount() 14 | { 15 | currentCount++; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ScrollbarPage.razor: -------------------------------------------------------------------------------- 1 | @page "/scrollbar-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/SliderPage.razor: -------------------------------------------------------------------------------- 1 | @page "/slider-basic" 2 | 3 | 4 | 5 | 6 | 7 | 8 | @code { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/SplitterPage.razor: -------------------------------------------------------------------------------- 1 | @page "/splitter-basic" 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | @code { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/SwitchButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/switchbutton-basic" 2 | 3 | 4 | 5 |

6 | 7 | 8 | 9 | @code { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TabsDemos/TabsBasicPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tabs-basic" 2 | 3 | 4 | 5 | Content 1 6 | Content 2 7 | Content 3 8 | Content 4 9 | 10 | 11 | 12 | 13 | @code { 14 | TabItem item1; 15 | 16 | private int selectedIndex = 0; 17 | 18 | private void SetSelection() 19 | { 20 | selectedIndex = 3; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TabsDemos/TabsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tabs" 2 | 3 | 4 | Content 1 5 | Content 2 6 | Content 3 7 | Content 4 8 | 9 | 10 | @code { 11 | 12 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TabsDemos/TabsReorderPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tabs-reorder" 2 | 3 | 16 | 17 | 18 | 19 | Content 1 20 | Content 2 21 | Content 3 22 | Content 4 23 | 24 | 25 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TabsDemos/TabsRightToLeftPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tabs-right-to-left" 2 | 3 | 4 | 5 | תוכן 1 6 | תוכן 2 7 | 3 תוכן 8 | 4 תוכן 9 | 5 תוכן 10 | 11 | 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TabsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tabs-simple" 2 | 3 | 4 | 5 | Content 1 6 | Content 2 7 | Content 3 8 | Content 4 9 | 10 | 11 | 12 | @code { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TankPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tank-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TextAreaPage.razor: -------------------------------------------------------------------------------- 1 | @page "/textarea-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TextBoxDemos/TextBoxBasicPage.razor: -------------------------------------------------------------------------------- 1 | @page "/textbox-basic" 2 | 3 | 4 | 5 | 6 | @code { 7 | TextBox textBox; 8 | 9 | private async void OnChange(Event changeEvent) 10 | { 11 | TextBoxChangeEventDetail detail = changeEvent["Detail"] as TextBoxChangeEventDetail; 12 | 13 | string currentValue = this.textBox.Value; 14 | 15 | string value = await this.textBox.GetProperty("Value"); 16 | 17 | Console.WriteLine("Change" + currentValue + "/" + value); 18 | } 19 | 20 | private async void OnValueChange(Event changeEvent) 21 | { 22 | TextBoxChangingEventDetail detail = changeEvent["Detail"] as TextBoxChangingEventDetail; 23 | 24 | 25 | string currentValue = this.textBox.Value; 26 | 27 | string value = await this.textBox.GetProperty("Value"); 28 | 29 | Console.WriteLine("Changing" + currentValue + "/" + value); 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TextBoxDemos/TextBoxEventsPage.razor: -------------------------------------------------------------------------------- 1 | @page "/textbox-events" 2 | 3 | 4 | 5 | 6 | 7 | Button is:
@_disabled
8 | 9 | 10 | 11 | @code { 12 | TextBox textBox; 13 | Button button; 14 | 15 | private bool _disabled = true; 16 | 17 | private async void OnValueChange(Event changeEvent) 18 | { 19 | TextBoxChangingEventDetail detail = changeEvent["Detail"] as TextBoxChangingEventDetail; 20 | 21 | button.IsDirty = true; 22 | _disabled = string.IsNullOrEmpty(detail.Value); 23 | 24 | StateHasChanged(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TimeInputPage.razor: -------------------------------------------------------------------------------- 1 | @page "/timeinput-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TimePickerPage.razor: -------------------------------------------------------------------------------- 1 | @page "/timepicker-basic" 2 | 3 | 4 | 5 | 6 | 7 | @code { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ToastPage.razor: -------------------------------------------------------------------------------- 1 | @page "/toast-basic" 2 | 3 | 4 | You have 2 new messages. 6 | 7 | 8 | @code { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/ToggleButtonPage.razor: -------------------------------------------------------------------------------- 1 | @page "/togglebutton-basic" 2 | 3 | 4 | Button 1 5 |

6 | Button 2 7 | 8 | 9 | @code { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TooltipPage.razor: -------------------------------------------------------------------------------- 1 | @page "/tooltip-basic" 2 | 3 | 4 | 5 | This is a tooltip for Smart.Button 6 | 7 | 8 | @code { 9 | private string buttonId = "button"; 10 | } 11 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/CalendarBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/calendar-binding" 2 | 3 | 4 | 5 |
6 | 7 | @foreach (var date in DateValue) 8 | { 9 |

The Selected date is: @date

10 | } 11 | 12 | @code { 13 | 14 | public IEnumerable DateValue = new List() {"2021-09-14 T21:00"}; 15 | 16 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/CheckBoxBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/checkbox-binding" 2 | 3 | 4 | Check Box 5 |
6 |

Check box value: @CheckBoxValue

7 | 8 | @code { 9 | 10 | public bool CheckBoxValue = true; 11 | 12 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/CheckInputBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/checkinput-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | @if (forecasts == null) 8 | { 9 |

Loading...

10 | } 11 | else 12 | { 13 |

Forecasts Summary

14 | 15 |

Check input Value (Type words like - cool, scorching or warm): @CheckInputValue

16 | } 17 |
18 | 19 | @code { 20 | 21 | string CheckInputValue = ""; 22 | private WeatherForecast[] forecasts; 23 | private string[] summaries; 24 | 25 | protected override async Task OnInitializedAsync() 26 | { 27 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 28 | summaries = forecasts.Select(item => item.Summary).ToArray(); 29 | } 30 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/ComboBoxBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/combobox-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | @if (forecasts == null) 7 | { 8 |

Loading...

9 | } 10 | else 11 | { 12 |

Forecasts Summary

13 | 14 | @foreach (var forecast in forecasts) 15 | { 16 | 17 | } 18 | 19 |

The Selected index is: @SelectedIndex[0]

20 | 21 | } 22 | @code { 23 | private WeatherForecast[] forecasts; 24 | 25 | int[] SelectedIndex = new int[]{ 1 }; 26 | 27 | 28 | 29 | protected override async Task OnInitializedAsync() 30 | { 31 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 32 | } 33 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/DateInputBindingPage.razor: -------------------------------------------------------------------------------- 1 | 2 | @page "/dateinput-binding" 3 | 4 | 5 |
6 |

Date Value: @DateValue

7 | 8 | @code { 9 | public DateTime DateValue = DateTime.Now; 10 | 11 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/DateTimePickerBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/datetimepicker-binding" 2 | 3 | 4 | 9 | 10 |
11 |

Time Value: @DateValue

12 | 13 | 14 | @code { 15 | public DateTime DateValue = DateTime.Now; 16 | 17 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/DropDownListBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/dropdownlist-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | 5 | 6 | 7 |
8 |

DropDownList selected value: @DropDownListBoxValue[0]

9 | @code { 10 | public string[] Items = new[] 11 | { 12 | "One", 13 | "Two", 14 | "Three", 15 | "Four" 16 | }; 17 | 18 | public string[] DropDownListBoxValue=new string[] { "Three" }; 19 | 20 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/GaugeBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/gauge-binding" 2 | 3 | 4 | 5 |

Gauge value: @GaugeValue

6 | 7 | 8 | @code { 9 | 10 | public object GaugeValue = "50"; 11 | 12 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/InputBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/input-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 10 | 11 | @if (forecasts == null) 12 | { 13 |

Loading...

14 | } 15 | else 16 | { 17 |

Forecasts Summary

18 | 19 | } 20 |
21 |

Input Value (Type words like - cold, scorching or warm): @inputValue

22 | 23 | @code { 24 | private List items = new List(); 25 | string inputValue = ""; 26 | private WeatherForecast[] forecasts; 27 | 28 | protected override async Task OnInitializedAsync() 29 | { 30 | 31 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 32 | 33 | foreach (WeatherForecast forecast in forecasts) 34 | { 35 | items.Add(forecast.Date.ToString() + ", " + forecast.Summary); 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/ListBoxBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/listboxbinding-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | 7 | 8 | @foreach (var forecast in forecasts) 9 | { 10 | 11 | } 12 | 13 |
14 |

The Selected index is: @SelectedIndex[0]

15 | 16 | @code { 17 | 18 | int[] SelectedIndex = new int[]{ 1 }; 19 | 20 | private WeatherForecast[] forecasts; 21 | protected override async Task OnInitializedAsync() 22 | { 23 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 24 | } 25 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/MultiComboInputBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multicomboinput-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | 6 | @if (forecasts == null) 7 | { 8 |

Loading...

9 | } 10 | else 11 | { 12 |

Forecasts Summary

13 | 14 |
15 |

Input Value (Type words like - chilly, sweltering or warm): @MultiComboInputValue

16 | } 17 | @code { 18 | 19 | string MultiComboInputValue = ""; 20 | 21 | private WeatherForecast[] forecasts; 22 | private string[] summaries; 23 | 24 | protected override async Task OnInitializedAsync() 25 | { 26 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 27 | summaries = forecasts.Select(item => item.Summary).ToArray(); 28 | } 29 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/MultiInputBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/multiinput-binding" 2 | 3 | @using Smart.Blazor.Demos.Data 4 | @inject WeatherForecastService ForecastService 5 | @if (forecasts == null) 6 | { 7 |

Loading...

8 | } 9 | else 10 | { 11 |

Forecasts Summary

12 | 13 |
14 |

Input Value (Type words like - chilly, sweltering or warm): @MultiInputValue

15 | } 16 | @code { 17 | 18 | string MultiInputValue = ""; 19 | 20 | private WeatherForecast[] forecasts; 21 | private string[] summaries; 22 | protected override async Task OnInitializedAsync() 23 | { 24 | forecasts = await ForecastService.GetForecastAsync(DateTime.Now); 25 | summaries = forecasts.Select(item => item.Summary).ToArray(); 26 | } 27 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/PasswordTextBoxBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/bind-passwordtextbox" 2 | 3 | 4 | 5 |
6 |

Enter new text: @TextBoxValue

7 | 8 | @code { 9 | string TextBoxValue= "Your text"; 10 | 11 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/SwitchButtonBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/switchbutton-binding" 2 | 3 | 4 | 5 |
6 |

Switch button value radio button value: @SwitchButtonValue

7 | 8 | @code { 9 | public bool SwitchButtonValue = true; 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/TextAreaBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/textarea-binding" 2 | 3 | 4 | 5 |
6 |

Enter new text: @TextAreaValue

7 | 8 | @code { 9 | string TextAreaValue= "Your text"; 10 | 11 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Pages/TwoWayBinding/TextBoxBindingPage.razor: -------------------------------------------------------------------------------- 1 | @page "/textbox-binding" 2 | 3 | 4 | 5 |
6 |

Enter new text: @TextBoxValue

7 | 8 | @code { 9 | string TextBoxValue= "Your text"; 10 | 11 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net.Http; 3 | using System.Collections.Generic; 4 | using System.Threading.Tasks; 5 | using System.Text; 6 | using Microsoft.AspNetCore.Components.WebAssembly.Hosting; 7 | using Microsoft.Extensions.Configuration; 8 | using Microsoft.Extensions.DependencyInjection; 9 | using Microsoft.Extensions.Logging; 10 | using Smart.Blazor.Demos.Data; 11 | using Smart.Blazor; 12 | 13 | namespace Smart.Blazor.Demos 14 | { 15 | public class Program 16 | { 17 | public static async Task Main(string[] args) 18 | { 19 | var builder = WebAssemblyHostBuilder.CreateDefault(args); 20 | builder.RootComponents.Add("#app"); 21 | 22 | builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); 23 | builder.Services.AddSmart(); 24 | builder.Services.AddSingleton(); 25 | builder.Services.AddSingleton(); 26 | 27 | await builder.Build().RunAsync(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False 8 | False 9 | True 10 | Release 11 | Any CPU 12 | FileSystem 13 | bin\Release\netstandard2.1\publish\ 14 | FileSystem 15 | 16 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | <_PublishTargetUrl>C:\inetpub\wwwroot\Team\blazor\blazor-dev\dev-project-net2.1\Smart.Blazor.Demos\bin\Release\netstandard2.1\publish\ 8 | 9 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Properties/PublishProfiles/FolderProfile1.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False 8 | False 9 | True 10 | Release 11 | Any CPU 12 | FileSystem 13 | bin\Release\net5.0\browser-wasm\publish\ 14 | FileSystem 15 | 16 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Properties/PublishProfiles/FolderProfile1.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | <_PublishTargetUrl>C:\inetpub\wwwroot\Team\blazor\blazor-dev\dev-project-net2.1\Smart.Blazor.Demos\bin\Release\net5.0\browser-wasm\publish\ 8 | 9 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:41979", 7 | "sslPort": 44314 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", 15 | "environmentVariables": { 16 | "ASPNETCORE_ENVIRONMENT": "Development" 17 | } 18 | }, 19 | "Smart.Blazor.Demos": { 20 | "commandName": "Project", 21 | "dotnetRunMessages": "true", 22 | "launchBrowser": true, 23 | "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Shared/CodeView.razor: -------------------------------------------------------------------------------- 1 | @using System.Text.RegularExpressions; 2 | @inject IJSRuntime JSRuntime 3 | 4 |
@source
5 | 6 | @code { 7 | private ElementReference pre; 8 | private string source; 9 | 10 | [Parameter] 11 | public string PageName { get; set; } 12 | 13 | protected override async Task OnInitializedAsync() 14 | { 15 | var http = new HttpClient(); 16 | 17 | source = await http.GetStringAsync($"https://raw.githubusercontent.com/HTMLElements/smart-blazor/main/Pages/{PageName}"); 18 | source = Regex.Replace(source, "]*>\n", ""); 19 | } 20 | 21 | protected override async Task OnAfterRenderAsync(bool firstRender) 22 | { 23 | if (!String.IsNullOrEmpty(source)) 24 | { 25 | await JSRuntime.InvokeAsync("hljs.highlightBlock", pre); 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- 1 |  11 | 12 | @code { 13 | // Demonstrates how a parent component can supply parameters 14 | [Parameter] 15 | public string Title { get; set; } 16 | } 17 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/Smart.Blazor.Demos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using System.Net.Http.Json 3 | @using Microsoft.AspNetCore.Components.Forms 4 | @using Microsoft.AspNetCore.Components.Routing 5 | @using Microsoft.AspNetCore.Components.Web 6 | @using Microsoft.AspNetCore.Components.WebAssembly.Http 7 | @using Microsoft.JSInterop 8 | @using Smart.Blazor.Demos 9 | @using Smart.Blazor.Demos.Shared 10 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | @import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); 2 | 3 | html, body { 4 | font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 5 | } 6 | 7 | a, .btn-link { 8 | color: #0366d6; 9 | } 10 | 11 | .btn-primary { 12 | color: #fff; 13 | background-color: #1b6ec2; 14 | border-color: #1861ac; 15 | } 16 | 17 | .content { 18 | padding-top: 1.1rem; 19 | } 20 | 21 | .valid.modified:not([type=checkbox]) { 22 | outline: 1px solid #26b050; 23 | } 24 | 25 | .invalid { 26 | outline: 1px solid red; 27 | } 28 | 29 | .validation-message { 30 | color: red; 31 | } 32 | 33 | #blazor-error-ui { 34 | background: lightyellow; 35 | bottom: 0; 36 | box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); 37 | display: none; 38 | left: 0; 39 | padding: 0.6rem 1.25rem 0.7rem 1.25rem; 40 | position: fixed; 41 | width: 100%; 42 | z-index: 1000; 43 | } 44 | 45 | #blazor-error-ui .dismiss { 46 | cursor: pointer; 47 | position: absolute; 48 | right: 0.75rem; 49 | top: 0.5rem; 50 | } 51 | -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/images/csssprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/images/csssprites.png -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/images/csssprites_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/images/csssprites_white.png -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Waybury 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/Smart.Blazor.Demos/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/js/rrule.import.js: -------------------------------------------------------------------------------- 1 | import '../../common/rrule.min.js'; -------------------------------------------------------------------------------- /Smart.Blazor.Demos/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "date": "2018-05-06", 4 | "temperatureC": 1, 5 | "summary": "Freezing" 6 | }, 7 | { 8 | "date": "2018-05-07", 9 | "temperatureC": 14, 10 | "summary": "Bracing" 11 | }, 12 | { 13 | "date": "2018-05-08", 14 | "temperatureC": -13, 15 | "summary": "Freezing" 16 | }, 17 | { 18 | "date": "2018-05-09", 19 | "temperatureC": -16, 20 | "summary": "Balmy" 21 | }, 22 | { 23 | "date": "2018-05-10", 24 | "temperatureC": -2, 25 | "summary": "Chilly" 26 | } 27 | ] 28 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "6.0.202" 4 | } 5 | } -------------------------------------------------------------------------------- /images/blazor-nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/images/blazor-nuget.png -------------------------------------------------------------------------------- /images/blazor-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/images/blazor-server.png -------------------------------------------------------------------------------- /images/blazor-webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTMLElements/smart-blazor/de7d181dda1b1ffd39e61b5b465a7d3a691c0cc3/images/blazor-webassembly.png --------------------------------------------------------------------------------