feat: add FormKit framework support and update dependencies
- Add `telecart_forms` table migration and default checkout form seeder - Implement `FormsHandler` to fetch form schemas - Update `OrderCreateService` to handle custom fields in order comments - Add `update` method to QueryBuilder and Grammar - Add `Arr::except` helper - Update composer dependencies (Carbon, Symfony, PHPUnit, etc.) - Improve `MigratorService` error handling - Add unit tests for new functionality
This commit is contained in:
@@ -10,6 +10,9 @@ import ToastService from 'primevue/toastservice';
|
||||
import {definePreset} from "@primeuix/themes";
|
||||
import Tooltip from 'primevue/tooltip';
|
||||
import ConfirmationService from 'primevue/confirmationservice';
|
||||
import { plugin, defaultConfig } from '@formkit/vue';
|
||||
import { ru } from '@formkit/i18n';
|
||||
import config from './formkit.config.js'
|
||||
|
||||
const MyPreset = definePreset(Aura, {
|
||||
|
||||
@@ -38,6 +41,7 @@ onReady(async () => {
|
||||
app.use(ToastService);
|
||||
app.directive('tooltip', Tooltip);
|
||||
app.use(ConfirmationService);
|
||||
app.use(plugin, defaultConfig(config));
|
||||
|
||||
app.mount('#app');
|
||||
await useSettingsStore().fetchSettings();
|
||||
|
||||
Reference in New Issue
Block a user