@finos/legend-application 13.0.11 → 14.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.
Files changed (103) hide show
  1. package/lib/application/LegendApplication.d.ts +0 -2
  2. package/lib/application/LegendApplication.d.ts.map +1 -1
  3. package/lib/application/LegendApplication.js +3 -38
  4. package/lib/application/LegendApplication.js.map +1 -1
  5. package/lib/application/LegendApplicationDocumentation.d.ts +1 -9
  6. package/lib/application/LegendApplicationDocumentation.d.ts.map +1 -1
  7. package/lib/application/LegendApplicationDocumentation.js +0 -8
  8. package/lib/application/LegendApplicationDocumentation.js.map +1 -1
  9. package/lib/components/ApplicationStoreProvider.d.ts +1 -1
  10. package/lib/components/ApplicationStoreProvider.d.ts.map +1 -1
  11. package/lib/components/ApplicationStoreProvider.js +19 -5
  12. package/lib/components/ApplicationStoreProvider.js.map +1 -1
  13. package/lib/components/VirtualAssistant.d.ts.map +1 -1
  14. package/lib/components/VirtualAssistant.js +6 -8
  15. package/lib/components/VirtualAssistant.js.map +1 -1
  16. package/lib/components/shared/DocumentationLink.js +1 -1
  17. package/lib/components/shared/DocumentationLink.js.map +1 -1
  18. package/lib/components/shared/{TextSearchAdvancedConfigMenu.d.ts → FuzzySearchAdvancedConfigMenu.d.ts} +4 -4
  19. package/lib/components/shared/FuzzySearchAdvancedConfigMenu.d.ts.map +1 -0
  20. package/lib/components/shared/{TextSearchAdvancedConfigMenu.js → FuzzySearchAdvancedConfigMenu.js} +8 -8
  21. package/lib/components/shared/FuzzySearchAdvancedConfigMenu.js.map +1 -0
  22. package/lib/{components/execution-plan-viewer/ExecutionPlanViewer.d.ts → components.d.ts} +6 -13
  23. package/lib/components.d.ts.map +1 -0
  24. package/lib/{components/shared/TextInputEditor.d.ts → components.js} +6 -13
  25. package/lib/components.js.map +1 -0
  26. package/lib/const.d.ts +3 -3
  27. package/lib/const.d.ts.map +1 -1
  28. package/lib/const.js +19 -17
  29. package/lib/const.js.map +1 -1
  30. package/lib/index.css +2 -2
  31. package/lib/index.css.map +1 -1
  32. package/lib/index.d.ts +2 -15
  33. package/lib/index.d.ts.map +1 -1
  34. package/lib/index.js +4 -16
  35. package/lib/index.js.map +1 -1
  36. package/lib/package.json +7 -12
  37. package/lib/stores/ApplicationStore.d.ts +3 -1
  38. package/lib/stores/ApplicationStore.d.ts.map +1 -1
  39. package/lib/stores/ApplicationStore.js +22 -1
  40. package/lib/stores/ApplicationStore.js.map +1 -1
  41. package/lib/stores/AssistantService.d.ts +3 -3
  42. package/lib/stores/AssistantService.d.ts.map +1 -1
  43. package/lib/stores/AssistantService.js +3 -4
  44. package/lib/stores/AssistantService.js.map +1 -1
  45. package/lib/stores/Core_LegendApplicationPlugin.d.ts +2 -1
  46. package/lib/stores/Core_LegendApplicationPlugin.d.ts.map +1 -1
  47. package/lib/stores/Core_LegendApplicationPlugin.js +69 -1
  48. package/lib/stores/Core_LegendApplicationPlugin.js.map +1 -1
  49. package/lib/stores/LegendApplicationPlugin.d.ts +12 -1
  50. package/lib/stores/LegendApplicationPlugin.d.ts.map +1 -1
  51. package/lib/stores/LegendApplicationPlugin.js.map +1 -1
  52. package/lib/stores/pure-language/{PureLanguageTextEditorSupport.d.ts → PureLanguageCodeEditorSupport.d.ts} +1 -1
  53. package/lib/stores/pure-language/{PureLanguageTextEditorSupport.d.ts.map → PureLanguageCodeEditorSupport.d.ts.map} +1 -1
  54. package/lib/stores/pure-language/{PureLanguageTextEditorSupport.js → PureLanguageCodeEditorSupport.js} +1 -1
  55. package/lib/stores/pure-language/{PureLanguageTextEditorSupport.js.map → PureLanguageCodeEditorSupport.js.map} +1 -1
  56. package/lib/stores/pure-language/PureLanguageSupport.d.ts +1 -2
  57. package/lib/stores/pure-language/PureLanguageSupport.d.ts.map +1 -1
  58. package/lib/stores/pure-language/PureLanguageSupport.js +7 -71
  59. package/lib/stores/pure-language/PureLanguageSupport.js.map +1 -1
  60. package/lib/stores/shared/{TextSearchAdvancedConfigState.d.ts → FuzzySearchAdvancedConfigState.d.ts} +5 -5
  61. package/lib/stores/shared/FuzzySearchAdvancedConfigState.d.ts.map +1 -0
  62. package/lib/stores/shared/{TextSearchAdvancedConfigState.js → FuzzySearchAdvancedConfigState.js} +14 -14
  63. package/lib/stores/shared/FuzzySearchAdvancedConfigState.js.map +1 -0
  64. package/package.json +11 -16
  65. package/src/application/{LegendApplication.tsx → LegendApplication.ts} +4 -60
  66. package/src/application/LegendApplicationDocumentation.ts +0 -8
  67. package/src/components/ApplicationStoreProvider.tsx +31 -12
  68. package/src/components/VirtualAssistant.tsx +9 -13
  69. package/src/components/shared/DocumentationLink.tsx +1 -1
  70. package/src/components/shared/{TextSearchAdvancedConfigMenu.tsx → FuzzySearchAdvancedConfigMenu.tsx} +14 -14
  71. package/src/components.ts +23 -0
  72. package/src/const.ts +5 -3
  73. package/src/index.ts +7 -19
  74. package/src/stores/ApplicationStore.ts +31 -0
  75. package/src/stores/AssistantService.ts +5 -5
  76. package/src/stores/Core_LegendApplicationPlugin.ts +100 -1
  77. package/src/stores/LegendApplicationPlugin.ts +16 -1
  78. package/src/stores/pure-language/PureLanguageSupport.ts +8 -77
  79. package/src/stores/shared/{TextSearchAdvancedConfigState.ts → FuzzySearchAdvancedConfigState.ts} +8 -8
  80. package/tsconfig.json +6 -9
  81. package/lib/components/execution-plan-viewer/ExecutionPlanViewer.d.ts.map +0 -1
  82. package/lib/components/execution-plan-viewer/ExecutionPlanViewer.js +0 -182
  83. package/lib/components/execution-plan-viewer/ExecutionPlanViewer.js.map +0 -1
  84. package/lib/components/execution-plan-viewer/SQLExecutionNodeViewer.d.ts +0 -31
  85. package/lib/components/execution-plan-viewer/SQLExecutionNodeViewer.d.ts.map +0 -1
  86. package/lib/components/execution-plan-viewer/SQLExecutionNodeViewer.js +0 -32
  87. package/lib/components/execution-plan-viewer/SQLExecutionNodeViewer.js.map +0 -1
  88. package/lib/components/shared/TextInputEditor.d.ts.map +0 -1
  89. package/lib/components/shared/TextInputEditor.js +0 -109
  90. package/lib/components/shared/TextInputEditor.js.map +0 -1
  91. package/lib/components/shared/TextSearchAdvancedConfigMenu.d.ts.map +0 -1
  92. package/lib/components/shared/TextSearchAdvancedConfigMenu.js.map +0 -1
  93. package/lib/stores/ExecutionPlanState.d.ts +0 -61
  94. package/lib/stores/ExecutionPlanState.d.ts.map +0 -1
  95. package/lib/stores/ExecutionPlanState.js +0 -118
  96. package/lib/stores/ExecutionPlanState.js.map +0 -1
  97. package/lib/stores/shared/TextSearchAdvancedConfigState.d.ts.map +0 -1
  98. package/lib/stores/shared/TextSearchAdvancedConfigState.js.map +0 -1
  99. package/src/components/execution-plan-viewer/ExecutionPlanViewer.tsx +0 -543
  100. package/src/components/execution-plan-viewer/SQLExecutionNodeViewer.tsx +0 -46
  101. package/src/components/shared/TextInputEditor.tsx +0 -153
  102. package/src/stores/ExecutionPlanState.ts +0 -153
  103. /package/src/stores/pure-language/{PureLanguageTextEditorSupport.ts → PureLanguageCodeEditorSupport.ts} +0 -0
@@ -1,61 +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
- import { type RawExecutionPlan, type GraphManagerState, ExecutionPlan, ExecutionNode } from '@finos/legend-graph';
17
- import type { GenericLegendApplicationStore } from './ApplicationStore.js';
18
- import type { TreeNodeData } from '@finos/legend-art';
19
- export declare class ExecutionPlanViewTreeNodeData implements TreeNodeData {
20
- id: string;
21
- label: string;
22
- isSelected?: boolean;
23
- isOpen?: boolean;
24
- childrenIds?: string[];
25
- executionPlan: ExecutionPlan;
26
- constructor(id: string, label: string, executionPlan: ExecutionPlan);
27
- }
28
- export declare class ExecutionNodeTreeNodeData implements TreeNodeData {
29
- id: string;
30
- label: string;
31
- isSelected?: boolean;
32
- isOpen?: boolean;
33
- childrenIds?: string[];
34
- executionNode: ExecutionNode;
35
- constructor(id: string, label: string, executionNode: ExecutionNode);
36
- }
37
- export declare enum EXECUTION_PLAN_VIEW_MODE {
38
- FORM = "Form",
39
- JSON = "JSON"
40
- }
41
- export declare class ExecutionPlanState {
42
- applicationStore: GenericLegendApplicationStore;
43
- graphManagerState: GraphManagerState;
44
- displayDataJson: object;
45
- displayData: string;
46
- selectedNode: ExecutionNodeTreeNodeData | ExecutionPlanViewTreeNodeData | undefined;
47
- viewMode: EXECUTION_PLAN_VIEW_MODE;
48
- rawPlan?: RawExecutionPlan | undefined;
49
- plan?: ExecutionPlan | undefined;
50
- debugText?: string | undefined;
51
- constructor(applicationStore: GenericLegendApplicationStore, graphManagerState: GraphManagerState);
52
- setViewMode(val: EXECUTION_PLAN_VIEW_MODE): void;
53
- setRawPlan: (val: RawExecutionPlan | undefined) => void;
54
- setPlan: (val: ExecutionPlan | undefined) => void;
55
- setDebugText(val: string | undefined): void;
56
- setSelectedNode(node: ExecutionNodeTreeNodeData | ExecutionPlanViewTreeNodeData | undefined): void;
57
- setExecutionPlanDisplayData(val: string): void;
58
- setExecutionPlanDisplayDataJson(val: object): void;
59
- transformMetadataToProtocolJson(metaModel: ExecutionPlan | ExecutionNode): void;
60
- }
61
- //# sourceMappingURL=ExecutionPlanState.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ExecutionPlanState.d.ts","sourceRoot":"","sources":["../../src/stores/ExecutionPlanState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,aAAa,EACb,aAAa,EACd,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,qBAAa,6BAA8B,YAAW,YAAY;IAChE,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,aAAa,EAAG,aAAa,CAAC;gBAElB,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,aAAa,EAAE,aAAa;CAKpE;AAED,qBAAa,yBAA0B,YAAW,YAAY;IAC5D,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,aAAa,EAAE,aAAa,CAAC;gBAEjB,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,aAAa,EAAE,aAAa;CAKpE;AAED,oBAAY,wBAAwB;IAClC,IAAI,SAAS;IACb,IAAI,SAAS;CACd;AAED,qBAAa,kBAAkB;IAC7B,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,eAAe,EAAE,MAAM,CAAM;IAC7B,WAAW,SAAM;IACjB,YAAY,EACR,yBAAyB,GACzB,6BAA6B,GAC7B,SAAS,CAAa;IAC1B,QAAQ,EAAE,wBAAwB,CAAiC;IACnE,OAAO,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IACvC,IAAI,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;gBAG7B,gBAAgB,EAAE,6BAA6B,EAC/C,iBAAiB,EAAE,iBAAiB;IAsBtC,WAAW,CAAC,GAAG,EAAE,wBAAwB,GAAG,IAAI;IAIhD,UAAU,QAAS,gBAAgB,GAAG,SAAS,KAAG,IAAI,CAEpD;IAEF,OAAO,QAAS,aAAa,GAAG,SAAS,KAAG,IAAI,CAE9C;IAEF,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI;IAI3C,eAAe,CACb,IAAI,EAAE,yBAAyB,GAAG,6BAA6B,GAAG,SAAS,GAC1E,IAAI;IAUP,2BAA2B,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAI9C,+BAA+B,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAQlD,+BAA+B,CAC7B,SAAS,EAAE,aAAa,GAAG,aAAa,GACvC,IAAI;CAWR"}
@@ -1,118 +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
- import { observable, action, makeObservable } from 'mobx';
17
- import { ExecutionPlan, ExecutionNode, } from '@finos/legend-graph';
18
- export class ExecutionPlanViewTreeNodeData {
19
- id;
20
- label;
21
- isSelected;
22
- isOpen;
23
- childrenIds;
24
- executionPlan;
25
- constructor(id, label, executionPlan) {
26
- this.id = id;
27
- this.label = label;
28
- this.executionPlan = executionPlan;
29
- }
30
- }
31
- export class ExecutionNodeTreeNodeData {
32
- id;
33
- label;
34
- isSelected;
35
- isOpen;
36
- childrenIds;
37
- executionNode;
38
- constructor(id, label, executionNode) {
39
- this.id = id;
40
- this.label = label;
41
- this.executionNode = executionNode;
42
- }
43
- }
44
- export var EXECUTION_PLAN_VIEW_MODE;
45
- (function (EXECUTION_PLAN_VIEW_MODE) {
46
- EXECUTION_PLAN_VIEW_MODE["FORM"] = "Form";
47
- EXECUTION_PLAN_VIEW_MODE["JSON"] = "JSON";
48
- })(EXECUTION_PLAN_VIEW_MODE = EXECUTION_PLAN_VIEW_MODE || (EXECUTION_PLAN_VIEW_MODE = {}));
49
- export class ExecutionPlanState {
50
- applicationStore;
51
- graphManagerState;
52
- displayDataJson = {};
53
- displayData = '';
54
- selectedNode = undefined;
55
- viewMode = EXECUTION_PLAN_VIEW_MODE.FORM;
56
- rawPlan;
57
- plan;
58
- debugText;
59
- constructor(applicationStore, graphManagerState) {
60
- makeObservable(this, {
61
- displayData: observable,
62
- displayDataJson: observable,
63
- viewMode: observable,
64
- rawPlan: observable,
65
- plan: observable,
66
- debugText: observable,
67
- setExecutionPlanDisplayData: action,
68
- setExecutionPlanDisplayDataJson: action,
69
- transformMetadataToProtocolJson: action,
70
- setSelectedNode: action,
71
- setRawPlan: action,
72
- setPlan: action,
73
- setViewMode: action,
74
- setDebugText: action,
75
- });
76
- this.applicationStore = applicationStore;
77
- this.graphManagerState = graphManagerState;
78
- }
79
- setViewMode(val) {
80
- this.viewMode = val;
81
- }
82
- setRawPlan = (val) => {
83
- this.rawPlan = val;
84
- };
85
- setPlan = (val) => {
86
- this.plan = val;
87
- };
88
- setDebugText(val) {
89
- this.debugText = val;
90
- }
91
- setSelectedNode(node) {
92
- if (this.selectedNode) {
93
- this.selectedNode.isSelected = false;
94
- }
95
- if (node) {
96
- node.isSelected = true;
97
- }
98
- this.selectedNode = node;
99
- }
100
- setExecutionPlanDisplayData(val) {
101
- this.displayData = val;
102
- }
103
- setExecutionPlanDisplayDataJson(val) {
104
- this.displayDataJson = val;
105
- this.setExecutionPlanDisplayData(JSON.stringify(this.displayDataJson, undefined, 2));
106
- }
107
- transformMetadataToProtocolJson(metaModel) {
108
- if (metaModel instanceof ExecutionPlan) {
109
- const protocolJson = this.graphManagerState.graphManager.serializeExecutionPlan(metaModel);
110
- this.setExecutionPlanDisplayDataJson(protocolJson);
111
- }
112
- else if (metaModel instanceof ExecutionNode) {
113
- const protocolJson = this.graphManagerState.graphManager.serializeExecutionNode(metaModel);
114
- this.setExecutionPlanDisplayDataJson(protocolJson);
115
- }
116
- }
117
- }
118
- //# sourceMappingURL=ExecutionPlanState.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ExecutionPlanState.js","sourceRoot":"","sources":["../../src/stores/ExecutionPlanState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,MAAM,CAAC;AAC1D,OAAO,EAGL,aAAa,EACb,aAAa,GACd,MAAM,qBAAqB,CAAC;AAI7B,MAAM,OAAO,6BAA6B;IACxC,EAAE,CAAS;IACX,KAAK,CAAS;IACd,UAAU,CAAW;IACrB,MAAM,CAAW;IACjB,WAAW,CAAY;IACvB,aAAa,CAAiB;IAE9B,YAAY,EAAU,EAAE,KAAa,EAAE,aAA4B;QACjE,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;IACrC,CAAC;CACF;AAED,MAAM,OAAO,yBAAyB;IACpC,EAAE,CAAS;IACX,KAAK,CAAS;IACd,UAAU,CAAW;IACrB,MAAM,CAAW;IACjB,WAAW,CAAY;IACvB,aAAa,CAAgB;IAE7B,YAAY,EAAU,EAAE,KAAa,EAAE,aAA4B;QACjE,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;IACrC,CAAC;CACF;AAED,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAClC,yCAAa,CAAA;IACb,yCAAa,CAAA;AACf,CAAC,EAHW,wBAAwB,GAAxB,wBAAwB,KAAxB,wBAAwB,QAGnC;AAED,MAAM,OAAO,kBAAkB;IAC7B,gBAAgB,CAAgC;IAChD,iBAAiB,CAAoB;IACrC,eAAe,GAAW,EAAE,CAAC;IAC7B,WAAW,GAAG,EAAE,CAAC;IACjB,YAAY,GAGI,SAAS,CAAC;IAC1B,QAAQ,GAA6B,wBAAwB,CAAC,IAAI,CAAC;IACnE,OAAO,CAAgC;IACvC,IAAI,CAA6B;IACjC,SAAS,CAAsB;IAE/B,YACE,gBAA+C,EAC/C,iBAAoC;QAEpC,cAAc,CAAC,IAAI,EAAE;YACnB,WAAW,EAAE,UAAU;YACvB,eAAe,EAAE,UAAU;YAC3B,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,UAAU;YACnB,IAAI,EAAE,UAAU;YAChB,SAAS,EAAE,UAAU;YACrB,2BAA2B,EAAE,MAAM;YACnC,+BAA+B,EAAE,MAAM;YACvC,+BAA+B,EAAE,MAAM;YACvC,eAAe,EAAE,MAAM;YACvB,UAAU,EAAE,MAAM;YAClB,OAAO,EAAE,MAAM;YACf,WAAW,EAAE,MAAM;YACnB,YAAY,EAAE,MAAM;SACrB,CAAC,CAAC;QACH,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;IAC7C,CAAC;IAED,WAAW,CAAC,GAA6B;QACvC,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC;IACtB,CAAC;IAED,UAAU,GAAG,CAAC,GAAiC,EAAQ,EAAE;QACvD,IAAI,CAAC,OAAO,GAAG,GAAG,CAAC;IACrB,CAAC,CAAC;IAEF,OAAO,GAAG,CAAC,GAA8B,EAAQ,EAAE;QACjD,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;IAClB,CAAC,CAAC;IAEF,YAAY,CAAC,GAAuB;QAClC,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC;IACvB,CAAC;IAED,eAAe,CACb,IAA2E;QAE3E,IAAI,IAAI,CAAC,YAAY,EAAE;YACrB,IAAI,CAAC,YAAY,CAAC,UAAU,GAAG,KAAK,CAAC;SACtC;QACD,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;SACxB;QACD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAED,2BAA2B,CAAC,GAAW;QACrC,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;IACzB,CAAC;IAED,+BAA+B,CAAC,GAAW;QACzC,IAAI,CAAC,eAAe,GAAG,GAAG,CAAC;QAE3B,IAAI,CAAC,2BAA2B,CAC9B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,eAAe,EAAE,SAAS,EAAE,CAAC,CAAC,CACnD,CAAC;IACJ,CAAC;IAED,+BAA+B,CAC7B,SAAwC;QAExC,IAAI,SAAS,YAAY,aAAa,EAAE;YACtC,MAAM,YAAY,GAChB,IAAI,CAAC,iBAAiB,CAAC,YAAY,CAAC,sBAAsB,CAAC,SAAS,CAAC,CAAC;YACxE,IAAI,CAAC,+BAA+B,CAAC,YAAY,CAAC,CAAC;SACpD;aAAM,IAAI,SAAS,YAAY,aAAa,EAAE;YAC7C,MAAM,YAAY,GAChB,IAAI,CAAC,iBAAiB,CAAC,YAAY,CAAC,sBAAsB,CAAC,SAAS,CAAC,CAAC;YACxE,IAAI,CAAC,+BAA+B,CAAC,YAAY,CAAC,CAAC;SACpD;IACH,CAAC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"TextSearchAdvancedConfigState.d.ts","sourceRoot":"","sources":["../../../src/stores/shared/TextSearchAdvancedConfigState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,oBAAY,yBAAyB;IACnC,QAAQ,aAAa;IACrB,OAAO,kBAAkB;IACzB,KAAK,gBAAgB;IACrB,OAAO,yBAAyB;CACjC;AAED,qBAAa,6BAA6B;IACxC,WAAW,4BAAsC;IACjD,kBAAkB,EAAE,MAAM,IAAI,CAAC;gBAEnB,kBAAkB,EAAE,MAAM,IAAI;IAU1C,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED,kBAAkB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;IAiBvC,cAAc,CAAC,GAAG,EAAE,yBAAyB,GAAG,IAAI;CAIrD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"TextSearchAdvancedConfigState.js","sourceRoot":"","sources":["../../../src/stores/shared/TextSearchAdvancedConfigState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEpE,MAAM,CAAN,IAAY,yBAKX;AALD,WAAY,yBAAyB;IACnC,kDAAqB,CAAA;IACrB,sDAAyB,CAAA;IACzB,kDAAqB,CAAA;IACrB,6DAAgC,CAAA;AAClC,CAAC,EALW,yBAAyB,GAAzB,yBAAyB,KAAzB,yBAAyB,QAKpC;AAED,MAAM,OAAO,6BAA6B;IACxC,WAAW,GAAG,yBAAyB,CAAC,QAAQ,CAAC;IACjD,kBAAkB,CAAa;IAE/B,YAAY,kBAA8B;QACxC,cAAc,CAAC,IAAI,EAAE;YACnB,WAAW,EAAE,UAAU;YACvB,sBAAsB,EAAE,QAAQ;YAChC,cAAc,EAAE,MAAM;SACvB,CAAC,CAAC;QAEH,IAAI,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;IAC/C,CAAC;IAED,IAAI,sBAAsB;QACxB,OAAO,IAAI,CAAC,WAAW,KAAK,yBAAyB,CAAC,QAAQ,CAAC;IACjE,CAAC;IAED,kBAAkB,CAAC,GAAW;QAC5B,QAAQ,IAAI,CAAC,WAAW,EAAE;YACxB,KAAK,yBAAyB,CAAC,OAAO,CAAC,CAAC;gBACtC,OAAO,KAAK,GAAG,GAAG,CAAC;aACpB;YACD,KAAK,yBAAyB,CAAC,KAAK,CAAC,CAAC;gBACpC,OAAO,KAAK,GAAG,GAAG,CAAC;aACpB;YACD,KAAK,yBAAyB,CAAC,OAAO,CAAC,CAAC;gBACtC,OAAO,KAAK,GAAG,GAAG,CAAC;aACpB;YACD,OAAO,CAAC,CAAC;gBACP,OAAO,GAAG,CAAC;aACZ;SACF;IACH,CAAC;IAED,cAAc,CAAC,GAA8B;QAC3C,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;QACvB,IAAI,CAAC,kBAAkB,EAAE,CAAC;IAC5B,CAAC;CACF"}