feat: keep collapsible state on montlhly overview

This commit is contained in:
Herculino Trotta
2024-10-30 16:07:32 -03:00
parent 43c429406d
commit 0726350b45
9 changed files with 34 additions and 9 deletions

View File

@@ -0,0 +1,2 @@
import htmx from "htmx.org";
window.htmx = htmx;

View File

@@ -1,12 +1,14 @@
import htmx from "htmx.org";
import _hyperscript from 'hyperscript.org/dist/_hyperscript.min';
import './_htmx.js';
import 'htmx-ext-alpine-morph/alpine-morph';
import Alpine from "alpinejs";
import mask from '@alpinejs/mask';
import morph from '@alpinejs/morph';
window.htmx = htmx;
window.Alpine = Alpine;
Alpine.plugin(mask);
Alpine.plugin(morph);
Alpine.start();
_hyperscript.browserInit();