@xyo-network/react-typedoc 4.4.10 → 4.4.11
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/browser/CommentViewer.d.ts +8 -0
- package/dist/browser/CommentViewer.d.ts.map +1 -0
- package/dist/browser/JsonViewerButton.d.ts +9 -0
- package/dist/browser/JsonViewerButton.d.ts.map +1 -0
- package/dist/browser/ProjectTwoPanelReflectionViewer.d.ts +5 -0
- package/dist/browser/ProjectTwoPanelReflectionViewer.d.ts.map +1 -0
- package/dist/browser/ReflectionLookup.d.ts +3 -0
- package/dist/browser/ReflectionLookup.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/Container.d.ts +8 -0
- package/dist/browser/ReflectionViewer/Container.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/Declaration.d.ts +5 -0
- package/dist/browser/ReflectionViewer/Declaration.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/DeclarationContainer.d.ts +8 -0
- package/dist/browser/ReflectionViewer/DeclarationContainer.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/NameViewer.d.ts +12 -0
- package/dist/browser/ReflectionViewer/NameViewer.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/Project.d.ts +5 -0
- package/dist/browser/ReflectionViewer/Project.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/ReflectionGroupViewer.d.ts +11 -0
- package/dist/browser/ReflectionViewer/ReflectionGroupViewer.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/ReflectionViewer.d.ts +4 -0
- package/dist/browser/ReflectionViewer/ReflectionViewer.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/ReflectionViewerProps.d.ts +15 -0
- package/dist/browser/ReflectionViewer/ReflectionViewerProps.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/SomeTypeViewer.d.ts +11 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/SomeTypeViewer.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/TypeBuilder.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/TypeBuilder.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildArrayString.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildArrayString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildIntersectionString.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildIntersectionString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildReferenceString.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildReferenceString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildReflectionString.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildReflectionString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildTypeString.d.ts +3 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildTypeString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildUnionString.d.ts +5 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/buildUnionString.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/index.d.ts +2 -0
- package/dist/browser/ReflectionViewer/SomeTypeViewer/index.d.ts.map +1 -0
- package/dist/browser/ReflectionViewer/index.d.ts +9 -0
- package/dist/browser/ReflectionViewer/index.d.ts.map +1 -0
- package/dist/browser/SomeReflection.d.ts +9 -0
- package/dist/browser/SomeReflection.d.ts.map +1 -0
- package/dist/browser/SourceViewer.d.ts +8 -0
- package/dist/browser/SourceViewer.d.ts.map +1 -0
- package/dist/browser/TreeViewer/Reflection.d.ts +13 -0
- package/dist/browser/TreeViewer/Reflection.d.ts.map +1 -0
- package/dist/browser/TreeViewer/ReflectionGroup.d.ts +4 -0
- package/dist/browser/TreeViewer/ReflectionGroup.d.ts.map +1 -0
- package/dist/browser/TreeViewer/index.d.ts +3 -0
- package/dist/browser/TreeViewer/index.d.ts.map +1 -0
- package/dist/browser/TwoPanelReflectionViewer.d.ts +4 -0
- package/dist/browser/TwoPanelReflectionViewer.d.ts.map +1 -0
- package/dist/browser/createLookup.d.ts +3 -0
- package/dist/browser/createLookup.d.ts.map +1 -0
- package/dist/browser/index.d.ts +10 -89
- package/dist/browser/index.d.ts.map +1 -0
- package/dist/browser/resolveChildren.d.ts +9 -0
- package/dist/browser/resolveChildren.d.ts.map +1 -0
- package/dist/browser/trimFlagLabel.d.ts +2 -0
- package/dist/browser/trimFlagLabel.d.ts.map +1 -0
- package/package.json +11 -11
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { Comment } from 'typedoc';
|
|
4
|
+
export interface CommentViewerProps extends FlexBoxProps {
|
|
5
|
+
comment: Comment;
|
|
6
|
+
}
|
|
7
|
+
export declare const CommentViewer: React.FC<CommentViewerProps>;
|
|
8
|
+
//# sourceMappingURL=CommentViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommentViewer.d.ts","sourceRoot":"","sources":["../../src/CommentViewer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEzD,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEtC,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACtD,OAAO,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAMtD,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ButtonExProps } from '@xylabs/react-button';
|
|
2
|
+
import type { JsonViewerExProps } from '@xyo-network/react-payload-raw-info';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
export type JsonViewerButtonProps = ButtonExProps & {
|
|
5
|
+
jsonViewProps?: Partial<JsonViewerExProps>;
|
|
6
|
+
src: object;
|
|
7
|
+
};
|
|
8
|
+
export declare const JsonViewerButton: React.FC<JsonViewerButtonProps>;
|
|
9
|
+
//# sourceMappingURL=JsonViewerButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonViewerButton.d.ts","sourceRoot":"","sources":["../../src/JsonViewerButton.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AAEzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAA;AAE5E,OAAO,KAAmB,MAAM,OAAO,CAAA;AAEvC,MAAM,MAAM,qBAAqB,GAAG,aAAa,GAAG;IAClD,aAAa,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,CAAA;IAC1C,GAAG,EAAE,MAAM,CAAA;CACZ,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAsB5D,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ProjectReflection } from 'typedoc';
|
|
3
|
+
import type { ContainerReflectionViewerProps } from './ReflectionViewer/index.ts';
|
|
4
|
+
export declare const ProjectTwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps<ProjectReflection>>;
|
|
5
|
+
//# sourceMappingURL=ProjectTwoPanelReflectionViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProjectTwoPanelReflectionViewer.d.ts","sourceRoot":"","sources":["../../src/ProjectTwoPanelReflectionViewer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAEhD,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAA;AAIjF,eAAO,MAAM,+BAA+B,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CAAC,iBAAiB,CAAC,CAOvG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionLookup.d.ts","sourceRoot":"","sources":["../../src/ReflectionLookup.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAEpD,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,qBAAqB,GAAG,qBAAqB,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ContainerReflection } from 'typedoc';
|
|
3
|
+
import type { ReflectionViewerProps } from './ReflectionViewerProps.tsx';
|
|
4
|
+
export interface ContainerReflectionViewerProps<T extends ContainerReflection = ContainerReflection> extends ReflectionViewerProps<T> {
|
|
5
|
+
itemRenderer?: React.FC<ReflectionViewerProps<any>>;
|
|
6
|
+
}
|
|
7
|
+
export declare const ContainerReflectionViewer: React.FC<ContainerReflectionViewerProps>;
|
|
8
|
+
//# sourceMappingURL=Container.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/Container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,mBAAmB,EAAmB,MAAM,SAAS,CAAA;AAKnE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAExE,MAAM,WAAW,8BAA8B,CAAC,CAAC,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,qBAAqB,CAAC,CAAC,CAAC;IAEnI,YAAY,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,GAAG,CAAC,CAAC,CAAA;CACpD;AAED,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CA4B9E,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DeclarationReflection } from 'typedoc';
|
|
3
|
+
import type { ReflectionViewerProps } from './ReflectionViewerProps.tsx';
|
|
4
|
+
export declare const DeclarationReflectionViewer: React.FC<ReflectionViewerProps<DeclarationReflection>>;
|
|
5
|
+
//# sourceMappingURL=Declaration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Declaration.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/Declaration.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,qBAAqB,EAAuB,MAAM,SAAS,CAAA;AAGzE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAExE,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,qBAAqB,CAAC,CAgC9F,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DeclarationReflection } from 'typedoc';
|
|
3
|
+
import type { ContainerReflectionViewerProps } from './Container.tsx';
|
|
4
|
+
export interface DeclarationContainerReflectionViewerProps extends ContainerReflectionViewerProps {
|
|
5
|
+
reflection: DeclarationReflection;
|
|
6
|
+
}
|
|
7
|
+
export declare const DeclarationContainerReflectionViewer: React.FC<DeclarationContainerReflectionViewerProps>;
|
|
8
|
+
//# sourceMappingURL=DeclarationContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeclarationContainer.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/DeclarationContainer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAEpD,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,iBAAiB,CAAA;AAIrE,MAAM,WAAW,yCAA0C,SAAQ,8BAA8B;IAC/F,UAAU,EAAE,qBAAqB,CAAA;CAClC;AAED,eAAO,MAAM,oCAAoC,EAAE,KAAK,CAAC,EAAE,CAAC,yCAAyC,CAoBpG,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { TypographyVariant } from '@mui/material';
|
|
2
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import type { SomeReflection } from '../SomeReflection.ts';
|
|
5
|
+
import type { ReflectionViewerProps } from './ReflectionViewerProps.tsx';
|
|
6
|
+
export interface NameViewerProps extends FlexBoxProps {
|
|
7
|
+
reflection: SomeReflection;
|
|
8
|
+
reflectionViewer: React.FC<ReflectionViewerProps>;
|
|
9
|
+
variant?: TypographyVariant;
|
|
10
|
+
}
|
|
11
|
+
export declare const NameViewer: React.FC<NameViewerProps>;
|
|
12
|
+
//# sourceMappingURL=NameViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NameViewer.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/NameViewer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAItD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEzD,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAE1D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAGxE,MAAM,WAAW,eAAgB,SAAQ,YAAY;IACnD,UAAU,EAAE,cAAc,CAAA;IAC1B,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAA;IACjD,OAAO,CAAC,EAAE,iBAAiB,CAAA;CAC5B;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA2BhD,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ProjectReflection } from 'typedoc';
|
|
3
|
+
import type { ContainerReflectionViewerProps } from './Container.tsx';
|
|
4
|
+
export declare const ProjectReflectionViewer: React.FC<ContainerReflectionViewerProps<ProjectReflection>>;
|
|
5
|
+
//# sourceMappingURL=Project.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Project.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/Project.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,KAAK,EAAE,iBAAiB,EAAmB,MAAM,SAAS,CAAA;AAGjE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,iBAAiB,CAAA;AAIrE,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CAAC,iBAAiB,CAAC,CA4B/F,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ContainerReflection, ReflectionGroup } from 'typedoc';
|
|
3
|
+
import type { ReflectionViewerProps } from './ReflectionViewerProps.tsx';
|
|
4
|
+
export interface ReflectionGroupViewerProps extends ReflectionViewerProps<ContainerReflection> {
|
|
5
|
+
autoScroll?: boolean;
|
|
6
|
+
group: ReflectionGroup;
|
|
7
|
+
reflection: ContainerReflection;
|
|
8
|
+
renderer?: React.FC<ReflectionViewerProps>;
|
|
9
|
+
}
|
|
10
|
+
export declare const ReflectionGroupViewer: React.FC<ReflectionGroupViewerProps>;
|
|
11
|
+
//# sourceMappingURL=ReflectionGroupViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionGroupViewer.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/ReflectionGroupViewer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoB,MAAM,OAAO,CAAA;AAExC,OAAO,KAAK,EACV,mBAAmB,EAAmB,eAAe,EACtD,MAAM,SAAS,CAAA;AAKhB,OAAO,KAAK,EAAc,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAEpF,MAAM,WAAW,0BAA2B,SAAQ,qBAAqB,CAAC,mBAAmB,CAAC;IAC5F,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,KAAK,EAAE,eAAe,CAAA;IACtB,UAAU,EAAE,mBAAmB,CAAA;IAC/B,QAAQ,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAA;CAC3C;AAYD,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAgDtE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionViewer.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/ReflectionViewer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,OAAO,KAAK,EAAc,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAYpF,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA4B5D,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { TypographyVariant } from '@mui/material';
|
|
2
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
3
|
+
import type { ReactElement } from 'react';
|
|
4
|
+
import type { Reflection } from 'typedoc';
|
|
5
|
+
import type { ReflectionLookup } from '../ReflectionLookup.ts';
|
|
6
|
+
export type FlagFilter = 'isPublic' | 'isPrivate' | 'isProtected';
|
|
7
|
+
export interface ReflectionViewerProps<T extends Reflection = Reflection> extends FlexBoxProps {
|
|
8
|
+
hiddenFlags?: FlagFilter[];
|
|
9
|
+
lookup?: ReflectionLookup;
|
|
10
|
+
nameViewer?: ReactElement | null;
|
|
11
|
+
reflection: T;
|
|
12
|
+
sources?: boolean;
|
|
13
|
+
variant?: TypographyVariant;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=ReflectionViewerProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionViewerProps.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/ReflectionViewerProps.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AACzC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAEzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AAE9D,MAAM,MAAM,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,aAAa,CAAA;AAEjE,MAAM,WAAW,qBAAqB,CAAC,CAAC,SAAS,UAAU,GAAG,UAAU,CAAE,SAAQ,YAAY;IAC5F,WAAW,CAAC,EAAE,UAAU,EAAE,CAAA;IAC1B,MAAM,CAAC,EAAE,gBAAgB,CAAA;IACzB,UAAU,CAAC,EAAE,YAAY,GAAG,IAAI,CAAA;IAChC,UAAU,EAAE,CAAC,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,iBAAiB,CAAA;CAC5B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { TypographyProps } from '@mui/material';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { SomeReflection } from '../../SomeReflection.ts';
|
|
4
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
5
|
+
export interface SomeTypeViewerProps extends TypographyProps {
|
|
6
|
+
opacity?: number;
|
|
7
|
+
reflection: SomeReflection;
|
|
8
|
+
reflectionViewer: React.FC<ReflectionViewerProps>;
|
|
9
|
+
}
|
|
10
|
+
export declare const SomeTypeViewer: React.FC<SomeTypeViewerProps>;
|
|
11
|
+
//# sourceMappingURL=SomeTypeViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SomeTypeViewer.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/SomeTypeViewer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AAEpD,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AAGzE,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,cAAc,CAAA;IAC1B,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAA;CAClD;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAYxD,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import type { SomeType, Type } from 'typedoc';
|
|
3
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
4
|
+
export type TypeBuilder = (type: SomeType | Type, reflectionViewer: React.FC<ReflectionViewerProps>, typeBuilder?: TypeBuilder) => ReactNode;
|
|
5
|
+
//# sourceMappingURL=TypeBuilder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TypeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/TypeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE7C,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AAEzE,MAAM,MAAM,WAAW,GAAG,CAAC,IAAI,EAAE,QAAQ,GAAG,IAAI,EAAE,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,EAAE,WAAW,CAAC,EAAE,WAAW,KAAK,SAAS,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ArrayType } from 'typedoc';
|
|
2
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
3
|
+
import type { TypeBuilder } from './TypeBuilder.ts';
|
|
4
|
+
export declare const buildArrayString: (typeObj: ArrayType, reflectionViewer: React.FC<ReflectionViewerProps>, typeBuilder: TypeBuilder) => string[];
|
|
5
|
+
//# sourceMappingURL=buildArrayString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildArrayString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildArrayString.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEnD,eAAO,MAAM,gBAAgB,GAAI,SAAS,SAAS,EAAE,kBAAkB,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,EAAE,aAAa,WAAW,aAQ/H,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { IntersectionType } from 'typedoc';
|
|
2
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
3
|
+
import type { TypeBuilder } from './TypeBuilder.ts';
|
|
4
|
+
export declare const buildIntersectionString: (typeObj: IntersectionType, reflectionViewer: React.FC<ReflectionViewerProps>, typeBuilder: TypeBuilder) => string[];
|
|
5
|
+
//# sourceMappingURL=buildIntersectionString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildIntersectionString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildIntersectionString.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE/C,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEnD,eAAO,MAAM,uBAAuB,GAAI,SAAS,gBAAgB,EAAE,kBAAkB,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,EAAE,aAAa,WAAW,aAY7I,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ReferenceType } from 'typedoc';
|
|
2
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
3
|
+
import type { TypeBuilder } from './TypeBuilder.ts';
|
|
4
|
+
export declare const buildReferenceString: (typeObj: ReferenceType, reflectionViewer: React.FC<ReflectionViewerProps>, typeBuilder: TypeBuilder) => string[];
|
|
5
|
+
//# sourceMappingURL=buildReferenceString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildReferenceString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildReferenceString.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEnD,eAAO,MAAM,oBAAoB,GAAI,SAAS,aAAa,EAAE,kBAAkB,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,EAAE,aAAa,WAAW,aAevI,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ReflectionType } from 'typedoc';
|
|
3
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
4
|
+
export declare const buildReflectionString: (typeObj: ReflectionType, reflectionViewer: React.FC<ReflectionViewerProps>) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
5
|
+
//# sourceMappingURL=buildReflectionString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildReflectionString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildReflectionString.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AAEzE,eAAO,MAAM,qBAAqB,GAAI,SAAS,cAAc,EAAE,kBAAkB,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,wDAI/G,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildTypeString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildTypeString.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEnD,eAAO,MAAM,eAAe,EAAE,WAsC7B,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { UnionType } from 'typedoc';
|
|
2
|
+
import type { ReflectionViewerProps } from '../ReflectionViewerProps.tsx';
|
|
3
|
+
import type { TypeBuilder } from './TypeBuilder.ts';
|
|
4
|
+
export declare const buildUnionString: (typeObj: UnionType, reflectionViewer: React.FC<ReflectionViewerProps>, typeBuilder: TypeBuilder) => string[];
|
|
5
|
+
//# sourceMappingURL=buildUnionString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildUnionString.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/buildUnionString.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEnD,eAAO,MAAM,gBAAgB,GAAI,SAAS,SAAS,EAAE,kBAAkB,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAAC,EAAE,aAAa,WAAW,aAY/H,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ReflectionViewer/SomeTypeViewer/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './Container.tsx';
|
|
2
|
+
export * from './Declaration.tsx';
|
|
3
|
+
export * from './DeclarationContainer.tsx';
|
|
4
|
+
export * from './Project.tsx';
|
|
5
|
+
export * from './ReflectionGroupViewer.tsx';
|
|
6
|
+
export * from './ReflectionViewer.tsx';
|
|
7
|
+
export * from './ReflectionViewerProps.tsx';
|
|
8
|
+
export * from './SomeTypeViewer/index.ts';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ReflectionViewer/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,mBAAmB,CAAA;AACjC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,eAAe,CAAA;AAC7B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,2BAA2B,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ParameterReflection, Reflection, SomeType } from 'typedoc';
|
|
2
|
+
export type WithSomeType<T> = T & {
|
|
3
|
+
type?: SomeType;
|
|
4
|
+
};
|
|
5
|
+
export type WithSomeParameters<T> = T & {
|
|
6
|
+
parameters?: ParameterReflection[];
|
|
7
|
+
};
|
|
8
|
+
export type SomeReflection = WithSomeParameters<WithSomeType<Reflection>>;
|
|
9
|
+
//# sourceMappingURL=SomeReflection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SomeReflection.d.ts","sourceRoot":"","sources":["../../src/SomeReflection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EAAE,UAAU,EAAE,QAAQ,EAC1C,MAAM,SAAS,CAAA;AAEhB,MAAM,MAAM,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,IAAI,CAAC,EAAE,QAAQ,CAAA;CAAE,CAAA;AAErD,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,UAAU,CAAC,EAAE,mBAAmB,EAAE,CAAA;CAAE,CAAA;AAE9E,MAAM,MAAM,cAAc,GAAG,kBAAkB,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { SourceReference } from 'typedoc';
|
|
4
|
+
export interface SourceViewerProps extends FlexBoxProps {
|
|
5
|
+
source: SourceReference;
|
|
6
|
+
}
|
|
7
|
+
export declare const SourceViewer: React.FC<SourceViewerProps>;
|
|
8
|
+
//# sourceMappingURL=SourceViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SourceViewer.d.ts","sourceRoot":"","sources":["../../src/SourceViewer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEzD,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C,MAAM,WAAW,iBAAkB,SAAQ,YAAY;IACrD,MAAM,EAAE,eAAe,CAAA;CACxB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAQpD,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ContainerReflection, Reflection } from 'typedoc';
|
|
4
|
+
import type { ReflectionLookup } from '../ReflectionLookup.ts';
|
|
5
|
+
import type { FlagFilter } from '../ReflectionViewer/index.ts';
|
|
6
|
+
export interface ReflectionTreeViewerProps<T extends Reflection = ContainerReflection> extends FlexBoxProps {
|
|
7
|
+
hiddenFlags?: FlagFilter[];
|
|
8
|
+
lookup?: ReflectionLookup;
|
|
9
|
+
reflection: T;
|
|
10
|
+
searchTerm?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const ReflectionTreeViewer: React.FC<ReflectionTreeViewerProps>;
|
|
13
|
+
//# sourceMappingURL=Reflection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Reflection.d.ts","sourceRoot":"","sources":["../../../src/TreeViewer/Reflection.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEzD,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAE9D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAA;AAE9D,MAAM,WAAW,yBAAyB,CAAC,CAAC,SAAS,UAAU,GAAG,mBAAmB,CAAE,SAAQ,YAAY;IACzG,WAAW,CAAC,EAAE,UAAU,EAAE,CAAA;IAC1B,MAAM,CAAC,EAAE,gBAAgB,CAAA;IACzB,UAAU,EAAE,CAAC,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CA+CpE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionGroup.d.ts","sourceRoot":"","sources":["../../../src/TreeViewer/ReflectionGroup.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AAI9E,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA6B1E,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/TreeViewer/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,uBAAuB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TwoPanelReflectionViewer.d.ts","sourceRoot":"","sources":["../../src/TwoPanelReflectionViewer.tsx"],"names":[],"mappings":"AAMA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAIhD,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAA;AAIjF,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CA6F7E,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createLookup.d.ts","sourceRoot":"","sources":["../../src/createLookup.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAEzE,eAAO,MAAM,YAAY,GAAI,CAAC,SAAS,qBAAqB,EAAE,YAAY,mBAAmB,sBAI5F,CAAA"}
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,89 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
declare const CommentViewer: React.FC<CommentViewerProps>;
|
|
12
|
-
|
|
13
|
-
type JsonViewerButtonProps = ButtonExProps & {
|
|
14
|
-
jsonViewProps?: Partial<JsonViewerExProps>;
|
|
15
|
-
src: object;
|
|
16
|
-
};
|
|
17
|
-
declare const JsonViewerButton: React.FC<JsonViewerButtonProps>;
|
|
18
|
-
|
|
19
|
-
type ReflectionLookup<T extends DeclarationReflection = DeclarationReflection> = Record<string, T>;
|
|
20
|
-
|
|
21
|
-
type FlagFilter = 'isPublic' | 'isPrivate' | 'isProtected';
|
|
22
|
-
interface ReflectionViewerProps<T extends Reflection = Reflection> extends FlexBoxProps {
|
|
23
|
-
hiddenFlags?: FlagFilter[];
|
|
24
|
-
lookup?: ReflectionLookup;
|
|
25
|
-
nameViewer?: ReactElement | null;
|
|
26
|
-
reflection: T;
|
|
27
|
-
sources?: boolean;
|
|
28
|
-
variant?: TypographyVariant;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
interface ContainerReflectionViewerProps<T extends ContainerReflection = ContainerReflection> extends ReflectionViewerProps<T> {
|
|
32
|
-
itemRenderer?: React.FC<ReflectionViewerProps<any>>;
|
|
33
|
-
}
|
|
34
|
-
declare const ContainerReflectionViewer: React.FC<ContainerReflectionViewerProps>;
|
|
35
|
-
|
|
36
|
-
declare const DeclarationReflectionViewer: React.FC<ReflectionViewerProps<DeclarationReflection>>;
|
|
37
|
-
|
|
38
|
-
interface DeclarationContainerReflectionViewerProps extends ContainerReflectionViewerProps {
|
|
39
|
-
reflection: DeclarationReflection;
|
|
40
|
-
}
|
|
41
|
-
declare const DeclarationContainerReflectionViewer: React.FC<DeclarationContainerReflectionViewerProps>;
|
|
42
|
-
|
|
43
|
-
declare const ProjectReflectionViewer: React.FC<ContainerReflectionViewerProps<ProjectReflection>>;
|
|
44
|
-
|
|
45
|
-
interface ReflectionGroupViewerProps extends ReflectionViewerProps<ContainerReflection> {
|
|
46
|
-
autoScroll?: boolean;
|
|
47
|
-
group: ReflectionGroup;
|
|
48
|
-
reflection: ContainerReflection;
|
|
49
|
-
renderer?: React.FC<ReflectionViewerProps>;
|
|
50
|
-
}
|
|
51
|
-
declare const ReflectionGroupViewer: React.FC<ReflectionGroupViewerProps>;
|
|
52
|
-
|
|
53
|
-
declare const ReflectionViewer: React.FC<ReflectionViewerProps>;
|
|
54
|
-
|
|
55
|
-
type WithSomeType<T> = T & {
|
|
56
|
-
type?: SomeType;
|
|
57
|
-
};
|
|
58
|
-
type WithSomeParameters<T> = T & {
|
|
59
|
-
parameters?: ParameterReflection[];
|
|
60
|
-
};
|
|
61
|
-
type SomeReflection = WithSomeParameters<WithSomeType<Reflection>>;
|
|
62
|
-
|
|
63
|
-
interface SomeTypeViewerProps extends TypographyProps {
|
|
64
|
-
opacity?: number;
|
|
65
|
-
reflection: SomeReflection;
|
|
66
|
-
reflectionViewer: React.FC<ReflectionViewerProps>;
|
|
67
|
-
}
|
|
68
|
-
declare const SomeTypeViewer: React.FC<SomeTypeViewerProps>;
|
|
69
|
-
|
|
70
|
-
declare const ProjectTwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps<ProjectReflection>>;
|
|
71
|
-
|
|
72
|
-
interface SourceViewerProps extends FlexBoxProps {
|
|
73
|
-
source: SourceReference;
|
|
74
|
-
}
|
|
75
|
-
declare const SourceViewer: React.FC<SourceViewerProps>;
|
|
76
|
-
|
|
77
|
-
interface ReflectionTreeViewerProps<T extends Reflection = ContainerReflection> extends FlexBoxProps {
|
|
78
|
-
hiddenFlags?: FlagFilter[];
|
|
79
|
-
lookup?: ReflectionLookup;
|
|
80
|
-
reflection: T;
|
|
81
|
-
searchTerm?: string;
|
|
82
|
-
}
|
|
83
|
-
declare const ReflectionTreeViewer: React.FC<ReflectionTreeViewerProps>;
|
|
84
|
-
|
|
85
|
-
declare const ReflectionGroupTreeViewer: React.FC<ReflectionGroupViewerProps>;
|
|
86
|
-
|
|
87
|
-
declare const TwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps>;
|
|
88
|
-
|
|
89
|
-
export { CommentViewer, type CommentViewerProps, ContainerReflectionViewer, type ContainerReflectionViewerProps, DeclarationContainerReflectionViewer, type DeclarationContainerReflectionViewerProps, DeclarationReflectionViewer, type FlagFilter, JsonViewerButton, type JsonViewerButtonProps, ProjectReflectionViewer, ProjectTwoPanelReflectionViewer, ReflectionGroupTreeViewer, ReflectionGroupViewer, type ReflectionGroupViewerProps, type ReflectionLookup, ReflectionTreeViewer, type ReflectionTreeViewerProps, ReflectionViewer, type ReflectionViewerProps, type SomeReflection, SomeTypeViewer, type SomeTypeViewerProps, SourceViewer, type SourceViewerProps, TwoPanelReflectionViewer, type WithSomeParameters, type WithSomeType };
|
|
1
|
+
export * from './CommentViewer.tsx';
|
|
2
|
+
export * from './JsonViewerButton.tsx';
|
|
3
|
+
export * from './ProjectTwoPanelReflectionViewer.tsx';
|
|
4
|
+
export * from './ReflectionLookup.ts';
|
|
5
|
+
export * from './ReflectionViewer/index.ts';
|
|
6
|
+
export * from './SomeReflection.ts';
|
|
7
|
+
export * from './SourceViewer.tsx';
|
|
8
|
+
export * from './TreeViewer/index.ts';
|
|
9
|
+
export * from './TwoPanelReflectionViewer.tsx';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AACtC,cAAc,uCAAuC,CAAA;AACrD,cAAc,uBAAuB,CAAA;AACrC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Reflection } from 'typedoc';
|
|
2
|
+
import type { ReflectionLookup } from './ReflectionLookup.ts';
|
|
3
|
+
import type { SomeReflection } from './SomeReflection.ts';
|
|
4
|
+
type ReflectionWithChildren = {
|
|
5
|
+
children: Reflection[];
|
|
6
|
+
};
|
|
7
|
+
export declare const resolveChildren: <T extends SomeReflection>(reflection: ReflectionWithChildren, lookup?: ReflectionLookup) => T[];
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=resolveChildren.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolveChildren.d.ts","sourceRoot":"","sources":["../../src/resolveChildren.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAEzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAC7D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAEzD,KAAK,sBAAsB,GAAG;IAAE,QAAQ,EAAE,UAAU,EAAE,CAAA;CAAE,CAAA;AAExD,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,cAAc,EAAE,YAAY,sBAAsB,EAAE,SAAQ,gBAAqB,KAAG,CAAC,EAkB9H,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trimFlagLabel.d.ts","sourceRoot":"","sources":["../../src/trimFlagLabel.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,GAAI,OAAO,MAAM,WAK1C,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-typedoc",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.11",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -50,22 +50,22 @@
|
|
|
50
50
|
"@mui/styles": "^6.4.6",
|
|
51
51
|
"@mui/system": "^6.4.6",
|
|
52
52
|
"@mui/x-tree-view": "^7.26.0",
|
|
53
|
-
"@xylabs/assert": "^4.5.
|
|
54
|
-
"@xylabs/react-button": "^5.3.
|
|
55
|
-
"@xylabs/react-flexbox": "^5.3.
|
|
56
|
-
"@xyo-network/react-payload-raw-info": "^4.4.
|
|
53
|
+
"@xylabs/assert": "^4.5.6",
|
|
54
|
+
"@xylabs/react-button": "^5.3.25",
|
|
55
|
+
"@xylabs/react-flexbox": "^5.3.25",
|
|
56
|
+
"@xyo-network/react-payload-raw-info": "^4.4.11",
|
|
57
57
|
"react-router-dom": "^7.2.0",
|
|
58
58
|
"typedoc": "^0.27.9",
|
|
59
|
-
"typescript": "^5.
|
|
59
|
+
"typescript": "^5.8.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@storybook/react": "^8.6.
|
|
63
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
64
|
-
"@xylabs/tsconfig-react": "^5.0.
|
|
62
|
+
"@storybook/react": "^8.6.3",
|
|
63
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
64
|
+
"@xylabs/tsconfig-react": "^5.0.39",
|
|
65
65
|
"react": "^18.3.1",
|
|
66
66
|
"react-dom": "^18.3.1",
|
|
67
|
-
"storybook": "^8.6.
|
|
68
|
-
"typescript": "^5.
|
|
67
|
+
"storybook": "^8.6.3",
|
|
68
|
+
"typescript": "^5.8.2"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"react": "^18.2.0",
|