Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit 7814584

Browse files
committed
Version bump
1 parent dfcf86e commit 7814584

File tree

7 files changed

+19
-18
lines changed

7 files changed

+19
-18
lines changed

app/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"pre-publish": "npm upgrade && vite build"
77
},
88
"devDependencies": {
9-
"@protonemedia/laravel-splade": "file:../protonemedia-laravel-splade-0.6.12.tgz",
9+
"@protonemedia/laravel-splade": "file:../protonemedia-laravel-splade-0.6.13.tgz",
1010
"@tailwindcss/forms": "^0.5.2",
1111
"@tailwindcss/typography": "^0.5.2",
1212
"@vitejs/plugin-vue": "^3.0.0",

dist/protone-media-laravel-splade.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4123,7 +4123,8 @@ const _d = {
41234123
import("choices.js").then((n) => {
41244124
const i = Object.assign({}, this.choices, this.jsChoicesOptions);
41254125
if (r.choicesInstance = new n.default(e, i), r.stack > 0 && (r.headlessListener = function(a) {
4126-
a.target === e && r.choicesInstance.showDropdown();
4126+
const s = r.choicesInstance.dropdown.isActive;
4127+
!s && a.target === e ? r.choicesInstance.showDropdown() : s && a.target !== e && r.choicesInstance.hideDropdown();
41274128
}, document.querySelector("#headlessui-portal-root").addEventListener("click", r.headlessListener, { capture: !0 })), this.choicesInstance.containerInner.element.setAttribute(
41284129
"data-select-name",
41294130
e.name

dist/protone-media-laravel-splade.umd.cjs

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protonemedia/laravel-splade",
3-
"version": "0.6.12",
3+
"version": "0.6.13",
44
"description": "Laravel Splade: the magic of Inertia.js with the simplicity of Blade.",
55
"private": false,
66
"author": "Pascal Baljet <[email protected]>",

src/Commands/SpladeInstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function handle(): int
3030
// Install NPM packages...
3131
$this->updateNodePackages(function ($packages) {
3232
return [
33-
'@protonemedia/laravel-splade' => '^0.6.12',
33+
'@protonemedia/laravel-splade' => '^0.6.13',
3434
'@tailwindcss/forms' => '^0.5.2',
3535
'@tailwindcss/typography' => '^0.5.2',
3636
'@vitejs/plugin-vue' => '^3.0.0',

0 commit comments

Comments
 (0)