Skip to content

Commit

Permalink
Nova 4
Browse files Browse the repository at this point in the history
  • Loading branch information
rslanzi committed Sep 13, 2023
1 parent c2bf97e commit 4c900f3
Show file tree
Hide file tree
Showing 16 changed files with 2,248 additions and 1,508 deletions.
67 changes: 35 additions & 32 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,41 @@
{
"name": "workup/nova-select-plus",
"description": "A Nova select field for simple and complex select inputs",
"type": "library",
"license": "MIT",
"keywords": ["vue-select", "laravel", "nova", "select", "ajax"],
"authors": [
{
"name": "Ralph Schindler",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"Workup\\NovaSelectPlus\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Workup\\NovaSelectPlus\\FieldServiceProvider"
]
}
},
"name": "workup/nova-select-plus",
"description": "A Nova select field for simple and complex select inputs",
"type": "library",
"license": "MIT",
"keywords": [
"vue-select",
"laravel",
"nova",
"select",
"ajax"
],
"authors": [
{
"name": "Ralph Schindler",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/ziffdavis/"
},
{
"packagist.org": false
"url": "https://nova.laravel.com"
}
],
"require": {
"php": ">=8.0",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"Workup\\Nova\\SelectPlus\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Workup\\Nova\\SelectPlus\\FieldServiceProvider"
]
}
]
}
}
2 changes: 1 addition & 1 deletion demo/app/Nova/Person.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
use Workup\NovaSelectPlus\SelectPlus;
use Workup\Nova\SelectPlus\SelectPlus;

class Person extends Resource
{
Expand Down
2 changes: 1 addition & 1 deletion demo/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
/*
* Package Service Providers...
*/
Workup\NovaSelectPlus\FieldServiceProvider::class,
Workup\Nova\SelectPlus\FieldServiceProvider::class,

/*
* Application Service Providers...
Expand Down
3 changes: 1 addition & 2 deletions dist/css/field.css

Large diffs are not rendered by default.

29 changes: 2 additions & 27 deletions dist/js/field.js

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions dist/js/field.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*!
* vue-draggable-next v2.2.0
* (c) 2023 Anish George
* @license MIT
*/

/*!
* The buffer module from node.js, for the browser.
*
* @author Feross Aboukhadijeh <http://feross.org>
* @license MIT
*/

/*!
* vuex v4.1.0
* (c) 2022 Evan You
* @license MIT
*/

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

/**
* @license
* Lodash <https://lodash.com/>
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
* Released under MIT license <https://lodash.com/license>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
*/

/**!
* Sortable 1.14.0
* @author RubaXa <[email protected]>
* @author owenm <[email protected]>
* @license MIT
*/
Loading

0 comments on commit 4c900f3

Please sign in to comment.