mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-06-12 09:24:33 +02:00
feat: keep collapsible state on montlhly overview
This commit is contained in:
Generated
+12
@@ -10,6 +10,7 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@alpinejs/mask": "^3.14.1",
|
||||
"@alpinejs/morph": "^3.14.3",
|
||||
"@babel/core": "^7.16.7",
|
||||
"@babel/eslint-parser": "^7.16.5",
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
@@ -31,6 +32,7 @@
|
||||
"daisyui": "^4.12.13",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-webpack-plugin": "^3.1.1",
|
||||
"htmx-ext-alpine-morph": "^2.0.0",
|
||||
"htmx.org": "^2.0.1",
|
||||
"hyperscript.org": "^0.9.12",
|
||||
"jquery": "^3.7.1",
|
||||
@@ -72,6 +74,11 @@
|
||||
"resolved": "https://registry.npmjs.org/@alpinejs/mask/-/mask-3.14.1.tgz",
|
||||
"integrity": "sha512-xW5uyn9lFMpvdzA4RfSE3lj+HjA7BjtEk+QJXU7jB5Wxpe0Jk5qFOrCydTDl+bFkRwOk/fMe2PG7IWeWEnn4BA=="
|
||||
},
|
||||
"node_modules/@alpinejs/morph": {
|
||||
"version": "3.14.3",
|
||||
"resolved": "https://registry.npmjs.org/@alpinejs/morph/-/morph-3.14.3.tgz",
|
||||
"integrity": "sha512-qzazcvQZeVJAjxxHD41PdNoBOxVaPjA7TYyYkqNSYtlIdpVBPvxcCBV/41xD5EMYmR82wwfVqJOeJJgU6/M3Bg=="
|
||||
},
|
||||
"node_modules/@ampproject/remapping": {
|
||||
"version": "2.3.0",
|
||||
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
||||
@@ -5125,6 +5132,11 @@
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/htmx-ext-alpine-morph": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/htmx-ext-alpine-morph/-/htmx-ext-alpine-morph-2.0.0.tgz",
|
||||
"integrity": "sha512-eG2ki+VxnkQj+XF3125CCYbreI8uHRnYo3q7WbAVICXpwFQICGxoPJhSLLsoAWhjzpKln4shHmysXGNrYqOzDg=="
|
||||
},
|
||||
"node_modules/htmx.org": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/htmx.org/-/htmx.org-2.0.2.tgz",
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@alpinejs/mask": "^3.14.1",
|
||||
"@alpinejs/morph": "^3.14.3",
|
||||
"@babel/core": "^7.16.7",
|
||||
"@babel/eslint-parser": "^7.16.5",
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
@@ -44,6 +45,7 @@
|
||||
"daisyui": "^4.12.13",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-webpack-plugin": "^3.1.1",
|
||||
"htmx-ext-alpine-morph": "^2.0.0",
|
||||
"htmx.org": "^2.0.1",
|
||||
"hyperscript.org": "^0.9.12",
|
||||
"jquery": "^3.7.1",
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
import htmx from "htmx.org";
|
||||
window.htmx = htmx;
|
||||
@@ -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();
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ const Path = require("path");
|
||||
const {CleanWebpackPlugin} = require("clean-webpack-plugin");
|
||||
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
||||
const WebpackAssetsManifest = require("webpack-assets-manifest");
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
const webpack = require("webpack");
|
||||
|
||||
const getEntryObject = () => {
|
||||
|
||||
Reference in New Issue
Block a user