@yoopta/themes-shadcn 6.0.0-beta.7 → 6.0.0-beta.9
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/applyTheme.d.ts.map +1 -1
- package/dist/embed/elements/embed/embed-element.d.ts +3 -0
- package/dist/embed/elements/embed/embed-element.d.ts.map +1 -0
- package/dist/embed/elements/embed/embed-inline-toolbar.d.ts +13 -0
- package/dist/embed/elements/embed/embed-inline-toolbar.d.ts.map +1 -0
- package/dist/embed/elements/embed/embed-placeholder.d.ts +11 -0
- package/dist/embed/elements/embed/embed-placeholder.d.ts.map +1 -0
- package/dist/embed/elements/embed/embed-render.d.ts +18 -0
- package/dist/embed/elements/embed/embed-render.d.ts.map +1 -0
- package/dist/embed/index.d.ts +6 -0
- package/dist/embed/index.d.ts.map +1 -0
- package/dist/embed/types.d.ts +3 -0
- package/dist/embed/types.d.ts.map +1 -0
- package/dist/file/elements/file/file-element.d.ts +3 -0
- package/dist/file/elements/file/file-element.d.ts.map +1 -0
- package/dist/file/elements/file/file-icons.d.ts +14 -0
- package/dist/file/elements/file/file-icons.d.ts.map +1 -0
- package/dist/file/elements/file/file-inline-toolbar.d.ts +12 -0
- package/dist/file/elements/file/file-inline-toolbar.d.ts.map +1 -0
- package/dist/file/elements/file/file-placeholder.d.ts +15 -0
- package/dist/file/elements/file/file-placeholder.d.ts.map +1 -0
- package/dist/file/elements/file/file-render.d.ts +14 -0
- package/dist/file/elements/file/file-render.d.ts.map +1 -0
- package/dist/file/index.d.ts +6 -0
- package/dist/file/index.d.ts.map +1 -0
- package/dist/file/types.d.ts +3 -0
- package/dist/file/types.d.ts.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/mention/elements/mention/mention-avatar.d.ts +10 -0
- package/dist/mention/elements/mention/mention-avatar.d.ts.map +1 -0
- package/dist/mention/elements/mention/mention-dropdown.d.ts +8 -0
- package/dist/mention/elements/mention/mention-dropdown.d.ts.map +1 -0
- package/dist/mention/elements/mention/mention-element.d.ts +3 -0
- package/dist/mention/elements/mention/mention-element.d.ts.map +1 -0
- package/dist/mention/elements/mention/mention-item.d.ts +11 -0
- package/dist/mention/elements/mention/mention-item.d.ts.map +1 -0
- package/dist/mention/index.d.ts +11 -0
- package/dist/mention/index.d.ts.map +1 -0
- package/dist/mention/types.d.ts +17 -0
- package/dist/mention/types.d.ts.map +1 -0
- package/package.json +4 -2
package/dist/applyTheme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applyTheme.d.ts","sourceRoot":"","sources":["../src/applyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"applyTheme.d.ts","sourceRoot":"","sources":["../src/applyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAuBnD,KAAK,YAAY,GAAG,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAG3C,KAAK,gBAAgB,GAAG,MAAM,CAC5B,MAAM,EACN;IACE,yBAAyB,CAAC,EAAE,YAAY,EAAE,CAAC;IAE3C,MAAM,CAAC,EAAE,GAAG,CAAC;IAEb,OAAO,CAAC,EAAE,GAAG,CAAC;IAEd,QAAQ,CAAC,EAAE,GAAG,CAAC;CAChB,CACF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,UAAU,CACxB,OAAO,EAAE,YAAY,EAAE,EACvB,UAAU,CAAC,EAAE,gBAAgB,GAC5B,YAAY,EAAE,CAsDhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"embed-element.d.ts","sourceRoot":"","sources":["../../../../src/embed/elements/embed/embed-element.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,wBAAwB,EAA0B,MAAM,gBAAgB,CAAC;AAUvF,eAAO,MAAM,YAAY,+CAAgD,wBAAwB,4CA2FhG,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { EmbedElementProps } from '../../types';
|
|
3
|
+
type EmbedInlineToolbarProps = {
|
|
4
|
+
referenceRef: React.MutableRefObject<HTMLElement | null>;
|
|
5
|
+
elementProps: EmbedElementProps;
|
|
6
|
+
onUpdate: (props: Partial<EmbedElementProps>) => void;
|
|
7
|
+
onReplace: () => void;
|
|
8
|
+
onDelete: () => void;
|
|
9
|
+
onCopy?: () => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const EmbedInlineToolbar: ({ referenceRef, elementProps, onUpdate, onReplace, onDelete, onCopy, }: EmbedInlineToolbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=embed-inline-toolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"embed-inline-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/embed/elements/embed/embed-inline-toolbar.tsx"],"names":[],"mappings":";AASA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,KAAK,uBAAuB,GAAG;IAC7B,YAAY,EAAE,KAAK,CAAC,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACzD,YAAY,EAAE,iBAAiB,CAAC;IAChC,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IACtD,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,kBAAkB,2EAO5B,uBAAuB,4CAoJzB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { PluginElementRenderProps } from '@yoopta/editor';
|
|
3
|
+
type EmbedPlaceholderProps = {
|
|
4
|
+
onInsertUrl: (url: string) => void;
|
|
5
|
+
className?: string;
|
|
6
|
+
attributes: PluginElementRenderProps['attributes'];
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
};
|
|
9
|
+
export declare const EmbedPlaceholder: ({ onInsertUrl, className, attributes, children, }: EmbedPlaceholderProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=embed-placeholder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"embed-placeholder.d.ts","sourceRoot":"","sources":["../../../../src/embed/elements/embed/embed-placeholder.tsx"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAQ/D,KAAK,qBAAqB,GAAG;IAC3B,WAAW,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,wBAAwB,CAAC,YAAY,CAAC,CAAC;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAiIF,eAAO,MAAM,gBAAgB,sDAK1B,qBAAqB,4CAyBvB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { PluginElementRenderProps } from '@yoopta/editor';
|
|
3
|
+
import type { EmbedPluginOptions } from '@yoopta/embed';
|
|
4
|
+
import type { EmbedElementProps } from '../../types';
|
|
5
|
+
type Props = {
|
|
6
|
+
blockId: string;
|
|
7
|
+
elementId: string;
|
|
8
|
+
onUpdate: (props: Partial<EmbedElementProps>) => void;
|
|
9
|
+
onDelete: () => void;
|
|
10
|
+
onReplace: () => void;
|
|
11
|
+
attributes: PluginElementRenderProps['attributes'];
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
elementProps: EmbedElementProps;
|
|
14
|
+
pluginOptions?: EmbedPluginOptions;
|
|
15
|
+
};
|
|
16
|
+
export declare const EmbedRender: ({ blockId, attributes, children, elementProps, onUpdate, onDelete, onReplace, pluginOptions, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=embed-render.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"embed-render.d.ts","sourceRoot":"","sources":["../../../../src/embed/elements/embed/embed-render.tsx"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAE/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAKxD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IACtD,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,wBAAwB,CAAC,YAAY,CAAC,CAAC;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,YAAY,EAAE,iBAAiB,CAAC;IAChC,aAAa,CAAC,EAAE,kBAAkB,CAAC;CACpC,CAAC;AAEF,eAAO,MAAM,WAAW,mGASrB,KAAK,4CA0NP,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/embed/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;CAInB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/embed/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,IAAI,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAEhF,MAAM,MAAM,iBAAiB,GAAG,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-element.d.ts","sourceRoot":"","sources":["../../../../src/file/elements/file/file-element.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,wBAAwB,EAA0B,MAAM,gBAAgB,CAAC;AAUvF,eAAO,MAAM,WAAW,+CAAgD,wBAAwB,4CA4G/F,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type LucideIcon } from 'lucide-react';
|
|
2
|
+
import type { FileType } from '@yoopta/file';
|
|
3
|
+
type FileIconProps = {
|
|
4
|
+
fileType: FileType;
|
|
5
|
+
className?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const FileIcon: ({ fileType, className }: FileIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const getFileTypeStyles: (fileType: FileType) => {
|
|
9
|
+
icon: LucideIcon;
|
|
10
|
+
color: string;
|
|
11
|
+
bgColor: string;
|
|
12
|
+
};
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=file-icons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-icons.d.ts","sourceRoot":"","sources":["../../../../src/file/elements/file/file-icons.tsx"],"names":[],"mappings":"AAAA,OAAO,EAUL,KAAK,UAAU,EAChB,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AA6D7C,KAAK,aAAa,GAAG;IACnB,QAAQ,EAAE,QAAQ,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,QAAQ,4BAA6B,aAAa,4CAK9D,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAc,QAAQ;;WAtEe,MAAM;aAAW,MAAM;CAwEzF,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { FileElementProps } from '../../types';
|
|
3
|
+
type FileInlineToolbarProps = {
|
|
4
|
+
referenceRef: React.MutableRefObject<HTMLElement | null>;
|
|
5
|
+
elementProps: FileElementProps;
|
|
6
|
+
onReplace: () => void;
|
|
7
|
+
onDelete: () => void;
|
|
8
|
+
onDownload?: () => void;
|
|
9
|
+
};
|
|
10
|
+
export declare const FileInlineToolbar: ({ referenceRef, elementProps, onReplace, onDelete, onDownload, }: FileInlineToolbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=file-inline-toolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-inline-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/file/elements/file/file-inline-toolbar.tsx"],"names":[],"mappings":";AAQA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAEpD,KAAK,sBAAsB,GAAG;IAC5B,YAAY,EAAE,KAAK,CAAC,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACzD,YAAY,EAAE,gBAAgB,CAAC;IAC/B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,iBAAiB,qEAM3B,sBAAsB,4CAkHxB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { PluginElementRenderProps } from '@yoopta/editor';
|
|
3
|
+
import type { FileUploadProgress } from '@yoopta/file';
|
|
4
|
+
type FilePlaceholderProps = {
|
|
5
|
+
onUpload: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
6
|
+
className?: string;
|
|
7
|
+
attributes: PluginElementRenderProps['attributes'];
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
progress: FileUploadProgress | null;
|
|
10
|
+
loading: boolean;
|
|
11
|
+
accept?: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const FilePlaceholder: ({ onUpload, className, attributes, children, progress, loading, accept, }: FilePlaceholderProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=file-placeholder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-placeholder.d.ts","sourceRoot":"","sources":["../../../../src/file/elements/file/file-placeholder.tsx"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAC/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAMvD,KAAK,oBAAoB,GAAG;IAC1B,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IAC/D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,wBAAwB,CAAC,YAAY,CAAC,CAAC;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,EAAE,kBAAkB,GAAG,IAAI,CAAC;IACpC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AA4DF,eAAO,MAAM,eAAe,8EAQzB,oBAAoB,4CAatB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { PluginElementRenderProps } from '@yoopta/editor';
|
|
3
|
+
import type { FileElementProps } from '../../types';
|
|
4
|
+
type Props = {
|
|
5
|
+
blockId: string;
|
|
6
|
+
onDelete: () => void;
|
|
7
|
+
onReplace: () => void;
|
|
8
|
+
attributes: PluginElementRenderProps['attributes'];
|
|
9
|
+
children: React.ReactNode;
|
|
10
|
+
elementProps: FileElementProps;
|
|
11
|
+
};
|
|
12
|
+
export declare const FileRender: ({ blockId, attributes, children, elementProps, onDelete, onReplace }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=file-render.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-render.d.ts","sourceRoot":"","sources":["../../../../src/file/elements/file/file-render.tsx"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAO/D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAIpD,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,wBAAwB,CAAC,YAAY,CAAC,CAAC;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,YAAY,EAAE,gBAAgB,CAAC;CAChC,CAAC;AAEF,eAAO,MAAM,UAAU,yEAA0E,KAAK,4CAiErG,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/file/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;CAIlB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/file/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAE7E,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -9,11 +9,15 @@ export { ParagraphUI } from './paragraph';
|
|
|
9
9
|
export { CalloutUI } from './callout';
|
|
10
10
|
export { ListsUI } from './lists';
|
|
11
11
|
export { LinkUI } from './link';
|
|
12
|
+
export { MentionUI, MentionDropdown } from './mention';
|
|
12
13
|
export { ImageUI } from './image';
|
|
13
14
|
export { VideoUI } from './video';
|
|
15
|
+
export { EmbedUI } from './embed';
|
|
16
|
+
export { FileUI } from './file';
|
|
14
17
|
export { CodeUI } from './code';
|
|
15
18
|
export { TabsUI } from './tabs';
|
|
16
19
|
export { StepsUI } from './steps';
|
|
17
20
|
export { DividerUI } from './divider';
|
|
18
21
|
export default applyTheme;
|
|
22
|
+
export { applyTheme };
|
|
19
23
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,iBAAiB,CAAC;AACzB,OAAO,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,eAAe,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,iBAAiB,CAAC;AACzB,OAAO,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,eAAe,UAAU,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,CAAC"}
|