@mongodb-js/compass-aggregations 0.0.0-next-6a5d526328ecfce1da82bf064daeb19f1c2bf6a5 → 0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0
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/browser.js +1 -1
- package/dist/index.css +2 -89
- package/dist/index.js +1 -1
- package/dist/src/components/add-stage/add-stage.d.ts.map +1 -1
- package/dist/src/components/input-collapser/input-collapser.d.ts +1 -1
- package/dist/src/components/input-collapser/input-collapser.d.ts.map +1 -1
- package/dist/src/components/input-documents-count/input-documents-count.d.ts.map +1 -1
- package/dist/src/components/input-refresh/input-refresh.d.ts +1 -1
- package/dist/src/components/input-refresh/input-refresh.d.ts.map +1 -1
- package/dist/src/components/loading-overlay/index.d.ts +1 -1
- package/dist/src/components/loading-overlay/loading-overlay.d.ts +6 -12
- package/dist/src/components/loading-overlay/loading-overlay.d.ts.map +1 -1
- package/dist/src/components/stage-editor-toolbar/add-after-stage.d.ts.map +1 -1
- package/dist/src/components/stage-editor-toolbar/delete-stage.d.ts +1 -1
- package/dist/src/components/stage-editor-toolbar/delete-stage.d.ts.map +1 -1
- package/dist/src/components/stage-editor-toolbar/stage-collapser.d.ts +1 -1
- package/dist/src/components/stage-editor-toolbar/stage-collapser.d.ts.map +1 -1
- package/dist/src/components/stage-editor-toolbar/stage-editor-toolbar.d.ts.map +1 -1
- package/package.json +18 -20
- package/dist/src/components/stage-editor-toolbar/stage-grabber.d.ts +0 -9
- package/dist/src/components/stage-editor-toolbar/stage-grabber.d.ts.map +0 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"add-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/add-stage/add-stage.jsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"add-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/add-stage/add-stage.jsx"],"names":[],"mappings":"AAeA;IACE,2BAAyC;IAEzC;;MAEE;IAuB+2kB,wBAA8C;IAAA,sCAAyJ;IArBxjlB,oBAEE;IAOF,oBAQC;CACF"}
|
@@ -7,7 +7,7 @@ declare class InputCollapser extends React.PureComponent<any, any, any> {
|
|
7
7
|
};
|
8
8
|
constructor(props: any);
|
9
9
|
constructor(props: any, context: any);
|
10
|
-
render():
|
10
|
+
render(): JSX.Element;
|
11
11
|
}
|
12
12
|
import React from "react";
|
13
13
|
import PropTypes from "prop-types";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"input-collapser.d.ts","sourceRoot":"","sources":["../../../../src/components/input-collapser/input-collapser.jsx"],"names":[],"mappings":";
|
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 +1 @@
|
|
1
|
-
{"version":3,"file":"input-documents-count.d.ts","sourceRoot":"","sources":["../../../../src/components/input-documents-count/input-documents-count.jsx"],"names":[],"mappings":";
|
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"}
|
@@ -6,7 +6,7 @@ declare class InputRefresh extends React.PureComponent<any, any, any> {
|
|
6
6
|
};
|
7
7
|
constructor(props: any);
|
8
8
|
constructor(props: any, context: any);
|
9
|
-
render():
|
9
|
+
render(): JSX.Element;
|
10
10
|
}
|
11
11
|
import React from "react";
|
12
12
|
import PropTypes from "prop-types";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"input-refresh.d.ts","sourceRoot":"","sources":["../../../../src/components/input-refresh/input-refresh.jsx"],"names":[],"mappings":";
|
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,13 +1,7 @@
|
|
1
|
-
|
2
|
-
declare
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
constructor(props: any);
|
8
|
-
constructor(props: any, context: any);
|
9
|
-
render(): React.Component;
|
10
|
-
}
|
11
|
-
import React from "react";
|
12
|
-
import PropTypes from "prop-types";
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare type LoadingOverlayProps = {
|
3
|
+
text: string;
|
4
|
+
};
|
5
|
+
declare function LoadingOverlay({ text }: LoadingOverlayProps): JSX.Element;
|
6
|
+
export { LoadingOverlay };
|
13
7
|
//# sourceMappingURL=loading-overlay.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"loading-overlay.d.ts","sourceRoot":"","sources":["../../../../src/components/loading-overlay/loading-overlay.
|
1
|
+
{"version":3,"file":"loading-overlay.d.ts","sourceRoot":"","sources":["../../../../src/components/loading-overlay/loading-overlay.tsx"],"names":[],"mappings":";AAoCA,aAAK,mBAAmB,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,iBAAS,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,mBAAmB,eAcpD;AAED,OAAO,EAAE,cAAc,EAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"add-after-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/add-after-stage.tsx"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"add-after-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/add-after-stage.tsx"],"names":[],"mappings":";AAQA,aAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,eAAe,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAC1C,CAAC;AAKF,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,eAAe,EAChB,EAAE,kBAAkB,eAwBpB;;AAED,wBAA2E"}
|
@@ -6,7 +6,7 @@ export class DeleteStage extends React.PureComponent<any, any, any> {
|
|
6
6
|
constructor(props: any);
|
7
7
|
constructor(props: any, context: any);
|
8
8
|
onStageDeleted: () => void;
|
9
|
-
render():
|
9
|
+
render(): JSX.Element;
|
10
10
|
}
|
11
11
|
declare const _default: import("react-redux").ConnectedComponent<typeof DeleteStage, Omit<PropTypes.InferProps<{
|
12
12
|
index: PropTypes.Validator<number>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"delete-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/delete-stage.jsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"delete-stage.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/delete-stage.jsx"],"names":[],"mappings":"AAOA;IACE;;;MAGE;IAqB0glB,wBAA8C;IAAA,sCAAyJ;IAnBntlB,2BAEE;IAEF,sBAWC;CACF"}
|
@@ -7,7 +7,7 @@ export class StageCollapser extends React.PureComponent<any, any, any> {
|
|
7
7
|
constructor(props: any);
|
8
8
|
constructor(props: any, context: any);
|
9
9
|
onStageCollapseToggled: () => void;
|
10
|
-
render():
|
10
|
+
render(): JSX.Element;
|
11
11
|
}
|
12
12
|
declare const _default: import("react-redux").ConnectedComponent<typeof StageCollapser, Omit<PropTypes.InferProps<{
|
13
13
|
index: PropTypes.Validator<number>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage-collapser.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-collapser.jsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"stage-collapser.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-collapser.jsx"],"names":[],"mappings":"AAOA;IACE;;;;MAIE;IA6BivkB,wBAA8C;IAAA,sCAAyJ;IA3B17kB,mCAEE;IAEF,sBAWC;CACF"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage-editor-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-editor-toolbar.jsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"stage-editor-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-editor-toolbar.jsx"],"names":[],"mappings":"AA8CA;IACE;;;;;MAKE;IAqCyrhB,wBAA8C;IAAA,sCAAyJ;IA9Bl4hB,UAFa,MAAM,SAAS,CAqB3B;CACF"}
|
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-
|
4
|
+
"version": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
5
5
|
"apiVersion": "3.0.0",
|
6
6
|
"description": "Compass Aggregation Pipeline Builder",
|
7
7
|
"main": "dist/index.js",
|
@@ -48,7 +48,6 @@
|
|
48
48
|
"bson": "^4.4.1",
|
49
49
|
"compass-preferences-model": "^2.4.0",
|
50
50
|
"hadron-document": "^8.0.2",
|
51
|
-
"hadron-react-buttons": "^6.0.2",
|
52
51
|
"react": "^16.14.0"
|
53
52
|
},
|
54
53
|
"devDependencies": {
|
@@ -56,11 +55,11 @@
|
|
56
55
|
"@babel/parser": "^7.19.4",
|
57
56
|
"@babel/types": "^7.19.4",
|
58
57
|
"@electron/remote": "^2.0.8",
|
59
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
60
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
61
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
62
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
63
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
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",
|
64
63
|
"@testing-library/react": "^12.1.4",
|
65
64
|
"@testing-library/user-event": "^13.5.0",
|
66
65
|
"@types/lodash": "^4.14.188",
|
@@ -74,12 +73,12 @@
|
|
74
73
|
"electron": "^15.5.7",
|
75
74
|
"enzyme": "^3.11.0",
|
76
75
|
"eslint": "^7.25.0",
|
77
|
-
"hadron-app-registry": "0.0.0-next-
|
76
|
+
"hadron-app-registry": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
78
77
|
"is-electron-renderer": "^2.0.1",
|
79
78
|
"lodash": "^4.17.21",
|
80
79
|
"mocha": "^8.4.0",
|
81
80
|
"mongodb": "^4.10.0",
|
82
|
-
"mongodb-data-service": "0.0.0-next-
|
81
|
+
"mongodb-data-service": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
83
82
|
"mongodb-ns": "^2.4.0",
|
84
83
|
"mongodb-query-parser": "^2.4.6",
|
85
84
|
"nyc": "^15.1.0",
|
@@ -96,18 +95,17 @@
|
|
96
95
|
"xvfb-maybe": "^0.2.1"
|
97
96
|
},
|
98
97
|
"dependencies": {
|
99
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
100
|
-
"@mongodb-js/compass-crud": "0.0.0-next-
|
101
|
-
"@mongodb-js/compass-editor": "0.0.0-next-
|
102
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
103
|
-
"@mongodb-js/compass-utils": "0.0.0-next-
|
104
|
-
"@mongodb-js/explain-plan-helper": "0.0.0-next-
|
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",
|
105
104
|
"@mongodb-js/mongodb-constants": "^0.1.4",
|
106
|
-
"@mongodb-js/mongodb-redux-common": "0.0.0-next-
|
105
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
107
106
|
"bson": "^4.4.1",
|
108
|
-
"compass-preferences-model": "0.0.0-next-
|
109
|
-
"hadron-document": "0.0.0-next-
|
110
|
-
"hadron-react-buttons": "0.0.0-next-6a5d526328ecfce1da82bf064daeb19f1c2bf6a5",
|
107
|
+
"compass-preferences-model": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
108
|
+
"hadron-document": "0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e0",
|
111
109
|
"react": "^16.14.0"
|
112
110
|
},
|
113
111
|
"homepage": "https://github.com/mongodb-js/compass",
|
@@ -119,5 +117,5 @@
|
|
119
117
|
"type": "git",
|
120
118
|
"url": "https://github.com/mongodb-js/compass.git"
|
121
119
|
},
|
122
|
-
"gitHead": "
|
120
|
+
"gitHead": "faf899c161858cffa138dc64f4fbf9c0da2145e0"
|
123
121
|
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
export default StageGrabber;
|
2
|
-
declare class StageGrabber extends React.PureComponent<any, any, any> {
|
3
|
-
static displayName: string;
|
4
|
-
constructor(props: any);
|
5
|
-
constructor(props: any, context: any);
|
6
|
-
render(): Component;
|
7
|
-
}
|
8
|
-
import React from "react";
|
9
|
-
//# sourceMappingURL=stage-grabber.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"stage-grabber.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor-toolbar/stage-grabber.jsx"],"names":[],"mappings":";AAOA;IACE,2BAA6C;IAiBi0lB,wBAA8C;IAAA,sCAAyJ;IAVrjmB,oBAMC;CACF"}
|