From f3b5000a4e4b0e289e86095a0c3411b9f93900cc Mon Sep 17 00:00:00 2001 From: Andrew Patton Date: Fri, 29 Dec 2023 08:28:08 -0800 Subject: [PATCH] :arrow_up: Release new versions of all packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • InputText • added + implemented new props.submitOnEnter • resolved initial height calculation race condition • Dropdown: stopped adding tabIndex to
wrapper for custom triggers; the dropdown trigger should be the tab-able UI element • minor version upgrades for the rest of the packages where there are actual code changes, e.g. || → ?? or type annotation fixes • patch version upgrades for the rest of the packages where the only change was upgrading the typescript version/formatting --- packages/appsync-fetch/package.json | 6 +-- packages/aws-signature-v4/package.json | 4 +- packages/css-value-input/package.json | 6 +-- packages/css-values/package.json | 2 +- packages/date-picker/package.json | 4 +- packages/dropdown/package.json | 12 ++--- packages/input-text/package.json | 2 +- packages/matchmaking/package.json | 2 +- packages/post/package.json | 2 +- packages/styling/package.json | 2 +- packages/textual/package.json | 2 +- packages/uniquify/package.json | 2 +- .../use-bounding-client-rect/package.json | 2 +- packages/use-is-out-of-bounds/package.json | 4 +- packages/use-keyboard-events/package.json | 2 +- packages/webcrypto/package.json | 2 +- yarn.lock | 44 +++++++++---------- 17 files changed, 50 insertions(+), 50 deletions(-) diff --git a/packages/appsync-fetch/package.json b/packages/appsync-fetch/package.json index fa009598..3ef69a38 100644 --- a/packages/appsync-fetch/package.json +++ b/packages/appsync-fetch/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/appsync-fetch", - "version": "0.14.0", + "version": "0.15.0", "description": "A lightweight node.js module for making requests to an AWS AppSync graphql API", "keywords": [ "node", @@ -35,8 +35,8 @@ }, "homepage": "https://github.com/acusti/uikit/tree/main/packages/appsync-fetch#readme", "dependencies": { - "@acusti/aws-signature-v4": "^0.6.0", - "@acusti/post": "^0.4.0" + "@acusti/aws-signature-v4": "^0.6.1", + "@acusti/post": "^0.5.0" }, "devDependencies": { "@types/node": "^20.10.5", diff --git a/packages/aws-signature-v4/package.json b/packages/aws-signature-v4/package.json index 3b3cecb1..30b37194 100644 --- a/packages/aws-signature-v4/package.json +++ b/packages/aws-signature-v4/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/aws-signature-v4", - "version": "0.6.0", + "version": "0.6.1", "description": "A lightweight isomorphic module to generate request headers that fulfill the AWS SigV4 signing process", "keywords": [ "aws", @@ -35,7 +35,7 @@ }, "homepage": "https://github.com/acusti/uikit/tree/main/packages/aws-signature-v4#readme", "dependencies": { - "@acusti/webcrypto": "^1.0.0" + "@acusti/webcrypto": "^1.0.1" }, "devDependencies": { "@types/node": "^20.10.5", diff --git a/packages/css-value-input/package.json b/packages/css-value-input/package.json index 456491e6..81d06610 100644 --- a/packages/css-value-input/package.json +++ b/packages/css-value-input/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/css-value-input", - "version": "1.0.0-rc.5", + "version": "1.0.0-rc.6", "description": "React component that renders a text input that can take and update a CSS value of a particular type with a default unit", "keywords": [ "react", @@ -47,8 +47,8 @@ "vitest": "^1.1.0" }, "dependencies": { - "@acusti/css-values": "^1.0.0", - "@acusti/input-text": "^1.2.1", + "@acusti/css-values": "^1.0.1", + "@acusti/input-text": "^1.3.0", "clsx": "^2" }, "peerDependencies": { diff --git a/packages/css-values/package.json b/packages/css-values/package.json index 1bec6a2f..b78f9d27 100644 --- a/packages/css-values/package.json +++ b/packages/css-values/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/css-values", - "version": "1.0.0", + "version": "1.0.1", "description": "Utilities for parsing different types of CSS values with or without their units", "keywords": [ "utils", diff --git a/packages/date-picker/package.json b/packages/date-picker/package.json index fb067f12..9010137f 100644 --- a/packages/date-picker/package.json +++ b/packages/date-picker/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/date-picker", - "version": "0.1.1", + "version": "0.2.0", "description": "React component that renders a date picker with support for date ranges", "keywords": [ "react", @@ -50,7 +50,7 @@ "vitest": "^1.1.0" }, "dependencies": { - "@acusti/styling": "^0.6.0", + "@acusti/styling": "^0.7.0", "clsx": "^2" }, "peerDependencies": { diff --git a/packages/dropdown/package.json b/packages/dropdown/package.json index 836feb8d..d5378f96 100644 --- a/packages/dropdown/package.json +++ b/packages/dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/dropdown", - "version": "0.34.0", + "version": "0.35.0", "description": "React component that renders a dropdown with a trigger and supports searching, keyboard access, and more", "keywords": [ "react", @@ -50,11 +50,11 @@ "vitest": "^1.1.0" }, "dependencies": { - "@acusti/input-text": "^1.2.1", - "@acusti/matchmaking": "^0.5.1", - "@acusti/styling": "^0.6.0", - "@acusti/use-is-out-of-bounds": "^0.8.0", - "@acusti/use-keyboard-events": "^0.4.0", + "@acusti/input-text": "^1.3.0", + "@acusti/matchmaking": "^0.6.0", + "@acusti/styling": "^0.7.0", + "@acusti/use-is-out-of-bounds": "^0.9.0", + "@acusti/use-keyboard-events": "^0.5.0", "clsx": "^2" }, "peerDependencies": { diff --git a/packages/input-text/package.json b/packages/input-text/package.json index 8e218ca8..93a4aa2c 100644 --- a/packages/input-text/package.json +++ b/packages/input-text/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/input-text", - "version": "1.2.1", + "version": "1.3.0", "description": "React component that renders a semi-controlled input with multiLine and selectTextOnFocus support", "keywords": [ "react", diff --git a/packages/matchmaking/package.json b/packages/matchmaking/package.json index 8cf2dfc7..2d20e7fc 100644 --- a/packages/matchmaking/package.json +++ b/packages/matchmaking/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/matchmaking", - "version": "0.5.1", + "version": "0.6.0", "description": "Intuitive approximate string matching (i.e. fuzzy searches)", "keywords": [ "utils", diff --git a/packages/post/package.json b/packages/post/package.json index 084fb7f8..778dcc22 100644 --- a/packages/post/package.json +++ b/packages/post/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/post", - "version": "0.4.0", + "version": "0.5.0", "description": "Super minimal fetch-inspired API wrapper around node.js’ http and https modules for making POST requests", "keywords": [ "node", diff --git a/packages/styling/package.json b/packages/styling/package.json index 820a42a8..88418cb8 100644 --- a/packages/styling/package.json +++ b/packages/styling/package.json @@ -1,6 +1,6 @@ { "name": "@acusti/styling", - "version": "0.6.0", + "version": "0.7.0", "description": "React component that renders a CSS style string as a