atom.io 0.13.0 → 0.14.1
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/data/dist/index.cjs +1473 -52
- package/data/dist/index.cjs.map +1 -1
- package/data/dist/index.d.cts +315 -16
- package/data/dist/index.js +10 -267
- package/data/dist/index.js.map +1 -1
- package/data/package.json +5 -5
- package/data/src/join.ts +3 -3
- package/dist/chunk-5VJ77LZE.js +176 -0
- package/dist/chunk-5VJ77LZE.js.map +1 -0
- package/dist/chunk-CK7GNCU5.js +309 -0
- package/dist/chunk-CK7GNCU5.js.map +1 -0
- package/dist/chunk-KW7RA7IM.js +67 -0
- package/dist/chunk-KW7RA7IM.js.map +1 -0
- package/dist/chunk-LFXB7Y6M.js +68 -0
- package/dist/chunk-LFXB7Y6M.js.map +1 -0
- package/dist/chunk-NYCVSXQB.js +181 -0
- package/dist/chunk-NYCVSXQB.js.map +1 -0
- package/dist/chunk-TE3ZSTQ6.js +2516 -0
- package/dist/chunk-TE3ZSTQ6.js.map +1 -0
- package/dist/index.cjs +2250 -126
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +272 -25
- package/dist/index.js +1 -215
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/internal/dist/index.cjs +885 -684
- package/internal/dist/index.cjs.map +1 -1
- package/internal/dist/index.d.cts +230 -24
- package/internal/dist/index.js +1 -2171
- package/internal/dist/index.js.map +1 -1
- package/internal/package.json +5 -5
- package/internal/src/atom/create-atom.ts +3 -2
- package/internal/src/mutable/create-mutable-atom.ts +3 -2
- package/internal/src/mutable/tracker.ts +6 -4
- package/internal/src/selector/register-selector.ts +1 -1
- package/internal/src/selector/update-selector-atoms.ts +3 -3
- package/internal/src/subscribe/index.ts +3 -0
- package/internal/src/subscribe/recall-state.ts +0 -6
- package/internal/src/subscribe/subscribe-to-state.ts +47 -0
- package/internal/src/subscribe/subscribe-to-timeline.ts +28 -0
- package/internal/src/subscribe/subscribe-to-transaction.ts +33 -0
- package/introspection/dist/index.cjs +1618 -46
- package/introspection/dist/index.cjs.map +1 -1
- package/introspection/dist/index.d.cts +374 -4
- package/introspection/dist/index.js +2 -316
- package/introspection/dist/index.js.map +1 -1
- package/introspection/package.json +5 -5
- package/json/dist/index.cjs +1560 -8
- package/json/dist/index.cjs.map +1 -1
- package/json/dist/index.d.cts +371 -7
- package/json/dist/index.js +1 -76
- package/json/dist/index.js.map +1 -1
- package/json/package.json +5 -5
- package/package.json +10 -9
- package/react/dist/index.cjs +1638 -10
- package/react/dist/index.cjs.map +1 -1
- package/react/dist/index.d.cts +383 -5
- package/react/dist/index.js +2 -31
- package/react/dist/index.js.map +1 -1
- package/react/package.json +5 -5
- package/react/src/store-hooks.ts +52 -3
- package/react-devtools/dist/index.cjs +2268 -198
- package/react-devtools/dist/index.cjs.map +1 -1
- package/react-devtools/dist/index.css +2 -2
- package/react-devtools/dist/index.d.cts +148 -24
- package/react-devtools/dist/index.js +57 -297
- package/react-devtools/dist/index.js.map +1 -1
- package/react-devtools/package.json +5 -5
- package/realtime-client/dist/index.cjs +1585 -34
- package/realtime-client/dist/index.cjs.map +1 -1
- package/realtime-client/dist/index.d.cts +382 -11
- package/realtime-client/dist/index.js +2 -164
- package/realtime-client/dist/index.js.map +1 -1
- package/realtime-client/package.json +5 -5
- package/realtime-client/src/use-push.ts +4 -4
- package/realtime-client/src/use-server-action.ts +4 -4
- package/realtime-react/dist/index.cjs +1782 -35
- package/realtime-react/dist/index.cjs.map +1 -1
- package/realtime-react/dist/index.d.cts +49 -9
- package/realtime-react/dist/index.js +4 -66
- package/realtime-react/dist/index.js.map +1 -1
- package/realtime-react/package.json +5 -5
- package/realtime-server/dist/index.cjs +1627 -60
- package/realtime-server/dist/index.cjs.map +1 -1
- package/realtime-server/dist/index.d.cts +391 -11
- package/realtime-server/dist/index.js +59 -32
- package/realtime-server/dist/index.js.map +1 -1
- package/realtime-server/package.json +6 -6
- package/realtime-server/src/hook-composition/expose-family.ts +7 -3
- package/realtime-server/src/hook-composition/expose-mutable-family.ts +13 -5
- package/realtime-server/src/hook-composition/expose-mutable.ts +11 -3
- package/realtime-server/src/hook-composition/expose-single.ts +6 -2
- package/realtime-server/src/hook-composition/receive-transaction.ts +14 -5
- package/realtime-testing/dist/index.cjs +2352 -16
- package/realtime-testing/dist/index.cjs.map +1 -1
- package/realtime-testing/dist/index.d.cts +486 -3
- package/realtime-testing/dist/index.js +10 -31
- package/realtime-testing/dist/index.js.map +1 -1
- package/realtime-testing/package.json +5 -5
- package/src/subscribe.ts +37 -91
- package/transceivers/set-rtx/dist/index.cjs +31 -10
- package/transceivers/set-rtx/dist/index.cjs.map +1 -1
- package/transceivers/set-rtx/dist/index.d.cts +29 -3
- package/transceivers/set-rtx/dist/index.js +2 -3
- package/transceivers/set-rtx/dist/index.js.map +1 -1
- package/transceivers/set-rtx/package.json +6 -6
- package/data/dist/index.d.ts +0 -158
- package/data/dist/metafile-cjs.json +0 -1
- package/data/dist/metafile-esm.json +0 -1
- package/dist/index.d.ts +0 -243
- package/dist/metafile-esm.json +0 -1
- package/internal/dist/index.d.ts +0 -414
- package/internal/dist/metafile-cjs.json +0 -1
- package/internal/dist/metafile-esm.json +0 -1
- package/introspection/dist/index.d.ts +0 -24
- package/introspection/dist/metafile-cjs.json +0 -1
- package/introspection/dist/metafile-esm.json +0 -1
- package/json/dist/index.d.ts +0 -51
- package/json/dist/metafile-cjs.json +0 -1
- package/json/dist/metafile-esm.json +0 -1
- package/react/dist/index.d.ts +0 -16
- package/react/dist/metafile-cjs.json +0 -1
- package/react/dist/metafile-esm.json +0 -1
- package/react-devtools/dist/index.d.ts +0 -341
- package/react-devtools/dist/metafile-cjs.json +0 -1
- package/react-devtools/dist/metafile-esm.json +0 -1
- package/realtime-client/dist/index.d.ts +0 -21
- package/realtime-client/dist/metafile-cjs.json +0 -1
- package/realtime-client/dist/metafile-esm.json +0 -1
- package/realtime-react/dist/index.d.ts +0 -27
- package/realtime-react/dist/metafile-cjs.json +0 -1
- package/realtime-react/dist/metafile-esm.json +0 -1
- package/realtime-server/dist/index.d.ts +0 -25
- package/realtime-server/dist/metafile-cjs.json +0 -1
- package/realtime-server/dist/metafile-esm.json +0 -1
- package/realtime-testing/dist/index.d.ts +0 -49
- package/realtime-testing/dist/metafile-cjs.json +0 -1
- package/realtime-testing/dist/metafile-esm.json +0 -1
- package/transceivers/set-rtx/dist/index.d.ts +0 -40
- package/transceivers/set-rtx/dist/metafile-cjs.json +0 -1
- package/transceivers/set-rtx/dist/metafile-esm.json +0 -1
|
@@ -1,341 +0,0 @@
|
|
|
1
|
-
import * as atom_io from 'atom.io';
|
|
2
|
-
import { FamilyMetadata, ƒn, TransactionUpdate, MutableAtomToken, AtomToken, StateToken, TimelineUpdate, StateUpdate, AtomFamily, ReadonlySelectorFamily, SelectorFamily, ReadonlySelectorToken, SelectorToken, TransactionToken, TimelineToken, AtomIOLogger, Logger } from 'atom.io';
|
|
3
|
-
import { Json } from 'atom.io/json';
|
|
4
|
-
|
|
5
|
-
type ClassSignature = abstract new (...args: any) => any;
|
|
6
|
-
|
|
7
|
-
type RefinementStrategy = ClassSignature | Refinement$1<unknown, any>;
|
|
8
|
-
type Supported<Refine extends RefinementStrategy> = Refine extends Refinement$1<unknown, infer T> ? T : Refine extends ClassSignature ? InstanceType<Refine> : never;
|
|
9
|
-
type RefinementSupport = Record<string, RefinementStrategy>;
|
|
10
|
-
declare class Refinery<SupportedTypes extends RefinementSupport> {
|
|
11
|
-
supported: SupportedTypes;
|
|
12
|
-
constructor(supported: SupportedTypes);
|
|
13
|
-
refine(input: unknown): {
|
|
14
|
-
[K in keyof SupportedTypes]: {
|
|
15
|
-
type: K;
|
|
16
|
-
data: Supported<SupportedTypes[K]>;
|
|
17
|
-
};
|
|
18
|
-
}[keyof SupportedTypes] | null;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
interface Refinement$1<A, B extends A> {
|
|
22
|
-
(a: A): a is B;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
type PlainObject = Record<keyof any, unknown>;
|
|
26
|
-
|
|
27
|
-
declare class Subject<T> {
|
|
28
|
-
Subscriber: (value: T) => void;
|
|
29
|
-
subscribers: Map<string, this[`Subscriber`]>;
|
|
30
|
-
subscribe(key: string, subscriber: this[`Subscriber`]): () => void;
|
|
31
|
-
private unsubscribe;
|
|
32
|
-
next(value: T): void;
|
|
33
|
-
}
|
|
34
|
-
declare class StatefulSubject<T> extends Subject<T> {
|
|
35
|
-
state: T;
|
|
36
|
-
constructor(initialState: T);
|
|
37
|
-
next(value: T): void;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
type Selector<T> = {
|
|
41
|
-
key: string;
|
|
42
|
-
type: `selector`;
|
|
43
|
-
family?: FamilyMetadata;
|
|
44
|
-
install: (store: Store) => void;
|
|
45
|
-
subject: Subject<{
|
|
46
|
-
newValue: T;
|
|
47
|
-
oldValue: T;
|
|
48
|
-
}>;
|
|
49
|
-
get: () => T;
|
|
50
|
-
set: (newValue: T | ((oldValue: T) => T)) => void;
|
|
51
|
-
};
|
|
52
|
-
type ReadonlySelector<T> = {
|
|
53
|
-
key: string;
|
|
54
|
-
type: `readonly_selector`;
|
|
55
|
-
family?: FamilyMetadata;
|
|
56
|
-
install: (store: Store) => void;
|
|
57
|
-
subject: Subject<{
|
|
58
|
-
newValue: T;
|
|
59
|
-
oldValue: T;
|
|
60
|
-
}>;
|
|
61
|
-
get: () => T;
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
type Transaction<ƒ extends ƒn> = {
|
|
65
|
-
key: string;
|
|
66
|
-
type: `transaction`;
|
|
67
|
-
install: (store: Store) => void;
|
|
68
|
-
subject: Subject<TransactionUpdate<ƒ>>;
|
|
69
|
-
run: (...parameters: Parameters<ƒ>) => ReturnType<ƒ>;
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
type TransactionMeta<ƒ extends ƒn> = {
|
|
73
|
-
phase: `applying` | `building`;
|
|
74
|
-
time: number;
|
|
75
|
-
update: TransactionUpdate<ƒ>;
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
type primitive = boolean | number | string | null;
|
|
79
|
-
|
|
80
|
-
type Serializable = primitive | Readonly<{
|
|
81
|
-
[key: string]: Serializable;
|
|
82
|
-
}> | ReadonlyArray<Serializable>;
|
|
83
|
-
type Object$1<Key extends string = string, Value extends Serializable = Serializable> = Record<Key, Value>;
|
|
84
|
-
|
|
85
|
-
type Refinement<Unrefined, Refined extends Unrefined> = (value: Unrefined) => value is Refined;
|
|
86
|
-
type Cardinality = `1:1` | `1:n` | `n:n`;
|
|
87
|
-
|
|
88
|
-
interface JunctionEntries<Content extends Object$1 | null> extends Object$1 {
|
|
89
|
-
readonly relations: [string, string[]][];
|
|
90
|
-
readonly contents: [string, Content][];
|
|
91
|
-
}
|
|
92
|
-
interface JunctionSchema<ASide extends string, BSide extends string> extends Object$1 {
|
|
93
|
-
readonly between: [a: ASide, b: BSide];
|
|
94
|
-
readonly cardinality: Cardinality;
|
|
95
|
-
}
|
|
96
|
-
type BaseExternalStoreConfiguration = {
|
|
97
|
-
addRelation: (a: string, b: string) => void;
|
|
98
|
-
deleteRelation: (a: string, b: string) => void;
|
|
99
|
-
replaceRelationsSafely: (a: string, bs: string[]) => void;
|
|
100
|
-
replaceRelationsUnsafely: (a: string, bs: string[]) => void;
|
|
101
|
-
getRelatedKeys: (key: string) => Set<string> | undefined;
|
|
102
|
-
has: (a: string, b?: string) => boolean;
|
|
103
|
-
};
|
|
104
|
-
type ExternalStoreWithContentConfiguration<Content extends Object$1> = {
|
|
105
|
-
getContent: (contentKey: string) => Content | undefined;
|
|
106
|
-
setContent: (contentKey: string, content: Content) => void;
|
|
107
|
-
deleteContent: (contentKey: string) => void;
|
|
108
|
-
};
|
|
109
|
-
type Empty<Obj extends object> = {
|
|
110
|
-
[Key in keyof Obj]?: undefined;
|
|
111
|
-
};
|
|
112
|
-
type ExternalStoreConfiguration<Content extends Object$1 | null> = Content extends Object$1 ? BaseExternalStoreConfiguration & ExternalStoreWithContentConfiguration<Content> : BaseExternalStoreConfiguration & Empty<ExternalStoreWithContentConfiguration<Object$1>>;
|
|
113
|
-
type JunctionAdvancedConfiguration<Content extends Object$1 | null> = {
|
|
114
|
-
externalStore?: ExternalStoreConfiguration<Content>;
|
|
115
|
-
isContent?: Refinement<unknown, Content>;
|
|
116
|
-
makeContentKey?: (a: string, b: string) => string;
|
|
117
|
-
};
|
|
118
|
-
type JunctionJSON<ASide extends string, BSide extends string, Content extends Object$1 | null> = JunctionEntries<Content> & JunctionSchema<ASide, BSide>;
|
|
119
|
-
declare class Junction<const ASide extends string, const BSide extends string, const Content extends Object$1 | null = null> {
|
|
120
|
-
readonly a: ASide;
|
|
121
|
-
readonly b: BSide;
|
|
122
|
-
readonly cardinality: Cardinality;
|
|
123
|
-
readonly relations: Map<string, Set<string>>;
|
|
124
|
-
readonly contents: Map<string, Content>;
|
|
125
|
-
isContent: Refinement<unknown, Content> | null;
|
|
126
|
-
makeContentKey: (a: string, b: string) => string;
|
|
127
|
-
getRelatedKeys(key: string): Set<string> | undefined;
|
|
128
|
-
protected addRelation(a: string, b: string): void;
|
|
129
|
-
protected deleteRelation(a: string, b: string): void;
|
|
130
|
-
protected replaceRelationsUnsafely(a: string, bs: string[]): void;
|
|
131
|
-
protected replaceRelationsSafely(a: string, bs: string[]): void;
|
|
132
|
-
protected getContentInternal(contentKey: string): Content | undefined;
|
|
133
|
-
protected setContent(contentKey: string, content: Content): void;
|
|
134
|
-
protected deleteContent(contentKey: string): void;
|
|
135
|
-
constructor(data: JunctionSchema<ASide, BSide> & Partial<JunctionEntries<Content>>, config?: JunctionAdvancedConfiguration<Content>);
|
|
136
|
-
toJSON(): JunctionJSON<ASide, BSide, Content>;
|
|
137
|
-
set(a: string, ...rest: Content extends null ? [b: string] : [b: string, content: Content]): this;
|
|
138
|
-
set(relation: {
|
|
139
|
-
[Key in ASide | BSide]: string;
|
|
140
|
-
}, ...rest: Content extends null ? [] | [b?: undefined] : [content: Content]): this;
|
|
141
|
-
delete(a: string, b?: string): this;
|
|
142
|
-
delete(relation: Record<ASide | BSide, string> | Record<ASide, string> | Record<BSide, string>, b?: undefined): this;
|
|
143
|
-
getRelatedKey(key: string): string | undefined;
|
|
144
|
-
replaceRelations(a: string, relations: Content extends null ? string[] : Record<string, Content>, config?: {
|
|
145
|
-
reckless: boolean;
|
|
146
|
-
}): this;
|
|
147
|
-
getContent(a: string, b: string): Content | undefined;
|
|
148
|
-
getRelationEntries(input: Record<ASide, string> | Record<BSide, string>): [string, Content][];
|
|
149
|
-
has(a: string, b?: string): boolean;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
interface Lineage {
|
|
153
|
-
parent: typeof this | null;
|
|
154
|
-
child: typeof this | null;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
interface Transceiver<Signal extends Json.Serializable> {
|
|
158
|
-
do: (update: Signal) => void;
|
|
159
|
-
undo: (update: Signal) => void;
|
|
160
|
-
subscribe: (key: string, fn: (update: Signal) => void) => () => void;
|
|
161
|
-
cacheUpdateNumber: number;
|
|
162
|
-
getUpdateNumber: (update: Signal) => number;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* @internal Give the tracker a transceiver state and a store, and it will
|
|
167
|
-
* subscribe to the transceiver's inner value. When the inner value changes,
|
|
168
|
-
* the tracker will update its own state to reflect the change.
|
|
169
|
-
*/
|
|
170
|
-
declare class Tracker<Mutable extends Transceiver<any>> {
|
|
171
|
-
private Update;
|
|
172
|
-
private initializeState;
|
|
173
|
-
private unsubscribeFromInnerValue;
|
|
174
|
-
private observeCore;
|
|
175
|
-
private updateCore;
|
|
176
|
-
mutableState: MutableAtomToken<Mutable, Json.Serializable>;
|
|
177
|
-
latestUpdateState: AtomToken<typeof this.Update | null>;
|
|
178
|
-
constructor(mutableState: MutableAtomToken<Mutable, Json.Serializable>, store: Store);
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
interface MutableAtom<T> extends Atom<T> {
|
|
182
|
-
mutable: true;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
type OperationProgress = {
|
|
186
|
-
open: false;
|
|
187
|
-
} | {
|
|
188
|
-
open: true;
|
|
189
|
-
done: Set<string>;
|
|
190
|
-
prev: Map<string, any>;
|
|
191
|
-
time: number;
|
|
192
|
-
token: StateToken<any>;
|
|
193
|
-
};
|
|
194
|
-
|
|
195
|
-
type TimelineAtomUpdate = StateUpdate<unknown> & {
|
|
196
|
-
key: string;
|
|
197
|
-
type: `atom_update`;
|
|
198
|
-
timestamp: number;
|
|
199
|
-
family?: FamilyMetadata;
|
|
200
|
-
};
|
|
201
|
-
type TimelineSelectorUpdate = {
|
|
202
|
-
key: string;
|
|
203
|
-
type: `selector_update`;
|
|
204
|
-
timestamp: number;
|
|
205
|
-
atomUpdates: Omit<TimelineAtomUpdate, `timestamp`>[];
|
|
206
|
-
};
|
|
207
|
-
type TimelineTransactionUpdate = TransactionUpdate<ƒn> & {
|
|
208
|
-
key: string;
|
|
209
|
-
type: `transaction_update`;
|
|
210
|
-
timestamp: number;
|
|
211
|
-
};
|
|
212
|
-
type Timeline = {
|
|
213
|
-
type: `timeline`;
|
|
214
|
-
key: string;
|
|
215
|
-
at: number;
|
|
216
|
-
shouldCapture?: (update: TimelineUpdate, timeline: Timeline) => boolean;
|
|
217
|
-
timeTraveling: `into_future` | `into_past` | null;
|
|
218
|
-
history: TimelineUpdate[];
|
|
219
|
-
selectorTime: number | null;
|
|
220
|
-
transactionKey: string | null;
|
|
221
|
-
install: (store: Store) => void;
|
|
222
|
-
subject: Subject<TimelineAtomUpdate | TimelineSelectorUpdate | TimelineTransactionUpdate | `redo` | `undo`>;
|
|
223
|
-
};
|
|
224
|
-
|
|
225
|
-
declare class Store implements Lineage {
|
|
226
|
-
parent: Store | null;
|
|
227
|
-
child: Store | null;
|
|
228
|
-
valueMap: Map<string, any>;
|
|
229
|
-
atoms: Map<string, Atom<any> | MutableAtom<any>>;
|
|
230
|
-
selectors: Map<string, Selector<any>>;
|
|
231
|
-
readonlySelectors: Map<string, ReadonlySelector<any>>;
|
|
232
|
-
trackers: Map<string, Tracker<Transceiver<any>>>;
|
|
233
|
-
families: Map<string, AtomFamily<any, any> | ReadonlySelectorFamily<any, any> | SelectorFamily<any, any>>;
|
|
234
|
-
timelines: Map<string, Timeline>;
|
|
235
|
-
transactions: Map<string, Transaction<ƒn>>;
|
|
236
|
-
atomsThatAreDefault: Set<string>;
|
|
237
|
-
timelineAtoms: Junction<"timelineKey", "atomKey", null>;
|
|
238
|
-
selectorAtoms: Junction<"selectorKey", "atomKey", null>;
|
|
239
|
-
selectorGraph: Junction<"upstreamSelectorKey", "downstreamSelectorKey", {
|
|
240
|
-
source: string;
|
|
241
|
-
}>;
|
|
242
|
-
subject: {
|
|
243
|
-
atomCreation: Subject<AtomToken<unknown>>;
|
|
244
|
-
selectorCreation: Subject<ReadonlySelectorToken<unknown> | SelectorToken<unknown>>;
|
|
245
|
-
transactionCreation: Subject<TransactionToken<ƒn>>;
|
|
246
|
-
timelineCreation: Subject<TimelineToken>;
|
|
247
|
-
transactionApplying: StatefulSubject<TransactionMeta<ƒn> | null>;
|
|
248
|
-
operationStatus: Subject<OperationProgress>;
|
|
249
|
-
};
|
|
250
|
-
operation: OperationProgress;
|
|
251
|
-
transactionMeta: TransactionMeta<ƒn> | null;
|
|
252
|
-
config: {
|
|
253
|
-
name: string;
|
|
254
|
-
};
|
|
255
|
-
loggers: AtomIOLogger[];
|
|
256
|
-
logger: Logger;
|
|
257
|
-
constructor(name: string, store?: Store | null);
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
type Atom<T> = {
|
|
261
|
-
key: string;
|
|
262
|
-
type: `atom`;
|
|
263
|
-
family?: FamilyMetadata;
|
|
264
|
-
install: (store: Store) => void;
|
|
265
|
-
subject: Subject<{
|
|
266
|
-
newValue: T;
|
|
267
|
-
oldValue: T;
|
|
268
|
-
}>;
|
|
269
|
-
default: T | (() => T);
|
|
270
|
-
cleanup?: () => void;
|
|
271
|
-
};
|
|
272
|
-
|
|
273
|
-
type AtomTokenIndex = StateTokenIndex<AtomToken<unknown>>;
|
|
274
|
-
|
|
275
|
-
type FamilyNode<Token extends AtomToken<unknown> | ReadonlySelectorToken<unknown> | SelectorToken<unknown>> = {
|
|
276
|
-
key: string;
|
|
277
|
-
familyMembers: Record<string, Token>;
|
|
278
|
-
};
|
|
279
|
-
type StateTokenIndex<Token extends AtomToken<unknown> | ReadonlySelectorToken<unknown> | SelectorToken<unknown>> = Record<string, FamilyNode<Token> | Token>;
|
|
280
|
-
|
|
281
|
-
type SelectorTokenIndex = StateTokenIndex<ReadonlySelectorToken<unknown> | SelectorToken<unknown>>;
|
|
282
|
-
|
|
283
|
-
type Delta = {
|
|
284
|
-
summary: string;
|
|
285
|
-
added?: [path: string, addedStringifiedValue: string][];
|
|
286
|
-
removed?: [path: string, removedStringifiedValue: string][];
|
|
287
|
-
changed?: [path: string, delta: Delta][];
|
|
288
|
-
};
|
|
289
|
-
type Diff<T> = (a: T, b: T) => Delta;
|
|
290
|
-
type DiffTree<T> = (a: T, b: T, recurse: Differ<any, any>[`diff`]) => Delta;
|
|
291
|
-
declare class Differ<Leaf extends Record<string, any>, Tree extends Record<string, any>> {
|
|
292
|
-
leafRefinery: Refinery<Leaf>;
|
|
293
|
-
treeRefinery: Refinery<Tree>;
|
|
294
|
-
leafDiffers: {
|
|
295
|
-
[KL in keyof Leaf]: Diff<Supported<Leaf[KL]>>;
|
|
296
|
-
};
|
|
297
|
-
treeDiffers: {
|
|
298
|
-
[KT in keyof Tree]: DiffTree<Supported<Tree[KT]>>;
|
|
299
|
-
};
|
|
300
|
-
constructor(leafRefinery: Refinery<Leaf>, treeRefinery: Refinery<Tree>, diffFunctions: {
|
|
301
|
-
[KT in keyof Tree]: DiffTree<Supported<Tree[KT]>>;
|
|
302
|
-
} & {
|
|
303
|
-
[KL in keyof Leaf]: Diff<Supported<Leaf[KL]>>;
|
|
304
|
-
});
|
|
305
|
-
diff(a: unknown, b: unknown): Delta;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
declare const AtomIODevtools: () => JSX.Element;
|
|
309
|
-
|
|
310
|
-
declare const atomIndex: atom_io.ReadonlySelectorToken<AtomTokenIndex>;
|
|
311
|
-
declare const selectorIndex: atom_io.ReadonlySelectorToken<SelectorTokenIndex>;
|
|
312
|
-
declare const transactionIndex: atom_io.ReadonlySelectorToken<atom_io.TransactionToken<atom_io.ƒn>[]>;
|
|
313
|
-
declare const findTransactionLogState: atom_io.ReadonlySelectorFamily<atom_io.TransactionUpdate<atom_io.ƒn>[]>;
|
|
314
|
-
declare const timelineIndex: atom_io.ReadonlySelectorToken<atom_io.TimelineToken[]>;
|
|
315
|
-
declare const findTimelineState: atom_io.ReadonlySelectorFamily<Timeline>;
|
|
316
|
-
declare const devtoolsAreOpenState: atom_io.AtomToken<boolean>;
|
|
317
|
-
type DevtoolsView = `atoms` | `selectors` | `timelines` | `transactions`;
|
|
318
|
-
declare const devtoolsViewSelectionState: atom_io.AtomToken<DevtoolsView>;
|
|
319
|
-
declare const devtoolsViewOptionsState: atom_io.AtomToken<DevtoolsView[]>;
|
|
320
|
-
declare const findViewIsOpenState: atom_io.AtomFamily<boolean, string>;
|
|
321
|
-
declare const primitiveRefinery: Refinery<{
|
|
322
|
-
number: (input: unknown) => input is number;
|
|
323
|
-
string: (input: unknown) => input is string;
|
|
324
|
-
boolean: (input: unknown) => input is boolean;
|
|
325
|
-
null: (input: unknown) => input is null;
|
|
326
|
-
}>;
|
|
327
|
-
declare const jsonTreeRefinery: Refinery<{
|
|
328
|
-
object: (input: unknown) => input is PlainObject;
|
|
329
|
-
array: (input: unknown) => input is unknown[];
|
|
330
|
-
}>;
|
|
331
|
-
declare const prettyJson: Differ<{
|
|
332
|
-
number: (input: unknown) => input is number;
|
|
333
|
-
string: (input: unknown) => input is string;
|
|
334
|
-
boolean: (input: unknown) => input is boolean;
|
|
335
|
-
null: (input: unknown) => input is null;
|
|
336
|
-
}, {
|
|
337
|
-
object: (input: unknown) => input is PlainObject;
|
|
338
|
-
array: (input: unknown) => input is unknown[];
|
|
339
|
-
}>;
|
|
340
|
-
|
|
341
|
-
export { AtomIODevtools, atomIndex, devtoolsAreOpenState, devtoolsViewOptionsState, devtoolsViewSelectionState, findTimelineState, findTransactionLogState, findViewIsOpenState, jsonTreeRefinery, prettyJson, primitiveRefinery, selectorIndex, timelineIndex, transactionIndex };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"inputs":{"../__unstable__/web-effects/src/storage.ts":{"bytes":721,"imports":[],"format":"esm"},"../__unstable__/web-effects/src/index.ts":{"bytes":26,"imports":[{"path":"../__unstable__/web-effects/src/storage.ts","kind":"import-statement","original":"./storage"}],"format":"esm"},"../../anvl/src/function/curry.ts":{"bytes":3368,"imports":[],"format":"esm"},"../../anvl/src/function/pipe.ts":{"bytes":6357,"imports":[],"format":"esm"},"../../anvl/src/function/index.ts":{"bytes":1737,"imports":[{"path":"../../anvl/src/function/curry.ts","kind":"import-statement","original":"./curry"},{"path":"../../anvl/src/function/pipe.ts","kind":"import-statement","original":"./pipe"}],"format":"esm"},"../../anvl/src/array/match.ts":{"bytes":696,"imports":[],"format":"esm"},"../../anvl/src/array/venn.ts":{"bytes":1033,"imports":[],"format":"esm"},"../../anvl/src/array/index.ts":{"bytes":2489,"imports":[{"path":"../../anvl/src/array/match.ts","kind":"import-statement","original":"./match"},{"path":"../../anvl/src/array/venn.ts","kind":"import-statement","original":"./venn"}],"format":"esm"},"../../anvl/src/nullish/index.ts":{"bytes":941,"imports":[],"format":"esm"},"../../anvl/src/object/access.ts":{"bytes":381,"imports":[],"format":"esm"},"../../anvl/src/object/entries.ts":{"bytes":348,"imports":[],"format":"esm"},"../../anvl/src/object/mapObject.ts":{"bytes":496,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/object/entries.ts","kind":"import-statement","original":"./entries"}],"format":"esm"},"../../anvl/src/object/refinement.ts":{"bytes":2473,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/nullish/index.ts","kind":"import-statement","original":"../nullish"},{"path":"../../anvl/src/object/access.ts","kind":"import-statement","original":"./access"},{"path":"../../anvl/src/object/entries.ts","kind":"import-statement","original":"./entries"},{"path":"../../anvl/src/object/mapObject.ts","kind":"import-statement","original":"./mapObject"}],"format":"esm"},"../../anvl/src/object/sprawl.ts":{"bytes":1069,"imports":[{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"./refinement"}],"format":"esm"},"../../anvl/src/object/deepMob.ts":{"bytes":1322,"imports":[{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/object/sprawl.ts","kind":"import-statement","original":"./sprawl"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/object/modify.ts":{"bytes":745,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/object/patch.ts":{"bytes":940,"imports":[{"path":"../../anvl/src/object/access.ts","kind":"import-statement","original":"./access"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"./refinement"},{"path":"../../anvl/src/object/sprawl.ts","kind":"import-statement","original":"./sprawl"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/object/index.ts":{"bytes":3846,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/nullish/index.ts","kind":"import-statement","original":"../nullish"},{"path":"../../anvl/src/object/deepMob.ts","kind":"import-statement","original":"./deepMob"},{"path":"../../anvl/src/object/entries.ts","kind":"import-statement","original":"./entries"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"./refinement"},{"path":"../../anvl/src/object/access.ts","kind":"import-statement","original":"./access"},{"path":"../../anvl/src/object/deepMob.ts","kind":"import-statement","original":"./deepMob"},{"path":"../../anvl/src/object/entries.ts","kind":"import-statement","original":"./entries"},{"path":"../../anvl/src/object/mapObject.ts","kind":"import-statement","original":"./mapObject"},{"path":"../../anvl/src/object/modify.ts","kind":"import-statement","original":"./modify"},{"path":"../../anvl/src/object/patch.ts","kind":"import-statement","original":"./patch"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"./refinement"},{"path":"../../anvl/src/object/sprawl.ts","kind":"import-statement","original":"./sprawl"}],"format":"esm"},"../../anvl/src/refinement/refinery.ts":{"bytes":1896,"imports":[{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"}],"format":"esm"},"../../anvl/src/tree/differ.ts":{"bytes":4225,"imports":[{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"},{"path":"../../anvl/src/refinement/refinery.ts","kind":"import-statement","original":"../refinement/refinery"}],"format":"esm"},"../../anvl/src/json/json-interface.ts":{"bytes":340,"imports":[],"format":"esm"},"../../anvl/src/json/index.ts":{"bytes":980,"imports":[{"path":"../../anvl/src/json/json-interface.ts","kind":"import-statement","original":"./json-interface"}],"format":"esm"},"../../anvl/src/primitive/index.ts":{"bytes":597,"imports":[],"format":"esm"},"../../anvl/src/refinement/refine-json.ts":{"bytes":1701,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/json/index.ts","kind":"import-statement","original":"../json"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"},{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"}],"format":"esm"},"src/Button.tsx":{"bytes":474,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/refinement/refined.ts":{"bytes":1094,"imports":[],"format":"esm"},"../../anvl/src/refinement/refinement.ts":{"bytes":64,"imports":[],"format":"esm"},"../../anvl/src/refinement/can-exist.ts":{"bytes":59,"imports":[],"format":"esm"},"../../anvl/src/refinement/cannot-exist.ts":{"bytes":61,"imports":[],"format":"esm"},"../../anvl/src/refinement/is-class.ts":{"bytes":224,"imports":[],"format":"esm"},"../../anvl/src/refinement/is-union.ts":{"bytes":1275,"imports":[{"path":"../../anvl/src/refinement/cannot-exist.ts","kind":"import-statement","original":"./cannot-exist"}],"format":"esm"},"../../anvl/src/refinement/is-intersection.ts":{"bytes":1294,"imports":[{"path":"../../anvl/src/refinement/can-exist.ts","kind":"import-statement","original":"./can-exist"}],"format":"esm"},"../../anvl/src/refinement/index.ts":{"bytes":1072,"imports":[{"path":"../../anvl/src/refinement/refined.ts","kind":"import-statement","original":"./refined"},{"path":"../../anvl/src/refinement/refinery.ts","kind":"import-statement","original":"./refinery"},{"path":"../../anvl/src/refinement/refinement.ts","kind":"import-statement","original":"./refinement"},{"path":"../../anvl/src/refinement/can-exist.ts","kind":"import-statement","original":"./can-exist"},{"path":"../../anvl/src/refinement/cannot-exist.ts","kind":"import-statement","original":"./cannot-exist"},{"path":"../../anvl/src/refinement/is-class.ts","kind":"import-statement","original":"./is-class"},{"path":"../../anvl/src/refinement/is-union.ts","kind":"import-statement","original":"./is-union"},{"path":"../../anvl/src/refinement/is-intersection.ts","kind":"import-statement","original":"./is-intersection"}],"format":"esm"},"../../anvl/src/join/core-relation-data.ts":{"bytes":1653,"imports":[{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"../object/refinement"},{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"},{"path":"../../anvl/src/refinement/index.ts","kind":"import-statement","original":"../refinement"}],"format":"esm"},"../../anvl/src/join/get-related-ids.ts":{"bytes":693,"imports":[],"format":"esm"},"../../anvl/src/join/make-json-interface.ts":{"bytes":763,"imports":[{"path":"../../anvl/src/join/index.ts","kind":"import-statement","original":"."}],"format":"esm"},"../../anvl/src/join/relation-record.ts":{"bytes":754,"imports":[{"path":"../../anvl/src/join/get-related-ids.ts","kind":"import-statement","original":"./get-related-ids"},{"path":"../../anvl/src/join/relation-contents.ts","kind":"import-statement","original":"./relation-contents"}],"format":"esm"},"../../anvl/src/string/split.ts":{"bytes":96,"imports":[],"format":"esm"},"../../anvl/src/join/remove-relation.ts":{"bytes":2395,"imports":[{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"},{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/array/venn.ts","kind":"import-statement","original":"../array/venn"},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"},{"path":"../../anvl/src/object/entries.ts","kind":"import-statement","original":"../object/entries"},{"path":"../../anvl/src/string/split.ts","kind":"import-statement","original":"../string/split"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/join/set-relation.ts":{"bytes":2985,"imports":[{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"},{"path":"../../anvl/src/join/get-related-ids.ts","kind":"import-statement","original":"./get-related-ids"},{"path":"../../anvl/src/join/relation-contents.ts","kind":"import-statement","original":"./relation-contents"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/join/relation-contents.ts":{"bytes":3068,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"../object/refinement"},{"path":"../../anvl/src/join/get-related-ids.ts","kind":"import-statement","original":"./get-related-ids"},{"path":"../../anvl/src/join/relation-record.ts","kind":"import-statement","original":"./relation-record"},{"path":"../../anvl/src/join/remove-relation.ts","kind":"import-statement","original":"./remove-relation"},{"path":"../../anvl/src/join/set-relation.ts","kind":"import-statement","original":"./set-relation"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/join/index.ts":{"bytes":3681,"imports":[{"path":"../../anvl/src/join/core-relation-data.ts","kind":"import-statement","original":"./core-relation-data"},{"path":"../../anvl/src/join/get-related-ids.ts","kind":"import-statement","original":"./get-related-ids"},{"path":"../../anvl/src/join/make-json-interface.ts","kind":"import-statement","original":"./make-json-interface"},{"path":"../../anvl/src/join/relation-contents.ts","kind":"import-statement","original":"./relation-contents"},{"path":"../../anvl/src/join/relation-record.ts","kind":"import-statement","original":"./relation-record"},{"path":"../../anvl/src/join/remove-relation.ts","kind":"import-statement","original":"./remove-relation"},{"path":"../../anvl/src/join/set-relation.ts","kind":"import-statement","original":"./set-relation"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-elastic-input/ElasticInput.tsx":{"bytes":1736,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/number/clamp.ts":{"bytes":179,"imports":[],"format":"esm"},"../../anvl/src/number/wrap.ts":{"bytes":226,"imports":[],"format":"esm"},"../../anvl/src/number/index.ts":{"bytes":47,"imports":[{"path":"../../anvl/src/number/clamp.ts","kind":"import-statement","original":"./clamp"},{"path":"../../anvl/src/number/wrap.ts","kind":"import-statement","original":"./wrap"}],"format":"esm"},"../../hamr/src/react-elastic-input/NumberInput.tsx":{"bytes":5419,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../../anvl/src/number/index.ts","kind":"import-statement","original":"~/packages/anvl/src/number"},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"."},{"path":"<runtime>","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-elastic-input/TextInput.tsx":{"bytes":890,"imports":[{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"."},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-elastic-input/index.ts":{"bytes":89,"imports":[{"path":"../../hamr/src/react-elastic-input/ElasticInput.tsx","kind":"import-statement","original":"./ElasticInput"},{"path":"../../hamr/src/react-elastic-input/NumberInput.tsx","kind":"import-statement","original":"./NumberInput"},{"path":"../../hamr/src/react-elastic-input/TextInput.tsx","kind":"import-statement","original":"./TextInput"}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/non-json.tsx":{"bytes":415,"imports":[{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"../../react-elastic-input"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/json-editor-internal.tsx":{"bytes":3118,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/refinement/refine-json.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/refine-json"},{"path":"../../hamr/src/react-json-editor/index.ts","kind":"import-statement","original":"."},{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"../react-elastic-input"},{"path":"../../hamr/src/react-json-editor/editors-by-type/non-json.tsx","kind":"import-statement","original":"./editors-by-type/non-json"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/utilities/array-elements.ts":{"bytes":467,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/array-editor.tsx":{"bytes":893,"imports":[{"path":"../../hamr/src/react-json-editor/json-editor-internal.tsx","kind":"import-statement","original":"../json-editor-internal"},{"path":"../../hamr/src/react-json-editor/editors-by-type/utilities/array-elements.ts","kind":"import-statement","original":"./utilities/array-elements"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/json-schema/integer.ts":{"bytes":3080,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"}],"format":"esm"},"../../anvl/src/json-schema/refs.ts":{"bytes":1920,"imports":[{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"../object"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"../object/refinement"},{"path":"../../anvl/src/json-schema/integer.ts","kind":"import-statement","original":"./integer"},{"path":"../../anvl/src/json-schema/json-schema.ts","kind":"import-statement","original":"./json-schema"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/json-schema/string-formats.ts":{"bytes":3571,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"}],"format":"esm"},"../../anvl/src/json-schema/json-schema.ts":{"bytes":10525,"imports":[{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"../array"},{"path":"../../anvl/src/json/index.ts","kind":"import-statement","original":"../json"},{"path":"../../anvl/src/nullish/index.ts","kind":"import-statement","original":"../nullish"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"../object/refinement"},{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"../primitive"},{"path":"../../anvl/src/refinement/index.ts","kind":"import-statement","original":"../refinement"},{"path":"../../anvl/src/json-schema/integer.ts","kind":"import-statement","original":"./integer"},{"path":"../../anvl/src/json-schema/refs.ts","kind":"import-statement","original":"./refs"},{"path":"../../anvl/src/json-schema/string-formats.ts","kind":"import-statement","original":"./string-formats"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/json-schema/path-into.ts":{"bytes":659,"imports":[],"format":"esm"},"../../anvl/src/json-schema/find-sub-schema.ts":{"bytes":1361,"imports":[{"path":"../../anvl/src/json-schema/json-schema.ts","kind":"import-statement","original":"./json-schema"},{"path":"../../anvl/src/json-schema/path-into.ts","kind":"import-statement","original":"./path-into"},{"path":"../../anvl/src/json-schema/refs.ts","kind":"import-statement","original":"./refs"}],"format":"esm"},"../../anvl/src/json/cast-json.ts":{"bytes":2123,"imports":[],"format":"esm"},"../../anvl/src/refinement/smart-cast-json.ts":{"bytes":2462,"imports":[{"path":"../../anvl/src/json/cast-json.ts","kind":"import-statement","original":"../json/cast-json"},{"path":"../../anvl/src/refinement/refine-json.ts","kind":"import-statement","original":"./refine-json"}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/utilities/object-properties.ts":{"bytes":3311,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/json/index.ts","kind":"import-statement","original":"~/packages/anvl/src/json"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"~/packages/anvl/src/object"},{"path":"../../anvl/src/refinement/smart-cast-json.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/smart-cast-json"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/object-editor.tsx":{"bytes":4651,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/json-schema/find-sub-schema.ts","kind":"import-statement","original":"~/packages/anvl/src/json-schema/find-sub-schema"},{"path":"../../anvl/src/json-schema/json-schema.ts","kind":"import-statement","original":"~/packages/anvl/src/json-schema/json-schema"},{"path":"../../anvl/src/object/refinement.ts","kind":"import-statement","original":"~/packages/anvl/src/object/refinement"},{"path":"../../anvl/src/refinement/index.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement"},{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"../../react-elastic-input"},{"path":"../../hamr/src/react-json-editor/json-editor-internal.tsx","kind":"import-statement","original":"../json-editor-internal"},{"path":"../../hamr/src/react-json-editor/editors-by-type/utilities/object-properties.ts","kind":"import-statement","original":"./utilities/object-properties"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/editors-by-type/primitive-editors.tsx":{"bytes":1286,"imports":[{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"../../react-elastic-input"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-error-boundary/DefaultFallback.tsx":{"bytes":1135,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-error-boundary/ReactErrorBoundary.tsx":{"bytes":2093,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../../hamr/src/react-error-boundary/DefaultFallback.tsx","kind":"import-statement","original":"./DefaultFallback"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-error-boundary/test-utils.ts":{"bytes":246,"imports":[],"format":"esm"},"../../hamr/src/react-error-boundary/index.ts":{"bytes":100,"imports":[{"path":"../../hamr/src/react-error-boundary/ReactErrorBoundary.tsx","kind":"import-statement","original":"./ReactErrorBoundary"},{"path":"../../hamr/src/react-error-boundary/DefaultFallback.tsx","kind":"import-statement","original":"./DefaultFallback"},{"path":"../../hamr/src/react-error-boundary/test-utils.ts","kind":"import-statement","original":"./test-utils"}],"format":"esm"},"../../hamr/src/react-json-editor/default-components.tsx":{"bytes":3220,"imports":[{"path":"../../hamr/src/react-error-boundary/index.ts","kind":"import-statement","original":"../react-error-boundary"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/developer-interface.tsx":{"bytes":2254,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../../hamr/src/react-json-editor/default-components.tsx","kind":"import-statement","original":"./default-components"},{"path":"../../hamr/src/react-json-editor/editors-by-type/array-editor.tsx","kind":"import-statement","original":"./editors-by-type/array-editor"},{"path":"../../hamr/src/react-json-editor/editors-by-type/object-editor.tsx","kind":"import-statement","original":"./editors-by-type/object-editor"},{"path":"../../hamr/src/react-json-editor/editors-by-type/primitive-editors.tsx","kind":"import-statement","original":"./editors-by-type/primitive-editors"},{"path":"../../hamr/src/react-json-editor/json-editor-internal.tsx","kind":"import-statement","original":"./json-editor-internal"},{"path":"<runtime>","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-json-editor/index.ts":{"bytes":705,"imports":[{"path":"../../hamr/src/react-json-editor/editors-by-type/array-editor.tsx","kind":"import-statement","original":"./editors-by-type/array-editor"},{"path":"../../hamr/src/react-json-editor/editors-by-type/object-editor.tsx","kind":"import-statement","original":"./editors-by-type/object-editor"},{"path":"../../hamr/src/react-json-editor/editors-by-type/primitive-editors.tsx","kind":"import-statement","original":"./editors-by-type/primitive-editors"},{"path":"../../hamr/src/react-json-editor/default-components.tsx","kind":"import-statement","original":"./default-components"},{"path":"../../hamr/src/react-json-editor/developer-interface.tsx","kind":"import-statement","original":"./developer-interface"}],"format":"esm"},"../../hamr/src/react-data-designer/DataDesigner.tsx":{"bytes":1234,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../react-id","kind":"import-statement","external":true},{"path":"../../hamr/src/react-json-editor/index.ts","kind":"import-statement","original":"../react-json-editor"},{"path":"<runtime>","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../anvl/src/string/string-to-color.ts":{"bytes":436,"imports":[],"format":"esm"},"../../luum/src/constants/index.ts":{"bytes":292,"imports":[],"format":"esm"},"../../luum/src/constants/filters.ts":{"bytes":368,"imports":[],"format":"esm"},"../../luum/src/constants/schemes.ts":{"bytes":2802,"imports":[],"format":"esm"},"../../luum/src/export/channelsToHex.ts":{"bytes":341,"imports":[],"format":"esm"},"../../luum/src/import/hueToRelativeChannels.ts":{"bytes":4439,"imports":[{"path":"../../anvl/src/number/index.ts","kind":"import-statement","original":"~/packages/anvl/src/number"}],"format":"esm"},"../../luum/src/solveFor/hueFromChannels.ts":{"bytes":525,"imports":[],"format":"esm"},"../../luum/src/solveFor/lumFromChannels.ts":{"bytes":389,"imports":[{"path":"../../luum/src/constants/index.ts","kind":"import-statement","original":"../constants"}],"format":"esm"},"../../luum/src/solveFor/maxSatForHueInFilter.ts":{"bytes":1202,"imports":[{"path":"../../anvl/src/number/index.ts","kind":"import-statement","original":"~/packages/anvl/src/number"}],"format":"esm"},"../../luum/src/solveFor/satFromChannels.ts":{"bytes":259,"imports":[],"format":"esm"},"../../luum/src/solveFor/specificLumFromHue.ts":{"bytes":433,"imports":[{"path":"../../luum/src/constants/index.ts","kind":"import-statement","original":"../constants"},{"path":"../../luum/src/import/hueToRelativeChannels.ts","kind":"import-statement","original":"../import/hueToRelativeChannels"}],"format":"esm"},"../../luum/src/solveFor/index.ts":{"bytes":366,"imports":[{"path":"../../luum/src/solveFor/hueFromChannels.ts","kind":"import-statement","original":"./hueFromChannels"},{"path":"../../luum/src/solveFor/lumFromChannels.ts","kind":"import-statement","original":"./lumFromChannels"},{"path":"../../luum/src/solveFor/maxSatForHueInFilter.ts","kind":"import-statement","original":"./maxSatForHueInFilter"},{"path":"../../luum/src/solveFor/satFromChannels.ts","kind":"import-statement","original":"./satFromChannels"},{"path":"../../luum/src/solveFor/specificLumFromHue.ts","kind":"import-statement","original":"./specificLumFromHue"}],"format":"esm"},"../../luum/src/export/specToChannelsFixLimit.ts":{"bytes":3105,"imports":[{"path":"../../anvl/src/number/index.ts","kind":"import-statement","original":"~/packages/anvl/src/number"},{"path":"../../luum/src/constants/filters.ts","kind":"import-statement","original":"../constants/filters"},{"path":"../../luum/src/import/hueToRelativeChannels.ts","kind":"import-statement","original":"../import/hueToRelativeChannels"},{"path":"../../luum/src/solveFor/index.ts","kind":"import-statement","original":"../solveFor"}],"format":"esm"},"../../luum/src/export/specToHexFixLimit.ts":{"bytes":674,"imports":[{"path":"../../luum/src/export/channelsToHex.ts","kind":"import-statement","original":"./channelsToHex"},{"path":"../../luum/src/export/specToChannelsFixLimit.ts","kind":"import-statement","original":"./specToChannelsFixLimit"}],"format":"esm"},"../../luum/src/export/specToHex.ts":{"bytes":317,"imports":[{"path":"../../luum/src/export/specToHexFixLimit.ts","kind":"import-statement","original":"./specToHexFixLimit"}],"format":"esm"},"../../luum/src/export/index.ts":{"bytes":129,"imports":[{"path":"../../luum/src/export/specToHex.ts","kind":"import-statement","original":"./specToHex"},{"path":"../../luum/src/export/specToHexFixLimit.ts","kind":"import-statement","original":"./specToHexFixLimit"}],"format":"esm"},"../../luum/src/identify/hue.ts":{"bytes":997,"imports":[{"path":"../../anvl/src/number/index.ts","kind":"import-statement","original":"~/packages/anvl/src/number"}],"format":"esm"},"../../luum/src/identify/index.ts":{"bytes":22,"imports":[{"path":"../../luum/src/identify/hue.ts","kind":"import-statement","original":"./hue"}],"format":"esm"},"../../luum/src/import/channelsToSpec.ts":{"bytes":391,"imports":[{"path":"../../luum/src/solveFor/index.ts","kind":"import-statement","original":"../solveFor"}],"format":"esm"},"../../luum/src/import/normalizeHex.ts":{"bytes":747,"imports":[],"format":"esm"},"../../luum/src/import/hexToChannels.ts":{"bytes":297,"imports":[{"path":"../../luum/src/import/normalizeHex.ts","kind":"import-statement","original":"./normalizeHex"}],"format":"esm"},"../../luum/src/import/hexToSpec.ts":{"bytes":312,"imports":[{"path":"../../luum/src/import/channelsToSpec.ts","kind":"import-statement","original":"./channelsToSpec"},{"path":"../../luum/src/import/hexToChannels.ts","kind":"import-statement","original":"./hexToChannels"}],"format":"esm"},"../../luum/src/import/index.ts":{"bytes":324,"imports":[{"path":"../../luum/src/import/channelsToSpec.ts","kind":"import-statement","original":"./channelsToSpec"},{"path":"../../luum/src/import/hexToChannels.ts","kind":"import-statement","original":"./hexToChannels"},{"path":"../../luum/src/import/hexToSpec.ts","kind":"import-statement","original":"./hexToSpec"},{"path":"../../luum/src/import/hueToRelativeChannels.ts","kind":"import-statement","original":"./hueToRelativeChannels"},{"path":"../../luum/src/import/normalizeHex.ts","kind":"import-statement","original":"./normalizeHex"}],"format":"esm"},"../../luum/src/mixers/lum.ts":{"bytes":1177,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/number/clamp.ts","kind":"import-statement","original":"~/packages/anvl/src/number/clamp"},{"path":"../../luum/src/index.ts","kind":"import-statement","original":".."},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../luum/src/mixers/sat.ts":{"bytes":887,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/number/clamp.ts","kind":"import-statement","original":"~/packages/anvl/src/number/clamp"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../luum/src/luum.ts":{"bytes":1204,"imports":[{"path":"../../luum/src/index.ts","kind":"import-statement","original":"~/packages/luum/src"},{"path":"../../luum/src/mixers/lum.ts","kind":"import-statement","original":"./mixers/lum"},{"path":"../../luum/src/mixers/sat.ts","kind":"import-statement","original":"./mixers/sat"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../luum/src/mixers/hue.ts":{"bytes":815,"imports":[{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/number/wrap.ts","kind":"import-statement","original":"~/packages/anvl/src/number/wrap"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../luum/src/mixers/contrast.ts":{"bytes":765,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../luum/src/mixers/index.ts":{"bytes":250,"imports":[{"path":"../../luum/src/mixers/hue.ts","kind":"import-statement","original":"./hue"},{"path":"../../luum/src/mixers/sat.ts","kind":"import-statement","original":"./sat"},{"path":"../../luum/src/mixers/lum.ts","kind":"import-statement","original":"./lum"},{"path":"../../luum/src/mixers/contrast.ts","kind":"import-statement","original":"./contrast"}],"format":"esm"},"../../luum/src/constants/luum-spec.ts":{"bytes":137,"imports":[],"format":"esm"},"../../luum/src/scheme/index.ts":{"bytes":9821,"imports":[{"path":"../../anvl/src/array/index.ts","kind":"import-statement","original":"~/packages/anvl/src/array"},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/nullish/index.ts","kind":"import-statement","original":"~/packages/anvl/src/nullish"},{"path":"../../anvl/src/object/access.ts","kind":"import-statement","original":"~/packages/anvl/src/object/access"},{"path":"../../anvl/src/primitive/index.ts","kind":"import-statement","original":"~/packages/anvl/src/primitive"},{"path":"../../luum/src/index.ts","kind":"import-statement","original":"~/packages/luum/src"},{"path":"../../luum/src/constants/luum-spec.ts","kind":"import-statement","original":"~/packages/luum/src/constants/luum-spec"},{"path":"../../luum/src/mixers/lum.ts","kind":"import-statement","original":"~/packages/luum/src/mixers/lum"}],"format":"esm"},"../../luum/src/utils/interpolate.ts":{"bytes":480,"imports":[],"format":"esm"},"../../luum/src/utils/index.ts":{"bytes":64,"imports":[{"path":"../../luum/src/utils/interpolate.ts","kind":"import-statement","original":"./interpolate"}],"format":"esm"},"../../luum/src/index.ts":{"bytes":938,"imports":[{"path":"../../luum/src/constants/index.ts","kind":"import-statement","original":"./constants"},{"path":"../../luum/src/constants/filters.ts","kind":"import-statement","original":"./constants/filters"},{"path":"../../luum/src/constants/schemes.ts","kind":"import-statement","original":"./constants/schemes"},{"path":"../../luum/src/export/index.ts","kind":"import-statement","original":"./export"},{"path":"../../luum/src/identify/index.ts","kind":"import-statement","original":"./identify"},{"path":"../../luum/src/import/index.ts","kind":"import-statement","original":"./import"},{"path":"../../luum/src/luum.ts","kind":"import-statement","original":"./luum"},{"path":"../../luum/src/mixers/index.ts","kind":"import-statement","original":"./mixers"},{"path":"../../luum/src/scheme/index.ts","kind":"import-statement","original":"./scheme"},{"path":"../../luum/src/solveFor/index.ts","kind":"import-statement","original":"./solveFor"},{"path":"../../luum/src/utils/index.ts","kind":"import-statement","original":"./utils"},{"path":"../../luum/src/luum.ts","kind":"import-statement","original":"./luum"}],"format":"esm"},"../../hamr/src/react-id/Id.tsx":{"bytes":1669,"imports":[{"path":"@floating-ui/react","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/string/string-to-color.ts","kind":"import-statement","original":"~/packages/anvl/src/string/string-to-color"},{"path":"../../luum/src/index.ts","kind":"import-statement","original":"~/packages/luum/src"},{"path":"<runtime>","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-id/index.ts":{"bytes":21,"imports":[{"path":"../../hamr/src/react-id/Id.tsx","kind":"import-statement","original":"./Id"}],"format":"esm"},"../../hamr/src/react-data-designer/RelationEditor.module.scss":{"bytes":242,"imports":[]},"../../hamr/src/react-data-designer/RelationEditor.tsx":{"bytes":882,"imports":[{"path":"../../hamr/src/react-id/index.ts","kind":"import-statement","original":"../react-id"},{"path":"../../hamr/src/react-data-designer/RelationEditor.module.scss","kind":"import-statement","original":"./RelationEditor.module.scss"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"../../hamr/src/react-data-designer/index.ts":{"bytes":64,"imports":[{"path":"../../hamr/src/react-data-designer/DataDesigner.tsx","kind":"import-statement","original":"./DataDesigner"},{"path":"../../hamr/src/react-data-designer/RelationEditor.tsx","kind":"import-statement","original":"./RelationEditor"}],"format":"esm"},"src/StateEditor.tsx":{"bytes":2064,"imports":[{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"../../anvl/src/function/index.ts","kind":"import-statement","original":"~/packages/anvl/src/function"},{"path":"../../anvl/src/join/index.ts","kind":"import-statement","original":"~/packages/anvl/src/join"},{"path":"../../anvl/src/refinement/refine-json.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/refine-json"},{"path":"../../hamr/src/react-data-designer/index.ts","kind":"import-statement","original":"~/packages/hamr/src/react-data-designer"},{"path":"../../hamr/src/react-elastic-input/index.ts","kind":"import-statement","original":"~/packages/hamr/src/react-elastic-input"},{"path":"../../hamr/src/react-json-editor/index.ts","kind":"import-statement","original":"~/packages/hamr/src/react-json-editor"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/StateIndex.tsx":{"bytes":4130,"imports":[{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"~/packages/anvl/src/object"},{"path":"../../anvl/src/refinement/refine-json.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/refine-json"},{"path":"src/index.ts","kind":"import-statement","original":"."},{"path":"src/Button.tsx","kind":"import-statement","original":"./Button"},{"path":"src/StateEditor.tsx","kind":"import-statement","original":"./StateEditor"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/Updates.tsx":{"bytes":4382,"imports":[{"path":"react","kind":"import-statement","external":true},{"path":"../../anvl/src/refinement/refinery.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/refinery"},{"path":"src/index.ts","kind":"import-statement","original":"."},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/TimelineIndex.tsx":{"bytes":2346,"imports":[{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"src/index.ts","kind":"import-statement","original":"."},{"path":"src/Button.tsx","kind":"import-statement","original":"./Button"},{"path":"src/Updates.tsx","kind":"import-statement","original":"./Updates"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/TransactionIndex.tsx":{"bytes":1616,"imports":[{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"src/index.ts","kind":"import-statement","original":"."},{"path":"src/Button.tsx","kind":"import-statement","original":"./Button"},{"path":"src/Updates.tsx","kind":"import-statement","original":"./Updates"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/devtools.scss":{"bytes":6924,"imports":[]},"src/AtomIODevtools.tsx":{"bytes":2680,"imports":[{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"framer-motion","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"src/index.ts","kind":"import-statement","original":"."},{"path":"src/StateIndex.tsx","kind":"import-statement","original":"./StateIndex"},{"path":"src/TimelineIndex.tsx","kind":"import-statement","original":"./TimelineIndex"},{"path":"src/TransactionIndex.tsx","kind":"import-statement","original":"./TransactionIndex"},{"path":"src/devtools.scss","kind":"import-statement","original":"./devtools.scss"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":2236,"imports":[{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/introspection","kind":"import-statement","external":true},{"path":"../__unstable__/web-effects/src/index.ts","kind":"import-statement","original":"~/packages/atom.io/__unstable__/web-effects/src"},{"path":"../../anvl/src/object/index.ts","kind":"import-statement","original":"~/packages/anvl/src/object"},{"path":"../../anvl/src/refinement/refinery.ts","kind":"import-statement","original":"~/packages/anvl/src/refinement/refinery"},{"path":"../../anvl/src/tree/differ.ts","kind":"import-statement","original":"~/packages/anvl/src/tree/differ"},{"path":"src/AtomIODevtools.tsx","kind":"import-statement","original":"./AtomIODevtools"}],"format":"esm"}},"outputs":{"dist/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":244012},"dist/index.cjs":{"imports":[{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/introspection","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"framer-motion","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@floating-ui/react","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"atom.io","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"atom.io/react","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["AtomIODevtools","atomIndex","devtoolsAreOpenState","devtoolsViewOptionsState","devtoolsViewSelectionState","findTimelineState","findTransactionLogState","findViewIsOpenState","jsonTreeRefinery","prettyJson","primitiveRefinery","selectorIndex","timelineIndex","transactionIndex"],"entryPoint":"src/index.ts","cssBundle":"dist/index.css","inputs":{"src/index.ts":{"bytesInOutput":1643},"../__unstable__/web-effects/src/storage.ts":{"bytesInOutput":418},"../../anvl/src/function/index.ts":{"bytesInOutput":809},"../../anvl/src/function/pipe.ts":{"bytesInOutput":654},"../../anvl/src/array/index.ts":{"bytesInOutput":419},"../../anvl/src/array/venn.ts":{"bytesInOutput":239},"../../anvl/src/nullish/index.ts":{"bytesInOutput":192},"../../anvl/src/object/access.ts":{"bytesInOutput":79},"../../anvl/src/object/entries.ts":{"bytesInOutput":116},"../../anvl/src/object/mapObject.ts":{"bytesInOutput":173},"../../anvl/src/object/refinement.ts":{"bytesInOutput":1301},"../../anvl/src/object/sprawl.ts":{"bytesInOutput":759},"../../anvl/src/object/index.ts":{"bytesInOutput":426},"../../anvl/src/refinement/refinery.ts":{"bytesInOutput":1095},"../../anvl/src/tree/differ.ts":{"bytesInOutput":3160},"src/AtomIODevtools.tsx":{"bytesInOutput":3150},"src/StateIndex.tsx":{"bytesInOutput":3833},"../../anvl/src/json/index.ts":{"bytesInOutput":258},"../../anvl/src/primitive/index.ts":{"bytesInOutput":203},"../../anvl/src/refinement/refine-json.ts":{"bytesInOutput":926},"src/Button.tsx":{"bytesInOutput":364},"src/StateEditor.tsx":{"bytesInOutput":1555},"../../anvl/src/refinement/index.ts":{"bytesInOutput":113},"../../anvl/src/refinement/can-exist.ts":{"bytesInOutput":28},"../../anvl/src/refinement/cannot-exist.ts":{"bytesInOutput":32},"../../anvl/src/refinement/is-union.ts":{"bytesInOutput":783},"../../anvl/src/refinement/is-intersection.ts":{"bytesInOutput":731},"../../anvl/src/join/core-relation-data.ts":{"bytesInOutput":567},"../../anvl/src/join/get-related-ids.ts":{"bytesInOutput":371},"../../anvl/src/join/make-json-interface.ts":{"bytesInOutput":287},"../../anvl/src/join/relation-record.ts":{"bytesInOutput":243},"../../anvl/src/string/split.ts":{"bytesInOutput":58},"../../anvl/src/join/remove-relation.ts":{"bytesInOutput":1352},"../../anvl/src/join/set-relation.ts":{"bytesInOutput":2176},"../../anvl/src/join/relation-contents.ts":{"bytesInOutput":1885},"../../anvl/src/join/index.ts":{"bytesInOutput":1709},"../../hamr/src/react-elastic-input/ElasticInput.tsx":{"bytesInOutput":1993},"../../hamr/src/react-elastic-input/NumberInput.tsx":{"bytesInOutput":4193},"../../anvl/src/number/clamp.ts":{"bytesInOutput":88},"../../anvl/src/number/wrap.ts":{"bytesInOutput":125},"../../hamr/src/react-elastic-input/TextInput.tsx":{"bytesInOutput":759},"../../hamr/src/react-json-editor/editors-by-type/non-json.tsx":{"bytesInOutput":358},"../../hamr/src/react-json-editor/json-editor-internal.tsx":{"bytesInOutput":1820},"../../hamr/src/react-json-editor/editors-by-type/utilities/array-elements.ts":{"bytesInOutput":201},"../../hamr/src/react-json-editor/editors-by-type/array-editor.tsx":{"bytesInOutput":610},"../../hamr/src/react-json-editor/editors-by-type/object-editor.tsx":{"bytesInOutput":3691},"../../anvl/src/json-schema/integer.ts":{"bytesInOutput":1365},"../../anvl/src/json-schema/refs.ts":{"bytesInOutput":1253},"../../anvl/src/json-schema/string-formats.ts":{"bytesInOutput":184},"../../anvl/src/json-schema/json-schema.ts":{"bytesInOutput":4781},"../../anvl/src/json-schema/path-into.ts":{"bytesInOutput":701},"../../anvl/src/json-schema/find-sub-schema.ts":{"bytesInOutput":1117},"../../anvl/src/json/cast-json.ts":{"bytesInOutput":1396},"../../anvl/src/refinement/smart-cast-json.ts":{"bytesInOutput":2461},"../../hamr/src/react-json-editor/editors-by-type/utilities/object-properties.ts":{"bytesInOutput":1497},"../../hamr/src/react-json-editor/editors-by-type/primitive-editors.tsx":{"bytesInOutput":1039},"../../hamr/src/react-error-boundary/ReactErrorBoundary.tsx":{"bytesInOutput":661},"../../hamr/src/react-error-boundary/DefaultFallback.tsx":{"bytesInOutput":1549},"../../hamr/src/react-json-editor/default-components.tsx":{"bytesInOutput":2644},"../../hamr/src/react-json-editor/index.ts":{"bytesInOutput":161},"../../hamr/src/react-json-editor/developer-interface.tsx":{"bytesInOutput":670},"../../hamr/src/react-id/Id.tsx":{"bytesInOutput":1882},"../../anvl/src/string/string-to-color.ts":{"bytesInOutput":329},"../../luum/src/constants/index.ts":{"bytesInOutput":61},"../../luum/src/index.ts":{"bytesInOutput":0},"../../luum/src/constants/filters.ts":{"bytesInOutput":71},"../../luum/src/export/channelsToHex.ts":{"bytesInOutput":265},"../../luum/src/import/hueToRelativeChannels.ts":{"bytesInOutput":585},"../../luum/src/solveFor/hueFromChannels.ts":{"bytesInOutput":498},"../../luum/src/solveFor/lumFromChannels.ts":{"bytesInOutput":223},"../../luum/src/solveFor/maxSatForHueInFilter.ts":{"bytesInOutput":824},"../../luum/src/solveFor/satFromChannels.ts":{"bytesInOutput":158},"../../luum/src/solveFor/specificLumFromHue.ts":{"bytesInOutput":332},"../../luum/src/export/specToChannelsFixLimit.ts":{"bytesInOutput":2525},"../../luum/src/export/specToHexFixLimit.ts":{"bytesInOutput":373},"../../luum/src/export/specToHex.ts":{"bytesInOutput":189},"../../luum/src/identify/index.ts":{"bytesInOutput":0},"../../luum/src/import/channelsToSpec.ts":{"bytesInOutput":272},"../../luum/src/import/normalizeHex.ts":{"bytesInOutput":721},"../../luum/src/import/hexToChannels.ts":{"bytesInOutput":222},"../../luum/src/import/hexToSpec.ts":{"bytesInOutput":208},"../../luum/src/mixers/lum.ts":{"bytesInOutput":474},"../../luum/src/mixers/index.ts":{"bytesInOutput":0},"../../luum/src/mixers/contrast.ts":{"bytesInOutput":277},"../../luum/src/constants/luum-spec.ts":{"bytesInOutput":69},"../../luum/src/scheme/index.ts":{"bytesInOutput":987},"../../hamr/src/react-data-designer/RelationEditor.module.scss":{"bytesInOutput":40},"../../hamr/src/react-data-designer/RelationEditor.tsx":{"bytesInOutput":834},"src/TimelineIndex.tsx":{"bytesInOutput":2669},"src/Updates.tsx":{"bytesInOutput":5174},"src/TransactionIndex.tsx":{"bytesInOutput":1552},"src/devtools.scss":{"bytesInOutput":0}},"bytes":95119},"dist/index.css.map":{"imports":[],"exports":[],"inputs":{},"bytes":11009},"dist/index.css":{"imports":[],"inputs":{"../../hamr/src/react-data-designer/RelationEditor.module.scss":{"bytesInOutput":242},"src/devtools.scss":{"bytesInOutput":6923}},"bytes":7258}}}
|