Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update deps manually #148

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.15.1
22.12.0
12 changes: 9 additions & 3 deletions docs/framework/angular/reference/functions/injectstore.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,17 @@ options): Signal<TSelected>

## Parameters

• **store**: `Store`\<`TState`, `TUpdater`\>
### store

• **selector** = `...`
`Store`\<`TState`, `TUpdater`\>

• **options**: `CreateSignalOptions`\<`TSelected`\> & `object` = `...`
### selector

(`state`) => `TSelected`

### options

`CreateSignalOptions`\<`TSelected`\> & `object` = `...`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/react/reference/functions/shallow.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ function shallow<T>(objA, objB): boolean

## Parameters

• **objA**: `T`
### objA

• **objB**: `T`
`T`

### objB

`T`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/react/reference/functions/usestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ function useStore<TState, TSelected, TUpdater>(store, selector): TSelected

## Parameters

• **store**: `Store`\<`TState`, `TUpdater`\>
### store

• **selector** = `...`
`Store`\<`TState`, `TUpdater`\>

### selector

(`state`) => `TSelected`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/solid/reference/functions/usestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ function useStore<TState, TSelected, TUpdater>(store, selector): Accessor<TSelec

## Parameters

• **store**: `Store`\<`TState`, `TUpdater`\>
### store

• **selector** = `...`
`Store`\<`TState`, `TUpdater`\>

### selector

(`state`) => `TSelected`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/svelte/reference/functions/shallow.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ function shallow<T>(objA, objB): boolean

## Parameters

• **objA**: `T`
### objA

• **objB**: `T`
`T`

### objB

`T`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/svelte/reference/functions/usestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ function useStore<TState, TSelected, TUpdater>(store, selector): object

## Parameters

• **store**: `Store`\<`TState`, `TUpdater`\>
### store

• **selector** = `...`
`Store`\<`TState`, `TUpdater`\>

### selector

(`state`) => `TSelected`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/vue/reference/functions/shallow.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ function shallow<T>(objA, objB): boolean

## Parameters

• **objA**: `T`
### objA

• **objB**: `T`
`T`

### objB

`T`

## Returns

Expand Down
8 changes: 6 additions & 2 deletions docs/framework/vue/reference/functions/usestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ function useStore<TState, TSelected, TUpdater>(store, selector): Readonly<Ref<TS

## Parameters

• **store**: `Store`\<`TState`, `TUpdater`\>
### store

• **selector** = `...`
`Store`\<`TState`, `TUpdater`\>

### selector

(`state`) => `TSelected`

## Returns

Expand Down
20 changes: 15 additions & 5 deletions docs/reference/classes/store.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ new Store<TState, TUpdater>(initialState, options?): Store<TState, TUpdater>

#### Parameters

• **initialState**: `TState`
##### initialState

• **options?**: [`StoreOptions`](../interfaces/storeoptions.md)\<`TState`, `TUpdater`\>
`TState`

##### options?

[`StoreOptions`](../interfaces/storeoptions.md)\<`TState`, `TUpdater`\>

#### Returns

Expand Down Expand Up @@ -79,7 +83,9 @@ batch(cb): void

#### Parameters

• **cb**
##### cb

() => `void`

#### Returns

Expand All @@ -99,7 +105,9 @@ setState(updater): void

#### Parameters

• **updater**: `TUpdater`
##### updater

`TUpdater`

#### Returns

Expand All @@ -119,7 +127,9 @@ subscribe(listener): () => void

#### Parameters

• **listener**: `Listener`
##### listener

`Listener`

#### Returns

Expand Down
16 changes: 12 additions & 4 deletions docs/reference/interfaces/storeoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ Called when a listener subscribes to the store.

#### Parameters

• **listener**: `Listener`
##### listener

• **store**: [`Store`](../classes/store.md)\<`TState`, `TUpdater`\>
`Listener`

##### store

[`Store`](../classes/store.md)\<`TState`, `TUpdater`\>

#### Returns

Expand Down Expand Up @@ -71,15 +75,19 @@ Replace the default update function with a custom one.

#### Parameters

• **previous**: `TState`
##### previous

`TState`

#### Returns

`Function`

##### Parameters

• **updater**: `TUpdater`
###### updater

`TUpdater`

##### Returns

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.17.2",
"@solidjs/testing-library": "^0.8.10",
"@tanstack/config": "^0.14.0",
"@tanstack/config": "^0.14.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.1.0",
"@types/node": "^18.19.3",
"@types/node": "^22.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-istanbul": "^2.1.6",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^25.0.1",
"knip": "^5.38.3",
"nx": "^20.1.4",
"prettier": "^3.4.1",
"knip": "^5.39.2",
"nx": "^20.2.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.2.12",
"react": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.9.4",
"@analogjs/vite-plugin-angular": "^1.10.1",
"@angular/common": "^19.0.1",
"@angular/compiler": "^19.0.1",
"@angular/compiler-cli": "^19.0.1",
Expand Down
Loading
Loading