@mongodb-js/compass-aggregations 8.27.1 → 9.0.0
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 +28 -0
- package/dist/index.css +21 -3058
- package/dist/index.js +1 -14
- package/dist/index.js.LICENSE.txt +0 -39
- package/package.json +54 -62
@@ -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/>
|
@@ -39,13 +25,6 @@ object-assign
|
|
39
25
|
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
40
26
|
*/
|
41
27
|
|
42
|
-
/**
|
43
|
-
* ag-grid-community - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
|
44
|
-
* @version v20.2.0
|
45
|
-
* @link http://www.ag-grid.com/
|
46
|
-
* @license MIT
|
47
|
-
*/
|
48
|
-
|
49
28
|
/** @license React v0.19.1
|
50
29
|
* scheduler.production.min.js
|
51
30
|
*
|
@@ -73,24 +52,6 @@ object-assign
|
|
73
52
|
* LICENSE file in the root directory of this source tree.
|
74
53
|
*/
|
75
54
|
|
76
|
-
/** @license React v16.14.0
|
77
|
-
* react.production.min.js
|
78
|
-
*
|
79
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
80
|
-
*
|
81
|
-
* This source code is licensed under the MIT license found in the
|
82
|
-
* LICENSE file in the root directory of this source tree.
|
83
|
-
*/
|
84
|
-
|
85
|
-
/** @license React v17.0.2
|
86
|
-
* react-is.production.min.js
|
87
|
-
*
|
88
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
89
|
-
*
|
90
|
-
* This source code is licensed under the MIT license found in the
|
91
|
-
* LICENSE file in the root directory of this source tree.
|
92
|
-
*/
|
93
|
-
|
94
55
|
//! moment.js
|
95
56
|
|
96
57
|
//! moment.js locale configuration
|
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.0.0",
|
5
5
|
"apiVersion": "3.0.0",
|
6
6
|
"description": "Compass Aggregation Pipeline Builder",
|
7
7
|
"main": "dist/index.js",
|
@@ -20,8 +20,8 @@
|
|
20
20
|
"webpack": "webpack-compass",
|
21
21
|
"start": "npm run webpack serve -- --mode development",
|
22
22
|
"analyze": "npm run webpack -- --mode production --analyze",
|
23
|
-
"typecheck": "tsc --noEmit",
|
24
|
-
"depcheck": "depcheck",
|
23
|
+
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
|
24
|
+
"depcheck": "compass-scripts check-peer-deps && depcheck",
|
25
25
|
"eslint": "eslint",
|
26
26
|
"lint": "npm run eslint .",
|
27
27
|
"check": "npm run typecheck && npm run lint && npm run depcheck",
|
@@ -35,91 +35,83 @@
|
|
35
35
|
},
|
36
36
|
"license": "SSPL",
|
37
37
|
"peerDependencies": {
|
38
|
-
"@mongodb-js/compass-components": "^0.
|
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"
|
38
|
+
"@mongodb-js/compass-components": "^1.0.0",
|
39
|
+
"@mongodb-js/compass-crud": "^13.0.0",
|
40
|
+
"@mongodb-js/compass-logging": "^1.0.0",
|
41
|
+
"@mongodb-js/explain-plan-helper": "^1.0.0",
|
42
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.0",
|
43
|
+
"bson": "^4.4.1",
|
44
|
+
"hadron-document": "^8.0.0",
|
45
|
+
"hadron-react-buttons": "^6.0.0",
|
46
|
+
"hadron-react-components": "^6.0.0",
|
47
|
+
"mongodb-ace-autocompleter": "^1.1.1",
|
48
|
+
"react": "^16.14.0"
|
54
49
|
},
|
55
50
|
"devDependencies": {
|
56
|
-
"@
|
57
|
-
"@mongodb-js/compass-
|
58
|
-
"@mongodb-js/
|
59
|
-
"@mongodb-js/
|
60
|
-
"@mongodb-js/
|
61
|
-
"@mongodb-js/
|
62
|
-
"@mongodb-js/
|
63
|
-
"@mongodb-js/tsconfig-compass": "^0.7.0",
|
64
|
-
"@mongodb-js/webpack-config-compass": "^0.11.1",
|
65
|
-
"@react-aria/utils": "^3.13.1",
|
51
|
+
"@electron/remote": "^2.0.8",
|
52
|
+
"@mongodb-js/compass-export-to-language": "^8.0.0",
|
53
|
+
"@mongodb-js/eslint-config-compass": "^1.0.0",
|
54
|
+
"@mongodb-js/mocha-config-compass": "^1.0.0",
|
55
|
+
"@mongodb-js/prettier-config-compass": "^1.0.0",
|
56
|
+
"@mongodb-js/tsconfig-compass": "^1.0.0",
|
57
|
+
"@mongodb-js/webpack-config-compass": "^1.0.0",
|
66
58
|
"@testing-library/react": "^12.1.4",
|
67
59
|
"@testing-library/user-event": "^13.5.0",
|
68
60
|
"@types/decomment": "^0.9.2",
|
69
61
|
"@types/lodash.debounce": "^4.0.7",
|
70
62
|
"@types/lodash.isempty": "^4.4.6",
|
71
63
|
"@types/semver": "^7.3.9",
|
72
|
-
"
|
64
|
+
"acorn-loose": "^8.0.2",
|
65
|
+
"astring": "^1.7.0",
|
73
66
|
"chai": "^4.3.6",
|
74
67
|
"classnames": "^2.2.6",
|
75
|
-
"debug": "4.
|
68
|
+
"debug": "^4.2.0",
|
69
|
+
"decomment": "^0.9.2",
|
76
70
|
"depcheck": "^1.4.1",
|
77
|
-
"electron": "^
|
71
|
+
"electron": "^15.5.7",
|
78
72
|
"enzyme": "^3.11.0",
|
79
73
|
"eslint": "^7.25.0",
|
80
|
-
"hadron-app": "^
|
81
|
-
"hadron-app-registry": "^
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
74
|
+
"hadron-app": "^5.0.0",
|
75
|
+
"hadron-app-registry": "^9.0.0",
|
76
|
+
"is-electron-renderer": "^2.0.1",
|
77
|
+
"lodash.debounce": "^4.0.8",
|
78
|
+
"lodash.isempty": "^4.4.0",
|
79
|
+
"lodash.isstring": "^4.0.1",
|
85
80
|
"mocha": "^8.4.0",
|
86
|
-
"mongodb
|
87
|
-
"mongodb-connection-model": "^
|
88
|
-
"mongodb-data-service": "^
|
81
|
+
"mongodb": "^4.6.0",
|
82
|
+
"mongodb-connection-model": "^22.0.0",
|
83
|
+
"mongodb-data-service": "^22.0.0",
|
84
|
+
"mongodb-ns": "^2.4.0",
|
89
85
|
"mongodb-query-parser": "^2.4.6",
|
90
86
|
"mongodb-reflux-store": "^0.0.1",
|
91
87
|
"nyc": "^15.1.0",
|
92
88
|
"prop-types": "^15.7.2",
|
93
|
-
"
|
89
|
+
"re-resizable": "^6.9.0",
|
94
90
|
"react-dom": "^16.14.0",
|
91
|
+
"react-redux": "^5.0.6",
|
92
|
+
"react-select-plus": "^1.2.0",
|
95
93
|
"react-sortable-hoc": "^2.0.0",
|
94
|
+
"redux": "^4.1.2",
|
95
|
+
"redux-thunk": "^2.3.0",
|
96
96
|
"reflux": "^0.4.1",
|
97
97
|
"reflux-state-mixin": "github:mongodb-js/reflux-state-mixin",
|
98
98
|
"rimraf": "^3.0.0",
|
99
|
+
"semver": "^5.7.1",
|
99
100
|
"sinon": "^9.2.3",
|
100
101
|
"xvfb-maybe": "^0.2.1"
|
101
102
|
},
|
102
103
|
"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"
|
104
|
+
"@mongodb-js/compass-components": "^1.0.0",
|
105
|
+
"@mongodb-js/compass-crud": "^13.0.0",
|
106
|
+
"@mongodb-js/compass-logging": "^1.0.0",
|
107
|
+
"@mongodb-js/explain-plan-helper": "^1.0.0",
|
108
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.0",
|
109
|
+
"bson": "^4.4.1",
|
110
|
+
"hadron-document": "^8.0.0",
|
111
|
+
"hadron-react-buttons": "^6.0.0",
|
112
|
+
"hadron-react-components": "^6.0.0",
|
113
|
+
"mongodb-ace-autocompleter": "^1.1.1",
|
114
|
+
"react": "^16.14.0"
|
123
115
|
},
|
124
116
|
"homepage": "https://github.com/mongodb-js/compass",
|
125
117
|
"bugs": {
|
@@ -130,5 +122,5 @@
|
|
130
122
|
"type": "git",
|
131
123
|
"url": "https://github.com/mongodb-js/compass.git"
|
132
124
|
},
|
133
|
-
"gitHead": "
|
125
|
+
"gitHead": "a30734888ab496a07d58e26870e5e33b374e98f7"
|
134
126
|
}
|