create-mercato-app 0.6.4-develop.4199.1.86677441c2 → 0.6.4-develop.4210.1.d412061cfe
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/docker/redis/redis.conf +12 -0
- package/template/docker-compose.fullapp.dev.yml +2 -0
- package/template/docker-compose.fullapp.yml +2 -0
- package/template/docker-compose.yml +2 -0
- package/template/src/app/globals.css +33 -0
- package/template/src/i18n/de.json +8 -0
- package/template/src/i18n/en.json +8 -0
- package/template/src/i18n/es.json +8 -0
- package/template/src/i18n/pl.json +8 -0
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Eviction policy: evict least-recently-used keys when maxmemory is reached.
|
|
2
|
+
# The memory ceiling is set via --maxmemory CLI flag in docker-compose so it
|
|
3
|
+
# can be overridden with REDIS_MAXMEMORY without editing this file.
|
|
4
|
+
# Standard redis.conf does not support ${VAR} substitution.
|
|
5
|
+
maxmemory-policy allkeys-lru
|
|
6
|
+
|
|
7
|
+
# Disable persistence — this Redis instance is used as a cache layer.
|
|
8
|
+
# WARNING: if QUEUE_STRATEGY=async is configured, BullMQ job data also lives
|
|
9
|
+
# here. In-flight jobs will be lost on container restart. Use a separate
|
|
10
|
+
# Redis instance with persistence enabled for production async queues.
|
|
11
|
+
save ""
|
|
12
|
+
appendonly no
|
|
@@ -91,7 +91,9 @@ services:
|
|
|
91
91
|
redis:
|
|
92
92
|
image: redis:7-alpine
|
|
93
93
|
volumes:
|
|
94
|
+
- ./docker/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
|
94
95
|
- redis_data:/data
|
|
96
|
+
command: redis-server /usr/local/etc/redis/redis.conf --maxmemory ${REDIS_MAXMEMORY:-512mb}
|
|
95
97
|
healthcheck:
|
|
96
98
|
test: ["CMD", "redis-cli", "ping"]
|
|
97
99
|
interval: 10s
|
|
@@ -91,7 +91,9 @@ services:
|
|
|
91
91
|
redis:
|
|
92
92
|
image: redis:7-alpine
|
|
93
93
|
volumes:
|
|
94
|
+
- ./docker/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
|
94
95
|
- redis_data:/data
|
|
96
|
+
command: redis-server /usr/local/etc/redis/redis.conf --maxmemory ${REDIS_MAXMEMORY:-512mb}
|
|
95
97
|
healthcheck:
|
|
96
98
|
test: ["CMD", "redis-cli", "ping"]
|
|
97
99
|
interval: 10s
|
|
@@ -23,7 +23,9 @@ services:
|
|
|
23
23
|
ports:
|
|
24
24
|
- "${REDIS_PORT:-6379}:6379"
|
|
25
25
|
volumes:
|
|
26
|
+
- ./docker/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
|
26
27
|
- redis_data:/data
|
|
28
|
+
command: redis-server /usr/local/etc/redis/redis.conf --maxmemory ${REDIS_MAXMEMORY:-512mb}
|
|
27
29
|
healthcheck:
|
|
28
30
|
test: ["CMD", "redis-cli", "ping"]
|
|
29
31
|
interval: 10s
|
|
@@ -617,3 +617,36 @@ body[data-ai-chat-open="true"] .om-demo-feedback-floating {
|
|
|
617
617
|
.scrollbar-hide::-webkit-scrollbar {
|
|
618
618
|
display: none;
|
|
619
619
|
}
|
|
620
|
+
|
|
621
|
+
/* Global DS-styled thin scrollbar.
|
|
622
|
+
*
|
|
623
|
+
* Every native `overflow-auto` / `overflow-scroll` container inherits a
|
|
624
|
+
* thin, neutral thumb that matches the `<ScrollArea>` primitive's look
|
|
625
|
+
* (muted-foreground at 30 % opacity, rising to 50 % on hover). Firefox
|
|
626
|
+
* honors `scrollbar-width: thin` + `scrollbar-color`; WebKit uses the
|
|
627
|
+
* `::-webkit-scrollbar` pseudo set. Opt out of this styling explicitly
|
|
628
|
+
* with `.scrollbar-hide` (used by horizontal scroll rails driven by
|
|
629
|
+
* chevron buttons). */
|
|
630
|
+
* {
|
|
631
|
+
scrollbar-width: thin;
|
|
632
|
+
scrollbar-color: color-mix(in oklch, var(--muted-foreground) 30%, transparent) transparent;
|
|
633
|
+
}
|
|
634
|
+
*::-webkit-scrollbar {
|
|
635
|
+
width: 10px;
|
|
636
|
+
height: 10px;
|
|
637
|
+
}
|
|
638
|
+
*::-webkit-scrollbar-track {
|
|
639
|
+
background: transparent;
|
|
640
|
+
}
|
|
641
|
+
*::-webkit-scrollbar-thumb {
|
|
642
|
+
background-color: color-mix(in oklch, var(--muted-foreground) 30%, transparent);
|
|
643
|
+
border-radius: 9999px;
|
|
644
|
+
border: 2px solid transparent;
|
|
645
|
+
background-clip: padding-box;
|
|
646
|
+
}
|
|
647
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
648
|
+
background-color: color-mix(in oklch, var(--muted-foreground) 50%, transparent);
|
|
649
|
+
}
|
|
650
|
+
*::-webkit-scrollbar-corner {
|
|
651
|
+
background: transparent;
|
|
652
|
+
}
|
|
@@ -686,6 +686,7 @@
|
|
|
686
686
|
"ui.collapsible.errorSingular": "{{count}} error",
|
|
687
687
|
"ui.collapsible.fieldPlural": "fields",
|
|
688
688
|
"ui.collapsible.fieldSingular": "field",
|
|
689
|
+
"ui.colorPicker.eyedropper.ariaLabel": "Farbe vom Bildschirm auswählen",
|
|
689
690
|
"ui.columnChooser.available": "Available columns",
|
|
690
691
|
"ui.columnChooser.close": "Close",
|
|
691
692
|
"ui.columnChooser.hideAll": "Hide all",
|
|
@@ -806,6 +807,13 @@
|
|
|
806
807
|
"ui.lookupSelect.selected": "Ausgewählt",
|
|
807
808
|
"ui.lookupSelect.startTyping": "Tippen Sie, um zu suchen.",
|
|
808
809
|
"ui.navigation.back": "Zurück",
|
|
810
|
+
"ui.pagination.first.ariaLabel": "Erste Seite",
|
|
811
|
+
"ui.pagination.itemsPerPage.ariaLabel": "Elemente pro Seite",
|
|
812
|
+
"ui.pagination.last.ariaLabel": "Letzte Seite",
|
|
813
|
+
"ui.pagination.next.ariaLabel": "Nächste Seite",
|
|
814
|
+
"ui.pagination.page.currentAriaLabel": "Seite {page}, aktuelle Seite",
|
|
815
|
+
"ui.pagination.page.goToAriaLabel": "Zu Seite {page} wechseln",
|
|
816
|
+
"ui.pagination.previous.ariaLabel": "Vorherige Seite",
|
|
809
817
|
"ui.perspectives.actions.active": "Aktiv",
|
|
810
818
|
"ui.perspectives.actions.removing": "Entfernen…",
|
|
811
819
|
"ui.perspectives.actions.use": "Verwenden",
|
|
@@ -686,6 +686,7 @@
|
|
|
686
686
|
"ui.collapsible.errorSingular": "{{count}} error",
|
|
687
687
|
"ui.collapsible.fieldPlural": "fields",
|
|
688
688
|
"ui.collapsible.fieldSingular": "field",
|
|
689
|
+
"ui.colorPicker.eyedropper.ariaLabel": "Pick color from screen",
|
|
689
690
|
"ui.columnChooser.available": "Available columns",
|
|
690
691
|
"ui.columnChooser.close": "Close",
|
|
691
692
|
"ui.columnChooser.hideAll": "Hide all",
|
|
@@ -806,6 +807,13 @@
|
|
|
806
807
|
"ui.lookupSelect.selected": "Selected",
|
|
807
808
|
"ui.lookupSelect.startTyping": "Start typing to search.",
|
|
808
809
|
"ui.navigation.back": "Back",
|
|
810
|
+
"ui.pagination.first.ariaLabel": "First page",
|
|
811
|
+
"ui.pagination.itemsPerPage.ariaLabel": "Items per page",
|
|
812
|
+
"ui.pagination.last.ariaLabel": "Last page",
|
|
813
|
+
"ui.pagination.next.ariaLabel": "Next page",
|
|
814
|
+
"ui.pagination.page.currentAriaLabel": "Page {page}, current page",
|
|
815
|
+
"ui.pagination.page.goToAriaLabel": "Go to page {page}",
|
|
816
|
+
"ui.pagination.previous.ariaLabel": "Previous page",
|
|
809
817
|
"ui.perspectives.actions.active": "Active",
|
|
810
818
|
"ui.perspectives.actions.removing": "Removing…",
|
|
811
819
|
"ui.perspectives.actions.use": "Use",
|
|
@@ -686,6 +686,7 @@
|
|
|
686
686
|
"ui.collapsible.errorSingular": "{{count}} error",
|
|
687
687
|
"ui.collapsible.fieldPlural": "fields",
|
|
688
688
|
"ui.collapsible.fieldSingular": "field",
|
|
689
|
+
"ui.colorPicker.eyedropper.ariaLabel": "Elegir color de la pantalla",
|
|
689
690
|
"ui.columnChooser.available": "Available columns",
|
|
690
691
|
"ui.columnChooser.close": "Close",
|
|
691
692
|
"ui.columnChooser.hideAll": "Hide all",
|
|
@@ -806,6 +807,13 @@
|
|
|
806
807
|
"ui.lookupSelect.selected": "Seleccionado",
|
|
807
808
|
"ui.lookupSelect.startTyping": "Empieza a escribir para buscar.",
|
|
808
809
|
"ui.navigation.back": "Volver",
|
|
810
|
+
"ui.pagination.first.ariaLabel": "Primera página",
|
|
811
|
+
"ui.pagination.itemsPerPage.ariaLabel": "Elementos por página",
|
|
812
|
+
"ui.pagination.last.ariaLabel": "Última página",
|
|
813
|
+
"ui.pagination.next.ariaLabel": "Página siguiente",
|
|
814
|
+
"ui.pagination.page.currentAriaLabel": "Página {page}, página actual",
|
|
815
|
+
"ui.pagination.page.goToAriaLabel": "Ir a la página {page}",
|
|
816
|
+
"ui.pagination.previous.ariaLabel": "Página anterior",
|
|
809
817
|
"ui.perspectives.actions.active": "Activa",
|
|
810
818
|
"ui.perspectives.actions.removing": "Eliminando…",
|
|
811
819
|
"ui.perspectives.actions.use": "Usar",
|
|
@@ -686,6 +686,7 @@
|
|
|
686
686
|
"ui.collapsible.errorSingular": "{{count}} error",
|
|
687
687
|
"ui.collapsible.fieldPlural": "fields",
|
|
688
688
|
"ui.collapsible.fieldSingular": "field",
|
|
689
|
+
"ui.colorPicker.eyedropper.ariaLabel": "Wybierz kolor z ekranu",
|
|
689
690
|
"ui.columnChooser.available": "Available columns",
|
|
690
691
|
"ui.columnChooser.close": "Close",
|
|
691
692
|
"ui.columnChooser.hideAll": "Hide all",
|
|
@@ -806,6 +807,13 @@
|
|
|
806
807
|
"ui.lookupSelect.selected": "Wybrano",
|
|
807
808
|
"ui.lookupSelect.startTyping": "Zacznij pisać, aby wyszukać.",
|
|
808
809
|
"ui.navigation.back": "Wstecz",
|
|
810
|
+
"ui.pagination.first.ariaLabel": "Pierwsza strona",
|
|
811
|
+
"ui.pagination.itemsPerPage.ariaLabel": "Elementów na stronę",
|
|
812
|
+
"ui.pagination.last.ariaLabel": "Ostatnia strona",
|
|
813
|
+
"ui.pagination.next.ariaLabel": "Następna strona",
|
|
814
|
+
"ui.pagination.page.currentAriaLabel": "Strona {page}, bieżąca",
|
|
815
|
+
"ui.pagination.page.goToAriaLabel": "Przejdź do strony {page}",
|
|
816
|
+
"ui.pagination.previous.ariaLabel": "Poprzednia strona",
|
|
809
817
|
"ui.perspectives.actions.active": "Aktywna",
|
|
810
818
|
"ui.perspectives.actions.removing": "Usuwanie…",
|
|
811
819
|
"ui.perspectives.actions.use": "Użyj",
|