mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
- Added CSV export functionality with escape handling. - Implemented JSON export functionality. - Created utility functions for retrieving column labels and row values. - Established a filtering system with state management and filter application. - Refactored sorting logic into dedicated modules for better maintainability. - Deprecated old filtering and sorting files, redirecting to new module structure. - Introduced form field builders and validation utilities, also refactored into single-function files.
17 lines
472 B
Lua
17 lines
472 B
Lua
-- User dialog module facade
|
|
-- Re-exports all user dialog functions for backward compatibility
|
|
-- Each function is defined in its own file following 1-function-per-file pattern
|
|
|
|
---@class UserDialog
|
|
local M = {}
|
|
|
|
-- Import all single-function modules
|
|
local renderCreate = require("user.render_create")
|
|
local renderEdit = require("user.render_edit")
|
|
|
|
-- Re-export all functions
|
|
M.render_create = renderCreate.render_create
|
|
M.render_edit = renderEdit.render_edit
|
|
|
|
return M
|