@finos/legend-application 13.0.11 → 14.0.1

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
package/lib/const.js CHANGED
@@ -17,21 +17,23 @@ export const TAB_SIZE = 2;
17
17
  export const DEFAULT_TYPEAHEAD_SEARCH_MINIMUM_SEARCH_LENGTH = 2;
18
18
  export const DEFAULT_TYPEAHEAD_SEARCH_LIMIT = 10;
19
19
  export const MONOSPACED_FONT_FAMILY = 'Roboto Mono';
20
- export var EDITOR_THEME;
21
- (function (EDITOR_THEME) {
22
- EDITOR_THEME["LEGEND"] = "LEGEND";
23
- EDITOR_THEME["TEMPORARY__VSCODE_LIGHT"] = "vs";
24
- })(EDITOR_THEME = EDITOR_THEME || (EDITOR_THEME = {}));
25
- export var EDITOR_LANGUAGE;
26
- (function (EDITOR_LANGUAGE) {
27
- EDITOR_LANGUAGE["TEXT"] = "plaintext";
28
- EDITOR_LANGUAGE["PURE"] = "pure";
29
- EDITOR_LANGUAGE["JSON"] = "json";
30
- EDITOR_LANGUAGE["JAVA"] = "java";
31
- EDITOR_LANGUAGE["MARKDOWN"] = "markdown";
32
- EDITOR_LANGUAGE["SQL"] = "sql";
33
- EDITOR_LANGUAGE["XML"] = "xml";
34
- EDITOR_LANGUAGE["YAML"] = "yaml";
35
- EDITOR_LANGUAGE["GRAPHQL"] = "graphql";
36
- })(EDITOR_LANGUAGE = EDITOR_LANGUAGE || (EDITOR_LANGUAGE = {}));
20
+ // TODO: to be moved to `@finos/legend-lego`
21
+ export var CODE_EDITOR_THEME;
22
+ (function (CODE_EDITOR_THEME) {
23
+ CODE_EDITOR_THEME["LEGEND"] = "legend";
24
+ CODE_EDITOR_THEME["TEMPORARY__VSCODE_LIGHT"] = "vs";
25
+ })(CODE_EDITOR_THEME = CODE_EDITOR_THEME || (CODE_EDITOR_THEME = {}));
26
+ // TODO: to be moved to `@finos/legend-lego`
27
+ export var CODE_EDITOR_LANGUAGE;
28
+ (function (CODE_EDITOR_LANGUAGE) {
29
+ CODE_EDITOR_LANGUAGE["TEXT"] = "plaintext";
30
+ CODE_EDITOR_LANGUAGE["PURE"] = "pure";
31
+ CODE_EDITOR_LANGUAGE["JSON"] = "json";
32
+ CODE_EDITOR_LANGUAGE["JAVA"] = "java";
33
+ CODE_EDITOR_LANGUAGE["MARKDOWN"] = "markdown";
34
+ CODE_EDITOR_LANGUAGE["SQL"] = "sql";
35
+ CODE_EDITOR_LANGUAGE["XML"] = "xml";
36
+ CODE_EDITOR_LANGUAGE["YAML"] = "yaml";
37
+ CODE_EDITOR_LANGUAGE["GRAPHQL"] = "graphql";
38
+ })(CODE_EDITOR_LANGUAGE = CODE_EDITOR_LANGUAGE || (CODE_EDITOR_LANGUAGE = {}));
37
39
  //# sourceMappingURL=const.js.map
package/lib/const.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"const.js","sourceRoot":"","sources":["../src/const.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAC;AAC1B,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,8BAA8B,GAAG,EAAE,CAAC;AAEjD,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAa,CAAC;AAEpD,MAAM,CAAN,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,iCAAiB,CAAA;IACjB,8CAA8B,CAAA;AAChC,CAAC,EAHW,YAAY,GAAZ,YAAY,KAAZ,YAAY,QAGvB;AAED,MAAM,CAAN,IAAY,eAUX;AAVD,WAAY,eAAe;IACzB,qCAAkB,CAAA;IAClB,gCAAa,CAAA;IACb,gCAAa,CAAA;IACb,gCAAa,CAAA;IACb,wCAAqB,CAAA;IACrB,8BAAW,CAAA;IACX,8BAAW,CAAA;IACX,gCAAa,CAAA;IACb,sCAAmB,CAAA;AACrB,CAAC,EAVW,eAAe,GAAf,eAAe,KAAf,eAAe,QAU1B"}
1
+ {"version":3,"file":"const.js","sourceRoot":"","sources":["../src/const.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAC;AAC1B,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,8BAA8B,GAAG,EAAE,CAAC;AAEjD,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAa,CAAC;AAEpD,4CAA4C;AAC5C,MAAM,CAAN,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,sCAAiB,CAAA;IACjB,mDAA8B,CAAA;AAChC,CAAC,EAHW,iBAAiB,GAAjB,iBAAiB,KAAjB,iBAAiB,QAG5B;AAED,4CAA4C;AAC5C,MAAM,CAAN,IAAY,oBAUX;AAVD,WAAY,oBAAoB;IAC9B,0CAAkB,CAAA;IAClB,qCAAa,CAAA;IACb,qCAAa,CAAA;IACb,qCAAa,CAAA;IACb,6CAAqB,CAAA;IACrB,mCAAW,CAAA;IACX,mCAAW,CAAA;IACX,qCAAa,CAAA;IACb,2CAAmB,CAAA;AACrB,CAAC,EAVW,oBAAoB,GAApB,oBAAoB,KAApB,oBAAoB,QAU/B"}
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-application v13.0.11
1
+ /** @license @finos/legend-application v14.0.1
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,4 +14,4 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- @import"xterm/css/xterm.css";:root{--color-primitive: var(--color-light-blue-200);--color-enum-value: var(--color-green-100);--color-enumeration: var(--color-medium-green-100);--color-measure: var(--color-medium-green-100);--color-unit: var(--color-medium-green-100);--color-class: var(--color-purple-100);--color-mapping: var(--color-teal-50);--color-function: var(--color-light-blue-20);--color-profile: var(--color-lime-75);--color-generated: var(--color-pink-200);--color-system: var(--color-light-blue-50);--color-dependency: var(--color-lime-50);--color-config: var(--color-orange-100);--color-flat-data: var(--color-orange-100);--color-relational: var(--color-blue-500);--color-file-generation: var(--color-blue-50);--color-database: var(--color-orange-100);--color-schema: var(--color-medium-green-500);--color-table: var(--color-light-blue-200);--color-association: var(--color-light-grey-400);--color-service: var(--color-blue-40);--color-runtime: var(--color-red-180);--color-connection: var(--color-yellow-100);--color-data: var(--color-light-blue-50)}.color--class{color:var(--color-class)}.color--enumeration{color:var(--color-enumeration)}.color--unit{color:var(--color-unit)}.color--measure{color:var(--color-measure)}.color--association{color:var(--color-association)}.color--primitive{color:var(--color-primitive)}.color--enum-value{color:var(--color-enum-value)}.color--mapping{color:var(--color-mapping)}.color--function{color:var(--color-function)}.color--file-generation{color:var(--color-file-generation)}.color--profile{color:var(--color-profile)}.color--generated{color:var(--color-generated)}.color--system{color:var(--color-system)}.color--dependency{color:var(--color-dependency)}.color--config{color:var(--color-config)}.color--flat-data{color:var(--color-flat-data)}.color--database{color:var(--color-database)}.color--table{color:var(--color-table)}.color--schema{color:var(--color-schema)}.color--service{color:var(--color-service)}.color--connection{color:var(--color-connection)}.color--runtime{color:var(--color-runtime)}.color--data{color:var(--color-data)}.background--pureinstance,.background--class{background:var(--color-class)}.background--enumeration{background:var(--color-enumeration)}.background--unit{background:var(--color-unit)}.background--measure{background:var(--color-measure)}.background--association{background:var(--color-association)}.background--primitive{background:var(--color-primitive)}.background--enum-value{background:var(--color-enum-value)}.background--mapping{background:var(--color-mapping)}.background--profile{background:var(--color-profile)}.background--flat-data{background:var(--color-flat-data)}.background--database{background:var(--color-database)}.background--service{background:var(--color-service)}.background--connection{background:var(--color-connection)}.background--runtime{background:var(--color-runtime)}.background--relational{background:var(--color-relational)}.background--data{background:var(--color-data)}.app__container{height:100%;width:100%}.app{height:100%;background:var(--color-dark-grey-50)}.app__page{height:100%;background:var(--color-dark-grey-50)}.app__info__group{margin-top:1rem;background:var(--color-dark-grey-85);padding:1.5rem;border-radius:.2rem}.app__info__entry{display:flex;cursor:default;padding:.2rem 0;font-family:"Roboto Mono",monospace}.app__info__entry__title{margin-right:.5rem;color:var(--color-dark-grey-500)}.app__info__entry__value{color:var(--color-light-grey-200)}.app__info__entry__value a{text-decoration:none;font-weight:700;color:var(--color-blue-50)}.app__info__extensions{height:15rem;margin-top:1rem;width:70rem}.app__info__extensions__header{display:flex;align-items:center;height:2.2rem;background:var(--color-dark-grey-100);border-radius:.2rem .2rem 0 0;padding:0 1rem}.app__info__extensions__header__title{cursor:default;font-size:1.2rem;font-weight:700;color:var(--color-dark-grey-500);font-family:"Roboto Mono",monospace}.app__info__extensions__content{height:calc(100% - 2.2rem);overflow:auto;padding:1rem;background:var(--color-dark-grey-85);border-radius:0 0 .2rem .2rem}.app__info__extensions__tree__node__icon{flex-grow:0;flex-shrink:0;display:flex;width:4rem}.app__info__extensions__tree__node__icon__expand{flex-grow:0;flex-shrink:0;width:2rem}.app__info__extensions__tree__node__icon__expand svg{font-size:1.4rem}.app__info__extensions__tree__node__icon__type{flex-grow:0;flex-shrink:0;width:2rem}.app__info__extensions__tree__node__icon__type svg{font-size:1.4rem;color:var(--color-blue-100)}.app__info__extensions__tree__node__label{display:flex;flex:0 0 auto;height:2rem;line-height:2rem;min-width:0;white-space:normal;user-select:none;font-family:"Roboto Mono",monospace}.app__info__extensions__tree__node__label__title{font-size:1.2rem}.app__info__extensions__tree__node__label__version{display:flex;align-items:center;justify-content:center;height:2rem;margin-left:1rem}.app__info__extensions__tree__node__label__version__label{display:flex;align-items:center;justify-content:center;height:1.6rem;padding:.5rem;background:var(--color-dark-grey-280);font-size:1rem;border-radius:.2rem}.blocking-alert{padding:0}.blocking-alert__root-container{margin-top:0 !important}.blocking-alert__container{align-items:center !important}.blocking-alert .btn{display:flex;align-items:center;justify-content:center;height:2.8rem;border-radius:.1rem;border:none;color:var(--color-light-grey-50)}.blocking-alert .modal__body{line-height:2.2rem;cursor:default;text-align:justify}.blocking-alert__message{text-align:center}.blocking-alert__message__prompt{text-align:center;font-size:1.2rem;color:var(--color-blue-150);font-weight:500}.blocking-alert__summary-text{color:var(--color-light-grey-400);font-weight:500}.blocking-alert__prompt-text{color:var(--color-blue-50);font-size:1.3rem;margin-top:1rem;font-weight:500}.blocking-alert--standard{border:.1rem solid var(--color-blue-200)}.blocking-alert--caution{border:.1rem solid var(--color-pink-400)}.blocking-alert--caution .mode__header{background:var(--color-pink-400)}.blocking-alert--caution .blocking-alert__prompt-text{color:var(--color-pink-300)}.backdrop{background:var(--color-dark-shade-230) !important;z-index:100 !important}.backdrop__container{height:0;width:0;position:absolute}.backdrop__element{z-index:100;position:relative;box-shadow:var(--color-dark-shade-280) 0 .1rem .3rem .1rem}.notification__position{bottom:3rem;right:1rem}.notification__content{background:var(--color-dark-grey-200);color:var(--color-light-grey-150);border-radius:.3rem;align-items:flex-start}.notification__message__content{display:flex;align-items:flex-start;cursor:pointer}.notification__message__content:active{background:var(--color-dark-grey-100)}.notification__message__content__icon{padding-top:.2rem;padding-right:1rem}.notification__message__content__icon svg{font-size:1.6rem}.notification__message__content__icon--info{color:var(--color-light-grey-200)}.notification__message__content__icon--error{color:var(--color-red-100)}.notification__message__content__icon--warning{color:var(--color-yellow-200)}.notification__message__content__icon--success{color:var(--color-green-100)}.notification__message__content__text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;max-height:20rem;max-width:60rem}.notification__message__content__text--expanded{overflow:auto;white-space:pre-line;width:60rem}.notification__actions{padding:.8rem 0 .8rem 1rem}.notification__action{display:flex;align-items:center;justify-content:center;width:2rem;color:var(--color-dark-grey-400)}.notification__action:hover{color:var(--color-light-grey-400)}.virtual-assistant{position:absolute;z-index:10100;bottom:9rem;right:1rem}.virtual-assistant__context-menu{z-index:10100}.virtual-assistant__station{display:flex;align-items:center;justify-content:flex-end;height:3.4rem;width:5.1rem;border-radius:1.7rem 1.1rem .2em 1.7rem;background:var(--color-dark-grey-50);opacity:.9;border:.1rem solid var(--color-blue-50);transition:width .1s ease-in-out}.virtual-assistant__station__trigger{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem;border-radius:50%;background:var(--color-blue-50);margin:.3rem 0 .3rem .2rem}.virtual-assistant__station__trigger__close{font-size:2.6rem;color:var(--color-dark-shade-800);position:relative}.virtual-assistant__station__trigger__circle{font-size:2.2rem;color:var(--color-dark-grey-80);animation:opacity-pulse 1.2s infinite ease-in-out alternate-reverse}@keyframes opacity-pulse{from{opacity:.1}to{opacity:.3}}.virtual-assistant__station--hidden{display:none}.virtual-assistant__station__drag-handle{height:3.4rem;width:2rem;cursor:grab}.virtual-assistant__station__drag-handle__content{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.virtual-assistant__station__drag-handle--dragging{cursor:grabbing}.virtual-assistant__station__drag-handle svg{font-size:2rem;color:var(--color-light-shade-100)}.virtual-assistant__station--active{border-color:var(--color-yellow-100);animation:border-flash .5s;animation-iteration-count:3}.virtual-assistant__station--active .virtual-assistant__station__trigger{background:var(--color-yellow-100);animation:background-flash .5s;animation-iteration-count:3}@keyframes border-flash{from{border-color:var(--color-dark-grey-50)}to{border-color:var(--color-yellow-100)}}@keyframes background-flash{from{background:var(--color-dark-grey-50)}to{background:var(--color-yellow-100)}}.virtual-assistant__panel{height:40rem;width:30rem;border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-dark-grey-200);box-shadow:0 1.1rem 1.5rem -0.7rem,var(--color-light-shade-280),0 2.4rem 3.8rem .3rem var(--color-light-shade-280),0 .9rem 4.6rem .8rem var(--color-light-shade-280);pointer-events:all}.virtual-assistant__panel__container{z-index:10000;pointer-events:none}.virtual-assistant__panel__container__root{margin:-1rem}.virtual-assistant__panel__header{display:flex;align-items:center;justify-content:space-between;background:var(--color-dark-grey-250);height:2.8rem}.virtual-assistant__panel__header__actions{display:flex;align-items:center}.virtual-assistant__panel__header__action{display:flex;align-items:center;justify-content:center;width:2.8rem;height:2.8rem}.virtual-assistant__panel__header__action svg{color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__action:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__panel__header__tabs{display:flex;height:2.8rem;color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__tab{padding:0 1rem;border-right:.1rem solid var(--color-dark-grey-100)}.virtual-assistant__panel__header__tab:hover{background:var(--color-dark-grey-280)}.virtual-assistant__panel__header__tab__content{display:flex;align-items:center;justify-content:center;cursor:pointer;height:2.8rem;width:6rem;border-bottom:.3rem solid var(--color-dark-grey-300);padding-top:.1rem;position:relative}.virtual-assistant__panel__header__tab__content svg{font-size:1.5rem;color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__tab__indicator{position:absolute;top:.5rem;right:1rem;height:1rem;width:1rem;border-radius:50%;background:var(--color-yellow-200)}.virtual-assistant__panel__header__tab:hover .virtual-assistant__panel__header__tab__content svg{color:var(--color-dark-grey-500)}.virtual-assistant__panel__header__tab--active:hover .virtual-assistant__panel__header__tab__content,.virtual-assistant__panel__header__tab--active .virtual-assistant__panel__header__tab__content{border-bottom:.3rem solid var(--color-yellow-300)}.virtual-assistant__panel__header__tab--active:hover .virtual-assistant__panel__header__tab__content svg,.virtual-assistant__panel__header__tab--active .virtual-assistant__panel__header__tab__content svg{color:var(--color-light-grey-200)}.virtual-assistant__panel__content{height:calc(100% - 2.8rem)}.virtual-assistant__panel__icon__close{font-size:2.4rem}.virtual-assistant__panel__placeholder{display:flex;align-items:center;justify-content:center;flex-direction:column}.virtual-assistant__panel__placeholder__icon{font-size:5rem;color:var(--color-yellow-200)}.virtual-assistant__panel__placeholder__message{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400);margin-top:1rem}.virtual-assistant__panel__placeholder__instruction{font-family:"Roboto Mono",monospace;font-size:1.3rem;font-weight:700;color:var(--color-dark-grey-300);margin-top:.5rem}.virtual-assistant__search{height:100%}.virtual-assistant__search__header{display:flex;align-items:center;justify-content:center;padding:.3rem;border-bottom:.1rem solid var(--color-dark-grey-250);height:3.4rem;position:relative}.virtual-assistant__search__input{font-size:1.3rem;height:2.8rem;padding-right:2.8rem;padding-left:1rem;width:100%;background:var(--color-dark-grey-85);border-radius:.2rem;border:.1rem solid var(--color-dark-grey-200)}.virtual-assistant__search__input--searching{padding-right:9rem}.virtual-assistant__search__input__search__count{display:flex;align-items:center;justify-content:center;position:absolute;right:5.4rem;border-radius:.8rem;height:1.6rem;padding:0 .5rem;font-size:1.1rem;font-weight:700;background:var(--color-yellow-100);color:var(--color-dark-grey-280);user-select:none;cursor:default}.virtual-assistant__search__input__search__icon{display:flex;align-items:center;justify-content:center;position:absolute;right:.3rem;height:2.8rem;width:2.8rem}.virtual-assistant__search__input__search__icon svg{color:var(--color-light-shade-100)}.virtual-assistant__search__input__clear-btn{display:flex;align-items:center;justify-content:center;position:absolute;right:.3rem;height:2.8rem;width:2.8rem}.virtual-assistant__search__input__clear-btn svg{color:var(--color-dark-grey-400)}.virtual-assistant__search__input__clear-btn:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__search__input__config__trigger{display:flex;align-items:center;justify-content:center;position:absolute;right:3.1rem;height:2.8rem;width:1.8rem;cursor:pointer}.virtual-assistant__search__input__config__trigger svg{color:var(--color-dark-grey-400)}.virtual-assistant__search__input__config__trigger--toggled svg,.virtual-assistant__search__input__config__trigger:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__search__input__config__trigger--active svg,.virtual-assistant__search__input__config__trigger--active:hover svg{color:var(--color-blue-150)}.virtual-assistant__search__input__config__panel{width:100%;height:12rem;position:absolute;z-index:1;box-shadow:var(--color-dark-shade-280) .2rem .1rem .3rem .1rem;overflow:hidden;max-height:0;transition:max-height ease-in-out 100ms}.virtual-assistant__search__input__config__panel--toggled{max-height:12rem}.virtual-assistant__search__content{height:calc(100% - 3.4rem);position:relative}.virtual-assistant__search__results{height:100%;overflow-y:auto;padding:1rem}.virtual-assistant__search__results__placeholder{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400)}.virtual-assistant__doc-entry+.virtual-assistant__doc-entry{margin-top:.5rem}.virtual-assistant__doc-entry__header{display:flex}.virtual-assistant__doc-entry__expand-icon{display:flex;align-items:flex-start;width:2rem;min-width:2rem;padding-top:.3rem}.virtual-assistant__doc-entry__expand-icon svg{color:var(--color-light-grey-50)}.virtual-assistant__doc-entry__expand-icon--disabled svg{color:var(--color-dark-grey-300)}.virtual-assistant__doc-entry__title{line-height:1.5;font-weight:500;color:var(--color-light-grey-50);cursor:pointer;user-select:none}.virtual-assistant__doc-entry__title--link{color:var(--color-blue-40);text-decoration:none}.virtual-assistant__doc-entry__content{margin-top:.5rem;padding-left:2rem}.virtual-assistant__doc-entry__content__text{color:var(--color-light-grey-50);line-height:1.5;background:var(--color-dark-grey-80);border-radius:.2rem;padding:1rem}.virtual-assistant__doc-entry__content__markdown-text{padding:1rem;border-radius:.2rem}.virtual-assistant__character{display:flex;align-items:center;justify-content:center;flex-direction:column}.virtual-assistant__character__container{display:flex;align-items:center;justify-content:center;width:100%;height:100%;overflow:hidden}.virtual-assistant__character__greeting{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400);margin-top:.6rem;cursor:default;user-select:none}.virtual-assistant__character__question{font-family:"Roboto Mono",monospace;font-size:1.3rem;font-weight:700;color:var(--color-light-grey-0);margin-top:.6rem;cursor:default;user-select:none}.virtual-assistant__character__figure{display:flex;align-items:center;justify-content:center;position:relative;width:10rem;height:20rem}.virtual-assistant__character__hat{position:absolute;font-size:8rem;color:var(--color-orange-150);top:0}.virtual-assistant__character__glasses{position:absolute;font-size:8rem;color:var(--color-dark-grey-300);top:6rem}.virtual-assistant__character__beard{position:absolute;color:var(--color-yellow-200);font-size:8rem;top:11rem}.virtual-assistant__contextual-support{height:100%}.virtual-assistant__contextual-support__content{height:100%;overflow-y:auto;padding:1.5rem}.virtual-assistant__contextual-support__title{line-height:1.5;font-weight:700;color:var(--color-light-grey-50);cursor:pointer;user-select:none;font-size:1.5rem;margin-bottom:1rem}.virtual-assistant__contextual-support__text{color:var(--color-light-grey-50);line-height:1.5;background:var(--color-dark-grey-80);border-radius:.2rem;padding:1rem;margin-bottom:1rem}.virtual-assistant__contextual-support__markdown-text{padding:1rem;border-radius:.2rem;margin-bottom:1rem}.virtual-assistant__contextual-support__relevant-entries__title{color:var(--color-dark-grey-500);font-family:"Roboto Mono",monospace;font-size:1.3rem;margin-bottom:1rem}.text-search-advanced-config__panel{width:100%;background:var(--color-dark-grey-250)}.text-search-advanced-config__panel__header__label{display:flex;align-items:center;font-weight:500;color:var(--color-light-grey-50);background:var(--color-dark-grey-300);padding:0 1rem;line-height:2rem;font-size:1.2rem;cursor:default}.text-search-advanced-config__panel__header__hint{display:flex;align-items:center;justify-content:center;border-radius:.2rem;padding:0 .5rem;color:var(--color-light-grey-300)}.text-search-advanced-config__panel__header__hint svg{font-size:1.2rem}.tab-manager{display:flex;flex:1;overflow:hidden;height:100%}.tab-manager__content{width:calc(100% - 2.8rem);display:flex;overflow-x:overlay}.tab-manager__tab{display:flex;align-items:center;cursor:pointer;color:var(--color-light-grey-400);background:var(--color-dark-grey-80);border-right:.1rem solid var(--color-dark-grey-50)}.tab-manager__tab--active{color:var(--color-light-grey-100);background:var(--color-dark-grey-50)}.tab-manager__tab--dragged{filter:opacity(0.7)}.tab-manager__tab__content{display:flex;align-items:center;height:100%;width:100%}.tab-manager__tab__label{height:100%;color:inherit;padding:0 .5rem 0 1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tab-manager__tab__close-btn{visibility:hidden;display:flex;align-items:center}.tab-manager__tab__close-btn svg{color:var(--color-light-grey-200);font-size:1.2rem;margin-right:1rem}.tab-manager__tab--active .tab-manager__tab__close-btn,.tab-manager__tab:hover .tab-manager__tab__close-btn{visibility:visible}.tab-manager__tab--active .tab-manager__tab__close-btn svg,.tab-manager__tab:hover .tab-manager__tab__close-btn svg{color:var(--color-light-grey-100)}.tab-manager__tab__dnd__placeholder{text-align:left;margin:0;padding:0 .5rem;background-color:var(--color-dark-grey-100)}.tab-manager__menu{min-width:15rem;max-width:30rem;height:100%;padding:0}.tab-manager__menu__toggler{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;color:var(--color-light-grey-400);border-left:.1rem solid var(--color-dark-grey-50);height:100%;width:2.8rem}.tab-manager__menu__item{justify-content:space-between}.tab-manager__menu__item--active,.tab-manager__menu__item:not([disabled]):hover{background:var(--color-dark-grey-250)}.tab-manager__menu__item__label{text-align:left;white-space:nowrap;font-size:1.3rem;overflow:hidden;text-overflow:ellipsis}.tab-manager__menu__item__close-btn{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;padding:.4rem;margin-left:.6rem;flex-direction:end}.tab-manager__menu__item__close-btn svg{width:1.2rem;height:1.2rem}.documentation-link{display:inline-flex;align-self:center;color:var(--color-dark-grey-500);cursor:pointer}.documentation-preview{display:flex;background:var(--color-dark-grey-85);border:.1rem solid var(--color-dark-grey-280);border-radius:.2rem}.documentation-preview__text{padding:1rem;width:calc(100% - 3rem);color:var(--color-light-grey-400);line-height:2rem}.documentation-preview__hint{display:flex;justify-content:center;padding:1rem 0;width:3rem}.text-editor__container{height:100%;width:100%;position:relative;background:var(--color-dark-grey-50)}.text-editor__body{height:100%;width:100%;position:absolute;top:0;left:0;overflow:hidden}.packageable-element-option-label{display:flex;align-items:center}.packageable-element-option-label__tag{display:flex;align-items:center;color:var(--color-dark-grey-500);background:var(--color-light-grey-50);border:.1rem solid var(--color-light-grey-180);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.packageable-element-option-label__name{display:flex;align-items:center;height:1.8rem}.packageable-element-option-label__type{margin:-1rem .8rem -1rem -1.2rem;height:3.2rem;padding-left:.5rem;background:rgba(0,0,0,0)}.packageable-element-option-label__type--system{background:var(--color-system)}.packageable-element-option-label__type--generated{background:var(--color-generated)}.packageable-element-option-label__type--dependency{background:var(--color-dependency)}.packageable-element-option-label--dark{display:flex;align-items:center;display:flex}.packageable-element-option-label--dark__tag{display:flex;align-items:center;color:var(--color-dark-grey-250);background:var(--color-dark-grey-400);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.packageable-element-option-label--dark__name{display:flex;align-items:center;height:1.8rem}.execution-plan-viewer{height:100%;width:100%}.execution-plan-viewer__content{height:100%;width:100%}.execution-plan-viewer__debug-panel{background:var(--color-dark-grey-50)}.execution-plan-viewer__debug-panel .panel__header{background:var(--color-dark-grey-250)}.execution-plan-viewer__debug-panel .panel__content{position:relative;background:var(--color-dark-grey-50)}.execution-plan-viewer__close-btn{border-color:var(--color-blue-200);background:var(--color-blue-300)}.execution-plan-viewer .panel{height:100%}.execution-plan-viewer .panel__header{color:var(--color-light-grey-400);font-weight:bold;background:var(--color-dark-grey-50)}.execution-plan-viewer .panel__header__title{max-width:calc(100% - 11rem)}.execution-plan-viewer .panel__main-header{color:var(--color-light-grey-400);font-weight:bold;background:var(--color-dark-grey-250)}.execution-plan-viewer .panel__content{position:relative;height:calc(100% - 3rem);width:100%;background:var(--color-dark-grey-50);overflow-y:hidden}.execution-plan-viewer .panel__content ::-webkit-scrollbar-thumb{background:var(--color-dark-grey-400)}.execution-plan-viewer .panel__content>div:first-child{margin-top:0}.execution-plan-viewer .panel__content__lists{height:100%;width:100%;padding:1rem;overflow:overlay}.execution-plan-viewer__tabs__header{padding-left:0}.execution-plan-viewer__tabs{height:2.8rem;z-index:1;display:flex;overflow-x:overlay;overflow-y:hidden}.execution-plan-viewer__tab{height:100%;display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;border-right:.1rem solid var(--color-dark-grey-200);white-space:nowrap;cursor:pointer}.execution-plan-viewer__tab--active{color:var(--color-dark-grey-50);position:relative}.execution-plan-viewer__tab--active::after{content:"";height:.4rem;width:100%;position:absolute;bottom:0;background:var(--color-yellow-200)}.execution-plan-viewer__panel{height:100%;width:100%}.execution-plan-viewer__panel__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.execution-plan-viewer__panel__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.execution-plan-viewer__panel__header__tabs{display:flex;height:100%;overflow-x:overlay}.execution-plan-viewer__panel__header__tab{display:flex;align-items:center;padding:0 1rem;cursor:pointer;color:var(--color-light-grey-400);background:var(--color-dark-grey-80);border-right:.1rem solid var(--color-dark-grey-80)}.execution-plan-viewer__panel__header__tab--active{color:var(--color-light-grey-100);background:var(--color-dark-grey-50)}.execution-plan-viewer__panel__header__tab__content{display:flex;align-items:center;height:100%;width:100%}.execution-plan-viewer__panel__header__tab__icon{margin-right:.5rem}.execution-plan-viewer__panel__header__tab__label{color:inherit;padding:0 .5rem;white-space:nowrap}.execution-plan-viewer__panel__view-mode__type{display:flex;align-items:center;justify-content:center;width:15rem;background:var(--color-dark-grey-100);border-right:.1rem solid var(--color-dark-grey-50);border-left:.1rem solid var(--color-dark-grey-50);color:var(--color-light-grey-300);cursor:pointer}.execution-plan-viewer__panel__view-mode__type:hover{background:var(--color-dark-grey-200)}.execution-plan-viewer__panel__view-mode__type__label{display:flex;align-items:center;height:3.4rem;padding:0 .5rem;border-top:.3rem solid var(--color-yellow-200)}.execution-plan-viewer__panel__view-mode__options{width:15rem}.execution-plan-viewer__panel__view-mode__options--with-group{border:none;padding:0}.execution-plan-viewer__panel__view-mode__option__group__name{display:flex;align-items:center;justify-content:center;flex-direction:column;cursor:default;writing-mode:vertical-lr;transform:rotate(180deg);font-size:1.1rem;width:2.2rem;padding:.5rem 0}.execution-plan-viewer__panel__view-mode__option__group{display:flex;flex-direction:row}.execution-plan-viewer__panel__view-mode__option__group--native{background:var(--color-blue-100);border:.1rem solid var(--color-blue-100)}.execution-plan-viewer__panel__view-mode__option__group--native .execution-plan-viewer__panel__view-mode__option__group__name{background:var(--color-blue-100);color:var(--color-light-grey-50)}.execution-plan-viewer__panel__view-mode__option__group--generation{background:var(--color-pink-300);border:.1rem solid var(--color-pink-300)}.execution-plan-viewer__panel__view-mode__option__group--generation .execution-plan-viewer__panel__view-mode__option__group__name{background:var(--color-pink-300);color:var(--color-light-grey-50)}.execution-plan-viewer__panel__view-mode__option__group__separator{height:.2rem;width:100%}.execution-plan-viewer__panel__view-mode__option__group__options{width:100%;background:var(--color-dark-grey-100)}.execution-plan-viewer__panel__view-mode__option{display:flex;align-items:center;justify-content:center;height:2rem}.execution-plan-viewer__explorer{width:100%}.execution-plan-viewer__explorer__content__container{height:100%;background:var(--color-dark-grey-100)}.execution-plan-viewer__explorer-tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.execution-plan-viewer__explorer-tree__node__container--selected,.execution-plan-viewer__explorer-tree__node__container--selected:hover{background:var(--color-light-blue-450)}.execution-plan-viewer__explorer-tree__node__icon{width:4rem;min-width:4rem}.execution-plan-viewer__explorer-tree__node__icon__expand,.execution-plan-viewer__explorer-tree__node__icon__type{width:2rem;display:flex;justify-content:center}.execution-plan-viewer__explorer-tree__node__icon__expand svg{font-size:1rem}.execution-plan-viewer__explorer-tree__node__label{color:inherit}.execution-plan-viewer__unsupported-view,.execution-node-viewer__unsupported-view{display:flex;align-items:center;justify-content:center;flex-direction:column}.execution-plan-viewer__unsupported-view__summary,.execution-node-viewer__unsupported-view__summary{font-weight:500;margin-bottom:1rem}.execution-plan-viewer__unsupported-view__to-text-mode__btn,.execution-node-viewer__unsupported-view__to-text-mode__btn{height:2.8rem;width:15rem}/*# sourceMappingURL=index.css.map */
17
+ @import"xterm/css/xterm.css";:root{--color-primitive: var(--color-light-blue-200);--color-enum-value: var(--color-green-100);--color-enumeration: var(--color-medium-green-100);--color-measure: var(--color-medium-green-100);--color-unit: var(--color-medium-green-100);--color-class: var(--color-purple-100);--color-mapping: var(--color-teal-50);--color-function: var(--color-light-blue-20);--color-profile: var(--color-lime-75);--color-generated: var(--color-pink-200);--color-system: var(--color-light-blue-50);--color-dependency: var(--color-lime-50);--color-config: var(--color-orange-100);--color-flat-data: var(--color-orange-100);--color-relational: var(--color-blue-500);--color-file-generation: var(--color-blue-50);--color-database: var(--color-orange-100);--color-schema: var(--color-medium-green-500);--color-table: var(--color-light-blue-200);--color-association: var(--color-light-grey-400);--color-service: var(--color-blue-40);--color-runtime: var(--color-red-180);--color-connection: var(--color-yellow-100);--color-data: var(--color-light-blue-50)}.color--class{color:var(--color-class)}.color--enumeration{color:var(--color-enumeration)}.color--unit{color:var(--color-unit)}.color--measure{color:var(--color-measure)}.color--association{color:var(--color-association)}.color--primitive{color:var(--color-primitive)}.color--enum-value{color:var(--color-enum-value)}.color--mapping{color:var(--color-mapping)}.color--function{color:var(--color-function)}.color--file-generation{color:var(--color-file-generation)}.color--profile{color:var(--color-profile)}.color--generated{color:var(--color-generated)}.color--system{color:var(--color-system)}.color--dependency{color:var(--color-dependency)}.color--config{color:var(--color-config)}.color--flat-data{color:var(--color-flat-data)}.color--database{color:var(--color-database)}.color--table{color:var(--color-table)}.color--schema{color:var(--color-schema)}.color--service{color:var(--color-service)}.color--connection{color:var(--color-connection)}.color--runtime{color:var(--color-runtime)}.color--data{color:var(--color-data)}.background--pureinstance,.background--class{background:var(--color-class)}.background--enumeration{background:var(--color-enumeration)}.background--unit{background:var(--color-unit)}.background--measure{background:var(--color-measure)}.background--association{background:var(--color-association)}.background--primitive{background:var(--color-primitive)}.background--enum-value{background:var(--color-enum-value)}.background--mapping{background:var(--color-mapping)}.background--profile{background:var(--color-profile)}.background--flat-data{background:var(--color-flat-data)}.background--database{background:var(--color-database)}.background--service{background:var(--color-service)}.background--connection{background:var(--color-connection)}.background--runtime{background:var(--color-runtime)}.background--relational{background:var(--color-relational)}.background--data{background:var(--color-data)}.app__container{height:100%;width:100%}.app{height:100%;background:var(--color-dark-grey-50)}.app__page{height:100%;background:var(--color-dark-grey-50)}.app__info__group{margin-top:1rem;background:var(--color-dark-grey-85);padding:1.5rem;border-radius:.2rem}.app__info__entry{display:flex;cursor:default;padding:.2rem 0;font-family:"Roboto Mono",monospace}.app__info__entry__title{margin-right:.5rem;color:var(--color-dark-grey-500)}.app__info__entry__value{color:var(--color-light-grey-200)}.app__info__entry__value a{text-decoration:none;font-weight:700;color:var(--color-blue-50)}.app__info__extensions{height:15rem;margin-top:1rem;width:70rem}.app__info__extensions__header{display:flex;align-items:center;height:2.2rem;background:var(--color-dark-grey-100);border-radius:.2rem .2rem 0 0;padding:0 1rem}.app__info__extensions__header__title{cursor:default;font-size:1.2rem;font-weight:700;color:var(--color-dark-grey-500);font-family:"Roboto Mono",monospace}.app__info__extensions__content{height:calc(100% - 2.2rem);overflow:auto;padding:1rem;background:var(--color-dark-grey-85);border-radius:0 0 .2rem .2rem}.app__info__extensions__tree__node__icon{flex-grow:0;flex-shrink:0;display:flex;width:4rem}.app__info__extensions__tree__node__icon__expand{flex-grow:0;flex-shrink:0;width:2rem}.app__info__extensions__tree__node__icon__expand svg{font-size:1.4rem}.app__info__extensions__tree__node__icon__type{flex-grow:0;flex-shrink:0;width:2rem}.app__info__extensions__tree__node__icon__type svg{font-size:1.4rem;color:var(--color-blue-100)}.app__info__extensions__tree__node__label{display:flex;flex:0 0 auto;height:2rem;line-height:2rem;min-width:0;white-space:normal;user-select:none;font-family:"Roboto Mono",monospace}.app__info__extensions__tree__node__label__title{font-size:1.2rem}.app__info__extensions__tree__node__label__version{display:flex;align-items:center;justify-content:center;height:2rem;margin-left:1rem}.app__info__extensions__tree__node__label__version__label{display:flex;align-items:center;justify-content:center;height:1.6rem;padding:.5rem;background:var(--color-dark-grey-280);font-size:1rem;border-radius:.2rem}.blocking-alert{padding:0}.blocking-alert__root-container{margin-top:0 !important}.blocking-alert__container{align-items:center !important}.blocking-alert .btn{display:flex;align-items:center;justify-content:center;height:2.8rem;border-radius:.1rem;border:none;color:var(--color-light-grey-50)}.blocking-alert .modal__body{line-height:2.2rem;cursor:default;text-align:justify}.blocking-alert__message{text-align:center}.blocking-alert__message__prompt{text-align:center;font-size:1.2rem;color:var(--color-blue-150);font-weight:500}.blocking-alert__summary-text{color:var(--color-light-grey-400);font-weight:500}.blocking-alert__prompt-text{color:var(--color-blue-50);font-size:1.3rem;margin-top:1rem;font-weight:500}.blocking-alert--standard{border:.1rem solid var(--color-blue-200)}.blocking-alert--caution{border:.1rem solid var(--color-pink-400)}.blocking-alert--caution .mode__header{background:var(--color-pink-400)}.blocking-alert--caution .blocking-alert__prompt-text{color:var(--color-pink-300)}.backdrop{background:var(--color-dark-shade-230) !important;z-index:100 !important}.backdrop__container{height:0;width:0;position:absolute}.backdrop__element{z-index:100;position:relative;box-shadow:var(--color-dark-shade-280) 0 .1rem .3rem .1rem}.notification__position{bottom:3rem;right:1rem}.notification__content{background:var(--color-dark-grey-200);color:var(--color-light-grey-150);border-radius:.3rem;align-items:flex-start}.notification__message__content{display:flex;align-items:flex-start;cursor:pointer}.notification__message__content:active{background:var(--color-dark-grey-100)}.notification__message__content__icon{padding-top:.2rem;padding-right:1rem}.notification__message__content__icon svg{font-size:1.6rem}.notification__message__content__icon--info{color:var(--color-light-grey-200)}.notification__message__content__icon--error{color:var(--color-red-100)}.notification__message__content__icon--warning{color:var(--color-yellow-200)}.notification__message__content__icon--success{color:var(--color-green-100)}.notification__message__content__text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;max-height:20rem;max-width:60rem}.notification__message__content__text--expanded{overflow:auto;white-space:pre-line;width:60rem}.notification__actions{padding:.8rem 0 .8rem 1rem}.notification__action{display:flex;align-items:center;justify-content:center;width:2rem;color:var(--color-dark-grey-400)}.notification__action:hover{color:var(--color-light-grey-400)}.virtual-assistant{position:absolute;z-index:10100;bottom:9rem;right:1rem}.virtual-assistant__context-menu{z-index:10100}.virtual-assistant__station{display:flex;align-items:center;justify-content:flex-end;height:3.4rem;width:5.1rem;border-radius:1.7rem 1.1rem .2em 1.7rem;background:var(--color-dark-grey-50);opacity:.9;border:.1rem solid var(--color-blue-50);transition:width .1s ease-in-out}.virtual-assistant__station__trigger{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem;border-radius:50%;background:var(--color-blue-50);margin:.3rem 0 .3rem .2rem}.virtual-assistant__station__trigger__close{font-size:2.6rem;color:var(--color-dark-shade-800);position:relative}.virtual-assistant__station__trigger__circle{font-size:2.2rem;color:var(--color-dark-grey-80);animation:opacity-pulse 1.2s infinite ease-in-out alternate-reverse}@keyframes opacity-pulse{from{opacity:.1}to{opacity:.3}}.virtual-assistant__station--hidden{display:none}.virtual-assistant__station__drag-handle{height:3.4rem;width:2rem;cursor:grab}.virtual-assistant__station__drag-handle__content{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.virtual-assistant__station__drag-handle--dragging{cursor:grabbing}.virtual-assistant__station__drag-handle svg{font-size:2rem;color:var(--color-light-shade-100)}.virtual-assistant__station--active{border-color:var(--color-yellow-100);animation:border-flash .5s;animation-iteration-count:3}.virtual-assistant__station--active .virtual-assistant__station__trigger{background:var(--color-yellow-100);animation:background-flash .5s;animation-iteration-count:3}@keyframes border-flash{from{border-color:var(--color-dark-grey-50)}to{border-color:var(--color-yellow-100)}}@keyframes background-flash{from{background:var(--color-dark-grey-50)}to{background:var(--color-yellow-100)}}.virtual-assistant__panel{height:40rem;width:30rem;border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-dark-grey-200);box-shadow:0 1.1rem 1.5rem -0.7rem,var(--color-light-shade-280),0 2.4rem 3.8rem .3rem var(--color-light-shade-280),0 .9rem 4.6rem .8rem var(--color-light-shade-280);pointer-events:all}.virtual-assistant__panel__container{z-index:10000;pointer-events:none}.virtual-assistant__panel__container__root{margin:-1rem}.virtual-assistant__panel__header{display:flex;align-items:center;justify-content:space-between;background:var(--color-dark-grey-250);height:2.8rem}.virtual-assistant__panel__header__actions{display:flex;align-items:center}.virtual-assistant__panel__header__action{display:flex;align-items:center;justify-content:center;width:2.8rem;height:2.8rem}.virtual-assistant__panel__header__action svg{color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__action:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__panel__header__tabs{display:flex;height:2.8rem;color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__tab{padding:0 1rem;border-right:.1rem solid var(--color-dark-grey-100)}.virtual-assistant__panel__header__tab:hover{background:var(--color-dark-grey-280)}.virtual-assistant__panel__header__tab__content{display:flex;align-items:center;justify-content:center;cursor:pointer;height:2.8rem;width:6rem;border-bottom:.3rem solid var(--color-dark-grey-300);padding-top:.1rem;position:relative}.virtual-assistant__panel__header__tab__content svg{font-size:1.5rem;color:var(--color-dark-grey-400)}.virtual-assistant__panel__header__tab__indicator{position:absolute;top:.5rem;right:1rem;height:1rem;width:1rem;border-radius:50%;background:var(--color-yellow-200)}.virtual-assistant__panel__header__tab:hover .virtual-assistant__panel__header__tab__content svg{color:var(--color-dark-grey-500)}.virtual-assistant__panel__header__tab--active:hover .virtual-assistant__panel__header__tab__content,.virtual-assistant__panel__header__tab--active .virtual-assistant__panel__header__tab__content{border-bottom:.3rem solid var(--color-yellow-300)}.virtual-assistant__panel__header__tab--active:hover .virtual-assistant__panel__header__tab__content svg,.virtual-assistant__panel__header__tab--active .virtual-assistant__panel__header__tab__content svg{color:var(--color-light-grey-200)}.virtual-assistant__panel__content{height:calc(100% - 2.8rem)}.virtual-assistant__panel__icon__close{font-size:2.4rem}.virtual-assistant__panel__placeholder{display:flex;align-items:center;justify-content:center;flex-direction:column}.virtual-assistant__panel__placeholder__icon{font-size:5rem;color:var(--color-yellow-200)}.virtual-assistant__panel__placeholder__message{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400);margin-top:1rem}.virtual-assistant__panel__placeholder__instruction{font-family:"Roboto Mono",monospace;font-size:1.3rem;font-weight:700;color:var(--color-dark-grey-300);margin-top:.5rem}.virtual-assistant__search{height:100%}.virtual-assistant__search__header{display:flex;align-items:center;justify-content:center;padding:.3rem;border-bottom:.1rem solid var(--color-dark-grey-250);height:3.4rem;position:relative}.virtual-assistant__search__input{font-size:1.3rem;height:2.8rem;padding-right:2.8rem;padding-left:1rem;width:100%;background:var(--color-dark-grey-85);border-radius:.2rem;border:.1rem solid var(--color-dark-grey-200)}.virtual-assistant__search__input--searching{padding-right:9rem}.virtual-assistant__search__input__search__count{display:flex;align-items:center;justify-content:center;position:absolute;right:5.4rem;border-radius:.8rem;height:1.6rem;padding:0 .5rem;font-size:1.1rem;font-weight:700;background:var(--color-yellow-100);color:var(--color-dark-grey-280);user-select:none;cursor:default}.virtual-assistant__search__input__search__icon{display:flex;align-items:center;justify-content:center;position:absolute;right:.3rem;height:2.8rem;width:2.8rem}.virtual-assistant__search__input__search__icon svg{color:var(--color-light-shade-100)}.virtual-assistant__search__input__clear-btn{display:flex;align-items:center;justify-content:center;position:absolute;right:.3rem;height:2.8rem;width:2.8rem}.virtual-assistant__search__input__clear-btn svg{color:var(--color-dark-grey-400)}.virtual-assistant__search__input__clear-btn:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__search__input__config__trigger{display:flex;align-items:center;justify-content:center;position:absolute;right:3.1rem;height:2.8rem;width:1.8rem;cursor:pointer}.virtual-assistant__search__input__config__trigger svg{color:var(--color-dark-grey-400)}.virtual-assistant__search__input__config__trigger--toggled svg,.virtual-assistant__search__input__config__trigger:hover svg{color:var(--color-dark-grey-500)}.virtual-assistant__search__input__config__trigger--active svg,.virtual-assistant__search__input__config__trigger--active:hover svg{color:var(--color-blue-150)}.virtual-assistant__search__input__config__panel{width:100%;height:12rem;position:absolute;z-index:1;box-shadow:var(--color-dark-shade-280) .2rem .1rem .3rem .1rem;overflow:hidden;max-height:0;transition:max-height ease-in-out 100ms}.virtual-assistant__search__input__config__panel--toggled{max-height:12rem}.virtual-assistant__search__content{height:calc(100% - 3.4rem);position:relative}.virtual-assistant__search__results{height:100%;overflow-y:auto;padding:1rem}.virtual-assistant__search__results__placeholder{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400)}.virtual-assistant__doc-entry+.virtual-assistant__doc-entry{margin-top:.5rem}.virtual-assistant__doc-entry__header{display:flex}.virtual-assistant__doc-entry__expand-icon{display:flex;align-items:flex-start;width:2rem;min-width:2rem;padding-top:.3rem}.virtual-assistant__doc-entry__expand-icon svg{color:var(--color-light-grey-50)}.virtual-assistant__doc-entry__expand-icon--disabled svg{color:var(--color-dark-grey-300)}.virtual-assistant__doc-entry__title{line-height:1.5;font-weight:500;color:var(--color-light-grey-50);cursor:pointer;user-select:none}.virtual-assistant__doc-entry__title--link{color:var(--color-blue-40);text-decoration:none}.virtual-assistant__doc-entry__content{margin-top:.5rem;padding-left:2rem}.virtual-assistant__doc-entry__content__text{color:var(--color-light-grey-50);line-height:1.5;background:var(--color-dark-grey-80);border-radius:.2rem;padding:1rem}.virtual-assistant__doc-entry__content__markdown-text{padding:1rem;border-radius:.2rem}.virtual-assistant__character{display:flex;align-items:center;justify-content:center;flex-direction:column}.virtual-assistant__character__container{display:flex;align-items:center;justify-content:center;width:100%;height:100%;overflow:hidden}.virtual-assistant__character__greeting{font-family:"Roboto Mono",monospace;font-size:1.3rem;color:var(--color-light-grey-400);margin-top:.6rem;cursor:default;user-select:none}.virtual-assistant__character__question{font-family:"Roboto Mono",monospace;font-size:1.3rem;font-weight:700;color:var(--color-light-grey-0);margin-top:.6rem;cursor:default;user-select:none}.virtual-assistant__character__figure{display:flex;align-items:center;justify-content:center;position:relative;width:10rem;height:20rem}.virtual-assistant__character__hat{position:absolute;font-size:8rem;color:var(--color-orange-150);top:0}.virtual-assistant__character__glasses{position:absolute;font-size:8rem;color:var(--color-dark-grey-300);top:6rem}.virtual-assistant__character__beard{position:absolute;color:var(--color-yellow-200);font-size:8rem;top:11rem}.virtual-assistant__contextual-support{height:100%}.virtual-assistant__contextual-support__content{height:100%;overflow-y:auto;padding:1.5rem}.virtual-assistant__contextual-support__title{line-height:1.5;font-weight:700;color:var(--color-light-grey-50);cursor:pointer;user-select:none;font-size:1.5rem;margin-bottom:1rem}.virtual-assistant__contextual-support__text{color:var(--color-light-grey-50);line-height:1.5;background:var(--color-dark-grey-80);border-radius:.2rem;padding:1rem;margin-bottom:1rem}.virtual-assistant__contextual-support__markdown-text{padding:1rem;border-radius:.2rem;margin-bottom:1rem}.virtual-assistant__contextual-support__relevant-entries__title{color:var(--color-dark-grey-500);font-family:"Roboto Mono",monospace;font-size:1.3rem;margin-bottom:1rem}.fuzzy-search__advanced-config__panel{width:100%;background:var(--color-dark-grey-250)}.fuzzy-search__advanced-config__panel__header__label{display:flex;align-items:center;font-weight:500;color:var(--color-light-grey-50);background:var(--color-dark-grey-300);padding:0 1rem;line-height:2rem;font-size:1.2rem;cursor:default}.fuzzy-search__advanced-config__panel__header__hint{display:flex;align-items:center;justify-content:center;border-radius:.2rem;padding:0 .5rem;color:var(--color-light-grey-300)}.fuzzy-search__advanced-config__panel__header__hint svg{font-size:1.2rem}.tab-manager{display:flex;flex:1;overflow:hidden;height:100%}.tab-manager__content{width:calc(100% - 2.8rem);display:flex;overflow-x:overlay}.tab-manager__tab{display:flex;align-items:center;cursor:pointer;color:var(--color-light-grey-400);background:var(--color-dark-grey-80);border-right:.1rem solid var(--color-dark-grey-50)}.tab-manager__tab--active{color:var(--color-light-grey-100);background:var(--color-dark-grey-50)}.tab-manager__tab--dragged{filter:opacity(0.7)}.tab-manager__tab__content{display:flex;align-items:center;height:100%;width:100%}.tab-manager__tab__label{height:100%;color:inherit;padding:0 .5rem 0 1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tab-manager__tab__close-btn{visibility:hidden;display:flex;align-items:center}.tab-manager__tab__close-btn svg{color:var(--color-light-grey-200);font-size:1.2rem;margin-right:1rem}.tab-manager__tab--active .tab-manager__tab__close-btn,.tab-manager__tab:hover .tab-manager__tab__close-btn{visibility:visible}.tab-manager__tab--active .tab-manager__tab__close-btn svg,.tab-manager__tab:hover .tab-manager__tab__close-btn svg{color:var(--color-light-grey-100)}.tab-manager__tab__dnd__placeholder{text-align:left;margin:0;padding:0 .5rem;background-color:var(--color-dark-grey-100)}.tab-manager__menu{min-width:15rem;max-width:30rem;height:100%;padding:0}.tab-manager__menu__toggler{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;color:var(--color-light-grey-400);border-left:.1rem solid var(--color-dark-grey-50);height:100%;width:2.8rem}.tab-manager__menu__item{justify-content:space-between}.tab-manager__menu__item--active,.tab-manager__menu__item:not([disabled]):hover{background:var(--color-dark-grey-250)}.tab-manager__menu__item__label{text-align:left;white-space:nowrap;font-size:1.3rem;overflow:hidden;text-overflow:ellipsis}.tab-manager__menu__item__close-btn{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;padding:.4rem;margin-left:.6rem;flex-direction:end}.tab-manager__menu__item__close-btn svg{width:1.2rem;height:1.2rem}.documentation-link{display:inline-flex;align-self:center;color:var(--color-dark-grey-500);cursor:pointer}.documentation-preview{display:flex;background:var(--color-dark-grey-85);border:.1rem solid var(--color-dark-grey-280);border-radius:.2rem}.documentation-preview__text{padding:1rem;width:calc(100% - 3rem);color:var(--color-light-grey-400);line-height:2rem}.documentation-preview__hint{display:flex;justify-content:center;padding:1rem 0;width:3rem}.packageable-element-option-label{display:flex;align-items:center}.packageable-element-option-label__tag{display:flex;align-items:center;color:var(--color-dark-grey-500);background:var(--color-light-grey-50);border:.1rem solid var(--color-light-grey-180);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.packageable-element-option-label__name{display:flex;align-items:center;height:1.8rem}.packageable-element-option-label__type{margin:-1rem .8rem -1rem -1.2rem;height:3.2rem;padding-left:.5rem;background:rgba(0,0,0,0)}.packageable-element-option-label__type--system{background:var(--color-system)}.packageable-element-option-label__type--generated{background:var(--color-generated)}.packageable-element-option-label__type--dependency{background:var(--color-dependency)}.packageable-element-option-label--dark{display:flex;align-items:center;display:flex}.packageable-element-option-label--dark__tag{display:flex;align-items:center;color:var(--color-dark-grey-250);background:var(--color-dark-grey-400);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.packageable-element-option-label--dark__name{display:flex;align-items:center;height:1.8rem}.execution-plan-viewer{height:100%;width:100%}.execution-plan-viewer__content{height:100%;width:100%}.execution-plan-viewer__debug-panel{background:var(--color-dark-grey-50)}.execution-plan-viewer__debug-panel .panel__header{background:var(--color-dark-grey-250)}.execution-plan-viewer__debug-panel .panel__content{position:relative;background:var(--color-dark-grey-50)}.execution-plan-viewer__close-btn{border-color:var(--color-blue-200);background:var(--color-blue-300)}.execution-plan-viewer .panel{height:100%}.execution-plan-viewer .panel__header{color:var(--color-light-grey-400);font-weight:bold;background:var(--color-dark-grey-50)}.execution-plan-viewer .panel__header__title{max-width:calc(100% - 11rem)}.execution-plan-viewer .panel__main-header{color:var(--color-light-grey-400);font-weight:bold;background:var(--color-dark-grey-250)}.execution-plan-viewer .panel__content{position:relative;height:calc(100% - 3rem);width:100%;background:var(--color-dark-grey-50);overflow-y:hidden}.execution-plan-viewer .panel__content ::-webkit-scrollbar-thumb{background:var(--color-dark-grey-400)}.execution-plan-viewer .panel__content>div:first-child{margin-top:0}.execution-plan-viewer .panel__content__lists{height:100%;width:100%;padding:1rem;overflow:overlay}.execution-plan-viewer__tabs__header{padding-left:0}.execution-plan-viewer__tabs{height:2.8rem;z-index:1;display:flex;overflow-x:overlay;overflow-y:hidden}.execution-plan-viewer__tab{height:100%;display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;border-right:.1rem solid var(--color-dark-grey-200);white-space:nowrap;cursor:pointer}.execution-plan-viewer__tab--active{color:var(--color-dark-grey-50);position:relative}.execution-plan-viewer__tab--active::after{content:"";height:.4rem;width:100%;position:absolute;bottom:0;background:var(--color-yellow-200)}.execution-plan-viewer__panel{height:100%;width:100%}.execution-plan-viewer__panel__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.execution-plan-viewer__panel__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.execution-plan-viewer__panel__header__tabs{display:flex;height:100%;overflow-x:overlay}.execution-plan-viewer__panel__header__tab{display:flex;align-items:center;padding:0 1rem;cursor:pointer;color:var(--color-light-grey-400);background:var(--color-dark-grey-80);border-right:.1rem solid var(--color-dark-grey-80)}.execution-plan-viewer__panel__header__tab--active{color:var(--color-light-grey-100);background:var(--color-dark-grey-50)}.execution-plan-viewer__panel__header__tab__content{display:flex;align-items:center;height:100%;width:100%}.execution-plan-viewer__panel__header__tab__icon{margin-right:.5rem}.execution-plan-viewer__panel__header__tab__label{color:inherit;padding:0 .5rem;white-space:nowrap}.execution-plan-viewer__panel__view-mode__type{display:flex;align-items:center;justify-content:center;width:15rem;background:var(--color-dark-grey-100);border-right:.1rem solid var(--color-dark-grey-50);border-left:.1rem solid var(--color-dark-grey-50);color:var(--color-light-grey-300);cursor:pointer}.execution-plan-viewer__panel__view-mode__type:hover{background:var(--color-dark-grey-200)}.execution-plan-viewer__panel__view-mode__type__label{display:flex;align-items:center;height:3.4rem;padding:0 .5rem;border-top:.3rem solid var(--color-yellow-200)}.execution-plan-viewer__panel__view-mode__options{width:15rem}.execution-plan-viewer__panel__view-mode__options--with-group{border:none;padding:0}.execution-plan-viewer__panel__view-mode__option__group__name{display:flex;align-items:center;justify-content:center;flex-direction:column;cursor:default;writing-mode:vertical-lr;transform:rotate(180deg);font-size:1.1rem;width:2.2rem;padding:.5rem 0}.execution-plan-viewer__panel__view-mode__option__group{display:flex;flex-direction:row}.execution-plan-viewer__panel__view-mode__option__group--native{background:var(--color-blue-100);border:.1rem solid var(--color-blue-100)}.execution-plan-viewer__panel__view-mode__option__group--native .execution-plan-viewer__panel__view-mode__option__group__name{background:var(--color-blue-100);color:var(--color-light-grey-50)}.execution-plan-viewer__panel__view-mode__option__group--generation{background:var(--color-pink-300);border:.1rem solid var(--color-pink-300)}.execution-plan-viewer__panel__view-mode__option__group--generation .execution-plan-viewer__panel__view-mode__option__group__name{background:var(--color-pink-300);color:var(--color-light-grey-50)}.execution-plan-viewer__panel__view-mode__option__group__separator{height:.2rem;width:100%}.execution-plan-viewer__panel__view-mode__option__group__options{width:100%;background:var(--color-dark-grey-100)}.execution-plan-viewer__panel__view-mode__option{display:flex;align-items:center;justify-content:center;height:2rem}.execution-plan-viewer__explorer{width:100%}.execution-plan-viewer__explorer__content__container{height:100%;background:var(--color-dark-grey-100)}.execution-plan-viewer__explorer-tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.execution-plan-viewer__explorer-tree__node__container--selected,.execution-plan-viewer__explorer-tree__node__container--selected:hover{background:var(--color-light-blue-450)}.execution-plan-viewer__explorer-tree__node__icon{width:4rem;min-width:4rem}.execution-plan-viewer__explorer-tree__node__icon__expand,.execution-plan-viewer__explorer-tree__node__icon__type{width:2rem;display:flex;justify-content:center}.execution-plan-viewer__explorer-tree__node__icon__expand svg{font-size:1rem}.execution-plan-viewer__explorer-tree__node__label{color:inherit}.execution-plan-viewer__unsupported-view,.execution-node-viewer__unsupported-view{display:flex;align-items:center;justify-content:center;flex-direction:column}.execution-plan-viewer__unsupported-view__summary,.execution-node-viewer__unsupported-view__summary{font-weight:500;margin-bottom:1rem}.execution-plan-viewer__unsupported-view__to-text-mode__btn,.execution-node-viewer__unsupported-view__to-text-mode__btn{height:2.8rem;width:15rem}/*# sourceMappingURL=index.css.map */
package/lib/index.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../style/_deps.scss","../style/_extensions.scss","../style/components/_app.scss","../../../node_modules/@finos/legend-art/scss/_mixins.scss","../style/components/_blocking-alert.scss","../style/components/_backdrop.scss","../style/components/_notification.scss","../style/components/_virtual-assistant.scss","../style/components/_text-search.scss","../style/components/shared/_tab-manager.scss","../style/components/shared/_documentation-link.scss","../style/components/shared/_text-editor.scss","../style/components/shared/_packageable-element-option-label.scss","../style/components/shared/_execution-plan-viewer.scss"],"names":[],"mappings":"AAgBQ,mCCCN,+CACA,2CAEA,mDACA,+CACA,4CACA,uCACA,sCACA,6CACA,sCACA,yCACA,2CACA,yCACA,wCACA,2CACA,0CACA,8CACA,0CACA,8CACA,2CACA,iDACA,sCACA,sCACA,4CACA,yCAIA,cACE,yBAGF,oBACE,+BAGF,aACE,wBAGF,gBACE,2BAGF,oBACE,+BAGF,kBACE,6BAGF,mBACE,8BAGF,gBACE,2BAGF,iBACE,4BAGF,wBACE,mCAGF,gBACE,2BAGF,kBACE,6BAGF,eACE,0BAGF,mBACE,8BAGF,eACE,0BAGF,kBACE,6BAGF,iBACE,4BAGF,cACE,yBAGF,eACE,0BAGF,gBACE,2BAGF,mBACE,8BAGF,gBACE,2BAGF,aACE,wBAKF,6CAEE,8BAGF,yBACE,oCAGF,kBACE,6BAGF,qBACE,gCAGF,yBACE,oCAGF,uBACE,kCAGF,wBACE,mCAGF,qBACE,gCAGF,qBACE,gCAGF,uBACE,kCAGF,sBACE,iCAGF,qBACE,gCAGF,wBACE,mCAGF,qBACE,gCAGF,wBACE,mCAGF,kBACE,6BCvLJ,gBACE,YACA,WAGF,KACE,YACA,qCAEA,WACE,YACA,qCAIA,kBACE,gBACA,qCACA,eACA,oBAGF,kBACE,aACA,eACA,gBACA,oCAGF,yBACE,mBACA,iCAGF,yBACE,kCAGF,2BACE,qBACA,gBACA,2BAGF,uBACE,aACA,gBACA,YAEA,+BCrCJ,aACA,mBDuCM,cACA,sCACA,8BACA,eAEA,sCACE,eACA,iBACA,gBACA,iCACA,oCAIJ,gCACE,2BACA,cACA,aACA,qCACA,8BAIA,yCCxCN,YACA,cD0CQ,aACA,WAGF,iDC/CN,YACA,cDiDQ,WAEA,qDACE,iBAIJ,+CCzDN,YACA,cD2DQ,WAEA,mDACE,iBACA,4BAIJ,0CACE,aACA,cACA,YACA,iBACA,YACA,mBACA,iBACA,oCAEA,iDACE,iBAGF,mDC/GR,aACA,mBACA,uBDgHU,YACA,iBAGF,0DCtHR,aACA,mBACA,uBDuHU,cACA,cACA,sCACA,eACA,oBEnIZ,gBACE,UAEA,gCACE,wBAGF,2BACE,8BAGF,qBDLA,aACA,mBACA,uBCME,cACA,oBACA,YACA,iCAGF,6BACE,mBACA,eACA,mBAGF,yBACE,kBAGF,iCACE,kBACA,iBACA,4BACA,gBAGF,8BACE,kCACA,gBAGF,6BACE,2BACA,iBACA,gBACA,gBAGF,0BACE,yCAGF,yBACE,yCAEA,uCACE,iCAGF,sDACE,4BC/DN,UACE,kDACA,uBAEA,qBACE,SACA,QACA,kBAGF,mBACE,YACA,kBACA,2DCVF,wBACE,YACA,WAGF,uBACE,sCACA,kCACA,oBACA,uBAGF,gCACE,aACA,uBACA,eAEA,uCACE,sCAIJ,sCACE,kBACA,mBAGF,0CACE,iBAGF,4CACE,kCAGF,6CACE,2BAGF,+CACE,8BAGF,+CACE,6BAGF,sCH1BA,mBACA,uBACA,gBACA,sBACA,gBGyBE,iBACA,gBAEA,gDACE,cAIA,qBACA,YAIJ,uBACE,2BAGF,sBH9DA,aACA,mBACA,uBG+DE,WACA,iCAGF,4BACE,kCC5EJ,mBACE,kBAMA,cAIA,YACA,WAEA,iCAGE,cAGF,4BJRA,aACA,mBIUE,yBACA,cACA,aAEA,wCACA,qCACA,WACA,wCACA,iCAGF,qCJ5BA,aACA,mBACA,uBI6BE,cACA,aACA,kBACA,gCACA,2BAEA,4CACE,iBACA,kCACA,kBAGF,6CACE,iBACA,gCACA,oEAGF,yBACE,KACE,WAGF,GACE,YAKN,oCACE,aAGF,yCACE,cACA,WACA,YAEA,kDJrEF,aACA,mBACA,uBIsEI,YACA,WAGF,mDACE,gBAGF,6CACE,eACA,mCAIJ,oCACE,qCACA,2BACA,4BAGF,yEACE,mCACA,+BACA,4BAGF,wBACE,KACE,uCAGF,GACE,sCAIJ,4BACE,KACE,qCAGF,GACE,oCAKN,0BACE,aACA,YACA,oBACA,sCACA,8CACA,qKAMA,mBAEA,qCAGE,cAMA,oBAEA,2CACE,aAIJ,kCJ/IA,aACA,mBIiJE,8BACA,sCACA,cAEA,2CJtJF,aACA,mBIyJE,0CJhKF,aACA,mBACA,uBIiKI,aACA,cAEA,8CACE,iCAGF,oDACE,iCAKN,wCACE,aACA,cACA,iCAGF,uCACE,eACA,oDAEA,6CACE,sCAIJ,gDJ/LA,aACA,mBACA,uBIgME,eACA,cACA,WACA,qDACA,kBACA,kBAEA,oDACE,iBACA,iCAIJ,kDACE,kBACA,UACA,WACA,YACA,WACA,kBACA,mCAGF,iGACE,iCAGF,oMAEE,kDAEA,4MACE,kCAIJ,mCACE,2BAGF,uCACE,iBAGF,uCJ9OA,aACA,mBACA,uBI+OE,sBAEA,6CACE,eACA,8BAGF,gDACE,oCACA,iBACA,kCACA,gBAGF,oDACE,oCACA,iBACA,gBACA,iCACA,iBAKN,2BACE,YAEA,mCJ5QA,aACA,mBACA,uBI6QE,cACA,qDACA,cACA,kBAGF,kCACE,iBACA,cACA,qBACA,kBACA,WACA,qCACA,oBACA,8CAEA,6CACE,mBAGF,iDJnSF,aACA,mBACA,uBIoSI,kBACA,aACA,oBACA,cACA,gBACA,iBACA,gBACA,mCACA,iCACA,iBACA,eAGF,gDJnTF,aACA,mBACA,uBIoTI,kBACA,YACA,cACA,aAEA,oDACE,mCAIJ,6CJhUF,aACA,mBACA,uBIiUI,kBACA,YACA,cACA,aAEA,iDACE,iCAGF,uDACE,iCAIJ,mDJjVF,aACA,mBACA,uBIkVI,kBACA,aACA,cACA,aACA,eAEA,uDACE,iCAGF,6HAEE,iCAGF,oIAEE,4BAIJ,iDACE,WACA,aACA,kBACA,UACA,+DAGA,gBACA,aACA,wCAEA,0DACE,iBAKN,oCACE,2BACA,kBAGF,oCACE,YACA,gBACA,aAGF,iDACE,oCACA,iBACA,kCAKF,4DACE,iBAGF,sCACE,aAGF,2CACE,aACA,uBACA,WACA,eACA,kBAEA,+CACE,iCAKF,yDACE,iCAIJ,qCACE,gBACA,gBACA,iCACA,eACA,iBAGF,2CACE,2BACA,qBAGF,uCACE,iBACA,kBAGF,6CACE,iCACA,gBACA,qCACA,oBACA,aAGF,sDACE,aACA,oBAIJ,8BJxcE,aACA,mBACA,uBIycA,sBAEA,yCJ7cA,aACA,mBACA,uBI8cE,WACA,YACA,gBAGF,wCACE,oCACA,iBACA,kCACA,iBACA,eACA,iBAGF,wCACE,oCACA,iBACA,gBACA,gCACA,iBACA,eACA,iBAGF,sCJxeA,aACA,mBACA,uBIyeE,kBACA,YACA,aAGF,mCACE,kBACA,eACA,8BACA,MAGF,uCACE,kBACA,eACA,iCACA,SAGF,qCACE,kBACA,8BACA,eACA,UAIJ,uCACE,YAEA,gDACE,YACA,gBACA,eAGF,8CACE,gBACA,gBACA,iCACA,eACA,iBACA,iBACA,mBAGF,6CACE,iCACA,gBACA,qCACA,oBACA,aACA,mBAGF,sDACE,aACA,oBACA,mBAIA,gEACE,iCACA,oCACA,iBACA,mBCnjBN,oCACE,WACA,sCAEA,mDLQA,aACA,mBKNE,gBACA,iCACA,sCACA,eACA,iBACA,iBACA,eAGF,kDLVA,aACA,mBACA,uBKWE,oBACA,gBACA,kCAEA,sDACE,iBCxBN,aACE,aACA,OACA,gBACA,YAEA,sBACE,0BACA,aACA,mBAGF,+BNCA,mBMEE,eACA,kCACA,qCACA,mDAEA,0BACE,kCACA,qCAGF,2BACE,oBAGF,2BNjBF,aACA,mBMmBI,YACA,WAGF,yBACE,YACA,cACA,uBACA,mBACA,gBACA,uBAGF,6BACE,kBNlCJ,aACA,mBMqCI,iCACE,kCACA,iBACA,kBAIJ,4GAEE,mBAEA,oHACE,kCAIJ,oCACE,gBACA,SACA,gBACA,4CAIJ,mBACE,gBACA,gBACA,YACA,UAEA,4BN1EF,aACA,mBACA,uBA2BA,YACA,cMgDI,kCACA,kDACA,YACA,aAGF,yBACE,8BAEA,gFAEE,sCAIJ,gCACE,gBACA,mBACA,iBACA,gBACA,uBAGF,oCNrGF,aACA,mBACA,uBA2BA,YACA,cM2EI,cACA,kBACA,mBAEA,wCACE,aACA,cCrHR,oBACE,oBACA,kBACA,iCACA,eAGF,uBACE,aACA,qCACA,8CACA,oBAEA,6BACE,aACA,wBACA,kCACA,iBAGF,6BPHA,aACA,uBOKE,eACA,WCzBF,wBACE,YACA,WACA,kBACA,qCAGF,mBACE,YACA,WACA,kBACA,MACA,OACA,gBCZJ,kCTYE,aACA,mBSVA,uCTSA,aACA,mBSPE,iCACA,sCACA,+CACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,wCTLA,aACA,mBSOE,cAIJ,wCACE,iCACA,cACA,mBACA,yBAEA,gDACE,+BAGF,mDACE,kCAGF,oDACE,mCAIJ,wCT/BE,aACA,mBSiCA,aAEA,6CTpCA,aACA,mBSsCE,iCACA,sCACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,8CTjDA,aACA,mBSmDE,cChEJ,uBACE,YACA,WAEA,gCACE,YACA,WAGF,oCACE,qCAEA,mDACE,sCAGF,oDACE,kBACA,qCAIJ,kCACE,mCACA,iCAGF,8BACE,YAEA,sCACE,kCACA,iBACA,qCAEA,6CACE,6BAIJ,2CACE,kCACA,iBACA,sCAGF,uCACE,kBACA,yBACA,WACA,qCACA,kBAEA,iEACE,sCAIJ,uDACE,aAGF,8CACE,YACA,WACA,aACA,iBAIJ,qCACE,eAGF,6BACE,cACA,UACA,aACA,mBACA,kBAGF,4BACE,YACA,oBACA,mBACA,uBACA,eACA,oDACA,mBACA,eAGF,oCACE,gCACA,kBAGF,2CACE,WACA,aACA,WACA,kBACA,SACA,mCAGF,8BACE,YACA,WAEA,uCACE,kBACA,kBACA,qCACA,2BAGF,sCACE,sCACA,UACA,cACA,kBACA,UAGF,4CACE,aACA,YACA,mBAGF,2CVxHF,aACA,mBU0HI,eACA,eACA,kCACA,qCACA,mDAGF,mDACE,kCACA,qCAGF,oDVvIF,aACA,mBUyII,YACA,WAGF,iDACE,mBAGF,kDACE,cACA,gBACA,mBAIA,+CV/JJ,aACA,mBACA,uBUgKM,YACA,sCACA,mDACA,kDACA,kCACA,eAGF,qDACE,sCAGF,sDVxKJ,aACA,mBU0KM,cACA,gBACA,+CAGF,kDACE,YAGF,8DACE,YACA,UAGF,8DV/LJ,aACA,mBACA,uBUgMM,sBACA,eACA,yBACA,yBACA,iBACA,aACA,gBAGF,wDACE,aACA,mBAEA,gEACE,iCACA,yCAGF,8HACE,iCACA,iCAGF,oEACE,iCACA,yCAGF,kIACE,iCACA,iCAIJ,mEACE,aACA,WAGF,iEACE,WACA,sCAGF,iDV9OJ,aACA,mBACA,uBU+OM,YAKN,iCACE,WAEA,qDACE,YACA,sCAIJ,6DACE,4CAGF,wIAEE,uCAGF,kDACE,WACA,eAGF,kHAEE,WVpQF,aACA,uBUwQA,8DACE,eAGF,mDACE,cAMF,kFV/RA,aACA,mBACA,uBUgSE,sBAEA,oGACE,gBACA,mBAGF,wHACE,cACA","file":"index.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../style/_deps.scss","../style/_extensions.scss","../style/components/_app.scss","../../../node_modules/@finos/legend-art/scss/_mixins.scss","../style/components/_blocking-alert.scss","../style/components/_backdrop.scss","../style/components/_notification.scss","../style/components/_virtual-assistant.scss","../style/components/shared/_fuzzy-search.scss","../style/components/shared/_tab-manager.scss","../style/components/shared/_documentation-link.scss","../style/components/shared/_packageable-element-option-label.scss","../style/components/shared/_execution-plan-viewer.scss"],"names":[],"mappings":"AAgBQ,mCCCN,+CACA,2CAEA,mDACA,+CACA,4CACA,uCACA,sCACA,6CACA,sCACA,yCACA,2CACA,yCACA,wCACA,2CACA,0CACA,8CACA,0CACA,8CACA,2CACA,iDACA,sCACA,sCACA,4CACA,yCAIA,cACE,yBAGF,oBACE,+BAGF,aACE,wBAGF,gBACE,2BAGF,oBACE,+BAGF,kBACE,6BAGF,mBACE,8BAGF,gBACE,2BAGF,iBACE,4BAGF,wBACE,mCAGF,gBACE,2BAGF,kBACE,6BAGF,eACE,0BAGF,mBACE,8BAGF,eACE,0BAGF,kBACE,6BAGF,iBACE,4BAGF,cACE,yBAGF,eACE,0BAGF,gBACE,2BAGF,mBACE,8BAGF,gBACE,2BAGF,aACE,wBAKF,6CAEE,8BAGF,yBACE,oCAGF,kBACE,6BAGF,qBACE,gCAGF,yBACE,oCAGF,uBACE,kCAGF,wBACE,mCAGF,qBACE,gCAGF,qBACE,gCAGF,uBACE,kCAGF,sBACE,iCAGF,qBACE,gCAGF,wBACE,mCAGF,qBACE,gCAGF,wBACE,mCAGF,kBACE,6BCvLJ,gBACE,YACA,WAGF,KACE,YACA,qCAEA,WACE,YACA,qCAIA,kBACE,gBACA,qCACA,eACA,oBAGF,kBACE,aACA,eACA,gBACA,oCAGF,yBACE,mBACA,iCAGF,yBACE,kCAGF,2BACE,qBACA,gBACA,2BAGF,uBACE,aACA,gBACA,YAEA,+BCrCJ,aACA,mBDuCM,cACA,sCACA,8BACA,eAEA,sCACE,eACA,iBACA,gBACA,iCACA,oCAIJ,gCACE,2BACA,cACA,aACA,qCACA,8BAIA,yCCxCN,YACA,cD0CQ,aACA,WAGF,iDC/CN,YACA,cDiDQ,WAEA,qDACE,iBAIJ,+CCzDN,YACA,cD2DQ,WAEA,mDACE,iBACA,4BAIJ,0CACE,aACA,cACA,YACA,iBACA,YACA,mBACA,iBACA,oCAEA,iDACE,iBAGF,mDC/GR,aACA,mBACA,uBDgHU,YACA,iBAGF,0DCtHR,aACA,mBACA,uBDuHU,cACA,cACA,sCACA,eACA,oBEnIZ,gBACE,UAEA,gCACE,wBAGF,2BACE,8BAGF,qBDLA,aACA,mBACA,uBCME,cACA,oBACA,YACA,iCAGF,6BACE,mBACA,eACA,mBAGF,yBACE,kBAGF,iCACE,kBACA,iBACA,4BACA,gBAGF,8BACE,kCACA,gBAGF,6BACE,2BACA,iBACA,gBACA,gBAGF,0BACE,yCAGF,yBACE,yCAEA,uCACE,iCAGF,sDACE,4BC/DN,UACE,kDACA,uBAEA,qBACE,SACA,QACA,kBAGF,mBACE,YACA,kBACA,2DCVF,wBACE,YACA,WAGF,uBACE,sCACA,kCACA,oBACA,uBAGF,gCACE,aACA,uBACA,eAEA,uCACE,sCAIJ,sCACE,kBACA,mBAGF,0CACE,iBAGF,4CACE,kCAGF,6CACE,2BAGF,+CACE,8BAGF,+CACE,6BAGF,sCH1BA,mBACA,uBACA,gBACA,sBACA,gBGyBE,iBACA,gBAEA,gDACE,cAIA,qBACA,YAIJ,uBACE,2BAGF,sBH9DA,aACA,mBACA,uBG+DE,WACA,iCAGF,4BACE,kCC5EJ,mBACE,kBAMA,cAIA,YACA,WAEA,iCAGE,cAGF,4BJRA,aACA,mBIUE,yBACA,cACA,aAEA,wCACA,qCACA,WACA,wCACA,iCAGF,qCJ5BA,aACA,mBACA,uBI6BE,cACA,aACA,kBACA,gCACA,2BAEA,4CACE,iBACA,kCACA,kBAGF,6CACE,iBACA,gCACA,oEAGF,yBACE,KACE,WAGF,GACE,YAKN,oCACE,aAGF,yCACE,cACA,WACA,YAEA,kDJrEF,aACA,mBACA,uBIsEI,YACA,WAGF,mDACE,gBAGF,6CACE,eACA,mCAIJ,oCACE,qCACA,2BACA,4BAGF,yEACE,mCACA,+BACA,4BAGF,wBACE,KACE,uCAGF,GACE,sCAIJ,4BACE,KACE,qCAGF,GACE,oCAKN,0BACE,aACA,YACA,oBACA,sCACA,8CACA,qKAMA,mBAEA,qCAGE,cAMA,oBAEA,2CACE,aAIJ,kCJ/IA,aACA,mBIiJE,8BACA,sCACA,cAEA,2CJtJF,aACA,mBIyJE,0CJhKF,aACA,mBACA,uBIiKI,aACA,cAEA,8CACE,iCAGF,oDACE,iCAKN,wCACE,aACA,cACA,iCAGF,uCACE,eACA,oDAEA,6CACE,sCAIJ,gDJ/LA,aACA,mBACA,uBIgME,eACA,cACA,WACA,qDACA,kBACA,kBAEA,oDACE,iBACA,iCAIJ,kDACE,kBACA,UACA,WACA,YACA,WACA,kBACA,mCAGF,iGACE,iCAGF,oMAEE,kDAEA,4MACE,kCAIJ,mCACE,2BAGF,uCACE,iBAGF,uCJ9OA,aACA,mBACA,uBI+OE,sBAEA,6CACE,eACA,8BAGF,gDACE,oCACA,iBACA,kCACA,gBAGF,oDACE,oCACA,iBACA,gBACA,iCACA,iBAKN,2BACE,YAEA,mCJ5QA,aACA,mBACA,uBI6QE,cACA,qDACA,cACA,kBAGF,kCACE,iBACA,cACA,qBACA,kBACA,WACA,qCACA,oBACA,8CAEA,6CACE,mBAGF,iDJnSF,aACA,mBACA,uBIoSI,kBACA,aACA,oBACA,cACA,gBACA,iBACA,gBACA,mCACA,iCACA,iBACA,eAGF,gDJnTF,aACA,mBACA,uBIoTI,kBACA,YACA,cACA,aAEA,oDACE,mCAIJ,6CJhUF,aACA,mBACA,uBIiUI,kBACA,YACA,cACA,aAEA,iDACE,iCAGF,uDACE,iCAIJ,mDJjVF,aACA,mBACA,uBIkVI,kBACA,aACA,cACA,aACA,eAEA,uDACE,iCAGF,6HAEE,iCAGF,oIAEE,4BAIJ,iDACE,WACA,aACA,kBACA,UACA,+DAGA,gBACA,aACA,wCAEA,0DACE,iBAKN,oCACE,2BACA,kBAGF,oCACE,YACA,gBACA,aAGF,iDACE,oCACA,iBACA,kCAKF,4DACE,iBAGF,sCACE,aAGF,2CACE,aACA,uBACA,WACA,eACA,kBAEA,+CACE,iCAKF,yDACE,iCAIJ,qCACE,gBACA,gBACA,iCACA,eACA,iBAGF,2CACE,2BACA,qBAGF,uCACE,iBACA,kBAGF,6CACE,iCACA,gBACA,qCACA,oBACA,aAGF,sDACE,aACA,oBAIJ,8BJxcE,aACA,mBACA,uBIycA,sBAEA,yCJ7cA,aACA,mBACA,uBI8cE,WACA,YACA,gBAGF,wCACE,oCACA,iBACA,kCACA,iBACA,eACA,iBAGF,wCACE,oCACA,iBACA,gBACA,gCACA,iBACA,eACA,iBAGF,sCJxeA,aACA,mBACA,uBIyeE,kBACA,YACA,aAGF,mCACE,kBACA,eACA,8BACA,MAGF,uCACE,kBACA,eACA,iCACA,SAGF,qCACE,kBACA,8BACA,eACA,UAIJ,uCACE,YAEA,gDACE,YACA,gBACA,eAGF,8CACE,gBACA,gBACA,iCACA,eACA,iBACA,iBACA,mBAGF,6CACE,iCACA,gBACA,qCACA,oBACA,aACA,mBAGF,sDACE,aACA,oBACA,mBAIA,gEACE,iCACA,oCACA,iBACA,mBCnjBN,sCACE,WACA,sCAEA,qDLQA,aACA,mBKNE,gBACA,iCACA,sCACA,eACA,iBACA,iBACA,eAGF,oDLVA,aACA,mBACA,uBKWE,oBACA,gBACA,kCAEA,wDACE,iBCxBN,aACE,aACA,OACA,gBACA,YAEA,sBACE,0BACA,aACA,mBAGF,+BNCA,mBMEE,eACA,kCACA,qCACA,mDAEA,0BACE,kCACA,qCAGF,2BACE,oBAGF,2BNjBF,aACA,mBMmBI,YACA,WAGF,yBACE,YACA,cACA,uBACA,mBACA,gBACA,uBAGF,6BACE,kBNlCJ,aACA,mBMqCI,iCACE,kCACA,iBACA,kBAIJ,4GAEE,mBAEA,oHACE,kCAIJ,oCACE,gBACA,SACA,gBACA,4CAIJ,mBACE,gBACA,gBACA,YACA,UAEA,4BN1EF,aACA,mBACA,uBA2BA,YACA,cMgDI,kCACA,kDACA,YACA,aAGF,yBACE,8BAEA,gFAEE,sCAIJ,gCACE,gBACA,mBACA,iBACA,gBACA,uBAGF,oCNrGF,aACA,mBACA,uBA2BA,YACA,cM2EI,cACA,kBACA,mBAEA,wCACE,aACA,cCrHR,oBACE,oBACA,kBACA,iCACA,eAGF,uBACE,aACA,qCACA,8CACA,oBAEA,6BACE,aACA,wBACA,kCACA,iBAGF,6BPHA,aACA,uBOKE,eACA,WCxBJ,kCRYE,aACA,mBQVA,uCRSA,aACA,mBQPE,iCACA,sCACA,+CACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,wCRLA,aACA,mBQOE,cAIJ,wCACE,iCACA,cACA,mBACA,yBAEA,gDACE,+BAGF,mDACE,kCAGF,oDACE,mCAIJ,wCR/BE,aACA,mBQiCA,aAEA,6CRpCA,aACA,mBQsCE,iCACA,sCACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,8CRjDA,aACA,mBQmDE,cChEJ,uBACE,YACA,WAEA,gCACE,YACA,WAGF,oCACE,qCAEA,mDACE,sCAGF,oDACE,kBACA,qCAIJ,kCACE,mCACA,iCAGF,8BACE,YAEA,sCACE,kCACA,iBACA,qCAEA,6CACE,6BAIJ,2CACE,kCACA,iBACA,sCAGF,uCACE,kBACA,yBACA,WACA,qCACA,kBAEA,iEACE,sCAIJ,uDACE,aAGF,8CACE,YACA,WACA,aACA,iBAIJ,qCACE,eAGF,6BACE,cACA,UACA,aACA,mBACA,kBAGF,4BACE,YACA,oBACA,mBACA,uBACA,eACA,oDACA,mBACA,eAGF,oCACE,gCACA,kBAGF,2CACE,WACA,aACA,WACA,kBACA,SACA,mCAGF,8BACE,YACA,WAEA,uCACE,kBACA,kBACA,qCACA,2BAGF,sCACE,sCACA,UACA,cACA,kBACA,UAGF,4CACE,aACA,YACA,mBAGF,2CTxHF,aACA,mBS0HI,eACA,eACA,kCACA,qCACA,mDAGF,mDACE,kCACA,qCAGF,oDTvIF,aACA,mBSyII,YACA,WAGF,iDACE,mBAGF,kDACE,cACA,gBACA,mBAIA,+CT/JJ,aACA,mBACA,uBSgKM,YACA,sCACA,mDACA,kDACA,kCACA,eAGF,qDACE,sCAGF,sDTxKJ,aACA,mBS0KM,cACA,gBACA,+CAGF,kDACE,YAGF,8DACE,YACA,UAGF,8DT/LJ,aACA,mBACA,uBSgMM,sBACA,eACA,yBACA,yBACA,iBACA,aACA,gBAGF,wDACE,aACA,mBAEA,gEACE,iCACA,yCAGF,8HACE,iCACA,iCAGF,oEACE,iCACA,yCAGF,kIACE,iCACA,iCAIJ,mEACE,aACA,WAGF,iEACE,WACA,sCAGF,iDT9OJ,aACA,mBACA,uBS+OM,YAKN,iCACE,WAEA,qDACE,YACA,sCAIJ,6DACE,4CAGF,wIAEE,uCAGF,kDACE,WACA,eAGF,kHAEE,WTpQF,aACA,uBSwQA,8DACE,eAGF,mDACE,cAMF,kFT/RA,aACA,mBACA,uBSgSE,sBAEA,oGACE,gBACA,mBAGF,wHACE,cACA","file":"index.css"}
package/lib/index.d.ts CHANGED
@@ -18,7 +18,6 @@ export * from './application/LegendApplication.js';
18
18
  export * from './application/LegendApplicationConfig.js';
19
19
  export * from './application/LegendApplicationPluginManager.js';
20
20
  export * from './application/LegendApplicationEvent.js';
21
- export * from './application/LegendApplicationDocumentation.js';
22
21
  export * from './application/LegendApplicationTelemetry.js';
23
22
  export * from './application/LegendApplicationSetting.js';
24
23
  export { LEGEND_APPLICATION_COLOR_THEME } from './application/LegendApplicationTheme.js';
@@ -49,20 +48,8 @@ export * from './stores/Core_LegendApplicationPlugin.js';
49
48
  export * from './stores/ApplicationStoreTestUtils.js';
50
49
  export * from './stores/navigation/WebApplicationRouter.js';
51
50
  export { DISPLAY_ANSI_ESCAPE } from './stores/terminal/Terminal.js';
52
- export * from './components/shared/DocumentationLink.js';
53
- /**
54
- * To be moved to other packages
55
- * @modularize
56
- */
57
- export * from './components/execution-plan-viewer/ExecutionPlanViewer.js';
58
- export * from './stores/ExecutionPlanState.js';
59
- export * from './components/shared/TextInputEditor.js';
51
+ export { PURE_GRAMMAR_TOKEN, setupPureLanguageService, } from './stores/pure-language/PureLanguageSupport.js';
52
+ export * from './stores/pure-language/PureLanguageCodeEditorSupport.js';
60
53
  export * from './components/shared/PackageableElementOptionLabel.js';
61
- export { PURE_GRAMMAR_TOKEN } from './stores/pure-language/PureLanguageSupport.js';
62
- export * from './stores/pure-language/PureLanguageTextEditorSupport.js';
63
54
  export * from './stores/shared/PackageableElementOption.js';
64
- export * from './components/shared/TabManager.js';
65
- export * from './components/shared/TextSearchAdvancedConfigMenu.js';
66
- export * from './stores/shared/TabManagerState.js';
67
- export * from './stores/shared/TextSearchAdvancedConfigState.js';
68
55
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,YAAY,CAAC;AAE3B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,yCAAyC,CAAC;AAEzF,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AAEzE,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EACL,iBAAiB,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,GACpB,MAAM,0CAA0C,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAIpE,cAAc,0CAA0C,CAAC;AAEzD;;;GAGG;AACH,cAAc,2DAA2D,CAAC;AAC1E,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AACvD,cAAc,sDAAsD,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,cAAc,yDAAyD,CAAC;AACxE,cAAc,6CAA6C,CAAC;AAE5D,cAAc,mCAAmC,CAAC;AAClD,cAAc,qDAAqD,CAAC;AACpE,cAAc,oCAAoC,CAAC;AACnD,cAAc,kDAAkD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,YAAY,CAAC;AAE3B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,yCAAyC,CAAC;AAEzF,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AAEzE,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EACL,iBAAiB,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,GACpB,MAAM,0CAA0C,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAKpE,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,+CAA+C,CAAC;AACvD,cAAc,yDAAyD,CAAC;AACxE,cAAc,sDAAsD,CAAC;AACrE,cAAc,6CAA6C,CAAC"}
package/lib/index.js CHANGED
@@ -18,7 +18,6 @@ export * from './application/LegendApplication.js';
18
18
  export * from './application/LegendApplicationConfig.js';
19
19
  export * from './application/LegendApplicationPluginManager.js';
20
20
  export * from './application/LegendApplicationEvent.js';
21
- export * from './application/LegendApplicationDocumentation.js';
22
21
  export * from './application/LegendApplicationTelemetry.js';
23
22
  export * from './application/LegendApplicationSetting.js';
24
23
  export { LEGEND_APPLICATION_COLOR_THEME } from './application/LegendApplicationTheme.js';
@@ -49,21 +48,10 @@ export * from './stores/Core_LegendApplicationPlugin.js';
49
48
  export * from './stores/ApplicationStoreTestUtils.js';
50
49
  export * from './stores/navigation/WebApplicationRouter.js';
51
50
  export { DISPLAY_ANSI_ESCAPE } from './stores/terminal/Terminal.js';
52
- // ------------------------------------------- Shared components -------------------------------------------
53
- export * from './components/shared/DocumentationLink.js';
54
- /**
55
- * To be moved to other packages
56
- * @modularize
57
- */
58
- export * from './components/execution-plan-viewer/ExecutionPlanViewer.js';
59
- export * from './stores/ExecutionPlanState.js';
60
- export * from './components/shared/TextInputEditor.js';
51
+ // ------------------------------------------- TO BE MOVED -------------------------------------------
52
+ // TODO: move to `@finos/legend-lego/code-editor`
53
+ export { PURE_GRAMMAR_TOKEN, setupPureLanguageService, } from './stores/pure-language/PureLanguageSupport.js';
54
+ export * from './stores/pure-language/PureLanguageCodeEditorSupport.js';
61
55
  export * from './components/shared/PackageableElementOptionLabel.js';
62
- export { PURE_GRAMMAR_TOKEN } from './stores/pure-language/PureLanguageSupport.js';
63
- export * from './stores/pure-language/PureLanguageTextEditorSupport.js';
64
56
  export * from './stores/shared/PackageableElementOption.js';
65
- export * from './components/shared/TabManager.js';
66
- export * from './components/shared/TextSearchAdvancedConfigMenu.js';
67
- export * from './stores/shared/TabManagerState.js';
68
- export * from './stores/shared/TextSearchAdvancedConfigState.js';
69
57
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,YAAY,CAAC;AAE3B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,yCAAyC,CAAC;AAEzF,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AAEzE,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EACL,iBAAiB,GAIlB,MAAM,0CAA0C,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAEpE,4GAA4G;AAE5G,cAAc,0CAA0C,CAAC;AAEzD;;;GAGG;AACH,cAAc,2DAA2D,CAAC;AAC1E,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AACvD,cAAc,sDAAsD,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,cAAc,yDAAyD,CAAC;AACxE,cAAc,6CAA6C,CAAC;AAE5D,cAAc,mCAAmC,CAAC;AAClD,cAAc,qDAAqD,CAAC;AACpE,cAAc,oCAAoC,CAAC;AACnD,cAAc,kDAAkD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,YAAY,CAAC;AAE3B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,yCAAyC,CAAC;AAEzF,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AAEzE,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EACL,iBAAiB,GAIlB,MAAM,0CAA0C,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAEpE,sGAAsG;AAEtG,iDAAiD;AACjD,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,+CAA+C,CAAC;AACvD,cAAc,yDAAyD,CAAC;AACxE,cAAc,sDAAsD,CAAC;AACrE,cAAc,6CAA6C,CAAC"}
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application",
3
- "version": "13.0.11",
3
+ "version": "14.0.1",
4
4
  "description": "Legend application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -22,6 +22,7 @@
22
22
  "type": "module",
23
23
  "exports": {
24
24
  ".": "./lib/index.js",
25
+ "./components": "./lib/components.js",
25
26
  "./lib/index.css": "./lib/index.css"
26
27
  },
27
28
  "module": "lib/index.js",
@@ -47,7 +48,7 @@
47
48
  "@finos/legend-graph": "workspace:*",
48
49
  "@finos/legend-shared": "workspace:*",
49
50
  "@types/css-font-loading-module": "0.0.8",
50
- "@types/react": "18.0.33",
51
+ "@types/react": "18.0.34",
51
52
  "@types/react-dom": "18.0.11",
52
53
  "@types/react-router-dom": "5.3.3",
53
54
  "history": "5.3.0",
@@ -58,11 +59,9 @@
58
59
  "react-dnd": "16.0.1",
59
60
  "react-dnd-html5-backend": "16.0.1",
60
61
  "react-dom": "18.2.0",
61
- "react-draggable": "4.4.5",
62
62
  "react-router": "5.3.4",
63
63
  "react-router-dom": "5.3.4",
64
64
  "serializr": "3.0.2",
65
- "sql-formatter": "12.2.0",
66
65
  "xterm": "5.1.0",
67
66
  "xterm-addon-fit": "0.7.0",
68
67
  "xterm-addon-search": "0.11.0",
@@ -74,12 +73,12 @@
74
73
  "@finos/legend-dev-utils": "workspace:*",
75
74
  "@jest/globals": "29.5.0",
76
75
  "cross-env": "7.0.3",
77
- "eslint": "8.37.0",
76
+ "eslint": "8.38.0",
78
77
  "jest": "29.5.0",
79
78
  "npm-run-all": "4.1.5",
80
- "rimraf": "4.4.1",
81
- "sass": "1.60.0",
82
- "typescript": "5.0.3"
79
+ "rimraf": "5.0.0",
80
+ "sass": "1.62.0",
81
+ "typescript": "5.0.4"
83
82
  },
84
83
  "peerDependencies": {
85
84
  "react": "^18.0.0"
@@ -90,9 +89,5 @@
90
89
  "extensions": {
91
90
  "applicationPlugin": "@finos/legend-application-plugin-core",
92
91
  "iframeEventNotifierPlugin": "@finos/legend-event-notifier-plugin-iframe"
93
- },
94
- "typedoc": {
95
- "entryPoint": "./src/index.ts",
96
- "readmeFile": "./README.md"
97
92
  }
98
93
  }
@@ -13,7 +13,7 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { TracerService, LogService } from '@finos/legend-shared';
16
+ import { TracerService, LogService, ActionState } from '@finos/legend-shared';
17
17
  import type { LegendApplicationConfig } from '../application/LegendApplicationConfig.js';
18
18
  import type { WebApplicationNavigator } from './navigation/WebApplicationNavigator.js';
19
19
  import type { LegendApplicationPluginManager } from '../application/LegendApplicationPluginManager.js';
@@ -40,6 +40,7 @@ export declare class ApplicationStore<T extends LegendApplicationConfig, V exten
40
40
  readonly uuid: string;
41
41
  readonly config: T;
42
42
  readonly pluginManager: V;
43
+ readonly initState: ActionState;
43
44
  readonly timeService: TimeService;
44
45
  readonly logService: LogService;
45
46
  readonly storageService: StorageService;
@@ -65,6 +66,7 @@ export declare class ApplicationStore<T extends LegendApplicationConfig, V exten
65
66
  * This is something we need to think about when we potentially move to another platform
66
67
  */
67
68
  navigator: WebApplicationNavigator, pluginManager: V);
69
+ initialize(): Promise<void>;
68
70
  /**
69
71
  * When we call store/state functions from the component, we should handle error thrown at these functions instead
70
72
  * of throwing them to the UI. This enforces that by throwing `IllegalStateError`
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationStore.d.ts","sourceRoot":"","sources":["../../src/stores/ApplicationStore.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ApplicationStore.d.ts","sourceRoot":"","sources":["../../src/stores/ApplicationStore.ts"],"names":[],"mappings":"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"}
@@ -13,7 +13,7 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { TracerService, LogService, LogEvent, uuid, } from '@finos/legend-shared';
16
+ import { TracerService, LogService, LogEvent, uuid, ActionState, assertErrorThrown, } from '@finos/legend-shared';
17
17
  import { APPLICATION_EVENT } from '../application/LegendApplicationEvent.js';
18
18
  import { DocumentationService } from './DocumentationService.js';
19
19
  import { AssistantService } from './AssistantService.js';
@@ -36,6 +36,7 @@ export class ApplicationStore {
36
36
  uuid = uuid();
37
37
  config;
38
38
  pluginManager;
39
+ initState = ActionState.create();
39
40
  // core
40
41
  timeService;
41
42
  logService;
@@ -92,6 +93,26 @@ export class ApplicationStore {
92
93
  this.tracerService = new TracerService();
93
94
  this.tracerService.registerPlugins(pluginManager.getTracerServicePlugins());
94
95
  }
96
+ async initialize() {
97
+ if (!this.initState.isInInitialState) {
98
+ this.notificationService.notifyIllegalState('Application store is re-initialized');
99
+ return;
100
+ }
101
+ this.initState.inProgress();
102
+ try {
103
+ await Promise.all(this.pluginManager
104
+ .getApplicationPlugins()
105
+ .flatMap((plugin) => plugin.getExtraApplicationSetups?.() ?? [])
106
+ .map((setup) => setup(this)));
107
+ this.initState.pass();
108
+ }
109
+ catch (error) {
110
+ assertErrorThrown(error);
111
+ this.notificationService.notifyError(error);
112
+ this.logService.error(LogEvent.create(APPLICATION_EVENT.APPLICATION_LOAD__FAILURE), 'Failed to load Legend application');
113
+ this.initState.fail();
114
+ }
115
+ }
95
116
  /**
96
117
  * When we call store/state functions from the component, we should handle error thrown at these functions instead
97
118
  * of throwing them to the UI. This enforces that by throwing `IllegalStateError`
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationStore.js","sourceRoot":"","sources":["../../src/stores/ApplicationStore.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ApplicationStore.js","sourceRoot":"","sources":["../../src/stores/ApplicationStore.ts"],"names":[],"mappings":"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"}
@@ -16,7 +16,7 @@
16
16
  import type { DocumentationEntry } from './DocumentationService.js';
17
17
  import type { GenericLegendApplicationStore } from './ApplicationStore.js';
18
18
  import { type MarkdownText, ActionState } from '@finos/legend-shared';
19
- import { TextSearchAdvancedConfigState } from './shared/TextSearchAdvancedConfigState.js';
19
+ import { FuzzySearchAdvancedConfigState } from './shared/FuzzySearchAdvancedConfigState.js';
20
20
  export declare enum VIRTUAL_ASSISTANT_TAB {
21
21
  SEARCH = "SEARCH",
22
22
  CONTEXTUAL_SUPPORT = "CONTEXTUAL_SUPPORT"
@@ -63,8 +63,8 @@ export declare class AssistantService {
63
63
  selectedTab: VIRTUAL_ASSISTANT_TAB;
64
64
  currentDocumentationEntry: VirtualAssistantDocumentationEntry | undefined;
65
65
  private readonly searchEngine;
66
- searchConfigurationState: TextSearchAdvancedConfigState;
67
- searchState: ActionState;
66
+ searchConfigurationState: FuzzySearchAdvancedConfigState;
67
+ readonly searchState: ActionState;
68
68
  searchText: string;
69
69
  searchResults: VirtualAssistantDocumentationEntry[];
70
70
  showSearchConfigurationMenu: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"AssistantService.d.ts","sourceRoot":"","sources":["../../src/stores/AssistantService.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,uBAAuB,CAAC;AAE3E,OAAO,EACL,KAAK,YAAY,EAIjB,WAAW,EACZ,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,6BAA6B,EAAE,MAAM,2CAA2C,CAAC;AAE1F,oBAAY,qBAAqB;IAC/B,MAAM,WAAW;IACjB,kBAAkB,uBAAuB;CAC1C;AAED,eAAO,MAAM,kCAAkC,MAAM,CAAC;AAEtD,qBAAa,kCAAkC;IAC7C,IAAI,SAAU;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAAC;IAC5C,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,MAAM,UAAS;gBAEH,QAAQ,EAAE,kBAAkB;IAYxC,SAAS,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAG9B;AAED,qBAAa,4CAA4C;IACvD,IAAI,SAAU;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAAC;IAC5C,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,OAAO,EAAE,kCAAkC,EAAE,CAAC;gBAG5C,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,kBAAkB,EAC5B,OAAO,EAAE,kCAAkC,EAAE;CAQhD;AAED;;;;GAIG;AACH,eAAO,MAAM,yCAAyC,UAC7C,kBAAkB,KACxB,OACsE,CAAC;AAE1E;;;GAGG;AACH,eAAO,MAAM,+CAA+C,UACnD,kBAAkB,KACxB,OAEwC,CAAC;AAE5C,qBAAa,gBAAgB;IAC3B,QAAQ,CAAC,gBAAgB,EAAE,6BAA6B,CAAC;IACzD;;OAEG;IACH,iBAAiB,SAAU;IAC3B,QAAQ,UAAS;IACjB,MAAM,UAAS;IACf,WAAW,wBAAgC;IAC3C,yBAAyB,EAAE,kCAAkC,GAAG,SAAS,CAAC;IAG1E,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwC;IACrE,wBAAwB,EAAE,6BAA6B,CAAC;IACxD,WAAW,cAAwB;IACnC,UAAU,SAAM;IAChB,aAAa,EAAE,kCAAkC,EAAE,CAAM;IACzD,2BAA2B,UAAS;IACpC,iBAAiB,UAAS;gBAEd,gBAAgB,EAAE,6BAA6B;IA+D3D,IAAI,mCAAmC,IACnC,4CAA4C,GAC5C,SAAS,CAwBZ;IAED,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAgB5C,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAI/B,aAAa,IAAI,IAAI;IAKrB,eAAe,IAAI,IAAI;IASvB,SAAS,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAI7B,cAAc,CAAC,GAAG,EAAE,qBAAqB,GAAG,IAAI;IAIhD,qBAAqB,IAAI,IAAI;IAI7B,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIhC,WAAW,IAAI,IAAI;IAMnB,MAAM,IAAI,IAAI;IAiCd,8BAA8B,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAGnD"}
1
+ {"version":3,"file":"AssistantService.d.ts","sourceRoot":"","sources":["../../src/stores/AssistantService.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EACL,KAAK,YAAY,EAIjB,WAAW,EAEZ,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAE5F,oBAAY,qBAAqB;IAC/B,MAAM,WAAW;IACjB,kBAAkB,uBAAuB;CAC1C;AAED,eAAO,MAAM,kCAAkC,MAAM,CAAC;AAEtD,qBAAa,kCAAkC;IAC7C,IAAI,SAAU;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAAC;IAC5C,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,MAAM,UAAS;gBAEH,QAAQ,EAAE,kBAAkB;IAYxC,SAAS,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAG9B;AAED,qBAAa,4CAA4C;IACvD,IAAI,SAAU;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAAC;IAC5C,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,OAAO,EAAE,kCAAkC,EAAE,CAAC;gBAG5C,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,kBAAkB,EAC5B,OAAO,EAAE,kCAAkC,EAAE;CAQhD;AAED;;;;GAIG;AACH,eAAO,MAAM,yCAAyC,UAC7C,kBAAkB,KACxB,OACsE,CAAC;AAE1E;;;GAGG;AACH,eAAO,MAAM,+CAA+C,UACnD,kBAAkB,KACxB,OAEwC,CAAC;AAE5C,qBAAa,gBAAgB;IAC3B,QAAQ,CAAC,gBAAgB,EAAE,6BAA6B,CAAC;IACzD;;OAEG;IACH,iBAAiB,SAAU;IAC3B,QAAQ,UAAS;IACjB,MAAM,UAAS;IACf,WAAW,wBAAgC;IAC3C,yBAAyB,EAAE,kCAAkC,GAAG,SAAS,CAAC;IAG1E,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwC;IACrE,wBAAwB,EAAE,8BAA8B,CAAC;IACzD,QAAQ,CAAC,WAAW,cAAwB;IAC5C,UAAU,SAAM;IAChB,aAAa,EAAE,kCAAkC,EAAE,CAAM;IACzD,2BAA2B,UAAS;IACpC,iBAAiB,UAAS;gBAEd,gBAAgB,EAAE,6BAA6B;IA+D3D,IAAI,mCAAmC,IACnC,4CAA4C,GAC5C,SAAS,CAwBZ;IAED,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAgB5C,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAI/B,aAAa,IAAI,IAAI;IAKrB,eAAe,IAAI,IAAI;IASvB,SAAS,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAI7B,cAAc,CAAC,GAAG,EAAE,qBAAqB,GAAG,IAAI;IAIhD,qBAAqB,IAAI,IAAI;IAI7B,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIhC,WAAW,IAAI,IAAI;IAMnB,MAAM,IAAI,IAAI;IAiCd,8BAA8B,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAGnD"}
@@ -14,9 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { action, makeObservable, observable, computed } from 'mobx';
17
- import { FuzzySearchEngine } from '@finos/legend-art';
18
- import { guaranteeNonEmptyString, uuid, isNonNullable, ActionState, } from '@finos/legend-shared';
19
- import { TextSearchAdvancedConfigState } from './shared/TextSearchAdvancedConfigState.js';
17
+ import { guaranteeNonEmptyString, uuid, isNonNullable, ActionState, FuzzySearchEngine, } from '@finos/legend-shared';
18
+ import { FuzzySearchAdvancedConfigState } from './shared/FuzzySearchAdvancedConfigState.js';
20
19
  export var VIRTUAL_ASSISTANT_TAB;
21
20
  (function (VIRTUAL_ASSISTANT_TAB) {
22
21
  VIRTUAL_ASSISTANT_TAB["SEARCH"] = "SEARCH";
@@ -143,7 +142,7 @@ export class AssistantService {
143
142
  // See https://fusejs.io/examples.html#extended-search
144
143
  useExtendedSearch: true,
145
144
  });
146
- this.searchConfigurationState = new TextSearchAdvancedConfigState(() => {
145
+ this.searchConfigurationState = new FuzzySearchAdvancedConfigState(() => {
147
146
  this.search();
148
147
  });
149
148
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AssistantService.js","sourceRoot":"","sources":["../../src/stores/AssistantService.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AssistantService.js","sourceRoot":"","sources":["../../src/stores/AssistantService.ts"],"names":[],"mappings":"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"}
@@ -15,12 +15,13 @@
15
15
  */
16
16
  import type { LegendApplicationPluginManager } from '../application/LegendApplicationPluginManager.js';
17
17
  import type { ColorTheme } from './LayoutService.js';
18
- import { LegendApplicationPlugin } from './LegendApplicationPlugin.js';
18
+ import { LegendApplicationPlugin, type LegendApplicationSetup } from './LegendApplicationPlugin.js';
19
19
  import { type SettingConfigurationEntry } from './SettingService.js';
20
20
  export declare class Core_LegendApplicationPlugin extends LegendApplicationPlugin {
21
21
  static NAME: string;
22
22
  constructor();
23
23
  install(pluginManager: LegendApplicationPluginManager<LegendApplicationPlugin>): void;
24
+ getExtraApplicationSetups(): LegendApplicationSetup[];
24
25
  getExtraColorThemes(): ColorTheme[];
25
26
  getExtraSettingConfigurationEntries(): SettingConfigurationEntry[];
26
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Core_LegendApplicationPlugin.d.ts","sourceRoot":"","sources":["../../src/stores/Core_LegendApplicationPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kDAAkD,CAAC;AAMvG,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAEL,KAAK,yBAAyB,EAC/B,MAAM,qBAAqB,CAAC;AAE7B,qBAAa,4BAA6B,SAAQ,uBAAuB;IACvE,MAAM,CAAC,IAAI,SAA4C;;IAMvD,OAAO,CACL,aAAa,EAAE,8BAA8B,CAAC,uBAAuB,CAAC,GACrE,IAAI;IAIE,mBAAmB,IAAI,UAAU,EAAE;IAInC,mCAAmC,IAAI,yBAAyB,EAAE;CAK5E"}
1
+ {"version":3,"file":"Core_LegendApplicationPlugin.d.ts","sourceRoot":"","sources":["../../src/stores/Core_LegendApplicationPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kDAAkD,CAAC;AAMvG,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EACL,uBAAuB,EACvB,KAAK,sBAAsB,EAC5B,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAEL,KAAK,yBAAyB,EAC/B,MAAM,qBAAqB,CAAC;AA6E7B,qBAAa,4BAA6B,SAAQ,uBAAuB;IACvE,MAAM,CAAC,IAAI,SAA4C;;IAMvD,OAAO,CACL,aAAa,EAAE,8BAA8B,CAAC,uBAAuB,CAAC,GACrE,IAAI;IAIE,yBAAyB,IAAI,sBAAsB,EAAE;IAqBrD,mBAAmB,IAAI,UAAU,EAAE;IAInC,mCAAmC,IAAI,yBAAyB,EAAE;CAK5E"}