Skip to content

Commit

Permalink
chore(release): 2.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Pagebakers committed Feb 4, 2024
1 parent 199eff1 commit 583b1d2
Show file tree
Hide file tree
Showing 18 changed files with 70 additions and 10 deletions.
7 changes: 7 additions & 0 deletions apps/palette/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# palette

## 1.4.19

### Patch Changes

- @saas-ui/react@2.5.7
- @saas-ui/theme-glass@0.5.3

## 1.4.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/palette/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "palette-docs",
"version": "1.4.18",
"version": "1.4.19",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
6 changes: 6 additions & 0 deletions apps/website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# website

## 2.3.17

### Patch Changes

- @saas-ui/react@2.5.7

## 2.3.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "website",
"version": "2.3.16",
"version": "2.3.17",
"private": true,
"author": "Eelco Wiersma <eelco@appulse.nl>",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/saas-ui-data-table/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @saas-ui/data-table

## 7.0.7

### Patch Changes

- @saas-ui/react@2.5.7

## 7.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/saas-ui-data-table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saas-ui/data-table",
"version": "7.0.6",
"version": "7.0.7",
"description": "Data-table Component",
"source": "src/index.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/saas-ui-hotkeys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @saas-ui/hotkeys

## 2.2.1

### Patch Changes

- Fix backwards compatibility
- Updated dependencies
- @saas-ui/use-hotkeys@1.1.1

## 2.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/saas-ui-hotkeys/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saas-ui/hotkeys",
"version": "2.2.0",
"version": "2.2.1",
"description": "Easy manageable keyboard shortcuts for Chakra UI",
"source": "src/index.ts",
"exports": {
Expand Down
7 changes: 7 additions & 0 deletions packages/saas-ui-hotkeys/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,10 @@ export type {
HotkeysOptions,
UseHotkeysListReturn,
} from './hotkeys'

import { HotkeysConfig } from '@saas-ui/use-hotkeys'

/**
* @deprecated Use `HotkeysConfig` instead.
*/
export type HotkeysListOptions = HotkeysConfig
8 changes: 8 additions & 0 deletions packages/saas-ui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @saas-ui/react

## 2.5.7

### Patch Changes

- Updated dependencies
- @saas-ui/hotkeys@2.2.1
- @saas-ui/data-table@7.0.7

## 2.5.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/saas-ui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saas-ui/react",
"version": "2.5.6",
"version": "2.5.7",
"description": "Saas UI - The React component library for startups.",
"source": "src/index.ts",
"exports": {
Expand Down
6 changes: 6 additions & 0 deletions packages/saas-ui-use-hotkeys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @saas-ui/use-hotkeys

## 1.1.1

### Patch Changes

- Fix backwards compatibility

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/saas-ui-use-hotkeys/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saas-ui/use-hotkeys",
"version": "1.1.0",
"version": "1.1.1",
"description": "Easy to use and scalable keyboard shortcuts for React.",
"source": "src/index.ts",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/saas-ui-use-hotkeys/src/use-hotkeys-shortcut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useHotkeysShortcut = (
callback: (event: KeyboardEvent) => void,
options: UseHotkeysOptions | Array<any> = [],
deps?: Array<any>
): string | string[] => {
): string => {
const { hotkeys } = useHotkeysContext()

let keys = keyOrShortcut
Expand All @@ -45,5 +45,5 @@ export const useHotkeysShortcut = (

useHotkeys(keys, callback, options, deps)

return keys
return typeof keys === 'string' ? keys : keys[0]
}
6 changes: 6 additions & 0 deletions packages/storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# saas-ui-storybook

## 1.1.19

### Patch Changes

- @saas-ui/react@2.5.7

## 1.1.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "saas-ui-storybook",
"type": "module",
"version": "1.1.18",
"version": "1.1.19",
"scripts": {
"dev": "sb dev -p 6006",
"build": "sb build --debug --loglevel verbose"
Expand Down
6 changes: 6 additions & 0 deletions tooling/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @saas-ui/test-utils

## 3.1.19

### Patch Changes

- @saas-ui/react@2.5.7

## 3.1.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion tooling/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saas-ui/test-utils",
"version": "3.1.18",
"version": "3.1.19",
"private": true,
"description": "Testing utilities for Chakra UI's components",
"keywords": [
Expand Down

0 comments on commit 583b1d2

Please sign in to comment.