@dxos/plugin-sheet 0.8.2-main.12df754 → 0.8.2-main.36232bc
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S } from '@dxos/echo-schema';
|
|
1
|
+
import { Ref, S } from '@dxos/echo-schema';
|
|
2
2
|
export declare const CellValue: S.Struct<{
|
|
3
3
|
value: typeof S.Any;
|
|
4
4
|
}>;
|
|
@@ -37,22 +37,128 @@ declare const SheetType_base: import("@dxos/echo-schema").TypedObjectPrototype<i
|
|
|
37
37
|
messages: S.mutable<S.Array$<import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").TypedObjectFields<{
|
|
38
38
|
id: import("@dxos/echo-schema").ObjectIdClass;
|
|
39
39
|
created: S.SchemaClass<string, string, never>;
|
|
40
|
-
sender: S.Struct<{
|
|
40
|
+
sender: S.mutable<S.Struct<{
|
|
41
41
|
contact: S.optional<import("@dxos/echo-schema").Ref$<{
|
|
42
42
|
readonly id: string;
|
|
43
|
-
|
|
44
|
-
identifiers: {
|
|
43
|
+
fields?: {
|
|
45
44
|
readonly value: string;
|
|
46
|
-
readonly
|
|
47
|
-
|
|
45
|
+
readonly label: string;
|
|
46
|
+
readonly category?: string | undefined;
|
|
47
|
+
}[] | undefined;
|
|
48
|
+
organization?: Ref<{
|
|
49
|
+
readonly id: string;
|
|
50
|
+
description?: string | undefined;
|
|
51
|
+
name?: string | undefined;
|
|
52
|
+
status?: "first" | "second" | "third" | "fourth" | undefined;
|
|
53
|
+
image?: string | undefined;
|
|
54
|
+
website?: string | undefined;
|
|
55
|
+
}> | undefined;
|
|
56
|
+
image?: string | undefined;
|
|
57
|
+
fullName?: string | undefined;
|
|
58
|
+
preferredName?: string | undefined;
|
|
59
|
+
nickname?: string | undefined;
|
|
60
|
+
jobTitle?: string | undefined;
|
|
61
|
+
department?: string | undefined;
|
|
62
|
+
notes?: string | undefined;
|
|
63
|
+
emails?: {
|
|
64
|
+
readonly value: string;
|
|
65
|
+
readonly label?: string | undefined;
|
|
66
|
+
}[] | undefined;
|
|
67
|
+
identities?: {
|
|
68
|
+
readonly value: string;
|
|
69
|
+
readonly label?: string | undefined;
|
|
70
|
+
}[] | undefined;
|
|
71
|
+
phoneNumbers?: {
|
|
72
|
+
readonly value: string;
|
|
73
|
+
readonly label?: string | undefined;
|
|
74
|
+
}[] | undefined;
|
|
75
|
+
addresses?: {
|
|
76
|
+
readonly value: {
|
|
77
|
+
readonly street?: string | undefined;
|
|
78
|
+
readonly extended?: string | undefined;
|
|
79
|
+
readonly locality?: string | undefined;
|
|
80
|
+
readonly region?: string | undefined;
|
|
81
|
+
readonly postalCode?: string | undefined;
|
|
82
|
+
readonly postOfficeBoxNumber?: string | undefined;
|
|
83
|
+
readonly country?: string | undefined;
|
|
84
|
+
};
|
|
85
|
+
readonly label?: string | undefined;
|
|
86
|
+
}[] | undefined;
|
|
87
|
+
urls?: {
|
|
88
|
+
readonly value: string;
|
|
89
|
+
readonly label?: string | undefined;
|
|
90
|
+
}[] | undefined;
|
|
91
|
+
birthday?: {
|
|
92
|
+
toString: () => string;
|
|
93
|
+
toDateString: () => string;
|
|
94
|
+
toTimeString: () => string;
|
|
95
|
+
toLocaleString: {
|
|
96
|
+
(): string;
|
|
97
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
98
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
99
|
+
};
|
|
100
|
+
toLocaleDateString: {
|
|
101
|
+
(): string;
|
|
102
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
103
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
104
|
+
};
|
|
105
|
+
toLocaleTimeString: {
|
|
106
|
+
(): string;
|
|
107
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
108
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
109
|
+
};
|
|
110
|
+
valueOf: () => number;
|
|
111
|
+
getTime: () => number;
|
|
112
|
+
getFullYear: () => number;
|
|
113
|
+
getUTCFullYear: () => number;
|
|
114
|
+
getMonth: () => number;
|
|
115
|
+
getUTCMonth: () => number;
|
|
116
|
+
getDate: () => number;
|
|
117
|
+
getUTCDate: () => number;
|
|
118
|
+
getDay: () => number;
|
|
119
|
+
getUTCDay: () => number;
|
|
120
|
+
getHours: () => number;
|
|
121
|
+
getUTCHours: () => number;
|
|
122
|
+
getMinutes: () => number;
|
|
123
|
+
getUTCMinutes: () => number;
|
|
124
|
+
getSeconds: () => number;
|
|
125
|
+
getUTCSeconds: () => number;
|
|
126
|
+
getMilliseconds: () => number;
|
|
127
|
+
getUTCMilliseconds: () => number;
|
|
128
|
+
getTimezoneOffset: () => number;
|
|
129
|
+
setTime: (time: number) => number;
|
|
130
|
+
setMilliseconds: (ms: number) => number;
|
|
131
|
+
setUTCMilliseconds: (ms: number) => number;
|
|
132
|
+
setSeconds: (sec: number, ms?: number) => number;
|
|
133
|
+
setUTCSeconds: (sec: number, ms?: number) => number;
|
|
134
|
+
setMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
135
|
+
setUTCMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
136
|
+
setHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
137
|
+
setUTCHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
138
|
+
setDate: (date: number) => number;
|
|
139
|
+
setUTCDate: (date: number) => number;
|
|
140
|
+
setMonth: (month: number, date?: number) => number;
|
|
141
|
+
setUTCMonth: (month: number, date?: number) => number;
|
|
142
|
+
setFullYear: (year: number, month?: number, date?: number) => number;
|
|
143
|
+
setUTCFullYear: (year: number, month?: number, date?: number) => number;
|
|
144
|
+
toUTCString: () => string;
|
|
145
|
+
toISOString: () => string;
|
|
146
|
+
toJSON: (key?: any) => string;
|
|
147
|
+
[Symbol.toPrimitive]: {
|
|
148
|
+
(hint: "default"): string;
|
|
149
|
+
(hint: "string"): string;
|
|
150
|
+
(hint: "number"): number;
|
|
151
|
+
(hint: string): string | number;
|
|
152
|
+
};
|
|
153
|
+
} | undefined;
|
|
48
154
|
}>>;
|
|
49
155
|
identityDid: S.optional<typeof S.String>;
|
|
50
156
|
identityKey: S.optional<typeof S.String>;
|
|
51
157
|
email: S.optional<typeof S.String>;
|
|
52
158
|
name: S.optional<typeof S.String>;
|
|
53
159
|
role: S.optional<S.Literal<["user", "assistant"]>>;
|
|
54
|
-
}
|
|
55
|
-
blocks: S.Array$<S.Union<[S.mutable<S.extend<S.Struct<{
|
|
160
|
+
}>>;
|
|
161
|
+
blocks: S.mutable<S.Array$<S.Union<[S.mutable<S.extend<S.Struct<{
|
|
56
162
|
pending: S.optional<typeof S.Boolean>;
|
|
57
163
|
}>, S.Struct<{
|
|
58
164
|
type: S.Literal<["text"]>;
|
|
@@ -82,7 +188,13 @@ declare const SheetType_base: import("@dxos/echo-schema").TypedObjectPrototype<i
|
|
|
82
188
|
}>, S.Struct<{
|
|
83
189
|
type: S.Literal<["reference"]>;
|
|
84
190
|
reference: import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").Expando>;
|
|
85
|
-
}
|
|
191
|
+
}>>>, S.mutable<S.extend<S.Struct<{
|
|
192
|
+
pending: S.optional<typeof S.Boolean>;
|
|
193
|
+
}>, S.Struct<{
|
|
194
|
+
type: S.Literal<["transcription"]>;
|
|
195
|
+
started: typeof S.String;
|
|
196
|
+
text: typeof S.String;
|
|
197
|
+
}>>>]>>>;
|
|
86
198
|
properties: S.optional<S.mutable<S.Record$<typeof S.String, typeof S.Any>>>;
|
|
87
199
|
}, import("@dxos/echo-schema").TypedObjectOptions>>>>;
|
|
88
200
|
}, import("@dxos/echo-schema").TypedObjectOptions>>>>>;
|
|
@@ -111,22 +223,128 @@ declare const SheetType_base: import("@dxos/echo-schema").TypedObjectPrototype<i
|
|
|
111
223
|
messages: S.mutable<S.Array$<import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").TypedObjectFields<{
|
|
112
224
|
id: import("@dxos/echo-schema").ObjectIdClass;
|
|
113
225
|
created: S.SchemaClass<string, string, never>;
|
|
114
|
-
sender: S.Struct<{
|
|
226
|
+
sender: S.mutable<S.Struct<{
|
|
115
227
|
contact: S.optional<import("@dxos/echo-schema").Ref$<{
|
|
116
228
|
readonly id: string;
|
|
117
|
-
|
|
118
|
-
identifiers: {
|
|
229
|
+
fields?: {
|
|
119
230
|
readonly value: string;
|
|
120
|
-
readonly
|
|
121
|
-
|
|
231
|
+
readonly label: string;
|
|
232
|
+
readonly category?: string | undefined;
|
|
233
|
+
}[] | undefined;
|
|
234
|
+
organization?: Ref<{
|
|
235
|
+
readonly id: string;
|
|
236
|
+
description?: string | undefined;
|
|
237
|
+
name?: string | undefined;
|
|
238
|
+
status?: "first" | "second" | "third" | "fourth" | undefined;
|
|
239
|
+
image?: string | undefined;
|
|
240
|
+
website?: string | undefined;
|
|
241
|
+
}> | undefined;
|
|
242
|
+
image?: string | undefined;
|
|
243
|
+
fullName?: string | undefined;
|
|
244
|
+
preferredName?: string | undefined;
|
|
245
|
+
nickname?: string | undefined;
|
|
246
|
+
jobTitle?: string | undefined;
|
|
247
|
+
department?: string | undefined;
|
|
248
|
+
notes?: string | undefined;
|
|
249
|
+
emails?: {
|
|
250
|
+
readonly value: string;
|
|
251
|
+
readonly label?: string | undefined;
|
|
252
|
+
}[] | undefined;
|
|
253
|
+
identities?: {
|
|
254
|
+
readonly value: string;
|
|
255
|
+
readonly label?: string | undefined;
|
|
256
|
+
}[] | undefined;
|
|
257
|
+
phoneNumbers?: {
|
|
258
|
+
readonly value: string;
|
|
259
|
+
readonly label?: string | undefined;
|
|
260
|
+
}[] | undefined;
|
|
261
|
+
addresses?: {
|
|
262
|
+
readonly value: {
|
|
263
|
+
readonly street?: string | undefined;
|
|
264
|
+
readonly extended?: string | undefined;
|
|
265
|
+
readonly locality?: string | undefined;
|
|
266
|
+
readonly region?: string | undefined;
|
|
267
|
+
readonly postalCode?: string | undefined;
|
|
268
|
+
readonly postOfficeBoxNumber?: string | undefined;
|
|
269
|
+
readonly country?: string | undefined;
|
|
270
|
+
};
|
|
271
|
+
readonly label?: string | undefined;
|
|
272
|
+
}[] | undefined;
|
|
273
|
+
urls?: {
|
|
274
|
+
readonly value: string;
|
|
275
|
+
readonly label?: string | undefined;
|
|
276
|
+
}[] | undefined;
|
|
277
|
+
birthday?: {
|
|
278
|
+
toString: () => string;
|
|
279
|
+
toDateString: () => string;
|
|
280
|
+
toTimeString: () => string;
|
|
281
|
+
toLocaleString: {
|
|
282
|
+
(): string;
|
|
283
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
284
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
285
|
+
};
|
|
286
|
+
toLocaleDateString: {
|
|
287
|
+
(): string;
|
|
288
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
289
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
290
|
+
};
|
|
291
|
+
toLocaleTimeString: {
|
|
292
|
+
(): string;
|
|
293
|
+
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
294
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
295
|
+
};
|
|
296
|
+
valueOf: () => number;
|
|
297
|
+
getTime: () => number;
|
|
298
|
+
getFullYear: () => number;
|
|
299
|
+
getUTCFullYear: () => number;
|
|
300
|
+
getMonth: () => number;
|
|
301
|
+
getUTCMonth: () => number;
|
|
302
|
+
getDate: () => number;
|
|
303
|
+
getUTCDate: () => number;
|
|
304
|
+
getDay: () => number;
|
|
305
|
+
getUTCDay: () => number;
|
|
306
|
+
getHours: () => number;
|
|
307
|
+
getUTCHours: () => number;
|
|
308
|
+
getMinutes: () => number;
|
|
309
|
+
getUTCMinutes: () => number;
|
|
310
|
+
getSeconds: () => number;
|
|
311
|
+
getUTCSeconds: () => number;
|
|
312
|
+
getMilliseconds: () => number;
|
|
313
|
+
getUTCMilliseconds: () => number;
|
|
314
|
+
getTimezoneOffset: () => number;
|
|
315
|
+
setTime: (time: number) => number;
|
|
316
|
+
setMilliseconds: (ms: number) => number;
|
|
317
|
+
setUTCMilliseconds: (ms: number) => number;
|
|
318
|
+
setSeconds: (sec: number, ms?: number) => number;
|
|
319
|
+
setUTCSeconds: (sec: number, ms?: number) => number;
|
|
320
|
+
setMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
321
|
+
setUTCMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
322
|
+
setHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
323
|
+
setUTCHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
324
|
+
setDate: (date: number) => number;
|
|
325
|
+
setUTCDate: (date: number) => number;
|
|
326
|
+
setMonth: (month: number, date?: number) => number;
|
|
327
|
+
setUTCMonth: (month: number, date?: number) => number;
|
|
328
|
+
setFullYear: (year: number, month?: number, date?: number) => number;
|
|
329
|
+
setUTCFullYear: (year: number, month?: number, date?: number) => number;
|
|
330
|
+
toUTCString: () => string;
|
|
331
|
+
toISOString: () => string;
|
|
332
|
+
toJSON: (key?: any) => string;
|
|
333
|
+
[Symbol.toPrimitive]: {
|
|
334
|
+
(hint: "default"): string;
|
|
335
|
+
(hint: "string"): string;
|
|
336
|
+
(hint: "number"): number;
|
|
337
|
+
(hint: string): string | number;
|
|
338
|
+
};
|
|
339
|
+
} | undefined;
|
|
122
340
|
}>>;
|
|
123
341
|
identityDid: S.optional<typeof S.String>;
|
|
124
342
|
identityKey: S.optional<typeof S.String>;
|
|
125
343
|
email: S.optional<typeof S.String>;
|
|
126
344
|
name: S.optional<typeof S.String>;
|
|
127
345
|
role: S.optional<S.Literal<["user", "assistant"]>>;
|
|
128
|
-
}
|
|
129
|
-
blocks: S.Array$<S.Union<[S.mutable<S.extend<S.Struct<{
|
|
346
|
+
}>>;
|
|
347
|
+
blocks: S.mutable<S.Array$<S.Union<[S.mutable<S.extend<S.Struct<{
|
|
130
348
|
pending: S.optional<typeof S.Boolean>;
|
|
131
349
|
}>, S.Struct<{
|
|
132
350
|
type: S.Literal<["text"]>;
|
|
@@ -156,7 +374,13 @@ declare const SheetType_base: import("@dxos/echo-schema").TypedObjectPrototype<i
|
|
|
156
374
|
}>, S.Struct<{
|
|
157
375
|
type: S.Literal<["reference"]>;
|
|
158
376
|
reference: import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").Expando>;
|
|
159
|
-
}
|
|
377
|
+
}>>>, S.mutable<S.extend<S.Struct<{
|
|
378
|
+
pending: S.optional<typeof S.Boolean>;
|
|
379
|
+
}>, S.Struct<{
|
|
380
|
+
type: S.Literal<["transcription"]>;
|
|
381
|
+
started: typeof S.String;
|
|
382
|
+
text: typeof S.String;
|
|
383
|
+
}>>>]>>>;
|
|
160
384
|
properties: S.optional<S.mutable<S.Record$<typeof S.String, typeof S.Any>>>;
|
|
161
385
|
}, import("@dxos/echo-schema").TypedObjectOptions>>>>;
|
|
162
386
|
}, import("@dxos/echo-schema").TypedObjectOptions>>>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/types/schema.ts"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/types/schema.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/plugin-sheet",
|
|
3
|
-
"version": "0.8.2-main.
|
|
3
|
+
"version": "0.8.2-main.36232bc",
|
|
4
4
|
"description": "Braneframe sketch plugin",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -53,39 +53,39 @@
|
|
|
53
53
|
"re-resizable": "^6.9.17",
|
|
54
54
|
"react-markdown": "^8.0.5",
|
|
55
55
|
"react-resize-detector": "^11.0.1",
|
|
56
|
-
"@dxos/async": "0.8.2-main.
|
|
57
|
-
"@dxos/
|
|
58
|
-
"@dxos/
|
|
59
|
-
"@dxos/
|
|
60
|
-
"@dxos/
|
|
61
|
-
"@dxos/
|
|
62
|
-
"@dxos/
|
|
63
|
-
"@dxos/echo-schema": "0.8.2-main.
|
|
64
|
-
"@dxos/functions": "0.8.2-main.
|
|
65
|
-
"@dxos/
|
|
66
|
-
"@dxos/
|
|
67
|
-
"@dxos/log": "0.8.2-main.
|
|
68
|
-
"@dxos/
|
|
69
|
-
"@dxos/plugin-
|
|
70
|
-
"@dxos/plugin-
|
|
71
|
-
"@dxos/plugin-
|
|
72
|
-
"@dxos/plugin-graph": "0.8.2-main.
|
|
73
|
-
"@dxos/plugin-
|
|
74
|
-
"@dxos/plugin-
|
|
75
|
-
"@dxos/plugin-
|
|
76
|
-
"@dxos/
|
|
77
|
-
"@dxos/plugin-space": "0.8.2-main.
|
|
78
|
-
"@dxos/react-client": "0.8.2-main.
|
|
79
|
-
"@dxos/
|
|
80
|
-
"@dxos/react-ui-
|
|
81
|
-
"@dxos/react-ui-form": "0.8.2-main.
|
|
82
|
-
"@dxos/react-ui-
|
|
83
|
-
"@dxos/react-ui-
|
|
84
|
-
"@dxos/react-ui-menu": "0.8.2-main.
|
|
85
|
-
"@dxos/react-ui-list": "0.8.2-main.
|
|
86
|
-
"@dxos/
|
|
87
|
-
"@dxos/
|
|
88
|
-
"@dxos/
|
|
56
|
+
"@dxos/async": "0.8.2-main.36232bc",
|
|
57
|
+
"@dxos/compute": "0.8.2-main.36232bc",
|
|
58
|
+
"@dxos/app-framework": "0.8.2-main.36232bc",
|
|
59
|
+
"@dxos/client": "0.8.2-main.36232bc",
|
|
60
|
+
"@dxos/context": "0.8.2-main.36232bc",
|
|
61
|
+
"@dxos/crypto": "0.8.2-main.36232bc",
|
|
62
|
+
"@dxos/debug": "0.8.2-main.36232bc",
|
|
63
|
+
"@dxos/echo-schema": "0.8.2-main.36232bc",
|
|
64
|
+
"@dxos/functions": "0.8.2-main.36232bc",
|
|
65
|
+
"@dxos/invariant": "0.8.2-main.36232bc",
|
|
66
|
+
"@dxos/keys": "0.8.2-main.36232bc",
|
|
67
|
+
"@dxos/log": "0.8.2-main.36232bc",
|
|
68
|
+
"@dxos/live-object": "0.8.2-main.36232bc",
|
|
69
|
+
"@dxos/plugin-client": "0.8.2-main.36232bc",
|
|
70
|
+
"@dxos/plugin-attention": "0.8.2-main.36232bc",
|
|
71
|
+
"@dxos/plugin-deck": "0.8.2-main.36232bc",
|
|
72
|
+
"@dxos/plugin-graph": "0.8.2-main.36232bc",
|
|
73
|
+
"@dxos/plugin-markdown": "0.8.2-main.36232bc",
|
|
74
|
+
"@dxos/plugin-script": "0.8.2-main.36232bc",
|
|
75
|
+
"@dxos/plugin-stack": "0.8.2-main.36232bc",
|
|
76
|
+
"@dxos/plugin-thread": "0.8.2-main.36232bc",
|
|
77
|
+
"@dxos/plugin-space": "0.8.2-main.36232bc",
|
|
78
|
+
"@dxos/react-client": "0.8.2-main.36232bc",
|
|
79
|
+
"@dxos/react-hooks": "0.8.2-main.36232bc",
|
|
80
|
+
"@dxos/react-ui-editor": "0.8.2-main.36232bc",
|
|
81
|
+
"@dxos/react-ui-form": "0.8.2-main.36232bc",
|
|
82
|
+
"@dxos/react-ui-grid": "0.8.2-main.36232bc",
|
|
83
|
+
"@dxos/react-ui-attention": "0.8.2-main.36232bc",
|
|
84
|
+
"@dxos/react-ui-menu": "0.8.2-main.36232bc",
|
|
85
|
+
"@dxos/react-ui-list": "0.8.2-main.36232bc",
|
|
86
|
+
"@dxos/react-ui-stack": "0.8.2-main.36232bc",
|
|
87
|
+
"@dxos/util": "0.8.2-main.36232bc",
|
|
88
|
+
"@dxos/schema": "0.8.2-main.36232bc"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@lezer/generator": "^1.7.1",
|
|
@@ -98,22 +98,22 @@
|
|
|
98
98
|
"react": "~18.2.0",
|
|
99
99
|
"react-dom": "~18.2.0",
|
|
100
100
|
"vite": "5.4.7",
|
|
101
|
-
"@dxos/echo-generator": "0.8.2-main.
|
|
102
|
-
"@dxos/lit-grid": "0.8.2-main.
|
|
103
|
-
"@dxos/
|
|
104
|
-
"@dxos/
|
|
105
|
-
"@dxos/react-ui": "0.8.2-main.
|
|
106
|
-
"@dxos/react-ui-theme": "0.8.2-main.
|
|
107
|
-
"@dxos/react-ui-types": "0.8.2-main.
|
|
108
|
-
"@dxos/storybook-utils": "0.8.2-main.
|
|
109
|
-
"@dxos/test-utils": "0.8.2-main.
|
|
101
|
+
"@dxos/echo-generator": "0.8.2-main.36232bc",
|
|
102
|
+
"@dxos/lit-grid": "0.8.2-main.36232bc",
|
|
103
|
+
"@dxos/random": "0.8.2-main.36232bc",
|
|
104
|
+
"@dxos/react-ui": "0.8.2-main.36232bc",
|
|
105
|
+
"@dxos/react-ui-syntax-highlighter": "0.8.2-main.36232bc",
|
|
106
|
+
"@dxos/react-ui-theme": "0.8.2-main.36232bc",
|
|
107
|
+
"@dxos/react-ui-types": "0.8.2-main.36232bc",
|
|
108
|
+
"@dxos/storybook-utils": "0.8.2-main.36232bc",
|
|
109
|
+
"@dxos/test-utils": "0.8.2-main.36232bc"
|
|
110
110
|
},
|
|
111
111
|
"peerDependencies": {
|
|
112
112
|
"effect": "3.13.3",
|
|
113
113
|
"react": "~18.2.0",
|
|
114
114
|
"react-dom": "~18.2.0",
|
|
115
|
-
"@dxos/react-ui": "0.8.2-main.
|
|
116
|
-
"@dxos/react-ui-theme": "0.8.2-main.
|
|
115
|
+
"@dxos/react-ui": "0.8.2-main.36232bc",
|
|
116
|
+
"@dxos/react-ui-theme": "0.8.2-main.36232bc"
|
|
117
117
|
},
|
|
118
118
|
"publishConfig": {
|
|
119
119
|
"access": "public"
|