Pagination entity DSL definition for table configuration.
Supports both inline and block syntax:
# Inline
pagination type: :infinite, page_size: 25
# Block with UI customization
pagination do
type :infinite
page_size 25
ui do
load_more_label "Show More"
show_total true
end
end