@finos/legend-application-studio 28.19.7 → 28.19.8

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.
@@ -40,7 +40,7 @@ export var AP_GROUP_MODAL_ERRORS;
40
40
  AP_GROUP_MODAL_ERRORS["AP_DESCRIPTION_EMPTY"] = "Access Point Description is empty";
41
41
  })(AP_GROUP_MODAL_ERRORS || (AP_GROUP_MODAL_ERRORS = {}));
42
42
  export const AP_EMPTY_DESC_WARNING = 'Describe the data this access point produces';
43
- const NewAccessPointAccessPOint = observer((props) => {
43
+ const NewAccessPointAccessPoint = observer((props) => {
44
44
  const { dataProductEditorState: dataProductEditorState } = props;
45
45
  const accessPointInputRef = useRef(null);
46
46
  const [id, setId] = useState(undefined);
@@ -331,7 +331,7 @@ const AccessPointGroupSection = observer((props) => {
331
331
  padding: '0.25rem',
332
332
  } })) : (_jsxs("div", { onClick: handleDescriptionEdit, title: "Click to edit group description", className: "access-point-editor__description-container", children: [groupState.value.description ? (_jsx(HoverTextArea, { text: groupState.value.description, handleMouseOver: handleMouseOverDescription, handleMouseOut: handleMouseOutDescription, className: "access-point-editor__group-container__description" })) : (_jsxs("div", { className: "access-point-editor__group-container__description--warning", onMouseOver: handleMouseOverDescription, onMouseOut: handleMouseOutDescription, children: [_jsx(WarningIcon, {}), "Describe this access point group to clarify what users are requesting access to. Entitlements are provisioned at the group level."] })), isHoveringDescription && hoverIcon()] })) }), _jsxs(PanelHeader, { className: "panel__header--access-point", children: [_jsx("div", { className: "panel__header__title", children: "Access Points" }), _jsx(PanelHeaderActions, { children: _jsx(PanelHeaderActionItem, { className: "panel__header__action", onClick: openNewModal, disabled: isReadOnly, title: "Create new access point", children: _jsx(PlusIcon, {}) }) })] }), groupState.accessPointStates
333
333
  .filter(filterByType(LakehouseAccessPointState))
334
- .map((apState) => (_jsx(LakehouseDataProductAcccessPointEditor, { isReadOnly: isReadOnly, accessPointState: apState }, apState.accessPoint.id))), productEditorState.accessPointModal && (_jsx(NewAccessPointAccessPOint, { dataProductEditorState: productEditorState }))] }));
334
+ .map((apState) => (_jsx(LakehouseDataProductAcccessPointEditor, { isReadOnly: isReadOnly, accessPointState: apState }, apState.accessPoint.id))), productEditorState.accessPointModal && (_jsx(NewAccessPointAccessPoint, { dataProductEditorState: productEditorState }))] }));
335
335
  });
336
336
  export const DataProductEditor = observer(() => {
337
337
  const editorStore = useEditorStore();
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-application-studio v28.19.7
1
+ /** @license @finos/legend-application-studio v28.19.8
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-studio",
3
- "version": "28.19.7",
3
+ "version": "28.19.8",
4
4
  "description": "Legend Studio application core",
5
5
  "keywords": [
6
6
  "legend",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-studio",
3
- "version": "28.19.7",
3
+ "version": "28.19.8",
4
4
  "description": "Legend Studio application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -47,13 +47,13 @@
47
47
  "dependencies": {
48
48
  "@finos/legend-application": "16.0.55",
49
49
  "@finos/legend-art": "7.1.109",
50
- "@finos/legend-code-editor": "2.0.92",
51
- "@finos/legend-data-cube": "0.2.26",
52
- "@finos/legend-graph": "32.1.50",
53
- "@finos/legend-lego": "2.0.98",
54
- "@finos/legend-query-builder": "4.17.7",
50
+ "@finos/legend-code-editor": "2.0.93",
51
+ "@finos/legend-data-cube": "0.2.27",
52
+ "@finos/legend-graph": "32.1.51",
53
+ "@finos/legend-lego": "2.0.99",
54
+ "@finos/legend-query-builder": "4.17.8",
55
55
  "@finos/legend-server-depot": "6.0.95",
56
- "@finos/legend-server-lakehouse": "0.0.9",
56
+ "@finos/legend-server-lakehouse": "0.0.10",
57
57
  "@finos/legend-server-sdlc": "5.3.61",
58
58
  "@finos/legend-server-showcase": "0.2.57",
59
59
  "@finos/legend-shared": "11.0.16",
@@ -99,7 +99,7 @@ export enum AP_GROUP_MODAL_ERRORS {
99
99
  export const AP_EMPTY_DESC_WARNING =
100
100
  'Describe the data this access point produces';
101
101
 
102
- const NewAccessPointAccessPOint = observer(
102
+ const NewAccessPointAccessPoint = observer(
103
103
  (props: { dataProductEditorState: DataProductEditorState }) => {
104
104
  const { dataProductEditorState: dataProductEditorState } = props;
105
105
  const accessPointInputRef = useRef<HTMLInputElement>(null);
@@ -891,7 +891,7 @@ const AccessPointGroupSection = observer(
891
891
  />
892
892
  ))}
893
893
  {productEditorState.accessPointModal && (
894
- <NewAccessPointAccessPOint
894
+ <NewAccessPointAccessPoint
895
895
  dataProductEditorState={productEditorState}
896
896
  />
897
897
  )}