- Add
catalogue_test/1
macro to generate basic tests for catalogue examples and playgrounds - Add
Surface.Catalogue.Examples
to allow defining multiple stateless examples in a single module
<#template slot="slot_name">
has been removed in favor of<:slot_name>
(#575)
- Optimize the surface compiler for assets generation
- Improve support for JS hooks in umbrella projects (#591)
- Suppress
Mix.Tasks.Format
behaviour warning on Elixir <v0.13
- Fix loading component prop's default values
- Support more extensions other than
.js
as colocated hooks (jsx
,ts
andtsx
) (#576) - Update the
surface.init
task to set up the catalogue tov0.4
- Fix wrong target handling in forms
- Fix setting
@moduledoc false
in catalogue examples (#565) - Support Inputs' property
for
as string (#564)
- Support Liveview
v0.17
- Support rendering
.sface
templates for regular (dead) views (#543) - Support passing properties to slots using the shorthand format, e.g.
<:col label="Name">
- Add built-in formatter supporting integration with
mix format
(#535) - New
<LiveComponent>
component to inject dynamic live components (#518) - Optimize rendering of HTML class attributes literals so they can be treated as static text
- Add property
for
to<#slot/>
so it can render the slot content directly (without usingindex
)
- Add
surface_formatter
dependency tomix.exs
when runningmix surface.init
(#507) - Allow
Inputs
component inside theField
component (#492) - Fix using context with external
.sface
templates (#511) - Fix attribute name conversion (#512)
- Compatibility with Phoenix
v1.6
and Liveviewv0.16
- New
mix surface.init
task - Add support for function components
- Add support for dynamic function components via
<Component>
- Add support for recursive function components
- Optimize change tracking for contexts
- Fix race condition when compiling tests
- Fix recompilation of used components
- Add property
values
to form inputs - Handle doctype as text
- Improve error message when
default_translator
is not configured forErrorTag
(#449) - Raise on invalid attribute/directive in
<#slot>
(#456) - Raise error on
{#case}
without{#match}
(#443) - Raise on blocks without expression
- Fix error line on missing closing tag
- Add
<:slotname>
shorthand for<#template slot="slotname">
- Introduce block expressions for surface templates (e.g.,
{#if}..{/if}
) - Introduce
{#if}
block expression with support for{#elseif}
and{#else}
sub blocks - Introduce
{#for}
block expression with support for{#else}
sub block - Introduce
{#unless}
block expression - Introduce new shorthand notation for dynamic attributes/props using the
{... }
tagged expression - Introduce new shorthand notation for attribute assignment using the
{= }
tagged expression - Support private comments using
{!-- --}
for comments that are not supposed to hit the browser - Introduce
s-
prefix as an alternative to:
for directives (i.e.s-if
and:if
are now equivalent) - Introduce
:values
directive for generating multiplephx-value-
attributes - Added a convert task to aid migrating to the new syntax
- Evaluate literal attribute values at compile time instead of runtime
- Fix compile error when using single quotes as attribute value delimiters
- Add
quote_surface/2
macro to generate Surface AST from template snippets.
- Replace the sigil
~H
with~F
to avoid conflict withHEEx
- Replace interpolation delimiters
{{
and}}
with{
and}
- Remove support for interpolation inside
<style>...</style>
and<script>...</script>
nodes - ErrorTag: Renamed prop
phx_feedback_for
tofeedback_for
- Slot directive
:props
has been renamed to:args
- Option
:props
for theslot/2
macro has been renamed to:args
- The use of
<template>
has been removed in favor of<#template>
- The use of
<slot>
has been removed in favor of<#slot>
- The use of
<If>
has been removed in favor of{#if}...{/if}
- The use of
<For>
has been removed in favor of{#for}...{/for}
MacroComponent.eval_static_props!/3
evaluates and returns only props with optionstatic: true
- Support for passing non-string attribute values as literals (i.e.
selected=true
ortabindex=3
) has been removed. Any non-string value should be passed as an expression (i.e.selected={true}
)
- Fix warning on Phoenix Live View >= 1.15.6
- Call render when defined in slotable components (#283)
- Support defining form fields as strings. Consequently, fields defined as literal strings will
no longer be auto-converted to
:atom
and will keep the original value (#319) - Deprecate auto-conversion of attribute values passed as string literals into atoms
- Do not encode HTML entities when passing attribute values as string literals (#323)
- Extract the Markdown macro component in its repository (#316)
- Renamed
Surface.Components.Button
toSurface.Components.Link.Button
(#350)
- Warn if prop is required and has default value (#282)
- Warn if slot is required and has a fallback content (#296)
- Warn on
LiveComponent
with anotherLiveComponent
as root - Support escaped three double-quotes in
Markdown
content - Improve
Label
component compatibility with Phoenixlabel/2
(#284) - Update props according to new types (#297)
- Fix copying JS hooks multiple times (#294)
- Fix
index.js
generation when no hooks are available - Fix loading hooks from dependencies
- Support
<Link>
with scheme (#273)
- Autoload JS hooks via new surface compiler (#271)
- New
<Link>
and<Label>
implementation without depending oncontent_tag
to allow receiving child components in slots (#264) - Don't validate undefined assigns outside render (#263)
- Load subject's default props values before sending them to playgrounds
- Allow different catalogue options for examples and playgrounds
- Introduce new testing API using
render_surface/1
- Add experimental support to create examples and playgrounds for catalogues
- Raises compile error if slots are not declared
- Raises compile error on duplicate built-in assign
- Allow defining the assign name for slot through the :as option (#230)
- Implement the
:show
directive via hidden attribute (#244) - Add new
<DateSelectComponent>
component - Remove default value from
Form
method prop - Reintroduce opts prop for the
<Select>
component - Fix markdown syntax warning in
<Form>
docs - Fix error when using :if + :props in slots (#224)
- Fix line offset when using single-line
~H
variants (#246) - Fix UnicodeConversionError when using string literals inside interpolation
- Add explicit props for the main opts of Checkbox, Select, MultipleSelect, FileInput and Form (#215).
- Add new
slot_assigned?/1
macro to check if a slot has been filled in (#211). - Fix attribute value encoding
- Update liveview to v0.15
- Add new
Surface.Components.Form.ErrorTag
to render error messages in forms (#199). - Disable validation for required props if
:props
is passed (#204)
- Update liveview to latest v0.15-dev (f986171)
- New wrapper components
Surface.Components.{For, If}
for when the:for
and:if
directives aren't sufficient (#184) - Allow double braces within interpolation (#171)
- Add new
Surface.Components.FieldContext
to support form fields without wrapping divs (#172) - Improve error message for unloaded modules (#174)
- Fix issue with
:for
modifiers on components (#176) - Expose form instance as slot prop on
Surface.Components.Form
(#183) - Don't initialize data assigns without default value (#195)
- Fix support for Elixir >= v1.11
- Update liveview to latest v0.15-dev (597c5dd)
- Add undefined assign check for
Surface.{LiveComponent,Component,LiveView}
- New form controls wrappers:
<DateTimeSelect>
and<TimeSelect>
. - Force recompilation of the parent component after fixing errors on any of its children.
- Update LiveView to v0.15-dev (0f592a4).
- Make
<slot>
mandatory instead ofinner_content
. - Add attribute
index
to<slot>
to allow rendering individual named slot items. - Rename macro
property
toprop
. - Remove macro
context
and add a<Context>
component to be used instead. - Rename directives
:on-phx-[event]
to:on-[event]
. - Add support for co-located template files using
.sface
suffix. - Add
Surface.init/1
to initialize internal assigns when not usingSurface.LiveView
. - Add
:props
directive to pass dynamic props to a component. - Add
:attrs
directive to pass dynamic attributes to a tag. - Add new modifiers
index
andwith_index
for:for
. - Update html tag generation to remove the tag if it's value computes to
nil
. - Add support for a
transform/1
callback to allow components to manipulate its own node at compile-time. - New form controls:
<Inputs>
,<Checkbox>
,<Select>
,<MultipleSelect>
,<HiddenInputs>
,<FileInput>
and<OptionsForSelect>
.
- New Markdown component
- New Link component
- New form components Form, Field, TextArea, Label, TextInput, RadioButton, HiddenInput, ColorInput, DateInput, DateTimeLocalInput, EmailInput, NumberInput, PasswordInput, RangeInput, SearchInput, TelephoneInput, TimeInput, UrlInput, Reset and Submit.
- Automatically define a required :id property for live components that implement
handle_event/3
- New config API for components
- Update LiveView to v0.13
- Add support for slots
- Add built-in LivePath and LiveRedirect components
- Drop automatic camel-to-kebab conversion for CSS class name
- Drop support for
inner_content.()
. Useinner_content.([])
instead - Update LiveView to v0.11.1
- Initial alpha release