Skip to content

Commit

Permalink
Release new versions of all packages
Browse files Browse the repository at this point in the history
changes include:
• updated all dependencies to latest (except typescript)
• @acusti/input-text: added support for optional props.onChangeValue, which can be used directly with a useState setter function: onChangeValue={setValue}
• @acusti/webcrypto: reduced isomorphic providers to a single line each
• @acusti/uniquify: removed dependency on lodash.escaperegexp by adding one-line internal equivalent + tests
• refactored away any variable shadowing, including significant cleanup in @acusti/styling’s minifyStyles util
• made conditional checks more explicit and robust (e.g. for boolean checks of number types)
  • Loading branch information
acusti committed Dec 19, 2024
1 parent 35df8c0 commit 198c156
Show file tree
Hide file tree
Showing 18 changed files with 73 additions and 73 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.15.1",
"version": "0.16.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down Expand Up @@ -38,8 +38,8 @@
},
"homepage": "https://github.com/acusti/uikit/tree/main/packages/appsync-fetch#readme",
"dependencies": {
"@acusti/aws-signature-v4": "^0.6.2",
"@acusti/post": "^0.5.1"
"@acusti/aws-signature-v4": "^1",
"@acusti/post": "^1"
},
"devDependencies": {
"@types/node": "^22.10.2",
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.2",
"version": "1.0.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"homepage": "https://github.com/acusti/uikit/tree/main/packages/aws-signature-v4#readme",
"dependencies": {
"@acusti/webcrypto": "^1.0.2"
"@acusti/webcrypto": "^1.1.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
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.22",
"version": "1.0.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/CSSValueInput.js",
Expand Down Expand Up @@ -50,8 +50,8 @@
"vitest": "^2.1.8"
},
"dependencies": {
"@acusti/css-values": "^1.0.2",
"@acusti/input-text": "^1.8.0",
"@acusti/css-values": "^1.0.3",
"@acusti/input-text": "^1.9.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.2",
"version": "1.0.3",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down
8 changes: 4 additions & 4 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.7.0",
"version": "0.8.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down Expand Up @@ -53,11 +53,11 @@
"vitest": "^2.1.8"
},
"dependencies": {
"@acusti/styling": "^0.7.2 || ^1.0.0-0",
"@acusti/styling": "^1",
"clsx": "^2"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18 || ^19",
"react-dom": "^16.8 || ^17 || ^18 || ^19"
"react": "^19",
"react-dom": "^19"
}
}
20 changes: 10 additions & 10 deletions packages/dropdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/dropdown",
"version": "0.43.0",
"version": "0.44.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/Dropdown.js",
Expand Down Expand Up @@ -47,21 +47,21 @@
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.2",
"happy-dom": "^15.11.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "^19",
"react-dom": "^19",
"typescript": "5.3.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@acusti/input-text": "^1.8.0",
"@acusti/matchmaking": "^0.7.0",
"@acusti/styling": "^0.7.2 || ^1.0.0-0",
"@acusti/use-is-out-of-bounds": "^0.11.0",
"@acusti/use-keyboard-events": "^0.7.0",
"@acusti/input-text": "^1.9.0",
"@acusti/matchmaking": "^0.8.0",
"@acusti/styling": "^1",
"@acusti/use-is-out-of-bounds": "^0.13.0",
"@acusti/use-keyboard-events": "^0.9.0",
"clsx": "^2"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18 || ^19",
"react-dom": "^16.8 || ^17 || ^18 || ^19"
"react": "^19",
"react-dom": "^19"
}
}
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.8.0",
"version": "1.9.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/InputText.js",
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.7.0",
"version": "0.8.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/parsing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/parsing",
"version": "0.15.0",
"version": "0.16.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
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.5.1",
"version": "1.0.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down
10 changes: 5 additions & 5 deletions packages/styling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acusti/styling",
"version": "1.0.0-rc.1",
"version": "1.0.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
Expand Down Expand Up @@ -42,13 +42,13 @@
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.2",
"happy-dom": "^15.11.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "^19",
"react-dom": "^19",
"typescript": "5.3.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
"react": "^19",
"react-dom": "^19"
}
}
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.6.1",
"version": "0.7.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
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.5.1",
"version": "0.6.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/uniquify.js",
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.2.0",
"version": "1.4.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/useBoundingClientRect.js",
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.11.0",
"version": "0.13.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/useIsOutOfBounds.js",
Expand Down Expand Up @@ -42,7 +42,7 @@
"vitest": "^2.1.8"
},
"dependencies": {
"@acusti/use-bounding-client-rect": "^1.2.0"
"@acusti/use-bounding-client-rect": "^1.4.0"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18 || ^19",
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.7.0",
"version": "0.9.0",
"type": "module",
"sideEffects": false,
"exports": "./dist/useKeyboardEvents.js",
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.2",
"version": "1.1.0",
"type": "module",
"sideEffects": false,
"exports": {
Expand Down
Loading

0 comments on commit 198c156

Please sign in to comment.