From c083cc135df3e217e1897776d7a129e5eedd3bd9 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 8 Jun 2026 21:07:41 +0000
Subject: [PATCH] chore: version packages
---
.changeset/autocomplete-component.md | 8 --------
.changeset/textinput-component.md | 5 -----
CHANGELOG.md | 11 +++++++++++
package.json | 2 +-
4 files changed, 12 insertions(+), 14 deletions(-)
delete mode 100644 .changeset/autocomplete-component.md
delete mode 100644 .changeset/textinput-component.md
diff --git a/.changeset/autocomplete-component.md b/.changeset/autocomplete-component.md
deleted file mode 100644
index 2cdf08a..0000000
--- a/.changeset/autocomplete-component.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-'@nciocpl/react-components': minor
----
-
-Add `Autocomplete` (NCIDS combobox) component and fix its packaging.
-
-- **Search-box features:** new `minChars` / `minCharsMessage` props (shows a "enter N or more characters" hint below the threshold), an `onSubmit` callback plus a built-in search button (Enter submits when no option is highlighted; a highlighted option is selected first), `highlightMatch` to bold the matched substring in each option, and a `searchButtonLabel` for localization.
-- **Styling now ships:** the component previously relied on a CSS-module (`Autocomplete.module.scss`) that the rollup pipeline silently dropped — class names resolved to `undefined` and no CSS was emitted to the bundled stylesheet. Styles are now plain `nci-autocomplete*` classes shipped via `@nciocpl/react-components/styles`.
diff --git a/.changeset/textinput-component.md b/.changeset/textinput-component.md
deleted file mode 100644
index 8440043..0000000
--- a/.changeset/textinput-component.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@nciocpl/react-components': minor
----
-
-Add `TextInput` (NCIDS Text Input) component. Wraps a native `` with USWDS `usa-input` styling and supports text, email, password, tel, url, number, and search input types. Forwards standard input props for use as a controlled or uncontrolled input.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de6a63e..e6e2b6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## 0.3.0
+
+### Minor Changes
+
+- [#75](https://github.com/NCIOCPL/react-app-shared/pull/75) [`99b6960`](https://github.com/NCIOCPL/react-app-shared/commit/99b6960322429cf30c18b911bb2ad9b01f23ede3) Thanks [@adriancofie](https://github.com/adriancofie)! - Add `Autocomplete` (NCIDS combobox) component and fix its packaging.
+
+ - **Search-box features:** new `minChars` / `minCharsMessage` props (shows a "enter N or more characters" hint below the threshold), an `onSubmit` callback plus a built-in search button (Enter submits when no option is highlighted; a highlighted option is selected first), `highlightMatch` to bold the matched substring in each option, and a `searchButtonLabel` for localization.
+ - **Styling now ships:** the component previously relied on a CSS-module (`Autocomplete.module.scss`) that the rollup pipeline silently dropped — class names resolved to `undefined` and no CSS was emitted to the bundled stylesheet. Styles are now plain `nci-autocomplete*` classes shipped via `@nciocpl/react-components/styles`.
+
+- [#75](https://github.com/NCIOCPL/react-app-shared/pull/75) [`d00f0dd`](https://github.com/NCIOCPL/react-app-shared/commit/d00f0dd423a3702f68b83e1efc3db71cf03bf6a9) Thanks [@adriancofie](https://github.com/adriancofie)! - Add `TextInput` (NCIDS Text Input) component. Wraps a native `` with USWDS `usa-input` styling and supports text, email, password, tel, url, number, and search input types. Forwards standard input props for use as a controlled or uncontrolled input.
+
## 0.2.0
### Minor Changes
diff --git a/package.json b/package.json
index 214546e..d9a7f2f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@nciocpl/react-components",
- "version": "0.2.0",
+ "version": "0.3.0",
"description": "Shared React component library for NCI applications",
"type": "module",
"main": "dist/cjs/index.js",