Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
43
frontend/node_modules/@mdx-js/react/lib/index.d.ts
generated
vendored
Normal file
43
frontend/node_modules/@mdx-js/react/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
* Get current components from the MDX Context.
|
||||
*
|
||||
* @param {Readonly<MDXComponents> | MergeComponents | null | undefined} [components]
|
||||
* Additional components to use or a function that creates them (optional).
|
||||
* @returns {MDXComponents}
|
||||
* Current components.
|
||||
*/
|
||||
export function useMDXComponents(components?: Readonly<MDXComponents> | MergeComponents | null | undefined): MDXComponents;
|
||||
/**
|
||||
* Provider for MDX context.
|
||||
*
|
||||
* @param {Readonly<Props>} properties
|
||||
* Properties.
|
||||
* @returns {ReactElement}
|
||||
* Element.
|
||||
* @satisfies {Component}
|
||||
*/
|
||||
export function MDXProvider(properties: Readonly<Props>): React.ReactElement;
|
||||
/**
|
||||
* Custom merge function.
|
||||
*/
|
||||
export type MergeComponents = (currentComponents: Readonly<MDXComponents>) => MDXComponents;
|
||||
/**
|
||||
* Configuration for `MDXProvider`.
|
||||
*/
|
||||
export type Props = {
|
||||
/**
|
||||
* Children (optional).
|
||||
*/
|
||||
children?: React.ReactNode | null | undefined;
|
||||
/**
|
||||
* Additional components to use or a function that creates them (optional).
|
||||
*/
|
||||
components?: Readonly<MDXComponents> | MergeComponents | null | undefined;
|
||||
/**
|
||||
* Turn off outer component context (default: `false`).
|
||||
*/
|
||||
disableParentContext?: boolean | null | undefined;
|
||||
};
|
||||
import type { MDXComponents } from 'mdx/types.js';
|
||||
import React from 'react';
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
frontend/node_modules/@mdx-js/react/lib/index.d.ts.map
generated
vendored
Normal file
1
frontend/node_modules/@mdx-js/react/lib/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"AA8BA;;;;;;;GAOG;AACH,8CALW,QAAQ,CAAC,aAAa,CAAC,GAAG,eAAe,GAAG,IAAI,GAAG,SAAS,GAE1D,aAAa,CAkBzB;AAED;;;;;;;;GAQG;AACH,wCANW,QAAQ,CAAC,KAAK,CAAC,GAEb,kBAAY,CAsBxB;;;;kDA1EU,QAAQ,CAAC,aAAa,CAAC,KAErB,aAAa;;;;;;;;eAKZ,eAAS,GAAG,IAAI,GAAG,SAAS;;;;iBAE5B,QAAQ,CAAC,aAAa,CAAC,GAAG,eAAe,GAAG,IAAI,GAAG,SAAS;;;;2BAE5D,OAAO,GAAG,IAAI,GAAG,SAAS;;mCAlBR,cAAc;kBAsB5B,OAAO"}
|
||||
83
frontend/node_modules/@mdx-js/react/lib/index.js
generated
vendored
Normal file
83
frontend/node_modules/@mdx-js/react/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
/**
|
||||
* @import {MDXComponents} from 'mdx/types.js'
|
||||
* @import {Component, ReactElement, ReactNode} from 'react'
|
||||
*/
|
||||
|
||||
/**
|
||||
* @callback MergeComponents
|
||||
* Custom merge function.
|
||||
* @param {Readonly<MDXComponents>} currentComponents
|
||||
* Current components from the context.
|
||||
* @returns {MDXComponents}
|
||||
* Additional components.
|
||||
*
|
||||
* @typedef Props
|
||||
* Configuration for `MDXProvider`.
|
||||
* @property {ReactNode | null | undefined} [children]
|
||||
* Children (optional).
|
||||
* @property {Readonly<MDXComponents> | MergeComponents | null | undefined} [components]
|
||||
* Additional components to use or a function that creates them (optional).
|
||||
* @property {boolean | null | undefined} [disableParentContext=false]
|
||||
* Turn off outer component context (default: `false`).
|
||||
*/
|
||||
|
||||
import React from 'react'
|
||||
|
||||
/** @type {Readonly<MDXComponents>} */
|
||||
const emptyComponents = {}
|
||||
|
||||
const MDXContext = React.createContext(emptyComponents)
|
||||
|
||||
/**
|
||||
* Get current components from the MDX Context.
|
||||
*
|
||||
* @param {Readonly<MDXComponents> | MergeComponents | null | undefined} [components]
|
||||
* Additional components to use or a function that creates them (optional).
|
||||
* @returns {MDXComponents}
|
||||
* Current components.
|
||||
*/
|
||||
export function useMDXComponents(components) {
|
||||
const contextComponents = React.useContext(MDXContext)
|
||||
|
||||
// Memoize to avoid unnecessary top-level context changes
|
||||
return React.useMemo(
|
||||
function () {
|
||||
// Custom merge via a function prop
|
||||
if (typeof components === 'function') {
|
||||
return components(contextComponents)
|
||||
}
|
||||
|
||||
return {...contextComponents, ...components}
|
||||
},
|
||||
[contextComponents, components]
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Provider for MDX context.
|
||||
*
|
||||
* @param {Readonly<Props>} properties
|
||||
* Properties.
|
||||
* @returns {ReactElement}
|
||||
* Element.
|
||||
* @satisfies {Component}
|
||||
*/
|
||||
export function MDXProvider(properties) {
|
||||
/** @type {Readonly<MDXComponents>} */
|
||||
let allComponents
|
||||
|
||||
if (properties.disableParentContext) {
|
||||
allComponents =
|
||||
typeof properties.components === 'function'
|
||||
? properties.components(emptyComponents)
|
||||
: properties.components || emptyComponents
|
||||
} else {
|
||||
allComponents = useMDXComponents(properties.components)
|
||||
}
|
||||
|
||||
return React.createElement(
|
||||
MDXContext.Provider,
|
||||
{value: allComponents},
|
||||
properties.children
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user