-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathDemoScreenshotSrcConstants.cs
More file actions
112 lines (99 loc) · 7.67 KB
/
DemoScreenshotSrcConstants.cs
File metadata and controls
112 lines (99 loc) · 7.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
namespace BlazorBootstrap.Demo.RCL;
public class DemoScreenshotSrcConstants
{
#region Fields and Constants
public const string DemoScreenshotSrcPrefix = $"{DemoStringConstants.StaticAssets_Images_Path}/screenshots/";
// Home
public const string Home = DemoScreenshotSrcPrefix + "home.png";
// Layout
public const string Demos_URL_Layout = DemoScreenshotSrcPrefix + "layout.png";
// Content
public const string Demos_URL_Icons = DemoScreenshotSrcPrefix + "icons.png";
public const string Demos_URL_Images = DemoScreenshotSrcPrefix + "images.png";
// Forms
public const string Demos_URL_Forms_Prefix = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_AutoComplete = DemoScreenshotSrcPrefix + "autocomplete.png";
public const string Demos_URL_CheckboxInput = DemoScreenshotSrcPrefix + "checkbox-input.png";
public const string Demos_URL_CurrencyInput = DemoScreenshotSrcPrefix + "currency-input.png";
public const string Demos_URL_DateInput = DemoScreenshotSrcPrefix + "date-input.png";
public const string Demos_URL_EnumInput = DemoScreenshotSrcPrefix + "enum-input.png"; // TODO: pending
public const string Demos_URL_NumberInput = DemoScreenshotSrcPrefix + "number-input.png";
public const string Demos_URL_PasswordInput = DemoScreenshotSrcPrefix + "password-input.png";
public const string Demos_URL_RadioInput = DemoScreenshotSrcPrefix + "radio-input.png";
public const string Demos_URL_RangeInput = DemoScreenshotSrcPrefix + "range-input.png";
public const string Demos_URL_SelectInput = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Switch = DemoScreenshotSrcPrefix + "switch.png";
public const string Demos_URL_TextAreaInput = DemoScreenshotSrcPrefix + "textarea-input.png";
public const string Demos_URL_TextInput = DemoScreenshotSrcPrefix + "text-input.png";
public const string Demos_URL_TimeInput = DemoScreenshotSrcPrefix + "time-input.png";
// Components
public const string Demos_URL_Accordion = DemoScreenshotSrcPrefix + "accordion.png";
public const string Demos_URL_Alerts = DemoScreenshotSrcPrefix + "alerts.png";
public const string Demos_URL_Badge = DemoScreenshotSrcPrefix + "badge.png";
public const string Demos_URL_Breadcrumb = DemoScreenshotSrcPrefix + "breadcrumb.png";
public const string Demos_URL_Buttons = DemoScreenshotSrcPrefix + "buttons.png";
public const string Demos_URL_Callout = DemoScreenshotSrcPrefix + "callout.png";
public const string Demos_URL_Card = DemoScreenshotSrcPrefix + "card.png";
public const string Demos_URL_Carousel = DemoScreenshotSrcPrefix + "carousel.png";
public const string Demos_URL_Charts = DemoScreenshotSrcPrefix + "charts.png";
public const string Demos_URL_Collapse = DemoScreenshotSrcPrefix + "collapse.png";
public const string Demos_URL_ConfirmDialog = DemoScreenshotSrcPrefix + "confirm-dialog.png";
public const string Demos_URL_Dropdown = DemoScreenshotSrcPrefix + "dropdown.png";
public const string Demos_URL_GoogleMap = DemoScreenshotSrcPrefix + "google-map.png";
#region Grid
public const string Demos_URL_Grid_Prefix = DemoScreenshotSrcPrefix + "grid.png";
public const string Demos_URL_Grid_Overview = DemoScreenshotSrcPrefix + "grid_fixed_header_freeze_columns.png";
public const string Demos_URL_Grid_Alignment = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_CustomCSSClass = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_DataBinding = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_DetailView = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Events = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Filters = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_FixedHeader = DemoScreenshotSrcPrefix + "grid_fixed_header_freeze_columns.png";
public const string Demos_URL_Grid_FreezeColumns = DemoScreenshotSrcPrefix + "grid_fixed_header_freeze_columns.png";
public const string Demos_URL_Grid_Settings = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_NestedGrid = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Paging = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Selection = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Sorting = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Summary = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_Translations = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_Grid_OtherExamples = DemoScreenshotSrcPrefix + "home.png";
#endregion Grid
public const string Demos_URL_Markdown = DemoScreenshotSrcPrefix + "markdown.png";
public const string Demos_URL_Modal = DemoScreenshotSrcPrefix + "modal.png";
public const string Demos_URL_Offcanvas = DemoScreenshotSrcPrefix + "offcanvas.png";
public const string Demos_URL_Pagination = DemoScreenshotSrcPrefix + "pagination.png";
public const string Demos_URL_PDFViewer = DemoScreenshotSrcPrefix + "pdf-viewer.png";
public const string Demos_URL_Placeholders = DemoScreenshotSrcPrefix + "placeholders.png";
public const string Demos_URL_Preload = DemoScreenshotSrcPrefix + "preload.png";
public const string Demos_URL_Progress = DemoScreenshotSrcPrefix + "progress.png";
public const string Demos_URL_Ribbon = DemoScreenshotSrcPrefix + "ribbon.png";
public const string Demos_URL_ScriptLoader = DemoScreenshotSrcPrefix + "script-loader.png";
public const string Demos_URL_Sidebar = DemoScreenshotSrcPrefix + "sidebar.png";
public const string Demos_URL_Sidebar2 = DemoScreenshotSrcPrefix + "sidebar2.png";
public const string Demos_URL_SortableList = DemoScreenshotSrcPrefix + "sortable-list.png";
public const string Demos_URL_Spinners = DemoScreenshotSrcPrefix + "spinners.png";
public const string Demos_URL_Tabs = DemoScreenshotSrcPrefix + "tabs.png";
public const string Demos_URL_ThemeSwitcher = DemoScreenshotSrcPrefix + "theme-switcher.png";
public const string Demos_URL_Toasts = DemoScreenshotSrcPrefix + "toasts.png";
public const string Demos_URL_Tooltips = DemoScreenshotSrcPrefix + "tooltips.png";
// Data Visualization
public const string Demos_URL_Charts_Prefix = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_BarChart = DemoScreenshotSrcPrefix + "bar-chart.png";
public const string Demos_URL_DoughnutChart = DemoScreenshotSrcPrefix + "doughnut-chart.png";
public const string Demos_URL_LineChart = DemoScreenshotSrcPrefix + "line-chart.png";
public const string Demos_URL_PieChart = DemoScreenshotSrcPrefix + "pie-chart.png";
public const string Demos_URL_PolarAreaChart = DemoScreenshotSrcPrefix + "polar-area-chart.png";
public const string Demos_URL_RadarChart = DemoScreenshotSrcPrefix + "radar-chart.png";
public const string Demos_URL_ScatterChart = DemoScreenshotSrcPrefix + "scatter-chart.png";
// Services
public const string Demos_URL_Services_Prefix = DemoScreenshotSrcPrefix + "home.png"; // TODO: update screenshot
public const string Demos_URL_BreadcrumbService = DemoScreenshotSrcPrefix + "breadcrumb.png";
public const string Demos_URL_ModalService = DemoScreenshotSrcPrefix + "modal.png";
public const string Demos_URL_PreloadService = DemoScreenshotSrcPrefix + "preload.png";
// Utilities
public const string Demos_URL_Utils_Prefix = DemoScreenshotSrcPrefix + "home.png";
public const string Demos_URL_ColorUtils = DemoScreenshotSrcPrefix + "home.png";
#endregion
}