diff --git a/CHANGELOG.md b/CHANGELOG.md
index 263f735b65..9f3e39d206 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,8 +18,53 @@ should change the heading of the (upcoming) version to include a major version b
# 6.1.3
+## @rjsf/antd
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/chakra-ui
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/core
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/daisyui
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/fluent-ui
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/mantine
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/mui
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/primereact
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/react-bootstrap
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/semantic-ui
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
+## @rjsf/shadcn
+
+- Updated `BaseInputTemplate` to support the `allowClear` feature for input fields
+
## @rjsf/utils
+- Fixed issue by adding new `allowClear` option to `UIOptionsBaseType` type, fixing [#4671](https://github.com/rjsf-team/react-jsonschema-form/issues/4671)
- Fixed issue with default value not being prefilled when object with if/then is nested inside another object, fixing [#4222](https://github.com/rjsf-team/react-jsonschema-form/issues/4222)
- Fixed issue with schema array with nested dependent fixed-length, fixing [#3754](https://github.com/rjsf-team/react-jsonschema-form/issues/3754)
diff --git a/packages/chakra-ui/src/BaseInputTemplate/BaseInputTemplate.tsx b/packages/chakra-ui/src/BaseInputTemplate/BaseInputTemplate.tsx
index 2ce6d91489..d0de7f26ed 100644
--- a/packages/chakra-ui/src/BaseInputTemplate/BaseInputTemplate.tsx
+++ b/packages/chakra-ui/src/BaseInputTemplate/BaseInputTemplate.tsx
@@ -13,6 +13,7 @@ import {
import { Field } from '../components/ui/field';
import { getChakra } from '../utils';
+import { X } from 'lucide-react';
export default function BaseInputTemplate<
T = any,
@@ -72,6 +73,25 @@ export default function BaseInputTemplate<
list={schema.examples ? examplesId(id) : undefined}
aria-describedby={ariaDescribedByIds(id, !!schema.examples)}
/>
+ {options.allowClear && !readonly && !disabled && value && (
+
+ )}
{Array.isArray(schema.examples) ? (