Sha256: 7796a484a18ff87b366f2f61b6f4529273faca55bb937bbbf425956cbe63ec0a
Contents?: true
Size: 734 Bytes
Versions: 67
Compression:
Stored size: 734 Bytes
Contents
# frozen_string_literal: true module Playbook module PbDistributionBar class DistributionBar include Playbook::Props partial "pb_distribution_bar/distribution_bar" prop :size, type: Playbook::Props::Enum, values: %w[lg sm], default: "lg" prop :widths, type: Playbook::Props::NumberArray, default: [1] def classname generate_classname("pb_distribution_bar", size) end def widths_to_percentages widths.map do |width| (width.to_f * 100 / widths.sum).round(2) end end def chart_options { size: size, widths: widths, } end end end end
Version data entries
67 entries across 67 versions & 1 rubygems