-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Nova 4 support (#147) * Update composer.json * add support for laravel mix 6 * add support for nova 4 * generated production build * use mix commands * remove extra option from watch * remove nova 3 support from composer Co-authored-by: Anand <[email protected]> * cleanup * Fix styling Co-authored-by: Anand Patel <[email protected]> Co-authored-by: Anand <[email protected]> Co-authored-by: freekmurze <[email protected]>
- Loading branch information
1 parent
62d7270
commit d311760
Showing
20 changed files
with
197 additions
and
156 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<template> | ||
<panel-item :field="field"> | ||
<p slot="value" v-html="typeof field.value === 'object' ? field.value.join(', ') : field.value"></p> | ||
</panel-item> | ||
<PanelItem :index="index" :field="field"> | ||
<template #value> | ||
<p v-html="typeof field.value === 'object' ? field.value.join(', ') : field.value"></p> | ||
</template> | ||
</PanelItem> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
inheritAttrs: false, | ||
props: ['field'], | ||
props: ['index', 'resource', 'resourceName', 'resourceId', 'field'], | ||
}; | ||
</script> |
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
<template> | ||
<div class="py-3 tags-index-field" v-html="typeof field.value === 'object' ? field.value.join(', ') : field.value"></div> | ||
<div | ||
class="py-3 tags-index-field" | ||
v-html="typeof field.value === 'object' ? field.value.join(', ') : field.value" | ||
></div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
inheritAttrs: false, | ||
props: ['field'], | ||
props: ['resourceName', 'field'], | ||
}; | ||
</script> |
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
Oops, something went wrong.