@finos/legend-application-query 13.4.13 → 13.4.15
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/lib/__lib__/LegendQueryUserDataHelper.js +1 -1
- package/lib/components/Core_LegendQueryApplicationPlugin.d.ts +3 -1
- package/lib/components/Core_LegendQueryApplicationPlugin.d.ts.map +1 -1
- package/lib/components/Core_LegendQueryApplicationPlugin.js +71 -118
- package/lib/components/Core_LegendQueryApplicationPlugin.js.map +1 -1
- package/lib/components/QueryEditor.d.ts.map +1 -1
- package/lib/components/QueryEditor.js +25 -14
- package/lib/components/QueryEditor.js.map +1 -1
- package/lib/components/data-space/DataSpaceQuerySetup.d.ts.map +1 -1
- package/lib/components/data-space/DataSpaceQuerySetup.js +2 -2
- package/lib/components/data-space/DataSpaceQuerySetup.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +0 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +0 -1
- package/lib/index.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/EditExistingQuerySetupStore.js +1 -1
- package/lib/stores/EditExistingQuerySetupStore.js.map +1 -1
- package/lib/stores/LegendQueryApplicationPlugin.d.ts +0 -8
- package/lib/stores/LegendQueryApplicationPlugin.d.ts.map +1 -1
- package/lib/stores/LegendQueryApplicationPlugin.js.map +1 -1
- package/lib/stores/QueryEditorStore.d.ts +2 -0
- package/lib/stores/QueryEditorStore.d.ts.map +1 -1
- package/lib/stores/QueryEditorStore.js +8 -2
- package/lib/stores/QueryEditorStore.js.map +1 -1
- package/lib/stores/QueryProductionizerSetupStore.js +1 -1
- package/lib/stores/QueryProductionizerSetupStore.js.map +1 -1
- package/package.json +7 -7
- package/src/__lib__/LegendQueryUserDataHelper.ts +1 -1
- package/src/components/Core_LegendQueryApplicationPlugin.tsx +136 -324
- package/src/components/QueryEditor.tsx +114 -66
- package/src/components/data-space/DataSpaceQuerySetup.tsx +2 -1
- package/src/index.ts +0 -1
- package/src/stores/EditExistingQuerySetupStore.ts +2 -2
- package/src/stores/LegendQueryApplicationPlugin.tsx +0 -12
- package/src/stores/QueryEditorStore.ts +10 -3
- package/src/stores/QueryProductionizerSetupStore.ts +2 -2
- package/tsconfig.json +0 -2
- package/lib/__lib__/LegendQueryTesting.d.ts +0 -19
- package/lib/__lib__/LegendQueryTesting.d.ts.map +0 -1
- package/lib/__lib__/LegendQueryTesting.js +0 -20
- package/lib/__lib__/LegendQueryTesting.js.map +0 -1
- package/lib/application/LegendQueryDocumentation.d.ts +0 -19
- package/lib/application/LegendQueryDocumentation.d.ts.map +0 -1
- package/lib/application/LegendQueryDocumentation.js +0 -20
- package/lib/application/LegendQueryDocumentation.js.map +0 -1
- package/src/__lib__/LegendQueryTesting.ts +0 -19
- package/src/application/LegendQueryDocumentation.ts +0 -19
|
@@ -40,6 +40,9 @@ import {
|
|
|
40
40
|
Panel,
|
|
41
41
|
PanelFullContent,
|
|
42
42
|
CustomSelectorInput,
|
|
43
|
+
PencilIcon,
|
|
44
|
+
MoonIcon,
|
|
45
|
+
SunIcon,
|
|
43
46
|
} from '@finos/legend-art';
|
|
44
47
|
import { observer } from 'mobx-react-lite';
|
|
45
48
|
import { Fragment, useEffect, useMemo, useRef, useState } from 'react';
|
|
@@ -53,7 +56,10 @@ import {
|
|
|
53
56
|
generateExistingQueryEditorRoute,
|
|
54
57
|
} from '../__lib__/LegendQueryNavigation.js';
|
|
55
58
|
import { ExistingQueryEditorStore } from '../stores/QueryEditorStore.js';
|
|
56
|
-
import {
|
|
59
|
+
import {
|
|
60
|
+
LEGEND_APPLICATION_COLOR_THEME,
|
|
61
|
+
useApplicationStore,
|
|
62
|
+
} from '@finos/legend-application';
|
|
57
63
|
import { useParams } from '@finos/legend-application/browser';
|
|
58
64
|
import {
|
|
59
65
|
MappingQueryCreatorStoreProvider,
|
|
@@ -95,6 +101,7 @@ const CreateQueryDialog = observer(() => {
|
|
|
95
101
|
);
|
|
96
102
|
};
|
|
97
103
|
const isExistingQueryName = createQueryState.editorStore.existingQueryName;
|
|
104
|
+
const isEmptyName = !createQueryState.queryName;
|
|
98
105
|
// name
|
|
99
106
|
const nameInputRef = useRef<HTMLInputElement>(null);
|
|
100
107
|
const debouncedLoadQueries = useMemo(
|
|
@@ -106,13 +113,16 @@ const CreateQueryDialog = observer(() => {
|
|
|
106
113
|
}, 500),
|
|
107
114
|
[applicationStore, createQueryState.editorStore],
|
|
108
115
|
);
|
|
116
|
+
const setFocus = (): void => {
|
|
117
|
+
nameInputRef.current?.focus();
|
|
118
|
+
};
|
|
109
119
|
|
|
110
120
|
const changeName: React.ChangeEventHandler<HTMLInputElement> = (event) => {
|
|
111
121
|
createQueryState.setQueryName(event.target.value);
|
|
112
122
|
};
|
|
113
123
|
|
|
114
124
|
useEffect(() => {
|
|
115
|
-
|
|
125
|
+
setTimeout(() => setFocus(), 1);
|
|
116
126
|
}, []);
|
|
117
127
|
|
|
118
128
|
useEffect(() => {
|
|
@@ -155,6 +165,7 @@ const CreateQueryDialog = observer(() => {
|
|
|
155
165
|
spellCheck={false}
|
|
156
166
|
value={createQueryState.queryName}
|
|
157
167
|
onChange={changeName}
|
|
168
|
+
title="New Query Name"
|
|
158
169
|
/>
|
|
159
170
|
{isExistingQueryName && (
|
|
160
171
|
<div
|
|
@@ -171,10 +182,11 @@ const CreateQueryDialog = observer(() => {
|
|
|
171
182
|
<ModalFooterButton
|
|
172
183
|
text="Create Query"
|
|
173
184
|
title="Create new query"
|
|
174
|
-
disabled={
|
|
185
|
+
disabled={
|
|
175
186
|
createQueryState.editorStore.isPerformingBlockingAction ||
|
|
176
|
-
|
|
177
|
-
|
|
187
|
+
Boolean(isExistingQueryName) ||
|
|
188
|
+
isEmptyName
|
|
189
|
+
}
|
|
178
190
|
onClick={create}
|
|
179
191
|
/>
|
|
180
192
|
</ModalFooter>
|
|
@@ -356,6 +368,12 @@ export const QueryEditorExistingQueryHeader = observer(
|
|
|
356
368
|
title="Double-click to rename query"
|
|
357
369
|
>
|
|
358
370
|
{existingEditorStore.lightQuery.name}
|
|
371
|
+
<button
|
|
372
|
+
className="panel__content__form__section__list__item__edit-btn"
|
|
373
|
+
onClick={enableRename}
|
|
374
|
+
>
|
|
375
|
+
<PencilIcon />
|
|
376
|
+
</button>
|
|
359
377
|
</div>
|
|
360
378
|
)}
|
|
361
379
|
{existingEditorStore.updateState.saveModal && (
|
|
@@ -581,6 +599,15 @@ export const QueryEditor = observer(() => {
|
|
|
581
599
|
!engineConfig.useClientRequestPayloadCompression,
|
|
582
600
|
);
|
|
583
601
|
|
|
602
|
+
const TEMPORARY__toggleLightDarkMode = (): void => {
|
|
603
|
+
applicationStore.layoutService.setColorTheme(
|
|
604
|
+
applicationStore.layoutService.TEMPORARY__isLightColorThemeEnabled
|
|
605
|
+
? LEGEND_APPLICATION_COLOR_THEME.DEFAULT_DARK
|
|
606
|
+
: LEGEND_APPLICATION_COLOR_THEME.LEGACY_LIGHT,
|
|
607
|
+
{ persist: true },
|
|
608
|
+
);
|
|
609
|
+
};
|
|
610
|
+
|
|
584
611
|
useEffect(() => {
|
|
585
612
|
flowResult(editorStore.initialize()).catch(
|
|
586
613
|
applicationStore.alertUnhandledError,
|
|
@@ -590,73 +617,79 @@ export const QueryEditor = observer(() => {
|
|
|
590
617
|
return (
|
|
591
618
|
<div className="query-editor">
|
|
592
619
|
<div className="query-editor__logo-header">
|
|
593
|
-
<div className="query-editor__logo-
|
|
594
|
-
<
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
<
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
disabled={!appDocUrl}
|
|
611
|
-
onClick={goToDocumentation}
|
|
612
|
-
>
|
|
613
|
-
Documentation
|
|
614
|
-
</MenuContentItem>
|
|
615
|
-
{docLinks?.map((entry) => (
|
|
620
|
+
<div className="query-editor__logo-header__combo">
|
|
621
|
+
<div className="query-editor__logo-header__combo__menu">
|
|
622
|
+
<DropdownMenu
|
|
623
|
+
className="query-editor__logo-header__combo__menu-item"
|
|
624
|
+
menuProps={{
|
|
625
|
+
anchorOrigin: { vertical: 'top', horizontal: 'right' },
|
|
626
|
+
transformOrigin: { vertical: 'top', horizontal: 'left' },
|
|
627
|
+
elevation: 7,
|
|
628
|
+
}}
|
|
629
|
+
content={
|
|
630
|
+
<MenuContent>
|
|
631
|
+
<MenuContentItem onClick={goToQuerySetup}>
|
|
632
|
+
Back to query setup
|
|
633
|
+
</MenuContentItem>
|
|
634
|
+
<MenuContentItem onClick={goToReleaseLog}>
|
|
635
|
+
Legend Query Release Log
|
|
636
|
+
</MenuContentItem>
|
|
616
637
|
<MenuContentItem
|
|
617
|
-
|
|
618
|
-
onClick={
|
|
638
|
+
disabled={!appDocUrl}
|
|
639
|
+
onClick={goToDocumentation}
|
|
619
640
|
>
|
|
620
|
-
|
|
641
|
+
Documentation
|
|
621
642
|
</MenuContentItem>
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
643
|
+
{docLinks?.map((entry) => (
|
|
644
|
+
<MenuContentItem
|
|
645
|
+
key={entry.key}
|
|
646
|
+
onClick={(): void => goToDocLink(entry.url)}
|
|
647
|
+
>
|
|
648
|
+
{entry.label}
|
|
649
|
+
</MenuContentItem>
|
|
650
|
+
))}
|
|
651
|
+
<MenuContentDivider />
|
|
652
|
+
<MenuContentItem disabled={true}>Settings</MenuContentItem>
|
|
653
|
+
<MenuContentItem
|
|
654
|
+
onClick={toggleEngineClientRequestPayloadCompression}
|
|
655
|
+
>
|
|
656
|
+
<MenuContentItemIcon>
|
|
657
|
+
{engineConfig.useClientRequestPayloadCompression ? (
|
|
658
|
+
<CheckIcon />
|
|
659
|
+
) : null}
|
|
660
|
+
</MenuContentItemIcon>
|
|
661
|
+
<MenuContentItemLabel>
|
|
662
|
+
Compress request payload
|
|
663
|
+
</MenuContentItemLabel>
|
|
664
|
+
</MenuContentItem>
|
|
665
|
+
</MenuContent>
|
|
666
|
+
}
|
|
667
|
+
>
|
|
668
|
+
<MenuIcon />
|
|
669
|
+
</DropdownMenu>
|
|
670
|
+
</div>
|
|
671
|
+
<div className="query-editor__logo-header__combo__name">
|
|
672
|
+
Legend Query
|
|
673
|
+
</div>
|
|
642
674
|
</div>
|
|
643
|
-
<
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
/>
|
|
675
|
+
<button
|
|
676
|
+
title="Toggle light/dark mode"
|
|
677
|
+
onClick={TEMPORARY__toggleLightDarkMode}
|
|
678
|
+
className="query-editor__header__action query-editor__header__action__theme-toggler"
|
|
679
|
+
>
|
|
680
|
+
{applicationStore.layoutService
|
|
681
|
+
.TEMPORARY__isLightColorThemeEnabled ? (
|
|
682
|
+
<>
|
|
683
|
+
<SunIcon className="query-editor__header__action__icon--bulb--light" />
|
|
684
|
+
</>
|
|
685
|
+
) : (
|
|
686
|
+
<>
|
|
687
|
+
<MoonIcon className="query-editor__header__action__icon--bulb--dark" />
|
|
688
|
+
</>
|
|
658
689
|
)}
|
|
690
|
+
</button>
|
|
659
691
|
</div>
|
|
692
|
+
|
|
660
693
|
<div className="query-editor__content">
|
|
661
694
|
<PanelLoadingIndicator isLoading={isLoadingEditor} />
|
|
662
695
|
{!isLoadingEditor && editorStore.queryBuilderState && (
|
|
@@ -684,6 +717,21 @@ export const QueryEditor = observer(() => {
|
|
|
684
717
|
/>
|
|
685
718
|
)}
|
|
686
719
|
</div>
|
|
720
|
+
{editorStore.queryLoaderState.isQueryLoaderDialogOpen && (
|
|
721
|
+
<QueryLoaderDialog
|
|
722
|
+
queryLoaderState={editorStore.queryLoaderState}
|
|
723
|
+
title="Load query"
|
|
724
|
+
/>
|
|
725
|
+
)}
|
|
726
|
+
{editorStore.queryCreatorState.showCreateModal && <CreateQueryDialog />}
|
|
727
|
+
{isExistingQuery &&
|
|
728
|
+
editorStore.updateState.showQueryInfo &&
|
|
729
|
+
editorStore.query && (
|
|
730
|
+
<QueryEditorExistingQueryInfoModal
|
|
731
|
+
existingEditorStore={editorStore}
|
|
732
|
+
query={editorStore.query}
|
|
733
|
+
/>
|
|
734
|
+
)}
|
|
687
735
|
</div>
|
|
688
736
|
);
|
|
689
737
|
});
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
CustomSelectorInput,
|
|
24
24
|
PanelHeader,
|
|
25
25
|
SearchIcon,
|
|
26
|
+
compareLabelFn,
|
|
26
27
|
type SelectComponent,
|
|
27
28
|
} from '@finos/legend-art';
|
|
28
29
|
import {
|
|
@@ -84,7 +85,7 @@ const DataSpaceQuerySetupSetupPanelContent = observer(
|
|
|
84
85
|
// data space
|
|
85
86
|
const dataSpaceOptions = queryBuilderState.dataSpaces
|
|
86
87
|
.map(buildDataSpaceOption)
|
|
87
|
-
.sort(
|
|
88
|
+
.sort(compareLabelFn);
|
|
88
89
|
const selectedDataSpaceOption = null;
|
|
89
90
|
const onDataSpaceOptionChange = (option: DataSpaceOption): void => {
|
|
90
91
|
queryBuilderState.onDataSpaceChange(option.value);
|
package/src/index.ts
CHANGED
|
@@ -58,10 +58,10 @@ export class EditExistingQuerySetupStore extends BaseQuerySetupStore {
|
|
|
58
58
|
'recently viewed queries',
|
|
59
59
|
)}`
|
|
60
60
|
: `No recently viewed queries`,
|
|
61
|
-
onQueryDeleted: (
|
|
61
|
+
onQueryDeleted: (queryId): void =>
|
|
62
62
|
LegendQueryUserDataHelper.removeRecentlyViewedQuery(
|
|
63
63
|
this.applicationStore.userDataService,
|
|
64
|
-
|
|
64
|
+
queryId,
|
|
65
65
|
),
|
|
66
66
|
onQueryRenamed: (query): void => {
|
|
67
67
|
LegendQueryTelemetryHelper.logEvent_RenameQuerySucceeded(
|
|
@@ -97,16 +97,4 @@ export class LegendQueryApplicationPlugin
|
|
|
97
97
|
* Get the list of actions (configurations) for query setup.
|
|
98
98
|
*/
|
|
99
99
|
getExtraQuerySetupActionConfigurations?(): QuerySetupActionConfiguration[];
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
* Get the list of query editor help menu action configurations.
|
|
103
|
-
*/
|
|
104
|
-
getExtraQueryEditorHelpMenuActionConfigurations?(): QueryEditorHelpMenuActionConfiguration[];
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* Get the list of query editor action renderer configurations.
|
|
108
|
-
*/
|
|
109
|
-
getExtraQueryEditorActionConfigurations?(
|
|
110
|
-
editorStore: QueryEditorStore,
|
|
111
|
-
): QueryEditorActionConfiguration[];
|
|
112
100
|
}
|
|
@@ -202,7 +202,7 @@ export class QueryCreatorState {
|
|
|
202
202
|
createQuery: flow,
|
|
203
203
|
});
|
|
204
204
|
this.editorStore = editorStore;
|
|
205
|
-
this.queryName = queryName ?? '
|
|
205
|
+
this.queryName = queryName ?? '';
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
setQueryName(val: string): void {
|
|
@@ -313,6 +313,7 @@ export abstract class QueryEditorStore {
|
|
|
313
313
|
queryBuilderState?: QueryBuilderState | undefined;
|
|
314
314
|
queryCreatorState: QueryCreatorState;
|
|
315
315
|
existingQueryName: string | undefined;
|
|
316
|
+
showRegisterServiceModal = false;
|
|
316
317
|
|
|
317
318
|
constructor(
|
|
318
319
|
applicationStore: LegendQueryApplicationStore,
|
|
@@ -322,9 +323,11 @@ export abstract class QueryEditorStore {
|
|
|
322
323
|
queryCreatorState: observable,
|
|
323
324
|
queryLoaderState: observable,
|
|
324
325
|
existingQueryName: observable,
|
|
326
|
+
showRegisterServiceModal: observable,
|
|
325
327
|
queryBuilderState: observable,
|
|
326
328
|
isPerformingBlockingAction: computed,
|
|
327
329
|
setExistingQueryName: action,
|
|
330
|
+
setShowRegisterServiceModal: action,
|
|
328
331
|
initialize: flow,
|
|
329
332
|
buildGraph: flow,
|
|
330
333
|
searchExistingQueryName: flow,
|
|
@@ -366,10 +369,10 @@ export abstract class QueryEditorStore {
|
|
|
366
369
|
'recently viewed queries',
|
|
367
370
|
)}`
|
|
368
371
|
: `No recently viewed queries`,
|
|
369
|
-
onQueryDeleted: (
|
|
372
|
+
onQueryDeleted: (queryId): void =>
|
|
370
373
|
LegendQueryUserDataHelper.removeRecentlyViewedQuery(
|
|
371
374
|
this.applicationStore.userDataService,
|
|
372
|
-
|
|
375
|
+
queryId,
|
|
373
376
|
),
|
|
374
377
|
onQueryRenamed: (query): void => {
|
|
375
378
|
LegendQueryTelemetryHelper.logEvent_RenameQuerySucceeded(
|
|
@@ -402,6 +405,10 @@ export abstract class QueryEditorStore {
|
|
|
402
405
|
this.existingQueryName = val;
|
|
403
406
|
}
|
|
404
407
|
|
|
408
|
+
setShowRegisterServiceModal(val: boolean): void {
|
|
409
|
+
this.showRegisterServiceModal = val;
|
|
410
|
+
}
|
|
411
|
+
|
|
405
412
|
get isPerformingBlockingAction(): boolean {
|
|
406
413
|
return this.queryCreatorState.createQueryState.isInProgress;
|
|
407
414
|
}
|
|
@@ -61,10 +61,10 @@ export class QueryProductionizerSetupStore extends BaseQuerySetupStore {
|
|
|
61
61
|
'recently viewed queries',
|
|
62
62
|
)}`
|
|
63
63
|
: `No recently viewed queries`,
|
|
64
|
-
onQueryDeleted: (
|
|
64
|
+
onQueryDeleted: (queryId): void =>
|
|
65
65
|
LegendQueryUserDataHelper.removeRecentlyViewedQuery(
|
|
66
66
|
this.applicationStore.userDataService,
|
|
67
|
-
|
|
67
|
+
queryId,
|
|
68
68
|
),
|
|
69
69
|
onQueryRenamed: (query): void => {
|
|
70
70
|
LegendQueryTelemetryHelper.logEvent_RenameQuerySucceeded(
|
package/tsconfig.json
CHANGED
|
@@ -56,11 +56,9 @@
|
|
|
56
56
|
"./src/__lib__/LegendQueryEventHelper.ts",
|
|
57
57
|
"./src/__lib__/LegendQueryNavigation.ts",
|
|
58
58
|
"./src/__lib__/LegendQueryTelemetryHelper.ts",
|
|
59
|
-
"./src/__lib__/LegendQueryTesting.ts",
|
|
60
59
|
"./src/__lib__/LegendQueryUserDataHelper.ts",
|
|
61
60
|
"./src/application/Core_LegendQuery_LegendApplicationPlugin.ts",
|
|
62
61
|
"./src/application/LegendQueryApplicationConfig.ts",
|
|
63
|
-
"./src/application/LegendQueryDocumentation.ts",
|
|
64
62
|
"./src/application/LegendQueryPluginManager.ts",
|
|
65
63
|
"./src/components/data-space/QueryDataSpaceUtil.ts",
|
|
66
64
|
"./src/stores/CloneServiceQuerySetupStore.ts",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
export declare enum QUERY_EDITOR_TEST_ID {
|
|
17
|
-
QUERY_EDITOR_ACTIONS = "query__editor__actions"
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=LegendQueryTesting.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendQueryTesting.d.ts","sourceRoot":"","sources":["../../src/__lib__/LegendQueryTesting.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,oBAAY,oBAAoB;IAC9B,oBAAoB,2BAA2B;CAChD"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
export var QUERY_EDITOR_TEST_ID;
|
|
17
|
-
(function (QUERY_EDITOR_TEST_ID) {
|
|
18
|
-
QUERY_EDITOR_TEST_ID["QUERY_EDITOR_ACTIONS"] = "query__editor__actions";
|
|
19
|
-
})(QUERY_EDITOR_TEST_ID || (QUERY_EDITOR_TEST_ID = {}));
|
|
20
|
-
//# sourceMappingURL=LegendQueryTesting.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendQueryTesting.js","sourceRoot":"","sources":["../../src/__lib__/LegendQueryTesting.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAN,IAAY,oBAEX;AAFD,WAAY,oBAAoB;IAC9B,uEAA+C,CAAA;AACjD,CAAC,EAFW,oBAAoB,KAApB,oBAAoB,QAE/B"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
export declare enum QUERY_DOCUMENTATION_KEY {
|
|
17
|
-
TUTORIAL_QUERY_BUILDER = "tutorial.query.builder"
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=LegendQueryDocumentation.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendQueryDocumentation.d.ts","sourceRoot":"","sources":["../../src/application/LegendQueryDocumentation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,oBAAY,uBAAuB;IACjC,sBAAsB,2BAA2B;CAClD"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
export var QUERY_DOCUMENTATION_KEY;
|
|
17
|
-
(function (QUERY_DOCUMENTATION_KEY) {
|
|
18
|
-
QUERY_DOCUMENTATION_KEY["TUTORIAL_QUERY_BUILDER"] = "tutorial.query.builder";
|
|
19
|
-
})(QUERY_DOCUMENTATION_KEY || (QUERY_DOCUMENTATION_KEY = {}));
|
|
20
|
-
//# sourceMappingURL=LegendQueryDocumentation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendQueryDocumentation.js","sourceRoot":"","sources":["../../src/application/LegendQueryDocumentation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAN,IAAY,uBAEX;AAFD,WAAY,uBAAuB;IACjC,4EAAiD,CAAA;AACnD,CAAC,EAFW,uBAAuB,KAAvB,uBAAuB,QAElC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
export enum QUERY_EDITOR_TEST_ID {
|
|
18
|
-
QUERY_EDITOR_ACTIONS = 'query__editor__actions',
|
|
19
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
export enum QUERY_DOCUMENTATION_KEY {
|
|
18
|
-
TUTORIAL_QUERY_BUILDER = 'tutorial.query.builder',
|
|
19
|
-
}
|