InvokeAI/invokeai/frontend/web/src/features
psychedelicious 044d4c107a feat(nodes): move all invocation metadata (type, title, tags, category) to decorator
All invocation metadata (type, title, tags and category) are now defined in decorators.

The decorators add the `type: Literal["invocation_type"]: "invocation_type"` field to the invocation.

Category is a new invocation metadata, but it is not used by the frontend just yet.

- `@invocation()` decorator for invocations

```py
@invocation(
    "sdxl_compel_prompt",
    title="SDXL Prompt",
    tags=["sdxl", "compel", "prompt"],
    category="conditioning",
)
class SDXLCompelPromptInvocation(BaseInvocation, SDXLPromptInvocationBase):
    ...
```

- `@invocation_output()` decorator for invocation outputs

```py
@invocation_output("clip_skip_output")
class ClipSkipInvocationOutput(BaseInvocationOutput):
    ...
```

- update invocation docs
- add category to decorator
- regen frontend types
2023-08-30 18:35:12 +10:00
..
canvas feat: Send Canvas Image & Mask To ControlNet 2023-08-29 23:48:28 +12:00
changeBoardModal feat: add multi-select to gallery 2023-08-03 11:46:59 +10:00
controlNet Merge branch 'ui-fixes' of https://github.com/blessedcoolant/InvokeAI into ui-fixes 2023-08-30 14:08:39 +12:00
deleteImageModal feat: node editor 2023-08-16 09:54:38 +10:00
dnd fix(ui): fix issue with node editor state not restoring correctly on mount 2023-08-16 09:54:38 +10:00
dynamicPrompts ui: Simply collapse spacing 2023-08-30 08:40:17 +12:00
embedding feat(ui): add eslint rules 2023-08-21 19:17:36 +10:00
gallery Merge branch 'main' into feat/nodes-phase-5 2023-08-30 14:11:49 +12:00
lora ui: Simply collapse spacing 2023-08-30 08:40:17 +12:00
nodes feat(nodes): move all invocation metadata (type, title, tags, category) to decorator 2023-08-30 18:35:12 +10:00
parameters Merge branch 'main' into feat/nodes-phase-5 2023-08-30 14:11:49 +12:00
sdxl ui: encase Denoising Strength to make it more prominent 2023-08-30 09:32:41 +12:00
system feat: Auto Change Dimensions on Model Switch by Type 2023-08-30 05:49:57 +12:00
ui ui: Simply collapse spacing 2023-08-30 08:40:17 +12:00