@mongodb-js/compass-indexes 0.0.0-next-8596ab85d14da42f23f30aa220a34f2e6b42d91f → 0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed
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/components/search-index-template-dropdown/index.d.ts +9 -0
- package/dist/src/components/search-index-template-dropdown/index.d.ts.map +1 -0
- package/dist/src/components/search-indexes-modals/base-search-index-modal.d.ts.map +1 -1
- package/package.json +21 -19
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { SearchTemplate } from '@mongodb-js/mongodb-constants';
|
2
|
+
import React from 'react';
|
3
|
+
type SearchIndexTemplateDropdownProps = {
|
4
|
+
tooltip: string;
|
5
|
+
onTemplate: (template: SearchTemplate) => void;
|
6
|
+
};
|
7
|
+
export declare const SearchIndexTemplateDropdown: React.FunctionComponent<SearchIndexTemplateDropdownProps>;
|
8
|
+
export {};
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/search-index-template-dropdown/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,KAAgC,MAAM,OAAO,CAAC;AA8CrD,KAAK,gCAAgC,GAAG;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,CAAC,QAAQ,EAAE,cAAc,KAAK,IAAI,CAAC;CAChD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,iBAAiB,CAC/D,gCAAgC,CA6BjC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"base-search-index-modal.d.ts","sourceRoot":"","sources":["../../../../src/components/search-indexes-modals/base-search-index-modal.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
1
|
+
{"version":3,"file":"base-search-index-modal.d.ts","sourceRoot":"","sources":["../../../../src/components/search-indexes-modals/base-search-index-modal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAuBxE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAsDxC,KAAK,yBAAyB,GAAG;IAC/B,IAAI,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,OAAO,CAAC;IACrB,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,KAAK,IAAI,CAAC;IACjE,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,iBAAiB,CACxD,yBAAyB,CA4L1B,CAAC"}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@mongodb-js/compass-indexes",
|
3
3
|
"productName": "Compass Indexes plugin",
|
4
4
|
"description": "Collection index management for Compass",
|
5
|
-
"version": "0.0.0-next-
|
5
|
+
"version": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
6
6
|
"author": {
|
7
7
|
"name": "MongoDB Inc",
|
8
8
|
"email": "compass@mongodb.com"
|
@@ -56,20 +56,21 @@
|
|
56
56
|
"reformat": "npm run prettier -- --write . && npm run eslint . --fix"
|
57
57
|
},
|
58
58
|
"peerDependencies": {
|
59
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
60
|
-
"@mongodb-js/compass-editor": "0.0.0-next-
|
61
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
62
|
-
"@mongodb-js/mongodb-
|
59
|
+
"@mongodb-js/compass-components": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
60
|
+
"@mongodb-js/compass-editor": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
61
|
+
"@mongodb-js/compass-logging": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
62
|
+
"@mongodb-js/mongodb-constants": "^0.8.4",
|
63
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
63
64
|
"bson": "^6.0.0",
|
64
|
-
"compass-preferences-model": "0.0.0-next-
|
65
|
+
"compass-preferences-model": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
65
66
|
"react": "^17.0.2"
|
66
67
|
},
|
67
68
|
"devDependencies": {
|
68
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
69
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
70
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
71
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
72
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
69
|
+
"@mongodb-js/eslint-config-compass": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
70
|
+
"@mongodb-js/mocha-config-compass": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
71
|
+
"@mongodb-js/prettier-config-compass": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
72
|
+
"@mongodb-js/tsconfig-compass": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
73
|
+
"@mongodb-js/webpack-config-compass": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
73
74
|
"@testing-library/react": "^12.1.4",
|
74
75
|
"@testing-library/user-event": "^13.5.0",
|
75
76
|
"chai": "^4.2.0",
|
@@ -78,11 +79,11 @@
|
|
78
79
|
"electron": "^26.2.2",
|
79
80
|
"enzyme": "^3.11.0",
|
80
81
|
"eslint": "^7.25.0",
|
81
|
-
"hadron-app-registry": "0.0.0-next-
|
82
|
+
"hadron-app-registry": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
82
83
|
"lodash": "^4.17.21",
|
83
84
|
"mocha": "^10.2.0",
|
84
85
|
"mongodb": "^6.0.0",
|
85
|
-
"mongodb-data-service": "0.0.0-next-
|
86
|
+
"mongodb-data-service": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
86
87
|
"mongodb-query-parser": "^3.1.3",
|
87
88
|
"numeral": "^2.0.6",
|
88
89
|
"nyc": "^15.1.0",
|
@@ -97,12 +98,13 @@
|
|
97
98
|
"xvfb-maybe": "^0.2.1"
|
98
99
|
},
|
99
100
|
"dependencies": {
|
100
|
-
"@mongodb-js/compass-components": "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/mongodb-
|
101
|
+
"@mongodb-js/compass-components": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
102
|
+
"@mongodb-js/compass-editor": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
103
|
+
"@mongodb-js/compass-logging": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
104
|
+
"@mongodb-js/mongodb-constants": "^0.8.4",
|
105
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed",
|
104
106
|
"bson": "^6.0.0",
|
105
|
-
"compass-preferences-model": "0.0.0-next-
|
107
|
+
"compass-preferences-model": "0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed"
|
106
108
|
},
|
107
|
-
"gitHead": "
|
109
|
+
"gitHead": "ba552b8f02c4e17a5199123179285b0f901500ed"
|
108
110
|
}
|