@gooddata/sdk-ui-ext 11.15.0 → 11.16.0-alpha.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.
- package/esm/automations/data/useLoadAutomations.d.ts +1 -1
- package/esm/internal/components/dialogs/userManagementDialogs/Users/AsyncSelectComponents.d.ts +1 -1
- package/esm/internal/components/dialogs/userManagementDialogs/Workspace/AsyncSelectComponents.d.ts +1 -1
- package/esm/internal/constants/axis.d.ts +1 -1
- package/esm/internal/utils/uiConfigHelpers/pivotTableNextUiConfigHelper.d.ts +1 -1
- package/esm/internal/utils/uiConfigHelpers/pivotTableUiConfigHelper.d.ts +1 -1
- package/esm/notificationsPanel/data/NotificationsContext.d.ts +2 -2
- package/esm/notificationsPanel/data/useFetchNotifications.d.ts +1 -1
- package/esm/notificationsPanel/data/useNotifications.d.ts +2 -2
- package/package.json +18 -18
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type IUseLoadAutomationsProps } from "../types.js";
|
|
2
2
|
export declare const useLoadAutomations: ({ type, pageSize, state, dashboardFilterQuery, recipientsFilterQuery, externalRecipientsFilterQuery, workspacesFilterQuery, createdByFilterQuery, statusFilterQuery, includeAutomationResult, scope, setState, onLoad, }: IUseLoadAutomationsProps) => {
|
|
3
|
-
status: "error" | "
|
|
3
|
+
status: "error" | "success" | "pending" | "loading";
|
|
4
4
|
error: any;
|
|
5
5
|
};
|
|
6
6
|
//# sourceMappingURL=useLoadAutomations.d.ts.map
|
package/esm/internal/components/dialogs/userManagementDialogs/Users/AsyncSelectComponents.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { type ISelectErrorOption, type IUserSelectOption } from "../types.js";
|
|
|
4
4
|
export declare function EmptyRenderer(): ReactElement;
|
|
5
5
|
export declare function LoadingMessageRenderer(): ReactElement;
|
|
6
6
|
export declare function NoOptionsMessageRenderer(props: NoticeProps<IUserSelectOption | ISelectErrorOption, false>): ReactElement;
|
|
7
|
-
export declare const MenuListRenderer: (props: MenuListProps<
|
|
7
|
+
export declare const MenuListRenderer: (props: MenuListProps<ISelectErrorOption | IUserSelectOption, false, import("react-select").GroupBase<ISelectErrorOption | IUserSelectOption>>) => ReactElement;
|
|
8
8
|
export declare function InputRendered(props: InputProps<IUserSelectOption | ISelectErrorOption, false>): ReactElement;
|
|
9
9
|
export declare function ErrorOptionRenderer(errorOption: ISelectErrorOption): ReactElement;
|
|
10
10
|
export declare function OptionRenderer({ className, cx, isFocused, innerRef, innerProps, data, }: OptionProps<IUserSelectOption | ISelectErrorOption, false>): ReactElement;
|
package/esm/internal/components/dialogs/userManagementDialogs/Workspace/AsyncSelectComponents.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare function EmptyRenderer(): ReactElement;
|
|
|
5
5
|
export declare function LoadingMessageRenderer(): ReactElement;
|
|
6
6
|
export declare function NoOptionsMessageRenderer(props: NoticeProps<ISelectOption | ISelectErrorOption, false>): ReactElement;
|
|
7
7
|
export declare function MenuListRendered(props: MenuListProps<ISelectOption | ISelectErrorOption, false>): ReactElement;
|
|
8
|
-
export declare const WrappedMenuListRenderer: (props: MenuListProps<
|
|
8
|
+
export declare const WrappedMenuListRenderer: (props: MenuListProps<ISelectErrorOption | ISelectOption, false, import("react-select").GroupBase<ISelectErrorOption | ISelectOption>>) => ReactElement;
|
|
9
9
|
export declare function InputRendered(props: InputProps<ISelectOption | ISelectErrorOption, false>): ReactElement;
|
|
10
10
|
export declare function SingleValueInputRenderer(props: InputProps<ISelectOption | ISelectErrorOption, false>): ReactElement;
|
|
11
11
|
export declare function ErrorOptionRenderer(errorOption: ISelectErrorOption): ReactElement;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IntlShape } from "react-intl";
|
|
2
2
|
import { type ISettings } from "@gooddata/sdk-model";
|
|
3
3
|
import { type IBucketOfFun, type IExtendedReferencePoint, type IUiConfig } from "../../interfaces/Visualization.js";
|
|
4
|
-
export declare function getPivotTableNextMeasuresLimit(settings: ISettings, buckets: IBucketOfFun[]):
|
|
4
|
+
export declare function getPivotTableNextMeasuresLimit(settings: ISettings, buckets: IBucketOfFun[]): 40 | 100;
|
|
5
5
|
export declare function setPivotTableNextUiConfig(referencePoint: IExtendedReferencePoint, intl: IntlShape, visualizationType: string, settings: ISettings): void;
|
|
6
6
|
export declare function getPivotTableNextDefaultUiConfig(settings: ISettings): IUiConfig;
|
|
7
7
|
//# sourceMappingURL=pivotTableNextUiConfigHelper.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IntlShape } from "react-intl";
|
|
2
2
|
import { type ISettings } from "@gooddata/sdk-model";
|
|
3
3
|
import { type IBucketOfFun, type IExtendedReferencePoint, type IUiConfig } from "../../interfaces/Visualization.js";
|
|
4
|
-
export declare function getPivotTableMeasuresLimit(settings: ISettings, buckets: IBucketOfFun[]):
|
|
4
|
+
export declare function getPivotTableMeasuresLimit(settings: ISettings, buckets: IBucketOfFun[]): 40 | 100;
|
|
5
5
|
export declare function setPivotTableUiConfig(referencePoint: IExtendedReferencePoint, intl: IntlShape, visualizationType: string, settings: ISettings): void;
|
|
6
6
|
export declare function getPivotTableDefaultUiConfig(settings: ISettings): IUiConfig;
|
|
7
7
|
//# sourceMappingURL=pivotTableUiConfigHelper.d.ts.map
|
|
@@ -10,13 +10,13 @@ export type INotificationsContext = ReturnType<typeof useNotifications>;
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const useNotificationsContext: () => {
|
|
12
12
|
notifications: import("@gooddata/sdk-model").INotification[];
|
|
13
|
-
notificationsStatus: "error" | "
|
|
13
|
+
notificationsStatus: "error" | "success" | "pending" | "loading";
|
|
14
14
|
notificationsError: import("@gooddata/sdk-ui").GoodDataSdkError;
|
|
15
15
|
notificationsHasNextPage: boolean;
|
|
16
16
|
notificationsLoadNextPage: () => void;
|
|
17
17
|
notificationsReset: () => void;
|
|
18
18
|
unreadNotifications: import("@gooddata/sdk-model").INotification[];
|
|
19
|
-
unreadNotificationsStatus: "error" | "
|
|
19
|
+
unreadNotificationsStatus: "error" | "success" | "pending" | "loading";
|
|
20
20
|
unreadNotificationsError: import("@gooddata/sdk-ui").GoodDataSdkError;
|
|
21
21
|
unreadNotificationsHasNextPage: boolean;
|
|
22
22
|
unreadNotificationsLoadNextPage: () => void;
|
|
@@ -25,7 +25,7 @@ export interface IUseFetchNotificationsProps {
|
|
|
25
25
|
* @internal
|
|
26
26
|
*/
|
|
27
27
|
export declare function useFetchNotifications({ workspace, readStatus, refreshInterval, itemsPerPage, }: IUseFetchNotificationsProps): {
|
|
28
|
-
status: "error" | "
|
|
28
|
+
status: "error" | "success" | "pending" | "loading";
|
|
29
29
|
error: GoodDataSdkError;
|
|
30
30
|
hasNextPage: boolean;
|
|
31
31
|
notifications: INotification[];
|
|
@@ -35,13 +35,13 @@ export interface IUseNotificationsProps {
|
|
|
35
35
|
*/
|
|
36
36
|
export declare function useNotifications({ workspace, refreshInterval, itemsPerPage, enableScheduleNotifications, }: IUseNotificationsProps): {
|
|
37
37
|
notifications: INotification[];
|
|
38
|
-
notificationsStatus: "error" | "
|
|
38
|
+
notificationsStatus: "error" | "success" | "pending" | "loading";
|
|
39
39
|
notificationsError: import("@gooddata/sdk-ui").GoodDataSdkError;
|
|
40
40
|
notificationsHasNextPage: boolean;
|
|
41
41
|
notificationsLoadNextPage: () => void;
|
|
42
42
|
notificationsReset: () => void;
|
|
43
43
|
unreadNotifications: INotification[];
|
|
44
|
-
unreadNotificationsStatus: "error" | "
|
|
44
|
+
unreadNotificationsStatus: "error" | "success" | "pending" | "loading";
|
|
45
45
|
unreadNotificationsError: import("@gooddata/sdk-ui").GoodDataSdkError;
|
|
46
46
|
unreadNotificationsHasNextPage: boolean;
|
|
47
47
|
unreadNotificationsLoadNextPage: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-ext",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.16.0-alpha.1",
|
|
4
4
|
"description": "GoodData.UI SDK - Extensions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -63,19 +63,19 @@
|
|
|
63
63
|
"ts-invariant": "^0.7.5",
|
|
64
64
|
"tslib": "2.8.1",
|
|
65
65
|
"uuid": "^11.1.0",
|
|
66
|
-
"@gooddata/sdk-backend-base": "11.
|
|
67
|
-
"@gooddata/sdk-embedding": "11.
|
|
68
|
-
"@gooddata/sdk-
|
|
69
|
-
"@gooddata/sdk-
|
|
70
|
-
"@gooddata/sdk-ui-charts": "11.
|
|
71
|
-
"@gooddata/sdk-
|
|
72
|
-
"@gooddata/sdk-ui-
|
|
73
|
-
"@gooddata/sdk-ui-
|
|
74
|
-
"@gooddata/sdk-ui-
|
|
75
|
-
"@gooddata/sdk-ui-
|
|
76
|
-
"@gooddata/sdk-ui-
|
|
77
|
-
"@gooddata/sdk-ui-
|
|
78
|
-
"@gooddata/util": "11.
|
|
66
|
+
"@gooddata/sdk-backend-base": "11.16.0-alpha.1",
|
|
67
|
+
"@gooddata/sdk-embedding": "11.16.0-alpha.1",
|
|
68
|
+
"@gooddata/sdk-model": "11.16.0-alpha.1",
|
|
69
|
+
"@gooddata/sdk-ui": "11.16.0-alpha.1",
|
|
70
|
+
"@gooddata/sdk-ui-charts": "11.16.0-alpha.1",
|
|
71
|
+
"@gooddata/sdk-backend-spi": "11.16.0-alpha.1",
|
|
72
|
+
"@gooddata/sdk-ui-kit": "11.16.0-alpha.1",
|
|
73
|
+
"@gooddata/sdk-ui-geo": "11.16.0-alpha.1",
|
|
74
|
+
"@gooddata/sdk-ui-filters": "11.16.0-alpha.1",
|
|
75
|
+
"@gooddata/sdk-ui-theme-provider": "11.16.0-alpha.1",
|
|
76
|
+
"@gooddata/sdk-ui-pivot": "11.16.0-alpha.1",
|
|
77
|
+
"@gooddata/sdk-ui-vis-commons": "11.16.0-alpha.1",
|
|
78
|
+
"@gooddata/util": "11.16.0-alpha.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@gooddata/stylelint-config": "^5.0.0",
|
|
@@ -124,10 +124,10 @@
|
|
|
124
124
|
"typescript": "5.9.3",
|
|
125
125
|
"vitest": "3.2.4",
|
|
126
126
|
"vitest-dom": "0.1.1",
|
|
127
|
-
"@gooddata/
|
|
128
|
-
"@gooddata/
|
|
129
|
-
"@gooddata/reference-workspace": "11.
|
|
130
|
-
"@gooddata/sdk-backend-mockingbird": "11.
|
|
127
|
+
"@gooddata/i18n-toolkit": "11.16.0-alpha.1",
|
|
128
|
+
"@gooddata/eslint-config": "11.16.0-alpha.1",
|
|
129
|
+
"@gooddata/reference-workspace": "11.16.0-alpha.1",
|
|
130
|
+
"@gooddata/sdk-backend-mockingbird": "11.16.0-alpha.1"
|
|
131
131
|
},
|
|
132
132
|
"peerDependencies": {
|
|
133
133
|
"react": "^18.0.0 || ^19.0.0",
|