@atlaskit/task-decision 17.9.12 → 17.10.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +809 -364
  2. package/afm-cc/tsconfig.json +0 -3
  3. package/dist/cjs/components/styles.js +158 -12
  4. package/dist/cjs/components/theme.js +4 -5
  5. package/dist/es2019/components/styles.js +147 -185
  6. package/dist/es2019/components/theme.js +5 -6
  7. package/dist/esm/components/styles.js +158 -12
  8. package/dist/esm/components/theme.js +5 -6
  9. package/dist/types/api/TaskDecisionResource.d.ts +1 -1
  10. package/dist/types/api/TaskDecisionUtils.d.ts +1 -1
  11. package/dist/types/components/DecisionItem.d.ts +1 -1
  12. package/dist/types/components/DecisionList.d.ts +1 -1
  13. package/dist/types/components/Item.d.ts +1 -1
  14. package/dist/types/components/ResourcedTaskItem.d.ts +1 -1
  15. package/dist/types/components/TaskItem.d.ts +2 -2
  16. package/dist/types/components/TaskList.d.ts +1 -1
  17. package/dist/types/components/theme.d.ts +4 -4
  18. package/dist/types/index.d.ts +1 -1
  19. package/dist/types/type-helpers.d.ts +1 -1
  20. package/dist/types/types.d.ts +1 -1
  21. package/dist/types-ts4.5/api/TaskDecisionResource.d.ts +1 -1
  22. package/dist/types-ts4.5/api/TaskDecisionUtils.d.ts +1 -1
  23. package/dist/types-ts4.5/components/DecisionItem.d.ts +1 -1
  24. package/dist/types-ts4.5/components/DecisionList.d.ts +1 -1
  25. package/dist/types-ts4.5/components/Item.d.ts +1 -1
  26. package/dist/types-ts4.5/components/ResourcedTaskItem.d.ts +1 -1
  27. package/dist/types-ts4.5/components/TaskItem.d.ts +2 -2
  28. package/dist/types-ts4.5/components/TaskList.d.ts +1 -1
  29. package/dist/types-ts4.5/components/theme.d.ts +4 -4
  30. package/dist/types-ts4.5/index.d.ts +1 -1
  31. package/dist/types-ts4.5/type-helpers.d.ts +1 -1
  32. package/dist/types-ts4.5/types.d.ts +1 -1
  33. package/docs/01-intro.tsx +8 -14
  34. package/package.json +7 -14
  35. package/report.api.md +269 -268
package/report.api.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  ## API Report File for "@atlaskit/task-decision"
4
4
 
5
- > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using
6
+ > [API Extractor](https://api-extractor.com/).
6
7
  > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
8
 
8
9
  ### Table of contents
@@ -35,18 +36,18 @@ export type AVI = string;
35
36
 
36
37
  // @public (undocumented)
37
38
  export interface BaseItem<S> extends ObjectKey {
38
- // (undocumented)
39
- lastUpdateDate: Date;
40
- // (undocumented)
41
- state: S;
42
- // (undocumented)
43
- type: DecisionType | TaskType;
39
+ // (undocumented)
40
+ lastUpdateDate: Date;
41
+ // (undocumented)
42
+ state: S;
43
+ // (undocumented)
44
+ type: DecisionType | TaskType;
44
45
  }
45
46
 
46
47
  // @public (undocumented)
47
48
  export interface ContentRef {
48
- // (undocumented)
49
- (ref: HTMLElement | null): void;
49
+ // (undocumented)
50
+ (ref: HTMLElement | null): void;
50
51
  }
51
52
 
52
53
  // @public (undocumented)
@@ -54,36 +55,36 @@ export type Cursor = string;
54
55
 
55
56
  // @public (undocumented)
56
57
  export interface Decision extends BaseItem<DecisionState> {
57
- // (undocumented)
58
- creationDate?: Date;
59
- // (undocumented)
60
- creator?: UserId;
61
- // (undocumented)
62
- lastUpdateDate: Date;
63
- // (undocumented)
64
- lastUpdater?: UserId;
65
- // (undocumented)
66
- participants?: UserId[];
67
- // (undocumented)
68
- status: DecisionStatus;
69
- // (undocumented)
70
- type: DecisionType;
58
+ // (undocumented)
59
+ creationDate?: Date;
60
+ // (undocumented)
61
+ creator?: UserId;
62
+ // (undocumented)
63
+ lastUpdateDate: Date;
64
+ // (undocumented)
65
+ lastUpdater?: UserId;
66
+ // (undocumented)
67
+ participants?: UserId[];
68
+ // (undocumented)
69
+ status: DecisionStatus;
70
+ // (undocumented)
71
+ type: DecisionType;
71
72
  }
72
73
 
73
74
  // @public (undocumented)
74
75
  export const DecisionItem: ({
75
- appearance,
76
- children,
77
- contentRef,
78
- placeholder,
79
- showPlaceholder,
80
- dataAttributes,
76
+ appearance,
77
+ children,
78
+ contentRef,
79
+ placeholder,
80
+ showPlaceholder,
81
+ dataAttributes,
81
82
  }: Props) => jsx.JSX.Element;
82
83
 
83
84
  // @public (undocumented)
84
85
  export class DecisionList extends PureComponent<Props_2, {}> {
85
- // (undocumented)
86
- render(): jsx.JSX.Element | null;
86
+ // (undocumented)
87
+ render(): jsx.JSX.Element | null;
87
88
  }
88
89
 
89
90
  // @public (undocumented)
@@ -103,156 +104,156 @@ export type Item = Decision | Task;
103
104
 
104
105
  // @public (undocumented)
105
106
  export interface Meta {
106
- // (undocumented)
107
- cursor?: string;
107
+ // (undocumented)
108
+ cursor?: string;
108
109
  }
109
110
 
110
111
  // @public (undocumented)
111
112
  export interface ObjectKey {
112
- // (undocumented)
113
- containerAri?: string;
114
- // (undocumented)
115
- localId: string;
116
- // (undocumented)
117
- objectAri: string;
113
+ // (undocumented)
114
+ containerAri?: string;
115
+ // (undocumented)
116
+ localId: string;
117
+ // (undocumented)
118
+ objectAri: string;
118
119
  }
119
120
 
120
121
  // @public (undocumented)
121
122
  export interface OnUpdate<T> {
122
- // (undocumented)
123
- (allDecisions: T[], newDecisions: T[]): void;
123
+ // (undocumented)
124
+ (allDecisions: T[], newDecisions: T[]): void;
124
125
  }
125
126
 
126
127
  // @public (undocumented)
127
128
  interface Props {
128
- // (undocumented)
129
- appearance?: Appearance;
130
- // (undocumented)
131
- children?: any;
132
- // (undocumented)
133
- contentRef?: ContentRef;
134
- // (undocumented)
135
- dataAttributes?: {
136
- [key: string]: number | string;
137
- };
138
- // (undocumented)
139
- placeholder?: string;
140
- // (undocumented)
141
- showPlaceholder?: boolean;
129
+ // (undocumented)
130
+ appearance?: Appearance;
131
+ // (undocumented)
132
+ children?: any;
133
+ // (undocumented)
134
+ contentRef?: ContentRef;
135
+ // (undocumented)
136
+ dataAttributes?: {
137
+ [key: string]: number | string;
138
+ };
139
+ // (undocumented)
140
+ placeholder?: string;
141
+ // (undocumented)
142
+ showPlaceholder?: boolean;
142
143
  }
143
144
 
144
145
  // @public (undocumented)
145
146
  interface Props_2 {
146
- // (undocumented)
147
- children?: ReactNode;
147
+ // (undocumented)
148
+ children?: ReactNode;
148
149
  }
149
150
 
150
151
  // @public (undocumented)
151
152
  interface Props_3 {
152
- // (undocumented)
153
- appearance?: Appearance;
154
- // (undocumented)
155
- children?: any;
156
- // (undocumented)
157
- contentRef?: ContentRef;
158
- // (undocumented)
159
- dataAttributes?: {
160
- [key: string]: number | string;
161
- };
162
- // (undocumented)
163
- disabled?: boolean;
164
- // (undocumented)
165
- isDone?: boolean;
166
- // (undocumented)
167
- isFocused?: boolean;
168
- // (undocumented)
169
- isRenderer?: boolean;
170
- // (undocumented)
171
- objectAri?: string;
172
- // (undocumented)
173
- onChange?: (taskId: string, isChecked: boolean) => void;
174
- // (undocumented)
175
- placeholder?: string;
176
- // (undocumented)
177
- showPlaceholder?: boolean;
178
- // (undocumented)
179
- taskDecisionProvider?: Promise<TaskDecisionProvider>;
180
- // (undocumented)
181
- taskId: string;
153
+ // (undocumented)
154
+ appearance?: Appearance;
155
+ // (undocumented)
156
+ children?: any;
157
+ // (undocumented)
158
+ contentRef?: ContentRef;
159
+ // (undocumented)
160
+ dataAttributes?: {
161
+ [key: string]: number | string;
162
+ };
163
+ // (undocumented)
164
+ disabled?: boolean;
165
+ // (undocumented)
166
+ isDone?: boolean;
167
+ // (undocumented)
168
+ isFocused?: boolean;
169
+ // (undocumented)
170
+ isRenderer?: boolean;
171
+ // (undocumented)
172
+ objectAri?: string;
173
+ // (undocumented)
174
+ onChange?: (taskId: string, isChecked: boolean) => void;
175
+ // (undocumented)
176
+ placeholder?: string;
177
+ // (undocumented)
178
+ showPlaceholder?: boolean;
179
+ // (undocumented)
180
+ taskDecisionProvider?: Promise<TaskDecisionProvider>;
181
+ // (undocumented)
182
+ taskId: string;
182
183
  }
183
184
 
184
185
  // @public (undocumented)
185
186
  interface Props_4 {
186
- // (undocumented)
187
- appearance?: Appearance;
188
- // (undocumented)
189
- children?: any;
190
- // (undocumented)
191
- contentRef?: ContentRef;
192
- // (undocumented)
193
- dataAttributes?: {
194
- [key: string]: number | string;
195
- };
196
- // (undocumented)
197
- disabled?: boolean;
198
- // (undocumented)
199
- isDone?: boolean;
200
- // (undocumented)
201
- isFocused?: boolean;
202
- // (undocumented)
203
- isRenderer?: boolean;
204
- // (undocumented)
205
- onChange?: (taskId: string, isChecked: boolean) => void;
206
- // (undocumented)
207
- placeholder?: string;
208
- // (undocumented)
209
- showPlaceholder?: boolean;
210
- // (undocumented)
211
- taskId: string;
187
+ // (undocumented)
188
+ appearance?: Appearance;
189
+ // (undocumented)
190
+ children?: any;
191
+ // (undocumented)
192
+ contentRef?: ContentRef;
193
+ // (undocumented)
194
+ dataAttributes?: {
195
+ [key: string]: number | string;
196
+ };
197
+ // (undocumented)
198
+ disabled?: boolean;
199
+ // (undocumented)
200
+ isDone?: boolean;
201
+ // (undocumented)
202
+ isFocused?: boolean;
203
+ // (undocumented)
204
+ isRenderer?: boolean;
205
+ // (undocumented)
206
+ onChange?: (taskId: string, isChecked: boolean) => void;
207
+ // (undocumented)
208
+ placeholder?: string;
209
+ // (undocumented)
210
+ showPlaceholder?: boolean;
211
+ // (undocumented)
212
+ taskId: string;
212
213
  }
213
214
 
214
215
  // @public (undocumented)
215
216
  interface Props_5 {
216
- // (undocumented)
217
- children?: ReactNode;
218
- // (undocumented)
219
- listId?: string;
217
+ // (undocumented)
218
+ children?: ReactNode;
219
+ // (undocumented)
220
+ listId?: string;
220
221
  }
221
222
 
222
223
  // @public (undocumented)
223
224
  export interface PubSubClient {
224
- // (undocumented)
225
- join(aris: ARI[]): Promise<PubSubClient>;
226
- // (undocumented)
227
- leave(aris: ARI[]): Promise<PubSubClient>;
228
- // (undocumented)
229
- off(eventAvi: string, listener: PubSubOnEvent): PubSubClient;
230
- // (undocumented)
231
- on(eventAvi: string, listener: PubSubOnEvent): PubSubClient;
225
+ // (undocumented)
226
+ join(aris: ARI[]): Promise<PubSubClient>;
227
+ // (undocumented)
228
+ leave(aris: ARI[]): Promise<PubSubClient>;
229
+ // (undocumented)
230
+ off(eventAvi: string, listener: PubSubOnEvent): PubSubClient;
231
+ // (undocumented)
232
+ on(eventAvi: string, listener: PubSubOnEvent): PubSubClient;
232
233
  }
233
234
 
234
235
  // @public (undocumented)
235
236
  export interface PubSubOnEvent<T = any> {
236
- // (undocumented)
237
- (event: string, data: T): void;
237
+ // (undocumented)
238
+ (event: string, data: T): void;
238
239
  }
239
240
 
240
241
  // @public (undocumented)
241
242
  export enum PubSubSpecialEventType {
242
- // (undocumented)
243
- CONNECTED = 'CONNECTED',
244
- // (undocumented)
245
- ERROR = 'ERROR',
246
- // (undocumented)
247
- RECONNECT = 'RECONNECT',
243
+ // (undocumented)
244
+ CONNECTED = 'CONNECTED',
245
+ // (undocumented)
246
+ ERROR = 'ERROR',
247
+ // (undocumented)
248
+ RECONNECT = 'RECONNECT',
248
249
  }
249
250
 
250
251
  // @public (undocumented)
251
252
  export interface RecentUpdateContext {
252
- // (undocumented)
253
- localId?: string;
254
- // (undocumented)
255
- objectAri: string;
253
+ // (undocumented)
254
+ localId?: string;
255
+ // (undocumented)
256
+ objectAri: string;
256
257
  }
257
258
 
258
259
  // @public (undocumented)
@@ -260,69 +261,69 @@ export type RecentUpdatesId = string;
260
261
 
261
262
  // @public
262
263
  export interface RecentUpdatesListener {
263
- id(id: RecentUpdatesId): void;
264
- recentUpdates(updateContext: RecentUpdateContext): void;
264
+ id(id: RecentUpdatesId): void;
265
+ recentUpdates(updateContext: RecentUpdateContext): void;
265
266
  }
266
267
 
267
268
  // @public (undocumented)
268
269
  export interface RenderDocument {
269
- // (undocumented)
270
- (document: any, rendererContext?: RendererContext): JSX.Element;
270
+ // (undocumented)
271
+ (document: any, rendererContext?: RendererContext): JSX.Element;
271
272
  }
272
273
 
273
274
  // @public
274
275
  export interface RendererContext {
275
- // (undocumented)
276
- containerAri?: string;
277
- // (undocumented)
278
- objectAri: string;
276
+ // (undocumented)
277
+ containerAri?: string;
278
+ // (undocumented)
279
+ objectAri: string;
279
280
  }
280
281
 
281
282
  // @public (undocumented)
282
283
  export class ResourcedTaskItem extends PureComponent<Props_3, State> {
283
- constructor(props: Props_3);
284
- // (undocumented)
285
- componentDidMount(): void;
286
- // (undocumented)
287
- componentWillUnmount(): void;
288
- // (undocumented)
289
- static defaultProps: Partial<Props_3>;
290
- // (undocumented)
291
- render(): JSX.Element;
292
- // (undocumented)
293
- UNSAFE_componentWillReceiveProps(nextProps: Props_3): void;
284
+ constructor(props: Props_3);
285
+ // (undocumented)
286
+ componentDidMount(): void;
287
+ // (undocumented)
288
+ componentWillUnmount(): void;
289
+ // (undocumented)
290
+ static defaultProps: Partial<Props_3>;
291
+ // (undocumented)
292
+ render(): JSX.Element;
293
+ // (undocumented)
294
+ UNSAFE_componentWillReceiveProps(nextProps: Props_3): void;
294
295
  }
295
296
 
296
297
  // @public (undocumented)
297
298
  export interface ServiceDecision {
298
- // (undocumented)
299
- creationDate?: string;
300
- // (undocumented)
301
- creatorId?: UserId;
302
- // (undocumented)
303
- lastUpdateDate: string;
304
- // (undocumented)
305
- lastUpdaterId?: UserId;
306
- // (undocumented)
307
- localId: string;
308
- // (undocumented)
309
- objectAri: string;
310
- // (undocumented)
311
- participants?: UserId[];
312
- // (undocumented)
313
- state?: DecisionState;
314
- // (undocumented)
315
- status: DecisionStatus;
316
- // (undocumented)
317
- type: DecisionType;
299
+ // (undocumented)
300
+ creationDate?: string;
301
+ // (undocumented)
302
+ creatorId?: UserId;
303
+ // (undocumented)
304
+ lastUpdateDate: string;
305
+ // (undocumented)
306
+ lastUpdaterId?: UserId;
307
+ // (undocumented)
308
+ localId: string;
309
+ // (undocumented)
310
+ objectAri: string;
311
+ // (undocumented)
312
+ participants?: UserId[];
313
+ // (undocumented)
314
+ state?: DecisionState;
315
+ // (undocumented)
316
+ status: DecisionStatus;
317
+ // (undocumented)
318
+ type: DecisionType;
318
319
  }
319
320
 
320
321
  // @public (undocumented)
321
322
  export interface ServiceDecisionResponse {
322
- // (undocumented)
323
- decisions: ServiceDecision[];
324
- // (undocumented)
325
- meta: Meta;
323
+ // (undocumented)
324
+ decisions: ServiceDecision[];
325
+ // (undocumented)
326
+ meta: Meta;
326
327
  }
327
328
 
328
329
  // @public (undocumented)
@@ -330,123 +331,123 @@ export type ServiceItem = ServiceDecision | ServiceTask;
330
331
 
331
332
  // @public (undocumented)
332
333
  export interface ServiceTask {
333
- // (undocumented)
334
- creationDate?: string;
335
- // (undocumented)
336
- creatorId?: UserId;
337
- // (undocumented)
338
- lastUpdateDate: string;
339
- // (undocumented)
340
- lastUpdaterId?: UserId;
341
- // (undocumented)
342
- localId: string;
343
- // (undocumented)
344
- objectAri: string;
345
- // (undocumented)
346
- parentLocalId?: string;
347
- // (undocumented)
348
- participants?: UserId[];
349
- // (undocumented)
350
- position: number;
351
- // (undocumented)
352
- state: TaskState;
353
- // (undocumented)
354
- type: TaskType;
334
+ // (undocumented)
335
+ creationDate?: string;
336
+ // (undocumented)
337
+ creatorId?: UserId;
338
+ // (undocumented)
339
+ lastUpdateDate: string;
340
+ // (undocumented)
341
+ lastUpdaterId?: UserId;
342
+ // (undocumented)
343
+ localId: string;
344
+ // (undocumented)
345
+ objectAri: string;
346
+ // (undocumented)
347
+ parentLocalId?: string;
348
+ // (undocumented)
349
+ participants?: UserId[];
350
+ // (undocumented)
351
+ position: number;
352
+ // (undocumented)
353
+ state: TaskState;
354
+ // (undocumented)
355
+ type: TaskType;
355
356
  }
356
357
 
357
358
  // @public (undocumented)
358
359
  export interface ServiceTaskState {
359
- // (undocumented)
360
- lastUpdateDate: string;
361
- // (undocumented)
362
- localId: string;
363
- // (undocumented)
364
- objectAri: string;
365
- // (undocumented)
366
- state: TaskState;
360
+ // (undocumented)
361
+ lastUpdateDate: string;
362
+ // (undocumented)
363
+ localId: string;
364
+ // (undocumented)
365
+ objectAri: string;
366
+ // (undocumented)
367
+ state: TaskState;
367
368
  }
368
369
 
369
370
  // @public (undocumented)
370
371
  interface State {
371
- // (undocumented)
372
- isDone?: boolean;
372
+ // (undocumented)
373
+ isDone?: boolean;
373
374
  }
374
375
 
375
376
  // @public (undocumented)
376
377
  export interface Task extends BaseItem<TaskState> {
377
- // (undocumented)
378
- creationDate?: Date;
379
- // (undocumented)
380
- creator?: UserId;
381
- // (undocumented)
382
- lastUpdateDate: Date;
383
- // (undocumented)
384
- lastUpdater?: UserId;
385
- // (undocumented)
386
- parentLocalId?: string;
387
- // (undocumented)
388
- participants?: UserId[];
389
- // (undocumented)
390
- position?: number;
391
- // (undocumented)
392
- type: TaskType;
378
+ // (undocumented)
379
+ creationDate?: Date;
380
+ // (undocumented)
381
+ creator?: UserId;
382
+ // (undocumented)
383
+ lastUpdateDate: Date;
384
+ // (undocumented)
385
+ lastUpdater?: UserId;
386
+ // (undocumented)
387
+ parentLocalId?: string;
388
+ // (undocumented)
389
+ participants?: UserId[];
390
+ // (undocumented)
391
+ position?: number;
392
+ // (undocumented)
393
+ type: TaskType;
393
394
  }
394
395
 
395
396
  // @public (undocumented)
396
397
  export interface TaskDecisionProvider {
397
- // (undocumented)
398
- notifyRecentUpdates(updateContext: RecentUpdateContext): void;
399
- // (undocumented)
400
- subscribe(
401
- objectKey: ObjectKey,
402
- handler: Handler,
403
- item?: BaseItem<DecisionState | TaskState>,
404
- ): void;
405
- // (undocumented)
406
- toggleTask(objectKey: ObjectKey, state: TaskState): Promise<TaskState>;
407
- // (undocumented)
408
- unsubscribe(objectKey: ObjectKey, handler: Handler): void;
409
- // (undocumented)
410
- unsubscribeRecentUpdates(id: RecentUpdatesId): void;
398
+ // (undocumented)
399
+ notifyRecentUpdates(updateContext: RecentUpdateContext): void;
400
+ // (undocumented)
401
+ subscribe(
402
+ objectKey: ObjectKey,
403
+ handler: Handler,
404
+ item?: BaseItem<DecisionState | TaskState>,
405
+ ): void;
406
+ // (undocumented)
407
+ toggleTask(objectKey: ObjectKey, state: TaskState): Promise<TaskState>;
408
+ // (undocumented)
409
+ unsubscribe(objectKey: ObjectKey, handler: Handler): void;
410
+ // (undocumented)
411
+ unsubscribeRecentUpdates(id: RecentUpdatesId): void;
411
412
  }
412
413
 
413
414
  // @public (undocumented)
414
415
  export class TaskDecisionResource implements TaskDecisionProvider {
415
- constructor(serviceConfig: TaskDecisionResourceConfig);
416
- destroy(): void;
417
- // (undocumented)
418
- notifyRecentUpdates(recentUpdateContext: RecentUpdateContext): void;
419
- // (undocumented)
420
- subscribe(
421
- objectKey: ObjectKey,
422
- handler: Handler,
423
- item?: BaseItem<DecisionState | TaskState>,
424
- ): void;
425
- // (undocumented)
426
- toggleTask(objectKey: ObjectKey, state: TaskState): Promise<TaskState>;
427
- // (undocumented)
428
- unsubscribe(objectKey: ObjectKey, handler: Handler): void;
429
- // (undocumented)
430
- unsubscribeRecentUpdates(id: RecentUpdatesId): void;
416
+ constructor(serviceConfig: TaskDecisionResourceConfig);
417
+ destroy(): void;
418
+ // (undocumented)
419
+ notifyRecentUpdates(recentUpdateContext: RecentUpdateContext): void;
420
+ // (undocumented)
421
+ subscribe(
422
+ objectKey: ObjectKey,
423
+ handler: Handler,
424
+ item?: BaseItem<DecisionState | TaskState>,
425
+ ): void;
426
+ // (undocumented)
427
+ toggleTask(objectKey: ObjectKey, state: TaskState): Promise<TaskState>;
428
+ // (undocumented)
429
+ unsubscribe(objectKey: ObjectKey, handler: Handler): void;
430
+ // (undocumented)
431
+ unsubscribeRecentUpdates(id: RecentUpdatesId): void;
431
432
  }
432
433
 
433
434
  // @public (undocumented)
434
435
  export interface TaskDecisionResourceConfig extends ServiceConfig {
435
- disableServiceHydration?: boolean;
436
- // (undocumented)
437
- pubSubClient?: PubSubClient;
436
+ disableServiceHydration?: boolean;
437
+ // (undocumented)
438
+ pubSubClient?: PubSubClient;
438
439
  }
439
440
 
440
441
  // @public (undocumented)
441
442
  export const TaskItem: React_2.ForwardRefExoticComponent<
442
- Omit<Props_4 & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps> &
443
- React_2.RefAttributes<any>
443
+ Omit<Props_4 & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps> &
444
+ React_2.RefAttributes<any>
444
445
  >;
445
446
 
446
447
  // @public (undocumented)
447
448
  export class TaskList extends PureComponent<Props_5, {}> {
448
- // (undocumented)
449
- render(): jsx.JSX.Element | null;
449
+ // (undocumented)
450
+ render(): jsx.JSX.Element | null;
450
451
  }
451
452
 
452
453
  // @public (undocumented)
@@ -469,9 +470,9 @@ export type UserId = string;
469
470
 
470
471
  ```json
471
472
  {
472
- "react": "^16.8.0",
473
- "react-dom": "^16.8.0",
474
- "url-search-params": "^0.10.0"
473
+ "react": "^16.8.0",
474
+ "react-dom": "^16.8.0",
475
+ "url-search-params": "^0.10.0"
475
476
  }
476
477
  ```
477
478