From 17263468d53d58cd2cc0f2bbca5c52f873545a12 Mon Sep 17 00:00:00 2001 From: marius-at-atb <134292729+marius-at-atb@users.noreply.github.com> Date: Wed, 24 Jun 2026 10:32:02 +0200 Subject: [PATCH] Add parking as a GeofencingZoneCode --- packages/theme/src/theme.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/theme/src/theme.ts b/packages/theme/src/theme.ts index 96bc860c..7cd7703f 100644 --- a/packages/theme/src/theme.ts +++ b/packages/theme/src/theme.ts @@ -53,7 +53,12 @@ export type InteractiveColorName = keyof Theme['color']['interactive']; export type InteractiveColors = Theme['color']['interactive']; export type InteractiveState = keyof InteractiveColor; -export type GeofencingZoneCode = 'allowed' | 'slow' | 'noParking' | 'noEntry'; +export type GeofencingZoneCode = + | 'allowed' + | 'slow' + | 'parking' + | 'noParking' + | 'noEntry'; export type GeofencingZoneStyle = { color: T;