Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | :bookmark: Bump to v4.1.8v4.1.8 | Hayleigh Thompson | 2024-04-16 |
| | |||
* | :sparkles: Add a new 'ForceModel' debug action to experiment with ↵ | Hayleigh Thompson | 2024-04-16 |
| | | | | time-travel debugging. | ||
* | :bug: Fixed a bug where the 'selected' attribute was not properly applied in ↵ | Hayleigh Thompson | 2024-04-16 |
| | | | | the DOM. | ||
* | :wrench: Update release workflow to Gleam v1.1.0 | Hayleigh Thompson | 2024-04-16 |
| | |||
* | :heavy_plus_sign: Update examples to work with latest lustre_dev_tools release. | Hayleigh Thompson | 2024-04-16 |
| | |||
* | 🐛 Fixed a bug with `Map` nodes not turning into document strings ↵ | Hayleigh Thompson | 2024-04-16 |
| | | | | | | | correctly. (#107) * :bug: Fixed a bug where stringifying a 'Map' element produced incorrect document strings. * :bookmark: Bump to v4.1.7 | ||
* | :bookmark: Bump to v4.1.6 | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :wrench: Update dependencies. | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :wrench: Update test apps. | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :bug: Fixed a bug where vdom incorrectly attempted keyed diffs. | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :memo: Begin react cheatsheet. | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :memo: Add routing guide to examples overview pages. | Hayleigh Thompson | 2024-04-06 |
| | |||
* | :construction: Scaffold out what a cheatsheet might look like. | Hayleigh Thompson | 2024-04-05 |
| | |||
* | 🔀 Write a guide on server-side rendering. (#103) | Hayleigh Thompson | 2024-04-05 |
| | | | | | | | | | | | | | | | * :memo: Fix typos in state management guide. * :memo: Begin writing ssr guide. * :memo: Rename discard init arg to '_flags' in all examples. * :memo: Show simple static HTML rendering example. * :memo: Expand hydration section. * :memo: Finish ssr guide. * :wrench: Add ssr guide to built docs pages. | ||
* | 🔀 Write readme for 07-routing example. (#100) | Eileen Noonan | 2024-04-05 |
| | | | | | | | * example 07 - update app and write first readme draft * updates from feedback * use more lustre ui features and update screenshot | ||
* | :bookmark: Bump to v4.1.5v4.1.5 | Hayleigh Thompson | 2024-04-04 |
| | |||
* | :bug: Fix a sneaky bug where events were gone but not forgotten. | Hayleigh Thompson | 2024-04-04 |
| | |||
* | :memo: Fix typos in state management guide. | Hayleigh Thompson | 2024-04-04 |
| | |||
* | 🔀 Fix a typo in the readme (#101) | Alan Burgoyne | 2024-04-04 |
| | |||
* | :memo: Fix some typos. (#97) | Giacomo Cavalieri | 2024-04-02 |
| | |||
* | ✨ Create a routing example using modem. (#96) | Eileen Noonan | 2024-04-02 |
| | |||
* | :bookmark: Bump version to v4.1.4v4.1.4 | Hayleigh Thompson | 2024-04-01 |
| | |||
* | :package: Generate server component runtime. | Hayleigh Thompson | 2024-04-01 |
| | |||
* | :bug: Fixed a bug where event handlers would not work on propagated events. | Hayleigh Thompson | 2024-04-01 |
| | |||
* | :bookmark: Bump to v4.1.3v4.1.3 | Hayleigh Thompson | 2024-04-01 |
| | |||
* | :package: Generate server component runtime. | Hayleigh Thompson | 2024-04-01 |
| | |||
* | :bug: Fixed a bug where text nodes were patched even when their content was ↵ | Hayleigh Thompson | 2024-04-01 |
| | | | | equal. | ||
* | :bookmark: Bump to v4.1.2v4.1.2 | Hayleigh Thompson | 2024-03-31 |
| | |||
* | :package: Generate server component runtime. | Hayleigh Thompson | 2024-03-31 |
| | |||
* | :bug: Fixed a bug where child nodes were incorrectly morphed for disjoint ↵ | Hayleigh Thompson | 2024-03-31 |
| | | | | parents. | ||
* | :alembic: Create a collection of test apps to cover previously reported bugs. | Hayleigh Thompson | 2024-03-31 |
| | |||
* | :bookmark: Bump to v4.1.1v4.1.1 | Hayleigh Thompson | 2024-03-31 |
| | |||
* | :bug: Fixed a bug where invalid property names may be set on a node and ↵ | Hayleigh Thompson | 2024-03-31 |
| | | | | cause a crash. | ||
* | :bookmark: Bump to v4.1.0v4.1.0 | Hayleigh Thompson | 2024-03-31 |
| | |||
* | :wrench: Update snapshots to reflect server component key change. | Hayleigh Thompson | 2024-03-31 |
| | |||
* | 🔀 Create a guide on using and creating side effects. (#93) | Hayleigh Thompson | 2024-03-31 |
| | | | | | | | | | * :memo: Explain why managed effects are useful. * :memo: Write a short explainer on pure functions. * :memo: Finish side effects guide. * :wrench: Add side effects guide to generated pages. | ||
* | :bug: Fixed a small bug where 'Map' nodes could not be keyed. | Hayleigh Thompson | 2024-03-31 |
| | |||
* | 🔀 Refactor vdom and add support for keyed vnodes. (#83) | Hayleigh Thompson | 2024-03-31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * :truck: Keep around old vdom implementation for reference. * :sparkles: Add a keyed vdom node. * :alembic: Experiment with a different approach for handling component children. * :construction: Here be scary works in progress. * :sparkles: Implement keyed node diffing. * :recycle: Don't use deprecated 'isOk' checks. * :recycle: Remove separate Keyed node and add 'key' field to Element node. * :sparkles: Add support for server components into new vdom. * :bug: Fix broken build script. * :recycle: Don't emit data-lustre-key attributes for server component patches. * :package: Generate server component runtime. * :bug: Fixed a bug where server component keys were ambiguous when double digit. * :package: Generate server component runtime. * :recycle: Refactor 'keyed' element to force all children of a node to be keyed. * :memo: Consistently format '**Note**:'. * :bug: Fixed bug with falsey className/style/innerHTML attributes. * :bug: Fixed a bug not handling undefined 'prev' nodes correctly. * :package: Generate server component runtime. | ||
* | 🔀 Add docs to 06-custom-effects example. (#84) | Eileen Noonan | 2024-03-30 |
| | | | | | * example 06 readme docs * update with feedback | ||
* | 🔀 Fix typos in State Management guide. (#80) | Jeroen Engels | 2024-03-28 |
| | |||
* | 🔀 Fix typos in readme. (#81) | Stuart Hinson | 2024-03-28 |
| | |||
* | :memo: Expand state management guide to touch on the 'Subject Verb Object' ↵ | Hayleigh Thompson | 2024-03-27 |
| | | | | naming convention. | ||
* | :memo: Add hexdocs pill to readme. | Hayleigh Thompson | 2024-03-27 |
| | |||
* | :memo: Add a directory page to showcase the examples in the docs. | Hayleigh Thompson | 2024-03-27 |
| | |||
* | :memo: Update examples docs. | Hayleigh Thompson | 2024-03-27 |
| | |||
* | :construction: Start a routing example using modem. | Hayleigh Thompson | 2024-03-27 |
| | |||
* | :wrench: Update examples to use Lustre v4.0.0 | Hayleigh Thompson | 2024-03-26 |
| | |||
* | :wrench: Only run release tests against erlang target.v4.0.0 | Hayleigh Thompson | 2024-03-26 |
| | |||
* | :art: Make sure everything is formatted correctly. | Hayleigh Thompson | 2024-03-26 |
| | |||
* | :bookmark: Bump to v4.0.0 | Hayleigh Thompson | 2024-03-26 |
| |