diff --git a/package-lock.json b/package-lock.json index c6c2a21f..8165e53d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2551,6 +2551,11 @@ "tweetnacl": "^0.14.3" } }, + "bezier-easing": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bezier-easing/-/bezier-easing-2.1.0.tgz", + "integrity": "sha1-wE3+i5JtbsrKGBPWn/F5t8ICXYY=" + }, "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -10646,6 +10651,11 @@ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, + "tinycolor2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz", + "integrity": "sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=" + }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -11129,6 +11139,14 @@ "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.3.tgz", "integrity": "sha512-BADg1mjGWX18Dpmy6bOGzGNnk7B/ZA0RxuA6qedY/YJwirMfKXIDzcccmHbQI0A6k5PzMdMloc0ElHfyOoX35A==" }, + "vue-scrollto": { + "version": "2.18.2", + "resolved": "https://registry.npmjs.org/vue-scrollto/-/vue-scrollto-2.18.2.tgz", + "integrity": "sha512-LQOsuCfDJ5JXsRBb6frM85sCFABZdkwwwchLh4k3wbp8P6URRDcQvwp31U4cTnbyYEOo6JFP7+3p0wkvwy7MdA==", + "requires": { + "bezier-easing": "2.1.0" + } + }, "vue-session": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/vue-session/-/vue-session-1.0.0.tgz", diff --git a/package.json b/package.json index 60564f0f..aa453e3f 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,10 @@ "slick-carousel": "^1.8.0", "sticky-js": "^1.3.0", "tailwindcss": "^1.8.10", + "tinycolor2": "^1.4.1", "vue": "^2.6.12", "vue-router": "^3.4.3", + "vue-scrollto": "^2.18.2", "vue-session": "^1.0.0", "vuex": "^3.5.1" }, diff --git a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Page/Main.typoscript b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Page/Main.typoscript index c9eddde5..670de4f8 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Page/Main.typoscript +++ b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Page/Main.typoscript @@ -134,7 +134,3 @@ page { ) headerData.999.stdWrap.if.isTrue = {$plugin.tx_eptheme.settings.googleTagManagerId} } - -[applicationContext == "Development"] - page.includeCSS.main.disableCompression = 1 -[END] diff --git a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/setup.typoscript b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/setup.typoscript index 10c2b03f..6264e988 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/setup.typoscript +++ b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/setup.typoscript @@ -118,15 +118,8 @@ lib.stdheader.3.headerClass > @import "EXT:ep_theme/Configuration/TypoScript/Page/Export.typoscript" config { - doctype = html5 - removeDefaultCSS = 1 - removePageCss = 1 - removeDefaultJS = 0 - disablePrefixComment = 1 - inlineStyle2TempFile = 0 - absRefPrefix = / - compressJs = 0 - compressCss = 0 + compressJs = 1 + compressCss = 1 typolinkCheckRootline = 1 typolinkEnableLinksAcrossDomains = 1 sendCacheHeaders = 1 diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Address.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Address.vue index 00d8e82f..ec18070a 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Address.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Address.vue @@ -1,6 +1,6 @@