Sha256: 58d7dd5d1fc5bce582babfb30d103ab825b85240fb28cd68e5fe653ff761f546

Contents?: true

Size: 878 Bytes

Versions: 1

Compression:

Stored size: 878 Bytes

Contents

# frozen_string_literal: true

require_relative '../../components/govuk/field/input/file_upload'

module CCS
  module FrontendHelpers::GovUKFrontend
    # = GOV.UK File Upload
    #
    # This helper is used for generating the file upload component from the
    # {https://design-system.service.gov.uk/components/file-upload GDS - Components - File Upload}

    module FileUpload
      # Generates the HTML for the GOV.UK File Upload component
      #
      # @param (see CCS::Components::GovUK::Input::FileUpload#initialize)
      #
      # @option (see CCS::Components::GovUK::Input::FileUpload#initialize)
      #
      # @return (see CCS::Components::GovUK::Input::FileUpload#render)

      def govuk_file_upload(attribute, **options)
        Components::GovUK::Field::Input::FileUpload.new(context: self, attribute: attribute, **options).render
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ccs-frontend_helpers-0.1.0.rc.2 lib/ccs/frontend_helpers/govuk_frontend/file_upload.rb