Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ export default async function Page({
},
{
label: `${employmentData.employment.position} (${formatDate(employmentData.employment.contractStart, "PPP", { locale: de })} - ${
employmentData.employment.contractEnd != null
? formatDate(employmentData.employment.contractEnd, "PPP", {
employmentData.employment.contractEnd == null
? ""
: formatDate(employmentData.employment.contractEnd, "PPP", {
locale: de,
})
: ""
})`,
href: `hr/management/${employeeId}/employment/${recordId}`,
},
Expand Down
8 changes: 4 additions & 4 deletions apps/cockpit/src/components/hr-lists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ export function EmploymentsList<TData, TValue>({
locale: de,
})}{" "}
-{" "}
{row.getValue("contractEnd") != null
? formatDate(row.getValue("contractEnd"), "PPP", {
{row.getValue("contractEnd") == null
? ""
: formatDate(row.getValue("contractEnd"), "PPP", {
locale: de,
})
: ""}
})}
</ItemTitle>
<ItemDescription>{row.getValue("employer")}</ItemDescription>
</div>
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
},
"dependencies": {
"@northware/ui": "workspace:",
"fumadocs-core": "16.6.12",
"fumadocs-mdx": "14.2.9",
"fumadocs-ui": "16.6.12",
"fumadocs-core": "16.6.17",
"fumadocs-mdx": "14.2.10",
"fumadocs-ui": "16.6.17",
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
Expand Down
8 changes: 4 additions & 4 deletions apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@northware/ui": "workspace:*",
"@storybook/addon-docs": "^10.2.16",
"@storybook/addon-docs": "^10.2.19",
"@tanstack/react-table": "^8.21.3",
"next": "16.1.6",
"react": "^19.2.4",
Expand All @@ -21,12 +21,12 @@
},
"devDependencies": {
"@northware/service-config": "workspace:*",
"@storybook/addon-themes": "10.2.16",
"@storybook/nextjs": "10.2.16",
"@storybook/addon-themes": "10.2.19",
"@storybook/nextjs": "10.2.19",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"storybook": "10.2.16",
"storybook": "10.2.19",
"typescript": "^5.9.3"
}
}
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
"extends": ["ultracite/core", "ultracite/react", "ultracite/next"],
"vcs": {
"enabled": true,
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@biomejs/biome": "2.4.7",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/prompt-cli": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@commitlint/prompt-cli": "^20.4.4",
"@commitlint/types": "^20.4.4",
"@northware/tsconfig": "workspace:",
"turbo": "^2.8.14",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"ultracite": "6.5.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
"root": false,
"extends": "//",
"files": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/components/custom-alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ const AlertIcon = ({
return icons[variant] ?? icons.default;
};

export { AlertWrapper, AlertIcon, customAlertVariants };
export { AlertIcon, AlertWrapper, customAlertVariants };
686 changes: 344 additions & 342 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading