Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

Location:
imaps-frontend/node_modules/react-router/dist/lib
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/react-router/dist/lib/components.d.ts

    rd565449 r0c6b92a  
    2626 * A `<Router>` that stores all entries in memory.
    2727 *
    28  * @see https://reactrouter.com/router-components/memory-router
     28 * @see https://reactrouter.com/v6/router-components/memory-router
    2929 */
    3030export declare function MemoryRouter({ basename, children, initialEntries, initialIndex, future, }: MemoryRouterProps): React.ReactElement;
     
    4242 * `useNavigate` hook instead.
    4343 *
    44  * @see https://reactrouter.com/components/navigate
     44 * @see https://reactrouter.com/v6/components/navigate
    4545 */
    4646export declare function Navigate({ to, replace, state, relative, }: NavigateProps): null;
     
    5151 * Renders the child route's element, if there is one.
    5252 *
    53  * @see https://reactrouter.com/components/outlet
     53 * @see https://reactrouter.com/v6/components/outlet
    5454 */
    5555export declare function Outlet(props: OutletProps): React.ReactElement | null;
     
    9898 * Declares an element that should be rendered at a certain URL path.
    9999 *
    100  * @see https://reactrouter.com/components/route
     100 * @see https://reactrouter.com/v6/components/route
    101101 */
    102102export declare function Route(_props: RouteProps): React.ReactElement | null;
     
    117117 * in web browsers or a `<StaticRouter>` for server rendering.
    118118 *
    119  * @see https://reactrouter.com/router-components/router
     119 * @see https://reactrouter.com/v6/router-components/router
    120120 */
    121121export declare function Router({ basename: basenameProp, children, location: locationProp, navigationType, navigator, static: staticProp, future, }: RouterProps): React.ReactElement | null;
     
    128128 * that best matches the current location.
    129129 *
    130  * @see https://reactrouter.com/components/routes
     130 * @see https://reactrouter.com/v6/components/routes
    131131 */
    132132export declare function Routes({ children, location, }: RoutesProps): React.ReactElement | null;
     
    149149 * `<Routes>` to create a route config from its children.
    150150 *
    151  * @see https://reactrouter.com/utils/create-routes-from-children
     151 * @see https://reactrouter.com/v6/utils/create-routes-from-children
    152152 */
    153153export declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
  • imaps-frontend/node_modules/react-router/dist/lib/context.d.ts

    rd565449 r0c6b92a  
    6060    preventScrollReset?: boolean;
    6161    relative?: RelativeRoutingType;
    62     unstable_flushSync?: boolean;
    63     unstable_viewTransition?: boolean;
     62    flushSync?: boolean;
     63    viewTransition?: boolean;
    6464}
    6565/**
  • imaps-frontend/node_modules/react-router/dist/lib/hooks.d.ts

    rd565449 r0c6b92a  
    77 * custom links that are also accessible and preserve right-click behavior.
    88 *
    9  * @see https://reactrouter.com/hooks/use-href
     9 * @see https://reactrouter.com/v6/hooks/use-href
    1010 */
    1111export declare function useHref(to: To, { relative }?: {
     
    1515 * Returns true if this component is a descendant of a `<Router>`.
    1616 *
    17  * @see https://reactrouter.com/hooks/use-in-router-context
     17 * @see https://reactrouter.com/v6/hooks/use-in-router-context
    1818 */
    1919export declare function useInRouterContext(): boolean;
     
    2626 * be able to provide something higher-level to better suit your needs.
    2727 *
    28  * @see https://reactrouter.com/hooks/use-location
     28 * @see https://reactrouter.com/v6/hooks/use-location
    2929 */
    3030export declare function useLocation(): Location;
     
    3333 * the current location, either by a pop, push, or replace on the history stack.
    3434 *
    35  * @see https://reactrouter.com/hooks/use-navigation-type
     35 * @see https://reactrouter.com/v6/hooks/use-navigation-type
    3636 */
    3737export declare function useNavigationType(): NavigationType;
     
    4141 * `<NavLink>`.
    4242 *
    43  * @see https://reactrouter.com/hooks/use-match
     43 * @see https://reactrouter.com/v6/hooks/use-match
    4444 */
    4545export declare function useMatch<ParamKey extends ParamParseKey<Path>, Path extends string>(pattern: PathPattern<Path> | Path): PathMatch<ParamKey> | null;
     
    5555 * may also be used by other elements to change the location.
    5656 *
    57  * @see https://reactrouter.com/hooks/use-navigate
     57 * @see https://reactrouter.com/v6/hooks/use-navigate
    5858 */
    5959export declare function useNavigate(): NavigateFunction;
     
    6161 * Returns the context (if provided) for the child route at this level of the route
    6262 * hierarchy.
    63  * @see https://reactrouter.com/hooks/use-outlet-context
     63 * @see https://reactrouter.com/v6/hooks/use-outlet-context
    6464 */
    6565export declare function useOutletContext<Context = unknown>(): Context;
     
    6868 * hierarchy. Used internally by `<Outlet>` to render child routes.
    6969 *
    70  * @see https://reactrouter.com/hooks/use-outlet
     70 * @see https://reactrouter.com/v6/hooks/use-outlet
    7171 */
    7272export declare function useOutlet(context?: unknown): React.ReactElement | null;
     
    7575 * URL that were matched by the route path.
    7676 *
    77  * @see https://reactrouter.com/hooks/use-params
     77 * @see https://reactrouter.com/v6/hooks/use-params
    7878 */
    7979export declare function useParams<ParamsOrKey extends string | Record<string, string | undefined> = string>(): Readonly<[
     
    8383 * Resolves the pathname of the given `to` value against the current location.
    8484 *
    85  * @see https://reactrouter.com/hooks/use-resolved-path
     85 * @see https://reactrouter.com/v6/hooks/use-resolved-path
    8686 */
    8787export declare function useResolvedPath(to: To, { relative }?: {
     
    9494 * element.
    9595 *
    96  * @see https://reactrouter.com/hooks/use-routes
     96 * @see https://reactrouter.com/v6/hooks/use-routes
    9797 */
    9898export declare function useRoutes(routes: RouteObject[], locationArg?: Partial<Location> | string): React.ReactElement | null;
Note: See TracChangeset for help on using the changeset viewer.