-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate scripts directive Switch to LaravelPackageTools Add option to disable JS Add option to enable CSS Update package namespace
- Loading branch information
Showing
15 changed files
with
10,779 additions
and
20,261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Include CSS | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The modal uses TailwindCSS, if you don't use TailwindCSS you will need | ||
| to set this parameter to true. This includes the modern-normalize css. | ||
| | ||
*/ | ||
'include_css' => false, | ||
|
||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Include JS | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Livewire UI will inject the required Javascript in your blade template. | ||
| If you want to bundle the required Javascript you can set this to false | ||
| and add `require('vendor/livewire-ui/modal/resources/js/modal');` | ||
| to your script bundler like webpack. | ||
| | ||
*/ | ||
'include_js' => true, | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"/public/modal.js": "/public/modal.js" | ||
"/public/modal.js": "/public/modal.js", | ||
"/public/modal.css": "/public/modal.css" | ||
} |
Oops, something went wrong.