@payloadcms/richtext-slate
Advanced tools
Comparing version 3.0.0-canary.f1db24e to 3.0.0-canary.f1f97ff
@@ -1,4 +0,4 @@ | ||
import type { DefaultCellComponentProps } from 'payload/types'; | ||
import type { DefaultCellComponentProps } from 'payload'; | ||
import React from 'react'; | ||
export declare const RichTextCell: React.FC<DefaultCellComponentProps<any[]>>; | ||
//# sourceMappingURL=index.d.ts.map |
'use client'; | ||
import { jsx as _jsx } from "react/jsx-runtime"; | ||
import { useTableCell } from '@payloadcms/ui'; | ||
import React from 'react'; | ||
export const RichTextCell = ({ cellData })=>{ | ||
export const RichTextCell = ()=>{ | ||
const { cellData } = useTableCell(); | ||
const flattenedText = cellData?.map((i)=>i?.children?.map((c)=>c.text)).join(' '); | ||
@@ -6,0 +8,0 @@ // Limiting the number of characters shown is done in a CSS rule |
@@ -1,3 +0,2 @@ | ||
import type { PayloadRequestWithData } from 'payload/types'; | ||
import type { Collection, Field, RichTextField } from 'payload/types'; | ||
import type { Collection, Field, PayloadRequest, RichTextField } from 'payload'; | ||
import type { AdapterArguments } from '../types.js'; | ||
@@ -12,11 +11,11 @@ type Arguments = { | ||
overrideAccess?: boolean; | ||
req: PayloadRequestWithData; | ||
req: PayloadRequest; | ||
showHiddenFields: boolean; | ||
}; | ||
export declare const populate: ({ id, collection, currentDepth, data, depth, draft, key, overrideAccess, req, showHiddenFields, }: Omit<Arguments, 'field'> & { | ||
export declare const populate: ({ id, collection, currentDepth, data, depth, draft, key, overrideAccess, req, showHiddenFields, }: { | ||
collection: Collection; | ||
field: Field; | ||
id: string; | ||
}) => Promise<void>; | ||
} & Omit<Arguments, "field">) => Promise<void>; | ||
export {}; | ||
//# sourceMappingURL=populate.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import { createDataloaderCacheKey } from 'payload/utilities'; | ||
import { createDataloaderCacheKey } from 'payload'; | ||
export const populate = async ({ id, collection, currentDepth, data, depth, draft, key, overrideAccess, req, showHiddenFields })=>{ | ||
@@ -3,0 +3,0 @@ const dataRef = data; |
@@ -1,2 +0,2 @@ | ||
import type { Field, PayloadRequestWithData } from 'payload/types'; | ||
import type { Field, PayloadRequest } from 'payload'; | ||
type NestedRichTextFieldsArgs = { | ||
@@ -10,3 +10,3 @@ currentDepth?: number; | ||
populationPromises: Promise<void>[]; | ||
req: PayloadRequestWithData; | ||
req: PayloadRequest; | ||
showHiddenFields: boolean; | ||
@@ -13,0 +13,0 @@ }; |
@@ -1,2 +0,2 @@ | ||
import { fieldAffectsData, fieldHasSubFields, fieldIsArrayType } from 'payload/types'; | ||
import { fieldAffectsData, fieldHasSubFields, fieldIsArrayType, tabHasName } from 'payload/shared'; | ||
import { populate } from './populate.js'; | ||
@@ -113,3 +113,3 @@ import { recurseRichText } from './richTextRelationshipPromise.js'; | ||
currentDepth, | ||
data, | ||
data: tabHasName(tab) ? data[tab.name] : data, | ||
depth, | ||
@@ -116,0 +116,0 @@ draft, |
@@ -1,4 +0,4 @@ | ||
import type { PayloadRequestWithData, RichTextAdapter, RichTextField } from 'payload/types'; | ||
import type { PayloadRequest, RichTextAdapter, RichTextField } from 'payload'; | ||
import type { AdapterArguments } from '../types.js'; | ||
export type Args = Parameters<RichTextAdapter<any[], AdapterArguments>['populationPromises']>[0]; | ||
export type Args = Parameters<RichTextAdapter<any[], AdapterArguments>['graphQLPopulationPromises']>[0]; | ||
type RecurseRichTextArgs = { | ||
@@ -12,3 +12,3 @@ children: unknown[]; | ||
populationPromises: Promise<void>[]; | ||
req: PayloadRequestWithData; | ||
req: PayloadRequest; | ||
showHiddenFields: boolean; | ||
@@ -15,0 +15,0 @@ }; |
@@ -1,4 +0,4 @@ | ||
import type { RichTextField, Validate } from 'payload/types'; | ||
import type { RichTextField, Validate } from 'payload'; | ||
import type { AdapterArguments } from '../types.js'; | ||
export declare const richTextValidate: Validate<unknown[], unknown, RichTextField<any[], AdapterArguments>, RichTextField<any[], AdapterArguments>>; | ||
//# sourceMappingURL=validation.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { Tooltip } from '@payloadcms/ui/elements/Tooltip'; | ||
import { Tooltip } from '@payloadcms/ui'; | ||
import React, { useCallback, useState } from 'react'; | ||
@@ -5,0 +5,0 @@ import { useSlate } from 'slate-react'; |
'use client'; | ||
import { useAuth } from '@payloadcms/ui/providers/Auth'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useEntityVisibility } from '@payloadcms/ui/providers/EntityVisibility'; | ||
import { useAuth, useConfig, useEntityVisibility } from '@payloadcms/ui'; | ||
import * as React from 'react'; | ||
@@ -6,0 +4,0 @@ const filterRichTextCollections = (collections, options)=>{ |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import React from 'react'; | ||
import { useCallback } from 'react'; | ||
import React, { useCallback } from 'react'; | ||
import { Editor, Element, Text, Transforms } from 'slate'; | ||
@@ -6,0 +5,0 @@ import { ReactEditor, useSlate } from 'slate-react'; |
@@ -1,2 +0,2 @@ | ||
import { Editor } from 'slate'; | ||
import { Editor, Element } from 'slate'; | ||
/** | ||
@@ -8,3 +8,3 @@ * Returns true, if the provided node is a Block Element. | ||
*/ | ||
export declare const isBlockElement: (editor: Editor, node: any) => node is import("../../types.js").ElementNode; | ||
export declare const isBlockElement: (editor: Editor, node: any) => node is Element; | ||
//# sourceMappingURL=isBlockElement.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import * as facelessUIImport from '@faceless-ui/modal'; | ||
import { useDrawerSlug } from '@payloadcms/ui/elements/Drawer'; | ||
import { useFieldProps } from '@payloadcms/ui/forms/FieldPropsProvider'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { getFormState } from '@payloadcms/ui/utilities/getFormState'; | ||
import { reduceFieldsToValues } from '@payloadcms/ui/utilities/reduceFieldsToValues'; | ||
import { useConfig, useDrawerSlug, useFieldProps, useModal, useTranslation } from '@payloadcms/ui'; | ||
import { getFormState } from '@payloadcms/ui/shared'; | ||
import { reduceFieldsToValues } from 'payload/shared'; | ||
import React, { Fragment, useState } from 'react'; | ||
@@ -68,3 +64,2 @@ import { Editor, Range, Transforms } from 'slate'; | ||
export const LinkButton = ()=>{ | ||
const { useModal } = facelessUIImport; | ||
const { fieldProps } = useElementButton(); | ||
@@ -71,0 +66,0 @@ const [initialState, setInitialState] = useState({}); |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import * as facelessUIImport from '@faceless-ui/modal'; | ||
import { getTranslation } from '@payloadcms/translations'; | ||
import { Button } from '@payloadcms/ui/elements/Button'; | ||
import { useDrawerSlug } from '@payloadcms/ui/elements/Drawer'; | ||
import { Popup } from '@payloadcms/ui/elements/Popup'; | ||
import { Translation } from '@payloadcms/ui/elements/Translation'; | ||
import { useAuth } from '@payloadcms/ui/providers/Auth'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useDocumentInfo } from '@payloadcms/ui/providers/DocumentInfo'; | ||
import { useLocale } from '@payloadcms/ui/providers/Locale'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { getFormState } from '@payloadcms/ui/utilities/getFormState'; | ||
import { reduceFieldsToValues } from '@payloadcms/ui/utilities/reduceFieldsToValues'; | ||
import { deepCopyObject } from 'payload/utilities'; | ||
import { Button, Popup, Translation, useAuth, useConfig, useDocumentInfo, useDrawerSlug, useLocale, useModal, useTranslation } from '@payloadcms/ui'; | ||
import { getFormState } from '@payloadcms/ui/shared'; | ||
import { deepCopyObject, reduceFieldsToValues } from 'payload/shared'; | ||
import React, { useCallback, useEffect, useState } from 'react'; | ||
@@ -57,3 +47,2 @@ import { Editor, Node, Transforms } from 'slate'; | ||
const { attributes, children, editorRef, element, fieldProps, schemaPath } = useElement(); | ||
const { useModal } = facelessUIImport; | ||
const fieldMapPath = `${schemaPath}.${linkFieldsSchemaPath}`; | ||
@@ -60,0 +49,0 @@ const { richTextComponentMap } = fieldProps; |
@@ -1,4 +0,3 @@ | ||
import type { SanitizedConfig } from 'payload/config'; | ||
import type { Field } from 'payload/types'; | ||
import type { Field, SanitizedConfig } from 'payload'; | ||
export declare const getBaseFields: (config: SanitizedConfig) => Field[]; | ||
//# sourceMappingURL=baseFields.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { Drawer } from '@payloadcms/ui/elements/Drawer'; | ||
import { useFieldProps } from '@payloadcms/ui/forms/FieldPropsProvider'; | ||
import { Form } from '@payloadcms/ui/forms/Form'; | ||
import { RenderFields } from '@payloadcms/ui/forms/RenderFields'; | ||
import { FormSubmit } from '@payloadcms/ui/forms/Submit'; | ||
import { useHotkey } from '@payloadcms/ui/hooks/useHotkey'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useDocumentInfo } from '@payloadcms/ui/providers/DocumentInfo'; | ||
import { useEditDepth } from '@payloadcms/ui/providers/EditDepth'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { getFormState } from '@payloadcms/ui/utilities/getFormState'; | ||
import { Drawer, Form, FormSubmit, RenderFields, useConfig, useDocumentInfo, useEditDepth, useFieldProps, useHotkey, useTranslation } from '@payloadcms/ui'; | ||
import { getFormState } from '@payloadcms/ui/shared'; | ||
import React, { useCallback, useRef } from 'react'; | ||
@@ -15,0 +6,0 @@ import { linkFieldsSchemaPath } from '../shared.js'; |
@@ -1,3 +0,2 @@ | ||
import type { FieldMap } from '@payloadcms/ui/utilities/buildComponentMap'; | ||
import type { FormState } from 'payload/types'; | ||
import type { FieldMap, FormState } from 'payload'; | ||
export type Props = { | ||
@@ -4,0 +3,0 @@ drawerSlug: string; |
import type { Element } from 'slate'; | ||
export type LinkElementType = Element & { | ||
export type LinkElementType = { | ||
doc: Record<string, unknown>; | ||
@@ -8,3 +8,3 @@ fields: Record<string, unknown>; | ||
url: string; | ||
}; | ||
} & Element; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -1,3 +0,2 @@ | ||
import type { SanitizedConfig } from 'payload/config'; | ||
import type { Field } from 'payload/types'; | ||
import type { Field, SanitizedConfig } from 'payload'; | ||
import type { Editor } from 'slate'; | ||
@@ -4,0 +3,0 @@ export declare const unwrapLink: (editor: Editor) => void; |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { useListDrawer } from '@payloadcms/ui/elements/ListDrawer'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { useListDrawer, useTranslation } from '@payloadcms/ui'; | ||
import React, { Fragment, useCallback, useEffect, useState } from 'react'; | ||
@@ -6,0 +5,0 @@ import { ReactEditor, useSlate } from 'slate-react'; |
@@ -1,10 +0,10 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
import './index.scss'; | ||
type Props = FormFieldBase & { | ||
type Props = { | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}; | ||
} & FormFieldBase; | ||
export declare const Element: (props: Props) => React.ReactNode; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { getTranslation } from '@payloadcms/translations'; | ||
import { Button } from '@payloadcms/ui/elements/Button'; | ||
import { useDocumentDrawer } from '@payloadcms/ui/elements/DocumentDrawer'; | ||
import { useListDrawer } from '@payloadcms/ui/elements/ListDrawer'; | ||
import usePayloadAPI from '@payloadcms/ui/hooks/usePayloadAPI'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { Button, useConfig, useDocumentDrawer, useListDrawer, usePayloadAPI, useTranslation } from '@payloadcms/ui'; | ||
import React, { useCallback, useReducer, useState } from 'react'; | ||
@@ -11,0 +6,0 @@ import { Transforms } from 'slate'; |
import type { Element } from 'slate'; | ||
export type RelationshipElementType = Element & { | ||
export type RelationshipElementType = { | ||
relationTo: string; | ||
@@ -7,3 +7,3 @@ value: { | ||
} | null; | ||
}; | ||
} & Element; | ||
//# sourceMappingURL=types.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { useListDrawer } from '@payloadcms/ui/elements/ListDrawer'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { useListDrawer, useTranslation } from '@payloadcms/ui'; | ||
import React, { Fragment, useCallback } from 'react'; | ||
@@ -6,0 +5,0 @@ import { ReactEditor, useSlate } from 'slate-react'; |
@@ -1,10 +0,10 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
import './index.scss'; | ||
type Props = FormFieldBase & { | ||
type Props = { | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}; | ||
} & FormFieldBase; | ||
export declare const Element: (props: Props) => React.ReactNode; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { getTranslation } from '@payloadcms/translations'; | ||
import { Button } from '@payloadcms/ui/elements/Button'; | ||
import { useDocumentDrawer } from '@payloadcms/ui/elements/DocumentDrawer'; | ||
import { DrawerToggler, useDrawerSlug } from '@payloadcms/ui/elements/Drawer'; | ||
import { useListDrawer } from '@payloadcms/ui/elements/ListDrawer'; | ||
import { File } from '@payloadcms/ui/graphics/File'; | ||
import usePayloadAPI from '@payloadcms/ui/hooks/usePayloadAPI'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { Button, DrawerToggler, File, useConfig, useDocumentDrawer, useDrawerSlug, useListDrawer, usePayloadAPI, useTranslation } from '@payloadcms/ui'; | ||
import React, { useCallback, useReducer, useState } from 'react'; | ||
@@ -13,0 +6,0 @@ import { Transforms } from 'slate'; |
@@ -1,3 +0,2 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { ClientCollectionConfig } from 'payload/types'; | ||
import type { ClientCollectionConfig, FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
@@ -8,6 +7,6 @@ import type { UploadElementType } from '../../types.js'; | ||
element: UploadElementType; | ||
fieldProps: FormFieldBase & { | ||
fieldProps: { | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}; | ||
} & FormFieldBase; | ||
relatedCollection: ClientCollectionConfig; | ||
@@ -14,0 +13,0 @@ schemaPath: string; |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import * as facelessUIImport from '@faceless-ui/modal'; | ||
import { getTranslation } from '@payloadcms/translations'; | ||
import { Drawer } from '@payloadcms/ui/elements/Drawer'; | ||
import { Form } from '@payloadcms/ui/forms/Form'; | ||
import { RenderFields } from '@payloadcms/ui/forms/RenderFields'; | ||
import { FormSubmit } from '@payloadcms/ui/forms/Submit'; | ||
import { useAuth } from '@payloadcms/ui/providers/Auth'; | ||
import { useConfig } from '@payloadcms/ui/providers/Config'; | ||
import { useDocumentInfo } from '@payloadcms/ui/providers/DocumentInfo'; | ||
import { useLocale } from '@payloadcms/ui/providers/Locale'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { getFormState } from '@payloadcms/ui/utilities/getFormState'; | ||
import { deepCopyObject } from 'payload/utilities'; | ||
import { Drawer, Form, FormSubmit, RenderFields, useAuth, useConfig, useDocumentInfo, useLocale, useModal, useTranslation } from '@payloadcms/ui'; | ||
import { getFormState } from '@payloadcms/ui/shared'; | ||
import { deepCopyObject } from 'payload/shared'; | ||
import React, { useCallback, useEffect, useState } from 'react'; | ||
@@ -21,3 +12,2 @@ import { Transforms } from 'slate'; | ||
export const UploadDrawer = (props)=>{ | ||
const { useModal } = facelessUIImport; | ||
const editor = useSlateStatic(); | ||
@@ -24,0 +14,0 @@ const { drawerSlug, element, fieldProps, relatedCollection, schemaPath } = props; |
import type { Element } from 'slate'; | ||
export type UploadElementType = Element & { | ||
export type UploadElementType = { | ||
fields: Record<string, unknown>; | ||
@@ -8,3 +8,3 @@ relationTo: string; | ||
} | null; | ||
}; | ||
} & Element; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -1,7 +0,7 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
export declare const RichTextField: React.FC<FormFieldBase & { | ||
export declare const RichTextField: React.FC<{ | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}>; | ||
} & FormFieldBase>; | ||
//# sourceMappingURL=index.d.ts.map |
'use client'; | ||
import { jsx as _jsx } from "react/jsx-runtime"; | ||
import { ShimmerEffect } from '@payloadcms/ui/elements/ShimmerEffect'; | ||
import { useFieldProps } from '@payloadcms/ui/forms/FieldPropsProvider'; | ||
import { useClientFunctions } from '@payloadcms/ui/providers/ClientFunction'; | ||
import { ShimmerEffect, useClientFunctions, useFieldProps } from '@payloadcms/ui'; | ||
import React, { Suspense, lazy, useEffect, useState } from 'react'; | ||
@@ -7,0 +5,0 @@ import { createFeatureMap } from './createFeatureMap.js'; |
@@ -1,17 +0,17 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
type ElementButtonContextType = { | ||
disabled?: boolean; | ||
fieldProps: FormFieldBase & { | ||
fieldProps: { | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}; | ||
} & FormFieldBase; | ||
path: string; | ||
schemaPath: string; | ||
}; | ||
export declare const ElementButtonProvider: React.FC<ElementButtonContextType & { | ||
export declare const ElementButtonProvider: React.FC<{ | ||
children: React.ReactNode; | ||
}>; | ||
} & ElementButtonContextType>; | ||
export declare const useElementButton: () => ElementButtonContextType; | ||
export {}; | ||
//# sourceMappingURL=ElementButtonProvider.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import type { Element } from 'slate'; | ||
@@ -9,14 +9,14 @@ import React from 'react'; | ||
element: T; | ||
fieldProps: FormFieldBase & { | ||
fieldProps: { | ||
name: string; | ||
richTextComponentMap: Map<string, React.ReactNode>; | ||
}; | ||
} & FormFieldBase; | ||
path: string; | ||
schemaPath: string; | ||
}; | ||
export declare const ElementProvider: React.FC<ElementContextType<Element> & { | ||
export declare const ElementProvider: React.FC<{ | ||
childNodes: React.ReactNode; | ||
}>; | ||
} & ElementContextType<Element>>; | ||
export declare const useElement: <T>() => ElementContextType<T>; | ||
export {}; | ||
//# sourceMappingURL=ElementProvider.d.ts.map |
@@ -1,15 +0,15 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
type LeafButtonContextType = { | ||
fieldProps: FormFieldBase & { | ||
fieldProps: { | ||
name: string; | ||
}; | ||
} & FormFieldBase; | ||
path: string; | ||
schemaPath: string; | ||
}; | ||
export declare const LeafButtonProvider: React.FC<LeafButtonContextType & { | ||
export declare const LeafButtonProvider: React.FC<{ | ||
children: React.ReactNode; | ||
}>; | ||
} & LeafButtonContextType>; | ||
export declare const useLeafButton: () => LeafButtonContextType; | ||
export {}; | ||
//# sourceMappingURL=LeafButtonProvider.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import React from 'react'; | ||
@@ -7,5 +7,5 @@ type LeafContextType = { | ||
editorRef: React.MutableRefObject<HTMLDivElement>; | ||
fieldProps: FormFieldBase & { | ||
fieldProps: { | ||
name: string; | ||
}; | ||
} & FormFieldBase; | ||
leaf: string; | ||
@@ -15,7 +15,7 @@ path: string; | ||
}; | ||
export declare const LeafProvider: React.FC<LeafContextType & { | ||
export declare const LeafProvider: React.FC<{ | ||
result: React.ReactNode; | ||
}>; | ||
} & LeafContextType>; | ||
export declare const useLeaf: () => LeafContextType; | ||
export {}; | ||
//# sourceMappingURL=LeafProvider.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import type { FormFieldBase } from '@payloadcms/ui/fields/shared'; | ||
import type { FormFieldBase } from 'payload'; | ||
import type { BaseEditor } from 'slate'; | ||
@@ -11,3 +11,3 @@ import type { HistoryEditor } from 'slate-history'; | ||
interface CustomTypes { | ||
Editor: BaseEditor & ReactEditor & HistoryEditor; | ||
Editor: BaseEditor & HistoryEditor & ReactEditor; | ||
Element: ElementNode; | ||
@@ -17,5 +17,5 @@ Text: TextNode; | ||
} | ||
export declare const RichText: React.FC<FormFieldBase & { | ||
elements: EnabledFeatures['elements']; | ||
leaves: EnabledFeatures['leaves']; | ||
export declare const RichText: React.FC<{ | ||
elements: EnabledFeatures["elements"]; | ||
leaves: EnabledFeatures["leaves"]; | ||
name: string; | ||
@@ -26,3 +26,3 @@ placeholder?: string; | ||
width?: string; | ||
}>; | ||
} & FormFieldBase>; | ||
//# sourceMappingURL=RichText.d.ts.map |
'use client'; | ||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; | ||
import { getTranslation } from '@payloadcms/translations'; | ||
import { FieldDescription } from '@payloadcms/ui/forms/FieldDescription'; | ||
import { FieldError } from '@payloadcms/ui/forms/FieldError'; | ||
import { FieldLabel } from '@payloadcms/ui/forms/FieldLabel'; | ||
import { useFieldProps } from '@payloadcms/ui/forms/FieldPropsProvider'; | ||
import { useField } from '@payloadcms/ui/forms/useField'; | ||
import { withCondition } from '@payloadcms/ui/forms/withCondition'; | ||
import { useEditDepth } from '@payloadcms/ui/providers/EditDepth'; | ||
import { useTranslation } from '@payloadcms/ui/providers/Translation'; | ||
import { FieldDescription, FieldError, FieldLabel, useEditDepth, useField, useFieldProps, useTranslation, withCondition } from '@payloadcms/ui'; | ||
import { isHotkey } from 'is-hotkey'; | ||
@@ -54,3 +47,3 @@ import React, { useCallback, useEffect, useMemo, useRef } from 'react'; | ||
const { formInitializing, initialValue, path, schemaPath, setValue, showError, value } = useField({ | ||
path: pathFromContext || pathFromProps || name, | ||
path: pathFromContext ?? pathFromProps ?? name, | ||
validate: memoizedValidate | ||
@@ -57,0 +50,0 @@ }); |
@@ -1,2 +0,1 @@ | ||
/// <reference types="react" resolution-mode="require"/> | ||
export type EnabledFeatures = { | ||
@@ -3,0 +2,0 @@ elements: { |
@@ -1,4 +0,4 @@ | ||
import type { RichTextAdapter } from 'payload/types'; | ||
import type { RichTextAdapter } from 'payload'; | ||
import type { AdapterArguments } from './types.js'; | ||
export declare const getGenerateComponentMap: (args: AdapterArguments) => RichTextAdapter['generateComponentMap']; | ||
export declare const getGenerateComponentMap: (args: AdapterArguments) => RichTextAdapter["generateComponentMap"]; | ||
//# sourceMappingURL=generateComponentMap.d.ts.map |
@@ -1,4 +0,4 @@ | ||
import type { RichTextAdapter } from 'payload/types'; | ||
import type { RichTextAdapter } from 'payload'; | ||
import type { AdapterArguments } from './types.js'; | ||
export declare const getGenerateSchemaMap: (args: AdapterArguments) => RichTextAdapter['generateSchemaMap']; | ||
export declare const getGenerateSchemaMap: (args: AdapterArguments) => RichTextAdapter["generateSchemaMap"]; | ||
//# sourceMappingURL=generateSchemaMap.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import type { RichTextAdapterProvider } from 'payload/types'; | ||
import type { RichTextAdapterProvider } from 'payload'; | ||
import type { AdapterArguments } from './types.js'; | ||
@@ -7,4 +7,5 @@ export declare function slateEditor(args: AdapterArguments): RichTextAdapterProvider<any[], AdapterArguments, any>; | ||
export { LeafButton } from './field/leaves/Button.js'; | ||
export { useLeaf } from './field/providers/LeafProvider.js'; | ||
export type { AdapterArguments, ElementNode, FieldProps, RichTextCustomElement, RichTextCustomLeaf, RichTextElement, RichTextLeaf, TextNode, } from './types.js'; | ||
export { nodeIsTextNode } from './types.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,3 +0,2 @@ | ||
import { sanitizeFields } from 'payload/config'; | ||
import { withNullableJSONSchemaType } from 'payload/utilities'; | ||
import { sanitizeFields, withNullableJSONSchemaType } from 'payload'; | ||
import { RichTextCell } from './cell/index.js'; | ||
@@ -43,11 +42,3 @@ import { richTextRelationshipPromise } from './data/richTextRelationshipPromise.js'; | ||
generateSchemaMap: getGenerateSchemaMap(args), | ||
outputSchema: ({ isRequired })=>{ | ||
return { | ||
type: withNullableJSONSchemaType('array', isRequired), | ||
items: { | ||
type: 'object' | ||
} | ||
}; | ||
}, | ||
populationPromises ({ context, currentDepth, depth, draft, field, fieldPromises, findMany, flattenLocales, overrideAccess, populationPromises, req, showHiddenFields, siblingDoc }) { | ||
graphQLPopulationPromises ({ context, currentDepth, depth, draft, field, fieldPromises, findMany, flattenLocales, overrideAccess, populationPromises, req, showHiddenFields, siblingDoc }) { | ||
if (field.admin?.elements?.includes('relationship') || field.admin?.elements?.includes('upload') || field.admin?.elements?.includes('link') || !field?.admin?.elements) { | ||
@@ -71,2 +62,35 @@ richTextRelationshipPromise({ | ||
}, | ||
hooks: { | ||
afterRead: [ | ||
({ context: _context, currentDepth, depth, draft, field: _field, fieldPromises, findMany, flattenLocales, overrideAccess, populationPromises, req, showHiddenFields, siblingData })=>{ | ||
const context = _context; | ||
const field = _field; | ||
if (field.admin?.elements?.includes('relationship') || field.admin?.elements?.includes('upload') || field.admin?.elements?.includes('link') || !field?.admin?.elements) { | ||
richTextRelationshipPromise({ | ||
context, | ||
currentDepth, | ||
depth, | ||
draft, | ||
field, | ||
fieldPromises, | ||
findMany, | ||
flattenLocales, | ||
overrideAccess, | ||
populationPromises, | ||
req, | ||
showHiddenFields, | ||
siblingDoc: siblingData | ||
}); | ||
} | ||
} | ||
] | ||
}, | ||
outputSchema: ({ isRequired })=>{ | ||
return { | ||
type: withNullableJSONSchemaType('array', isRequired), | ||
items: { | ||
type: 'object' | ||
} | ||
}; | ||
}, | ||
validate: richTextValidate | ||
@@ -79,4 +103,5 @@ }; | ||
export { LeafButton } from './field/leaves/Button.js'; | ||
export { useLeaf } from './field/providers/LeafProvider.js'; | ||
export { nodeIsTextNode } from './types.js'; | ||
//# sourceMappingURL=index.js.map |
@@ -1,4 +0,2 @@ | ||
/// <reference types="react" resolution-mode="require"/> | ||
import type { SanitizedConfig } from 'payload/config'; | ||
import type { Field, RichTextFieldProps } from 'payload/types'; | ||
import type { Field, RichTextFieldProps, SanitizedConfig } from 'payload'; | ||
import type { Editor } from 'slate'; | ||
@@ -5,0 +3,0 @@ export type TextNode = { |
@@ -1,3 +0,2 @@ | ||
import { useFieldProps } from '@payloadcms/ui/forms/FieldPropsProvider'; | ||
import { useAddClientFunction } from '@payloadcms/ui/providers/ClientFunction'; | ||
import { useAddClientFunction, useFieldProps } from '@payloadcms/ui'; | ||
export const useSlatePlugin = (key, plugin)=>{ | ||
@@ -4,0 +3,0 @@ const { schemaPath } = useFieldProps(); |
{ | ||
"name": "@payloadcms/richtext-slate", | ||
"version": "3.0.0-canary.f1db24e", | ||
"version": "3.0.0-canary.f1f97ff", | ||
"description": "The officially supported Slate richtext adapter for Payload", | ||
@@ -17,4 +17,4 @@ "homepage": "https://payloadcms.com", | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
@@ -28,3 +28,2 @@ }, | ||
"dependencies": { | ||
"@faceless-ui/modal": "2.0.2", | ||
"is-hotkey": "0.2.0", | ||
@@ -39,16 +38,16 @@ "slate": "0.91.4", | ||
"@types/node": "20.12.5", | ||
"@types/react": "npm:types-react@19.0.0-beta.2", | ||
"@types/react-dom": "npm:types-react-dom@19.0.0-beta.2", | ||
"@payloadcms/eslint-config": "1.1.1", | ||
"payload": "3.0.0-canary.f1db24e", | ||
"@payloadcms/ui": "3.0.0-canary.f1db24e" | ||
"@types/react": "npm:types-react@19.0.0-rc.0", | ||
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.0", | ||
"@payloadcms/eslint-config": "3.0.0-beta.59", | ||
"@payloadcms/ui": "3.0.0-canary.f1f97ff", | ||
"payload": "3.0.0-canary.f1f97ff" | ||
}, | ||
"peerDependencies": { | ||
"react": "^19.0.0 || ^19.0.0-rc-f994737d14-20240522", | ||
"@payloadcms/translations": "3.0.0-canary.f1db24e", | ||
"payload": "3.0.0-canary.f1db24e", | ||
"@payloadcms/ui": "3.0.0-canary.f1db24e" | ||
"react": "^19.0.0 || ^19.0.0-rc-6230622a1a-20240610", | ||
"@payloadcms/translations": "3.0.0-canary.f1f97ff", | ||
"@payloadcms/ui": "3.0.0-canary.f1f97ff", | ||
"payload": "3.0.0-canary.f1f97ff" | ||
}, | ||
"engines": { | ||
"node": ">=18.20.2" | ||
"node": "^18.20.2 || >=20.9.0" | ||
}, | ||
@@ -59,8 +58,8 @@ "publishConfig": { | ||
"overrides": { | ||
"@types/react": "npm:types-react@19.0.0-beta.2", | ||
"@types/react-dom": "npm:types-react-dom@19.0.0-beta.2" | ||
"@types/react": "npm:types-react@19.0.0-rc.0", | ||
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.0" | ||
}, | ||
"scripts": { | ||
"build": "pnpm copyfiles && pnpm build:swc && pnpm build:types", | ||
"build:swc": "swc ./src -d ./dist --config-file .swcrc", | ||
"build": "pnpm copyfiles && pnpm build:types && pnpm build:swc", | ||
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths", | ||
"build:types": "tsc --emitDeclarationOnly --outDir dist", | ||
@@ -67,0 +66,0 @@ "clean": "rimraf {dist,*.tsbuildinfo}", |
@@ -17,3 +17,3 @@ # Payload Slate Rich Text Editor | ||
```ts | ||
import { buildConfig } from 'payload/config' | ||
import { buildConfig } from 'payload' | ||
import { slateEditor } from '@payloadcms/richtext-slate' | ||
@@ -20,0 +20,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9
533926
4693
+ Added@faceless-ui/modal@3.0.0-beta.2(transitive)
+ Added@faceless-ui/scroll-info@2.0.0-beta.0(transitive)
+ Added@faceless-ui/window-info@3.0.0-beta.0(transitive)
+ Added@payloadcms/translations@3.0.0-canary.f1f97ff(transitive)
+ Added@payloadcms/ui@3.0.0-canary.f1f97ff(transitive)
+ Added@swc-node/core@1.13.1(transitive)
+ Added@swc-node/sourcemap-support@0.5.0(transitive)
+ Addedajv@8.14.0(transitive)
+ Addeddequal@2.0.3(transitive)
+ Addedfile-type@17.1.6(transitive)
+ Addedfind-up@7.0.0(transitive)
+ Addedfocus-trap@7.5.4(transitive)
+ Addedhelp-me@5.0.0(transitive)
+ Addedlocate-path@7.2.0(transitive)
+ Addedp-limit@4.0.0(transitive)
+ Addedp-locate@6.0.0(transitive)
+ Addedpath-exists@5.0.0(transitive)
+ Addedpayload@3.0.0-canary.f1f97ff(transitive)
+ Addedpeek-readable@5.4.2(transitive)
+ Addedpino@9.3.1(transitive)
+ Addedpino-abstract-transport@1.2.0(transitive)
+ Addedpino-pretty@11.2.1(transitive)
+ Addedpino-std-serializers@7.0.0(transitive)
+ Addedprocess-warning@3.0.0(transitive)
+ Addedpunycode@2.3.1(transitive)
+ Addedqs-esm@7.0.2(transitive)
+ Addedscheduler@0.25.0-rc-f994737d14-20240522(transitive)
+ Addedsonic-boom@4.2.0(transitive)
+ Addedsonner@1.7.4(transitive)
+ Addedsplit2@4.2.0(transitive)
+ Addedstrtok3@7.1.1(transitive)
+ Addedthread-stream@3.1.0(transitive)
+ Addedtoken-types@5.0.1(transitive)
+ Addedunicorn-magic@0.1.0(transitive)
+ Addeduri-js@4.4.1(transitive)
+ Addeduse-context-selector@2.0.0(transitive)
+ Addeduuid@10.0.0(transitive)
+ Addedyocto-queue@1.1.1(transitive)
- Removed@faceless-ui/modal@2.0.2
- Removed@faceless-ui/modal@2.0.2(transitive)
- Removed@faceless-ui/scroll-info@1.3.0(transitive)
- Removed@faceless-ui/window-info@2.1.2(transitive)
- Removed@hapi/hoek@9.3.0(transitive)
- Removed@hapi/topo@5.1.0(transitive)
- Removed@payloadcms/translations@3.0.0-canary.f1db24e(transitive)
- Removed@payloadcms/ui@3.0.0-canary.f1db24e(transitive)
- Removed@sideway/address@4.1.5(transitive)
- Removed@sideway/formula@3.0.1(transitive)
- Removed@sideway/pinpoint@2.0.0(transitive)
- Removed@swc-node/core@1.13.3(transitive)
- Removed@swc-node/sourcemap-support@0.5.1(transitive)
- Removed@types/needle@3.3.0(transitive)
- Removed@types/probe-image-size@7.2.5(transitive)
- Removedajv@8.17.1(transitive)
- Removedajv-formats@2.1.1(transitive)
- Removedarray-buffer-byte-length@1.0.2(transitive)
- Removedatomically@1.7.0(transitive)
- Removedavailable-typed-arrays@1.0.7(transitive)
- Removedbody-scroll-lock@3.1.5(transitive)
- Removedbrace-expansion@2.0.1(transitive)
- Removedcall-bind@1.0.8(transitive)
- Removedcall-bind-apply-helpers@1.0.1(transitive)
- Removedcall-bound@1.0.3(transitive)
- Removedconf@10.2.0(transitive)
- Removeddebounce-fn@4.0.0(transitive)
- Removeddeep-equal@2.2.2(transitive)
- Removeddefine-data-property@1.1.4(transitive)
- Removeddefine-properties@1.2.1(transitive)
- Removeddot-prop@6.0.1(transitive)
- Removeddotenv@8.6.0(transitive)
- Removeddunder-proto@1.0.1(transitive)
- Removedenv-paths@2.2.1(transitive)
- Removedes-define-property@1.0.1(transitive)
- Removedes-errors@1.3.0(transitive)
- Removedes-get-iterator@1.1.3(transitive)
- Removedes-object-atoms@1.1.1(transitive)
- Removedfast-uri@3.0.6(transitive)
- Removedfile-type@16.5.4(transitive)
- Removedfind-up@3.0.04.1.0(transitive)
- Removedflatley@5.2.0(transitive)
- Removedfocus-trap@6.9.4(transitive)
- Removedfor-each@0.3.4(transitive)
- Removedfunctions-have-names@1.2.3(transitive)
- Removedget-intrinsic@1.2.7(transitive)
- Removedget-proto@1.0.1(transitive)
- Removedglob@8.1.0(transitive)
- Removedgopd@1.2.0(transitive)
- Removedhas-bigints@1.1.0(transitive)
- Removedhas-property-descriptors@1.0.2(transitive)
- Removedhas-symbols@1.1.0(transitive)
- Removedhas-tostringtag@1.0.2(transitive)
- Removedhelp-me@4.2.0(transitive)
- Removedinternal-slot@1.1.0(transitive)
- Removedis-arguments@1.2.0(transitive)
- Removedis-array-buffer@3.0.5(transitive)
- Removedis-bigint@1.1.0(transitive)
- Removedis-boolean-object@1.2.1(transitive)
- Removedis-callable@1.2.7(transitive)
- Removedis-date-object@1.1.0(transitive)
- Removedis-map@2.0.3(transitive)
- Removedis-number-object@1.1.1(transitive)
- Removedis-obj@2.0.0(transitive)
- Removedis-regex@1.2.1(transitive)
- Removedis-set@2.0.3(transitive)
- Removedis-shared-array-buffer@1.0.4(transitive)
- Removedis-string@1.1.1(transitive)
- Removedis-symbol@1.1.1(transitive)
- Removedis-weakmap@2.0.2(transitive)
- Removedis-weakset@2.0.4(transitive)
- Removedisarray@2.0.5(transitive)
- Removedjoi@17.13.3(transitive)
- Removedjson-schema-typed@7.0.3(transitive)
- Removedlocate-path@3.0.05.0.0(transitive)
- Removedmath-intrinsics@1.1.0(transitive)
- Removedmimic-fn@2.1.03.1.0(transitive)
- Removedminimatch@5.1.6(transitive)
- Removedobject-inspect@1.13.3(transitive)
- Removedobject-is@1.1.6(transitive)
- Removedobject-keys@1.1.1(transitive)
- Removedobject.assign@4.1.7(transitive)
- Removedonetime@5.1.2(transitive)
- Removedp-limit@2.3.0(transitive)
- Removedp-locate@3.0.04.1.0(transitive)
- Removedp-try@2.2.0(transitive)
- Removedpath-exists@3.0.04.0.0(transitive)
- Removedpayload@3.0.0-canary.f1db24e(transitive)
- Removedpeek-readable@4.1.0(transitive)
- Removedpino@8.15.0(transitive)
- Removedpino-pretty@10.2.0(transitive)
- Removedpino-std-serializers@6.2.2(transitive)
- Removedpkg-up@3.1.0(transitive)
- Removedpossible-typed-array-names@1.0.0(transitive)
- Removedprocess-warning@2.3.2(transitive)
- Removedqs@6.11.26.14.0(transitive)
- Removedreact-toastify@10.0.5(transitive)
- Removedregexp.prototype.flags@1.5.4(transitive)
- Removedsafe-regex-test@1.1.0(transitive)
- Removedscheduler@0.23.0(transitive)
- Removedset-function-length@1.2.2(transitive)
- Removedset-function-name@2.0.2(transitive)
- Removedside-channel@1.1.0(transitive)
- Removedside-channel-list@1.0.0(transitive)
- Removedside-channel-map@1.0.1(transitive)
- Removedside-channel-weakmap@1.0.2(transitive)
- Removedsonic-boom@3.8.1(transitive)
- Removedstop-iteration-iterator@1.1.0(transitive)
- Removedstrtok3@6.3.0(transitive)
- Removedtabbable@5.3.3(transitive)
- Removedthread-stream@2.7.0(transitive)
- Removedtoken-types@4.2.1(transitive)
- Removeduse-context-selector@1.4.1(transitive)
- Removeduuid@9.0.1(transitive)
- Removedwhich-boxed-primitive@1.1.1(transitive)
- Removedwhich-collection@1.0.2(transitive)
- Removedwhich-typed-array@1.1.18(transitive)