Skip to content

Commit

Permalink
⬆️ Release new versions of all packages
Browse files Browse the repository at this point in the history
• InputText
    • added + implemented new props.submitOnEnter
    • resolved initial height calculation race condition
• Dropdown: stopped adding tabIndex to <div> 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
  • Loading branch information
acusti committed Dec 29, 2023
1 parent 254fc34 commit f3b5000
Show file tree
Hide file tree
Showing 17 changed files with 50 additions and 50 deletions.
6 changes: 3 additions & 3 deletions packages/appsync-fetch/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/aws-signature-v4/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions packages/css-value-input/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/css-values/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/date-picker/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -50,7 +50,7 @@
"vitest": "^1.1.0"
},
"dependencies": {
"@acusti/styling": "^0.6.0",
"@acusti/styling": "^0.7.0",
"clsx": "^2"
},
"peerDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions packages/dropdown/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/input-text/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/matchmaking/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/post/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/styling/package.json
Original file line number Diff line number Diff line change
@@ -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 <style> element in the <head> of the document (with global style de-duplication)",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/textual/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/textual",
"version": "0.3.0",
"version": "0.4.0",
"description": "Utilities for transforming and formatting text (i.e. strings)",
"keywords": [
"utils",
Expand Down
2 changes: 1 addition & 1 deletion packages/uniquify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/uniquify",
"version": "0.4.0",
"version": "0.5.0",
"description": "Generate a unique string (e.g. for filenames or url slugs) using an incremental counter",
"keywords": [
"unique",
Expand Down
2 changes: 1 addition & 1 deletion packages/use-bounding-client-rect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/use-bounding-client-rect",
"version": "1.0.1",
"version": "1.1.0",
"description": "React hook that returns the boundingClientRect for an element and triggers an update when those dimensions change",
"keywords": [
"react",
Expand Down
4 changes: 2 additions & 2 deletions packages/use-is-out-of-bounds/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/use-is-out-of-bounds",
"version": "0.8.0",
"version": "0.9.0",
"description": "React hook that detects if an element is outside of its parent’s bounds on any of its sides (like collision detection)",
"keywords": [
"react",
Expand Down Expand Up @@ -40,7 +40,7 @@
"vitest": "^1.1.0"
},
"dependencies": {
"@acusti/use-bounding-client-rect": "^1.0.1"
"@acusti/use-bounding-client-rect": "^1.1.0"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
Expand Down
2 changes: 1 addition & 1 deletion packages/use-keyboard-events/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/use-keyboard-events",
"version": "0.4.0",
"version": "0.5.0",
"description": "React hook that takes keyboard event handlers and attaches them to the document",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/webcrypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/webcrypto",
"version": "1.0.0",
"version": "1.0.1",
"description": "Isomorphic method for accessing the webcrypto API both from node.js and from the browser (including workers)",
"keywords": [
"webcrypto",
Expand Down
44 changes: 22 additions & 22 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ __metadata:
version: 0.0.0-use.local
resolution: "@acusti/appsync-fetch@workspace:packages/appsync-fetch"
dependencies:
"@acusti/aws-signature-v4": "npm:^0.6.0"
"@acusti/post": "npm:^0.4.0"
"@acusti/aws-signature-v4": "npm:^0.6.1"
"@acusti/post": "npm:^0.5.0"
"@types/node": "npm:^20.10.5"
typescript: "npm:^5.3.3"
vitest: "npm:^1.1.0"
languageName: unknown
linkType: soft

"@acusti/aws-signature-v4@npm:^0.6.0, @acusti/aws-signature-v4@workspace:packages/aws-signature-v4":
"@acusti/aws-signature-v4@npm:^0.6.1, @acusti/aws-signature-v4@workspace:packages/aws-signature-v4":
version: 0.0.0-use.local
resolution: "@acusti/aws-signature-v4@workspace:packages/aws-signature-v4"
dependencies:
"@acusti/webcrypto": "npm:^1.0.0"
"@acusti/webcrypto": "npm:^1.0.1"
"@types/node": "npm:^20.10.5"
typescript: "npm:^5.3.3"
vitest: "npm:^1.1.0"
Expand All @@ -32,8 +32,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@acusti/css-value-input@workspace:packages/css-value-input"
dependencies:
"@acusti/css-values": "npm:^1.0.0"
"@acusti/input-text": "npm:^1.2.1"
"@acusti/css-values": "npm:^1.0.1"
"@acusti/input-text": "npm:^1.3.0"
"@testing-library/dom": "npm:^9.3.1"
"@testing-library/react": "npm:^14.0.0"
"@testing-library/user-event": "npm:^14.4.3"
Expand All @@ -50,7 +50,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/css-values@npm:^1.0.0, @acusti/css-values@workspace:packages/css-values":
"@acusti/css-values@npm:^1.0.1, @acusti/css-values@workspace:packages/css-values":
version: 0.0.0-use.local
resolution: "@acusti/css-values@workspace:packages/css-values"
dependencies:
Expand All @@ -63,7 +63,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@acusti/date-picker@workspace:packages/date-picker"
dependencies:
"@acusti/styling": "npm:^0.6.0"
"@acusti/styling": "npm:^0.7.0"
"@testing-library/dom": "npm:^9.3.1"
"@testing-library/react": "npm:^14.0.0"
"@testing-library/user-event": "npm:^14.4.3"
Expand All @@ -84,11 +84,11 @@ __metadata:
version: 0.0.0-use.local
resolution: "@acusti/dropdown@workspace:packages/dropdown"
dependencies:
"@acusti/input-text": "npm:^1.2.1"
"@acusti/matchmaking": "npm:^0.5.1"
"@acusti/styling": "npm:^0.6.0"
"@acusti/use-is-out-of-bounds": "npm:^0.8.0"
"@acusti/use-keyboard-events": "npm:^0.4.0"
"@acusti/input-text": "npm:^1.3.0"
"@acusti/matchmaking": "npm:^0.6.0"
"@acusti/styling": "npm:^0.7.0"
"@acusti/use-is-out-of-bounds": "npm:^0.9.0"
"@acusti/use-keyboard-events": "npm:^0.5.0"
"@testing-library/dom": "npm:^9.3.1"
"@testing-library/react": "npm:^14.0.0"
"@testing-library/user-event": "npm:^14.4.3"
Expand All @@ -105,7 +105,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/input-text@npm:^1.2.1, @acusti/input-text@workspace:packages/input-text":
"@acusti/input-text@npm:^1.3.0, @acusti/input-text@workspace:packages/input-text":
version: 0.0.0-use.local
resolution: "@acusti/input-text@workspace:packages/input-text"
dependencies:
Expand All @@ -117,7 +117,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/matchmaking@npm:^0.5.1, @acusti/matchmaking@workspace:packages/matchmaking":
"@acusti/matchmaking@npm:^0.6.0, @acusti/matchmaking@workspace:packages/matchmaking":
version: 0.0.0-use.local
resolution: "@acusti/matchmaking@workspace:packages/matchmaking"
dependencies:
Expand All @@ -126,7 +126,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/post@npm:^0.4.0, @acusti/post@workspace:packages/post":
"@acusti/post@npm:^0.5.0, @acusti/post@workspace:packages/post":
version: 0.0.0-use.local
resolution: "@acusti/post@workspace:packages/post"
dependencies:
Expand All @@ -136,7 +136,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/styling@npm:^0.6.0, @acusti/styling@workspace:packages/styling":
"@acusti/styling@npm:^0.7.0, @acusti/styling@workspace:packages/styling":
version: 0.0.0-use.local
resolution: "@acusti/styling@workspace:packages/styling"
dependencies:
Expand Down Expand Up @@ -230,7 +230,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/use-bounding-client-rect@npm:^1.0.1, @acusti/use-bounding-client-rect@workspace:packages/use-bounding-client-rect":
"@acusti/use-bounding-client-rect@npm:^1.1.0, @acusti/use-bounding-client-rect@workspace:packages/use-bounding-client-rect":
version: 0.0.0-use.local
resolution: "@acusti/use-bounding-client-rect@workspace:packages/use-bounding-client-rect"
dependencies:
Expand All @@ -243,11 +243,11 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/use-is-out-of-bounds@npm:^0.8.0, @acusti/use-is-out-of-bounds@workspace:packages/use-is-out-of-bounds":
"@acusti/use-is-out-of-bounds@npm:^0.9.0, @acusti/use-is-out-of-bounds@workspace:packages/use-is-out-of-bounds":
version: 0.0.0-use.local
resolution: "@acusti/use-is-out-of-bounds@workspace:packages/use-is-out-of-bounds"
dependencies:
"@acusti/use-bounding-client-rect": "npm:^1.0.1"
"@acusti/use-bounding-client-rect": "npm:^1.1.0"
"@types/react": "npm:^18.2.45"
typescript: "npm:^5.3.3"
vitest: "npm:^1.1.0"
Expand All @@ -257,7 +257,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/use-keyboard-events@npm:^0.4.0, @acusti/use-keyboard-events@workspace:packages/use-keyboard-events":
"@acusti/use-keyboard-events@npm:^0.5.0, @acusti/use-keyboard-events@workspace:packages/use-keyboard-events":
version: 0.0.0-use.local
resolution: "@acusti/use-keyboard-events@workspace:packages/use-keyboard-events"
dependencies:
Expand All @@ -276,7 +276,7 @@ __metadata:
languageName: unknown
linkType: soft

"@acusti/webcrypto@npm:^1.0.0, @acusti/webcrypto@workspace:packages/webcrypto":
"@acusti/webcrypto@npm:^1.0.1, @acusti/webcrypto@workspace:packages/webcrypto":
version: 0.0.0-use.local
resolution: "@acusti/webcrypto@workspace:packages/webcrypto"
dependencies:
Expand Down

0 comments on commit f3b5000

Please sign in to comment.