Sha256: c20108c08fc84c2225389078c3d9c81ce41ce2f18015b478f4a48b2e1d8fbe06
Contents?: true
Size: 928 Bytes
Versions: 20
Compression:
Stored size: 928 Bytes
Contents
# frozen_string_literal: true require_relative '../../components/govuk/field/input/file_upload' module CCS module FrontendHelpers module 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 end
Version data entries
20 entries across 20 versions & 1 rubygems