diff --git a/CHANGELOG.md b/CHANGELOG.md
index 243d67a349..3316aa4418 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [2352.01] - 2023-12-28
+
+### Added
+- (carros) => Se añade contador de carros. #6545
+- (Reclamaciones) => Se añade la sección para hacer acciones sobre una reclamación. #5654
+### Changed
+### Fixed
+- (Reclamaciones) => Se corrige el color de la barra según el tema y el evento de actualziar cantidades #6334
+
+
## [2253.01] - 2023-01-05
### Added
diff --git a/package.json b/package.json
index 799401c082..583233204d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "salix-front",
- "version": "23.48.01",
+ "version": "23.52.01",
"description": "Salix frontend",
"productName": "Salix",
"author": "Verdnatura",
@@ -53,4 +53,4 @@
"vite": "^4.3.5",
"vitest": "^0.31.1"
}
-}
\ No newline at end of file
+}
diff --git a/quasar.config.js b/quasar.config.js
index cbcbae4dc7..3a7dc1f1e6 100644
--- a/quasar.config.js
+++ b/quasar.config.js
@@ -66,7 +66,9 @@ module.exports = configure(function (/* ctx */) {
// publicPath: '/',
// analyze: true,
// env: {},
- // rawDefine: {}
+ rawDefine: {
+ 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
+ },
// ignorePublicFolder: true,
// minify: false,
// polyfillModulePreload: true,
@@ -89,11 +91,12 @@ module.exports = configure(function (/* ctx */) {
vitePlugins: [
[
- VueI18nPlugin,
+ VueI18nPlugin({
+ runtimeOnly: false
+ }),
{
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
// compositionOnly: false,
-
// you need to set i18n resource including paths !
include: path.resolve(__dirname, './src/i18n/**'),
},
diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue
index eef2e020be..2c1518b731 100644
--- a/src/components/ui/CardDescriptor.vue
+++ b/src/components/ui/CardDescriptor.vue
@@ -1,6 +1,7 @@
-