Workflow Trigger

This commit is contained in:
Robert Jelic
2025-02-21 18:34:06 +01:00
parent 8b76c43947
commit d253876702
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
local elementManager = require("elementManager")
local Container = elementManager.getElement("Container")
local Render = require("render")
---@configDescription This is the base frame class. It is the root element of all elements and the only element without a parent.
--- This is the base frame class. It is the root element of all elements and the only element without a parent.

View File

@@ -1,8 +1,9 @@
local VisualElement = require("elements/VisualElement")
local List = require("elements/List")
local tHex = require("libraries/colorHex")
---@configDescription A horizontal menu bar with selectable
--- This is the menu class. It provides a horizontal menu bar with selectable items and separators.
--- This is the menu class. It provides a horizontal menu bar with selectable items.
--- Menu items are displayed in a single row and can have custom colors and callbacks.
---@class Menu : List
local Menu = setmetatable({}, List)