@the-libs/base-frontend
Advanced tools
Comparing version 1.0.105 to 1.1.6
@@ -1,1 +0,2 @@ | ||
export declare const renderDatePicker: <T>(formState: T, handleChange: (name: keyof T, value: string | Date | boolean) => void, name: keyof T, label: string, disabled?: boolean) => import("@emotion/react/jsx-runtime").JSX.Element; | ||
export declare const renderDatePicker: <T>(formState: T, handleChange: (name: keyof T, value: string | Date | boolean) => void, name: keyof T, label: string, disabled?: boolean, initializeFormStateKey?: boolean) => import("@emotion/react/jsx-runtime").JSX.Element; | ||
//# sourceMappingURL=date.d.ts.map |
import { ActionHandler } from '../../types'; | ||
import { TODO } from '../../../../base-shared/src/index.ts'; | ||
export interface EditableFieldProps<R> { | ||
@@ -13,1 +12,2 @@ name: string; | ||
export declare const EditableField: <R>({ name, value, action, cb, plus, PrimaryText, }: EditableFieldProps<R>) => import("@emotion/react/jsx-runtime").JSX.Element; | ||
//# sourceMappingURL=EditableField.d.ts.map |
@@ -6,1 +6,2 @@ export * from './date'; | ||
export * from './select'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -5,1 +5,2 @@ export declare const renderDropdown: <T>(formState: T, handleChange: (name: keyof T | string[], value: string | Date | boolean) => void, path: keyof T | string[], label: string, options: { | ||
}[], disable?: boolean) => import("@emotion/react/jsx-runtime").JSX.Element; | ||
//# sourceMappingURL=select.d.ts.map |
import { Dispatch, ReactNode, SetStateAction } from 'react'; | ||
interface Options { | ||
@@ -23,1 +22,2 @@ label?: { | ||
export {}; | ||
//# sourceMappingURL=switch.d.ts.map |
@@ -10,1 +10,2 @@ interface Options { | ||
export {}; | ||
//# sourceMappingURL=text.d.ts.map |
import { TODO } from '../../../../base-shared/src/index.ts'; | ||
interface SendMessageFormProps { | ||
@@ -20,1 +19,2 @@ id: string; | ||
export default SendMessageForm; | ||
//# sourceMappingURL=SendMessageForm.d.ts.map |
import { ReactNode } from 'react'; | ||
interface EnvBorderContextProps { | ||
@@ -8,1 +7,2 @@ children: ReactNode; | ||
export {}; | ||
//# sourceMappingURL=EnvBorder.d.ts.map |
import { ReactNode } from 'react'; | ||
import { Document as MDocument, Types } from 'mongoose'; | ||
type ActionModal<D> = (closeModal: () => void, id?: string, theItem?: D) => ReactNode; | ||
@@ -24,1 +23,2 @@ export interface GenericTableProps<D> { | ||
export {}; | ||
//# sourceMappingURL=GenericTable.d.ts.map |
export * from './GenericTable'; | ||
export * from './EnvBorder'; | ||
export * from './NavBar'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -9,1 +9,2 @@ interface NavBarProps { | ||
export {}; | ||
//# sourceMappingURL=NavBar.d.ts.map |
@@ -5,1 +5,2 @@ export * from './pages'; | ||
export * from './global'; | ||
//# sourceMappingURL=index.d.ts.map |
import { ReactNode } from 'react'; | ||
import { TODO } from '../../../../base-shared/src/index.ts'; | ||
interface ActionModalProps<B> { | ||
@@ -17,1 +16,2 @@ closeModal: () => void; | ||
export {}; | ||
//# sourceMappingURL=ActionModal.d.ts.map |
export * from './ActionModal'; | ||
export * from './InstallModal'; | ||
//# sourceMappingURL=index.d.ts.map |
import { TODO } from '../../../../base-shared/src/index.ts'; | ||
interface InstallModalProps { | ||
@@ -11,1 +10,2 @@ onInstallClicked: TODO; | ||
export {}; | ||
//# sourceMappingURL=InstallModal.d.ts.map |
import { TODO } from '../../../../../base-shared/src/index.ts'; | ||
declare enum Step { | ||
@@ -35,1 +34,2 @@ init = 0, | ||
export {}; | ||
//# sourceMappingURL=AuthPage.d.ts.map |
@@ -13,1 +13,2 @@ declare global { | ||
export default GoogleSignIn; | ||
//# sourceMappingURL=GoogleSignIn.d.ts.map |
export * from './AuthPage'; | ||
export * from './GoogleSignIn'; | ||
//# sourceMappingURL=index.d.ts.map |
import { TODO } from '../../../../../base-shared/src/index.ts'; | ||
interface ChatsPageProps { | ||
@@ -21,1 +20,2 @@ isMobillized?: boolean; | ||
export {}; | ||
//# sourceMappingURL=ChatsPage.d.ts.map |
import { Dispatch, SetStateAction } from 'react'; | ||
import { TODO } from '../../../../../../base-shared/src/index.ts'; | ||
import { Conversation } from '../../../../../../chat-backend/src/index.ts'; | ||
interface ConversationButtonProps { | ||
@@ -15,1 +14,2 @@ conversation: Conversation; | ||
export {}; | ||
//# sourceMappingURL=ConversationButton.d.ts.map |
@@ -5,3 +5,2 @@ import { Dispatch, FC, SetStateAction } from 'react'; | ||
import { TODO } from '../../../../../../base-shared/src/index.ts'; | ||
interface ConversationViewProps { | ||
@@ -21,1 +20,2 @@ conversation: Conversation; | ||
export default ConversationView; | ||
//# sourceMappingURL=ConversationView.d.ts.map |
export * from './ConversationView'; | ||
export * from './ConversationButton'; | ||
export * from './MessageRow'; | ||
//# sourceMappingURL=index.d.ts.map |
import { Message } from '../../../../../../chat-backend/src/index.ts'; | ||
interface MessageRowProps { | ||
@@ -11,1 +10,2 @@ message: Message; | ||
export default MessageRow; | ||
//# sourceMappingURL=MessageRow.d.ts.map |
export * from './ChatsPage'; | ||
export * from './components'; | ||
//# sourceMappingURL=index.d.ts.map |
export * from './auth'; | ||
export * from './chats'; | ||
export * from './notifications'; | ||
//# sourceMappingURL=index.d.ts.map |
export * from './notificationsPage'; | ||
//# sourceMappingURL=index.d.ts.map |
export declare const NotificationsPage: () => import("@emotion/react/jsx-runtime").JSX.Element; | ||
//# sourceMappingURL=notificationsPage.d.ts.map |
import { ReactNode } from 'react'; | ||
interface AppContextProps<UserType> { | ||
@@ -14,1 +13,2 @@ children: ReactNode; | ||
export {}; | ||
//# sourceMappingURL=AppContext.d.ts.map |
import { ReactNode } from 'react'; | ||
import { User } from '../../../auth-backend/src/index.ts'; | ||
interface AuthContextProps { | ||
@@ -19,1 +18,2 @@ children: ReactNode; | ||
export {}; | ||
//# sourceMappingURL=AuthContext.d.ts.map |
import { ReactNode } from 'react'; | ||
import { Conversation } from '../../../chat-backend/src/index.ts'; | ||
interface ChatContextProps { | ||
@@ -17,1 +16,2 @@ children: ReactNode; | ||
export {}; | ||
//# sourceMappingURL=ChatContext.d.ts.map |
@@ -5,1 +5,2 @@ export * from './AuthContext'; | ||
export * from './AppContext'; | ||
//# sourceMappingURL=index.d.ts.map |
import { ReactNode } from 'react'; | ||
import { AxiosInstance } from 'axios'; | ||
interface FrontendSettings { | ||
@@ -27,1 +26,2 @@ VITE_NODE_ENV: string; | ||
export {}; | ||
//# sourceMappingURL=ServerContext.d.ts.map |
export * from './useResponsiveness'; | ||
export * from './useSubscribe'; | ||
export * from './useLoadBundle'; | ||
//# sourceMappingURL=index.d.ts.map |
export declare const useLoadBundle: () => void; | ||
export declare const loadFonts: () => void; | ||
//# sourceMappingURL=useLoadBundle.d.ts.map |
@@ -5,1 +5,2 @@ export declare const useResponsiveness: (mobile: boolean) => { | ||
}; | ||
//# sourceMappingURL=useResponsiveness.d.ts.map |
export declare const useSubscribe: <T = string>(domain: string, endpoint: string) => { | ||
res: T | undefined; | ||
}; | ||
//# sourceMappingURL=useSubscribe.d.ts.map |
@@ -8,1 +8,2 @@ export * from './components'; | ||
export * from './wrappers'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@the-libs/base-frontend", | ||
"version": "1.0.105", | ||
"version": "1.1.6", | ||
"dependencies": {}, | ||
@@ -5,0 +5,0 @@ "type": "commonjs", |
import { ThemeOptions } from '@mui/material'; | ||
export declare const backGroundColor = "#FFFFFF"; | ||
@@ -7,1 +6,2 @@ export declare const themeColor = "#005FAF"; | ||
export declare const useThemeForMVP: (disableDarkMode?: boolean) => ThemeOptions; | ||
//# sourceMappingURL=index.d.ts.map |
export type ActionHandler<R> = (id?: string, value?: string, openOrCloseModal?: 'open' | 'close') => Promise<R>; | ||
//# sourceMappingURL=index.d.ts.map |
import { TODO } from '../../../base-shared/src/index.ts'; | ||
import { BoxProps, FabProps } from '@mui/material'; | ||
import { FC } from 'react'; | ||
export declare const findMe: () => Promise<null | { | ||
@@ -37,1 +36,2 @@ lat: number; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
export * from './MobilzerWrapper'; | ||
export * from './PWAPrompterWrapper'; | ||
//# sourceMappingURL=index.d.ts.map |
import { ReactNode } from 'react'; | ||
import { TODO } from '../../../base-shared/src/index.ts'; | ||
interface MobilzerWrapperProps { | ||
@@ -11,1 +10,2 @@ name: string; | ||
export {}; | ||
//# sourceMappingURL=MobilzerWrapper.d.ts.map |
import { ReactNode } from 'react'; | ||
interface PWAPrompterWrapperProps { | ||
@@ -8,1 +7,2 @@ children: ReactNode; | ||
export {}; | ||
//# sourceMappingURL=PWAPrompterWrapper.d.ts.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
4618493
91
68419