ex_cell icon indicating copy to clipboard operation
ex_cell copied to clipboard

A module for creating coupled modules of CSS, Javascript and Views in Phoenix

Results 10 ex_cell issues
Sort by recently updated
recently updated
newest added

Bumps [dialyxir](https://github.com/jeremyjh/dialyxir) from 0.5.1 to 1.3.0. Release notes Sourced from dialyxir's releases. 1.3 Added Elixir 1.15 support. Support for warning :callback_not_exported. Changed Several improvements to documentation, particularly Github CI documentation....

dependencies

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.28.0 to 0.29.4. Changelog Sourced from ex_doc's changelog. v0.29.4 (2023-03-29) Bug fixes Fix sidebar element with no children taking additional padding Fix elements being rendered too thick...

dependencies

Bumps [excoveralls](https://github.com/parroty/excoveralls) from 0.14.4 to 0.16.1. Release notes Sourced from excoveralls's releases. v0.16.1 Changes Cobertura now handles defprotocol and defimpl definitions (#306). v0.16.0 Enhancements Add coveralls.multiple command (#303). Support #...

dependencies

Bumps [credo](https://github.com/rrrene/credo) from 1.5.1 to 1.7.0. Changelog Sourced from credo's changelog. 1.7.0 Credo.Check.Readability.ModuleDoc works for Phoenix 1.7+ views Credo.Check.Readability.FunctionNames now ignores custom operators Credo.Check.Refactor.Apply now works in pipes Credo.Check.Consistency.ExceptionNames does...

dependencies

Bumps [phoenix_html](https://github.com/phoenixframework/phoenix_html) from 2.13.3 to 3.3.1. Changelog Sourced from phoenix_html's changelog. v3.3.1 (2023-02-27) Bug fix Set display to none on generated forms Warn for maps with atom keys v3.3.0 (2023-02-10)...

dependencies

Bumps [phoenix](https://github.com/phoenixframework/phoenix) from 1.4.13 to 1.5.14. Changelog Sourced from phoenix's changelog. 1.5.14 (2022-10-10) Fix security vulnerability in wildcard check_origin configurations 1.5.13 (2021-09-22) Bug Fixes [Router] Do not generate conflicting helpers...

dependencies

Bumps [jason](https://github.com/michalmuskala/jason) from 1.3.0 to 1.4.0. Release notes Sourced from jason's releases. v1.4.0 Enhancements Use the :erlang.float_to_binary(_, [:short]) function, instead of io_lib_format.fwrite_g/1 where available (OTP 24.1+). This provides equivalent output...

dependencies

So instead of: ```ex container(tag: assigns[:tag] || :div) ``` We can do: ```ex container(tag: assigns[:tag]) ``` ### Examples: ```ex container() # container(tag: :span) # container(tag: :nil) # ```

enhancement

Make it possible to have cells as live view This implementation is an addition to the normal use of `ex_cell`, so normal cells can still be used the same way....