Compare commits
3 Commits
11786e8b50
...
31b42344dd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
31b42344dd | ||
| f6cbc88acd | |||
| 17b9a5e5b4 |
@ -8,7 +8,7 @@ import Arrangement from '@/app/ui/arrangements/arrangement';
|
|||||||
import ArrangementsTable from '@/app/ui/arrangements/arrangements-table';
|
import ArrangementsTable from '@/app/ui/arrangements/arrangements-table';
|
||||||
import { classNames } from '@/app/ui/components/button';
|
import { classNames } from '@/app/ui/components/button';
|
||||||
import { Toast } from 'primereact/toast';
|
import { Toast } from 'primereact/toast';
|
||||||
import React, { useRef, useState } from 'react';
|
import React, { useEffect, useRef, useState } from 'react';
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
const toast = useRef<Toast>(null);
|
const toast = useRef<Toast>(null);
|
||||||
|
|||||||
@ -13,6 +13,8 @@ export function loadTableSimulations(onLoad?: (tableSimulations: TableArrangemen
|
|||||||
name: record.name,
|
name: record.name,
|
||||||
discomfort: record.discomfort,
|
discomfort: record.discomfort,
|
||||||
valid: record.valid,
|
valid: record.valid,
|
||||||
|
progress: record.progress,
|
||||||
|
status : record.status
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
}, (error) => {
|
}, (error) => {
|
||||||
|
|||||||
@ -14,6 +14,8 @@ export type TableArrangement = {
|
|||||||
guests?: Guest[];
|
guests?: Guest[];
|
||||||
discomfort?: number;
|
discomfort?: number;
|
||||||
valid?: boolean;
|
valid?: boolean;
|
||||||
|
progress: number;
|
||||||
|
status: 'in_progress' | 'completed' | 'not_started';
|
||||||
}
|
}
|
||||||
|
|
||||||
export type User = {
|
export type User = {
|
||||||
|
|||||||
@ -22,10 +22,12 @@ export type Table = {
|
|||||||
export class TableSimulation implements Entity {
|
export class TableSimulation implements Entity {
|
||||||
id?: string;
|
id?: string;
|
||||||
tables: Table[];
|
tables: Table[];
|
||||||
|
progress: number;
|
||||||
|
|
||||||
constructor(id?: string, tables?: Table[]) {
|
constructor(id?: string, tables?: Table[], progress?: number) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.tables = tables || [];
|
this.tables = tables || [];
|
||||||
|
this.progress = progress || 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,7 +45,7 @@ export class TableSimulationSerializer implements Serializable<TableSimulation>
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}));
|
}), data.progress);
|
||||||
}
|
}
|
||||||
|
|
||||||
toJson(simulation: TableSimulation): string {
|
toJson(simulation: TableSimulation): string {
|
||||||
|
|||||||
@ -10,11 +10,21 @@ import { loadTableSimulations } from "@/app/api/tableSimulations";
|
|||||||
import { ArchiveBoxXMarkIcon, CheckBadgeIcon } from "@heroicons/react/24/outline";
|
import { ArchiveBoxXMarkIcon, CheckBadgeIcon } from "@heroicons/react/24/outline";
|
||||||
import { Tooltip } from "primereact/tooltip";
|
import { Tooltip } from "primereact/tooltip";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
|
import { ProgressBar } from "primereact/progressbar";
|
||||||
|
import { useEffect } from "react";
|
||||||
|
import { TableSimulation, TableSimulationSerializer } from "@/app/lib/tableSimulation";
|
||||||
|
import { AbstractApi } from "@/app/api/abstract-api";
|
||||||
|
|
||||||
export default function ArrangementsTable({ onArrangementSelected }: { onArrangementSelected: (arrangementId: string) => void }) {
|
export default function ArrangementsTable({ onArrangementSelected }: { onArrangementSelected: (arrangementId: string) => void }) {
|
||||||
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);
|
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);
|
||||||
const [arrangementsLoaded, setArrangementsLoaded] = useState(false);
|
const [arrangementsLoaded, setArrangementsLoaded] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
refreshSimulations();
|
||||||
|
const interval = setInterval(refreshSimulations, 10000);
|
||||||
|
return () => clearInterval(interval);
|
||||||
|
}, []);
|
||||||
|
|
||||||
function refreshSimulations() {
|
function refreshSimulations() {
|
||||||
loadTableSimulations((arrangements) => {
|
loadTableSimulations((arrangements) => {
|
||||||
setArrangements(arrangements);
|
setArrangements(arrangements);
|
||||||
@ -26,11 +36,9 @@ export default function ArrangementsTable({ onArrangementSelected }: { onArrange
|
|||||||
onArrangementSelected(e.currentTarget.getAttribute('data-arrangement-id') || '');
|
onArrangementSelected(e.currentTarget.getAttribute('data-arrangement-id') || '');
|
||||||
}
|
}
|
||||||
|
|
||||||
!arrangementsLoaded && refreshSimulations();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TableOfContents
|
<TableOfContents
|
||||||
headers={['Name', 'Discomfort', 'Actions', 'Status']}
|
headers={['Name', 'Discomfort', 'Status', 'Actions']}
|
||||||
caption='Simulations'
|
caption='Simulations'
|
||||||
elements={arrangements}
|
elements={arrangements}
|
||||||
rowRender={(arrangement) => (
|
rowRender={(arrangement) => (
|
||||||
@ -44,17 +52,18 @@ export default function ArrangementsTable({ onArrangementSelected }: { onArrange
|
|||||||
<td className="px-6 py-4">
|
<td className="px-6 py-4">
|
||||||
{arrangement.discomfort}
|
{arrangement.discomfort}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td className="px-4">
|
||||||
<button data-arrangement-id={arrangement.id} onClick={arrangementClicked} className={classNames('primary')}>Load</button>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<Tooltip target=".tooltip-status" />
|
<Tooltip target=".tooltip-status" />
|
||||||
|
|
||||||
{
|
<>
|
||||||
arrangement.valid ?
|
{ arrangement.valid && arrangement.status === 'not_started' && <ProgressBar mode="indeterminate" style={{ height: '6px' }}></ProgressBar> }
|
||||||
<CheckBadgeIcon className='size-6 tooltip-status' data-pr-position="right" data-pr-tooltip="Simulation is valid" /> :
|
{ arrangement.valid && arrangement.status !== 'not_started' && <ProgressBar value={(100 * arrangement.progress).toFixed(2) }></ProgressBar> }
|
||||||
<ArchiveBoxXMarkIcon className='size-6 tooltip-status' data-pr-position="right" data-pr-tooltip="Simulation is expired due to attendance or affinity changes" />
|
|
||||||
}
|
{ !arrangement.valid && 'The list of potential guests has changed since this simulation.' }
|
||||||
|
</>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<button data-arrangement-id={arrangement.id} onClick={arrangementClicked} className={classNames('primary')}>Load</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
)}
|
||||||
|
|||||||
86
pnpm-lock.yaml
generated
86
pnpm-lock.yaml
generated
@ -1624,11 +1624,11 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
|
|
||||||
'@tiptap/extension-blockquote@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-blockquote@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-bold@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-bold@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
@ -1640,24 +1640,24 @@ snapshots:
|
|||||||
|
|
||||||
'@tiptap/extension-bullet-list@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-bullet-list@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)
|
||||||
|
|
||||||
'@tiptap/extension-code-block@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)':
|
'@tiptap/extension-code-block@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
|
|
||||||
'@tiptap/extension-code@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-code@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-document@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-document@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-dropcursor@3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-dropcursor@3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-floating-menu@2.26.1(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)':
|
'@tiptap/extension-floating-menu@2.26.1(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1665,28 +1665,28 @@ snapshots:
|
|||||||
'@tiptap/pm': 2.26.1
|
'@tiptap/pm': 2.26.1
|
||||||
tippy.js: 6.3.7
|
tippy.js: 6.3.7
|
||||||
|
|
||||||
'@tiptap/extension-gapcursor@3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-gapcursor@3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-hard-break@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-hard-break@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-heading@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-heading@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-horizontal-rule@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)':
|
'@tiptap/extension-horizontal-rule@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
|
|
||||||
'@tiptap/extension-italic@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-italic@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-link@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)':
|
'@tiptap/extension-link@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
@ -1694,38 +1694,38 @@ snapshots:
|
|||||||
|
|
||||||
'@tiptap/extension-list-item@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-list-item@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)
|
||||||
|
|
||||||
'@tiptap/extension-list-keymap@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-list-keymap@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)
|
||||||
|
|
||||||
'@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)':
|
'@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 2.26.1
|
||||||
|
|
||||||
'@tiptap/extension-ordered-list@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
'@tiptap/extension-ordered-list@3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)
|
||||||
|
|
||||||
'@tiptap/extension-paragraph@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-paragraph@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-strike@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-strike@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-text@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-text@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extension-underline@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))':
|
'@tiptap/extension-underline@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
|
|
||||||
'@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)':
|
'@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
@ -1787,28 +1787,28 @@ snapshots:
|
|||||||
'@tiptap/starter-kit@3.4.3':
|
'@tiptap/starter-kit@3.4.3':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
'@tiptap/core': 3.4.3(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/extension-blockquote': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-blockquote': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-bold': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-bold': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-bullet-list': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-bullet-list': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-code': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-code': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-code-block': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-code-block': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/extension-document': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-document': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-dropcursor': 3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-dropcursor': 3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-gapcursor': 3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-gapcursor': 3.4.3(@tiptap/extensions@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-hard-break': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-hard-break': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-heading': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-heading': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-horizontal-rule': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-horizontal-rule': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/extension-italic': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-italic': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-link': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-link': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extension-list': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@2.26.1)
|
||||||
'@tiptap/extension-list-item': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-list-item': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-list-keymap': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-list-keymap': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-ordered-list': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
'@tiptap/extension-ordered-list': 3.4.3(@tiptap/extension-list@3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-paragraph': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-paragraph': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-strike': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-strike': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-text': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-text': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extension-underline': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))
|
'@tiptap/extension-underline': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))
|
||||||
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@2.26.1))(@tiptap/pm@3.4.3)
|
'@tiptap/extensions': 3.4.3(@tiptap/core@3.4.3(@tiptap/pm@3.4.3))(@tiptap/pm@3.4.3)
|
||||||
'@tiptap/pm': 3.4.3
|
'@tiptap/pm': 3.4.3
|
||||||
|
|
||||||
'@types/bcrypt@5.0.2':
|
'@types/bcrypt@5.0.2':
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user