mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
- Updated ContactForm example to remove type casting on handleInputChange. - Enhanced package installation scripts with type definitions for better type safety. - Implemented package uninstallation and installation checks with improved type definitions. - Added new Lua scripts for admin settings, code editor features, and user management. - Introduced schema editor field types and validation rules for form inputs. - Created social feed components and workflow editor nodes for enhanced functionality. - Developed layout modules for various UI levels, including admin and supergod panels.
11 lines
258 B
Lua
11 lines
258 B
Lua
-- Code editor gutter (line numbers)
|
|
local function gutter(show_line_numbers, show_fold_markers)
|
|
return {
|
|
type = "editor_gutter",
|
|
showLineNumbers = show_line_numbers ~= false,
|
|
showFoldMarkers = show_fold_markers ~= false
|
|
}
|
|
end
|
|
|
|
return gutter
|