@mongodb-js/compass-aggregations 8.27.1 → 9.1.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.
- package/dist/browser.js +1 -1
- package/dist/browser.js.LICENSE.txt +58 -0
- package/dist/index.css +162 -3297
- package/dist/index.js +1 -14
- package/dist/index.js.LICENSE.txt +19 -28
- package/package.json +51 -66
@@ -16,20 +16,6 @@ object-assign
|
|
16
16
|
http://jedwatson.github.io/classnames
|
17
17
|
*/
|
18
18
|
|
19
|
-
/*!
|
20
|
-
* Programatically add the following
|
21
|
-
*/
|
22
|
-
|
23
|
-
/*!
|
24
|
-
* focus-trap 6.5.1
|
25
|
-
* @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
|
26
|
-
*/
|
27
|
-
|
28
|
-
/*!
|
29
|
-
* tabbable 5.2.0
|
30
|
-
* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
|
31
|
-
*/
|
32
|
-
|
33
19
|
/**
|
34
20
|
* @license
|
35
21
|
* Lodash <https://lodash.com/>
|
@@ -40,14 +26,18 @@ object-assign
|
|
40
26
|
*/
|
41
27
|
|
42
28
|
/**
|
43
|
-
*
|
44
|
-
*
|
45
|
-
*
|
46
|
-
*
|
29
|
+
* @license React
|
30
|
+
* react-is.production.min.js
|
31
|
+
*
|
32
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
33
|
+
*
|
34
|
+
* This source code is licensed under the MIT license found in the
|
35
|
+
* LICENSE file in the root directory of this source tree.
|
47
36
|
*/
|
48
37
|
|
49
|
-
/**
|
50
|
-
*
|
38
|
+
/**
|
39
|
+
* @license React
|
40
|
+
* use-sync-external-store-shim.production.min.js
|
51
41
|
*
|
52
42
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
53
43
|
*
|
@@ -55,8 +45,9 @@ object-assign
|
|
55
45
|
* LICENSE file in the root directory of this source tree.
|
56
46
|
*/
|
57
47
|
|
58
|
-
/**
|
59
|
-
*
|
48
|
+
/**
|
49
|
+
* @license React
|
50
|
+
* use-sync-external-store-shim/with-selector.production.min.js
|
60
51
|
*
|
61
52
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
62
53
|
*
|
@@ -64,8 +55,8 @@ object-assign
|
|
64
55
|
* LICENSE file in the root directory of this source tree.
|
65
56
|
*/
|
66
57
|
|
67
|
-
/** @license React
|
68
|
-
*
|
58
|
+
/** @license React v0.19.1
|
59
|
+
* scheduler.production.min.js
|
69
60
|
*
|
70
61
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
71
62
|
*
|
@@ -73,8 +64,8 @@ object-assign
|
|
73
64
|
* LICENSE file in the root directory of this source tree.
|
74
65
|
*/
|
75
66
|
|
76
|
-
/** @license React v16.
|
77
|
-
* react.production.min.js
|
67
|
+
/** @license React v16.13.1
|
68
|
+
* react-is.production.min.js
|
78
69
|
*
|
79
70
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
80
71
|
*
|
@@ -82,8 +73,8 @@ object-assign
|
|
82
73
|
* LICENSE file in the root directory of this source tree.
|
83
74
|
*/
|
84
75
|
|
85
|
-
/** @license React
|
86
|
-
* react-
|
76
|
+
/** @license React v16.14.0
|
77
|
+
* react-dom.production.min.js
|
87
78
|
*
|
88
79
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
89
80
|
*
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mongodb-js/compass-aggregations",
|
3
3
|
"productName": "Aggregations plugin",
|
4
|
-
"version": "
|
4
|
+
"version": "9.1.1",
|
5
5
|
"apiVersion": "3.0.0",
|
6
6
|
"description": "Compass Aggregation Pipeline Builder",
|
7
7
|
"main": "dist/index.js",
|
@@ -18,10 +18,9 @@
|
|
18
18
|
"compile": "npm run webpack -- --mode production",
|
19
19
|
"prewebpack": "rimraf ./dist",
|
20
20
|
"webpack": "webpack-compass",
|
21
|
-
"start": "npm run webpack serve -- --mode development",
|
22
21
|
"analyze": "npm run webpack -- --mode production --analyze",
|
23
|
-
"typecheck": "tsc --noEmit",
|
24
|
-
"depcheck": "depcheck",
|
22
|
+
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
|
23
|
+
"depcheck": "compass-scripts check-peer-deps && depcheck",
|
25
24
|
"eslint": "eslint",
|
26
25
|
"lint": "npm run eslint .",
|
27
26
|
"check": "npm run typecheck && npm run lint && npm run depcheck",
|
@@ -35,91 +34,77 @@
|
|
35
34
|
},
|
36
35
|
"license": "SSPL",
|
37
36
|
"peerDependencies": {
|
38
|
-
"@mongodb-js/compass-components": "^
|
39
|
-
"@mongodb-js/compass-crud": "^
|
40
|
-
"@mongodb-js/compass-
|
41
|
-
"@mongodb-js/
|
42
|
-
"
|
43
|
-
"bson": "
|
44
|
-
"
|
45
|
-
"hadron-react-buttons": "^
|
46
|
-
"hadron-react-components": "^
|
47
|
-
"mongodb-ace-autocompleter": "
|
48
|
-
"
|
49
|
-
"mongodb-query-parser": "^2.4.6",
|
50
|
-
"prop-types": "^15.7.2",
|
51
|
-
"react": "^16.14.0",
|
52
|
-
"react-bootstrap": "^0.32.4",
|
53
|
-
"react-dom": "^16.14.0"
|
37
|
+
"@mongodb-js/compass-components": "^1.1.1",
|
38
|
+
"@mongodb-js/compass-crud": "^13.1.1",
|
39
|
+
"@mongodb-js/compass-logging": "^1.1.0",
|
40
|
+
"@mongodb-js/explain-plan-helper": "^1.0.1",
|
41
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.1",
|
42
|
+
"bson": "^4.4.1",
|
43
|
+
"hadron-document": "^8.0.1",
|
44
|
+
"hadron-react-buttons": "^6.0.1",
|
45
|
+
"hadron-react-components": "^6.1.1",
|
46
|
+
"mongodb-ace-autocompleter": "^1.1.1",
|
47
|
+
"react": "^16.14.0"
|
54
48
|
},
|
55
49
|
"devDependencies": {
|
56
|
-
"@
|
57
|
-
"@mongodb-js/compass
|
58
|
-
"@mongodb-js/
|
59
|
-
"@mongodb-js/
|
60
|
-
"@mongodb-js/
|
61
|
-
"@mongodb-js/
|
62
|
-
"@mongodb-js/prettier-config-compass": "^0.6.0",
|
63
|
-
"@mongodb-js/tsconfig-compass": "^0.7.0",
|
64
|
-
"@mongodb-js/webpack-config-compass": "^0.11.1",
|
65
|
-
"@react-aria/utils": "^3.13.1",
|
50
|
+
"@electron/remote": "^2.0.8",
|
51
|
+
"@mongodb-js/eslint-config-compass": "^1.0.1",
|
52
|
+
"@mongodb-js/mocha-config-compass": "^1.0.1",
|
53
|
+
"@mongodb-js/prettier-config-compass": "^1.0.0",
|
54
|
+
"@mongodb-js/tsconfig-compass": "^1.0.1",
|
55
|
+
"@mongodb-js/webpack-config-compass": "^1.0.2",
|
66
56
|
"@testing-library/react": "^12.1.4",
|
67
57
|
"@testing-library/user-event": "^13.5.0",
|
68
58
|
"@types/decomment": "^0.9.2",
|
69
59
|
"@types/lodash.debounce": "^4.0.7",
|
70
60
|
"@types/lodash.isempty": "^4.4.6",
|
71
61
|
"@types/semver": "^7.3.9",
|
72
|
-
"
|
62
|
+
"acorn-loose": "^8.0.2",
|
63
|
+
"astring": "^1.7.0",
|
73
64
|
"chai": "^4.3.6",
|
74
65
|
"classnames": "^2.2.6",
|
75
|
-
"debug": "4.
|
66
|
+
"debug": "^4.2.0",
|
67
|
+
"decomment": "^0.9.2",
|
76
68
|
"depcheck": "^1.4.1",
|
77
|
-
"electron": "^
|
69
|
+
"electron": "^15.5.7",
|
78
70
|
"enzyme": "^3.11.0",
|
79
71
|
"eslint": "^7.25.0",
|
80
|
-
"hadron-app": "^
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
72
|
+
"hadron-app-registry": "^9.0.1",
|
73
|
+
"is-electron-renderer": "^2.0.1",
|
74
|
+
"lodash.debounce": "^4.0.8",
|
75
|
+
"lodash.isempty": "^4.4.0",
|
76
|
+
"lodash.isstring": "^4.0.1",
|
85
77
|
"mocha": "^8.4.0",
|
86
|
-
"mongodb
|
87
|
-
"mongodb-
|
88
|
-
"mongodb-
|
78
|
+
"mongodb": "^4.10.0",
|
79
|
+
"mongodb-data-service": "^22.1.1",
|
80
|
+
"mongodb-ns": "^2.4.0",
|
89
81
|
"mongodb-query-parser": "^2.4.6",
|
90
|
-
"mongodb-reflux-store": "^0.0.1",
|
91
82
|
"nyc": "^15.1.0",
|
92
83
|
"prop-types": "^15.7.2",
|
93
|
-
"
|
84
|
+
"re-resizable": "^6.9.0",
|
94
85
|
"react-dom": "^16.14.0",
|
86
|
+
"react-redux": "^8.0.2",
|
87
|
+
"react-select-plus": "^1.2.0",
|
95
88
|
"react-sortable-hoc": "^2.0.0",
|
96
|
-
"
|
97
|
-
"
|
89
|
+
"redux": "^4.2.0",
|
90
|
+
"redux-thunk": "^2.3.0",
|
98
91
|
"rimraf": "^3.0.0",
|
92
|
+
"semver": "^5.7.1",
|
99
93
|
"sinon": "^9.2.3",
|
100
94
|
"xvfb-maybe": "^0.2.1"
|
101
95
|
},
|
102
96
|
"dependencies": {
|
103
|
-
"@mongodb-js/compass-
|
104
|
-
"@mongodb-js/
|
105
|
-
"@mongodb-js/
|
106
|
-
"
|
107
|
-
"
|
108
|
-
"bson": "
|
109
|
-
"
|
110
|
-
"
|
111
|
-
"
|
112
|
-
"
|
113
|
-
"
|
114
|
-
"mongodb": "^4.6.0",
|
115
|
-
"mongodb-ns": "^2.4.0",
|
116
|
-
"re-resizable": "^6.9.0",
|
117
|
-
"react-bootstrap": "^0.32.4",
|
118
|
-
"react-redux": "^5.0.6",
|
119
|
-
"react-select-plus": "^1.2.0",
|
120
|
-
"redux": "^4.1.2",
|
121
|
-
"redux-thunk": "^2.3.0",
|
122
|
-
"semver": "^5.7.1"
|
97
|
+
"@mongodb-js/compass-components": "^1.1.1",
|
98
|
+
"@mongodb-js/compass-crud": "^13.1.1",
|
99
|
+
"@mongodb-js/compass-logging": "^1.1.0",
|
100
|
+
"@mongodb-js/explain-plan-helper": "^1.0.1",
|
101
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.1",
|
102
|
+
"bson": "^4.4.1",
|
103
|
+
"hadron-document": "^8.0.1",
|
104
|
+
"hadron-react-buttons": "^6.0.1",
|
105
|
+
"hadron-react-components": "^6.1.1",
|
106
|
+
"mongodb-ace-autocompleter": "^1.1.1",
|
107
|
+
"react": "^16.14.0"
|
123
108
|
},
|
124
109
|
"homepage": "https://github.com/mongodb-js/compass",
|
125
110
|
"bugs": {
|
@@ -130,5 +115,5 @@
|
|
130
115
|
"type": "git",
|
131
116
|
"url": "https://github.com/mongodb-js/compass.git"
|
132
117
|
},
|
133
|
-
"gitHead": "
|
118
|
+
"gitHead": "51f04a0ac45c3b51a3ffb98af390c811d1404380"
|
134
119
|
}
|