@dereekb/rxjs 12.5.3 → 12.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/iterator/iteration.accumulator.d.ts +1 -1
- package/src/lib/loading/loading.context.d.ts +2 -2
- package/src/lib/loading/loading.d.ts +1 -1
- package/src/lib/loading/loading.state.list.d.ts +1 -1
- package/src/lib/loading/loading.state.rxjs.d.ts +1 -1
- package/src/lib/rxjs/value.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
1
|
+
import { type Observable } from 'rxjs';
|
|
2
2
|
import { type MapFunctionOutputPair, type Destroyable, type IndexRef, type GetterOrValue, type MapFunction, type PromiseOrValue, type Page } from '@dereekb/util';
|
|
3
3
|
import { type ItemIteration, type PageItemIteration } from './iteration';
|
|
4
4
|
import { type LoadingState, type MapLoadingStateValueMapFunction } from '../loading';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type Observable } from 'rxjs';
|
|
2
2
|
import { type LoadingState, type LoadingErrorPair } from './loading.state';
|
|
3
|
-
import { LoadingProgress } from './loading';
|
|
4
|
-
import { Maybe } from '@dereekb/util';
|
|
3
|
+
import { type LoadingProgress } from './loading';
|
|
4
|
+
import { type Maybe } from '@dereekb/util';
|
|
5
5
|
/**
|
|
6
6
|
* A LoadingErrorPair that always defines a loading value.
|
|
7
7
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type PageNumber } from '@dereekb/util';
|
|
2
2
|
import { type Observable, type OperatorFunction } from 'rxjs';
|
|
3
|
-
import { LoadingStateValue, type ListLoadingState, type PageLoadingState } from './loading.state';
|
|
3
|
+
import { type LoadingStateValue, type ListLoadingState, type PageLoadingState } from './loading.state';
|
|
4
4
|
/**
|
|
5
5
|
* Returns true if the loading state is not loading and is empty.
|
|
6
6
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Maybe, type ReadableError, type EqualityComparatorFunction, GetterOrValue, MaybeSoStrict } from '@dereekb/util';
|
|
1
|
+
import { type Maybe, type ReadableError, type EqualityComparatorFunction, type GetterOrValue, type MaybeSoStrict } from '@dereekb/util';
|
|
2
2
|
import { type MonoTypeOperatorFunction, type OperatorFunction, type Observable, type ObservableInputTuple } from 'rxjs';
|
|
3
3
|
import { type LoadingState, type PageLoadingState, type MapLoadingStateResultsConfiguration, type LoadingStateValue, LoadingStateType, type LoadingStateWithValueType, type LoadingStateWithDefinedValue, type LoadingStateWithError } from './loading.state';
|
|
4
4
|
/**
|
package/src/lib/rxjs/value.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type MonoTypeOperatorFunction, type Observable, type OperatorFunction } from 'rxjs';
|
|
2
|
-
import { type DecisionFunction, type GetterOrValue, type MapFunction, type Maybe, MaybeSoStrict } from '@dereekb/util';
|
|
2
|
+
import { type DecisionFunction, type GetterOrValue, type MapFunction, type Maybe, type MaybeSoStrict } from '@dereekb/util';
|
|
3
3
|
import { type MaybeObservableOrValueGetter, type ObservableOrValueGetter, type MaybeObservableOrValue } from './getter';
|
|
4
4
|
import { type ObservableDecisionFunction } from './decision';
|
|
5
5
|
/**
|