Skip to content

v3.0.0-alpha.9

Pre-release
Pre-release

Choose a tag to compare

@tmlmt tmlmt released this 22 Jan 03:50
· 12 commits to main since this release

compare changes

⚠️ Breaking Changes

  • types: ⚠️ Flatten And & Or groups by directly using and/or as property name (ec80478)

Before:

{ 
    type: "or", // or "and"
    entries: [ ... ]
}

After:

{
    or: [ ... ] // or and: [ ... ]
}

🚀 Enhancements

  • Recipe: New universal getIngredientQuantities method to filter by section, step and/or user choices (04e61f6)
  • ShoppingList: Enhance ingredient handling with AND groups and ensure choices are provided for recipes with alternatives (f5ef123)
  • Helpers: Add isAlternativeSelected function to determine selected ingredient alternatives (2c5af2a)

📖 Documentation

  • Recipe: Fix description of choices property (b9169ac)
  • playground: Dynamically render user choices for alternatives ingredients (2eea3c0)

🎨 Styles

  • types: ⚠️ Flatten And & Or groups by directly using and/or as property name (ec80478)

❤️ Contributors