Skip to content

Commit

Permalink
Merge branch '5x' into 6x
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev committed Oct 1, 2024
2 parents 8c69a1c + d74cbb6 commit be9daaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/get-started/code-examples.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Examples

The PowerGrid team has prepared various examples demonstrating PowerGrid v5 features in a Livewire 11 application with Livewire v3.
The PowerGrid team has prepared various examples demonstrating PowerGrid v5 features in a Laravel 11 application with Livewire v3.

These resources are aimed at helping the user get up and running as fast as possible, and also allow everyone to stay up-to-date with the latest PowerGrid features.

Expand Down
4 changes: 3 additions & 1 deletion docs/get-started/powergrid-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ module.exports = {
```

::: tip 💡 TIP
Read more about [Tailwind just-in-time](https://tailwindcss.com/docs/just-in-time-mode).
Read more about [Tailwind just-in-time](https://tailwindcss.com/docs/just-in-time-mode).
If you are already using Tailwind version 3 or greater JIT is enabled by default. So you need to add these files to your `tailwind.config.js` because otherwise the styles won't apply correctly.
[Read more here](https://tailwindcss.com/docs/upgrade-guide#migrating-to-the-jit-engine)
:::

#### Presets
Expand Down
2 changes: 1 addition & 1 deletion docs/table-features/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DishTable extends PowerGridComponent
return [
Filter::inputText('name')->placeholder('Dish Name'),

Filter::boolean('in_stock')->label('In Stock', 'Out of Stock')
Filter::boolean('in_stock')->label('In Stock', 'Out of Stock'),

Filter::number('price_BRL', 'price')->thousands('.')
->decimal(','),
Expand Down

0 comments on commit be9daaa

Please sign in to comment.