View Source PyroComponents.Overrides.BEM (PyroComponents v0.1.1)

This overrides file adds BEM classes to all Pyro components. It does not define any style.

This is great if you want to fully customize your own styles; all you have to do is define the classes in your CSS file.

Configuration

As with any Pyro overrides, you need to include the override file in your config.exs file:

config :pyro, :overrides, [PyroComponents.Overrides.BEM]

Then, just implement the component classes listed in Overrides in your CSS file.

In addition to the component classes, Pyro also expects the following utility classes to be implemented:

.hidden {
  display: none;
}

You can override specific settings by merging in your own overrides file, as described here. Additionally, the BEM overrides file supports a few application config options:

# Prefix applied to all BEM classes, useful for namespacing Pyro's components in a brownfield project.
# Defaults to `""`
config :pyro_components, :bem_prefix, "pyro-"

# Specify color variants. Defaults to all Tailwind colors families.
config :pyro_components, :bem_color_variants, ["red", "green", "brand"]

# Specify flash variants. Defaults to `~w[info error warning success]`
config :pyro_components, :bem_flash_variants, ["danger", "warning"]

# Specify size variants. Defaults to `~w[xs sm base lg xl]`
config :pyro_components, :bem_size_variants, ["normal", "huge"]

# Specify button variants. Defaults to `~w[solid outline]`
config :pyro_components, :bem_button_variants, ["normal", "ghost"]

Using with Tailwind

The class names are built dynamically, so if you want to use Tailwind, you will need to implement your styles without the layer directive to ensure they are always included, and you will need to ensure you put them before the utilities import for correct precedence:

@tailwind base;
@tailwind components;

/* This will always be included in your compiled CSS */
.button {
  /* ... */
}

@tailwind utilities;

Also, be sure to remove any Pyro-related files from your content list in tailwind.config.js, otherwise you will be including unused classes from other override skins.

  • Captured functions with arity 1 and the arg named passed_assigns are passed component assigns at runtime, allowing complex conditional logic
  • assign_overridables/1 preserves the definition order of attrs and assigns them in that order, preserving dependency chains
  • Attrs with type :css_classes utilize the configured CSS merge utility

Overrides

Summary

Functions

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

This override is passed component assigns and executed while being assigned at runtime.

Functions

Link to this function

autocomplete_listbox_option_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

button_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

color_scheme_switcher_scheme(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

data_table_sort_btn_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

data_table_sort_icon_name(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

data_table_th_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

flash_hide_js(js \\ %JS{}, selector)

View Source
Link to this function

flash_icon_name(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

flash_show_js(js \\ %JS{}, selector)

View Source
Link to this function

flash_title(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

input_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

progress_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

slide_over_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

slide_over_hide_js(js \\ %JS{}, id, origin, close_event_name, close_slide_over_target)

View Source
Link to this function

slide_over_width_class(map)

View Source
Link to this function

slide_over_wrapper_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.

Link to this function

spinner_class(passed_assigns)

View Source

This override is passed component assigns and executed while being assigned at runtime.