Skip to content

Commit a56e52b

Browse files
authored
chore: lib updates (#253)
1 parent 0a68c0d commit a56e52b

16 files changed

Lines changed: 562 additions & 223 deletions

File tree

apps/atrium-telegram/app/components/ticket/Card.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{{ ticket.title }}
2020
</h3>
2121

22-
<div class="w-full text-base/5 font-normal whitespace-pre-wrap break-words line-clamp-5">
22+
<div class="w-full text-base/5 font-normal whitespace-pre-wrap wrap-break-word line-clamp-5">
2323
{{ ticket.description }}
2424
</div>
2525

apps/web-app/app/components/PartnerAgreementCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
inverted
1919
class="h-14 py-1"
2020
:ui="{
21-
indicator: agreementProgress <= 15 && '!bg-error',
21+
indicator: agreementProgress <= 15 && 'bg-error!',
2222
}"
2323
/>
2424
</div>
@@ -69,7 +69,7 @@
6969
:key="kitchen.id"
7070
:to="`/kitchen/${kitchen.id}`"
7171
>
72-
<ActiveCard class="min-h-auto !p-4 !ring-accented bg-transparent">
72+
<ActiveCard class="min-h-auto p-4! ring-accented! bg-transparent">
7373
<div class="shrink-0 w-full h-full flex flex-col gap-1.5 items-center justify-center text-center">
7474
<UIcon name="i-lucide-store" class="size-8 text-primary" />
7575

apps/web-app/app/components/chart/KitchenChecks.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<UCard ref="cardRef" :ui="{ root: 'overflow-visible', body: '!px-0 !pt-0 !pb-3' }">
2+
<UCard ref="cardRef" :ui="{ root: 'overflow-visible', body: 'px-0! pt-0! pb-3!' }">
33
<template #header>
44
<div>
55
<p class="text-xs text-muted uppercase mb-1.5">

apps/web-app/app/components/chart/KitchenRevenue.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<UCard ref="cardRef" :ui="{ root: 'overflow-visible', body: '!px-0 !pt-0 !pb-3' }">
2+
<UCard ref="cardRef" :ui="{ root: 'overflow-visible', body: 'px-0! pt-0! pb-3!' }">
33
<template #header>
44
<div>
55
<p class="text-xs text-muted uppercase mb-1.5">

docker/atrium-telegram/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS base
1+
FROM node:24.11.0-alpine AS base
22
ENV NODE_OPTIONS="--max_old_space_size=4096"
33

44
# Builder stage

docker/core-telegram/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS base
1+
FROM node:24.11.0-alpine AS base
22
ENV NODE_OPTIONS="--max_old_space_size=4096"
33

44
# Builder stage

docker/storefront-telegram/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS base
1+
FROM node:24.11.0-alpine AS base
22
ENV NODE_OPTIONS="--max_old_space_size=4096"
33

44
# Builder stage

docker/web-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-alpine AS base
1+
FROM node:24.11.0-alpine AS base
22
ENV NODE_OPTIONS="--max_old_space_size=4096"
33

44
# Builder stage

docker/web-app/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
ports:
55
- 5433:5432
66
volumes:
7-
- sushi_atrium_data:/var/lib/postgresql/data
7+
- sushi_atrium_data:/var/lib/postgresql
88
environment:
99
POSTGRES_USER: postgres
1010
POSTGRES_PASSWORD: postgres

docker/web-parser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.20.0-slim AS base
1+
FROM node:24.11.0-slim AS base
22
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
33
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/ms-playwright
44

0 commit comments

Comments
 (0)