Comparing version 2.6.72 to 2.6.73
@@ -322,3 +322,3 @@ declare type AllowFixed<T> = T extends RxList<infer U> ? U[] | T : T extends RxMap<infer K, infer V> ? [K, V][] | T : T extends Atom<infer U> ? U | T : T; | ||
export declare function createSelection<T>(source: RxList<T>, currentValues: RxSet<T | number> | Atom<T | null | number>, autoResetValue?: boolean): RxList<[T, Atom<boolean>]>; | ||
export declare function createSelection<T>(source: RxList<T>, currentValues: SelectionArgs<T>[0], autoResetValue?: SelectionArgs<T>[1]): RxList<[T, Atom<boolean>]>; | ||
@@ -1138,2 +1138,3 @@ /** | ||
createSelection(currentValues: RxSet<T | number> | Atom<T | null | number>, autoResetValue?: boolean): RxList<[T, Atom<boolean>]>; | ||
createSelections(...args: [RxSet<T | number> | Atom<T | null | number>, boolean?][]): RxList<[T, ...Atom<boolean>[]]>; | ||
createIndexKeySelection(currentValues: RxSet<number> | Atom<null | number>, autoResetValue?: boolean): RxList<[T, Atom<boolean>]>; | ||
@@ -1244,2 +1245,4 @@ } | ||
declare type SelectionArgs<T> = [RxSet<T | number> | Atom<T | null | number>, boolean?]; | ||
export declare function setAutoUnitType(type: 'px' | 'rem' | 'em'): void; | ||
@@ -1246,0 +1249,0 @@ |
{ | ||
"name": "axii", | ||
"version": "2.6.72", | ||
"version": "2.6.73", | ||
"description": "", | ||
@@ -49,4 +49,4 @@ "main": "index.js", | ||
"peerDependencies": { | ||
"data0": "^1.7.35" | ||
"data0": "^1.7.37" | ||
} | ||
} |
516189
2962