roamjs-components 0.53.3 → 0.53.6
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/package.json +1 -1
- package/types/index.d.ts +3 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -400,10 +400,12 @@ declare global {
|
|
|
400
400
|
conditions: QueryBuilderCondition[];
|
|
401
401
|
selections: QueryBuilderSelection[];
|
|
402
402
|
}) => Promise<void>;
|
|
403
|
+
defaultReturnNode?: string;
|
|
403
404
|
}) => JSX.Element;
|
|
404
405
|
QueryPage: (props: {
|
|
405
406
|
pageUid: string;
|
|
406
407
|
configUid?: string;
|
|
408
|
+
defaultReturnNode?: string;
|
|
407
409
|
}) => JSX.Element;
|
|
408
410
|
ResultsView: (props: {
|
|
409
411
|
parentUid: string;
|
|
@@ -412,6 +414,7 @@ declare global {
|
|
|
412
414
|
resultContent?: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
413
415
|
hideResults?: boolean;
|
|
414
416
|
resultFilter?: (r: QueryBuilderResult) => boolean;
|
|
417
|
+
ctrlClick?: (r: QueryBuilderResult) => void;
|
|
415
418
|
}) => JSX.Element;
|
|
416
419
|
fireQuery: (query: {
|
|
417
420
|
returnNode: string;
|