Sha256: 33c1d480425a4656274e7038965c1dd992154d66396812db38066ab352e8c423
Contents?: true
Size: 482 Bytes
Versions: 24
Compression:
Stored size: 482 Bytes
Contents
# frozen_string_literal: true module DrawioDsl # DrawioDsl::DrawioPage is created when you call .page on the draw-io DSL. class DrawioPage < KDirector::Directors::ChildDirector include DrawioDsl::DrawioShapes def initialize(parent, **opts) super(parent, **opts) builder.add_page(**opts) end def grid_layout(**opts) builder.add_grid_layout(**opts) end def flex_layout(**opts) builder.add_flex_layout(**opts) end end end
Version data entries
24 entries across 24 versions & 1 rubygems