From 936add1474962bb6a9d0297808843c9f1cd4225c Mon Sep 17 00:00:00 2001 From: edalzell Date: Fri, 28 Nov 2025 15:24:35 -0800 Subject: [PATCH 1/3] bring these over from Simple --- resources/css/cp.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/resources/css/cp.css b/resources/css/cp.css index 906e2b8..c73ea20 100644 --- a/resources/css/cp.css +++ b/resources/css/cp.css @@ -1,3 +1,12 @@ #front-chat-container { z-index: 100 !important } + +/* !Front Chat */ +#front-chat-container .fc-1_tjF { + display: none!important; +} + +#front-chat-iframe { + z-index: 1!important; +} From f9d07c5e291564b914002950878a6679164868f9 Mon Sep 17 00:00:00 2001 From: edalzell Date: Fri, 28 Nov 2025 15:24:42 -0800 Subject: [PATCH 2/3] no vue used --- vite.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/vite.config.js b/vite.config.js index 47291c3..51f0ddf 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,6 +1,5 @@ import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; -import vue from '@vitejs/plugin-vue2'; export default defineConfig({ plugins: [ @@ -13,6 +12,5 @@ export default defineConfig({ publicDirectory: 'dist', hotFile: 'dist/hot', }), - vue(), ], }); From 5aaeacd3bfbd1b3db5e4e373a03c68866033fad4 Mon Sep 17 00:00:00 2001 From: edalzell Date: Fri, 5 Dec 2025 14:50:51 -0800 Subject: [PATCH 3/3] Set the logging config when installed --- composer.json | 4 +-- src/UpdateScripts/AddToLoggingConfig.php | 31 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 src/UpdateScripts/AddToLoggingConfig.php diff --git a/composer.json b/composer.json index 8c46c90..e22db38 100644 --- a/composer.json +++ b/composer.json @@ -2,9 +2,9 @@ "name": "transformstudios/front", "require": { "php": "^8.3", - "illuminate/contracts": "^11.0 || ^12.0", "pixelfear/composer-dist-plugin": "^0.1.4", - "statamic/cms": "^5.0 || ^6.0" + "statamic/cms": "^5.0 || ^6.0", + "stillat/proteus": "^4.0" }, "require-dev": { "mockery/mockery": "^1.3.1", diff --git a/src/UpdateScripts/AddToLoggingConfig.php b/src/UpdateScripts/AddToLoggingConfig.php new file mode 100644 index 0000000..0c2e9bd --- /dev/null +++ b/src/UpdateScripts/AddToLoggingConfig.php @@ -0,0 +1,31 @@ +set('channels.front', [ + 'driver' => 'custom', + 'via' => \TransformStudios\Front\Logging\Logger::class, + 'level' => ConfigWriter::f()->env('FRONT_LOGGING_LEVEL', 'error'), + ])->save(); + dd('saved'); + } +}