This commit is contained in:
NoryiE
2025-09-14 08:55:45 +00:00
parent b79c15a53c
commit 741a53aa04
22 changed files with 45 additions and 50 deletions

View File

@@ -1,7 +1,3 @@
# BigFontText
_Basalt - Nyorie: Please don't copy paste this code to your projects, this code is slightly changed (to fit the way basalt draws elements), if you want the original code, checkout this:
http://www.computercraft.info/forums2/index.php?/topic/25367-bigfont-api-write-bigger-letters-v10/_
# BigFont
_The BigFont element is a text element that displays larger text. It uses Wojbie's BigFont API to render the text in a larger font size. Credits to Wojbie for the original API._

View File

@@ -1,6 +1,6 @@
# ComboBox
_This is the ComboBox class. It extends the dropdown functionality with editable text input,
allowing users to either select from a list or type their own custom text._
_This is the ComboBox class. It extends the dropdown functionality with editable text input,_
_allowing users to either select from a list or type their own custom text._
Extends: `Dropdown`

View File

@@ -1,7 +1,6 @@
# Flexbox
_This is the Flexbox class. It is a container that arranges its children in a flexible layout.
The flexbox element adds the following properties to its children:
_
_This is the Flexbox class. It is a container that arranges its children in a flexible layout._
_The flexbox element adds the following properties to its children:_
Extends: `Container`

View File

@@ -1,7 +1,7 @@
# Image
_This is the Image element class which can be used to display bimg formatted images.
Bimg is a universal ComputerCraft image format.
See: https://github.com/SkyTheCodeMaster/bimg_
_This is the Image element class which can be used to display bimg formatted images._
_Bimg is a universal ComputerCraft image format._
_See: [https://github.com/SkyTheCodeMaster/bimg](https://github.com/SkyTheCodeMaster/bimg)_
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Input
_This is the input class. It provides a text input field that can handle user input with various features like
cursor movement, text manipulation, placeholder text, and input validation._
_This is the input class. It provides a text input field that can handle user input with various features like_
_cursor movement, text manipulation, placeholder text, and input validation._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Label
_This is the label class. It provides a simple text display element that automatically
resizes its width based on the text content._
_This is the label class. It provides a simple text display element that automatically_
_resizes its width based on the text content._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# List
_This is the list class. It provides a scrollable list of selectable items with support for
custom item rendering, separators, and selection handling._
_This is the list class. It provides a scrollable list of selectable items with support for _
_custom item rendering, separators, and selection handling._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Menu
_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._
_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._
Extends: `List`

View File

@@ -1,6 +1,6 @@
# ProgressBar
_This is the progress bar class. It provides a visual representation of progress
with optional percentage display and customizable colors._
_This is the progress bar class. It provides a visual representation of progress_
_with optional percentage display and customizable colors._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Slider
_This is the slider class. It provides a draggable slider control that can be either horizontal or vertical,
with customizable colors and value ranges._
_This is the slider class. It provides a draggable slider control that can be either horizontal or vertical,_
_with customizable colors and value ranges._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Table
_This is the table class. It provides a sortable data grid with customizable columns,
row selection, and scrolling capabilities._
_This is the table class. It provides a sortable data grid with customizable columns,_
_row selection, and scrolling capabilities._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# Tree
_This is the tree class. It provides a hierarchical view of nodes that can be expanded and collapsed,
with support for selection and scrolling._
_This is the tree class. It provides a hierarchical view of nodes that can be expanded and collapsed,_
_with support for selection and scrolling._
Extends: `VisualElement`

View File

@@ -1,6 +1,6 @@
# VisualElement
_This is the visual element class. It serves as the base class for all visual UI elements
and provides core functionality for positioning, sizing, colors, and rendering._
_This is the visual element class. It serves as the base class for all visual UI elements_
_and provides core functionality for positioning, sizing, colors, and rendering._
Extends: `BaseElement`