@rimbu/actor
Advanced tools
Comparing version 0.11.0 to 0.11.1
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
// no internal dependencies | ||
tslib_1.__exportStar(require("./action-base"), exports); | ||
tslib_1.__exportStar(require("./action"), exports); | ||
tslib_1.__exportStar(require("./lookup"), exports); | ||
tslib_1.__exportStar(require("./actor"), exports); | ||
// internal dependencies | ||
tslib_1.__exportStar(require("./slice-config"), exports); | ||
tslib_1.__exportStar(require("./slice"), exports); | ||
tslib_1.__exportStar(require("./actor"), exports); | ||
//# sourceMappingURL=internal.js.map |
@@ -0,7 +1,9 @@ | ||
// no internal dependencies | ||
export * from './action-base'; | ||
export * from './action'; | ||
export * from './lookup'; | ||
export * from './actor'; | ||
// internal dependencies | ||
export * from './slice-config'; | ||
export * from './slice'; | ||
export * from './actor'; | ||
//# sourceMappingURL=internal.js.map |
@@ -1,2 +0,2 @@ | ||
import { Reducer } from '@rimbu/common'; | ||
import { type Reducer } from '@rimbu/common'; | ||
import type { ActionBase } from './internal'; | ||
@@ -19,3 +19,3 @@ /** | ||
type ActionsDefinition = { | ||
[key: string]: Actor.DispatchFunction | ActionsDefinition; | ||
[key: string]: Actor.DispatchFunction | ActionsDefinition | undefined; | ||
}; | ||
@@ -22,0 +22,0 @@ interface Actions<AC extends Actor.ActionsDefinition = Record<string, never>> { |
export * from './action-base'; | ||
export * from './action'; | ||
export * from './lookup'; | ||
export * from './actor'; | ||
export * from './slice-config'; | ||
export * from './slice'; | ||
export * from './actor'; |
@@ -1,2 +0,2 @@ | ||
import { OptLazy, Reducer } from '@rimbu/common'; | ||
import { Reducer, type OptLazy } from '@rimbu/common'; | ||
import type { ActionBase } from './internal'; | ||
@@ -3,0 +3,0 @@ /** |
import type { OptLazy } from '@rimbu/common'; | ||
import { type ActionBase, Lookup, Slice } from './internal'; | ||
import { Lookup, type ActionBase, type Slice } from './internal'; | ||
/** | ||
@@ -4,0 +4,0 @@ * Utility type to determine the types to be used in the slice configuration. |
@@ -1,2 +0,2 @@ | ||
import { Action, Actor, SliceConfig } from './internal'; | ||
import { Action, SliceConfig, type Actor } from './internal'; | ||
import type { Tail } from './utils'; | ||
@@ -3,0 +3,0 @@ /** |
{ | ||
"name": "@rimbu/actor", | ||
"version": "0.11.0", | ||
"version": "0.11.1", | ||
"description": "State management tools to create stateful logic that can be easily integrated in any framework", | ||
@@ -70,3 +70,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "442ffd299583458d458e9bbe3dd02c67828707f3" | ||
"gitHead": "e42737f415d292ea90ad7a8599f4db0e35b8e33d" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { OptLazy, Reducer } from '@rimbu/common'; | ||
import { OptLazy, type Reducer } from '@rimbu/common'; | ||
@@ -33,3 +33,3 @@ import type { ActionBase } from './internal'; | ||
export type ActionsDefinition = { | ||
[key: string]: Actor.DispatchFunction | ActionsDefinition; | ||
[key: string]: Actor.DispatchFunction | ActionsDefinition | undefined; | ||
}; | ||
@@ -36,0 +36,0 @@ |
@@ -0,6 +1,9 @@ | ||
// no internal dependencies | ||
export * from './action-base'; | ||
export * from './action'; | ||
export * from './lookup'; | ||
export * from './actor'; | ||
// internal dependencies | ||
export * from './slice-config'; | ||
export * from './slice'; | ||
export * from './actor'; |
@@ -1,2 +0,2 @@ | ||
import { OptLazy, Reducer } from '@rimbu/common'; | ||
import { Reducer, type OptLazy } from '@rimbu/common'; | ||
@@ -3,0 +3,0 @@ import type { ActionBase } from './internal'; |
import type { OptLazy } from '@rimbu/common'; | ||
import { type ActionBase, Lookup, Slice } from './internal'; | ||
import { Lookup, type ActionBase, type Slice } from './internal'; | ||
@@ -5,0 +5,0 @@ /** |
import { Reducer } from '@rimbu/common'; | ||
import { Action, Actor, SliceConfig } from './internal'; | ||
import { Action, SliceConfig, type Actor } from './internal'; | ||
import type { Tail } from './utils'; | ||
@@ -5,0 +5,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
97016
1793
0