Class: ShadcnPhlexcomponents::BreadcrumbPage

Inherits:
Base
  • Object
show all
Defined in:
lib/shadcn_phlexcomponents/components/breadcrumb.rb

Constant Summary

Constants inherited from Base

ShadcnPhlexcomponents::Base::SANITIZER_ALLOWED_ATTRIBUTES, ShadcnPhlexcomponents::Base::SANITIZER_ALLOWED_TAGS, ShadcnPhlexcomponents::Base::TAILWIND_MERGER

Instance Method Summary collapse

Methods inherited from Base

#before_template, #convert_collection_hash_to_struct, #find_as_child, #icon, #initialize, #item_disabled?, #merge_default_attributes, #merged_as_child_attributes, #nokogiri_attributes_to_hash, #overlay, #sanitize_as_child

Constructor Details

This class inherits a constructor from ShadcnPhlexcomponents::Base

Instance Method Details

#default_attributesObject



149
150
151
152
153
154
155
156
157
# File 'lib/shadcn_phlexcomponents/components/breadcrumb.rb', line 149

def default_attributes
  {
    role: "link",
    aria: {
      disabled: "true",
      current: "page",
    },
  }
end

#view_templateObject



159
160
161
# File 'lib/shadcn_phlexcomponents/components/breadcrumb.rb', line 159

def view_template(&)
  span(**@attributes, &)
end