diff --git a/front/package-lock.json b/front/package-lock.json index ceb4a42..84dbcb0 100644 --- a/front/package-lock.json +++ b/front/package-lock.json @@ -20,8 +20,6 @@ "laravel-vite-plugin": "^1.0.5", "mustache": "^4.2.0", "npm": "^10.8.2", - "postcss": "8.4.31", - "sass": "^1.77.8", "sortablejs": "^1.15.2", "svelte": "^4.2.18", "tinymce": "^6.8.4", @@ -994,6 +992,8 @@ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "readdirp": "^4.0.1" }, @@ -1228,7 +1228,9 @@ "version": "4.3.7", "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "node_modules/install": { "version": "0.13.0", @@ -4507,34 +4509,6 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -4546,6 +4520,8 @@ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">= 14.16.0" }, @@ -4594,6 +4570,8 @@ "resolved": "https://registry.npmjs.org/sass/-/sass-1.79.4.tgz", "integrity": "sha512-K0QDSNPXgyqO4GZq2HO5Q70TLxTH6cIT59RdoCHMivrC8rqzaTw5ab9prjz9KUN1El4FLXrBXJhik61JR4HcGg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "chokidar": "^4.0.0", "immutable": "^4.0.0", diff --git a/front/package.json b/front/package.json index fec9a6d..63ee5b6 100644 --- a/front/package.json +++ b/front/package.json @@ -21,8 +21,6 @@ "laravel-vite-plugin": "^1.0.5", "mustache": "^4.2.0", "npm": "^10.8.2", - "postcss": "8.4.31", - "sass": "^1.77.8", "sortablejs": "^1.15.2", "svelte": "^4.2.18", "tinymce": "^6.8.4", diff --git a/src/Schema/Ui/Color.php b/src/Schema/Ui/Color.php index 7d9eb43..834d450 100644 --- a/src/Schema/Ui/Color.php +++ b/src/Schema/Ui/Color.php @@ -21,9 +21,6 @@ class Color implements FieldInterface, RequiredInterface public string $default = "", public string $help = "", public bool $readonly = false, - public string $optionsFrom = "", - public string $optionsField = "", - public bool $optionsSuggest = false, public string $group = "", ) { diff --git a/src/Schema/Ui/Date.php b/src/Schema/Ui/Date.php index 89c43e3..c211021 100644 --- a/src/Schema/Ui/Date.php +++ b/src/Schema/Ui/Date.php @@ -24,9 +24,6 @@ class Date implements FieldInterface, RequiredInterface, MinMaxInterface public string $default = "", public string $help = "", public bool $readonly = false, - public string $optionsFrom = "", - public string $optionsField = "", - public bool $optionsSuggest = false, public string $group = "", ) { diff --git a/src/Schema/Ui/Datetime.php b/src/Schema/Ui/Datetime.php index 92ded49..5eccd99 100644 --- a/src/Schema/Ui/Datetime.php +++ b/src/Schema/Ui/Datetime.php @@ -24,9 +24,6 @@ class Datetime implements FieldInterface, RequiredInterface, MinMaxInterface public string $default = "", public string $help = "", public bool $readonly = false, - public string $optionsFrom = "", - public string $optionsField = "", - public bool $optionsSuggest = false, public string $group = "", ) { diff --git a/src/Schema/Ui/Number.php b/src/Schema/Ui/Number.php index 90cfbd7..e6bc629 100644 --- a/src/Schema/Ui/Number.php +++ b/src/Schema/Ui/Number.php @@ -24,9 +24,6 @@ class Number implements FieldInterface, RequiredInterface, MinMaxInterface public ?float $default = null, public bool $readonly = false, public string $help = "", - public string $optionsFrom = "", - public string $optionsField = "", - public bool $optionsSuggest = false, public string $group = "", ) { diff --git a/src/Schema/Ui/Text.php b/src/Schema/Ui/Text.php index 0fe88ec..1fc3572 100644 --- a/src/Schema/Ui/Text.php +++ b/src/Schema/Ui/Text.php @@ -22,9 +22,6 @@ class Text implements FieldInterface, RequiredInterface public string $help = "", public string $default = "", public bool $readonly = false, - public string $optionsFrom = "", - public string $optionsField = "", - public bool $optionsSuggest = false, public ?array $selectOptions = null, public string $group = "", )