- {#each categories as [categoryName, bindings]}
-
{categoryName}
-
- {#each bindings.filter(binding =>
- binding.label.match(searchRgx)
- ) as binding}
-
onClickBinding(binding)}>
-
{binding.label}
-
{binding.type}
-
-
- {binding.description || ''}
-
-
- {/each}
- {/each}
-
Helpers
-
- {#each helpers.filter(helper => helper.label.match(searchRgx) || helper.description.match(searchRgx)) as helper}
-
onClickBinding(helper)}>
-
{helper.label}
-
-
- {@html helper.description || ''}
-
-
{helper.example || ''}
-
- {/each}
-