@mongodb-js/compass-aggregations 0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0 → 0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557

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 (60) hide show
  1. package/README.md +1 -2
  2. package/dist/browser.js +1 -1
  3. package/dist/index.css +0 -119
  4. package/dist/index.js +1 -1
  5. package/dist/src/components/pipeline-builder-input-documents.d.ts +14 -0
  6. package/dist/src/components/pipeline-builder-input-documents.d.ts.map +1 -0
  7. package/dist/src/components/pipeline-builder-workspace/pipeline-builder-ui-workspace.d.ts.map +1 -1
  8. package/dist/src/components/pipeline-results-workspace/pipeline-empty-results.d.ts.map +1 -1
  9. package/dist/src/components/pipeline-results-workspace/pipeline-results-header.d.ts.map +1 -1
  10. package/dist/src/components/pipeline-results-workspace/pipeline-results-view-controls.d.ts.map +1 -1
  11. package/dist/src/components/pipeline-toolbar/index.d.ts +1 -2
  12. package/dist/src/components/pipeline-toolbar/index.d.ts.map +1 -1
  13. package/dist/src/components/pipeline-toolbar/pipeline-settings/pipeline-extra-settings.d.ts.map +1 -1
  14. package/dist/src/components/pipeline-toolbar/pipeline-settings/pipeline-menus.d.ts.map +1 -1
  15. package/dist/src/components/saved-pipelines/saved-pipelines.d.ts +2 -3
  16. package/dist/src/components/saved-pipelines/saved-pipelines.d.ts.map +1 -1
  17. package/dist/src/components/stage-editor-toolbar/stage-operator-select.d.ts.map +1 -1
  18. package/dist/src/modules/input-documents.d.ts.map +1 -1
  19. package/dist/src/modules/pipeline-builder/pipeline-mode.d.ts.map +1 -1
  20. package/package.json +19 -19
  21. package/dist/src/components/input/index.d.ts +0 -3
  22. package/dist/src/components/input/index.d.ts.map +0 -1
  23. package/dist/src/components/input/input.d.ts +0 -25
  24. package/dist/src/components/input/input.d.ts.map +0 -1
  25. package/dist/src/components/input-builder/index.d.ts +0 -3
  26. package/dist/src/components/input-builder/index.d.ts.map +0 -1
  27. package/dist/src/components/input-builder/input-builder.d.ts +0 -9
  28. package/dist/src/components/input-builder/input-builder.d.ts.map +0 -1
  29. package/dist/src/components/input-builder-toolbar/index.d.ts +0 -3
  30. package/dist/src/components/input-builder-toolbar/index.d.ts.map +0 -1
  31. package/dist/src/components/input-builder-toolbar/input-builder-toolbar.d.ts +0 -16
  32. package/dist/src/components/input-builder-toolbar/input-builder-toolbar.d.ts.map +0 -1
  33. package/dist/src/components/input-collapser/index.d.ts +0 -3
  34. package/dist/src/components/input-collapser/index.d.ts.map +0 -1
  35. package/dist/src/components/input-collapser/input-collapser.d.ts +0 -14
  36. package/dist/src/components/input-collapser/input-collapser.d.ts.map +0 -1
  37. package/dist/src/components/input-documents-count/index.d.ts +0 -3
  38. package/dist/src/components/input-documents-count/index.d.ts.map +0 -1
  39. package/dist/src/components/input-documents-count/input-documents-count.d.ts +0 -13
  40. package/dist/src/components/input-documents-count/input-documents-count.d.ts.map +0 -1
  41. package/dist/src/components/input-preview/index.d.ts +0 -3
  42. package/dist/src/components/input-preview/index.d.ts.map +0 -1
  43. package/dist/src/components/input-preview/input-preview.d.ts +0 -15
  44. package/dist/src/components/input-preview/input-preview.d.ts.map +0 -1
  45. package/dist/src/components/input-preview-toolbar/index.d.ts +0 -3
  46. package/dist/src/components/input-preview-toolbar/index.d.ts.map +0 -1
  47. package/dist/src/components/input-preview-toolbar/input-preview-toolbar.d.ts +0 -7
  48. package/dist/src/components/input-preview-toolbar/input-preview-toolbar.d.ts.map +0 -1
  49. package/dist/src/components/input-refresh/index.d.ts +0 -3
  50. package/dist/src/components/input-refresh/index.d.ts.map +0 -1
  51. package/dist/src/components/input-refresh/input-refresh.d.ts +0 -13
  52. package/dist/src/components/input-refresh/input-refresh.d.ts.map +0 -1
  53. package/dist/src/components/input-toolbar/index.d.ts +0 -3
  54. package/dist/src/components/input-toolbar/index.d.ts.map +0 -1
  55. package/dist/src/components/input-toolbar/input-toolbar.d.ts +0 -16
  56. package/dist/src/components/input-toolbar/input-toolbar.d.ts.map +0 -1
  57. package/dist/src/components/input-workspace/index.d.ts +0 -3
  58. package/dist/src/components/input-workspace/index.d.ts.map +0 -1
  59. package/dist/src/components/input-workspace/input-workspace.d.ts +0 -16
  60. package/dist/src/components/input-workspace/input-workspace.d.ts.map +0 -1
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ import type { Document as DocumentType } from 'mongodb';
3
+ declare type InputProps = {
4
+ documents: DocumentType[];
5
+ isExpanded: boolean;
6
+ isLoading: boolean;
7
+ count: number;
8
+ toggleInputDocumentsCollapsed: (arg0: boolean) => void;
9
+ refreshInputDocuments: () => void;
10
+ };
11
+ declare function PipelineBuilderInputDocuments({ documents, isExpanded, isLoading, count, toggleInputDocumentsCollapsed, refreshInputDocuments }: InputProps): JSX.Element;
12
+ declare const _default: import("react-redux").ConnectedComponent<typeof PipelineBuilderInputDocuments, Omit<InputProps, "isExpanded" | "count" | "documents" | "isLoading" | "toggleInputDocumentsCollapsed" | "refreshInputDocuments"> & import("react-redux").ConnectProps>;
13
+ export default _default;
14
+ //# sourceMappingURL=pipeline-builder-input-documents.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pipeline-builder-input-documents.d.ts","sourceRoot":"","sources":["../../../src/components/pipeline-builder-input-documents.tsx"],"names":[],"mappings":";AAEA,OAAO,KAAK,EAAE,QAAQ,IAAI,YAAY,EAAE,MAAM,SAAS,CAAC;AAuDxD,aAAK,UAAU,GAAG;IAChB,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,UAAU,EAAE,OAAO,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,6BAA6B,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACvD,qBAAqB,EAAE,MAAM,IAAI,CAAA;CAClC,CAAC;AAEF,iBAAS,6BAA6B,CAAC,EACrC,SAAS,EACT,UAAU,EACV,SAAS,EACT,KAAK,EACL,6BAA6B,EAC7B,qBAAqB,EACtB,EAAE,UAAU,eAkCZ;;AASD,wBAaiC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-builder-ui-workspace.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-builder-workspace/pipeline-builder-ui-workspace.jsx"],"names":[],"mappings":"AAoBA;IACE;;;;MAIE;IAyEqihB,wBAA8C;IAAA,sCAAyJ;IAjE9uhB,uDAEE;IAOF,UAFa,MAAM,SAAS,CAuC3B;IAhCO,yDAAgC;CAiCzC"}
1
+ {"version":3,"file":"pipeline-builder-ui-workspace.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-builder-workspace/pipeline-builder-ui-workspace.jsx"],"names":[],"mappings":"AAoBA;IACE;;;;MAIE;IAyE09gB,wBAA8C;IAAA,sCAAyJ;IAjEnqhB,uDAEE;IAOF,UAFa,MAAM,SAAS,CAuC3B;IAhCO,yDAAgC;CAiCzC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-empty-results.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-empty-results.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAgCvC,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,iBAUxC,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
1
+ {"version":3,"file":"pipeline-empty-results.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-empty-results.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAuBvC,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,iBAUxC,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-results-header.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-results-header.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAQ/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAE5E,aAAK,0BAA0B,GAAG;IAChC,mBAAmB,EAAE,CAAC,QAAQ,EAAE,eAAe,KAAK,IAAI,CAAC;IACzD,eAAe,EAAE,eAAe,CAAC;IACjC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,4BAA4B,EAAE,CAAC,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAClE,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAmBF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,iBAAiB,CACzD,0BAA0B,CA+B3B,CAAC;;AAkBF,wBAAqE"}
1
+ {"version":3,"file":"pipeline-results-header.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-results-header.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAQ/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAG5E,aAAK,0BAA0B,GAAG;IAChC,mBAAmB,EAAE,CAAC,QAAQ,EAAE,eAAe,KAAK,IAAI,CAAC;IACzD,eAAe,EAAE,eAAe,CAAC;IACjC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,4BAA4B,EAAE,CAAC,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAClE,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAmBF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,iBAAiB,CACzD,0BAA0B,CAgC3B,CAAC;;AAkBF,wBAAqE"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-results-view-controls.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-results-view-controls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAS/D,QAAA,MAAM,2BAA2B,EAAE,KAAK,CAAC,iBAAiB,CAAC;IACzD,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI,CAAC;CAC3C,CAgCA,CAAC;AAEF,eAAe,2BAA2B,CAAC"}
1
+ {"version":3,"file":"pipeline-results-view-controls.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-results-workspace/pipeline-results-view-controls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAS/D,QAAA,MAAM,2BAA2B,EAAE,KAAK,CAAC,iBAAiB,CAAC;IACzD,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI,CAAC;CAC3C,CA4BA,CAAC;AAEF,eAAe,2BAA2B,CAAC"}
@@ -1,7 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { PipelineOutputOption } from '../pipeline-output-options-menu';
3
3
  declare type PipelineToolbarProps = {
4
- darkMode?: boolean;
5
4
  isBuilderView: boolean;
6
5
  showRunButton: boolean;
7
6
  showExportButton: boolean;
@@ -10,6 +9,6 @@ declare type PipelineToolbarProps = {
10
9
  pipelineOutputOption: PipelineOutputOption;
11
10
  };
12
11
  export declare const PipelineToolbar: React.FunctionComponent<PipelineToolbarProps>;
13
- declare const _default: React.ComponentType<Omit<PipelineToolbarProps, "isBuilderView"> & import("react-redux").ConnectProps>;
12
+ declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<PipelineToolbarProps>, Omit<PipelineToolbarProps, "isBuilderView"> & import("react-redux").ConnectProps>;
14
13
  export default _default;
15
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-toolbar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAUxC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAsC5E,aAAK,oBAAoB,GAAG;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,EAAE,OAAO,CAAC;IACvB,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,4BAA4B,EAAE,CAAC,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAClE,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,iBAAiB,CAAC,oBAAoB,CAqDzE,CAAC;;AAKF,wBAA6D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pipeline-toolbar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAUxC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAsC5E,aAAK,oBAAoB,GAAG;IAC1B,aAAa,EAAE,OAAO,CAAC;IACvB,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,4BAA4B,EAAE,CAAC,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAClE,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,iBAAiB,CAAC,oBAAoB,CAmDzE,CAAC;;AAKF,wBAAkD"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-extra-settings.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-toolbar/pipeline-settings/pipeline-extra-settings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAqBpF,aAAK,0BAA0B,GAAG;IAChC,aAAa,EAAE,OAAO,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,YAAY,EAAE,YAAY,CAAC;IAC3B,mBAAmB,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAC/C,oBAAoB,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IACrD,gBAAgB,EAAE,MAAM,IAAI,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,iBAAiB,CACzD,0BAA0B,CAsE3B,CAAC;;AAgBF,wBAAqE"}
1
+ {"version":3,"file":"pipeline-extra-settings.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-toolbar/pipeline-settings/pipeline-extra-settings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAsBpF,aAAK,0BAA0B,GAAG;IAChC,aAAa,EAAE,OAAO,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,YAAY,EAAE,YAAY,CAAC;IAC3B,mBAAmB,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAC/C,oBAAoB,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IACrD,gBAAgB,EAAE,MAAM,IAAI,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,iBAAiB,CACzD,0BAA0B,CAqE3B,CAAC;;AAgBF,wBAAqE"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-menus.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-toolbar/pipeline-settings/pipeline-menus.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAgBvC,aAAK,aAAa,GAAG;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,qBAAqB,EAAE,OAAO,CAAC;IAC/B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B,CAAC;AAKF,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC,aAAa,CA8CpE,CAAC;AAyBF,eAAO,MAAM,QAAQ,+NAGD,CAAC;AAGrB,aAAK,eAAe,GAAG;IACrB,gBAAgB,EAAE,MAAM,IAAI,CAAC;IAC7B,wBAAwB,EAAE,MAAM,IAAI,CAAC;CACtC,CAAC;AAKF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,iBAAiB,CAAC,eAAe,CAuCxE,CAAC;AAKF,eAAO,MAAM,UAAU,iMAGD,CAAC"}
1
+ {"version":3,"file":"pipeline-menus.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-toolbar/pipeline-settings/pipeline-menus.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAiBvC,aAAK,aAAa,GAAG;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,qBAAqB,EAAE,OAAO,CAAC;IAC/B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B,CAAC;AAKF,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC,aAAa,CA8CpE,CAAC;AAyBF,eAAO,MAAM,QAAQ,+NAGD,CAAC;AAGrB,aAAK,eAAe,GAAG;IACrB,gBAAgB,EAAE,MAAM,IAAI,CAAC;IAC7B,wBAAwB,EAAE,MAAM,IAAI,CAAC;CACtC,CAAC;AAKF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,iBAAiB,CAAC,eAAe,CAwCxE,CAAC;AAKF,eAAO,MAAM,UAAU,iMAGD,CAAC"}
@@ -1,12 +1,11 @@
1
- import React from 'react';
1
+ /// <reference types="react" />
2
2
  declare type SavedPipelinesProps = {
3
- darkMode?: boolean;
4
3
  namespace: string;
5
4
  savedPipelines: {
6
5
  id: string;
7
6
  name: string;
8
7
  }[];
9
8
  };
10
- declare const SavedPipelines: React.ComponentType<SavedPipelinesProps>;
9
+ declare function SavedPipelines({ namespace, savedPipelines, }: SavedPipelinesProps): JSX.Element;
11
10
  export { SavedPipelines };
12
11
  //# sourceMappingURL=saved-pipelines.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"saved-pipelines.d.ts","sourceRoot":"","sources":["../../../../src/components/saved-pipelines/saved-pipelines.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAkD1B,aAAK,mBAAmB,GAAG;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAChD,CAAC;AA0CF,QAAA,MAAM,cAAc,0CAAoC,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,CAAC"}
1
+ {"version":3,"file":"saved-pipelines.d.ts","sourceRoot":"","sources":["../../../../src/components/saved-pipelines/saved-pipelines.tsx"],"names":[],"mappings":";AAkDA,aAAK,mBAAmB,GAAG;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAChD,CAAC;AAEF,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,cAAc,GACf,EAAE,mBAAmB,eAmCrB;AAED,OAAO,EAAE,cAAc,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"stage-operator-select.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-operator-select.jsx"],"names":[],"mappings":"AA0CO;;;;;gBAmCN"}
1
+ {"version":3,"file":"stage-operator-select.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-operator-select.jsx"],"names":[],"mappings":"AAoDO;;;;;gBAyDN"}
@@ -1 +1 @@
1
- {"version":3,"file":"input-documents.d.ts","sourceRoot":"","sources":["../../../src/modules/input-documents.js"],"names":[],"mappings":"AAWA,4CAAyE;AAKzE,4CAAyE;AAKzE,6CAA2E;;;;;;;;;AA6CpE,iDAFM,MAAM,CAIjB;AAWK,6EAJI,KAAK,GAEH,MAAM,CAOjB;AAOK,yCAFM,MAAM,CAIjB;AAOK,kDA6BN;AAvFD,4DAJW,MAAM,GAEJ,GAAG,CAiBf"}
1
+ {"version":3,"file":"input-documents.d.ts","sourceRoot":"","sources":["../../../src/modules/input-documents.js"],"names":[],"mappings":"AAWA,4CAAyE;AAKzE,4CAAyE;AAKzE,6CAA2E;;;;;;;;;AA6CpE,iDAFM,MAAM,CAIjB;AAWK,6EAJI,KAAK,GAEH,MAAM,CAOjB;AAOK,yCAFM,MAAM,CAIjB;AAOK,kDA6CN;AAvGD,4DAJW,MAAM,GAEJ,GAAG,CAiBf"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-mode.d.ts","sourceRoot":"","sources":["../../../../src/modules/pipeline-builder/pipeline-mode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,IAAI,CAAC;AAGrD,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAMnE,oBAAY,YAAY,GAAG,YAAY,GAAG,SAAS,CAAC;AAEpD,oBAAY,WAAW;IACrB,mBAAmB,6CAA6C;CACjE;AAED,oBAAY,yBAAyB,GAAG;IACtC,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAAC;IACtC,IAAI,EAAE,YAAY,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;IAC5B,YAAY,EAAE,mBAAmB,EAAE,CAAC;IACpC,MAAM,EAAE,KAAK,EAAE,CAAC;CACjB,CAAC;AAEF,aAAK,KAAK,GAAG,YAAY,CAAC;AAE1B,eAAO,MAAM,aAAa,EAAE,KAAoB,CAAC;AAEjD,QAAA,MAAM,OAAO,EAAE,OAAO,CAAC,KAAK,CAiB3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,YACpB,YAAY,KACpB,2BAA2B,IAAI,EAAE,yBAAyB,CAkC5D,CAAC;AAEF,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"pipeline-mode.d.ts","sourceRoot":"","sources":["../../../../src/modules/pipeline-builder/pipeline-mode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,IAAI,CAAC;AAGrD,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAOnE,oBAAY,YAAY,GAAG,YAAY,GAAG,SAAS,CAAC;AAEpD,oBAAY,WAAW;IACrB,mBAAmB,6CAA6C;CACjE;AAED,oBAAY,yBAAyB,GAAG;IACtC,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAAC;IACtC,IAAI,EAAE,YAAY,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;IAC5B,YAAY,EAAE,mBAAmB,EAAE,CAAC;IACpC,MAAM,EAAE,KAAK,EAAE,CAAC;CACjB,CAAC;AAEF,aAAK,KAAK,GAAG,YAAY,CAAC;AAE1B,eAAO,MAAM,aAAa,EAAE,KAAoB,CAAC;AAEjD,QAAA,MAAM,OAAO,EAAE,OAAO,CAAC,KAAK,CAiB3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,YACpB,YAAY,KACpB,2BAA2B,IAAI,EAAE,yBAAyB,CAkC5D,CAAC;AAEF,eAAe,OAAO,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mongodb-js/compass-aggregations",
3
3
  "productName": "Aggregations plugin",
4
- "version": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
4
+ "version": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
5
5
  "apiVersion": "3.0.0",
6
6
  "description": "Compass Aggregation Pipeline Builder",
7
7
  "main": "dist/index.js",
@@ -55,11 +55,11 @@
55
55
  "@babel/parser": "^7.19.4",
56
56
  "@babel/types": "^7.19.4",
57
57
  "@electron/remote": "^2.0.8",
58
- "@mongodb-js/eslint-config-compass": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
59
- "@mongodb-js/mocha-config-compass": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
60
- "@mongodb-js/prettier-config-compass": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
61
- "@mongodb-js/tsconfig-compass": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
62
- "@mongodb-js/webpack-config-compass": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
58
+ "@mongodb-js/eslint-config-compass": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
59
+ "@mongodb-js/mocha-config-compass": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
60
+ "@mongodb-js/prettier-config-compass": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
61
+ "@mongodb-js/tsconfig-compass": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
62
+ "@mongodb-js/webpack-config-compass": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
63
63
  "@testing-library/react": "^12.1.4",
64
64
  "@testing-library/user-event": "^13.5.0",
65
65
  "@types/lodash": "^4.14.188",
@@ -73,12 +73,12 @@
73
73
  "electron": "^15.5.7",
74
74
  "enzyme": "^3.11.0",
75
75
  "eslint": "^7.25.0",
76
- "hadron-app-registry": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
76
+ "hadron-app-registry": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
77
77
  "is-electron-renderer": "^2.0.1",
78
78
  "lodash": "^4.17.21",
79
79
  "mocha": "^8.4.0",
80
- "mongodb": "^4.10.0",
81
- "mongodb-data-service": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
80
+ "mongodb": "^4.12.1",
81
+ "mongodb-data-service": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
82
82
  "mongodb-ns": "^2.4.0",
83
83
  "mongodb-query-parser": "^2.4.6",
84
84
  "nyc": "^15.1.0",
@@ -95,17 +95,17 @@
95
95
  "xvfb-maybe": "^0.2.1"
96
96
  },
97
97
  "dependencies": {
98
- "@mongodb-js/compass-components": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
99
- "@mongodb-js/compass-crud": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
100
- "@mongodb-js/compass-editor": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
101
- "@mongodb-js/compass-logging": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
102
- "@mongodb-js/compass-utils": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
103
- "@mongodb-js/explain-plan-helper": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
98
+ "@mongodb-js/compass-components": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
99
+ "@mongodb-js/compass-crud": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
100
+ "@mongodb-js/compass-editor": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
101
+ "@mongodb-js/compass-logging": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
102
+ "@mongodb-js/compass-utils": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
103
+ "@mongodb-js/explain-plan-helper": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
104
104
  "@mongodb-js/mongodb-constants": "^0.1.4",
105
- "@mongodb-js/mongodb-redux-common": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
105
+ "@mongodb-js/mongodb-redux-common": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
106
106
  "bson": "^4.4.1",
107
- "compass-preferences-model": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
108
- "hadron-document": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
107
+ "compass-preferences-model": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
108
+ "hadron-document": "0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557",
109
109
  "react": "^16.14.0"
110
110
  },
111
111
  "homepage": "https://github.com/mongodb-js/compass",
@@ -117,5 +117,5 @@
117
117
  "type": "git",
118
118
  "url": "https://github.com/mongodb-js/compass.git"
119
119
  },
120
- "gitHead": "faf899c161858cffa138dc64f4fbf9c0da2145e0"
120
+ "gitHead": "1336f6ccd01a8b5f63ed6bea289fa9f8fc4d9557"
121
121
  }
@@ -1,3 +0,0 @@
1
- export default Input;
2
- import Input from "./input";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input/index.js"],"names":[],"mappings":""}
@@ -1,25 +0,0 @@
1
- export class Input extends React.PureComponent<any, any, any> {
2
- static propTypes: {
3
- toggleInputDocumentsCollapsed: PropTypes.Validator<(...args: any[]) => any>;
4
- refreshInputDocuments: PropTypes.Validator<(...args: any[]) => any>;
5
- documents: PropTypes.Validator<any[]>;
6
- isLoading: PropTypes.Validator<boolean>;
7
- isExpanded: PropTypes.Validator<boolean>;
8
- count: PropTypes.Requireable<number>;
9
- };
10
- constructor(props: any);
11
- constructor(props: any, context: any);
12
- render(): Component;
13
- }
14
- declare const _default: import("react-redux").ConnectedComponent<typeof Input, Omit<PropTypes.InferProps<{
15
- toggleInputDocumentsCollapsed: PropTypes.Validator<(...args: any[]) => any>;
16
- refreshInputDocuments: PropTypes.Validator<(...args: any[]) => any>;
17
- documents: PropTypes.Validator<any[]>;
18
- isLoading: PropTypes.Validator<boolean>;
19
- isExpanded: PropTypes.Validator<boolean>;
20
- count: PropTypes.Requireable<number>;
21
- }>, "isExpanded" | "count" | "documents" | "isLoading" | "toggleInputDocumentsCollapsed" | "refreshInputDocuments"> & import("react-redux").ConnectProps>;
22
- export default _default;
23
- import React from "react";
24
- import PropTypes from "prop-types";
25
- //# sourceMappingURL=input.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../src/components/input/input.jsx"],"names":[],"mappings":"AASA;IACE;;;;;;;MAOE;IA4CspjB,wBAA8C;IAAA,sCAAyJ;IArC/1jB,oBAoBC;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputBuilder;
2
- import InputBuilder from "./input-builder";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-builder/index.js"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- export default InputBuilder;
2
- declare class InputBuilder extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- constructor(props: any);
5
- constructor(props: any, context: any);
6
- render(): JSX.Element;
7
- }
8
- import React from "react";
9
- //# sourceMappingURL=input-builder.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-builder.d.ts","sourceRoot":"","sources":["../../../../src/components/input-builder/input-builder.jsx"],"names":[],"mappings":";AAOA;IACE,2BAA6C;IAa2ulB,wBAA8C;IAAA,sCAAyJ;IAX/9lB,sBAOC;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputBuilderToolbar;
2
- import InputBuilderToolbar from "./input-builder-toolbar";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-builder-toolbar/index.js"],"names":[],"mappings":""}
@@ -1,16 +0,0 @@
1
- export default InputBuilderToolbar;
2
- declare class InputBuilderToolbar extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- toggleInputDocumentsCollapsed: PropTypes.Validator<(...args: any[]) => any>;
6
- refreshInputDocuments: PropTypes.Validator<(...args: any[]) => any>;
7
- isExpanded: PropTypes.Validator<boolean>;
8
- count: PropTypes.Requireable<number>;
9
- };
10
- constructor(props: any);
11
- constructor(props: any, context: any);
12
- render(): React.Component;
13
- }
14
- import React from "react";
15
- import PropTypes from "prop-types";
16
- //# sourceMappingURL=input-builder-toolbar.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-builder-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/input-builder-toolbar/input-builder-toolbar.jsx"],"names":[],"mappings":";AAYA;IACE,2BAA2C;IAE3C;;;;;MAKE;IA0B6lkB,wBAA8C;IAAA,sCAAyJ;IAnBtykB,UAFa,MAAM,SAAS,CAiB3B;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputCollapser;
2
- import InputCollapser from "./input-collapser";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-collapser/index.js"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- export default InputCollapser;
2
- declare class InputCollapser extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- isExpanded: PropTypes.Validator<boolean>;
6
- toggleInputDocumentsCollapsed: PropTypes.Validator<(...args: any[]) => any>;
7
- };
8
- constructor(props: any);
9
- constructor(props: any, context: any);
10
- render(): JSX.Element;
11
- }
12
- import React from "react";
13
- import PropTypes from "prop-types";
14
- //# sourceMappingURL=input-collapser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-collapser.d.ts","sourceRoot":"","sources":["../../../../src/components/input-collapser/input-collapser.jsx"],"names":[],"mappings":";AAKA;IACE,2BAA+C;IAE/C;;;MAGE;IAiBmnlB,wBAA8C;IAAA,sCAAyJ;IAf5zlB,sBAWC;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputDocumentsCount;
2
- import InputDocumentsCount from "./input-documents-count";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-documents-count/index.js"],"names":[],"mappings":""}
@@ -1,13 +0,0 @@
1
- export default InputDocumentsCount;
2
- declare class InputDocumentsCount extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- count: PropTypes.Requireable<number>;
6
- };
7
- constructor(props: any);
8
- constructor(props: any, context: any);
9
- render(): Component;
10
- }
11
- import React from "react";
12
- import PropTypes from "prop-types";
13
- //# sourceMappingURL=input-documents-count.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-documents-count.d.ts","sourceRoot":"","sources":["../../../../src/components/input-documents-count/input-documents-count.jsx"],"names":[],"mappings":";AAWA;IACE,2BAAoD;IAEpD;;MAEC;IAoBm+kB,wBAA8C;IAAA,sCAAyJ;IAb3qlB,oBASC;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputPreview;
2
- import InputPreview from "./input-preview";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-preview/index.js"],"names":[],"mappings":""}
@@ -1,15 +0,0 @@
1
- export default InputPreview;
2
- declare class InputPreview extends React.Component<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- documents: PropTypes.Validator<any[]>;
6
- isLoading: PropTypes.Validator<boolean>;
7
- };
8
- constructor(props: any);
9
- constructor(props: any, context: any);
10
- render(): React.Component;
11
- }
12
- import React from "react";
13
- import { Component } from "react";
14
- import PropTypes from "prop-types";
15
- //# sourceMappingURL=input-preview.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-preview.d.ts","sourceRoot":"","sources":["../../../../src/components/input-preview/input-preview.jsx"],"names":[],"mappings":";AAUA;IACE,2BAAoC;IAEpC;;;MAGC;IAgC4pkB,wBAA8C;IAAA,sCAAyJ;IAzBp2kB,UAFa,eAAe,CAuB3B;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputPreviewToolbar;
2
- import InputPreviewToolbar from "./input-preview-toolbar";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-preview-toolbar/index.js"],"names":[],"mappings":""}
@@ -1,7 +0,0 @@
1
- export default InputPreviewToolbar;
2
- declare function InputPreviewToolbar(): React.Component;
3
- declare namespace InputPreviewToolbar {
4
- const displayName: string;
5
- }
6
- import React from "react";
7
- //# sourceMappingURL=input-preview-toolbar.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-preview-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/input-preview-toolbar/input-preview-toolbar.jsx"],"names":[],"mappings":";AAeA,wCAFa,MAAM,SAAS,CAU3B"}
@@ -1,3 +0,0 @@
1
- export default InputRefresh;
2
- import InputRefresh from "./input-refresh";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-refresh/index.js"],"names":[],"mappings":""}
@@ -1,13 +0,0 @@
1
- export default InputRefresh;
2
- declare class InputRefresh extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- refreshInputDocuments: PropTypes.Validator<(...args: any[]) => any>;
6
- };
7
- constructor(props: any);
8
- constructor(props: any, context: any);
9
- render(): JSX.Element;
10
- }
11
- import React from "react";
12
- import PropTypes from "prop-types";
13
- //# sourceMappingURL=input-refresh.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-refresh.d.ts","sourceRoot":"","sources":["../../../../src/components/input-refresh/input-refresh.jsx"],"names":[],"mappings":";AASA;IACE,2BAA6C;IAE7C;;MAEC;IAiB0rlB,wBAA8C;IAAA,sCAAyJ;IAfl4lB,sBAWC;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputToolbar;
2
- import InputToolbar from "./input-toolbar";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-toolbar/index.js"],"names":[],"mappings":""}
@@ -1,16 +0,0 @@
1
- export default InputToolbar;
2
- declare class InputToolbar extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- toggleInputDocumentsCollapsed: PropTypes.Validator<(...args: any[]) => any>;
6
- refreshInputDocuments: PropTypes.Validator<(...args: any[]) => any>;
7
- isExpanded: PropTypes.Validator<boolean>;
8
- count: PropTypes.Requireable<number>;
9
- };
10
- constructor(props: any);
11
- constructor(props: any, context: any);
12
- render(): React.Component;
13
- }
14
- import React from "react";
15
- import PropTypes from "prop-types";
16
- //# sourceMappingURL=input-toolbar.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/input-toolbar/input-toolbar.jsx"],"names":[],"mappings":";AAUA;IACE,2BAA6C;IAE7C;;;;;MAKE;IAyB8ukB,wBAA8C;IAAA,sCAAyJ;IAlBv7kB,UAFa,MAAM,SAAS,CAgB3B;CACF"}
@@ -1,3 +0,0 @@
1
- export default InputWorkspace;
2
- import InputWorkspace from "./input-workspace";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/input-workspace/index.js"],"names":[],"mappings":""}
@@ -1,16 +0,0 @@
1
- export default InputWorkspace;
2
- declare class InputWorkspace extends React.PureComponent<any, any, any> {
3
- static displayName: string;
4
- static propTypes: {
5
- documents: PropTypes.Validator<any[]>;
6
- isLoading: PropTypes.Validator<boolean>;
7
- };
8
- constructor(props: any);
9
- constructor(props: any, context: any);
10
- render(): React.Component;
11
- resizableRef: Resizable | null | undefined;
12
- }
13
- import React from "react";
14
- import { Resizable } from "re-resizable";
15
- import PropTypes from "prop-types";
16
- //# sourceMappingURL=input-workspace.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"input-workspace.d.ts","sourceRoot":"","sources":["../../../../src/components/input-workspace/input-workspace.jsx"],"names":[],"mappings":";AAwBA;IACE,2BAAsC;IAEtC;;;MAGC;IAiC04jB,wBAA8C;IAAA,sCAAyJ;IA1BllkB,UAFa,MAAM,SAAS,CAwB3B;IAXmB,2CAAqB;CAY1C"}