Workflow Trigger

This commit is contained in:
Robert Jelic
2025-02-21 18:41:58 +01:00
parent d253876702
commit 792832c61d
3 changed files with 14 additions and 3 deletions

View File

@@ -2,6 +2,8 @@ local elementManager = require("elementManager")
local VisualElement = elementManager.getElement("VisualElement")
local expect = require("libraries/expect")
local split = require("libraries/utils").split
---@configDescription The container class. It is a visual element that can contain other elements. It is the base class for all containers
---@configDefault true
--- The container class. It is a visual element that can contain other elements. It is the base class for all containers,
--- like Frames, BaseFrames, and more.

View File

@@ -1,4 +1,6 @@
local VisualElement = require("elements/VisualElement")
---@configDescription A scrollable list of selectable items
---@configDefault true
--- This is the list class. It provides a scrollable list of selectable items with support for
--- custom item rendering, separators, and selection handling.