mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 00:32:35 +10:00
fixes #2151, apply secure cookie session only if using SSL (https)
This commit is contained in:
@ -3,7 +3,7 @@ import { cn } from "@reactive-resume/utils";
|
||||
import { forwardRef } from "react";
|
||||
|
||||
import { buttonVariants } from "../variants/button";
|
||||
import { ButtonProps } from "./button";
|
||||
import type { ButtonProps } from "./button";
|
||||
|
||||
export const AlertDialog = AlertDialogPrimitive.Root;
|
||||
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import { Dispatch, forwardRef, SetStateAction, useCallback, useEffect, useState } from "react";
|
||||
import type { Dispatch, SetStateAction } from "react";
|
||||
import { forwardRef, useCallback, useEffect, useState } from "react";
|
||||
|
||||
import { Input, InputProps } from "./input";
|
||||
import type { InputProps } from "./input";
|
||||
import { Input } from "./input";
|
||||
|
||||
type BadgeInputProps = Omit<InputProps, "value" | "onChange"> & {
|
||||
value: string[];
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { MagnifyingGlass } from "@phosphor-icons/react";
|
||||
import { DialogProps } from "@radix-ui/react-dialog";
|
||||
import type { DialogProps } from "@radix-ui/react-dialog";
|
||||
import { cn } from "@reactive-resume/utils";
|
||||
import { Command as CommandPrimitive } from "cmdk";
|
||||
import { forwardRef } from "react";
|
||||
|
||||
@ -1,9 +1,10 @@
|
||||
import * as LabelPrimitive from "@radix-ui/react-label";
|
||||
import type * as LabelPrimitive from "@radix-ui/react-label";
|
||||
import { Slot } from "@radix-ui/react-slot";
|
||||
import { FormFieldContext, FormItemContext, useFormField } from "@reactive-resume/hooks";
|
||||
import { cn } from "@reactive-resume/utils";
|
||||
import { forwardRef, useId } from "react";
|
||||
import { Controller, ControllerProps, FieldPath, FieldValues } from "react-hook-form";
|
||||
import type { ControllerProps, FieldPath, FieldValues } from "react-hook-form";
|
||||
import { Controller } from "react-hook-form";
|
||||
|
||||
import { Label } from "./label";
|
||||
|
||||
|
||||
@ -33,7 +33,8 @@ import { Image } from "@tiptap/extension-image";
|
||||
import { Link } from "@tiptap/extension-link";
|
||||
import { TextAlign } from "@tiptap/extension-text-align";
|
||||
import { Underline } from "@tiptap/extension-underline";
|
||||
import { Editor, EditorContent, EditorContentProps, useEditor } from "@tiptap/react";
|
||||
import type { Editor, EditorContentProps } from "@tiptap/react";
|
||||
import { EditorContent, useEditor } from "@tiptap/react";
|
||||
import { StarterKit } from "@tiptap/starter-kit";
|
||||
import { forwardRef, useCallback } from "react";
|
||||
import { useForm } from "react-hook-form";
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
||||
import { cn } from "@reactive-resume/utils";
|
||||
import { VariantProps } from "class-variance-authority";
|
||||
import type { VariantProps } from "class-variance-authority";
|
||||
import { forwardRef } from "react";
|
||||
|
||||
import { toggleVariants } from "../variants/toggle";
|
||||
|
||||
Reference in New Issue
Block a user