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>
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
declare const ADDON_ID: "addon-controls";
|
|
declare const PARAM_KEY: "controls";
|
|
|
|
interface ControlsParameters {
|
|
/**
|
|
* Controls configuration
|
|
*
|
|
* @see https://storybook.js.org/docs/essentials/controls#parameters-1
|
|
*/
|
|
controls: {
|
|
/** Remove the addon panel and disable the addon's behavior */
|
|
disable?: boolean;
|
|
/** Disable the ability to create or edit stories from the Controls panel */
|
|
disableSaveFromUI?: boolean;
|
|
/** Exclude specific properties from the Controls panel */
|
|
exclude?: string[] | RegExp;
|
|
/**
|
|
* Show the full documentation for each property in the Controls addon panel, including the
|
|
* description and default value.
|
|
*/
|
|
expanded?: boolean;
|
|
/** Exclude only specific properties in the Controls panel */
|
|
include?: string[] | RegExp;
|
|
/**
|
|
* Preset color swatches for the color picker control
|
|
*
|
|
* @example PresetColors: [{ color: '#ff4785', title: 'Coral' }, 'rgba(0, 159, 183, 1)',
|
|
* '#fe4a49']
|
|
*/
|
|
presetColors?: Array<string | {
|
|
color: string;
|
|
title?: string;
|
|
}>;
|
|
/** Controls sorting order */
|
|
sort?: 'none' | 'alpha' | 'requiredFirst';
|
|
};
|
|
}
|
|
|
|
export { ADDON_ID, type ControlsParameters, PARAM_KEY };
|