@gooddata/sdk-ui-kit 11.43.0-alpha.5 → 11.44.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,6 +21,12 @@ export interface IUiGeneralAccessRadioProps {
21
21
  * author pick labels and the workspace-wide permission level.
22
22
  */
23
23
  workspaceControls?: ReactNode;
24
+ /**
25
+ * Workspace-wide permission level, used to keep the `All workspace members`
26
+ * description in sync with the level picked in `workspaceControls`
27
+ * (`view` → "can view", `share` → "can view and share"). Defaults to `view`.
28
+ */
29
+ workspaceLevel?: "VIEW" | "SHARE";
24
30
  /** Test id forwarded to the root element. */
25
31
  dataTestId?: string;
26
32
  }
@@ -31,5 +37,5 @@ export interface IUiGeneralAccessRadioProps {
31
37
  *
32
38
  * @internal
33
39
  */
34
- export declare function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, dataTestId }: IUiGeneralAccessRadioProps): import("react/jsx-runtime").JSX.Element;
40
+ export declare function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, workspaceLevel, dataTestId }: IUiGeneralAccessRadioProps): import("react/jsx-runtime").JSX.Element;
35
41
  //# sourceMappingURL=UiGeneralAccessRadio.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"UiGeneralAccessRadio.d.ts","sourceRoot":"","sources":["../../../src/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAS,MAAM,OAAO,CAAC;AAU9C;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG,WAAW,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,uBAAuB;IACvB,KAAK,EAAE,kBAAkB,CAAC;IAC1B,oDAAoD;IACpD,QAAQ,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAC9C,0EAAwE;IACxE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B,6CAA6C;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,EACjC,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,iBAAiB,EACjB,UAAU,EACb,EAAE,0BAA0B,2CA+B5B"}
1
+ {"version":3,"file":"UiGeneralAccessRadio.d.ts","sourceRoot":"","sources":["../../../src/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAS,MAAM,OAAO,CAAC;AAU9C;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG,WAAW,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,uBAAuB;IACvB,KAAK,EAAE,kBAAkB,CAAC;IAC1B,oDAAoD;IACpD,QAAQ,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAC9C,0EAAwE;IACxE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAClC,6CAA6C;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,EACjC,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,iBAAiB,EACjB,cAAuB,EACvB,UAAU,EACb,EAAE,0BAA0B,2CAmC5B"}
@@ -13,10 +13,12 @@ const { b } = bem("gd-ui-kit-general-access-radio");
13
13
  *
14
14
  * @internal
15
15
  */
16
- export function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, dataTestId, }) {
16
+ export function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, workspaceLevel = "VIEW", dataTestId, }) {
17
17
  const intl = useIntl();
18
18
  const name = useId();
19
19
  return (_jsxs("div", { className: b(), "data-testid": dataTestId, role: "radiogroup", "aria-label": intl.formatMessage(olpGeneralAccessMessages.groupLabel), children: [
20
- _jsx(UiRadioRow, { name: name, value: "RESTRICTED", checked: value === "RESTRICTED", disabled: disabled, title: intl.formatMessage(olpGeneralAccessMessages.restrictedTitle), description: intl.formatMessage(olpGeneralAccessMessages.restrictedDescription), onChange: () => onChange("RESTRICTED") }), _jsx(UiRadioRow, { name: name, value: "WORKSPACE", checked: value === "WORKSPACE", disabled: disabled, title: intl.formatMessage(olpGeneralAccessMessages.workspaceTitle), description: intl.formatMessage(olpGeneralAccessMessages.workspaceDescription), onChange: () => onChange("WORKSPACE"), trailing: workspaceControls })
20
+ _jsx(UiRadioRow, { name: name, value: "RESTRICTED", checked: value === "RESTRICTED", disabled: disabled, title: intl.formatMessage(olpGeneralAccessMessages.restrictedTitle), description: intl.formatMessage(olpGeneralAccessMessages.restrictedDescription), onChange: () => onChange("RESTRICTED") }), _jsx(UiRadioRow, { name: name, value: "WORKSPACE", checked: value === "WORKSPACE", disabled: disabled, title: intl.formatMessage(olpGeneralAccessMessages.workspaceTitle), description: intl.formatMessage(workspaceLevel === "SHARE"
21
+ ? olpGeneralAccessMessages.workspaceDescriptionShare
22
+ : olpGeneralAccessMessages.workspaceDescription), onChange: () => onChange("WORKSPACE"), trailing: workspaceControls })
21
23
  ] }));
22
24
  }
@@ -50,6 +50,11 @@ export interface IUiObjectShareDialogCardProps {
50
50
  * and permission level.
51
51
  */
52
52
  workspaceControls?: ReactNode;
53
+ /**
54
+ * Workspace-wide permission level, so the "All workspace members" description
55
+ * matches the level picked in `workspaceControls`. Defaults to `view`.
56
+ */
57
+ workspaceLevel?: "VIEW" | "SHARE";
53
58
  /**
54
59
  * Optional error notice. When set, it replaces the grantee list and
55
60
  * general-access sections (which can't reflect a real policy on a failed
@@ -68,5 +73,5 @@ export interface IUiObjectShareDialogCardProps {
68
73
  *
69
74
  * @internal
70
75
  */
71
- export declare function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, error, dataTestId }: IUiObjectShareDialogCardProps): import("react/jsx-runtime").JSX.Element;
76
+ export declare function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, workspaceLevel, error, dataTestId }: IUiObjectShareDialogCardProps): import("react/jsx-runtime").JSX.Element;
72
77
  //# sourceMappingURL=UiObjectShareDialogCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"UiObjectShareDialogCard.d.ts","sourceRoot":"","sources":["../../../src/@ui/UiObjectShareDialog/UiObjectShareDialogCard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAOvC,OAAO,EACH,KAAK,kBAAkB,EAE1B,MAAM,iDAAiD,CAAC;AACzD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAQ/E;;;;;;GAMG;AACH,MAAM,WAAW,2BAA2B;IACxC,+DAA6D;IAC7D,EAAE,EAAE,MAAM,CAAC;IACX,sBAAsB;IACtB,IAAI,EAAE,iBAAiB,CAAC;IACxB,oBAAoB;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,8BAA8B;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wEAAwE;IACxE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wFAAsF;IACtF,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C,6EAA2E;IAC3E,WAAW,EAAE,MAAM,CAAC;IACpB,iFAAiF;IACjF,OAAO,EAAE,MAAM,IAAI,CAAC;IAEpB,0EAA0E;IAC1E,QAAQ,EAAE,2BAA2B,EAAE,CAAC;IACxC,4EAA4E;IAC5E,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,sFAAoF;IACpF,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,sCAAsC;IACtC,aAAa,EAAE,kBAAkB,CAAC;IAClC,mEAAmE;IACnE,qBAAqB,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAC3D,yFAAuF;IACvF,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAE9B;;;;;OAKG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,6CAA6C;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CAAC,EACpC,WAAW,EACX,OAAO,EACP,QAAQ,EACR,UAAU,EACV,aAAa,EACb,aAAa,EACb,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,KAAK,EACL,UAAU,EACb,EAAE,6BAA6B,2CA8D/B"}
1
+ {"version":3,"file":"UiObjectShareDialogCard.d.ts","sourceRoot":"","sources":["../../../src/@ui/UiObjectShareDialog/UiObjectShareDialogCard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAOvC,OAAO,EACH,KAAK,kBAAkB,EAE1B,MAAM,iDAAiD,CAAC;AACzD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAQ/E;;;;;;GAMG;AACH,MAAM,WAAW,2BAA2B;IACxC,+DAA6D;IAC7D,EAAE,EAAE,MAAM,CAAC;IACX,sBAAsB;IACtB,IAAI,EAAE,iBAAiB,CAAC;IACxB,oBAAoB;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,8BAA8B;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wEAAwE;IACxE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wFAAsF;IACtF,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C,6EAA2E;IAC3E,WAAW,EAAE,MAAM,CAAC;IACpB,iFAAiF;IACjF,OAAO,EAAE,MAAM,IAAI,CAAC;IAEpB,0EAA0E;IAC1E,QAAQ,EAAE,2BAA2B,EAAE,CAAC;IACxC,4EAA4E;IAC5E,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,sFAAoF;IACpF,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,sCAAsC;IACtC,aAAa,EAAE,kBAAkB,CAAC;IAClC,mEAAmE;IACnE,qBAAqB,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAC3D,yFAAuF;IACvF,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAElC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,6CAA6C;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CAAC,EACpC,WAAW,EACX,OAAO,EACP,QAAQ,EACR,UAAU,EACV,aAAa,EACb,aAAa,EACb,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,cAAc,EACd,KAAK,EACL,UAAU,EACb,EAAE,6BAA6B,2CA+D/B"}
@@ -17,12 +17,12 @@ const { b, e } = bem("gd-ui-kit-object-share-dialog");
17
17
  *
18
18
  * @internal
19
19
  */
20
- export function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, error, dataTestId, }) {
20
+ export function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, workspaceLevel, error, dataTestId, }) {
21
21
  const intl = useIntl();
22
22
  const dialogTitle = intl.formatMessage(olpObjectShareDialogMessages.title, { title: objectTitle });
23
23
  return (_jsxs("div", { className: b(), "data-testid": dataTestId, children: [
24
24
  _jsx(UiDialogHeader, { title: dialogTitle, onClose: onClose }), error ? (_jsx("div", { className: e("error"), role: "alert", children: error })) : (_jsxs(_Fragment, { children: [
25
- _jsx(UiSectionHeading, { label: intl.formatMessage(olpObjectShareDialogMessages.sharedWith), action: _jsx(UiButton, { label: intl.formatMessage(olpObjectShareDialogMessages.add), variant: "popout", size: "small", iconBefore: "plus", isDisabled: isAddDisabled, onClick: onAddClick }) }), _jsx("div", { className: e("grantees"), children: grantees.map((grantee) => (_jsx(UiGranteeRow, { kind: grantee.kind, name: grantee.name, email: grantee.email, isOwner: grantee.isOwner, isPending: grantee.isPending, controls: grantee.controls }, grantee.id))) }), _jsx(UiSectionHeading, { label: intl.formatMessage(olpObjectShareDialogMessages.generalAccess) }), _jsx(UiGeneralAccessRadio, { value: generalAccess, onChange: onGeneralAccessChange, disabled: isGeneralAccessDisabled, workspaceControls: workspaceControls })
25
+ _jsx(UiSectionHeading, { label: intl.formatMessage(olpObjectShareDialogMessages.sharedWith), action: _jsx(UiButton, { label: intl.formatMessage(olpObjectShareDialogMessages.add), variant: "popout", size: "small", iconBefore: "plus", isDisabled: isAddDisabled, onClick: onAddClick }) }), _jsx("div", { className: e("grantees"), children: grantees.map((grantee) => (_jsx(UiGranteeRow, { kind: grantee.kind, name: grantee.name, email: grantee.email, isOwner: grantee.isOwner, isPending: grantee.isPending, controls: grantee.controls }, grantee.id))) }), _jsx(UiSectionHeading, { label: intl.formatMessage(olpObjectShareDialogMessages.generalAccess) }), _jsx(UiGeneralAccessRadio, { value: generalAccess, onChange: onGeneralAccessChange, disabled: isGeneralAccessDisabled, workspaceControls: workspaceControls, workspaceLevel: workspaceLevel })
26
26
  ] })), _jsx(UiDialogFooter, { divider: true, children: _jsx(UiButton, { label: intl.formatMessage(commonDialogMessages.close), variant: "secondary", size: "medium", onClick: onClose }) })
27
27
  ] }));
28
28
  }
package/esm/locales.d.ts CHANGED
@@ -150,6 +150,9 @@ export declare const olpGeneralAccessMessages: {
150
150
  workspaceDescription: {
151
151
  id: string;
152
152
  };
153
+ workspaceDescriptionShare: {
154
+ id: string;
155
+ };
153
156
  };
154
157
  export declare const olpLabelMessages: {
155
158
  suffixPrimary: {
@@ -1 +1 @@
1
- {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../src/locales.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,oBAAoB;;;;CAE/B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;CAMpC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;CAG1C,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;CAG/B,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;CAK1C,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB5C,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;CAI/B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;CAGnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;CAEhC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;CAKvC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;CAMtC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;CAMnC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;CAM3B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAehC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAMjC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;CAMvC,CAAC"}
1
+ {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../src/locales.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,oBAAoB;;;;CAE/B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;CAMpC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;CAG1C,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;CAG/B,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;CAK1C,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB5C,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;CAI/B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;CAGnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;CAEhC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;CAKvC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;CAMtC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;CAOnC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;CAM3B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAehC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAMjC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;CAMvC,CAAC"}
package/esm/locales.js CHANGED
@@ -73,6 +73,7 @@ export const olpGeneralAccessMessages = defineMessages({
73
73
  restrictedDescription: { id: "shareDialog.olp.generalAccess.restricted.description" },
74
74
  workspaceTitle: { id: "shareDialog.olp.generalAccess.workspace.title" },
75
75
  workspaceDescription: { id: "shareDialog.olp.generalAccess.workspace.description" },
76
+ workspaceDescriptionShare: { id: "shareDialog.olp.generalAccess.workspace.description.share" },
76
77
  });
77
78
  export const olpLabelMessages = defineMessages({
78
79
  suffixPrimary: { id: "shareDialog.olp.label.suffix.primary" },
@@ -7290,6 +7290,12 @@ export declare interface IUiGeneralAccessRadioProps {
7290
7290
  * author pick labels and the workspace-wide permission level.
7291
7291
  */
7292
7292
  workspaceControls?: ReactNode;
7293
+ /**
7294
+ * Workspace-wide permission level, used to keep the `All workspace members`
7295
+ * description in sync with the level picked in `workspaceControls`
7296
+ * (`view` → "can view", `share` → "can view and share"). Defaults to `view`.
7297
+ */
7298
+ workspaceLevel?: "VIEW" | "SHARE";
7293
7299
  /** Test id forwarded to the root element. */
7294
7300
  dataTestId?: string;
7295
7301
  }
@@ -8032,6 +8038,11 @@ export declare interface IUiObjectShareDialogCardProps {
8032
8038
  * and permission level.
8033
8039
  */
8034
8040
  workspaceControls?: ReactNode;
8041
+ /**
8042
+ * Workspace-wide permission level, so the "All workspace members" description
8043
+ * matches the level picked in `workspaceControls`. Defaults to `view`.
8044
+ */
8045
+ workspaceLevel?: "VIEW" | "SHARE";
8035
8046
  /**
8036
8047
  * Optional error notice. When set, it replaces the grantee list and
8037
8048
  * general-access sections (which can't reflect a real policy on a failed
@@ -10640,7 +10651,7 @@ export declare function UiFocusTrap({ root, children, focusCheckFn }: {
10640
10651
  *
10641
10652
  * @internal
10642
10653
  */
10643
- export declare function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, dataTestId }: IUiGeneralAccessRadioProps): JSX.Element;
10654
+ export declare function UiGeneralAccessRadio({ value, onChange, disabled, workspaceControls, workspaceLevel, dataTestId }: IUiGeneralAccessRadioProps): JSX.Element;
10644
10655
 
10645
10656
  /**
10646
10657
  * Sectioned async grantee picker — specialization of `UiAutocomplete` for the
@@ -10825,7 +10836,7 @@ export declare function UiObjectShareDialog({ isOpen, ...cardProps }: IUiObjectS
10825
10836
  *
10826
10837
  * @internal
10827
10838
  */
10828
- export declare function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, error, dataTestId }: IUiObjectShareDialogCardProps): JSX.Element;
10839
+ export declare function UiObjectShareDialogCard({ objectTitle, onClose, grantees, onAddClick, isAddDisabled, generalAccess, onGeneralAccessChange, isGeneralAccessDisabled, workspaceControls, workspaceLevel, error, dataTestId }: IUiObjectShareDialogCardProps): JSX.Element;
10829
10840
 
10830
10841
  /**
10831
10842
  * @internal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-kit",
3
- "version": "11.43.0-alpha.5",
3
+ "version": "11.44.0-alpha.0",
4
4
  "description": "GoodData SDK - UI Building Components",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -74,11 +74,11 @@
74
74
  "tslib": "2.8.1",
75
75
  "unified": "^11.0.5",
76
76
  "uuid": "11.1.1",
77
- "@gooddata/sdk-backend-spi": "11.43.0-alpha.5",
78
- "@gooddata/sdk-ui": "11.43.0-alpha.5",
79
- "@gooddata/sdk-model": "11.43.0-alpha.5",
80
- "@gooddata/sdk-ui-theme-provider": "11.43.0-alpha.5",
81
- "@gooddata/util": "11.43.0-alpha.5"
77
+ "@gooddata/sdk-backend-spi": "11.44.0-alpha.0",
78
+ "@gooddata/sdk-model": "11.44.0-alpha.0",
79
+ "@gooddata/sdk-ui": "11.44.0-alpha.0",
80
+ "@gooddata/util": "11.44.0-alpha.0",
81
+ "@gooddata/sdk-ui-theme-provider": "11.44.0-alpha.0"
82
82
  },
83
83
  "devDependencies": {
84
84
  "@microsoft/api-documenter": "^7.17.0",
@@ -127,11 +127,11 @@
127
127
  "typescript": "5.9.3",
128
128
  "vitest": "4.1.8",
129
129
  "vitest-dom": "0.1.1",
130
- "@gooddata/eslint-config": "11.43.0-alpha.5",
131
- "@gooddata/oxlint-config": "11.43.0-alpha.5",
132
- "@gooddata/reference-workspace": "11.43.0-alpha.5",
133
- "@gooddata/stylelint-config": "11.43.0-alpha.5",
134
- "@gooddata/sdk-backend-mockingbird": "11.43.0-alpha.5"
130
+ "@gooddata/oxlint-config": "11.44.0-alpha.0",
131
+ "@gooddata/sdk-backend-mockingbird": "11.44.0-alpha.0",
132
+ "@gooddata/stylelint-config": "11.44.0-alpha.0",
133
+ "@gooddata/eslint-config": "11.44.0-alpha.0",
134
+ "@gooddata/reference-workspace": "11.44.0-alpha.0"
135
135
  },
136
136
  "peerDependencies": {
137
137
  "react": "^18.0.0 || ^19.0.0",