From 6a237b9974da77c2c3c44ffcaf335469bfc69b16 Mon Sep 17 00:00:00 2001 From: joshunrau Date: Fri, 24 Oct 2025 12:18:13 -0400 Subject: [PATCH 1/4] fix: add testid to destructive-action-dialog --- src/providers/CoreProvider/DestructiveActionDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/CoreProvider/DestructiveActionDialog.tsx b/src/providers/CoreProvider/DestructiveActionDialog.tsx index dd49106..4487baf 100644 --- a/src/providers/CoreProvider/DestructiveActionDialog.tsx +++ b/src/providers/CoreProvider/DestructiveActionDialog.tsx @@ -69,7 +69,7 @@ export const DestructiveActionDialog = () => { return ( - event.preventDefault()}> + event.preventDefault()}> {display.title} {display.description} From 86682719dc74ab56462208f9e05c25142e288b70 Mon Sep 17 00:00:00 2001 From: joshunrau Date: Mon, 27 Oct 2025 12:31:41 -0400 Subject: [PATCH 2/4] docs: add description for boolean field --- src/components/Form/Form.stories.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Form/Form.stories.tsx b/src/components/Form/Form.stories.tsx index 14d40a9..9448dfe 100644 --- a/src/components/Form/Form.stories.tsx +++ b/src/components/Form/Form.stories.tsx @@ -59,12 +59,14 @@ type SimpleExampleFormSchemaType = typeof $SimpleExampleFormData; const booleanFields: FormFields> = { booleanRadio: { + description: 'This is a boolean radio field', disabled: DISABLED, kind: 'boolean', label: 'Radio', variant: 'radio' }, booleanCheck: { + description: 'This is a boolean check field', disabled: DISABLED, kind: 'boolean', label: 'Checkbox', From 0926fe69c0f1acc89b63bf86e48d6a05f953b592 Mon Sep 17 00:00:00 2001 From: joshunrau Date: Mon, 27 Oct 2025 12:33:25 -0400 Subject: [PATCH 3/4] chore: remove useless font css --- .../Form/BooleanField/BooleanFieldRadio.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/components/Form/BooleanField/BooleanFieldRadio.tsx b/src/components/Form/BooleanField/BooleanFieldRadio.tsx index 0cfdd55..694f64a 100644 --- a/src/components/Form/BooleanField/BooleanFieldRadio.tsx +++ b/src/components/Form/BooleanField/BooleanFieldRadio.tsx @@ -59,21 +59,13 @@ export const BooleanFieldRadio = ({ - - From a2bed6aff72c34136235104482c0691557150731 Mon Sep 17 00:00:00 2001 From: joshunrau Date: Mon, 27 Oct 2025 12:34:01 -0400 Subject: [PATCH 4/4] fix: radio field styling --- src/components/Form/BooleanField/BooleanFieldRadio.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Form/BooleanField/BooleanFieldRadio.tsx b/src/components/Form/BooleanField/BooleanFieldRadio.tsx index 694f64a..ac2479f 100644 --- a/src/components/Form/BooleanField/BooleanFieldRadio.tsx +++ b/src/components/Form/BooleanField/BooleanFieldRadio.tsx @@ -49,14 +49,16 @@ export const BooleanFieldRadio = ({ return ( - + + + + -