Sha256: ead91adfe76836b95e822b36d6d713d55d014c2dc0dc0c101be9e9d26bd552ce

Contents?: true

Size: 815 Bytes

Versions: 1

Compression:

Stored size: 815 Bytes

Contents

module Phlexi
  module Display
    class Theme < Phlexi::Field::Theme
      def self.theme
        @theme ||= {
          base: nil,
          label: nil,
          description: nil,
          placeholder: nil,
          string: nil,
          text: :string,
          phone: :string,
          number: :string,
          integer: :string,
          datetime: :string,
          date: :datetime,
          time: :datetime,
          association: :string,
          attachment: :string,
          color: :string,
          color_icon: :string,
          email: :string,
          url: :email,
          json: :string,
          hstore: :json,
          password: :string,
          enum: :string,
          prefixed_icon: nil,
          link: nil,
          wrapper: nil
        }.freeze
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phlexi-display-0.0.4 lib/phlexi/display/theme.rb