@mongodb-js/compass-indexes 5.4.0 → 5.5.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 +17 -2
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +2 -2
- package/dist/src/components/create-index-actions/create-index-actions.d.ts.map +1 -1
- package/dist/src/components/create-index-modal/create-index-modal.d.ts +4 -50
- package/dist/src/components/create-index-modal/create-index-modal.d.ts.map +1 -1
- package/dist/src/components/drop-index-modal/index.d.ts +6 -2
- package/dist/src/components/drop-index-modal/index.d.ts.map +1 -1
- package/dist/src/components/indexes/indexes.d.ts +5 -4
- package/dist/src/components/indexes/indexes.d.ts.map +1 -1
- package/dist/src/components/indexes-table/indexes-table.d.ts.map +1 -1
- package/dist/src/components/indexes-table/property-field.d.ts +2 -3
- package/dist/src/components/indexes-table/property-field.d.ts.map +1 -1
- package/dist/src/components/indexes-toolbar/indexes-toolbar.d.ts.map +1 -1
- package/dist/src/modules/indexes.d.ts +3 -1
- package/dist/src/modules/indexes.d.ts.map +1 -1
- package/dist/src/utils/index-link-helper.d.ts +1 -0
- package/dist/src/utils/index-link-helper.d.ts.map +1 -1
- package/package.json +26 -26
- package/dist/src/components/indexes-table/name-field.d.ts +0 -9
- package/dist/src/components/indexes-table/name-field.d.ts.map +0 -1
@@ -51,7 +51,7 @@ object-assign
|
|
51
51
|
* LICENSE file in the root directory of this source tree.
|
52
52
|
*/
|
53
53
|
|
54
|
-
/** @license React v0.
|
54
|
+
/** @license React v0.20.2
|
55
55
|
* scheduler.production.min.js
|
56
56
|
*
|
57
57
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
@@ -69,7 +69,7 @@ object-assign
|
|
69
69
|
* LICENSE file in the root directory of this source tree.
|
70
70
|
*/
|
71
71
|
|
72
|
-
/** @license React
|
72
|
+
/** @license React v17.0.2
|
73
73
|
* react-dom.production.min.js
|
74
74
|
*
|
75
75
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-index-actions.d.ts","sourceRoot":"","sources":["../../../../src/components/create-index-actions/create-index-actions.tsx"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"create-index-actions.d.ts","sourceRoot":"","sources":["../../../../src/components/create-index-actions/create-index-actions.tsx"],"names":[],"mappings":";AAwBA,iBAAS,kBAAkB,CAAC,EAC1B,KAAK,EACL,UAAU,EACV,UAAU,EACV,WAAW,EACX,qBAAqB,GACtB,EAAE;IACD,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,qBAAqB,EAAE,MAAM,IAAI,CAAC;CACnC,eAkEA;AAED,eAAe,kBAAkB,CAAC"}
|
@@ -9,55 +9,9 @@ declare function CreateIndexModal({ isVisible, namespace, error, clearError, inP
|
|
9
9
|
createIndex: () => void;
|
10
10
|
closeCreateIndexModal: () => void;
|
11
11
|
}): JSX.Element;
|
12
|
-
declare const _default: import("react-redux").ConnectedComponent<typeof CreateIndexModal,
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
}[];
|
17
|
-
newIndexField: string | null;
|
18
|
-
schemaFields: string[];
|
19
|
-
isUnique: boolean;
|
20
|
-
isSparse: boolean;
|
21
|
-
useIndexName: boolean;
|
22
|
-
useTtl: boolean;
|
23
|
-
usePartialFilterExpression: boolean;
|
24
|
-
useCustomCollation: boolean;
|
25
|
-
useWildcardProjection: boolean;
|
26
|
-
useColumnstoreProjection: boolean;
|
27
|
-
name: string;
|
28
|
-
ttl?: string | undefined;
|
29
|
-
partialFilterExpression?: string | undefined;
|
30
|
-
wildcardProjection: string;
|
31
|
-
collationString?: string | undefined;
|
32
|
-
columnstoreProjection: string;
|
33
|
-
serverVersion: string;
|
34
|
-
toggleIsUnique: (isUnique: boolean) => void;
|
35
|
-
toggleIsSparse: (isSparse: boolean) => void;
|
36
|
-
toggleUseIndexName: (useIndexName: boolean) => void;
|
37
|
-
toggleUseTtl: (useTtl: boolean) => void;
|
38
|
-
toggleUsePartialFilterExpression: (usePartialFilterExpression: boolean) => void;
|
39
|
-
toggleUseWildcardProjection: (useWildcardProjection: boolean) => void;
|
40
|
-
toggleUseCustomCollation: (useCustomCollation: boolean) => void;
|
41
|
-
toggleUseColumnstoreProjection: (useColumnstoreProjection: boolean) => void;
|
42
|
-
nameChanged: (name: string) => void;
|
43
|
-
ttlChanged: (ttl: string) => void;
|
44
|
-
partialFilterExpressionChanged: (partialFilterExpression: string) => void;
|
45
|
-
wildcardProjectionChanged: (wildcardProjection: string) => void;
|
46
|
-
collationStringChanged: (collationString: string) => void;
|
47
|
-
columnstoreProjectionChanged: (columnstoreProjection: string) => void;
|
48
|
-
updateFieldName: (idx: number, name: string) => void;
|
49
|
-
updateFieldType: (idx: number, fType: string) => void;
|
50
|
-
addField: () => void;
|
51
|
-
removeField: (idx: number) => void;
|
52
|
-
createNewIndexField: (newField: string) => void;
|
53
|
-
} & {
|
54
|
-
isVisible: boolean;
|
55
|
-
namespace: string;
|
56
|
-
error: string | null;
|
57
|
-
clearError: () => void;
|
58
|
-
inProgress: boolean;
|
59
|
-
createIndex: () => void;
|
60
|
-
closeCreateIndexModal: () => void;
|
61
|
-
}, "schemaFields" | "inProgress" | "useCustomCollation" | "useIndexName" | "isVisible" | "collationString" | "isUnique" | "useTtl" | "useWildcardProjection" | "useColumnstoreProjection" | "usePartialFilterExpression" | "ttl" | "wildcardProjection" | "columnstoreProjection" | "partialFilterExpression" | "name" | "namespace" | "error" | "serverVersion" | "fields" | "newIndexField" | "isSparse" | "addField" | "createNewIndexField" | "removeField" | "updateFieldName" | "updateFieldType" | "toggleIsUnique" | "toggleUseTtl" | "ttlChanged" | "toggleUsePartialFilterExpression" | "partialFilterExpressionChanged" | "toggleUseCustomCollation" | "collationStringChanged" | "toggleUseWildcardProjection" | "wildcardProjectionChanged" | "toggleUseColumnstoreProjection" | "columnstoreProjectionChanged" | "nameChanged" | "toggleUseIndexName" | "toggleIsSparse" | "clearError" | "createIndex" | "closeCreateIndexModal"> & import("react-redux").ConnectProps>;
|
12
|
+
declare const _default: import("react-redux").ConnectedComponent<typeof CreateIndexModal, {
|
13
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
14
|
+
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
15
|
+
}>;
|
62
16
|
export default _default;
|
63
17
|
//# sourceMappingURL=create-index-modal.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-index-modal.d.ts","sourceRoot":"","sources":["../../../../src/components/create-index-modal/create-index-modal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;
|
1
|
+
{"version":3,"file":"create-index-modal.d.ts","sourceRoot":"","sources":["../../../../src/components/create-index-modal/create-index-modal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAoC3C,OAAO,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAC;AAQzE,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,SAAS,EACT,KAAK,EACL,UAAU,EACV,UAAU,EACV,WAAW,EACX,qBAAqB,EACrB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,GAAG;IAChD,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,qBAAqB,EAAE,MAAM,IAAI,CAAC;CACnC,eAoCA;;;;;AA8ED,wBAAgE"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
export declare type DropIndexFormProps = {
|
3
3
|
isVisible: boolean;
|
4
4
|
inProgress: boolean;
|
@@ -13,6 +13,10 @@ export declare type DropIndexFormProps = {
|
|
13
13
|
clearError: () => void;
|
14
14
|
};
|
15
15
|
export declare function DropIndexModal({ isVisible, inProgress, error, name, confirmName, toggleIsVisible, changeConfirmName, resetForm, dropIndex, clearError, }: DropIndexFormProps): JSX.Element;
|
16
|
-
declare const _default: import("react-redux").ConnectedComponent<typeof DropIndexModal,
|
16
|
+
declare const _default: import("react-redux").ConnectedComponent<typeof DropIndexModal, {
|
17
|
+
toggleInProgress: () => void;
|
18
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
19
|
+
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
20
|
+
}>;
|
17
21
|
export default _default;
|
18
22
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/drop-index-modal/index.tsx"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/drop-index-modal/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AA4C1B,oBAAY,kBAAkB,GAAG;IAC/B,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;IAC9C,gBAAgB,EAAE,MAAM,IAAI,CAAC;IAC7B,iBAAiB,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,SAAS,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB,CAAC;AAKF,wBAAgB,cAAc,CAAC,EAC7B,SAAS,EACT,UAAU,EACV,KAAK,EACL,IAAI,EACJ,WAAW,EACX,eAAe,EACf,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,UAAU,GACX,EAAE,kBAAkB,eAiFpB;;;;;;AA0BD,wBAA8D"}
|
@@ -20,10 +20,11 @@ declare const _default: import("react-redux").ConnectedComponent<(props: Omit<In
|
|
20
20
|
children?: React.ReactNode;
|
21
21
|
}, "readOnly"> & Partial<Pick<IndexesProps & {
|
22
22
|
children?: React.ReactNode;
|
23
|
-
}, "readOnly">>) => React.ReactElement<{}, string | React.JSXElementConstructor<any>>,
|
23
|
+
}, "readOnly">>) => React.ReactElement<{}, string | React.JSXElementConstructor<any>>, {
|
24
24
|
children?: React.ReactNode;
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
readOnly?: boolean | undefined;
|
26
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
27
|
+
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
28
|
+
}>;
|
28
29
|
export default _default;
|
29
30
|
//# sourceMappingURL=indexes.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes/indexes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;AAKnD,OAAO,KAAK,EACV,eAAe,EACf,UAAU,EACV,aAAa,EACd,MAAM,uBAAuB,CAAC;
|
1
|
+
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes/indexes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;AAKnD,OAAO,KAAK,EACV,eAAe,EACf,UAAU,EACV,aAAa,EACd,MAAM,uBAAuB,CAAC;AAmB/B,aAAK,YAAY,GAAG;IAClB,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,OAAO,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,gBAAgB,EAAE,WAAW,CAAC;IAC9B,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,CAAC,IAAI,EAAE,UAAU,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,CAAC;IAClE,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,eAAe,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,iBAAiB,CAAC,YAAY,CAkDzD,CAAC;;;;;;;;;;;AA4BF,wBAGiD"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"indexes-table.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/indexes-table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAiB1D,OAAO,KAAK,EACV,eAAe,EACf,UAAU,EACV,aAAa,EACd,MAAM,uBAAuB,CAAC;
|
1
|
+
{"version":3,"file":"indexes-table.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/indexes-table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAiB1D,OAAO,KAAK,EACV,eAAe,EACf,UAAU,EACV,aAAa,EACd,MAAM,uBAAuB,CAAC;AAkD/B,aAAK,iBAAiB,GAAG;IACvB,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,cAAc,EAAE,OAAO,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,CAAC,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,CAAC;IACpE,aAAa,EAAE,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,CAAC;CACjD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CA+GnE,CAAC"}
|
@@ -2,11 +2,10 @@ import React from 'react';
|
|
2
2
|
import type { IndexDefinition } from '../../modules/indexes';
|
3
3
|
export declare const getPropertyTooltip: (property: IndexDefinition['properties'][0], extra: IndexDefinition['extra']) => string | null;
|
4
4
|
declare type PropertyFieldProps = {
|
5
|
-
darkMode?: boolean;
|
6
5
|
extra: IndexDefinition['extra'];
|
7
6
|
properties: IndexDefinition['properties'];
|
8
7
|
cardinality: IndexDefinition['cardinality'];
|
9
8
|
};
|
10
|
-
declare const
|
11
|
-
export default
|
9
|
+
declare const PropertyField: React.FunctionComponent<PropertyFieldProps>;
|
10
|
+
export default PropertyField;
|
12
11
|
//# sourceMappingURL=property-field.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"property-field.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/property-field.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;
|
1
|
+
{"version":3,"file":"property-field.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/property-field.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAkB7D,eAAO,MAAM,kBAAkB,aACnB,eAAe,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SACnC,eAAe,CAAC,OAAO,CAAC,KAC9B,MAAM,GAAG,IAMX,CAAC;AA2CF,aAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;IAChC,UAAU,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAC1C,WAAW,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;CAC7C,CAAC;AAEF,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,iBAAiB,CAAC,kBAAkB,CAoC9D,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"indexes-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-toolbar/indexes-toolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAY3C,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;
|
1
|
+
{"version":3,"file":"indexes-toolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-toolbar/indexes-toolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAY3C,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;AAqBnD,aAAK,mBAAmB,GAAG;IACzB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,OAAO,CAAC;IACxB,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,EAAE,WAAW,CAAC;IAC9B,YAAY,EAAE,OAAO,CAAC;IACtB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,gBAAgB,EAAE,MAAM,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,iBAAiB,CAAC,mBAAmB,CAoFvE,CAAC"}
|
@@ -18,10 +18,11 @@ export declare type IndexFieldsDefinition = {
|
|
18
18
|
};
|
19
19
|
export declare type IndexDefinition = {
|
20
20
|
name: string;
|
21
|
+
ns: string;
|
21
22
|
fields: {
|
22
23
|
serialize: () => IndexFieldsDefinition[];
|
23
24
|
};
|
24
|
-
type: '
|
25
|
+
type: 'regular' | 'geospatial' | 'hashed' | 'text' | 'wildcard' | 'clustered' | 'columnstore';
|
25
26
|
cardinality: 'single' | 'compound';
|
26
27
|
properties: ('unique' | 'sparse' | 'partial' | 'ttl' | 'collation')[];
|
27
28
|
extra: Record<string, string | number | Record<string, any>>;
|
@@ -29,6 +30,7 @@ export declare type IndexDefinition = {
|
|
29
30
|
relativeSize: number;
|
30
31
|
usageCount: number;
|
31
32
|
usageSince?: Date;
|
33
|
+
usageHost?: string;
|
32
34
|
};
|
33
35
|
export declare enum ActionTypes {
|
34
36
|
LoadIndexes = "indexes/indexes/LOAD_INDEXES",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/indexes.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAiB,MAAM,aAAa,CAAC;AAG9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,OAAO,KAAK,EAAE,iBAAiB,EAAgB,MAAM,SAAS,CAAC;AAE/D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAS7D,oBAAY,UAAU,GAAG,MAAM,OAAO,iBAAiB,CAAC;AACxD,oBAAY,aAAa,GAAG,KAAK,GAAG,MAAM,CAAC;AAC3C,QAAA,MAAM,iBAAiB;;;;;;CAMb,CAAC;AAEX,oBAAY,qBAAqB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;AAE9E,oBAAY,eAAe,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE;QACN,SAAS,EAAE,MAAM,qBAAqB,EAAE,CAAC;KAC1C,CAAC;
|
1
|
+
{"version":3,"file":"indexes.d.ts","sourceRoot":"","sources":["../../../src/modules/indexes.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAiB,MAAM,aAAa,CAAC;AAG9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,OAAO,KAAK,EAAE,iBAAiB,EAAgB,MAAM,SAAS,CAAC;AAE/D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAS7D,oBAAY,UAAU,GAAG,MAAM,OAAO,iBAAiB,CAAC;AACxD,oBAAY,aAAa,GAAG,KAAK,GAAG,MAAM,CAAC;AAC3C,QAAA,MAAM,iBAAiB;;;;;;CAMb,CAAC;AAEX,oBAAY,qBAAqB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;AAE9E,oBAAY,eAAe,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE;QACN,SAAS,EAAE,MAAM,qBAAqB,EAAE,CAAC;KAC1C,CAAC;IAEF,IAAI,EACA,SAAS,GACT,YAAY,GACZ,QAAQ,GACR,MAAM,GACN,UAAU,GACV,WAAW,GACX,aAAa,CAAC;IAClB,WAAW,EAAE,QAAQ,GAAG,UAAU,CAAC;IACnC,UAAU,EAAE,CAAC,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,KAAK,GAAG,WAAW,CAAC,EAAE,CAAC;IACtE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IAC7D,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,IAAI,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,oBAAY,WAAW;IACrB,WAAW,iCAAiC;IAC5C,WAAW,iCAAiC;CAC7C;AAED,aAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,WAAW,CAAC,WAAW,CAAC;IAC9B,OAAO,EAAE,eAAe,EAAE,CAAC;CAC5B,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,IAAI,EAAE,WAAW,CAAC,WAAW,CAAC;IAC9B,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,MAAM,EAAE,UAAU,CAAC;IACnB,KAAK,EAAE,aAAa,CAAC;CACtB,CAAC;AAEF,aAAK,OAAO,GAAG,iBAAiB,GAAG,iBAAiB,CAAC;AACrD,aAAK,KAAK,GAAG,eAAe,EAAE,CAAC;AAE/B,eAAO,MAAM,aAAa,EAAE,KAAU,CAAC;AAEvC,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,KAAK,mBAAuB,EAAE,MAAM,EAAE,OAAO,SAU5E;AAED,eAAO,MAAM,WAAW,YAAa,eAAe,EAAE,KAAG,iBAGvD,CAAC;AAEH,eAAO,MAAM,WAAW,WACd,UAAU,SACX,aAAa,KACnB,YAAY,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,iBAAiB,CAUtD,CAAC;AAeF,eAAO,MAAM,YAAY,QAAO,YAC9B,IAAI,EACJ,SAAS,EACT,IAAI,EACJ,iBAAiB,GAAG,qBAAqB,GAAG,iBAAiB,CAiD9D,CAAC;AA0EF,eAAO,MAAM,eAAe,OACtB,MAAM,KACT,YAAY,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,CAK9C,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index-link-helper.d.ts","sourceRoot":"","sources":["../../../src/utils/index-link-helper.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS
|
1
|
+
{"version":3,"file":"index-link-helper.d.ts","sourceRoot":"","sources":["../../../src/utils/index-link-helper.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;CAwBd,CAAC;AAOF,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,OAAO,EAAE,MAAM,OAAO,SAAS,iBAEvE"}
|
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": "5.
|
5
|
+
"version": "5.5.0",
|
6
6
|
"author": {
|
7
7
|
"name": "MongoDB Inc",
|
8
8
|
"email": "compass@mongodb.com"
|
@@ -57,42 +57,43 @@
|
|
57
57
|
"reformat": "npm run prettier -- --write ."
|
58
58
|
},
|
59
59
|
"peerDependencies": {
|
60
|
-
"@mongodb-js/compass-components": "^1.
|
61
|
-
"@mongodb-js/compass-editor": "^0.
|
62
|
-
"@mongodb-js/compass-logging": "^1.1.
|
63
|
-
"@mongodb-js/mongodb-redux-common": "^2.0.
|
60
|
+
"@mongodb-js/compass-components": "^1.5.0",
|
61
|
+
"@mongodb-js/compass-editor": "^0.4.0",
|
62
|
+
"@mongodb-js/compass-logging": "^1.1.2",
|
63
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.4",
|
64
64
|
"bson": "^4.4.1",
|
65
|
-
"compass-preferences-model": "^2.
|
66
|
-
"mongodb-index-model": "^4.1.
|
67
|
-
"react": "^
|
65
|
+
"compass-preferences-model": "^2.5.0",
|
66
|
+
"mongodb-index-model": "^4.1.1",
|
67
|
+
"react": "^17.0.2"
|
68
68
|
},
|
69
69
|
"devDependencies": {
|
70
|
-
"@mongodb-js/eslint-config-compass": "^1.0.
|
71
|
-
"@mongodb-js/mocha-config-compass": "^1.0.
|
70
|
+
"@mongodb-js/eslint-config-compass": "^1.0.2",
|
71
|
+
"@mongodb-js/mocha-config-compass": "^1.0.2",
|
72
72
|
"@mongodb-js/prettier-config-compass": "^1.0.0",
|
73
73
|
"@mongodb-js/tsconfig-compass": "^1.0.1",
|
74
|
-
"@mongodb-js/webpack-config-compass": "^1.0.
|
74
|
+
"@mongodb-js/webpack-config-compass": "^1.0.5",
|
75
75
|
"@testing-library/react": "^12.1.4",
|
76
76
|
"@testing-library/user-event": "^13.5.0",
|
77
77
|
"chai": "^4.2.0",
|
78
78
|
"debug": "^4.2.0",
|
79
79
|
"depcheck": "^1.4.1",
|
80
|
-
"electron": "^
|
80
|
+
"electron": "^22.0.2",
|
81
81
|
"enzyme": "^3.11.0",
|
82
82
|
"eslint": "^7.25.0",
|
83
|
-
"hadron-app": "^5.
|
84
|
-
"hadron-app-registry": "^9.0.
|
83
|
+
"hadron-app": "^5.4.0",
|
84
|
+
"hadron-app-registry": "^9.0.3",
|
85
85
|
"lodash.clonedeep": "^4.5.0",
|
86
86
|
"lodash.contains": "^2.4.3",
|
87
87
|
"mocha": "^8.4.0",
|
88
|
-
"mongodb": "^4.
|
89
|
-
"mongodb-data-service": "^22.
|
88
|
+
"mongodb": "^4.13.0",
|
89
|
+
"mongodb-data-service": "^22.4.0",
|
90
90
|
"mongodb-query-parser": "^2.4.6",
|
91
91
|
"numeral": "^2.0.6",
|
92
92
|
"nyc": "^15.1.0",
|
93
93
|
"prop-types": "^15.7.2",
|
94
|
-
"react
|
95
|
-
"react-
|
94
|
+
"react": "^17.0.2",
|
95
|
+
"react-dom": "^17.0.2",
|
96
|
+
"react-redux": "^8.0.5",
|
96
97
|
"react-virtualized-auto-sizer": "^1.0.6",
|
97
98
|
"redux": "^4.2.0",
|
98
99
|
"redux-thunk": "^2.3.0",
|
@@ -102,14 +103,13 @@
|
|
102
103
|
"xvfb-maybe": "^0.2.1"
|
103
104
|
},
|
104
105
|
"dependencies": {
|
105
|
-
"@mongodb-js/compass-components": "^1.
|
106
|
-
"@mongodb-js/compass-editor": "^0.
|
107
|
-
"@mongodb-js/compass-logging": "^1.1.
|
108
|
-
"@mongodb-js/mongodb-redux-common": "^2.0.
|
106
|
+
"@mongodb-js/compass-components": "^1.5.0",
|
107
|
+
"@mongodb-js/compass-editor": "^0.4.0",
|
108
|
+
"@mongodb-js/compass-logging": "^1.1.2",
|
109
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.4",
|
109
110
|
"bson": "^4.4.1",
|
110
|
-
"compass-preferences-model": "^2.
|
111
|
-
"mongodb-index-model": "^4.1.
|
112
|
-
"react": "^16.14.0"
|
111
|
+
"compass-preferences-model": "^2.5.0",
|
112
|
+
"mongodb-index-model": "^4.1.1"
|
113
113
|
},
|
114
|
-
"gitHead": "
|
114
|
+
"gitHead": "cfe9a829fd77fc84e090f2c7b38663167071ebc5"
|
115
115
|
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import type { IndexDefinition } from '../../modules/indexes';
|
3
|
-
declare type NameFieldProps = {
|
4
|
-
name: string;
|
5
|
-
keys: ReturnType<IndexDefinition['fields']['serialize']>;
|
6
|
-
};
|
7
|
-
declare const NameField: React.FunctionComponent<NameFieldProps>;
|
8
|
-
export default NameField;
|
9
|
-
//# sourceMappingURL=name-field.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"name-field.d.ts","sourceRoot":"","sources":["../../../../src/components/indexes-table/name-field.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAgB7D,aAAK,cAAc,GAAG;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,UAAU,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;CAC1D,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,iBAAiB,CAAC,cAAc,CAmBtD,CAAC;AAEF,eAAe,SAAS,CAAC"}
|