Files
interview-demo-code/frontend/spa/tailwind.config.js
Nikita Kiselev 6a59dcc0c9 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
2025-11-23 16:05:46 +03:00

17 lines
338 B
JavaScript

module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./formkit.theme.mjs",
],
theme: {
extend: {
gridTemplateRows: {
'[auto,auto,1fr]': 'auto auto 1fr',
},
},
},
plugins: [
require("daisyui"),
],
};