@gooddata/sdk-ui-kit 11.48.0-alpha.2 → 11.48.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.
- package/esm/@ui/@types/variant.d.ts +5 -0
- package/esm/@ui/@types/variant.d.ts.map +1 -1
- package/esm/@ui/UiAsyncTable/UiAsyncTable/UiAsyncTable.d.ts.map +1 -1
- package/esm/@ui/UiAsyncTable/UiAsyncTable/UiAsyncTable.js +2 -2
- package/esm/@ui/UiAsyncTable/types.d.ts +1 -0
- package/esm/@ui/UiAsyncTable/types.d.ts.map +1 -1
- package/esm/@ui/UiButton/UiButton.d.ts +2 -2
- package/esm/@ui/UiButton/UiButton.d.ts.map +1 -1
- package/esm/@ui/UiIcon/icons.d.ts.map +1 -1
- package/esm/@ui/UiIcon/icons.js +1 -1
- package/esm/@ui/UiListbox/UiListbox.d.ts +1 -1
- package/esm/@ui/UiListbox/UiListbox.d.ts.map +1 -1
- package/esm/@ui/UiListbox/UiListbox.js +11 -4
- package/esm/@ui/UiListbox/defaults/DefaultUiListboxStaticItemComponent.d.ts +0 -11
- package/esm/@ui/UiListbox/defaults/DefaultUiListboxStaticItemComponent.d.ts.map +1 -1
- package/esm/@ui/UiListbox/defaults/DefaultUiListboxStaticItemComponent.js +1 -15
- package/esm/@ui/UiListbox/types.d.ts +7 -2
- package/esm/@ui/UiListbox/types.d.ts.map +1 -1
- package/esm/@ui/UiMenu/components/Item.d.ts.map +1 -1
- package/esm/@ui/UiMenu/components/Item.js +4 -0
- package/esm/@ui/UiMenu/components/MenuDivider.d.ts +8 -0
- package/esm/@ui/UiMenu/components/MenuDivider.d.ts.map +1 -0
- package/esm/@ui/UiMenu/components/MenuDivider.js +10 -0
- package/esm/@ui/UiMenu/hooks.d.ts.map +1 -1
- package/esm/@ui/UiMenu/hooks.js +3 -2
- package/esm/@ui/UiMenu/itemUtils.d.ts +17 -0
- package/esm/@ui/UiMenu/itemUtils.d.ts.map +1 -1
- package/esm/@ui/UiMenu/itemUtils.js +38 -1
- package/esm/@ui/UiMenu/types.d.ts +11 -1
- package/esm/@ui/UiMenu/types.d.ts.map +1 -1
- package/esm/@ui/UiTabs/defaultComponents/DefaultUiTabsAllTabs.d.ts.map +1 -1
- package/esm/@ui/UiTabs/defaultComponents/DefaultUiTabsAllTabs.js +4 -3
- package/esm/@ui/UiTabs/defaultComponents/DefaultUiTabsTabActions.js +4 -4
- package/esm/@ui/UiTabs/defaultComponents/DefaultUiTabsTabActionsButton.d.ts.map +1 -1
- package/esm/@ui/UiTabs/defaultComponents/DefaultUiTabsTabActionsButton.js +2 -1
- package/esm/@ui/UiTabs/itemUtils.d.ts +11 -0
- package/esm/@ui/UiTabs/itemUtils.d.ts.map +1 -0
- package/esm/@ui/UiTabs/itemUtils.js +13 -0
- package/esm/@ui/UiTabs/types.d.ts +2 -2
- package/esm/@ui/UiTabs/types.d.ts.map +1 -1
- package/esm/@ui/UiTags/UiTags.js +1 -1
- package/esm/@ui/UiTooltip/UiTooltip.d.ts +1 -1
- package/esm/@ui/UiTooltip/UiTooltip.d.ts.map +1 -1
- package/esm/@ui/UiTooltip/UiTooltip.js +2 -2
- package/esm/@ui/UiTooltip/types.d.ts +8 -0
- package/esm/@ui/UiTooltip/types.d.ts.map +1 -1
- package/esm/Header/generateHeaderMenuItemsGroups.js +9 -15
- package/esm/index.d.ts +4 -4
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/sdk-ui-kit.d.ts +38 -20
- package/package.json +11 -11
- package/src/@ui/UiAsyncTable/asyncTable.scss +7 -0
- package/src/@ui/UiButton/UiButton.scss +35 -0
- package/src/@ui/UiMenu/UiMenu.scss +3 -1
- package/src/@ui/UiTooltip/UiTooltip.scss +6 -0
- package/styles/css/main.css +34 -1
- package/styles/css/main.css.map +1 -1
- package/styles/css/separatorLine.css +1 -0
- package/styles/css/separatorLine.css.map +1 -1
- package/styles/scss/separatorLine.scss +1 -0
package/esm/sdk-ui-kit.d.ts
CHANGED
|
@@ -6033,11 +6033,6 @@ export declare interface ISpinnerProps {
|
|
|
6033
6033
|
className?: string;
|
|
6034
6034
|
}
|
|
6035
6035
|
|
|
6036
|
-
/**
|
|
6037
|
-
* @internal
|
|
6038
|
-
*/
|
|
6039
|
-
export declare function isSeparator(item: unknown): item is typeof separatorStaticItem;
|
|
6040
|
-
|
|
6041
6036
|
/**
|
|
6042
6037
|
* Checks if the given keyboard event is triggered by a Space key.
|
|
6043
6038
|
*
|
|
@@ -6544,6 +6539,7 @@ export declare interface IUiAsyncTableProps<T extends {
|
|
|
6544
6539
|
renderItem?: (item: T) => ReactNode;
|
|
6545
6540
|
renderHeader?: () => ReactNode;
|
|
6546
6541
|
renderEmptyState?: () => ReactNode;
|
|
6542
|
+
hideHeader?: boolean;
|
|
6547
6543
|
locale?: string;
|
|
6548
6544
|
accessibilityConfig?: IUiAsyncTableAccessibilityConfig<T>;
|
|
6549
6545
|
}
|
|
@@ -6715,7 +6711,7 @@ export declare interface IUiButtonAccessibilityConfig extends IAccessibilityConf
|
|
|
6715
6711
|
export declare interface IUiButtonProps {
|
|
6716
6712
|
id?: string;
|
|
6717
6713
|
size?: SizeSmall | SizeMedium | SizeLarge;
|
|
6718
|
-
variant?: VariantPrimary | VariantSecondary | VariantTertiary | VariantPopOut | VariantDanger | VariantTooltip | VariantLink | VariantDropdownInline;
|
|
6714
|
+
variant?: VariantPrimary | VariantSecondary | VariantTertiary | VariantPopOut | VariantDanger | VariantTooltip | VariantLink | VariantLinkDimmed | VariantDropdownInline;
|
|
6719
6715
|
disableIconAnimation?: boolean;
|
|
6720
6716
|
iconBefore?: IconType;
|
|
6721
6717
|
iconBeforeSize?: number;
|
|
@@ -7768,7 +7764,7 @@ export declare interface IUiListboxInteractiveItemProps<T> {
|
|
|
7768
7764
|
/**
|
|
7769
7765
|
* @internal
|
|
7770
7766
|
*/
|
|
7771
|
-
export declare type IUiListboxItem<InteractiveItemData, StaticItemData = ReactNode> = IUiListboxStaticItem<StaticItemData> | IUiListboxInteractiveItem<InteractiveItemData>;
|
|
7767
|
+
export declare type IUiListboxItem<InteractiveItemData, StaticItemData = ReactNode> = IUiListboxStaticItem<StaticItemData> | IUiListboxSeparatorItem | IUiListboxInteractiveItem<InteractiveItemData>;
|
|
7772
7768
|
|
|
7773
7769
|
/**
|
|
7774
7770
|
* @internal
|
|
@@ -7776,7 +7772,7 @@ export declare type IUiListboxItem<InteractiveItemData, StaticItemData = ReactNo
|
|
|
7776
7772
|
export declare interface IUiListboxProps<InteractiveItemData, StaticItemData = ReactNode> {
|
|
7777
7773
|
items: IUiListboxItem<InteractiveItemData, StaticItemData>[];
|
|
7778
7774
|
dataTestId?: string;
|
|
7779
|
-
itemDataTestId?: string | ((item:
|
|
7775
|
+
itemDataTestId?: string | ((item: IUiListboxStaticItem<StaticItemData> | IUiListboxInteractiveItem<InteractiveItemData>) => string | undefined);
|
|
7780
7776
|
width?: number;
|
|
7781
7777
|
maxWidth?: number;
|
|
7782
7778
|
maxHeight?: number;
|
|
@@ -7798,6 +7794,11 @@ export declare interface IUiListboxProps<InteractiveItemData, StaticItemData = R
|
|
|
7798
7794
|
reference?: RefObject<HTMLUListElement | null>;
|
|
7799
7795
|
}
|
|
7800
7796
|
|
|
7797
|
+
/**
|
|
7798
|
+
* @internal
|
|
7799
|
+
*/
|
|
7800
|
+
export declare type IUiListboxSeparatorItem = IUiMenuSeparatorItem;
|
|
7801
|
+
|
|
7801
7802
|
/**
|
|
7802
7803
|
* @internal
|
|
7803
7804
|
*/
|
|
@@ -7951,7 +7952,7 @@ export declare interface IUiMenuInteractiveItemWrapperProps<T extends IUiMenuIte
|
|
|
7951
7952
|
/**
|
|
7952
7953
|
* @internal
|
|
7953
7954
|
*/
|
|
7954
|
-
export declare type IUiMenuItem<T extends IUiMenuItemData = object> = IUiMenuStaticItem<T> | IUiMenuInteractiveItem<T> | IUiMenuGroupItem<T> | IUiMenuContentItem<T>;
|
|
7955
|
+
export declare type IUiMenuItem<T extends IUiMenuItemData = object> = IUiMenuStaticItem<T> | IUiMenuSeparatorItem | IUiMenuInteractiveItem<T> | IUiMenuGroupItem<T> | IUiMenuContentItem<T>;
|
|
7955
7956
|
|
|
7956
7957
|
/**
|
|
7957
7958
|
* @internal
|
|
@@ -8008,6 +8009,17 @@ export declare interface IUiMenuProps<T extends IUiMenuItemData = object, M = ob
|
|
|
8008
8009
|
menuCtxData?: M;
|
|
8009
8010
|
}
|
|
8010
8011
|
|
|
8012
|
+
/**
|
|
8013
|
+
* Renders as the design-system menu divider. Dangling separators (leading, trailing, or adjacent
|
|
8014
|
+
* after conditional items drop out) are collapsed automatically.
|
|
8015
|
+
*
|
|
8016
|
+
* @internal
|
|
8017
|
+
*/
|
|
8018
|
+
export declare type IUiMenuSeparatorItem = {
|
|
8019
|
+
type: "separator";
|
|
8020
|
+
id?: string;
|
|
8021
|
+
};
|
|
8022
|
+
|
|
8011
8023
|
/**
|
|
8012
8024
|
* @internal
|
|
8013
8025
|
*/
|
|
@@ -8573,7 +8585,7 @@ export declare type IUiTab<TTabProps extends Record<any, any> = EmptyObject, TTa
|
|
|
8573
8585
|
* When provided, used instead of `label` for the `aria-label` attribute.
|
|
8574
8586
|
*/
|
|
8575
8587
|
ariaLabel?: string;
|
|
8576
|
-
actions?: Array<IUiTabAction<TTabProps, TTabActionProps> |
|
|
8588
|
+
actions?: Array<IUiTabAction<TTabProps, TTabActionProps> | IUiMenuSeparatorItem>;
|
|
8577
8589
|
} & TTabProps;
|
|
8578
8590
|
|
|
8579
8591
|
/**
|
|
@@ -8985,6 +8997,14 @@ export declare interface IUiTooltipProps {
|
|
|
8985
8997
|
* `isOpen` to drive the tooltip from the parent.
|
|
8986
8998
|
*/
|
|
8987
8999
|
onOpenChange?: (open: boolean) => void;
|
|
9000
|
+
/**
|
|
9001
|
+
* When true, the anchor wrapper collapses to its content and centers it
|
|
9002
|
+
* (`display: inline-flex; align-items: center`). Use for inline/icon anchors that would
|
|
9003
|
+
* otherwise ride high on the wrapper's block line-box. `anchorWrapperStyles` still applies
|
|
9004
|
+
* on top and can override.
|
|
9005
|
+
* @defaultValue false
|
|
9006
|
+
*/
|
|
9007
|
+
inlineAnchor?: boolean;
|
|
8988
9008
|
/**
|
|
8989
9009
|
* Custom styles for the anchor wrapper element
|
|
8990
9010
|
*/
|
|
@@ -10045,14 +10065,6 @@ export declare type Separators = {
|
|
|
10045
10065
|
decimal: string;
|
|
10046
10066
|
};
|
|
10047
10067
|
|
|
10048
|
-
/**
|
|
10049
|
-
* @internal
|
|
10050
|
-
*/
|
|
10051
|
-
export declare const separatorStaticItem: {
|
|
10052
|
-
data: JSX.Element;
|
|
10053
|
-
type: "static";
|
|
10054
|
-
};
|
|
10055
|
-
|
|
10056
10068
|
/**
|
|
10057
10069
|
* @internal
|
|
10058
10070
|
*/
|
|
@@ -10960,7 +10972,7 @@ export declare function UiLink({ variant, flipUnderline, fullWidth, isDisabled,
|
|
|
10960
10972
|
*
|
|
10961
10973
|
* @internal
|
|
10962
10974
|
*/
|
|
10963
|
-
export declare function UiListbox<InteractiveItemData, StaticItemData>({ items, dataTestId, itemDataTestId, width, maxWidth, maxHeight, onSelect, onClose, onUnhandledKeyDown, selectedItemId, InteractiveItemComponent, StaticItemComponent, shouldKeyboardActionPreventDefault, shouldKeyboardActionStopPropagation, shouldCloseOnSelect, isDisabledFocusable, isCompact, reference, ariaAttributes }: IUiListboxProps<InteractiveItemData, StaticItemData>): ReactNode;
|
|
10975
|
+
export declare function UiListbox<InteractiveItemData, StaticItemData>({ items: rawItems, dataTestId, itemDataTestId, width, maxWidth, maxHeight, onSelect, onClose, onUnhandledKeyDown, selectedItemId, InteractiveItemComponent, StaticItemComponent, shouldKeyboardActionPreventDefault, shouldKeyboardActionStopPropagation, shouldCloseOnSelect, isDisabledFocusable, isCompact, reference, ariaAttributes }: IUiListboxProps<InteractiveItemData, StaticItemData>): ReactNode;
|
|
10964
10976
|
|
|
10965
10977
|
/**
|
|
10966
10978
|
* @internal
|
|
@@ -11270,7 +11282,7 @@ export declare function UiToastsContainer({ dataTestId }: IUiToastsContainerProp
|
|
|
11270
11282
|
/**
|
|
11271
11283
|
* @internal
|
|
11272
11284
|
*/
|
|
11273
|
-
export declare function UiTooltip({ id, anchor, content, behaviour, arrowPlacement, triggerBy, hoverOpenDelay, hoverCloseDelay, showArrow, width, offset: offsetProp, optimalPlacement, accessibilityConfig, accessibilityHidden, variant, disabled, isOpen: isOpenProp, onOpen, onClose, onOpenChange, anchorWrapperStyles }: IUiTooltipProps): JSX.Element;
|
|
11285
|
+
export declare function UiTooltip({ id, anchor, content, behaviour, arrowPlacement, triggerBy, hoverOpenDelay, hoverCloseDelay, showArrow, width, offset: offsetProp, optimalPlacement, accessibilityConfig, accessibilityHidden, variant, disabled, isOpen: isOpenProp, onOpen, onClose, onOpenChange, inlineAnchor, anchorWrapperStyles }: IUiTooltipProps): JSX.Element;
|
|
11274
11286
|
|
|
11275
11287
|
/**
|
|
11276
11288
|
* Transfer-ownership dialog — wraps `UiTransferOwnershipDialogCard` in
|
|
@@ -11827,6 +11839,12 @@ export declare type VariantDropdownInline = "dropdownInline";
|
|
|
11827
11839
|
*/
|
|
11828
11840
|
export declare type VariantLink = "link";
|
|
11829
11841
|
|
|
11842
|
+
/**
|
|
11843
|
+
* @internal
|
|
11844
|
+
* Link button variant identical to `link` but in a dimmed/gray tone instead of the primary color.
|
|
11845
|
+
*/
|
|
11846
|
+
export declare type VariantLinkDimmed = "linkDimmed";
|
|
11847
|
+
|
|
11830
11848
|
/**
|
|
11831
11849
|
* @internal
|
|
11832
11850
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-kit",
|
|
3
|
-
"version": "11.48.0-alpha.
|
|
3
|
+
"version": "11.48.0-alpha.4",
|
|
4
4
|
"description": "GoodData SDK - UI Building Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
"tslib": "2.8.1",
|
|
77
77
|
"unified": "^11.0.5",
|
|
78
78
|
"uuid": "11.1.1",
|
|
79
|
-
"@gooddata/sdk-backend-spi": "11.48.0-alpha.
|
|
80
|
-
"@gooddata/sdk-model": "11.48.0-alpha.
|
|
81
|
-
"@gooddata/sdk-ui
|
|
82
|
-
"@gooddata/
|
|
83
|
-
"@gooddata/
|
|
79
|
+
"@gooddata/sdk-backend-spi": "11.48.0-alpha.4",
|
|
80
|
+
"@gooddata/sdk-model": "11.48.0-alpha.4",
|
|
81
|
+
"@gooddata/sdk-ui": "11.48.0-alpha.4",
|
|
82
|
+
"@gooddata/sdk-ui-theme-provider": "11.48.0-alpha.4",
|
|
83
|
+
"@gooddata/util": "11.48.0-alpha.4"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -129,11 +129,11 @@
|
|
|
129
129
|
"typescript": "5.9.3",
|
|
130
130
|
"vitest": "4.1.8",
|
|
131
131
|
"vitest-dom": "0.1.1",
|
|
132
|
-
"@gooddata/eslint-config": "11.48.0-alpha.
|
|
133
|
-
"@gooddata/oxlint-config": "11.48.0-alpha.
|
|
134
|
-
"@gooddata/reference-workspace": "11.48.0-alpha.
|
|
135
|
-
"@gooddata/sdk-backend-mockingbird": "11.48.0-alpha.
|
|
136
|
-
"@gooddata/stylelint-config": "11.48.0-alpha.
|
|
132
|
+
"@gooddata/eslint-config": "11.48.0-alpha.4",
|
|
133
|
+
"@gooddata/oxlint-config": "11.48.0-alpha.4",
|
|
134
|
+
"@gooddata/reference-workspace": "11.48.0-alpha.4",
|
|
135
|
+
"@gooddata/sdk-backend-mockingbird": "11.48.0-alpha.4",
|
|
136
|
+
"@gooddata/stylelint-config": "11.48.0-alpha.4"
|
|
137
137
|
},
|
|
138
138
|
"peerDependencies": {
|
|
139
139
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -30,6 +30,13 @@
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
// Drop the divider under the LAST row only. Rows are wrapped one-per-item by
|
|
34
|
+
// UiPagedVirtualList, so `#{$root}__row:last-child` would match every row; target the last
|
|
35
|
+
// virtual-list item wrapper instead.
|
|
36
|
+
.gd-ui-kit-paged-virtual-list__item:last-child #{$root}__cell {
|
|
37
|
+
border-bottom: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
33
40
|
&__header {
|
|
34
41
|
display: flex;
|
|
35
42
|
height: var(--gd-table-row-height-normal);
|
|
@@ -232,6 +232,41 @@
|
|
|
232
232
|
height: auto;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
|
+
// Same as `link` (underlined, no button chrome, height:auto) but in a dimmed gray tone.
|
|
236
|
+
&-linkDimmed {
|
|
237
|
+
--gd-icon-fill-color: var(--gd-palette-complementary-5);
|
|
238
|
+
color: var(--gd-palette-complementary-7);
|
|
239
|
+
text-decoration: underline;
|
|
240
|
+
border: 0;
|
|
241
|
+
padding: 0;
|
|
242
|
+
height: auto;
|
|
243
|
+
background-color: transparent;
|
|
244
|
+
border-color: transparent;
|
|
245
|
+
|
|
246
|
+
&:not(&:disabled) {
|
|
247
|
+
&:hover,
|
|
248
|
+
&:focus-visible,
|
|
249
|
+
&:active,
|
|
250
|
+
&[aria-expanded="true"],
|
|
251
|
+
&#{$root}--isSelected {
|
|
252
|
+
--gd-icon-fill-color: var(--gd-palette-complementary-6);
|
|
253
|
+
|
|
254
|
+
color: var(--gd-palette-complementary-8);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
&:disabled {
|
|
259
|
+
color: var(--gd-palette-complementary-5);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&#{$root}--hasIconAfter {
|
|
263
|
+
padding-right: 0;
|
|
264
|
+
}
|
|
265
|
+
&#{$root}--hasIconBefore {
|
|
266
|
+
padding-left: 0;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
235
270
|
&-danger {
|
|
236
271
|
--gd-icon-fill-color: var(--gd-palette-complementary-0);
|
|
237
272
|
color: var(--gd-palette-complementary-0);
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
--item-padding-vertical: 4px;
|
|
19
19
|
--item-padding-horizontal: 10px;
|
|
20
20
|
--item-font-size: 12px;
|
|
21
|
+
--item-line-height: 18px;
|
|
21
22
|
--item-height: 26px;
|
|
22
23
|
}
|
|
23
24
|
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
--item-padding-vertical: 8px;
|
|
26
27
|
--item-padding-horizontal: 10px;
|
|
27
28
|
--item-font-size: 14px;
|
|
29
|
+
--item-line-height: 20px;
|
|
28
30
|
--item-height: 36px;
|
|
29
31
|
}
|
|
30
32
|
}
|
|
@@ -152,7 +154,7 @@
|
|
|
152
154
|
display: flex;
|
|
153
155
|
align-items: center;
|
|
154
156
|
font-size: var(--item-font-size);
|
|
155
|
-
line-height: 20px;
|
|
157
|
+
line-height: var(--item-line-height, 20px);
|
|
156
158
|
color: var(--gd-palette-complementary-8);
|
|
157
159
|
transition: background-color 0.2s;
|
|
158
160
|
box-sizing: border-box;
|
package/styles/css/main.css
CHANGED
|
@@ -480,6 +480,29 @@
|
|
|
480
480
|
padding: 0;
|
|
481
481
|
height: auto;
|
|
482
482
|
}
|
|
483
|
+
.gd-ui-kit-button--variant-linkDimmed {
|
|
484
|
+
--gd-icon-fill-color: var(--gd-palette-complementary-5);
|
|
485
|
+
color: var(--gd-palette-complementary-7);
|
|
486
|
+
text-decoration: underline;
|
|
487
|
+
border: 0;
|
|
488
|
+
padding: 0;
|
|
489
|
+
height: auto;
|
|
490
|
+
background-color: transparent;
|
|
491
|
+
border-color: transparent;
|
|
492
|
+
}
|
|
493
|
+
.gd-ui-kit-button--variant-linkDimmed:not(.gd-ui-kit-button--variant-linkDimmed:disabled):hover, .gd-ui-kit-button--variant-linkDimmed:not(.gd-ui-kit-button--variant-linkDimmed:disabled):focus-visible, .gd-ui-kit-button--variant-linkDimmed:not(.gd-ui-kit-button--variant-linkDimmed:disabled):active, .gd-ui-kit-button--variant-linkDimmed:not(.gd-ui-kit-button--variant-linkDimmed:disabled)[aria-expanded=true], .gd-ui-kit-button--variant-linkDimmed:not(.gd-ui-kit-button--variant-linkDimmed:disabled).gd-ui-kit-button--isSelected {
|
|
494
|
+
--gd-icon-fill-color: var(--gd-palette-complementary-6);
|
|
495
|
+
color: var(--gd-palette-complementary-8);
|
|
496
|
+
}
|
|
497
|
+
.gd-ui-kit-button--variant-linkDimmed:disabled {
|
|
498
|
+
color: var(--gd-palette-complementary-5);
|
|
499
|
+
}
|
|
500
|
+
.gd-ui-kit-button--variant-linkDimmed.gd-ui-kit-button--hasIconAfter {
|
|
501
|
+
padding-right: 0;
|
|
502
|
+
}
|
|
503
|
+
.gd-ui-kit-button--variant-linkDimmed.gd-ui-kit-button--hasIconBefore {
|
|
504
|
+
padding-left: 0;
|
|
505
|
+
}
|
|
483
506
|
.gd-ui-kit-button--variant-danger {
|
|
484
507
|
--gd-icon-fill-color: var(--gd-palette-complementary-0);
|
|
485
508
|
color: var(--gd-palette-complementary-0);
|
|
@@ -1822,12 +1845,14 @@
|
|
|
1822
1845
|
--item-padding-vertical: 4px;
|
|
1823
1846
|
--item-padding-horizontal: 10px;
|
|
1824
1847
|
--item-font-size: 12px;
|
|
1848
|
+
--item-line-height: 18px;
|
|
1825
1849
|
--item-height: 26px;
|
|
1826
1850
|
}
|
|
1827
1851
|
.gd-ui-kit-menu--size-medium {
|
|
1828
1852
|
--item-padding-vertical: 8px;
|
|
1829
1853
|
--item-padding-horizontal: 10px;
|
|
1830
1854
|
--item-font-size: 14px;
|
|
1855
|
+
--item-line-height: 20px;
|
|
1831
1856
|
--item-height: 36px;
|
|
1832
1857
|
}
|
|
1833
1858
|
.gd-ui-kit-menu__content-container {
|
|
@@ -1932,7 +1957,7 @@
|
|
|
1932
1957
|
display: flex;
|
|
1933
1958
|
align-items: center;
|
|
1934
1959
|
font-size: var(--item-font-size);
|
|
1935
|
-
line-height: 20px;
|
|
1960
|
+
line-height: var(--item-line-height, 20px);
|
|
1936
1961
|
color: var(--gd-palette-complementary-8);
|
|
1937
1962
|
transition: background-color 0.2s;
|
|
1938
1963
|
box-sizing: border-box;
|
|
@@ -2246,6 +2271,10 @@
|
|
|
2246
2271
|
.gd-ui-kit-tooltip__anchor {
|
|
2247
2272
|
width: fit-content;
|
|
2248
2273
|
}
|
|
2274
|
+
.gd-ui-kit-tooltip__anchor--inline {
|
|
2275
|
+
display: inline-flex;
|
|
2276
|
+
align-items: center;
|
|
2277
|
+
}
|
|
2249
2278
|
.gd-ui-kit-tooltip__arrow {
|
|
2250
2279
|
fill: var(--bg-color);
|
|
2251
2280
|
}
|
|
@@ -2527,6 +2556,9 @@
|
|
|
2527
2556
|
.gd-ui-kit-async-table__row:hover .gd-ui-kit-async-table__cell {
|
|
2528
2557
|
background-color: var(--gd-palette-complementary-2);
|
|
2529
2558
|
}
|
|
2559
|
+
.gd-ui-kit-async-table .gd-ui-kit-paged-virtual-list__item:last-child .gd-ui-kit-async-table__cell {
|
|
2560
|
+
border-bottom: none;
|
|
2561
|
+
}
|
|
2530
2562
|
.gd-ui-kit-async-table__header {
|
|
2531
2563
|
display: flex;
|
|
2532
2564
|
height: var(--gd-table-row-height-normal);
|
|
@@ -13461,6 +13493,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
13461
13493
|
}
|
|
13462
13494
|
|
|
13463
13495
|
.gd-separator {
|
|
13496
|
+
box-sizing: border-box;
|
|
13464
13497
|
display: flex;
|
|
13465
13498
|
justify-content: space-between;
|
|
13466
13499
|
align-items: center;
|