Sha256: 7178ee0daacb6d02af6c6b6dd3a981b448a944f7f3d6f56a83f0914bc4f75c9d
Contents?: true
Size: 685 Bytes
Versions: 68
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true # TODO: mover a pg_scaffold module PgEngine class Configuracion attr_accessor :sistema_iconos, :clase_botones_chicos, :boton_destroy, :boton_edit, :boton_show, :boton_light, :icono_destroy, :icono_edit, :icono_show, :boton_export, :bootstrap_version def initialize @sistema_iconos = 'bi' @clase_botones_chicos = 'btn-sm' @boton_destroy = 'light' @boton_export = 'warning' @boton_edit = 'light' @boton_show = 'light' @boton_light = 'light' @icono_destroy = 'trash-fill' @icono_edit = 'pencil' @icono_show = 'eye-fill' @bootstrap_version = 5 end end end
Version data entries
68 entries across 68 versions & 1 rubygems