Sha256: 4260d2223f052c4d7a5f34e108fe9db47dd293cd2dfcd6be610cd8fdf24662b8

Contents?: true

Size: 418 Bytes

Versions: 118

Compression:

Stored size: 418 Bytes

Contents

module Avo
  module Dashboards
    class BaseDivider
      attr_reader :label
      attr_reader :invisible
      attr_reader :index

      class_attribute :id

      def initialize(label: nil, invisible: false, index: nil)
        @label = label
        @invisible = invisible
        @index = index
      end

      def is_divider?
        true
      end

      def is_card?
        false
      end
    end
  end
end

Version data entries

118 entries across 118 versions & 1 rubygems

Version Path
avo-2.13.3.pre.2 lib/avo/dashboards/base_divider.rb
avo-2.13.3.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.13.2.pre.2 lib/avo/dashboards/base_divider.rb
avo-2.13.2.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.13.1 lib/avo/dashboards/base_divider.rb
avo-2.13.0 lib/avo/dashboards/base_divider.rb
avo-2.12.1.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.12.0 lib/avo/dashboards/base_divider.rb
avo-2.11.3.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.11.2.pre.3 lib/avo/dashboards/base_divider.rb
avo-2.11.2.pre.2 lib/avo/dashboards/base_divider.rb
avo-2.11.2.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.11.1.pre.3 lib/avo/dashboards/base_divider.rb
avo-2.11.1 lib/avo/dashboards/base_divider.rb
avo-2.11.1.pre.2 lib/avo/dashboards/base_divider.rb
avo-2.11.1.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.11.0 lib/avo/dashboards/base_divider.rb
avo-2.10.3.pre.1 lib/avo/dashboards/base_divider.rb
avo-2.10.2 lib/avo/dashboards/base_divider.rb
avo-2.9.2.pre1 lib/avo/dashboards/base_divider.rb