@gooddata/sdk-ui-kit 11.16.0-alpha.6 → 11.17.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.
- package/esm/@ui/@utils/keyboardNavigation.d.ts +10 -10
- package/esm/@ui/@utils/keyboardNavigation.d.ts.map +1 -1
- package/esm/@ui/@utils/size.d.ts +1 -1
- package/esm/@ui/UiAsyncTable/UiAsyncTable/WithConditionalAnchor.d.ts +1 -1
- package/esm/@ui/UiDrawer/hooks/useToggleDrawer.d.ts +1 -1
- package/esm/@ui/UiIcon/UiIconBackground.d.ts +1 -1
- package/esm/@ui/hooks/useListWithActionsKeyboardNavigation.d.ts +2 -2
- package/esm/sdk-ui-kit.d.ts +8 -8
- package/package.json +9 -9
|
@@ -27,24 +27,24 @@ export declare const makeKeyboardNavigation: <ActionKeysMap extends {
|
|
|
27
27
|
* @internal
|
|
28
28
|
*/
|
|
29
29
|
export declare const makeMenuKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
30
|
-
onClose?: ((event: T) => void) | undefined;
|
|
31
30
|
onSelect?: ((event: T) => void) | undefined;
|
|
32
|
-
|
|
31
|
+
onClose?: ((event: T) => void) | undefined;
|
|
33
32
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
34
33
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
35
34
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
36
35
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
37
36
|
onEnterLevel?: ((event: T) => void) | undefined;
|
|
38
37
|
onLeaveLevel?: ((event: T) => void) | undefined;
|
|
38
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
39
39
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
40
40
|
/**
|
|
41
41
|
* @internal
|
|
42
42
|
*/
|
|
43
43
|
export declare const makeGridKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
44
44
|
onSelect?: ((event: T) => void) | undefined;
|
|
45
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
46
45
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
47
46
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
47
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
48
48
|
onFocusUp?: ((event: T) => void) | undefined;
|
|
49
49
|
onFocusDown?: ((event: T) => void) | undefined;
|
|
50
50
|
onFocusRight?: ((event: T) => void) | undefined;
|
|
@@ -54,55 +54,55 @@ export declare const makeGridKeyboardNavigation: <T extends KeyboardEvent = Keyb
|
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
export declare const makeLinearKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
57
|
-
onClose?: ((event: T) => void) | undefined;
|
|
58
57
|
onSelect?: ((event: T) => void) | undefined;
|
|
59
|
-
|
|
58
|
+
onClose?: ((event: T) => void) | undefined;
|
|
60
59
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
61
60
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
62
61
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
63
62
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
63
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
64
64
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
65
65
|
/**
|
|
66
66
|
* @internal
|
|
67
67
|
*/
|
|
68
68
|
export declare const makeDialogKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
69
69
|
onClose?: ((event: T) => void) | undefined;
|
|
70
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
71
70
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
72
71
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
72
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
73
73
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
74
74
|
/**
|
|
75
75
|
* @internal
|
|
76
76
|
*/
|
|
77
77
|
export declare const makeTabsKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
78
78
|
onSelect?: ((event: T) => void) | undefined;
|
|
79
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
80
79
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
81
80
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
82
81
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
83
82
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
83
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
84
84
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
85
85
|
/**
|
|
86
86
|
* @internal
|
|
87
87
|
*/
|
|
88
88
|
export declare const makeHorizontalKeyboardNavigation: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
89
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
90
89
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
91
90
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
92
91
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
93
92
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
93
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
94
94
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
95
95
|
/**
|
|
96
96
|
* @internal
|
|
97
97
|
*/
|
|
98
98
|
export declare const makeLinearKeyboardNavigationWithConfirm: <T extends KeyboardEvent = KeyboardEvent<Element>>(handlers: {
|
|
99
|
-
onClose?: ((event: T) => void) | undefined;
|
|
100
99
|
onSelect?: ((event: T) => void) | undefined;
|
|
101
|
-
|
|
100
|
+
onClose?: ((event: T) => void) | undefined;
|
|
102
101
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
103
102
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
104
103
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
105
104
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
105
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
106
106
|
onConfirm?: ((event: T) => void) | undefined;
|
|
107
107
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
108
108
|
//# sourceMappingURL=keyboardNavigation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keyboardNavigation.d.ts","sourceRoot":"","sources":["../../../src/@ui/@utils/keyboardNavigation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,OAAO,CAAC;AAE7D;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACnC;AAqBD;;GAEG;AACH,eAAO,MAAM,eAAe,EAAG,GAAY,CAAC;AAC5C;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,WAAW,GAAG,GAAG,OAAO,eAAe,GAAG,WAAW,EAAE,CAAC;AAEhF;;GAEG;AACH,eAAO,MAAM,sBAAsB,GAC9B,aAAa,SAAS;IAAE,CAAC,MAAM,EAAE,MAAM,GAAG,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;QAAC,SAAS,CAAC,EAAE,SAAS,EAAE,CAAA;KAAE,CAAC,CAAA;CAAE,EACpG,eAAe,aAAa,MAE/B,CAAC,SAAS,aAAa,GAAG,aAAa,EACpC,UAAU,GAAG,MAAM,IAAI,MAAM,aAAa,GAAG,oBAAoB,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,GAAE,EACzF,UAAS,oBAAyB,MAE1B,OAAO,CAAC,SAmCnB,CAAC;AAEN;;GAEG;AACH,eAAO,MAAM,0BAA0B,GA5ClC,CAAC,SAAS,aAAa;
|
|
1
|
+
{"version":3,"file":"keyboardNavigation.d.ts","sourceRoot":"","sources":["../../../src/@ui/@utils/keyboardNavigation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,OAAO,CAAC;AAE7D;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACnC;AAqBD;;GAEG;AACH,eAAO,MAAM,eAAe,EAAG,GAAY,CAAC;AAC5C;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,WAAW,GAAG,GAAG,OAAO,eAAe,GAAG,WAAW,EAAE,CAAC;AAEhF;;GAEG;AACH,eAAO,MAAM,sBAAsB,GAC9B,aAAa,SAAS;IAAE,CAAC,MAAM,EAAE,MAAM,GAAG,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;QAAC,SAAS,CAAC,EAAE,SAAS,EAAE,CAAA;KAAE,CAAC,CAAA;CAAE,EACpG,eAAe,aAAa,MAE/B,CAAC,SAAS,aAAa,GAAG,aAAa,EACpC,UAAU,GAAG,MAAM,IAAI,MAAM,aAAa,GAAG,oBAAoB,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,GAAE,EACzF,UAAS,oBAAyB,MAE1B,OAAO,CAAC,SAmCnB,CAAC;AAEN;;GAEG;AACH,eAAO,MAAM,0BAA0B,GA5ClC,CAAC,SAAS,aAAa;8BAC+D,IAAI;6BAAJ,IAAI;qCAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;kCAAJ,IAAI;wCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SAiDtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B,GA1DlC,CAAC,SAAS,aAAa;8BAC+D,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;+BAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SA8DtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B,GAvEpC,CAAC,SAAS,aAAa;8BAC+D,IAAI;6BAAJ,IAAI;qCAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SA0EtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B,GAnFpC,CAAC,SAAS,aAAa;6BAC+D,IAAI;qCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SAmFtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B,GA5FlC,CAAC,SAAS,aAAa;8BAC+D,IAAI;qCAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SA8FtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gCAAgC,GAvGxC,CAAC,SAAS,aAAa;qCAC+D,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SAwGtB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uCAAuC,GAjH/C,CAAC,SAAS,aAAa;8BAC+D,IAAI;6BAAJ,IAAI;qCAAJ,IAAI;iCAAJ,IAAI;kCAAJ,IAAI;iCAAJ,IAAI;wCAAJ,IAAI;+BAAJ,IAAI;aAC9E,oBAAoB,MAErB,QAAQ,SAqHtB,CAAC"}
|
package/esm/@ui/@utils/size.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { type SizeLarge, type SizeMedium, type SizeSmall, type SizeXLarge, type SizeXSmall, type SizeXXLarge } from "../@types/size.js";
|
|
2
|
-
export declare const getButtonIconSize: (size: SizeXSmall | SizeSmall | SizeMedium | SizeLarge | SizeXLarge | SizeXXLarge) =>
|
|
2
|
+
export declare const getButtonIconSize: (size: SizeXSmall | SizeSmall | SizeMedium | SizeLarge | SizeXLarge | SizeXXLarge) => 16 | 12 | 18 | 20 | 30;
|
|
3
3
|
//# sourceMappingURL=size.d.ts.map
|
|
@@ -2,5 +2,5 @@ import { type ReactNode } from "react";
|
|
|
2
2
|
export declare function WithConditionalAnchor({ href, children }: {
|
|
3
3
|
href?: string;
|
|
4
4
|
children: ReactNode;
|
|
5
|
-
}): string | number | bigint | boolean |
|
|
5
|
+
}): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ReactPortal | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
6
6
|
//# sourceMappingURL=WithConditionalAnchor.d.ts.map
|
|
@@ -2,7 +2,7 @@ import { type UiDrawerTransitionProps } from "../types.js";
|
|
|
2
2
|
export declare function useToggleDrawer(open: boolean, props: UiDrawerTransitionProps): {
|
|
3
3
|
isOpen: boolean;
|
|
4
4
|
isFullyOpen: boolean;
|
|
5
|
-
view: "
|
|
5
|
+
view: "closed" | "open";
|
|
6
6
|
style: {
|
|
7
7
|
transition: string;
|
|
8
8
|
};
|
|
@@ -7,5 +7,5 @@ export declare function UiIconBackground({ children, size, color, type, shape, }
|
|
|
7
7
|
color?: ThemeColor;
|
|
8
8
|
type?: BackgroundType;
|
|
9
9
|
shape?: BackgroundShape;
|
|
10
|
-
}): string | number | bigint | boolean |
|
|
10
|
+
}): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ReactPortal | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
11
11
|
//# sourceMappingURL=UiIconBackground.d.ts.map
|
|
@@ -19,9 +19,9 @@ export declare function useListWithActionsKeyboardNavigation<Item, Action extend
|
|
|
19
19
|
}): {
|
|
20
20
|
onKeyboardNavigation: (event: KeyboardEvent<Element>) => void;
|
|
21
21
|
onBlur: FocusEventHandler;
|
|
22
|
-
focusedAction:
|
|
22
|
+
focusedAction: "selectItem" | Action;
|
|
23
23
|
focusedItem: Item | undefined;
|
|
24
|
-
setFocusedAction: Dispatch<SetStateAction<
|
|
24
|
+
setFocusedAction: Dispatch<SetStateAction<"selectItem" | Action>>;
|
|
25
25
|
setFocusedIndex: Dispatch<SetStateAction<number | undefined>>;
|
|
26
26
|
};
|
|
27
27
|
//# sourceMappingURL=useListWithActionsKeyboardNavigation.d.ts.map
|
package/esm/sdk-ui-kit.d.ts
CHANGED
|
@@ -7602,11 +7602,11 @@ export declare function LocaleSetting({ isChecked, selectedLocal, onChecked, onL
|
|
|
7602
7602
|
* @internal
|
|
7603
7603
|
*/
|
|
7604
7604
|
export declare const makeHorizontalKeyboardNavigation: <T extends KeyboardEvent_2 = KeyboardEvent_2<Element>>(handlers: {
|
|
7605
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7606
7605
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
7607
7606
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
7608
7607
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
7609
7608
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
7609
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7610
7610
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
7611
7611
|
|
|
7612
7612
|
/**
|
|
@@ -7623,28 +7623,28 @@ export declare const makeKeyboardNavigation: <ActionKeysMap extends {
|
|
|
7623
7623
|
* @internal
|
|
7624
7624
|
*/
|
|
7625
7625
|
export declare const makeLinearKeyboardNavigation: <T extends KeyboardEvent_2 = KeyboardEvent_2<Element>>(handlers: {
|
|
7626
|
-
onClose?: ((event: T) => void) | undefined;
|
|
7627
7626
|
onSelect?: ((event: T) => void) | undefined;
|
|
7628
|
-
|
|
7627
|
+
onClose?: ((event: T) => void) | undefined;
|
|
7629
7628
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
7630
7629
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
7631
7630
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
7632
7631
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
7632
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7633
7633
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
7634
7634
|
|
|
7635
7635
|
/**
|
|
7636
7636
|
* @internal
|
|
7637
7637
|
*/
|
|
7638
7638
|
export declare const makeMenuKeyboardNavigation: <T extends KeyboardEvent_2 = KeyboardEvent_2<Element>>(handlers: {
|
|
7639
|
-
onClose?: ((event: T) => void) | undefined;
|
|
7640
7639
|
onSelect?: ((event: T) => void) | undefined;
|
|
7641
|
-
|
|
7640
|
+
onClose?: ((event: T) => void) | undefined;
|
|
7642
7641
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
7643
7642
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
7644
7643
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
7645
7644
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
7646
7645
|
onEnterLevel?: ((event: T) => void) | undefined;
|
|
7647
7646
|
onLeaveLevel?: ((event: T) => void) | undefined;
|
|
7647
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7648
7648
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
7649
7649
|
|
|
7650
7650
|
/**
|
|
@@ -7652,11 +7652,11 @@ export declare const makeMenuKeyboardNavigation: <T extends KeyboardEvent_2 = Ke
|
|
|
7652
7652
|
*/
|
|
7653
7653
|
export declare const makeTabsKeyboardNavigation: <T extends KeyboardEvent_2 = KeyboardEvent_2<Element>>(handlers: {
|
|
7654
7654
|
onSelect?: ((event: T) => void) | undefined;
|
|
7655
|
-
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7656
7655
|
onFocusPrevious?: ((event: T) => void) | undefined;
|
|
7657
7656
|
onFocusNext?: ((event: T) => void) | undefined;
|
|
7658
7657
|
onFocusFirst?: ((event: T) => void) | undefined;
|
|
7659
7658
|
onFocusLast?: ((event: T) => void) | undefined;
|
|
7659
|
+
onUnhandledKeyDown?: ((event: T) => void) | undefined;
|
|
7660
7660
|
}, options?: IHandleActionOptions) => (event: T) => void;
|
|
7661
7661
|
|
|
7662
7662
|
/**
|
|
@@ -9130,9 +9130,9 @@ export declare function useListWithActionsKeyboardNavigation<Item, Action extend
|
|
|
9130
9130
|
}): {
|
|
9131
9131
|
onKeyboardNavigation: (event: KeyboardEvent_2<Element>) => void;
|
|
9132
9132
|
onBlur: FocusEventHandler;
|
|
9133
|
-
focusedAction:
|
|
9133
|
+
focusedAction: "selectItem" | Action;
|
|
9134
9134
|
focusedItem: Item | undefined;
|
|
9135
|
-
setFocusedAction: Dispatch<SetStateAction<
|
|
9135
|
+
setFocusedAction: Dispatch<SetStateAction<"selectItem" | Action>>;
|
|
9136
9136
|
setFocusedIndex: Dispatch<SetStateAction<number | undefined>>;
|
|
9137
9137
|
};
|
|
9138
9138
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-kit",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.17.0-alpha.0",
|
|
4
4
|
"description": "GoodData SDK - UI Building Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
"tslib": "2.8.1",
|
|
77
77
|
"unified": "^11.0.5",
|
|
78
78
|
"uuid": "^11.1.0",
|
|
79
|
-
"@gooddata/sdk-backend-spi": "11.
|
|
80
|
-
"@gooddata/
|
|
81
|
-
"@gooddata/sdk-ui
|
|
82
|
-
"@gooddata/sdk-ui": "11.
|
|
83
|
-
"@gooddata/
|
|
79
|
+
"@gooddata/sdk-backend-spi": "11.17.0-alpha.0",
|
|
80
|
+
"@gooddata/util": "11.17.0-alpha.0",
|
|
81
|
+
"@gooddata/sdk-ui": "11.17.0-alpha.0",
|
|
82
|
+
"@gooddata/sdk-ui-theme-provider": "11.17.0-alpha.0",
|
|
83
|
+
"@gooddata/sdk-model": "11.17.0-alpha.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@gooddata/stylelint-config": "^5.0.0",
|
|
@@ -130,9 +130,9 @@
|
|
|
130
130
|
"typescript": "5.9.3",
|
|
131
131
|
"vitest": "4.0.8",
|
|
132
132
|
"vitest-dom": "0.1.1",
|
|
133
|
-
"@gooddata/sdk-backend-mockingbird": "11.
|
|
134
|
-
"@gooddata/reference-workspace": "11.
|
|
135
|
-
"@gooddata/eslint-config": "11.
|
|
133
|
+
"@gooddata/sdk-backend-mockingbird": "11.17.0-alpha.0",
|
|
134
|
+
"@gooddata/reference-workspace": "11.17.0-alpha.0",
|
|
135
|
+
"@gooddata/eslint-config": "11.17.0-alpha.0"
|
|
136
136
|
},
|
|
137
137
|
"peerDependencies": {
|
|
138
138
|
"react": "^18.0.0 || ^19.0.0",
|