Skip to content

Commit

Permalink
Renamed LivewireStatusBoard to LivewireKanbanBoard
Browse files Browse the repository at this point in the history
  • Loading branch information
Mantix committed Feb 18, 2024
1 parent 083666c commit dd2b8d4
Show file tree
Hide file tree
Showing 14 changed files with 2,176 additions and 1,148 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ $status['id'] == $record['status'];
To render the component in a view, just use the Livewire tag or include syntax

```blade
<livewire:sales-orders-status-board />
<livewire:sales-orders-kanban-board />
```

Populate the Sales Order model and you should have something similar to the following screenshot
Expand All @@ -133,7 +133,7 @@ By default, sorting and dragging between statuses is disabled. To enable it, you
props when using the view: `sortable` and `sortable-between-statuses`

```blade
<livewire:sales-orders-status-board
<livewire:sales-orders-kanban-board
:sortable="true"
:sortable-between-statuses="true"
/>
Expand Down Expand Up @@ -197,7 +197,7 @@ To enable `onRecordClick` you must specify this behavior when rendering the comp
`record-click-enabled` parameter

```blade
<livewire:sales-orders-status-board
<livewire:sales-orders-kanban-board
:record-click-enabled="true"
/>
```
Expand Down
250 changes: 241 additions & 9 deletions build/report.junit.xml

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
"livewire/livewire": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0"
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Mantix\\LivewireStatusBoard\\": "src"
"Mantix\\LivewireKanbanBoard\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mantix\\LivewireStatusBoard\\Tests\\": "tests"
"Mantix\\LivewireKanbanBoard\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -45,10 +45,10 @@
"extra": {
"laravel": {
"providers": [
"Mantix\\LivewireStatusBoard\\LivewireStatusBoardServiceProvider"
"Mantix\\LivewireKanbanBoard\\LivewireKanbanBoardServiceProvider"
],
"aliases": {
"LivewireStatusBoard": "Mantix\\LivewireStatusBoard\\LivewireStatusBoardFacade"
"LivewireKanbanBoard": "Mantix\\LivewireKanbanBoard\\LivewireKanbanBoardFacade"
}
}
}
Expand Down
Loading

0 comments on commit dd2b8d4

Please sign in to comment.