@fileverse-dev/ddoc 2.2.3-reminders-1 → 2.2.3-reminders-1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{ccip-BzVHQWZO.mjs → ccip-y0ePrcov.mjs} +1 -1
- package/dist/{index-CKO9pFGs.mjs → index-C6z7MK6a.mjs} +54299 -97379
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +7 -7
- package/dist/package/components/editor-bubble-menu/props.d.ts +0 -2
- package/dist/package/components/editor-bubble-menu/types.d.ts +0 -2
- package/dist/package/hooks/useReminder.d.ts +16 -0
- package/dist/package/use-ddoc-editor.d.ts +0 -2
- package/dist/style.css +1 -1
- package/package.json +1 -3
- package/dist/package/assets/Reminder-json-no-watermark.json.d.ts +0 -38425
- package/dist/package/components/notifications/dynamic-alert-banner.d.ts +0 -20
- package/dist/package/components/notifications/permission-alert.d.ts +0 -6
- package/dist/package/components/notifications/reminder-intro-banner.d.ts +0 -8
- package/dist/package/components/notifications/reminder-lottie.d.ts +0 -5
@@ -1,20 +0,0 @@
|
|
1
|
-
import { VariantProps } from 'class-variance-authority';
|
2
|
-
import * as React from 'react';
|
3
|
-
declare const alertVariants: (props?: ({
|
4
|
-
variant?: "default" | "secondary" | "brand" | null | undefined;
|
5
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
6
|
-
interface DynamicAlertBannerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants> {
|
7
|
-
icon?: React.ReactNode;
|
8
|
-
iconAlignment?: 'start' | 'center' | 'end';
|
9
|
-
title?: React.ReactNode;
|
10
|
-
description?: React.ReactNode;
|
11
|
-
progress?: number;
|
12
|
-
hideCloseIcon?: boolean;
|
13
|
-
isLoading?: boolean;
|
14
|
-
open?: boolean;
|
15
|
-
onOpenChange?: (open: boolean) => void;
|
16
|
-
footer?: React.ReactNode;
|
17
|
-
contentClassName?: string;
|
18
|
-
}
|
19
|
-
export declare const DynamicAlertBanner: React.ForwardRefExoticComponent<DynamicAlertBannerProps & React.RefAttributes<HTMLDivElement>>;
|
20
|
-
export {};
|
@@ -1,6 +0,0 @@
|
|
1
|
-
interface PermissionAlertProps {
|
2
|
-
handleRejectNotifications: () => void;
|
3
|
-
handleAcceptNotifications: () => void;
|
4
|
-
}
|
5
|
-
export declare const PermissionAlert: ({ handleRejectNotifications, handleAcceptNotifications, }: PermissionAlertProps) => import("react/jsx-runtime").JSX.Element | null;
|
6
|
-
export {};
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { Editor } from '@tiptap/react';
|
2
|
-
|
3
|
-
interface ReminderIntroBannerProps {
|
4
|
-
onClose: () => void;
|
5
|
-
editor: Editor;
|
6
|
-
}
|
7
|
-
export declare const ReminderIntroBanner: ({ onClose, editor, }: ReminderIntroBannerProps) => import('react').ReactPortal | null;
|
8
|
-
export {};
|