@dxos/plugin-presenter 0.8.2-main.f11618f → 0.8.2-staging.42af850
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/dist/lib/browser/CollectionPresenterContainer-7UXPBYKA.mjs +189 -0
- package/dist/lib/browser/{CollectionPresenterContainer-5ETXRUWZ.mjs.map → CollectionPresenterContainer-7UXPBYKA.mjs.map} +1 -1
- package/dist/lib/browser/DocumentPresenterContainer-QNXYZ5WX.mjs +185 -0
- package/dist/lib/browser/{DocumentPresenterContainer-CAPKSXNP.mjs.map → DocumentPresenterContainer-QNXYZ5WX.mjs.map} +1 -1
- package/dist/lib/browser/{MarkdownSlide-5NYXG5SC.mjs → MarkdownSlide-EI5XTZGO.mjs} +77 -54
- package/dist/lib/browser/{MarkdownSlide-5NYXG5SC.mjs.map → MarkdownSlide-EI5XTZGO.mjs.map} +2 -2
- package/dist/lib/browser/{app-graph-builder-QS5KTYD3.mjs → app-graph-builder-5NILN2ZH.mjs} +14 -12
- package/dist/lib/browser/app-graph-builder-5NILN2ZH.mjs.map +7 -0
- package/dist/lib/browser/chunk-K4SDUVTH.mjs +37 -0
- package/dist/lib/browser/{chunk-VTBPPB5Z.mjs.map → chunk-K4SDUVTH.mjs.map} +1 -1
- package/dist/lib/browser/{chunk-CQR4O6KC.mjs → chunk-Y6REDI5E.mjs} +12 -12
- package/dist/lib/browser/chunk-Y6REDI5E.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/{react-surface-N23VEZ2O.mjs → react-surface-6AJLL4EM.mjs} +2 -2
- package/dist/lib/browser/{settings-KWSP73SU.mjs → settings-JBNMCJHB.mjs} +2 -2
- package/dist/types/src/capabilities/app-graph-builder.d.ts +2 -179
- package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -1
- package/dist/types/src/capabilities/index.d.ts +1 -177
- package/dist/types/src/capabilities/index.d.ts.map +1 -1
- package/dist/types/src/components/Markdown/Container.d.ts.map +1 -1
- package/dist/types/src/components/Markdown/Slide.d.ts.map +1 -1
- package/dist/types/src/components/Presenter/Layout.d.ts.map +1 -1
- package/dist/types/src/components/Presenter/Pager.d.ts.map +1 -1
- package/dist/types/src/components/PresenterSettings.d.ts.map +1 -1
- package/dist/types/src/components/RevealPlayer/RevealPlayer.d.ts.map +1 -1
- package/dist/types/src/testing.d.ts.map +1 -1
- package/dist/types/src/types.d.ts +17 -185
- package/dist/types/src/types.d.ts.map +1 -1
- package/dist/types/src/useExitPresenter.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +31 -26
- package/src/capabilities/app-graph-builder.ts +61 -50
- package/src/components/Markdown/theme.ts +1 -1
- package/src/types.ts +10 -10
- package/dist/lib/browser/CollectionPresenterContainer-5ETXRUWZ.mjs +0 -166
- package/dist/lib/browser/DocumentPresenterContainer-CAPKSXNP.mjs +0 -173
- package/dist/lib/browser/app-graph-builder-QS5KTYD3.mjs.map +0 -7
- package/dist/lib/browser/chunk-CQR4O6KC.mjs.map +0 -7
- package/dist/lib/browser/chunk-VTBPPB5Z.mjs +0 -31
- /package/dist/lib/browser/{react-surface-N23VEZ2O.mjs.map → react-surface-6AJLL4EM.mjs.map} +0 -0
- /package/dist/lib/browser/{settings-KWSP73SU.mjs.map → settings-JBNMCJHB.mjs.map} +0 -0
|
@@ -1,181 +1,4 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
|
|
3
|
-
declare const _default: (context: PluginsContext) => import("@dxos/app-framework").Capability<Readonly<{
|
|
4
|
-
id: string;
|
|
5
|
-
position: import("@dxos/util").Position;
|
|
6
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
7
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
8
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
9
|
-
type?: string;
|
|
10
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
11
|
-
}> | Readonly<{
|
|
12
|
-
id: string;
|
|
13
|
-
position: import("@dxos/util").Position;
|
|
14
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
15
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
16
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
17
|
-
type?: string;
|
|
18
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
19
|
-
}>[] | (Readonly<{
|
|
20
|
-
id: string;
|
|
21
|
-
position: import("@dxos/util").Position;
|
|
22
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
23
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
24
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
25
|
-
type?: string;
|
|
26
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
27
|
-
}> | Readonly<{
|
|
28
|
-
id: string;
|
|
29
|
-
position: import("@dxos/util").Position;
|
|
30
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
31
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
32
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
33
|
-
type?: string;
|
|
34
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
35
|
-
}>[] | (Readonly<{
|
|
36
|
-
id: string;
|
|
37
|
-
position: import("@dxos/util").Position;
|
|
38
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
39
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
40
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
41
|
-
type?: string;
|
|
42
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
43
|
-
}> | Readonly<{
|
|
44
|
-
id: string;
|
|
45
|
-
position: import("@dxos/util").Position;
|
|
46
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
47
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
48
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
49
|
-
type?: string;
|
|
50
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
51
|
-
}>[] | (Readonly<{
|
|
52
|
-
id: string;
|
|
53
|
-
position: import("@dxos/util").Position;
|
|
54
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
55
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
56
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
57
|
-
type?: string;
|
|
58
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
59
|
-
}> | Readonly<{
|
|
60
|
-
id: string;
|
|
61
|
-
position: import("@dxos/util").Position;
|
|
62
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
63
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
64
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
65
|
-
type?: string;
|
|
66
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
67
|
-
}>[] | (Readonly<{
|
|
68
|
-
id: string;
|
|
69
|
-
position: import("@dxos/util").Position;
|
|
70
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
71
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
72
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
73
|
-
type?: string;
|
|
74
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
75
|
-
}> | Readonly<{
|
|
76
|
-
id: string;
|
|
77
|
-
position: import("@dxos/util").Position;
|
|
78
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
79
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
80
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
81
|
-
type?: string;
|
|
82
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
83
|
-
}>[] | (Readonly<{
|
|
84
|
-
id: string;
|
|
85
|
-
position: import("@dxos/util").Position;
|
|
86
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
87
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
88
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
89
|
-
type?: string;
|
|
90
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
91
|
-
}> | Readonly<{
|
|
92
|
-
id: string;
|
|
93
|
-
position: import("@dxos/util").Position;
|
|
94
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
95
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
96
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
97
|
-
type?: string;
|
|
98
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
99
|
-
}>[] | (Readonly<{
|
|
100
|
-
id: string;
|
|
101
|
-
position: import("@dxos/util").Position;
|
|
102
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
103
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
104
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
105
|
-
type?: string;
|
|
106
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
107
|
-
}> | Readonly<{
|
|
108
|
-
id: string;
|
|
109
|
-
position: import("@dxos/util").Position;
|
|
110
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
111
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
112
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
113
|
-
type?: string;
|
|
114
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
115
|
-
}>[] | (Readonly<{
|
|
116
|
-
id: string;
|
|
117
|
-
position: import("@dxos/util").Position;
|
|
118
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
119
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
120
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
121
|
-
type?: string;
|
|
122
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
123
|
-
}> | Readonly<{
|
|
124
|
-
id: string;
|
|
125
|
-
position: import("@dxos/util").Position;
|
|
126
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
127
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
128
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
129
|
-
type?: string;
|
|
130
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
131
|
-
}>[] | (Readonly<{
|
|
132
|
-
id: string;
|
|
133
|
-
position: import("@dxos/util").Position;
|
|
134
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
135
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
136
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
137
|
-
type?: string;
|
|
138
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
139
|
-
}> | Readonly<{
|
|
140
|
-
id: string;
|
|
141
|
-
position: import("@dxos/util").Position;
|
|
142
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
143
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
144
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
145
|
-
type?: string;
|
|
146
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
147
|
-
}>[] | (Readonly<{
|
|
148
|
-
id: string;
|
|
149
|
-
position: import("@dxos/util").Position;
|
|
150
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
151
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
152
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
153
|
-
type?: string;
|
|
154
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
155
|
-
}> | Readonly<{
|
|
156
|
-
id: string;
|
|
157
|
-
position: import("@dxos/util").Position;
|
|
158
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
159
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
160
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
161
|
-
type?: string;
|
|
162
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
163
|
-
}>[] | (any[] | Readonly<{
|
|
164
|
-
id: string;
|
|
165
|
-
position: import("@dxos/util").Position;
|
|
166
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
167
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
168
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
169
|
-
type?: string;
|
|
170
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
171
|
-
}> | Readonly<{
|
|
172
|
-
id: string;
|
|
173
|
-
position: import("@dxos/util").Position;
|
|
174
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
175
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
176
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
177
|
-
type?: string;
|
|
178
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
179
|
-
}>[])[])[])[])[])[])[])[])[])[])[]>;
|
|
1
|
+
import { type PluginContext } from '@dxos/app-framework';
|
|
2
|
+
declare const _default: (context: PluginContext) => import("@dxos/app-framework").Capability<import("@dxos/app-graph").BuilderExtensions>;
|
|
180
3
|
export default _default;
|
|
181
4
|
//# sourceMappingURL=app-graph-builder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-graph-builder.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/app-graph-builder.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"app-graph-builder.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/app-graph-builder.ts"],"names":[],"mappings":"AAOA,OAAO,EAAe,KAAK,aAAa,EAA4C,MAAM,qBAAqB,CAAC;yBAYhG,SAAS,aAAa;AAAtC,wBA8DI"}
|
|
@@ -1,180 +1,4 @@
|
|
|
1
|
-
export declare const AppGraphBuilder: (props?: import("@dxos/app-framework").
|
|
2
|
-
id: string;
|
|
3
|
-
position: import("@dxos/util").Position;
|
|
4
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
5
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
6
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
7
|
-
type?: string;
|
|
8
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
9
|
-
}> | Readonly<{
|
|
10
|
-
id: string;
|
|
11
|
-
position: import("@dxos/util").Position;
|
|
12
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
13
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
14
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
15
|
-
type?: string;
|
|
16
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
17
|
-
}>[] | (Readonly<{
|
|
18
|
-
id: string;
|
|
19
|
-
position: import("@dxos/util").Position;
|
|
20
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
21
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
22
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
23
|
-
type?: string;
|
|
24
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
25
|
-
}> | Readonly<{
|
|
26
|
-
id: string;
|
|
27
|
-
position: import("@dxos/util").Position;
|
|
28
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
29
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
30
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
31
|
-
type?: string;
|
|
32
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
33
|
-
}>[] | (Readonly<{
|
|
34
|
-
id: string;
|
|
35
|
-
position: import("@dxos/util").Position;
|
|
36
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
37
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
38
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
39
|
-
type?: string;
|
|
40
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
41
|
-
}> | Readonly<{
|
|
42
|
-
id: string;
|
|
43
|
-
position: import("@dxos/util").Position;
|
|
44
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
45
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
46
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
47
|
-
type?: string;
|
|
48
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
49
|
-
}>[] | (Readonly<{
|
|
50
|
-
id: string;
|
|
51
|
-
position: import("@dxos/util").Position;
|
|
52
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
53
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
54
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
55
|
-
type?: string;
|
|
56
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
57
|
-
}> | Readonly<{
|
|
58
|
-
id: string;
|
|
59
|
-
position: import("@dxos/util").Position;
|
|
60
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
61
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
62
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
63
|
-
type?: string;
|
|
64
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
65
|
-
}>[] | (Readonly<{
|
|
66
|
-
id: string;
|
|
67
|
-
position: import("@dxos/util").Position;
|
|
68
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
69
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
70
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
71
|
-
type?: string;
|
|
72
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
73
|
-
}> | Readonly<{
|
|
74
|
-
id: string;
|
|
75
|
-
position: import("@dxos/util").Position;
|
|
76
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
77
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
78
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
79
|
-
type?: string;
|
|
80
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
81
|
-
}>[] | (Readonly<{
|
|
82
|
-
id: string;
|
|
83
|
-
position: import("@dxos/util").Position;
|
|
84
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
85
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
86
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
87
|
-
type?: string;
|
|
88
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
89
|
-
}> | Readonly<{
|
|
90
|
-
id: string;
|
|
91
|
-
position: import("@dxos/util").Position;
|
|
92
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
93
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
94
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
95
|
-
type?: string;
|
|
96
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
97
|
-
}>[] | (Readonly<{
|
|
98
|
-
id: string;
|
|
99
|
-
position: import("@dxos/util").Position;
|
|
100
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
101
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
102
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
103
|
-
type?: string;
|
|
104
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
105
|
-
}> | Readonly<{
|
|
106
|
-
id: string;
|
|
107
|
-
position: import("@dxos/util").Position;
|
|
108
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
109
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
110
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
111
|
-
type?: string;
|
|
112
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
113
|
-
}>[] | (Readonly<{
|
|
114
|
-
id: string;
|
|
115
|
-
position: import("@dxos/util").Position;
|
|
116
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
117
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
118
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
119
|
-
type?: string;
|
|
120
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
121
|
-
}> | Readonly<{
|
|
122
|
-
id: string;
|
|
123
|
-
position: import("@dxos/util").Position;
|
|
124
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
125
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
126
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
127
|
-
type?: string;
|
|
128
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
129
|
-
}>[] | (Readonly<{
|
|
130
|
-
id: string;
|
|
131
|
-
position: import("@dxos/util").Position;
|
|
132
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
133
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
134
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
135
|
-
type?: string;
|
|
136
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
137
|
-
}> | Readonly<{
|
|
138
|
-
id: string;
|
|
139
|
-
position: import("@dxos/util").Position;
|
|
140
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
141
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
142
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
143
|
-
type?: string;
|
|
144
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
145
|
-
}>[] | (Readonly<{
|
|
146
|
-
id: string;
|
|
147
|
-
position: import("@dxos/util").Position;
|
|
148
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
149
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
150
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
151
|
-
type?: string;
|
|
152
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
153
|
-
}> | Readonly<{
|
|
154
|
-
id: string;
|
|
155
|
-
position: import("@dxos/util").Position;
|
|
156
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
157
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
158
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
159
|
-
type?: string;
|
|
160
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
161
|
-
}>[] | (any[] | Readonly<{
|
|
162
|
-
id: string;
|
|
163
|
-
position: import("@dxos/util").Position;
|
|
164
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
165
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
166
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
167
|
-
type?: string;
|
|
168
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
169
|
-
}> | Readonly<{
|
|
170
|
-
id: string;
|
|
171
|
-
position: import("@dxos/util").Position;
|
|
172
|
-
resolver?: import("@dxos/app-graph").ResolverExtension;
|
|
173
|
-
connector?: import("@dxos/app-graph").ConnectorExtension;
|
|
174
|
-
relation?: import("@dxos/app-graph").Relation;
|
|
175
|
-
type?: string;
|
|
176
|
-
filter?: (node: import("@dxos/app-graph").Node) => boolean;
|
|
177
|
-
}>[])[])[])[])[])[])[])[])[])[])[]> | import("@dxos/app-framework").AnyCapability[]>>;
|
|
1
|
+
export declare const AppGraphBuilder: (props?: import("@dxos/app-framework").PluginContext | undefined) => Promise<() => Promise<import("@dxos/app-framework").Capability<import("@dxos/app-graph").BuilderExtensions> | import("@dxos/app-framework").AnyCapability[]>>;
|
|
178
2
|
export declare const ReactSurface: (props?: unknown) => Promise<() => Promise<import("@dxos/app-framework").Capability<import("@dxos/app-framework").Capabilities.ReactSurface> | import("@dxos/app-framework").AnyCapability[]>>;
|
|
179
3
|
export declare const PresenterSettings: (props?: unknown) => Promise<() => Promise<import("@dxos/app-framework").Capability<import("@dxos/app-framework").Capabilities.Settings> | import("@dxos/app-framework").AnyCapability[]>>;
|
|
180
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,eAAe,oOAA4C,CAAC;AACzE,eAAO,MAAM,YAAY,gMAAwC,CAAC;AAClE,eAAO,MAAM,iBAAiB,4LAAmC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../../src/components/Markdown/Container.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,KAAK,iBAAiB,EAAY,MAAM,OAAO,CAAC;AAGhE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../../src/components/Markdown/Container.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,KAAK,iBAAiB,EAAY,MAAM,OAAO,CAAC;AAGhE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,SAAS,GAAI,0BAA0B,cAAc,sBA4BjE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Slide.d.ts","sourceRoot":"","sources":["../../../../../src/components/Markdown/Slide.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,gCAAgC,CAAC;AAIxC,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"Slide.d.ts","sourceRoot":"","sources":["../../../../../src/components/Markdown/Slide.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,gCAAgC,CAAC;AAIxC,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,KAAK,GAAI,sBAAyC,UAAU,sBAwIxE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../../../src/components/Presenter/Layout.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,KAAK,iBAAiB,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEtE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,MAAM,WAAW,GAAG,eAAe,CACvC,iBAAiB,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,WAAW,CAAC,EAAE,SAAS,CAAC;CACzB,CAAC,CACH,CAAC;AAEF,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../../../src/components/Presenter/Layout.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,KAAK,iBAAiB,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEtE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,MAAM,WAAW,GAAG,eAAe,CACvC,iBAAiB,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,WAAW,CAAC,EAAE,SAAS,CAAC;CACzB,CAAC,CACH,CAAC;AAEF,eAAO,MAAM,MAAM,GAAI,sEAAsE,WAAW,sBAavG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pager.d.ts","sourceRoot":"","sources":["../../../../../src/components/Presenter/Pager.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,EAAE,KAAK,EAAE,EAAa,MAAM,OAAO,CAAC;AAKlD,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"Pager.d.ts","sourceRoot":"","sources":["../../../../../src/components/Presenter/Pager.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,EAAE,KAAK,EAAE,EAAa,MAAM,OAAO,CAAC;AAKlD,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,KAAK,GAAI,2DAAmE,UAAU,6BA4ElG,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,kBAA0B,eAAe,6BAYnE,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,OAAO,CAAC,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;CAAE,CAMrF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PresenterSettings.d.ts","sourceRoot":"","sources":["../../../../src/components/PresenterSettings.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAEvD,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"PresenterSettings.d.ts","sourceRoot":"","sources":["../../../../src/components/PresenterSettings.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAEvD,eAAO,MAAM,iBAAiB,GAAI,cAAc;IAAE,QAAQ,EAAE,sBAAsB,CAAA;CAAE,sBAanF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RevealPlayer.d.ts","sourceRoot":"","sources":["../../../../../src/components/RevealPlayer/RevealPlayer.tsx"],"names":[],"mappings":"AAKA,OAAO,2BAA2B,CAAC;AAEnC,OAAO,gCAAgC,CAAC;AAIxC,OAAO,0CAA0C,CAAC;AAIlD,OAAO,KAA4B,MAAM,OAAO,CAAC;AAKjD,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA4CtD,MAAM,MAAM,WAAW,GAAG,eAAe,CAAC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC,CAAC;AAEH,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"RevealPlayer.d.ts","sourceRoot":"","sources":["../../../../../src/components/RevealPlayer/RevealPlayer.tsx"],"names":[],"mappings":"AAKA,OAAO,2BAA2B,CAAC;AAEnC,OAAO,gCAAgC,CAAC;AAIxC,OAAO,0CAA0C,CAAC;AAIlD,OAAO,KAA4B,MAAM,OAAO,CAAC;AAKjD,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA4CtD,MAAM,MAAM,WAAW,GAAG,eAAe,CAAC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC,CAAC;AAEH,eAAO,MAAM,YAAY,GAAI,oDAA2D,WAAW,sBAmGlG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testing.d.ts","sourceRoot":"","sources":["../../../src/testing.ts"],"names":[],"mappings":"AAMA,KAAK,YAAY,GAAG;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"testing.d.ts","sourceRoot":"","sources":["../../../src/testing.ts"],"names":[],"mappings":"AAMA,KAAK,YAAY,GAAG;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,UAAS,YAAiB,WAgCrD,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,eAAU,aAAyE,CAAC"}
|
|
@@ -1,190 +1,22 @@
|
|
|
1
|
+
import { Schema } from 'effect';
|
|
1
2
|
import { type Context } from 'react';
|
|
2
|
-
import { S } from '@dxos/echo-schema';
|
|
3
3
|
import { CollectionType } from '@dxos/plugin-space/types';
|
|
4
4
|
export declare namespace PresenterAction {
|
|
5
|
-
const TogglePresentation_base:
|
|
6
|
-
readonly _tag:
|
|
5
|
+
const TogglePresentation_base: Schema.TaggedClass<TogglePresentation, "dxos.org/plugin/presenter/action/toggle-presentation", {
|
|
6
|
+
readonly _tag: Schema.tag<"dxos.org/plugin/presenter/action/toggle-presentation">;
|
|
7
7
|
} & {
|
|
8
|
-
input:
|
|
9
|
-
object:
|
|
10
|
-
name:
|
|
11
|
-
fallbackName:
|
|
12
|
-
content: import("@dxos/echo-schema").Ref$<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
status: S.optional<S.Union<[S.Literal<["staged"]>, S.Literal<["active"]>, S.Literal<["resolved"]>]>>;
|
|
19
|
-
messages: S.mutable<S.Array$<import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").TypedObjectFields<{
|
|
20
|
-
id: import("@dxos/echo-schema").ObjectIdClass;
|
|
21
|
-
created: S.SchemaClass<string, string, never>;
|
|
22
|
-
sender: S.mutable<S.Struct<{
|
|
23
|
-
contact: S.optional<import("@dxos/echo-schema").Ref$<{
|
|
24
|
-
readonly id: string;
|
|
25
|
-
fields?: {
|
|
26
|
-
readonly value: string;
|
|
27
|
-
readonly label: string;
|
|
28
|
-
readonly category?: string | undefined;
|
|
29
|
-
}[] | undefined;
|
|
30
|
-
organization?: import("@dxos/echo-schema").Ref<{
|
|
31
|
-
readonly id: string;
|
|
32
|
-
description?: string | undefined;
|
|
33
|
-
name?: string | undefined;
|
|
34
|
-
status?: "prospect" | "qualified" | "active" | "commit" | "reject" | undefined;
|
|
35
|
-
image?: string | undefined;
|
|
36
|
-
website?: string | undefined;
|
|
37
|
-
}> | undefined;
|
|
38
|
-
image?: string | undefined;
|
|
39
|
-
fullName?: string | undefined;
|
|
40
|
-
preferredName?: string | undefined;
|
|
41
|
-
nickname?: string | undefined;
|
|
42
|
-
jobTitle?: string | undefined;
|
|
43
|
-
department?: string | undefined;
|
|
44
|
-
notes?: string | undefined;
|
|
45
|
-
emails?: {
|
|
46
|
-
readonly value: string;
|
|
47
|
-
readonly label?: string | undefined;
|
|
48
|
-
}[] | undefined;
|
|
49
|
-
identities?: {
|
|
50
|
-
readonly value: string;
|
|
51
|
-
readonly label?: string | undefined;
|
|
52
|
-
}[] | undefined;
|
|
53
|
-
phoneNumbers?: {
|
|
54
|
-
readonly value: string;
|
|
55
|
-
readonly label?: string | undefined;
|
|
56
|
-
}[] | undefined;
|
|
57
|
-
addresses?: {
|
|
58
|
-
readonly value: {
|
|
59
|
-
readonly street?: string | undefined;
|
|
60
|
-
readonly extended?: string | undefined;
|
|
61
|
-
readonly locality?: string | undefined;
|
|
62
|
-
readonly region?: string | undefined;
|
|
63
|
-
readonly postalCode?: string | undefined;
|
|
64
|
-
readonly postOfficeBoxNumber?: string | undefined;
|
|
65
|
-
readonly country?: string | undefined;
|
|
66
|
-
};
|
|
67
|
-
readonly label?: string | undefined;
|
|
68
|
-
}[] | undefined;
|
|
69
|
-
urls?: {
|
|
70
|
-
readonly value: string;
|
|
71
|
-
readonly label?: string | undefined;
|
|
72
|
-
}[] | undefined;
|
|
73
|
-
birthday?: {
|
|
74
|
-
toString: () => string;
|
|
75
|
-
toDateString: () => string;
|
|
76
|
-
toTimeString: () => string;
|
|
77
|
-
toLocaleString: {
|
|
78
|
-
(): string;
|
|
79
|
-
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
80
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
81
|
-
};
|
|
82
|
-
toLocaleDateString: {
|
|
83
|
-
(): string;
|
|
84
|
-
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
85
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
86
|
-
};
|
|
87
|
-
toLocaleTimeString: {
|
|
88
|
-
(): string;
|
|
89
|
-
(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;
|
|
90
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
|
|
91
|
-
};
|
|
92
|
-
valueOf: () => number;
|
|
93
|
-
getTime: () => number;
|
|
94
|
-
getFullYear: () => number;
|
|
95
|
-
getUTCFullYear: () => number;
|
|
96
|
-
getMonth: () => number;
|
|
97
|
-
getUTCMonth: () => number;
|
|
98
|
-
getDate: () => number;
|
|
99
|
-
getUTCDate: () => number;
|
|
100
|
-
getDay: () => number;
|
|
101
|
-
getUTCDay: () => number;
|
|
102
|
-
getHours: () => number;
|
|
103
|
-
getUTCHours: () => number;
|
|
104
|
-
getMinutes: () => number;
|
|
105
|
-
getUTCMinutes: () => number;
|
|
106
|
-
getSeconds: () => number;
|
|
107
|
-
getUTCSeconds: () => number;
|
|
108
|
-
getMilliseconds: () => number;
|
|
109
|
-
getUTCMilliseconds: () => number;
|
|
110
|
-
getTimezoneOffset: () => number;
|
|
111
|
-
setTime: (time: number) => number;
|
|
112
|
-
setMilliseconds: (ms: number) => number;
|
|
113
|
-
setUTCMilliseconds: (ms: number) => number;
|
|
114
|
-
setSeconds: (sec: number, ms?: number) => number;
|
|
115
|
-
setUTCSeconds: (sec: number, ms?: number) => number;
|
|
116
|
-
setMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
117
|
-
setUTCMinutes: (min: number, sec?: number, ms?: number) => number;
|
|
118
|
-
setHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
119
|
-
setUTCHours: (hours: number, min?: number, sec?: number, ms?: number) => number;
|
|
120
|
-
setDate: (date: number) => number;
|
|
121
|
-
setUTCDate: (date: number) => number;
|
|
122
|
-
setMonth: (month: number, date?: number) => number;
|
|
123
|
-
setUTCMonth: (month: number, date?: number) => number;
|
|
124
|
-
setFullYear: (year: number, month?: number, date?: number) => number;
|
|
125
|
-
setUTCFullYear: (year: number, month?: number, date?: number) => number;
|
|
126
|
-
toUTCString: () => string;
|
|
127
|
-
toISOString: () => string;
|
|
128
|
-
toJSON: (key?: any) => string;
|
|
129
|
-
[Symbol.toPrimitive]: {
|
|
130
|
-
(hint: "default"): string;
|
|
131
|
-
(hint: "string"): string;
|
|
132
|
-
(hint: "number"): number;
|
|
133
|
-
(hint: string): string | number;
|
|
134
|
-
};
|
|
135
|
-
} | undefined;
|
|
136
|
-
}>>;
|
|
137
|
-
identityDid: S.optional<typeof S.String>;
|
|
138
|
-
identityKey: S.optional<typeof S.String>;
|
|
139
|
-
email: S.optional<typeof S.String>;
|
|
140
|
-
name: S.optional<typeof S.String>;
|
|
141
|
-
role: S.optional<S.Literal<["user", "assistant"]>>;
|
|
142
|
-
}>>;
|
|
143
|
-
blocks: S.mutable<S.Array$<S.Union<[S.mutable<S.extend<S.Struct<{
|
|
144
|
-
pending: S.optional<typeof S.Boolean>;
|
|
145
|
-
}>, S.Struct<{
|
|
146
|
-
type: S.Literal<["text"]>;
|
|
147
|
-
disposition: S.optional<typeof S.String>;
|
|
148
|
-
text: typeof S.String;
|
|
149
|
-
}>>>, S.mutable<S.extend<S.Struct<{
|
|
150
|
-
pending: S.optional<typeof S.Boolean>;
|
|
151
|
-
}>, S.Struct<{
|
|
152
|
-
type: S.Literal<["json"]>;
|
|
153
|
-
disposition: S.optional<typeof S.String>;
|
|
154
|
-
data: typeof S.String;
|
|
155
|
-
}>>>, S.mutable<S.extend<S.Struct<{
|
|
156
|
-
pending: S.optional<typeof S.Boolean>;
|
|
157
|
-
}>, S.Struct<{
|
|
158
|
-
type: S.Literal<["image"]>;
|
|
159
|
-
id: S.optional<typeof S.String>;
|
|
160
|
-
source: S.optional<S.Union<[S.mutable<S.Struct<{
|
|
161
|
-
type: S.Literal<["base64"]>;
|
|
162
|
-
mediaType: typeof S.String;
|
|
163
|
-
data: typeof S.String;
|
|
164
|
-
}>>, S.mutable<S.Struct<{
|
|
165
|
-
type: S.Literal<["http"]>;
|
|
166
|
-
url: typeof S.String;
|
|
167
|
-
}>>]>>;
|
|
168
|
-
}>>>, S.mutable<S.extend<S.Struct<{
|
|
169
|
-
pending: S.optional<typeof S.Boolean>;
|
|
170
|
-
}>, S.Struct<{
|
|
171
|
-
type: S.Literal<["reference"]>;
|
|
172
|
-
reference: import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").Expando>;
|
|
173
|
-
}>>>, S.mutable<S.extend<S.Struct<{
|
|
174
|
-
pending: S.optional<typeof S.Boolean>;
|
|
175
|
-
}>, S.Struct<{
|
|
176
|
-
type: S.Literal<["transcription"]>;
|
|
177
|
-
started: typeof S.String;
|
|
178
|
-
text: typeof S.String;
|
|
179
|
-
}>>>]>>>;
|
|
180
|
-
properties: S.optional<S.mutable<S.Record$<typeof S.String, typeof S.Any>>>;
|
|
181
|
-
}, import("@dxos/echo-schema").TypedObjectOptions>>>>;
|
|
182
|
-
}, import("@dxos/echo-schema").TypedObjectOptions>>>>;
|
|
183
|
-
assistantChatQueue: S.optional<import("@dxos/echo-schema").Ref$<import("@dxos/echo-schema").Expando>>;
|
|
184
|
-
}>>, typeof CollectionType]>;
|
|
185
|
-
state: S.optional<typeof S.Boolean>;
|
|
8
|
+
input: Schema.Struct<{
|
|
9
|
+
object: Schema.Union<[import("@dxos/echo-schema").EchoTypeSchema<Schema.Struct<{
|
|
10
|
+
name: Schema.optional<typeof Schema.String>;
|
|
11
|
+
fallbackName: Schema.optional<typeof Schema.String>;
|
|
12
|
+
content: import("@dxos/echo-schema").Ref$<{
|
|
13
|
+
readonly id: string;
|
|
14
|
+
content: string;
|
|
15
|
+
}>;
|
|
16
|
+
}>, {}>, typeof CollectionType]>;
|
|
17
|
+
state: Schema.optional<typeof Schema.Boolean>;
|
|
186
18
|
}>;
|
|
187
|
-
output: typeof
|
|
19
|
+
output: typeof Schema.Void;
|
|
188
20
|
}>;
|
|
189
21
|
export class TogglePresentation extends TogglePresentation_base {
|
|
190
22
|
}
|
|
@@ -196,8 +28,8 @@ export type PresenterContextType = {
|
|
|
196
28
|
stop: () => void;
|
|
197
29
|
};
|
|
198
30
|
export declare const PresenterContext: Context<PresenterContextType>;
|
|
199
|
-
export declare const PresenterSettingsSchema:
|
|
200
|
-
presentCollections:
|
|
31
|
+
export declare const PresenterSettingsSchema: Schema.mutable<Schema.Struct<{
|
|
32
|
+
presentCollections: Schema.optional<typeof Schema.Boolean>;
|
|
201
33
|
}>>;
|
|
202
|
-
export type PresenterSettingsProps =
|
|
34
|
+
export type PresenterSettingsProps = Schema.Schema.Type<typeof PresenterSettingsSchema>;
|
|
203
35
|
//# sourceMappingURL=types.d.ts.map
|