@gooddata/sdk-ui-catalog 11.42.0-alpha.3 → 11.42.0-alpha.4

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.
@@ -4,7 +4,7 @@ import type { OpenHandlerEvent } from "./catalogDetail/types.js";
4
4
  import { type ICatalogItemRef } from "./catalogItem/types.js";
5
5
  import type { CatalogCreateObjectType } from "./objectType/types.js";
6
6
  /**
7
- * @internal
7
+ * @public
8
8
  */
9
9
  export interface IAnalyticsCatalogProps {
10
10
  /**
@@ -45,7 +45,7 @@ export interface IAnalyticsCatalogProps {
45
45
  onCreateObject?: (objectType: CatalogCreateObjectType) => void;
46
46
  }
47
47
  /**
48
- * @internal
48
+ * @public
49
49
  */
50
50
  export declare function AnalyticsCatalog(props: IAnalyticsCatalogProps): import("react/jsx-runtime").JSX.Element;
51
51
  //# sourceMappingURL=AnalyticsCatalog.d.ts.map
@@ -12,7 +12,7 @@ import { usePermissionsQuery } from "./permission/usePermissionsQuery.js";
12
12
  import { QualityProvider } from "./quality/QualityContext.js";
13
13
  import { FullTextSearchProvider } from "./search/FullTextSearchContext.js";
14
14
  /**
15
- * @internal
15
+ * @public
16
16
  */
17
17
  export function AnalyticsCatalog(props) {
18
18
  const workspace = useWorkspaceStrict(props.workspace);
@@ -5,7 +5,7 @@ import { type ICatalogDetailContentProps } from "./catalogDetail/CatalogDetailCo
5
5
  import type { OpenHandlerEvent } from "./catalogDetail/types.js";
6
6
  import { type ObjectType } from "./objectType/types.js";
7
7
  /**
8
- * @internal
8
+ * @public
9
9
  */
10
10
  export interface IAnalyticsCatalogDetailProps extends Omit<ICatalogDetailProps, "objectId" | "objectType"> {
11
11
  /**
@@ -30,11 +30,11 @@ export interface IAnalyticsCatalogDetailProps extends Omit<ICatalogDetailProps,
30
30
  locale?: string;
31
31
  }
32
32
  /**
33
- * @internal
33
+ * @public
34
34
  */
35
35
  export declare function AnalyticsCatalogDetail({ backend, workspace, locale, ...restProps }: IAnalyticsCatalogDetailProps): import("react/jsx-runtime").JSX.Element;
36
36
  /**
37
- * @internal
37
+ * @public
38
38
  */
39
39
  export interface IAnalyticsCatalogDetailContentProps extends Omit<ICatalogDetailContentProps, "objectId" | "objectType"> {
40
40
  /**
@@ -63,7 +63,7 @@ export interface IAnalyticsCatalogDetailContentProps extends Omit<ICatalogDetail
63
63
  onOpenClick?: (e: MouseEvent, linkClickEvent: OpenHandlerEvent) => void;
64
64
  }
65
65
  /**
66
- * @internal
66
+ * @public
67
67
  */
68
68
  export declare function AnalyticsCatalogDetailContent({ backend, workspace, locale, ...restProps }: IAnalyticsCatalogDetailContentProps): import("react/jsx-runtime").JSX.Element;
69
69
  //# sourceMappingURL=AnalyticsCatalogDetail.d.ts.map
@@ -12,13 +12,13 @@ import { PermissionsProvider } from "./permission/PermissionsContext.js";
12
12
  import { usePermissionsQuery } from "./permission/usePermissionsQuery.js";
13
13
  import { QualityProvider } from "./quality/QualityContext.js";
14
14
  /**
15
- * @internal
15
+ * @public
16
16
  */
17
17
  export function AnalyticsCatalogDetail({ backend, workspace, locale, ...restProps }) {
18
18
  return (_jsx(Providers, { backend: backend, workspace: workspace, locale: locale, children: _jsx(CatalogDetail, { ...restProps }) }));
19
19
  }
20
20
  /**
21
- * @internal
21
+ * @public
22
22
  */
23
23
  export function AnalyticsCatalogDetailContent({ backend, workspace, locale, ...restProps }) {
24
24
  return (_jsx(Providers, { backend: backend, workspace: workspace, locale: locale, children: _jsx(CatalogDetailContent, { ...restProps }) }));
@@ -1,7 +1,7 @@
1
1
  import { type ReactNode } from "react";
2
2
  /**
3
3
  * Props for {@link AnalyticsCatalogFilter}.
4
- * @internal
4
+ * @public
5
5
  */
6
6
  export interface IAnalyticsCatalogFilterProps<T> {
7
7
  /**
@@ -53,7 +53,7 @@ export interface IAnalyticsCatalogFilterProps<T> {
53
53
  * Public wrapper of the internal static filter used in Analytics Catalog.
54
54
  * This component provides a stable, documented API surface for reuse.
55
55
  *
56
- * @internal
56
+ * @public
57
57
  */
58
58
  export declare function AnalyticsCatalogFilter<T>(props: IAnalyticsCatalogFilterProps<T>): import("react/jsx-runtime").JSX.Element;
59
59
  //# sourceMappingURL=AnalyticsCatalogFilter.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- // (C) 2025 GoodData Corporation
2
+ // (C) 2025-2026 GoodData Corporation
3
3
  import {} from "react";
4
4
  import { StaticFilter } from "./filter/StaticFilter.js";
5
5
  /**
6
6
  * Public wrapper of the internal static filter used in Analytics Catalog.
7
7
  * This component provides a stable, documented API surface for reuse.
8
8
  *
9
- * @internal
9
+ * @public
10
10
  */
11
11
  export function AnalyticsCatalogFilter(props) {
12
12
  return _jsx(StaticFilter, { ...props });
@@ -1,6 +1,6 @@
1
1
  import { type ICatalogDetailContentProps } from "./CatalogDetailContent.js";
2
2
  /**
3
- * @internal
3
+ * @public
4
4
  */
5
5
  export interface ICatalogDetailProps extends ICatalogDetailContentProps {
6
6
  /**
@@ -3,7 +3,7 @@ import { type ICatalogItem, type ICatalogItemRef } from "../catalogItem/types.js
3
3
  import { type ObjectType } from "../objectType/types.js";
4
4
  import type { OpenHandlerEvent } from "./types.js";
5
5
  /**
6
- * @internal
6
+ * @public
7
7
  */
8
8
  export interface ICatalogDetailContentProps {
9
9
  /**
@@ -1,6 +1,6 @@
1
1
  import type { ICatalogItem } from "../catalogItem/types.js";
2
2
  /**
3
- * @internal
3
+ * @public
4
4
  */
5
5
  export type OpenHandlerEvent = {
6
6
  /**
@@ -21,12 +21,12 @@ export type OpenHandlerEvent = {
21
21
  preventDefault: () => void;
22
22
  };
23
23
  /**
24
- * @internal
24
+ * @public
25
25
  */
26
26
  export type EditHandlerEvent = OpenHandlerEvent;
27
27
  /**
28
28
  * Generic detail drawer action definition.
29
- * @internal
29
+ * @public
30
30
  */
31
31
  export interface ICatalogDetailAction {
32
32
  id: string;
@@ -3,14 +3,14 @@ import type { CertificationStatus, IDataSetMetadataObject, IParameterDefinition,
3
3
  import type { ObjectType } from "../objectType/types.js";
4
4
  /**
5
5
  * Catalog item reference.
6
- * @internal
6
+ * @public
7
7
  */
8
8
  export interface ICatalogItemRef extends IdentifierRef {
9
9
  type: ObjectType;
10
10
  }
11
11
  /**
12
12
  * Fields common to every catalog item variant.
13
- * @internal
13
+ * @public
14
14
  */
15
15
  export interface ICatalogItemBase extends ICatalogItemRef {
16
16
  title: string;
@@ -35,19 +35,19 @@ export interface ICatalogItemBase extends ICatalogItemRef {
35
35
  *
36
36
  * Narrow by `item.type` before accessing type-specific fields such as
37
37
  * `visualizationType`, `dataSet`, `definition`, `format`, or `metricType`.
38
- * @internal
38
+ * @public
39
39
  */
40
40
  export type ICatalogItem = ICatalogItemDashboard | ICatalogItemInsight | ICatalogItemMeasure | ICatalogItemParameter | ICatalogItemAttribute | ICatalogItemFact | ICatalogItemDataSet;
41
41
  /**
42
42
  * Catalog item for analytical dashboards.
43
- * @internal
43
+ * @public
44
44
  */
45
45
  export interface ICatalogItemDashboard extends ICatalogItemBase {
46
46
  type: "analyticalDashboard";
47
47
  }
48
48
  /**
49
49
  * Catalog item for insights (visualizations).
50
- * @internal
50
+ * @public
51
51
  */
52
52
  export interface ICatalogItemInsight extends ICatalogItemBase {
53
53
  type: "insight";
@@ -55,12 +55,12 @@ export interface ICatalogItemInsight extends ICatalogItemBase {
55
55
  }
56
56
  /**
57
57
  * Visualization type
58
- * @internal
58
+ * @public
59
59
  */
60
60
  export type VisualizationType = "scatter" | "donut" | "area" | "table" | "headline" | "column" | "line" | "treemap" | "pyramid" | "funnel" | "heatmap" | "bubble" | "pie" | "bar" | "combo" | "bullet" | "waterfall" | "dependencywheel" | "sankey" | "pushpin" | "repeater";
61
61
  /**
62
62
  * Catalog item for measures (metrics).
63
- * @internal
63
+ * @public
64
64
  */
65
65
  export interface ICatalogItemMeasure extends ICatalogItemBase {
66
66
  type: "measure";
@@ -70,7 +70,7 @@ export interface ICatalogItemMeasure extends ICatalogItemBase {
70
70
  }
71
71
  /**
72
72
  * Catalog item for parameters.
73
- * @internal
73
+ * @public
74
74
  */
75
75
  export interface ICatalogItemParameter extends ICatalogItemBase {
76
76
  type: "parameter";
@@ -78,7 +78,7 @@ export interface ICatalogItemParameter extends ICatalogItemBase {
78
78
  }
79
79
  /**
80
80
  * Catalog item for attributes.
81
- * @internal
81
+ * @public
82
82
  */
83
83
  export interface ICatalogItemAttribute extends ICatalogItemBase {
84
84
  type: "attribute";
@@ -86,7 +86,7 @@ export interface ICatalogItemAttribute extends ICatalogItemBase {
86
86
  }
87
87
  /**
88
88
  * Catalog item for facts.
89
- * @internal
89
+ * @public
90
90
  */
91
91
  export interface ICatalogItemFact extends ICatalogItemBase {
92
92
  type: "fact";
@@ -94,7 +94,7 @@ export interface ICatalogItemFact extends ICatalogItemBase {
94
94
  }
95
95
  /**
96
96
  * Catalog item for date datasets.
97
- * @internal
97
+ * @public
98
98
  */
99
99
  export interface ICatalogItemDataSet extends ICatalogItemBase {
100
100
  type: "dataSet";
@@ -2,13 +2,13 @@ import type { ObjectType as ModelObjectType } from "@gooddata/sdk-model";
2
2
  /**
3
3
  * Represents the supported catalog object types in the Analytics Catalog UI.
4
4
  *
5
- * @internal
5
+ * @public
6
6
  */
7
7
  export type ObjectType = Extract<ModelObjectType, "analyticalDashboard" | "insight" | "measure" | "parameter" | "fact" | "attribute" | "dataSet">;
8
8
  /**
9
9
  * Represents the object types that can be created from the Analytics Catalog.
10
10
  *
11
- * @internal
11
+ * @public
12
12
  */
13
13
  export type CatalogCreateObjectType = Extract<ObjectType, "analyticalDashboard" | "insight" | "measure" | "parameter">;
14
14
  //# sourceMappingURL=types.d.ts.map
@@ -10,17 +10,17 @@ import type { ObjectType as ObjectType_2 } from '@gooddata/sdk-model';
10
10
  import { ReactNode } from 'react';
11
11
 
12
12
  /**
13
- * @internal
13
+ * @public
14
14
  */
15
15
  export declare function AnalyticsCatalog(props: IAnalyticsCatalogProps): JSX.Element;
16
16
 
17
17
  /**
18
- * @internal
18
+ * @public
19
19
  */
20
20
  export declare function AnalyticsCatalogDetail({ backend, workspace, locale, ...restProps }: IAnalyticsCatalogDetailProps): JSX.Element;
21
21
 
22
22
  /**
23
- * @internal
23
+ * @public
24
24
  */
25
25
  export declare function AnalyticsCatalogDetailContent({ backend, workspace, locale, ...restProps }: IAnalyticsCatalogDetailContentProps): JSX.Element;
26
26
 
@@ -28,24 +28,24 @@ export declare function AnalyticsCatalogDetailContent({ backend, workspace, loca
28
28
  * Public wrapper of the internal static filter used in Analytics Catalog.
29
29
  * This component provides a stable, documented API surface for reuse.
30
30
  *
31
- * @internal
31
+ * @public
32
32
  */
33
33
  export declare function AnalyticsCatalogFilter<T>(props: IAnalyticsCatalogFilterProps<T>): JSX.Element;
34
34
 
35
35
  /**
36
36
  * Represents the object types that can be created from the Analytics Catalog.
37
37
  *
38
- * @internal
38
+ * @public
39
39
  */
40
40
  export declare type CatalogCreateObjectType = Extract<ObjectType, "analyticalDashboard" | "insight" | "measure" | "parameter">;
41
41
 
42
42
  /**
43
- * @internal
43
+ * @public
44
44
  */
45
45
  export declare type EditHandlerEvent = OpenHandlerEvent;
46
46
 
47
47
  /**
48
- * @internal
48
+ * @public
49
49
  */
50
50
  export declare interface IAnalyticsCatalogDetailContentProps extends Omit<ICatalogDetailContentProps, "objectId" | "objectType"> {
51
51
  /**
@@ -75,7 +75,7 @@ export declare interface IAnalyticsCatalogDetailContentProps extends Omit<ICatal
75
75
  }
76
76
 
77
77
  /**
78
- * @internal
78
+ * @public
79
79
  */
80
80
  export declare interface IAnalyticsCatalogDetailProps extends Omit<ICatalogDetailProps, "objectId" | "objectType"> {
81
81
  /**
@@ -102,7 +102,7 @@ export declare interface IAnalyticsCatalogDetailProps extends Omit<ICatalogDetai
102
102
 
103
103
  /**
104
104
  * Props for {@link AnalyticsCatalogFilter}.
105
- * @internal
105
+ * @public
106
106
  */
107
107
  export declare interface IAnalyticsCatalogFilterProps<T> {
108
108
  /**
@@ -152,7 +152,7 @@ export declare interface IAnalyticsCatalogFilterProps<T> {
152
152
  }
153
153
 
154
154
  /**
155
- * @internal
155
+ * @public
156
156
  */
157
157
  export declare interface IAnalyticsCatalogProps {
158
158
  /**
@@ -195,7 +195,7 @@ export declare interface IAnalyticsCatalogProps {
195
195
 
196
196
  /**
197
197
  * Generic detail drawer action definition.
198
- * @internal
198
+ * @public
199
199
  */
200
200
  export declare interface ICatalogDetailAction {
201
201
  id: string;
@@ -205,7 +205,7 @@ export declare interface ICatalogDetailAction {
205
205
  }
206
206
 
207
207
  /**
208
- * @internal
208
+ * @public
209
209
  */
210
210
  export declare interface ICatalogDetailContentProps {
211
211
  /**
@@ -251,7 +251,7 @@ export declare interface ICatalogDetailContentProps {
251
251
  }
252
252
 
253
253
  /**
254
- * @internal
254
+ * @public
255
255
  */
256
256
  export declare interface ICatalogDetailProps extends ICatalogDetailContentProps {
257
257
  /**
@@ -281,13 +281,13 @@ export declare interface ICatalogDetailProps extends ICatalogDetailContentProps
281
281
  *
282
282
  * Narrow by `item.type` before accessing type-specific fields such as
283
283
  * `visualizationType`, `dataSet`, `definition`, `format`, or `metricType`.
284
- * @internal
284
+ * @public
285
285
  */
286
286
  export declare type ICatalogItem = ICatalogItemDashboard | ICatalogItemInsight | ICatalogItemMeasure | ICatalogItemParameter | ICatalogItemAttribute | ICatalogItemFact | ICatalogItemDataSet;
287
287
 
288
288
  /**
289
289
  * Catalog item for attributes.
290
- * @internal
290
+ * @public
291
291
  */
292
292
  export declare interface ICatalogItemAttribute extends ICatalogItemBase {
293
293
  type: "attribute";
@@ -296,7 +296,7 @@ export declare interface ICatalogItemAttribute extends ICatalogItemBase {
296
296
 
297
297
  /**
298
298
  * Fields common to every catalog item variant.
299
- * @internal
299
+ * @public
300
300
  */
301
301
  export declare interface ICatalogItemBase extends ICatalogItemRef {
302
302
  title: string;
@@ -319,7 +319,7 @@ export declare interface ICatalogItemBase extends ICatalogItemRef {
319
319
 
320
320
  /**
321
321
  * Catalog item for analytical dashboards.
322
- * @internal
322
+ * @public
323
323
  */
324
324
  export declare interface ICatalogItemDashboard extends ICatalogItemBase {
325
325
  type: "analyticalDashboard";
@@ -327,7 +327,7 @@ export declare interface ICatalogItemDashboard extends ICatalogItemBase {
327
327
 
328
328
  /**
329
329
  * Catalog item for date datasets.
330
- * @internal
330
+ * @public
331
331
  */
332
332
  export declare interface ICatalogItemDataSet extends ICatalogItemBase {
333
333
  type: "dataSet";
@@ -336,7 +336,7 @@ export declare interface ICatalogItemDataSet extends ICatalogItemBase {
336
336
 
337
337
  /**
338
338
  * Catalog item for facts.
339
- * @internal
339
+ * @public
340
340
  */
341
341
  export declare interface ICatalogItemFact extends ICatalogItemBase {
342
342
  type: "fact";
@@ -345,7 +345,7 @@ export declare interface ICatalogItemFact extends ICatalogItemBase {
345
345
 
346
346
  /**
347
347
  * Catalog item for insights (visualizations).
348
- * @internal
348
+ * @public
349
349
  */
350
350
  export declare interface ICatalogItemInsight extends ICatalogItemBase {
351
351
  type: "insight";
@@ -354,7 +354,7 @@ export declare interface ICatalogItemInsight extends ICatalogItemBase {
354
354
 
355
355
  /**
356
356
  * Catalog item for measures (metrics).
357
- * @internal
357
+ * @public
358
358
  */
359
359
  export declare interface ICatalogItemMeasure extends ICatalogItemBase {
360
360
  type: "measure";
@@ -365,7 +365,7 @@ export declare interface ICatalogItemMeasure extends ICatalogItemBase {
365
365
 
366
366
  /**
367
367
  * Catalog item for parameters.
368
- * @internal
368
+ * @public
369
369
  */
370
370
  export declare interface ICatalogItemParameter extends ICatalogItemBase {
371
371
  type: "parameter";
@@ -374,7 +374,7 @@ export declare interface ICatalogItemParameter extends ICatalogItemBase {
374
374
 
375
375
  /**
376
376
  * Catalog item reference.
377
- * @internal
377
+ * @public
378
378
  */
379
379
  export declare interface ICatalogItemRef extends IdentifierRef {
380
380
  type: ObjectType;
@@ -418,12 +418,12 @@ export declare function isCatalogItemParameter(item: ICatalogItem | undefined |
418
418
  /**
419
419
  * Represents the supported catalog object types in the Analytics Catalog UI.
420
420
  *
421
- * @internal
421
+ * @public
422
422
  */
423
423
  export declare type ObjectType = Extract<ObjectType_2, "analyticalDashboard" | "insight" | "measure" | "parameter" | "fact" | "attribute" | "dataSet">;
424
424
 
425
425
  /**
426
- * @internal
426
+ * @public
427
427
  */
428
428
  export declare type OpenHandlerEvent = {
429
429
  /**
@@ -446,7 +446,7 @@ export declare type OpenHandlerEvent = {
446
446
 
447
447
  /**
448
448
  * Visualization type
449
- * @internal
449
+ * @public
450
450
  */
451
451
  export declare type VisualizationType = "scatter" | "donut" | "area" | "table" | "headline" | "column" | "line" | "treemap" | "pyramid" | "funnel" | "heatmap" | "bubble" | "pie" | "bar" | "combo" | "bullet" | "waterfall" | "dependencywheel" | "sankey" | "pushpin" | "repeater";
452
452
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-catalog",
3
- "version": "11.42.0-alpha.3",
3
+ "version": "11.42.0-alpha.4",
4
4
  "description": "GoodData SDK - Analytics Catalog",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -45,13 +45,13 @@
45
45
  "tslib": "2.8.1",
46
46
  "yaml": "2.8.3",
47
47
  "zod": "4.3.6",
48
- "@gooddata/sdk-backend-spi": "11.42.0-alpha.3",
49
- "@gooddata/sdk-model": "11.42.0-alpha.3",
50
- "@gooddata/sdk-ui": "11.42.0-alpha.3",
51
- "@gooddata/sdk-ui-semantic-search": "11.42.0-alpha.3",
52
- "@gooddata/sdk-ui-theme-provider": "11.42.0-alpha.3",
53
- "@gooddata/sdk-ui-kit": "11.42.0-alpha.3",
54
- "@gooddata/util": "11.42.0-alpha.3"
48
+ "@gooddata/sdk-backend-spi": "11.42.0-alpha.4",
49
+ "@gooddata/sdk-model": "11.42.0-alpha.4",
50
+ "@gooddata/sdk-ui": "11.42.0-alpha.4",
51
+ "@gooddata/sdk-ui-kit": "11.42.0-alpha.4",
52
+ "@gooddata/sdk-ui-semantic-search": "11.42.0-alpha.4",
53
+ "@gooddata/sdk-ui-theme-provider": "11.42.0-alpha.4",
54
+ "@gooddata/util": "11.42.0-alpha.4"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@microsoft/api-documenter": "^7.17.0",
@@ -91,11 +91,11 @@
91
91
  "typescript": "5.9.3",
92
92
  "vitest": "4.1.8",
93
93
  "vitest-dom": "0.1.1",
94
- "@gooddata/eslint-config": "11.42.0-alpha.3",
95
- "@gooddata/i18n-toolkit": "11.42.0-alpha.3",
96
- "@gooddata/oxlint-config": "11.42.0-alpha.3",
97
- "@gooddata/sdk-backend-mockingbird": "11.42.0-alpha.3",
98
- "@gooddata/stylelint-config": "11.42.0-alpha.3"
94
+ "@gooddata/i18n-toolkit": "11.42.0-alpha.4",
95
+ "@gooddata/eslint-config": "11.42.0-alpha.4",
96
+ "@gooddata/oxlint-config": "11.42.0-alpha.4",
97
+ "@gooddata/sdk-backend-mockingbird": "11.42.0-alpha.4",
98
+ "@gooddata/stylelint-config": "11.42.0-alpha.4"
99
99
  },
100
100
  "peerDependencies": {
101
101
  "react": "^18.0.0 || ^19.0.0",