@mongodb-js/compass-query-history 0.0.0-next-b5a88ca5d89936f4997a6df7c6e08614f25de0a1 → 0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a
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.js +1 -1
- package/dist/src/actions/actions.d.ts +3 -0
- package/dist/src/actions/actions.d.ts.map +1 -0
- package/dist/src/actions/index.d.ts +3 -0
- package/dist/src/actions/index.d.ts.map +1 -0
- package/dist/src/components/favorite/favorite-list-item.d.ts +22 -0
- package/dist/src/components/favorite/favorite-list-item.d.ts.map +1 -0
- package/dist/src/components/favorite/index.d.ts +91 -0
- package/dist/src/components/favorite/index.d.ts.map +1 -0
- package/dist/src/components/list/index.d.ts +4 -0
- package/dist/src/components/list/index.d.ts.map +1 -0
- package/dist/src/components/list/list.d.ts +92 -0
- package/dist/src/components/list/list.d.ts.map +1 -0
- package/dist/src/components/query/index.d.ts +3 -0
- package/dist/src/components/query/index.d.ts.map +1 -0
- package/dist/src/components/query/query.d.ts +10 -0
- package/dist/src/components/query/query.d.ts.map +1 -0
- package/dist/src/components/query-history/index.d.ts +4 -0
- package/dist/src/components/query-history/index.d.ts.map +1 -0
- package/dist/src/components/query-history/query-history.d.ts +42 -0
- package/dist/src/components/query-history/query-history.d.ts.map +1 -0
- package/dist/src/components/recent/index.d.ts +91 -0
- package/dist/src/components/recent/index.d.ts.map +1 -0
- package/dist/src/components/recent/recent-list-item.d.ts +21 -0
- package/dist/src/components/recent/recent-list-item.d.ts.map +1 -0
- package/dist/src/components/toolbar/toolbar.d.ts +15 -0
- package/dist/src/components/toolbar/toolbar.d.ts.map +1 -0
- package/dist/src/components/zero-graphic.d.ts +4 -0
- package/dist/src/components/zero-graphic.d.ts.map +1 -0
- package/dist/src/index.d.ts +11 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/models/favorite-query-collection.d.ts +3 -0
- package/dist/src/models/favorite-query-collection.d.ts.map +1 -0
- package/dist/src/models/favorite-query.d.ts +3 -0
- package/dist/src/models/favorite-query.d.ts.map +1 -0
- package/dist/src/models/index.d.ts +7 -0
- package/dist/src/models/index.d.ts.map +1 -0
- package/dist/src/models/query.d.ts +3 -0
- package/dist/src/models/query.d.ts.map +1 -0
- package/dist/src/models/recent-query-collection.d.ts +3 -0
- package/dist/src/models/recent-query-collection.d.ts.map +1 -0
- package/dist/src/models/recent-query.d.ts +3 -0
- package/dist/src/models/recent-query.d.ts.map +1 -0
- package/dist/src/plugin.d.ts +15 -0
- package/dist/src/plugin.d.ts.map +1 -0
- package/dist/src/stores/favorite-list-store.d.ts +4 -0
- package/dist/src/stores/favorite-list-store.d.ts.map +1 -0
- package/dist/src/stores/index.d.ts +3 -0
- package/dist/src/stores/index.d.ts.map +1 -0
- package/dist/src/stores/query-history-store.d.ts +4 -0
- package/dist/src/stores/query-history-store.d.ts.map +1 -0
- package/dist/src/stores/recent-list-store.d.ts +4 -0
- package/dist/src/stores/recent-list-store.d.ts.map +1 -0
- package/dist/src/utils/comparable-query.d.ts +3 -0
- package/dist/src/utils/comparable-query.d.ts.map +1 -0
- package/dist/src/utils/favorite-query-storage.d.ts +6 -0
- package/dist/src/utils/favorite-query-storage.d.ts.map +1 -0
- package/dist/src/utils/format-query.d.ts +4 -0
- package/dist/src/utils/format-query.d.ts.map +1 -0
- package/dist/src/utils/index.d.ts +5 -0
- package/dist/src/utils/index.d.ts.map +1 -0
- package/package.json +15 -13
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"format-query.d.ts","sourceRoot":"","sources":["../../../src/utils/format-query.ts"],"names":[],"mappings":"AASA,QAAA,MAAM,WAAW,UAAW,GAAG,KAAG,MAAuC,CAAC;AAE1E,eAAe,WAAW,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.js"],"names":[],"mappings":""}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@mongodb-js/compass-query-history",
|
3
3
|
"productName": "Query History plugin",
|
4
4
|
"description": "The query history sidebar of Compass",
|
5
|
-
"version": "0.0.0-next-
|
5
|
+
"version": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
6
6
|
"author": {
|
7
7
|
"name": "MongoDB Inc",
|
8
8
|
"email": "compass@mongodb.com"
|
@@ -25,6 +25,7 @@
|
|
25
25
|
],
|
26
26
|
"main": "dist/index.js",
|
27
27
|
"compass:main": "src/index.ts",
|
28
|
+
"types": "dist/src/index.d.ts",
|
28
29
|
"exports": {
|
29
30
|
"browser": "./dist/browser.js",
|
30
31
|
"require": "./dist/index.js"
|
@@ -38,6 +39,7 @@
|
|
38
39
|
"compile": "npm run webpack -- --mode production",
|
39
40
|
"prewebpack": "rimraf ./dist",
|
40
41
|
"webpack": "webpack-compass",
|
42
|
+
"postcompile": "tsc --emitDeclarationOnly",
|
41
43
|
"analyze": "npm run webpack -- --mode production --analyze",
|
42
44
|
"typecheck": "tsc --noEmit",
|
43
45
|
"eslint": "eslint",
|
@@ -55,13 +57,13 @@
|
|
55
57
|
"reformat": "npm run prettier -- --write ."
|
56
58
|
},
|
57
59
|
"dependencies": {
|
58
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
59
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
60
|
-
"@mongodb-js/compass-utils": "0.0.0-next-
|
60
|
+
"@mongodb-js/compass-components": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
61
|
+
"@mongodb-js/compass-logging": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
62
|
+
"@mongodb-js/compass-utils": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
61
63
|
"bson": "^4.4.1",
|
62
|
-
"hadron-react-components": "0.0.0-next-
|
64
|
+
"hadron-react-components": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
63
65
|
"react": "^16.14.0",
|
64
|
-
"storage-mixin": "0.0.0-next-
|
66
|
+
"storage-mixin": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a"
|
65
67
|
},
|
66
68
|
"peerDependencies": {
|
67
69
|
"@mongodb-js/compass-components": "^1.3.0",
|
@@ -73,11 +75,11 @@
|
|
73
75
|
"storage-mixin": "^5.1.0"
|
74
76
|
},
|
75
77
|
"devDependencies": {
|
76
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
77
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
78
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
79
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
80
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
78
|
+
"@mongodb-js/eslint-config-compass": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
79
|
+
"@mongodb-js/mocha-config-compass": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
80
|
+
"@mongodb-js/prettier-config-compass": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
81
|
+
"@mongodb-js/tsconfig-compass": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
82
|
+
"@mongodb-js/webpack-config-compass": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
81
83
|
"@testing-library/react": "^12.1.4",
|
82
84
|
"@testing-library/user-event": "^13.5.0",
|
83
85
|
"ampersand-model": "^8.0.1",
|
@@ -86,7 +88,7 @@
|
|
86
88
|
"depcheck": "^1.4.1",
|
87
89
|
"electron": "^15.5.7",
|
88
90
|
"eslint": "^7.25.0",
|
89
|
-
"hadron-app-registry": "0.0.0-next-
|
91
|
+
"hadron-app-registry": "0.0.0-next-feb0121be4234a831e6bce640173de34ce95dd7a",
|
90
92
|
"lodash": "^4.17.15",
|
91
93
|
"mocha": "^8.4.0",
|
92
94
|
"mongodb-ns": "^2.4.0",
|
@@ -100,5 +102,5 @@
|
|
100
102
|
"sinon": "^9.2.3",
|
101
103
|
"uuid": "^3.1.0"
|
102
104
|
},
|
103
|
-
"gitHead": "
|
105
|
+
"gitHead": "feb0121be4234a831e6bce640173de34ce95dd7a"
|
104
106
|
}
|