class Lookbook::Embed::Component

def alpine_component

def alpine_component
  "embedComponent"
end

def alpine_data

def alpine_data
  [alpine_encode(@id), "$store.pages.embeds"].join(",")
end

def initialize(id:, example:, params: {}, opts: {}, max_height: nil, **html_attrs)

def initialize(id:, example:, params: {}, opts: {}, max_height: nil, **html_attrs)
  @id = id
  @target = example
  @params = params
  @opts = opts
  @max_height = max_height
  super(**html_attrs)
end

def lookbook_inspect_path(*args)

def lookbook_inspect_path(*args)
  Lookbook::Engine.routes.url_helpers.lookbook_inspect_path(*args)
end

def lookbook_preview_path(*args)

def lookbook_preview_path(*args)
  Lookbook::Engine.routes.url_helpers.lookbook_preview_path(*args)
end