aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* :zap: Iterate gleam lists with while loops for that sweet perf.Hayleigh Thompson2023-07-19
|
* :recycle: Create the proper error type in javascript and save the pointless ↵Hayleigh Thompson2023-07-19
| | | | ffi wrapper.
* :truck: Rename 'Cmd' to 'Effect' to better communicate what they're all about.Hayleigh Thompson2023-07-19
|
* :wrench: Make it easier to serve the examples for development.Hayleigh Thompson2023-07-19
|
* :truck: Move examples into a subdirectory so they're more obviously not tests.Hayleigh Thompson2023-07-19
|
* :memo: Attribute html element reference to MDN.Hayleigh Thompson2023-07-19
|
* :bug: Fixed a bug where the 'for' attribute still used the old react-style ↵Hayleigh Thompson2023-07-19
| | | | 'htmlFor' name.
* :recycle: Handle text escaping only when emitting a HTML string.Hayleigh Thompson2023-07-19
|
* :alembic: Maybe we can just roll our own DOM patching?Hayleigh Thompson2023-07-19
|
* :recycle: Update examples for new html API.Hayleigh Thompson2023-07-18
|
* :heavy_plus_sign: Update stdlib to 0.30Hayleigh Thompson2023-07-18
|
* :truck: Move html-related constructors into a separate module.Hayleigh Thompson2023-07-18
|
* :recycle: Represent elements as a normal Gleam custom type.Hayleigh Thompson2023-07-18
|
* :recycle: Represent attributes as a normal Gleam custom type.Hayleigh Thompson2023-07-18
|
* :recycle: Move cursed prototype patching into runtime module.Hayleigh Thompson2023-07-18
|
* :heavy_plus_sign: Vendor morphdom as the dom patching library.Hayleigh Thompson2023-07-18
|
* :recycle: Upgrade syntax for Gleam v0.30Hayleigh Thompson2023-07-14
|
* :bookmark: Bump version to v3.0.0-rc.4v3.0.0-rc.4Hayleigh Thompson2023-07-12
|
* :sparkles: Create an example showing nested 'components' and mapping messages.Hayleigh Thompson2023-07-12
|
* :bug: Fixed a runtime bug for mapping event handlers.Hayleigh Thompson2023-07-12
|
* :fire: Remove unused imports.Hayleigh Thompson2023-07-12
|
* :sparkles: Create a simple example for handling input.v3.0.0-rc.3Hayleigh Thompson2023-07-12
|
* Revert ":sparkles: Create a simple example for handling input."Hayleigh Thompson2023-07-12
| | | | This reverts commit 67ec0498443ca3972dcfb4775992d6b7d7e8dd87.
* :bookmark: Bump version to v3.0.0-rc.3Hayleigh Thompson2023-07-12
|
* :sparkles: Create a simple example for handling input.Hayleigh Thompson2023-07-12
|
* :bug: Fixed bug where autocomplete attribute was a bool not a string.Hayleigh Thompson2023-07-12
|
* ♻️ Replace React with diffhtml (#10)Hayleigh Thompson2023-07-10
| | | | | | | | | | | | | | | * :wrench: Remove react dependency, add vite for running examples. * :heavy_plus_sign: Update stdlib version to 0.29 * :fire: Remove old examples. * :sparkles: Vendor diffhtml and update runtime ffi code to replace react. * :recycle: Refactor all the things now react is gone. * :memo: Remove references to react in the readme. * :sparkles: Create a simple counter example.
* :bookmark: v3.0.0-rc.23.0.0-rc.2Hayleigh Thompson2023-04-28
|
* :bookmark: Code for 3.0.0-rc.13.0.0-rc.1Hayleigh Thompson2023-04-27
|
* :bookmark: Bump version to 2.0.12.0.1Hayleigh Thompson2023-04-05
|
* :heavy_plus_sign: Update stdlib dep to 0.28.Hayleigh Thompson2023-04-05
|
* :recycle: Remove unused imports.Hayleigh Thompson2023-04-05
|
* :bookmark: Bump version to 2.0.0Hayleigh Thompson2023-04-05
|
* 🐛 Avoid a race condition when dispatch is used twice from outside (#8)Kero van Gelder2023-04-05
| | | | | | | | | | | | | | | | | * Upgrade examples to lustre 2.0 * Upgrade to gleam 0.27.0 * Fix: avoid a race condition when dispatch is used twice from outside E.g. websocket open + websocket msg arriving Application returns a Cmd from update(model, msg) but the Effect handler is *not* ran be React 18 before the websocket msg-arriving is handled by the Reducer. Result: The Cmd returned by update(model, msg) is dropped silently. --------- Co-authored-by: Kero van Gelder <kero@chmeee.org>
* 🐛 Rename `for` attribute string to `htmlFor` to reflect usage in React. (#7)Danny Martini2023-03-07
| | | `for` can't be use in JS as it's a reserved keyword, so react renamed the property to `htmlFor`
* 🔀 Update example in readme to reflect event handler changes. (#6)Danny Martini2023-03-07
| | | It wasn't compiling with the current version of lustre on hex.
* :memo: Docs for the docs god.Hayleigh Thompson2023-02-13
|
* :memo: Docs for the docs god.Hayleigh Thompson2023-02-13
|
* :recycle: Remove distinction between attributes and properties: react ↵Hayleigh Thompson2023-02-13
| | | | doesn't care.
* :memo: Docs for the docs god.Hayleigh Thompson2023-02-13
|
* :recycle: Simplify event handlers to handle the most common case.Hayleigh Thompson2023-02-13
|
* :sparkles: Merge string attributes together.Hayleigh Thompson2023-02-13
|
* :heavy_plus_sign: Upgrade stdlib dependency to 0.26.Hayleigh Thompson2023-02-12
|
* :bookmark: Bump version to 1.3.01.3.0Hayleigh Thompson2022-09-05
|
* :bug: Fixed a bug where 'toProps' would break on minified builds.Hayleigh Thompson2022-09-05
|
* :pencil: Fix typo: 'require' -> 'required'.Hayleigh Thompson2022-09-05
|
* :bookmark: Bump version to 1.2.01.2.0Hayleigh Thompson2022-07-02
|
* :bug: Fix incorrectly-cased attribute and event names.Hayleigh Thompson2022-07-02
|
* 🔀📝 add a fully-fledged example project (#2)Filip Figiel2022-05-23
| | | | | | | | | | | * docs: add a full-fledged example project * fix: use correct script path * docs: improve example readme commands * chore: ignore the dist folder * chore: cleanup the makefile
* 🔀 Merge pull request #1 from megapctr/patch-1Hayleigh Thompson2022-05-23
|\ | | | | docs: fix the example so that it compiles