Skip to content

Features

Arthur Refslund edited this page Aug 21, 2023 · 5 revisions

Features


   0.   Powered by svelte stores for highly robust code

   1.    Use a svelte-object (Object / Array) to arrange your markup as an object

   2.    Proxified arrays (SvelteArray<T>) that will update its store when using mutatable functions like .push(...), .removeByIndex(...), etc.

   3.   Custom svelte store:  valueStore
         3.a   Binds to an Object/Array using .setName(...)
         3.b   Easy and reactive custom validation logic
         3.c   error and warning store for validating store
         3.d   Cascading validation — validating a parent Object/Array will validate all stores within
         3.e   Cascading attributes — for grouped attribute values

   4.   use:bind and component bind:  Bind stores seamlessly









⚠ Documenation for svelte-object 1.4.2


👉    Basic Usage
⭐    Component Usage ⚠

Components
    Object.svelte
    Array.svelte
    Value.svelte

Concepts
    valueStore
    bind

Clone this wiki locally