SYMBOL INDEX (1270 symbols across 101 files) FILE: MicrofrontendTemplate/Portal/client/components/Login.js method onConnect (line 46) | onConnect() { FILE: MicrofrontendTemplate/Portal/client/components/Portal.js method onConnect (line 43) | onConnect() { method addApp (line 47) | addApp(newApp) { function updatePortal (line 72) | function updatePortal(app) { FILE: MicrofrontendTemplate/Portal/client/loader.js function importApp (line 33) | function importApp(app) { FILE: MicrofrontendTemplate/Portal/server/Controllers/LoginController.cs class LoginController (line 10) | [Route("api/[controller]")] method LoginController (line 17) | public LoginController(IHttpClientFactory httpClientFactory, IOptions<... method Post (line 23) | [HttpPost] method Validate (line 40) | [HttpPost] FILE: MicrofrontendTemplate/Portal/server/Program.cs class Program (line 7) | public class Program method Main (line 9) | public static void Main(string[] args) method BuildWebHost (line 14) | public static IWebHost BuildWebHost(string[] args) => FILE: MicrofrontendTemplate/Portal/server/Startup.cs class Startup (line 15) | public class Startup method Startup (line 19) | public Startup(IConfiguration config) method ConfigureServices (line 24) | public void ConfigureServices(IServiceCollection services) method Configure (line 53) | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) FILE: MicrofrontendTemplate/ReactDashboardApp/client/components/ActivitiesCard.js class ActivitiesCard (line 51) | class ActivitiesCard extends Element { method render (line 52) | render() { FILE: MicrofrontendTemplate/ReactDashboardApp/client/components/InfoCard.js class InfoCard (line 23) | class InfoCard extends Element { method render (line 24) | render() { FILE: MicrofrontendTemplate/ReactDashboardApp/server/Program.cs class Program (line 6) | public class Program method Main (line 8) | public static void Main(string[] args) method BuildWebHost (line 13) | public static IWebHost BuildWebHost(string[] args) => FILE: MicrofrontendTemplate/ReactDashboardApp/server/Services/MockLiveDataService.cs type ILiveDataService (line 9) | public interface ILiveDataService class Activity (line 21) | public class Activity class Customer (line 37) | public class Customer class MockLiveDataService (line 43) | public class MockLiveDataService : ILiveDataService method MockLiveDataService (line 63) | public MockLiveDataService() method GetRandomCustomer (line 123) | private Customer GetRandomCustomer() FILE: MicrofrontendTemplate/ReactDashboardApp/server/Startup.cs class Startup (line 19) | public class Startup method Startup (line 23) | public Startup(IConfiguration config) method ConfigureServices (line 28) | public void ConfigureServices(IServiceCollection services) method Configure (line 40) | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) FILE: MicrofrontendTemplate/ReactDashboardApp/server/ViewModels/Dashboard.cs class Dashboard (line 12) | [Authorize] method Dashboard (line 19) | public Dashboard(ILiveDataService liveDataService) method Dispose (line 64) | public override void Dispose() FILE: MicrofrontendTemplate/ReactFormApp/client/components/Form.js class CustomerForm (line 7) | class CustomerForm extends React.Component { method render (line 14) | render() { FILE: MicrofrontendTemplate/ReactFormApp/client/components/NewCustomerDialog.js class NewCustomerDialog (line 4) | class NewCustomerDialog extends React.Component { method render (line 11) | render() { FILE: MicrofrontendTemplate/ReactFormApp/server/Program.cs class Program (line 6) | public class Program method Main (line 8) | public static void Main(string[] args) method BuildWebHost (line 13) | public static IWebHost BuildWebHost(string[] args) => FILE: MicrofrontendTemplate/ReactFormApp/server/Services/Customer.cs type NamePrefix (line 8) | public enum NamePrefix type NameSuffix (line 16) | public enum NameSuffix type PrimaryPhone (line 26) | public enum PrimaryPhone type State (line 34) | public enum State class Customer (line 54) | public class Customer class NameInfo (line 62) | public class NameInfo class AddressInfo (line 73) | public class AddressInfo class PhoneInfo (line 84) | public class PhoneInfo FILE: MicrofrontendTemplate/ReactFormApp/server/Services/CustomerFormData.cs class CustomerFormData (line 7) | public class CustomerFormData FILE: MicrofrontendTemplate/ReactFormApp/server/Services/CustomerRepository.cs type ICustomerRepository (line 12) | public interface ICustomerRepository method GetAll (line 14) | IEnumerable GetAll(); method Get (line 16) | Customer Get(int id); method Add (line 18) | Customer Add(CustomerFormData formData); method Update (line 20) | Customer Update(int id, CustomerFormData formData); class CustomerRepository (line 23) | public class CustomerRepository : ICustomerRepository method GetAll (line 27) | public IEnumerable GetAll() => _mockData; method Get (line 29) | public Customer Get(int id) => _mockData.FirstOrDefault(x => x.Id == id); method Add (line 31) | public Customer Add(CustomerFormData formData) method Update (line 49) | public Customer Update(int id, CustomerFormData formData) method Update (line 59) | private void Update(object record, StringDictionary newValues) method GenerateMockData (line 66) | private static IList GenerateMockData() FILE: MicrofrontendTemplate/ReactFormApp/server/Startup.cs class Startup (line 19) | public class Startup method Startup (line 23) | public Startup(IConfiguration config) method ConfigureServices (line 28) | public void ConfigureServices(IServiceCollection services) method Configure (line 40) | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) FILE: MicrofrontendTemplate/ReactFormApp/server/ViewModels/AddressForm.cs class AddressForm (line 9) | [Authorize] method AddressForm (line 14) | public AddressForm() FILE: MicrofrontendTemplate/ReactFormApp/server/ViewModels/CustomerForm.cs class CustomerForm (line 10) | [Authorize] class Contact (line 16) | public class Contact method CustomerForm (line 26) | public CustomerForm(ICustomerRepository customerRepository) method OnSubVMCreated (line 51) | public override void OnSubVMCreated(BaseVM subVM) method Save (line 65) | private bool Save(CustomerFormData formData) method ToContact (line 75) | private Contact ToContact(Customer customer) => new Contact method UpdateContact (line 85) | private void UpdateContact(Customer newCustomer) FILE: MicrofrontendTemplate/ReactFormApp/server/ViewModels/NewCustomerForm.cs class NewCustomerForm (line 9) | [Authorize] method NewCustomerForm (line 16) | public NewCustomerForm(ICustomerRepository customerRepository) method Dispose (line 24) | public override void Dispose() method Save (line 29) | public Customer Save(CustomerFormData formData) FILE: MicrofrontendTemplate/ReactFormApp/server/ViewModels/PersonForm.cs class PersonForm (line 9) | [Authorize] method PersonForm (line 14) | public PersonForm() FILE: MicrofrontendTemplate/ReactFormApp/server/ViewModels/PhoneForm.cs class PhoneForm (line 9) | [Authorize] method PhoneForm (line 14) | public PhoneForm() FILE: MicrofrontendTemplate/ReactTodoApp/client/components/TodoList.js class TodoList (line 5) | class TodoList extends React.Component { method constructor (line 6) | constructor() { method componentDidMount (line 15) | componentDidMount() { method componentWillUnmount (line 19) | componentWillUnmount() { method render (line 23) | render() { FILE: MicrofrontendTemplate/ReactTodoApp/server/Program.cs class Program (line 6) | public class Program method Main (line 8) | public static void Main(string[] args) method BuildWebHost (line 13) | public static IWebHost BuildWebHost(string[] args) => FILE: MicrofrontendTemplate/ReactTodoApp/server/Startup.cs class Startup (line 18) | public class Startup method Startup (line 22) | public Startup(IConfiguration config) method ConfigureServices (line 27) | public void ConfigureServices(IServiceCollection services) method Configure (line 35) | public void Configure(IApplicationBuilder app, IHostingEnvironment env) FILE: MicrofrontendTemplate/ReactTodoApp/server/ViewModels/TodoList.cs class TodoList (line 10) | [Authorize] class Todo (line 15) | public class Todo FILE: MicrofrontendTemplate/Shared/IdentityServer/IdentityServerClient.cs class IdentityServerClient (line 12) | public class IdentityServerClient method RequestClientCredentialsTokenAsync (line 14) | public static async Task RequestClientCredentialsTokenA... method IntrospectTokenAsync (line 26) | public static async Task IntrospectTokenAsync(H... method GetIssuerSigningKeysAsync (line 38) | public static async Task> GetIssuerSigningKey... FILE: MicrofrontendTemplate/Shared/IdentityServer/IdentityServerConfig.cs class IdentityServerConfig (line 6) | public class IdentityServerConfig method GetClients (line 12) | public static IEnumerable GetClients() method GetApiResources (line 26) | public static IEnumerable GetApiResources() FILE: MicrofrontendTemplate/Shared/IdentityServer/IdentityServerSettings.cs class IdentityServerSettings (line 3) | public class IdentityServerSettings FILE: MicrofrontendTemplate/VueTodoApp/server/Program.cs class Program (line 6) | public class Program method Main (line 8) | public static void Main(string[] args) method BuildWebHost (line 13) | public static IWebHost BuildWebHost(string[] args) => FILE: MicrofrontendTemplate/VueTodoApp/server/Startup.cs class Startup (line 18) | public class Startup method Startup (line 22) | public Startup(IConfiguration config) method ConfigureServices (line 27) | public void ConfigureServices(IServiceCollection services) method Configure (line 35) | public void Configure(IApplicationBuilder app, IHostingEnvironment env) FILE: MicrofrontendTemplate/VueTodoApp/server/ViewModels/TodoList.cs class TodoList (line 10) | [Authorize] class Todo (line 15) | public class Todo FILE: ReactTemplate/content/client/auth.ts class Auth (line 1) | class Auth { method signIn (line 4) | signIn(username: string, password: string): Promise { method signOut (line 20) | signOut() { method getAccessToken (line 25) | getAccessToken(): string { method hasAccessToken (line 29) | hasAccessToken(): boolean { FILE: ReactTemplate/content/client/components/BasePage.tsx type IBasePageProps (line 6) | interface IBasePageProps { function BasePage (line 12) | function BasePage({ title, navigation, children }: IBasePageProps) { FILE: ReactTemplate/content/client/components/Header.tsx type IHeaderProps (line 35) | interface IHeaderProps { function Header (line 40) | function Header({ styles, onSidebarToggle }: IHeaderProps) { FILE: ReactTemplate/content/client/components/Sidebar.tsx type ISidebarProps (line 60) | interface ISidebarProps { function Sidebar (line 69) | function Sidebar({ vm, logoTitle, open, userName, userAvatarUrl, menus }... FILE: ReactTemplate/content/client/components/dashboard/InfoBox.tsx type IInfoBoxProps (line 40) | interface IInfoBoxProps { function InfoBox (line 47) | function InfoBox({ icon, color, title, value }: IInfoBoxProps) { FILE: ReactTemplate/content/client/components/dashboard/RecentActivities.tsx class ActivityModel (line 29) | class ActivityModel { type IRecentActivitiesProps (line 35) | interface IRecentActivitiesProps { function RecentActivities (line 40) | function RecentActivities({ vm, data }: IRecentActivitiesProps) { FILE: ReactTemplate/content/client/components/dashboard/ServerUsage.tsx type IServerUsageProps (line 42) | interface IServerUsageProps { function ServerUsage (line 47) | function ServerUsage(props: IServerUsageProps) { FILE: ReactTemplate/content/client/components/dashboard/Traffic.tsx type ITrafficProps (line 36) | interface ITrafficProps { function Traffic (line 40) | function Traffic(props: ITrafficProps) { FILE: ReactTemplate/content/client/components/dashboard/Utilization.tsx type IUtilizationProps (line 46) | interface IUtilizationProps { function Utilization (line 51) | function Utilization(props: IUtilizationProps) { FILE: ReactTemplate/content/client/components/table/InlineEdit.tsx type IInlineEditProps (line 6) | interface IInlineEditProps { class InlineEditState (line 11) | class InlineEditState { class InlineEdit (line 17) | class InlineEdit extends React.Component { method constructor (line 27) | constructor(props: IAppLayoutProps) { method componentWillUnmount (line 41) | componentWillUnmount() { method componentDidUpdate (line 45) | componentDidUpdate(prevProps: IAppLayoutProps) { method render (line 49) | render() { FILE: ReactTemplate/content/client/views/Dashboard.tsx class DashboardModel (line 18) | class DashboardModel { class Dashboard (line 31) | class Dashboard extends React.Component { method constructor (line 36) | constructor(props: any) { method componentWillUnmount (line 47) | componentWillUnmount() { method render (line 51) | render() { FILE: ReactTemplate/content/client/views/FormPage.tsx class EmployeeModel (line 28) | class EmployeeModel { class FormPageModel (line 34) | class FormPageModel { class FormPageState (line 41) | class FormPageState extends FormPageModel { class FormPage (line 45) | class FormPage extends React.Component { method constructor (line 51) | constructor(props: any) { method componentWillUnmount (line 58) | componentWillUnmount() { method render (line 62) | render() { FILE: ReactTemplate/content/client/views/LoginPage.tsx type ILoginPageProps (line 46) | interface ILoginPageProps { function LoginPage (line 50) | function LoginPage({ onAuthenticated }: ILoginPageProps) { FILE: ReactTemplate/content/client/views/TablePage.tsx class EmployeeModel (line 31) | class EmployeeModel { class TablePageModel (line 37) | class TablePageModel { class TablePageState (line 45) | class TablePageState extends TablePageModel { class TablePage (line 49) | class TablePage extends React.Component { method constructor (line 54) | constructor(props: any) { method componentWillUnmount (line 60) | componentWillUnmount() { method render (line 64) | render() { FILE: ReactTemplate/content/server/AuthServer.cs class AuthServer (line 11) | public static class AuthServer method AddAuthenticationServer (line 16) | public static void AddAuthenticationServer(this IServiceCollection ser... FILE: ReactTemplate/content/server/Services/EmployeeService.cs type IEmployeeService (line 6) | public interface IEmployeeService method GetAll (line 8) | IList GetAll(); method GetById (line 10) | EmployeeModel GetById(int id); method Add (line 12) | int Add(EmployeeModel record); method Update (line 14) | void Update(EmployeeModel record); method Delete (line 16) | void Delete(int id); class EmployeeModel (line 19) | public class EmployeeModel class EmployeeService (line 28) | public class EmployeeService : IEmployeeService method EmployeeService (line 33) | public EmployeeService() method GetAll (line 39) | public IList GetAll() => _employees; method GetById (line 41) | public EmployeeModel GetById(int id) => _employees.FirstOrDefault(i =>... method Add (line 43) | public int Add(EmployeeModel record) method Update (line 50) | public void Update(EmployeeModel record) method Delete (line 57) | public void Delete(int id) => _employees.Remove(_employees.FirstOrDefa... method GetEmbeddedResource (line 59) | private string GetEmbeddedResource(string resourceName) FILE: ReactTemplate/content/server/Services/MockLiveDataService.cs type ILiveDataService (line 5) | public interface ILiveDataService class Activity (line 17) | public class Activity class MockLiveDataService (line 24) | public class MockLiveDataService : ILiveDataService method MockLiveDataService (line 52) | public MockLiveDataService(IEmployeeService employeeService) method GetRandomEmployee (line 112) | private EmployeeModel GetRandomEmployee(IEmployeeService employeeService) FILE: ReactTemplate/content/server/ViewModels/AppLayout.cs class AppLayout (line 8) | [Authorize] type Route (line 11) | private enum Route method AppLayout (line 33) | public AppLayout(IPrincipalAccessor principalAccessor) FILE: ReactTemplate/content/server/ViewModels/Dashboard.cs class Dashboard (line 8) | [Authorize] class Activity (line 13) | public class Activity method Dashboard (line 25) | public Dashboard(ILiveDataService liveDataService) method Dispose (line 58) | public override void Dispose() FILE: ReactTemplate/content/server/ViewModels/Form.cs class Form (line 7) | [Authorize] class EmployeeInfo (line 12) | public class EmployeeInfo class SavedEmployeeInfo (line 19) | public class SavedEmployeeInfo method Form (line 71) | public Form(IEmployeeService employeeService) method LoadEmployee (line 82) | private void LoadEmployee(int id) FILE: ReactTemplate/content/server/ViewModels/Table.cs class Table (line 9) | [Authorize] class EmployeeInfo (line 15) | public class EmployeeInfo method Table (line 117) | public Table(IEmployeeService employeeService) method Paginate (line 122) | private IEnumerable Paginate(IEnumerable e... method GetPageCount (line 134) | private int GetPageCount(int records) => (int)Math.Ceiling(records / (... FILE: _archive/HelloWorld/HelloWorld.cs class HelloWorld (line 7) | public class HelloWorld : BaseVM class Person (line 9) | public class Person method HelloWorld (line 19) | public HelloWorld() method Dispose (line 28) | public override void Dispose() => _timer.Dispose(); FILE: _archive/HelloWorld/Program.cs class Program (line 13) | public class Program method Main (line 15) | public static void Main(string[] args) method CreateWebHostBuilder (line 20) | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => FILE: _archive/HelloWorld/Startup.cs class Startup (line 12) | public class Startup method ConfigureServices (line 14) | public void ConfigureServices(IServiceCollection services) method Configure (line 21) | public void Configure(IApplicationBuilder app) FILE: _archive/HelloWorld/src/HelloWorld.jsx class HelloWorld (line 4) | class HelloWorld extends React.Component { method constructor (line 5) | constructor(props) { method render (line 15) | render() { FILE: _archive/HelloWorld/wwwroot/bundle.js function hotDisposeChunk (line 2) | function hotDisposeChunk(chunkId) { function hotDownloadUpdateChunk (line 13) | function hotDownloadUpdateChunk(chunkId) { function hotDownloadManifest (line 23) | function hotDownloadManifest(requestTimeout) { function hotCreateRequire (line 77) | function hotCreateRequire(moduleId) { function hotCreateModule (line 153) | function hotCreateModule(moduleId) { function hotSetStatus (line 216) | function hotSetStatus(newStatus) { function toModuleId (line 233) | function toModuleId(id) { function hotCheck (line 238) | function hotCheck(apply) { function hotAddUpdateChunk (line 280) | function hotAddUpdateChunk(chunkId, moreModules) { function hotEnsureUpdateChunk (line 294) | function hotEnsureUpdateChunk(chunkId) { function hotUpdateDownloaded (line 304) | function hotUpdateDownloaded() { function hotApply (line 336) | function hotApply(options) { function __webpack_require__ (line 708) | function __webpack_require__(moduleId) { FILE: _archive/LiveChart/LiveChart.cs class LiveChart (line 8) | public class LiveChart : BaseVM method LiveChart (line 13) | public LiveChart() method Dispose (line 28) | public override void Dispose() => _subscription.Dispose(); FILE: _archive/LiveChart/Program.cs class Program (line 13) | public class Program method Main (line 15) | public static void Main(string[] args) method CreateWebHostBuilder (line 20) | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => FILE: _archive/LiveChart/Startup.cs class Startup (line 12) | public class Startup method ConfigureServices (line 14) | public void ConfigureServices(IServiceCollection services) method Configure (line 21) | public void Configure(IApplicationBuilder app) FILE: _archive/LiveChart/src/LiveChart.jsx class LiveChart (line 5) | class LiveChart extends React.Component { method constructor (line 6) | constructor(props) { method componentWillUnmount (line 12) | componentWillUnmount() { method shouldComponentUpdate (line 16) | shouldComponentUpdate(_, nextState) { method render (line 24) | render() { FILE: _archive/LiveChart/wwwroot/bundle.js function hotDisposeChunk (line 2) | function hotDisposeChunk(chunkId) { function hotDownloadUpdateChunk (line 13) | function hotDownloadUpdateChunk(chunkId) { function hotDownloadManifest (line 23) | function hotDownloadManifest(requestTimeout) { function hotCreateRequire (line 77) | function hotCreateRequire(moduleId) { function hotCreateModule (line 153) | function hotCreateModule(moduleId) { function hotSetStatus (line 216) | function hotSetStatus(newStatus) { function toModuleId (line 233) | function toModuleId(id) { function hotCheck (line 238) | function hotCheck(apply) { function hotAddUpdateChunk (line 280) | function hotAddUpdateChunk(chunkId, moreModules) { function hotEnsureUpdateChunk (line 294) | function hotEnsureUpdateChunk(chunkId) { function hotUpdateDownloaded (line 304) | function hotUpdateDownloaded() { function hotApply (line 336) | function hotApply(options) { function __webpack_require__ (line 708) | function __webpack_require__(moduleId) { FILE: _archive/ReactTemplateTS/content/client/auth.tsx class Auth (line 1) | class Auth { method signIn (line 4) | signIn(username, password) { method signOut (line 20) | signOut() { method getAccessToken (line 25) | getAccessToken() { method hasAccessToken (line 29) | hasAccessToken() { FILE: _archive/ReactTemplateTS/content/client/components/Header.tsx type Props (line 15) | type Props = { FILE: _archive/ReactTemplateTS/content/client/components/Sidebar.tsx type Props (line 10) | type Props = { FILE: _archive/ReactTemplateTS/content/client/components/dashboard/InfoBox.tsx type Props (line 6) | type Props = { class InfoBox (line 12) | class InfoBox extends React.Component { method render (line 13) | render() { FILE: _archive/ReactTemplateTS/content/client/components/table/InlineEdit.tsx type State (line 7) | type State = { type Props (line 12) | type Props = { class InlineEdit (line 16) | class InlineEdit extends React.Component { method constructor (line 17) | constructor(props) { method render (line 25) | render() { FILE: _archive/ReactTemplateTS/content/client/views/App.tsx type State (line 6) | type State = { type Props (line 9) | type Props = { class App (line 12) | class App extends React.Component { method constructor (line 13) | constructor(props) { method render (line 18) | render(): JSX.Element { FILE: _archive/ReactTemplateTS/content/client/views/AppLayout.tsx type State (line 10) | type State = {}; type Props (line 11) | type Props = { class AppLayout (line 17) | class AppLayout extends React.Component { method constructor (line 19) | constructor(props) { method componentWillUnmount (line 34) | componentWillUnmount() { method componentWillReceiveProps (line 38) | componentWillReceiveProps(nextProps) { method render (line 44) | render() { FILE: _archive/ReactTemplateTS/content/client/views/Dashboard.tsx type State (line 17) | type State = { type Props (line 29) | type Props = {}; class Dashboard (line 30) | class Dashboard extends React.Component { method constructor (line 33) | constructor(props) { method componentWillUnmount (line 53) | componentWillUnmount() { method render (line 57) | render() { FILE: _archive/ReactTemplateTS/content/client/views/FormPage.tsx type State (line 14) | type State = { type Props (line 21) | type Props = {}; class FormPage (line 22) | class FormPage extends React.Component { method constructor (line 26) | constructor(props) { method componentWillUnmount (line 40) | componentWillUnmount() { method render (line 44) | render() { FILE: _archive/ReactTemplateTS/content/client/views/LoginPage.tsx type Props (line 9) | type Props = { type State (line 12) | type State = { class LoginPage (line 17) | class LoginPage extends React.Component { method constructor (line 18) | constructor(props) { method render (line 23) | render() { FILE: _archive/ReactTemplateTS/content/client/views/TablePage.tsx type Props (line 18) | type Props = {}; type State (line 19) | type State = { class TablePage (line 26) | class TablePage extends React.Component { method constructor (line 29) | constructor(state, props) { method componentWillUnmount (line 43) | componentWillUnmount() { method render (line 47) | render() { FILE: _archive/ReactTemplateTS/content/server/AuthServer.cs class AuthServer (line 13) | public static class AuthServer method AddAuthenticationServer (line 18) | public static void AddAuthenticationServer(this IServiceCollection ser... FILE: _archive/ReactTemplateTS/content/server/Program.cs class Program (line 13) | public class Program method Main (line 15) | public static void Main(string[] args) method BuildWebHost (line 20) | public static IWebHost BuildWebHost(string[] args) => FILE: _archive/ReactTemplateTS/content/server/Services/EmployeeService.cs type IEmployeeService (line 10) | public interface IEmployeeService method GetAll (line 12) | IList GetAll(); method GetById (line 13) | EmployeeModel GetById(int id); method Add (line 14) | int Add(EmployeeModel record); method Update (line 15) | void Update(EmployeeModel record); method Delete (line 16) | void Delete(int id); class EmployeeModel (line 19) | public class EmployeeModel class EmployeeService (line 28) | public class EmployeeService : IEmployeeService method EmployeeService (line 33) | public EmployeeService() method GetAll (line 39) | public IList GetAll() => _employees; method GetById (line 41) | public EmployeeModel GetById(int id) => _employees.FirstOrDefault(i =>... method Add (line 43) | public int Add(EmployeeModel record) method Update (line 50) | public void Update(EmployeeModel record) method Delete (line 57) | public void Delete(int id) => _employees.Remove(_employees.FirstOrDefa... method GetEmbeddedResource (line 59) | private string GetEmbeddedResource(string resourceName) FILE: _archive/ReactTemplateTS/content/server/Services/MockLiveDataService.cs type ILiveDataService (line 8) | public interface ILiveDataService class Activity (line 20) | public class Activity class MockLiveDataService (line 27) | public class MockLiveDataService : ILiveDataService method MockLiveDataService (line 55) | public MockLiveDataService(IEmployeeService employeeService) method GetRandomEmployee (line 115) | private EmployeeModel GetRandomEmployee(IEmployeeService employeeService) FILE: _archive/ReactTemplateTS/content/server/Startup.cs class Startup (line 15) | public class Startup method ConfigureServices (line 17) | public void ConfigureServices(IServiceCollection services) method Configure (line 29) | public void Configure(IApplicationBuilder app) FILE: _archive/ReactTemplateTS/content/server/ViewModels/AppLayout.cs class AppLayout (line 10) | [Authorize] type Route (line 13) | private enum Route method AppLayout (line 35) | public AppLayout(IPrincipalAccessor principalAccessor) FILE: _archive/ReactTemplateTS/content/server/ViewModels/Dashboard.cs class Dashboard (line 11) | [Authorize] class Activity (line 16) | public class Activity method Dashboard (line 28) | public Dashboard(ILiveDataService liveDataService) method Dispose (line 61) | public override void Dispose() FILE: _archive/ReactTemplateTS/content/server/ViewModels/Form.cs class Form (line 10) | [Authorize] class EmployeeInfo (line 15) | public class EmployeeInfo class SavedEmployeeInfo (line 22) | public class SavedEmployeeInfo method Form (line 74) | public Form(IEmployeeService employeeService) method LoadEmployee (line 85) | private void LoadEmployee(int id) FILE: _archive/ReactTemplateTS/content/server/ViewModels/Table.cs class Table (line 9) | [Authorize] class EmployeeInfo (line 15) | public class EmployeeInfo method Table (line 116) | public Table(IEmployeeService employeeService) method Paginate (line 121) | private IEnumerable Paginate(IEnumerable e... method GetPageCount (line 133) | private int GetPageCount(int records) => (int)Math.Ceiling(records / (... FILE: _archive/Routing/DotNetify.ServerSideRender.cs class ServerSideRender (line 9) | public static class ServerSideRender method GetInitialStates (line 11) | public static string GetInitialStates(ref string path, Type entryVMType) FILE: _archive/Routing/Program.cs class Program (line 6) | public class Program method Main (line 8) | public static void Main(string[] args) method CreateWebHostBuilder (line 13) | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => FILE: _archive/Routing/Startup.cs class Startup (line 12) | public class Startup method ConfigureServices (line 14) | public void ConfigureServices(IServiceCollection services) method Configure (line 22) | public void Configure(IApplicationBuilder app, INodeServices nodeServi... FILE: _archive/Routing/ViewModels/Index.cs class Index (line 8) | public class Index : BaseVM, IRoutable method Index (line 19) | public Index() FILE: _archive/Routing/ViewModels/Page1.cs class Page1 (line 8) | public class Page1 : BaseVM, IRoutable method Page1 (line 16) | public Page1() FILE: _archive/Routing/ViewModels/Page2.cs class Page2 (line 9) | public class Page2 : BaseVM, IRoutable method Page2 (line 19) | public Page2() class Page2Item (line 29) | public class Page2Item : BaseVM, IRoutable method Page2Item (line 34) | public Page2Item() FILE: _archive/Routing/src/Index.js function defineProperties (line 7) | function defineProperties(target, props) { for (var i = 0; i < props.len... function _interopRequireDefault (line 11) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function _classCallCheck (line 13) | function _classCallCheck(instance, Constructor) { if (!(instance instanc... function _inherits (line 15) | function _inherits(subClass, superClass) { if (typeof superClass !== 'fu... function Index (line 30) | function Index(props) { function Home (line 84) | function Home() { FILE: _archive/Routing/src/Index.jsx class Index (line 5) | class Index extends React.Component { method constructor (line 6) | constructor(props) { method componentWillUnmount (line 13) | componentWillUnmount() { method render (line 16) | render() { class Home (line 33) | class Home extends React.Component { method render (line 34) | render() { FILE: _archive/Routing/wwwroot/Page1.js function defineProperties (line 3) | function defineProperties(target, props) { for (var i = 0; i < props.len... function _classCallCheck (line 7) | function _classCallCheck(instance, Constructor) { if (!(instance instanc... function _inherits (line 9) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu... function Page1 (line 14) | function Page1(props) { function Page1A (line 81) | function Page1A() { function Page1B (line 113) | function Page1B() { FILE: _archive/Routing/wwwroot/Page1.jsx class Page1 (line 1) | class Page1 extends React.Component { method constructor (line 2) | constructor(props) { method componentWillUnmount (line 8) | componentWillUnmount() { method render (line 12) | render() { class Page1A (line 36) | class Page1A extends React.Component { method render (line 37) | render() { class Page1B (line 47) | class Page1B extends React.Component { method render (line 48) | render() { FILE: _archive/Routing/wwwroot/Page2.js function defineProperties (line 3) | function defineProperties(target, props) { for (var i = 0; i < props.len... function _classCallCheck (line 7) | function _classCallCheck(instance, Constructor) { if (!(instance instanc... function _inherits (line 9) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu... function Page2 (line 14) | function Page2(props) { function Page2Item (line 104) | function Page2Item(props) { FILE: _archive/Routing/wwwroot/Page2.jsx class Page2 (line 1) | class Page2 extends React.Component { method constructor (line 2) | constructor(props) { method componentWillUnmount (line 22) | componentWillUnmount() { method render (line 26) | render() { class Page2Item (line 63) | class Page2Item extends React.Component { method constructor (line 64) | constructor(props) { method componentWillUnmount (line 69) | componentWillUnmount() { method render (line 72) | render() { FILE: _archive/Routing/wwwroot/bundle.js function t (line 1) | function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{... function n (line 1) | function n(){throw new Error("setTimeout has not been defined")} function o (line 1) | function o(){throw new Error("clearTimeout has not been defined")} function r (line 1) | function r(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s... function i (line 1) | function i(e){if(d===clearTimeout)return clearTimeout(e);if((d===o||!d)&... function a (line 1) | function a(){m&&f&&(m=!1,f.length?h=f.concat(h):v=-1,h.length&&s())} function s (line 1) | function s(){if(!m){var e=r(a);m=!0;for(var t=h.length;t;){for(f=h,h=[];... function u (line 1) | function u(e,t){this.fun=e,this.array=t} function l (line 1) | function l(){} function n (line 1) | function n(e,t,n,r,i,a,s,u){if(o(t),!e){var l;if(void 0===t)l=new Error(... function o (line 1) | function o(e){for(var t=arguments.length-1,n="Minified React error #"+e+... function o (line 1) | function o(e){return e&&e.__esModule?e:{default:e}} function e (line 1) | function e(e,t){for(var n=0;n-1||("p... function r (line 6) | function r(e,n,o){c.eventNameDispatchConfigs.hasOwnProperty(o)&&("produc... function i (line 6) | function i(e,n,o){if(c.registrationNameModules[e]&&("production"!==t.env... function o (line 6) | function o(e){return Object.prototype.hasOwnProperty.call(e,m)||(e[m]=f+... function o (line 6) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 6) | function o(e){var t=""+e,n=i.exec(t);if(!n)return t;var o,r="",a=0,s=0;f... function r (line 6) | function r(e){return"boolean"==typeof e||"number"==typeof e?""+e:o(e)} function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 6) | function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ... function i (line 6) | function i(e,t){if(!e)throw new ReferenceError("this hasn't been initial... function a (line 6) | function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S... function e (line 6) | function e(e,t){for(var n=0;nn?n:e} function i (line 9) | function i(e){var t=e.type,n=e.values;if(t.indexOf("rgb")>-1)for(var o=0... function a (line 9) | function a(e){if(4===e.length){for(var t="#",n=1;n-1){var t=e.values.map(fun... function c (line 9) | function c(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[... function d (line 9) | function d(e,t){return e=s(e),t=r(t,0,1),"rgb"!==e.type&&"hsl"!==e.type|... function p (line 9) | function p(e,t){if(e=s(e),t=r(t,0,1),e.type.indexOf("hsl")>-1)e.values[2... function f (line 9) | function f(e,t){if(e=s(e),t=r(t,0,1),e.type.indexOf("hsl")>-1)e.values[2... function o (line 9) | function o(e,t){return Array.isArray(t)&&(t=t[1]),t?t.nextSibling:e.firs... function r (line 9) | function r(e,t,n){c.insertTreeBefore(e,t,n)} function i (line 9) | function i(e,t,n){Array.isArray(t)?s(e,t[0],t[1],n):y(e,t,n)} function a (line 9) | function a(e,t){if(Array.isArray(t)){var n=t[1];t=t[0],u(e,t,n),e.remove... function s (line 9) | function s(e,t,n,o){for(var r=t;;){var i=r.nextSibling;if(y(e,r,o),r===n... function u (line 9) | function u(e,t,n){for(;;){var o=t.nextSibling;if(o===n)break;e.removeChi... function l (line 9) | function l(e,n,o){var r=e.parentNode,i=e.nextSibling;i===n?o&&y(r,docume... function o (line 9) | function o(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel... function r (line 9) | function r(e){return"topMouseMove"===e||"topTouchMove"===e} function i (line 9) | function i(e){return"topMouseDown"===e||"topTouchStart"===e} function a (line 9) | function a(e,t,n,o){var r=e.type||"unknown-event";e.currentTarget=_.getN... function s (line 9) | function s(e,n){var o=e._dispatchListeners,r=e._dispatchInstances;if("pr... function u (line 9) | function u(e){var n=e._dispatchListeners,o=e._dispatchInstances;if("prod... function l (line 9) | function l(e){var t=u(e);return e._dispatchInstances=null,e._dispatchLis... function c (line 9) | function c(e){"production"!==t.env.NODE_ENV&&h(e);var n=e._dispatchListe... function d (line 9) | function d(e){return!!e._dispatchListeners} function o (line 9) | function o(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g... function r (line 9) | function r(e){var t=/(=0|=2)/g,n={"=0":"=","=2":":"};return(""+("."===e[... function o (line 9) | function o(e){null!=e.checkedLink&&null!=e.valueLink&&("production"!==t.... function r (line 9) | function r(e){o(e),(null!=e.value||null!=e.onChange)&&("production"!==t.... function i (line 9) | function i(e){o(e),(null!=e.checked||null!=e.onChange)&&("production"!==... function a (line 9) | function a(e){if(e){var t=e.getName();if(t)return" Check the render meth... function n (line 9) | function n(e,t,n){try{t(n)}catch(e){null===o&&(o=e)}} function o (line 9) | function o(e){c.enqueueUpdate(e)} function r (line 9) | function r(e){var t=typeof e;if("object"!==t)return t;var n=e.constructo... function i (line 9) | function i(e,n){var o=u.get(e);if(!o){if("production"!==t.env.NODE_ENV){... function o (line 9) | function o(e){var t,n=e.keyCode;return"charCode"in e?0===(t=e.charCode)&... function o (line 9) | function o(e){var t=this,n=t.nativeEvent;if(n.getModifierState)return n.... function r (line 9) | function r(e){return o} function o (line 9) | function o(e){var t=e.target||e.srcElement||window;return t.correspondin... function o (line 23) | function o(e,t){if(!i.canUseDOM||t&&!("addEventListener"in document))ret... function o (line 23) | function o(e,t){var n=null===e||!1===e,o=null===t||!1===t;if(n||o)return... function o (line 23) | function o(e,t,n){this.props=e,this.context=t,this.refs=s,this.updater=n... function o (line 23) | function o(e,n){if("production"!==t.env.NODE_ENV){var o=e.constructor;"p... function o (line 23) | function o(e){var t=e&&(r&&e[r]||e[i]);if("function"==typeof t)return t} function n (line 23) | function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbo... function o (line 23) | function o(t){return"function"==typeof Symbol&&"symbol"===n(Symbol.itera... function o (line 23) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 23) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 23) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 23) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 23) | function r(e){return(0,a.default)(e)} function e (line 30) | function e(){throw new Error("Dynamic requires are not currently support... function o (line 30) | function o(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.ca... function r (line 30) | function r(e,t){return t={exports:{}},e(t,t.exports),t.exports} function i (line 30) | function i(e,t){function n(){this.constructor=e}C(e,t),e.prototype=null=... function a (line 30) | function a(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.... function s (line 30) | function s(e,t,n,o){var r,i=arguments.length,a=i<3?t:null===o?o=Object.g... function u (line 30) | function u(e,t){return function(n,o){t(n,o,e)}} function l (line 30) | function l(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.... function c (line 30) | function c(e,t,n,o){return new(n||(n=Promise))(function(r,i){function a(... function d (line 30) | function d(e,t){function n(e){return function(t){return o([e,t])}}functi... function p (line 30) | function p(e,t){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])} function f (line 30) | function f(e){var t="function"==typeof Symbol&&e[Symbol.iterator],n=0;re... function h (line 30) | function h(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!... function m (line 30) | function m(){for(var e=[],t=0;t1&&n[1]|... function t (line 42) | function t(e){return e.split(".").length} function n (line 42) | function n(e,t){var n,o=[];if(Array.prototype.map)return Array.prototype... function o (line 42) | function o(e){for(var o=Math.max(t(e[0]),t(e[1])),r=n(e,function(e){var ... function r (line 42) | function r(t,n,r){var i=s;"string"==typeof n&&(r=n,n=void 0),void 0===n&... function i (line 42) | function i(e,t,n){return!r(e,t,n)} function o (line 42) | function o(e){return e} function r (line 42) | function r(e,n,r){function d(e,n,o){for(var r in n)n.hasOwnProperty(r)&&... function r (line 42) | function r(t,n){return function(){n.apply(t,e.makeArray(arguments))}} function i (line 42) | function i(t,n){var o,i,a,s,u;for(o in t)if(t.hasOwnProperty(o)){if(i=t[... function r (line 42) | function r(t,n,r){this.$vmId=t,this.$component=n,this.$vmArg=r&&r.vmArg,... function o (line 42) | function o(e){return e.replace(r,function(e,t){return t.toUpperCase()})} function o (line 42) | function o(e){return r(e.replace(i,"ms-"))} function o (line 42) | function o(e,t){return!(!e||!t)&&(e===t||!r(e)&&(r(t)?o(e,t.parentNode):... function o (line 42) | function o(e){var n=e.length;if((Array.isArray(e)||"object"!=typeof e&&"... function r (line 42) | function r(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"le... function i (line 42) | function i(e){return r(e)?Array.isArray(e)?e.slice():o(e):[e]} function o (line 42) | function o(e){var t=e.match(c);return t&&t[1].toLowerCase()} function r (line 42) | function r(e,n){var r=l;l||("production"!==t.env.NODE_ENV?u(!1,"createNo... function o (line 42) | function o(e){return a||("production"!==t.env.NODE_ENV?i(!1,"Markup wrap... function o (line 42) | function o(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e... function o (line 42) | function o(e){return e.replace(r,"-$1").toLowerCase()} function o (line 42) | function o(e){return r(e).replace(i,"-ms-")} function o (line 42) | function o(e){var t=e?e.ownerDocument||e:document,n=t.defaultView||windo... function o (line 42) | function o(e){return r(e)&&3==e.nodeType} function o (line 42) | function o(e){var t={};return function(n){return t.hasOwnProperty(n)||(t... function o (line 42) | function o(e){return e in a?a[e]:a[e]=e.replace(r,"-$&").toLowerCase().r... function o (line 42) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 42) | function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ... function i (line 42) | function i(e){var t=e.prefixMap,n=e.plugins,o=arguments.length>1&&void 0... function e (line 42) | function e(e,t){for(var n=0;nx.cacheLength&&delete ... function o (line 70) | function o(e){return e[W]=!0,e} function r (line 70) | function r(e){var t=I.createElement("fieldset");try{return!!e(t)}catch(e... function i (line 70) | function i(e,t){for(var n=e.split("|"),o=n.length;o--;)x.attrHandle[n[o]... function a (line 70) | function a(e,t){var n=t&&e,o=n&&1===e.nodeType&&1===t.nodeType&&e.source... function s (line 70) | function s(e){return function(t){return"input"===t.nodeName.toLowerCase(... function u (line 70) | function u(e){return function(t){var n=t.nodeName.toLowerCase();return("... function l (line 70) | function l(e){return function(t){return"form"in t?t.parentNode&&!1===t.d... function c (line 70) | function c(e){return o(function(t){return t=+t,o(function(n,o){for(var r... function d (line 70) | function d(e){return e&&void 0!==e.getElementsByTagName&&e} function p (line 70) | function p(){} function f (line 70) | function f(e){for(var t=0,n=e.length,o="";t1?function(t,n,o){for(var r=e.length;r--;)... function v (line 70) | function v(e,n,o){for(var r=0,i=n.length;r0,i=e.length>0,a=function(o,a,s,u,l){var ... function i (line 70) | function i(e,t,o,r){return function(){var s=this,u=arguments,l=function(... function e (line 70) | function e(){if(s){s.style.cssText="box-sizing:border-box;position:relat... function o (line 70) | function o(e,t,o,s){var l,p,f,_,E,w=t;c||(c=!0,u&&n.clearTimeout(u),r=vo... function o (line 70) | function o(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return... function r (line 70) | function r(e,t){for(var n=-1,o=Array(e);++n-1} function _ (line 70) | function _(e,t){var n=this.__data__,o=L(n,e);return o<0?(++this.size,n.p... function E (line 70) | function E(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t1?n[r-1]:vo... function Q (line 70) | function Q(e){return function(t,n,o){for(var r=-1,i=Object(t),a=o(t),s=a... function Z (line 70) | function Z(e,t){var n=e.__data__;return ie(t)?n["string"==typeof t?"stri... function ee (line 70) | function ee(e,t){var n=a(e,t);return W(n)?n:void 0} function te (line 70) | function te(e){var t=ot.call(e,vt),n=e[vt];try{e[vt]=void 0;var o=!0}cat... function ne (line 70) | function ne(e){return"function"!=typeof e.constructor||se(e)?{}:xt(pt(e))} function oe (line 70) | function oe(e,t){var n=typeof e;return!!(t=null==t?De:t)&&("number"==n||... function re (line 70) | function re(e,t,n){if(!ge(n))return!1;var o=typeof t;return!!("number"==... function ie (line 70) | function ie(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==... function ae (line 70) | function ae(e){return!!rt&&rt in e} function se (line 70) | function se(e){var t=e&&e.constructor;return e===("function"==typeof t&&... function ue (line 70) | function ue(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);retu... function le (line 70) | function le(e){return it.call(e)} function ce (line 70) | function ce(e,t,n){return t=bt(void 0===t?e.length-1:t,0),function(){for... function de (line 70) | function de(e){var t=0,n=0;return function(){var o=_t(),r=Se-(o-n);if(n=... function pe (line 70) | function pe(e){if(null!=e){try{return nt.call(e)}catch(e){}try{return e+... function fe (line 70) | function fe(e,t){return e===t||e!==e&&t!==t} function he (line 70) | function he(e){return null!=e&&ye(e.length)&&!ve(e)} function me (line 70) | function me(e){return be(e)&&he(e)} function ve (line 70) | function ve(e){if(!ge(e))return!1;var t=F(e);return t==Ie||t==Ae||t==Pe|... function ye (line 70) | function ye(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=De} function ge (line 70) | function ge(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)} function be (line 70) | function be(e){return null!=e&&"object"==typeof e} function _e (line 70) | function _e(e){if(!be(e)||F(e)!=Le)return!1;var t=pt(e);if(null===t)retu... function Ee (line 70) | function Ee(e){return X(e,we(e))} function we (line 70) | function we(e){return he(e)?I(e,!0):U(e)} function xe (line 70) | function xe(e){return function(){return e}} function Ce (line 70) | function Ce(e){return e} function ke (line 70) | function ke(){return!1} function e (line 70) | function e(){} function n (line 70) | function n(e,t,n){function o(t){var n=m,o=v;return m=v=void 0,C=t,g=e.ap... function o (line 70) | function o(e,t,o){var i=!0,a=!0;if("function"!=typeof e)throw new TypeEr... function r (line 70) | function r(e){var t=typeof e;return!!e&&("object"==t||"function"==t)} function i (line 70) | function i(e){return!!e&&"object"==typeof e} function a (line 70) | function a(e){return"symbol"==typeof e||i(e)&&_.call(e)==c} function s (line 70) | function s(e){if("number"==typeof e)return e;if(a(e))return l;if(r(e)){v... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme,o=n.appBar,r=n.button.iconButtonSize;re... function n (line 70) | function n(){var e,t,o,r;(0,h.default)(this,n);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,s.default)(this,t);for(var a=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t,n){var o=e.color,r=e.hoverColor,i=t.muiTheme.baseTheme,a=... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme.baseTheme;return{root:{boxSizing:"borde... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t,n){var o=e.autoGenerateNestedIndicator,r=e.insetChildren,... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme.baseTheme.palette.disabledColor,o=t.mui... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=e.desktop,o=e.maxHeight,r=e.width,i=t.muiTheme;ret... function t (line 70) | function t(e,n){(0,h.default)(this,t);var o=(0,g.default)(this,(t.__prot... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function e (line 70) | function e(){var t=this;(0,i.default)(this,e),this.clear=function(){t.ti... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=e.rounded,o=e.circle,r=e.transitionEnabled,i=e.zDe... function t (line 70) | function t(){return(0,p.default)(this,t),(0,v.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(e,n){(0,d.default)(this,t);var o=(0,m.default)(this,(t.__prot... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t,n){var o=e.targetOrigin,r=n.open,i=t.muiTheme,a=o.horizon... function t (line 70) | function t(){var e,n,o,r;(0,u.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,d.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme,o=n.inkBar,r=n.isRtl;return{root:{left:... function t (line 70) | function t(){return(0,u.default)(this,t),(0,p.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme.tabs;return{root:{color:e.selected?n.se... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){return{tabItemContainer:{width:"100%",backgroundColor:t.... function n (line 70) | function n(){var e,t,o,r;(0,p.default)(this,n);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,s.default)(this,t);for(var a=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){return(0,d.default)(this,t),(0,m.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,s.default)(this,t);for(var a=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,s.default)(this,t);for(var a=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t){var n=t.muiTheme.overlay,o={root:{position:"fixed",heigh... function t (line 70) | function t(){return(0,p.default)(this,t),(0,v.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){var e,n,o,r;(0,s.default)(this,t);for(var a=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){return(0,d.default)(this,t),(0,m.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(){return(0,d.default)(this,t),(0,m.default)(this,(t.__proto__... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e,t,n){var o=e.verticalPosition,r=e.horizontalPosition,i=e.to... function t (line 70) | function t(){var e,n,o,r;(0,p.default)(this,t);for(var i=arguments.lengt... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function t (line 70) | function t(e,n){(0,l.default)(this,t);var o=(0,f.default)(this,(t.__prot... function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function o (line 70) | function o(e){return e&&e.__esModule?e:{default:e}} function r (line 70) | function r(e){for(var t=arguments.length,n=Array(t>1?t-1:0),o=1;o=0||null!=t.is} function v (line 70) | function v(e){var n=e.type;h(n),this._currentElement=e,this._tag=n.toLow... function o (line 70) | function o(e,n){var o={_topLevelWrapper:e,_idCounter:1,_ownerDocument:n?... function o (line 70) | function o(){this._rootNodeID&&_.updateWrapper(this)} function r (line 70) | function r(e){return"checkbox"===e.type||"radio"===e.type?null!=e.checke... function i (line 70) | function i(e){var n=this._currentElement.props,r=l.executeOnChange(n,e);... function o (line 70) | function o(e,n,o){if(l.hasOwnProperty(n)&&l[n])return!0;if(c.test(n)){va... function r (line 70) | function r(e,n){var r=[];for(var i in n.props){o(n.type,i,e)||r.push(i)}... function i (line 70) | function i(e,t){null!=t&&"string"==typeof t.type&&(t.type.indexOf("-")>=... function o (line 70) | function o(e,n){null!=n&&("input"!==n.type&&"textarea"!==n.type&&"select... function o (line 70) | function o(e){var n="";return i.Children.forEach(e,function(e){null!=e&&... function o (line 70) | function o(e,t,n,o){return e===n&&t===o} function r (line 70) | function r(e){var t=document.selection,n=t.createRange(),o=n.text.length... function i (line 70) | function i(e){var t=window.getSelection&&window.getSelection();if(!t||0=... function a (line 70) | function a(e,t){var n,o,r=document.selection.createRange().duplicate();v... function s (line 70) | function s(e,t){if(window.getSelection){var n=window.getSelection(),o=e[... function o (line 70) | function o(){this._rootNodeID&&h.updateWrapper(this)} function r (line 70) | function r(e){var t=this._currentElement.props,n=s.executeOnChange(t,e);... function o (line 70) | function o(e,n){"_hostNode"in e||("production"!==t.env.NODE_ENV?l(!1,"ge... function r (line 70) | function r(e,n){"_hostNode"in e||("production"!==t.env.NODE_ENV?l(!1,"is... function i (line 70) | function i(e){return"_hostNode"in e||("production"!==t.env.NODE_ENV?l(!1... function a (line 70) | function a(e,t,n){for(var o=[];e;)o.push(e),e=e._hostParent;var r;for(r=... function s (line 70) | function s(e,t,n,r,i){for(var a=e&&t?o(e,t):null,s=[];e&&e!==a;)s.push(e... function o (line 70) | function o(e,t){null!=t&&"string"==typeof t.type&&(t.type.indexOf("-")>=... function o (line 70) | function o(e,n,o,r,i,a,s,u){try{n.call(o,r,i,a,s,u)}catch(n){"production... function r (line 70) | function r(e,t,n,r,i,a){for(var s=0;s1&&void 0!==arguments[1]&&arguments[1]&&0... function l (line 70) | function l(e,n){0!==N&&(I&&!A&&("production"!==t.env.NODE_ENV&&E(!1,"The... function c (line 70) | function c(e,n){0!==N&&(I===n||A||("production"!==t.env.NODE_ENV&&E(!1,"... function d (line 70) | function d(){var e={startTime:M,nestedFlushStartTime:_(),debugID:D,timer... function p (line 70) | function p(){var e=T.pop(),t=e.startTime,n=e.nestedFlushStartTime,o=e.de... function f (line 70) | function f(e){if(!C||!L)return!1;var t=g.getElement(e);return null!=t&&"... function h (line 70) | function h(e,t){if(f(e)){var n=e+"::"+t;R=_(),performance.mark(n)}} function m (line 70) | function m(e,t){if(f(e)){var n=e+"::"+t,o=g.getDisplayName(e)||"Unknown"... function o (line 70) | function o(){this.reinitializeTransaction()} function o (line 70) | function o(){x||(x=!0,g.EventEmitter.injectReactEventListener(y),g.Event... function o (line 70) | function o(e){r.enqueueEvents(e),r.processEventQueue(!1)} function o (line 70) | function o(e){for(;e._hostParent;)e=e._hostParent;var t=d.getNodeFromIns... function r (line 70) | function r(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]} function i (line 70) | function i(e){var t=f(e.nativeEvent),n=d.getClosestInstanceFromNode(t),r... function a (line 70) | function a(e){e(h(window))} function o (line 70) | function o(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,f... function r (line 70) | function r(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._... function i (line 70) | function i(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._moun... function a (line 70) | function a(e){return{type:"SET_MARKUP",content:e,fromIndex:null,fromNode... function s (line 70) | function s(e){return{type:"TEXT_CONTENT",content:e,fromIndex:null,fromNo... function u (line 70) | function u(e,t){return t&&(e=e||[],e.push(t)),e} function l (line 70) | function l(e,t){d.processChildrenUpdates(e,t)} function o (line 70) | function o(e){return!(!e||"function"!=typeof e.attachRef||"function"!=ty... function o (line 70) | function o(e){this.reinitializeTransaction(),this.renderToStaticMarkup=!... function o (line 70) | function o(e,t,n){"function"==typeof e?e(t.getPublicInstance()):i.addCom... function r (line 70) | function r(e,t,n){"function"==typeof e?e(null):i.removeComponentAsRefFro... function o (line 70) | function o(e){this.reinitializeTransaction(),this.renderToStaticMarkup=e... function o (line 70) | function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ... function r (line 70) | function r(e,n){if("production"!==t.env.NODE_ENV){var o=e.constructor;"p... function e (line 70) | function e(t){o(this,e),this.transaction=t} function o (line 70) | function o(e){if("selectionStart"in e&&u.hasSelectionCapabilities(e))ret... function r (line 70) | function r(e,t){if(g||null==m||m!==c())return null;var n=o(m);if(!y||!p(... function o (line 70) | function o(e){return"."+e._rootNodeID} function r (line 70) | function r(e){return"button"===e||"input"===e||"select"===e||"textarea"=... function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e,t,n,o){return r.call(this,e,t,n,o)} function o (line 70) | function o(e){for(var t=1,n=0,o=0,i=e.length,a=-4&i;o