@gooddata/sdk-ui-kit 11.39.0-alpha.3 → 11.39.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.
Files changed (46) hide show
  1. package/esm/@ui/@types/icon.d.ts +1 -1
  2. package/esm/@ui/UiAddGranteeDialog/UiAddGranteeDialog.d.ts +39 -0
  3. package/esm/@ui/UiAddGranteeDialog/UiAddGranteeDialog.js +30 -0
  4. package/esm/@ui/UiAvatar/UiAvatar.d.ts +40 -0
  5. package/esm/@ui/UiAvatar/UiAvatar.js +19 -0
  6. package/esm/@ui/UiButton/UiButton.d.ts +1 -1
  7. package/esm/@ui/UiDialogShell/UiDialogFooter.d.ts +1 -1
  8. package/esm/@ui/UiDialogShell/UiDialogHeader.d.ts +1 -1
  9. package/esm/@ui/UiDialogShell/UiDialogShell.d.ts +10 -10
  10. package/esm/@ui/UiDialogShell/UiDialogShell.js +2 -2
  11. package/esm/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.d.ts +32 -0
  12. package/esm/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.js +22 -0
  13. package/esm/@ui/UiGranteeAvatar/UiGranteeAvatar.d.ts +30 -0
  14. package/esm/@ui/UiGranteeAvatar/UiGranteeAvatar.js +25 -0
  15. package/esm/@ui/UiGranteeRow/UiGranteeRow.d.ts +26 -0
  16. package/esm/@ui/UiGranteeRow/UiGranteeRow.js +19 -0
  17. package/esm/@ui/UiIcon/icons.js +1 -0
  18. package/esm/@ui/UiMenu/hooks.js +2 -4
  19. package/esm/@ui/UiObjectShareDialog/UiObjectShareDialog.d.ts +57 -0
  20. package/esm/@ui/UiObjectShareDialog/UiObjectShareDialog.js +28 -0
  21. package/esm/@ui/UiRadio/UiRadio.d.ts +40 -0
  22. package/esm/@ui/UiRadio/UiRadio.js +23 -0
  23. package/esm/@ui/UiRadioRow/UiRadioRow.d.ts +33 -0
  24. package/esm/@ui/UiRadioRow/UiRadioRow.js +19 -0
  25. package/esm/@ui/UiTextInput/UiTextInput.d.ts +55 -0
  26. package/esm/@ui/UiTextInput/UiTextInput.js +24 -0
  27. package/esm/index.d.ts +9 -0
  28. package/esm/index.js +9 -0
  29. package/esm/locales.d.ts +61 -0
  30. package/esm/locales.js +27 -0
  31. package/esm/sdk-ui-kit.d.ts +374 -14
  32. package/package.json +11 -11
  33. package/src/@ui/UiAddGranteeDialog/UiAddGranteeDialog.scss +22 -0
  34. package/src/@ui/UiAvatar/UiAvatar.scss +22 -0
  35. package/src/@ui/UiDialogShell/UiDialogShell.scss +0 -1
  36. package/src/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.scss +8 -0
  37. package/src/@ui/UiGranteeRow/UiGranteeRow.scss +36 -0
  38. package/src/@ui/UiObjectShareDialog/UiObjectShareDialog.scss +12 -0
  39. package/src/@ui/UiRadio/UiRadio.scss +63 -0
  40. package/src/@ui/UiRadioRow/UiRadioRow.scss +44 -0
  41. package/src/@ui/UiSectionHeading/UiSectionHeading.scss +0 -1
  42. package/src/@ui/UiTextInput/UiTextInput.scss +68 -0
  43. package/src/@ui/index.scss +17 -0
  44. package/src/FilterGroupItem/FilterGroupItem.scss +13 -24
  45. package/styles/css/main.css +285 -20
  46. package/styles/css/main.css.map +1 -1
@@ -0,0 +1,36 @@
1
+ // (C) 2026 GoodData Corporation
2
+
3
+ .gd-ui-kit-grantee-row {
4
+ display: flex;
5
+ align-items: center;
6
+ gap: var(--gd-spacing-10px);
7
+ width: 100%;
8
+ min-height: 50px;
9
+ padding: var(--gd-spacing-5px) 0;
10
+ box-sizing: border-box;
11
+
12
+ &__text {
13
+ flex: 1 1 auto;
14
+ min-width: 0;
15
+ display: flex;
16
+ flex-direction: column;
17
+ line-height: 20px;
18
+ }
19
+
20
+ &__name {
21
+ font-size: 14px;
22
+ font-weight: 700;
23
+ color: var(--gd-palette-complementary-8);
24
+ overflow: hidden;
25
+ text-overflow: ellipsis;
26
+ white-space: nowrap;
27
+ }
28
+
29
+ &__email {
30
+ font-size: 14px;
31
+ color: var(--gd-palette-complementary-6);
32
+ overflow: hidden;
33
+ text-overflow: ellipsis;
34
+ white-space: nowrap;
35
+ }
36
+ }
@@ -0,0 +1,12 @@
1
+ // (C) 2026 GoodData Corporation
2
+
3
+ .gd-ui-kit-object-share-dialog {
4
+ display: flex;
5
+ flex-direction: column;
6
+ gap: var(--gd-spacing-10px);
7
+
8
+ &__grantees {
9
+ display: flex;
10
+ flex-direction: column;
11
+ }
12
+ }
@@ -0,0 +1,63 @@
1
+ // (C) 2026 GoodData Corporation
2
+
3
+ .gd-ui-kit-radio {
4
+ display: inline-flex;
5
+ align-items: center;
6
+ gap: var(--gd-spacing-5px);
7
+
8
+ &__control {
9
+ position: relative;
10
+ display: inline-flex;
11
+ flex-shrink: 0;
12
+ width: 14px;
13
+ height: 14px;
14
+ }
15
+
16
+ &__input {
17
+ position: absolute;
18
+ inset: 0;
19
+ width: 100%;
20
+ height: 100%;
21
+ margin: 0;
22
+ opacity: 0;
23
+ cursor: pointer;
24
+
25
+ &:disabled {
26
+ cursor: not-allowed;
27
+ }
28
+ }
29
+
30
+ &__circle {
31
+ width: 14px;
32
+ height: 14px;
33
+ border-radius: 50%;
34
+ border: 1px solid var(--gd-palette-complementary-5);
35
+ background-color: var(--gd-palette-complementary-0);
36
+ box-sizing: border-box;
37
+ pointer-events: none;
38
+ transition:
39
+ border-width 60ms ease-out,
40
+ border-color 60ms ease-out;
41
+
42
+ &--checked {
43
+ border-color: var(--gd-palette-primary-base);
44
+ border-width: 4px;
45
+ }
46
+
47
+ &--disabled {
48
+ border-color: var(--gd-palette-complementary-4);
49
+ background-color: var(--gd-palette-complementary-2);
50
+ }
51
+ }
52
+
53
+ &__input:focus-visible + &__circle {
54
+ box-shadow: 0 0 0 2px var(--gd-palette-primary-focus);
55
+ }
56
+
57
+ &__label {
58
+ font-size: 14px;
59
+ line-height: 20px;
60
+ color: var(--gd-palette-complementary-8);
61
+ cursor: pointer;
62
+ }
63
+ }
@@ -0,0 +1,44 @@
1
+ // (C) 2026 GoodData Corporation
2
+
3
+ .gd-ui-kit-radio-row {
4
+ display: flex;
5
+ align-items: center;
6
+ gap: var(--gd-spacing-10px);
7
+ width: 100%;
8
+ min-height: 50px;
9
+ padding: var(--gd-spacing-5px) 0;
10
+ box-sizing: border-box;
11
+
12
+ &__text {
13
+ flex: 1 1 auto;
14
+ min-width: 0;
15
+ display: flex;
16
+ flex-direction: column;
17
+ line-height: 20px;
18
+ }
19
+
20
+ &__title {
21
+ font-size: 14px;
22
+ font-weight: 700;
23
+ color: var(--gd-palette-complementary-8);
24
+ cursor: pointer;
25
+ }
26
+
27
+ &--disabled &__title {
28
+ cursor: not-allowed;
29
+ }
30
+
31
+ &__description {
32
+ font-size: 14px;
33
+ color: var(--gd-palette-complementary-6);
34
+ overflow: hidden;
35
+ text-overflow: ellipsis;
36
+ white-space: nowrap;
37
+ }
38
+
39
+ &__trailing {
40
+ flex-shrink: 0;
41
+ display: inline-flex;
42
+ align-items: center;
43
+ }
44
+ }
@@ -4,7 +4,6 @@
4
4
  display: flex;
5
5
  align-items: center;
6
6
  gap: var(--gd-spacing-15px);
7
- font-family: var(--gd-font-family);
8
7
 
9
8
  &__label {
10
9
  font-size: 11px;
@@ -0,0 +1,68 @@
1
+ // (C) 2026 GoodData Corporation
2
+
3
+ .gd-ui-kit-text-input {
4
+ display: flex;
5
+ flex-direction: column;
6
+ gap: var(--gd-spacing-5px);
7
+
8
+ &__label {
9
+ font-size: 14px;
10
+ line-height: 21px;
11
+ color: var(--gd-palette-complementary-7);
12
+ }
13
+
14
+ &__field {
15
+ display: flex;
16
+ align-items: center;
17
+ height: 32px;
18
+ padding: 0 var(--gd-spacing-7px);
19
+ border: 1px solid var(--gd-palette-complementary-4);
20
+ border-radius: 3px;
21
+ background-color: var(--gd-palette-complementary-0);
22
+ box-shadow: inset 0 1px 2px var(--gd-shadow-color);
23
+
24
+ &:focus-within {
25
+ border-color: var(--gd-palette-primary-base);
26
+ }
27
+
28
+ &--disabled {
29
+ background-color: var(--gd-palette-complementary-2);
30
+ cursor: not-allowed;
31
+ }
32
+ }
33
+
34
+ &__icon-before {
35
+ display: inline-flex;
36
+ align-items: center;
37
+ flex-shrink: 0;
38
+ margin-right: var(--gd-spacing-5px);
39
+ }
40
+
41
+ &__icon-after {
42
+ display: inline-flex;
43
+ align-items: center;
44
+ flex-shrink: 0;
45
+ margin-left: var(--gd-spacing-5px);
46
+ }
47
+
48
+ &__input {
49
+ flex: 1 1 auto;
50
+ min-width: 0;
51
+ height: 100%;
52
+ padding: 0;
53
+ border: none;
54
+ background: transparent;
55
+ font-family: inherit;
56
+ font-size: 14px;
57
+ color: var(--gd-palette-complementary-8);
58
+ outline: none;
59
+
60
+ &::placeholder {
61
+ color: var(--gd-palette-complementary-5);
62
+ }
63
+
64
+ &:disabled {
65
+ cursor: not-allowed;
66
+ }
67
+ }
68
+ }
@@ -33,3 +33,20 @@
33
33
  @use "./UiSectionHeading/UiSectionHeading.scss";
34
34
  @use "./UiDialogShell/UiDialogShell.scss";
35
35
  @use "./UiConfirmDialog/UiConfirmDialog.scss";
36
+ @use "./UiTextInput/UiTextInput.scss";
37
+ @use "./UiRadio/UiRadio.scss";
38
+ @use "./UiRadioRow/UiRadioRow.scss";
39
+ @use "./UiAvatar/UiAvatar.scss";
40
+ @use "./UiGranteeRow/UiGranteeRow.scss";
41
+ @use "./UiObjectShareDialog/UiObjectShareDialog.scss";
42
+ @use "./UiAddGranteeDialog/UiAddGranteeDialog.scss";
43
+ @use "./UiGeneralAccessRadio/UiGeneralAccessRadio.scss";
44
+
45
+ // `--gd-font-family` is a `:root` variable only; there is no global `body` font
46
+ // declaration. Apply it once to every kit root so standalone components don't
47
+ // fall back to the browser default (e.g. Times New Roman), rather than each
48
+ // component redeclaring it.
49
+ [class^="gd-ui-kit-"],
50
+ [class*=" gd-ui-kit-"] {
51
+ font-family: var(--gd-font-family);
52
+ }
@@ -20,7 +20,6 @@
20
20
  }
21
21
 
22
22
  .gd-filter-group-item-chevron {
23
- transition: transform 0.8s ease;
24
23
  padding-right: 4px;
25
24
  color: variables.$gd-color-state-blank;
26
25
  }
@@ -28,11 +27,10 @@
28
27
  &:not(.error, .gd-is-disabled):hover,
29
28
  &.gd-is-active {
30
29
  background-color: variables.$is-focused-background;
30
+ }
31
31
 
32
- &::before {
33
- transform: translateX(0) scaleX(1);
34
- opacity: 1;
35
- }
32
+ &.gd-is-active:not(.gd-is-disabled):hover {
33
+ background-color: variables.$gd-palette-primary-dimmed;
36
34
  }
37
35
 
38
36
  &::before {
@@ -43,30 +41,16 @@
43
41
  width: 4px;
44
42
  height: 100%;
45
43
  background-color: variables.$gd-palette-primary-base;
46
- transform: translateX(-2px) scaleX(0);
47
44
  opacity: 0;
48
- transition:
49
- transform 0.2s ease,
50
- opacity 0.2s ease;
51
45
  }
52
46
 
53
- &:not(.error, .gd-is-disabled):hover .gd-filter-group-item-chevron,
54
- &.gd-is-active .gd-filter-group-item-chevron {
55
- transform: translateX(4px);
47
+ &.gd-is-active::before {
48
+ opacity: 1;
56
49
  }
57
50
 
58
- &.gd-is-active:not(.error, .gd-is-disabled):hover {
59
- background-color: variables.$gd-palette-primary-dimmed;
60
-
61
- &::before {
62
- transform: translateX(-2px) scaleX(0);
63
- opacity: 0;
64
- }
65
-
66
- .gd-filter-group-item-chevron {
67
- transform: translateX(0);
68
- animation: none;
69
- }
51
+ &:not(.error, .gd-is-active, .gd-is-disabled):hover::before {
52
+ background-color: var(--gd-palette-complementary-5-t40, rgba(176, 190, 202, 0.6));
53
+ opacity: 1;
70
54
  }
71
55
 
72
56
  &.error:not(.gd-is-active) {
@@ -75,6 +59,11 @@
75
59
  .gd-filter-group-item-icon {
76
60
  color: variables.$gd-palette-error-base;
77
61
  }
62
+
63
+ &:not(.gd-is-disabled):hover::before {
64
+ background-color: var(--gd-palette-error-base-t85, rgba(229, 77, 66, 0.15));
65
+ opacity: 1;
66
+ }
78
67
  }
79
68
 
80
69
  &.error.gd-is-active .gd-filter-group-item-icon {
@@ -3323,7 +3323,6 @@
3323
3323
  display: flex;
3324
3324
  align-items: center;
3325
3325
  gap: var(--gd-spacing-15px);
3326
- font-family: var(--gd-font-family);
3327
3326
  }
3328
3327
  .gd-ui-kit-section-heading__label {
3329
3328
  font-size: 11px;
@@ -3349,7 +3348,6 @@
3349
3348
  flex-direction: column;
3350
3349
  padding: var(--gd-spacing-20px);
3351
3350
  background-color: var(--gd-palette-complementary-0);
3352
- font-family: var(--gd-font-family);
3353
3351
  border-radius: var(--gd-modal-borderRadius);
3354
3352
  box-shadow: 0 2px 8px var(--gd-shadow-color);
3355
3353
  }
@@ -3406,6 +3404,280 @@
3406
3404
  margin-bottom: var(--gd-spacing-20px);
3407
3405
  }
3408
3406
 
3407
+ .gd-ui-kit-text-input {
3408
+ display: flex;
3409
+ flex-direction: column;
3410
+ gap: var(--gd-spacing-5px);
3411
+ }
3412
+ .gd-ui-kit-text-input__label {
3413
+ font-size: 14px;
3414
+ line-height: 21px;
3415
+ color: var(--gd-palette-complementary-7);
3416
+ }
3417
+ .gd-ui-kit-text-input__field {
3418
+ display: flex;
3419
+ align-items: center;
3420
+ height: 32px;
3421
+ padding: 0 var(--gd-spacing-7px);
3422
+ border: 1px solid var(--gd-palette-complementary-4);
3423
+ border-radius: 3px;
3424
+ background-color: var(--gd-palette-complementary-0);
3425
+ box-shadow: inset 0 1px 2px var(--gd-shadow-color);
3426
+ }
3427
+ .gd-ui-kit-text-input__field:focus-within {
3428
+ border-color: var(--gd-palette-primary-base);
3429
+ }
3430
+ .gd-ui-kit-text-input__field--disabled {
3431
+ background-color: var(--gd-palette-complementary-2);
3432
+ cursor: not-allowed;
3433
+ }
3434
+ .gd-ui-kit-text-input__icon-before {
3435
+ display: inline-flex;
3436
+ align-items: center;
3437
+ flex-shrink: 0;
3438
+ margin-right: var(--gd-spacing-5px);
3439
+ }
3440
+ .gd-ui-kit-text-input__icon-after {
3441
+ display: inline-flex;
3442
+ align-items: center;
3443
+ flex-shrink: 0;
3444
+ margin-left: var(--gd-spacing-5px);
3445
+ }
3446
+ .gd-ui-kit-text-input__input {
3447
+ flex: 1 1 auto;
3448
+ min-width: 0;
3449
+ height: 100%;
3450
+ padding: 0;
3451
+ border: none;
3452
+ background: transparent;
3453
+ font-family: inherit;
3454
+ font-size: 14px;
3455
+ color: var(--gd-palette-complementary-8);
3456
+ outline: none;
3457
+ }
3458
+ .gd-ui-kit-text-input__input::placeholder {
3459
+ color: var(--gd-palette-complementary-5);
3460
+ }
3461
+ .gd-ui-kit-text-input__input:disabled {
3462
+ cursor: not-allowed;
3463
+ }
3464
+
3465
+ .gd-ui-kit-radio {
3466
+ display: inline-flex;
3467
+ align-items: center;
3468
+ gap: var(--gd-spacing-5px);
3469
+ }
3470
+ .gd-ui-kit-radio__control {
3471
+ position: relative;
3472
+ display: inline-flex;
3473
+ flex-shrink: 0;
3474
+ width: 14px;
3475
+ height: 14px;
3476
+ }
3477
+ .gd-ui-kit-radio__input {
3478
+ position: absolute;
3479
+ inset: 0;
3480
+ width: 100%;
3481
+ height: 100%;
3482
+ margin: 0;
3483
+ opacity: 0;
3484
+ cursor: pointer;
3485
+ }
3486
+ .gd-ui-kit-radio__input:disabled {
3487
+ cursor: not-allowed;
3488
+ }
3489
+ .gd-ui-kit-radio__circle {
3490
+ width: 14px;
3491
+ height: 14px;
3492
+ border-radius: 50%;
3493
+ border: 1px solid var(--gd-palette-complementary-5);
3494
+ background-color: var(--gd-palette-complementary-0);
3495
+ box-sizing: border-box;
3496
+ pointer-events: none;
3497
+ transition: border-width 60ms ease-out, border-color 60ms ease-out;
3498
+ }
3499
+ .gd-ui-kit-radio__circle--checked {
3500
+ border-color: var(--gd-palette-primary-base);
3501
+ border-width: 4px;
3502
+ }
3503
+ .gd-ui-kit-radio__circle--disabled {
3504
+ border-color: var(--gd-palette-complementary-4);
3505
+ background-color: var(--gd-palette-complementary-2);
3506
+ }
3507
+ .gd-ui-kit-radio__input:focus-visible + .gd-ui-kit-radio__circle {
3508
+ box-shadow: 0 0 0 2px var(--gd-palette-primary-focus);
3509
+ }
3510
+ .gd-ui-kit-radio__label {
3511
+ font-size: 14px;
3512
+ line-height: 20px;
3513
+ color: var(--gd-palette-complementary-8);
3514
+ cursor: pointer;
3515
+ }
3516
+
3517
+ .gd-ui-kit-radio-row {
3518
+ display: flex;
3519
+ align-items: center;
3520
+ gap: var(--gd-spacing-10px);
3521
+ width: 100%;
3522
+ min-height: 50px;
3523
+ padding: var(--gd-spacing-5px) 0;
3524
+ box-sizing: border-box;
3525
+ }
3526
+ .gd-ui-kit-radio-row__text {
3527
+ flex: 1 1 auto;
3528
+ min-width: 0;
3529
+ display: flex;
3530
+ flex-direction: column;
3531
+ line-height: 20px;
3532
+ }
3533
+ .gd-ui-kit-radio-row__title {
3534
+ font-size: 14px;
3535
+ font-weight: 700;
3536
+ color: var(--gd-palette-complementary-8);
3537
+ cursor: pointer;
3538
+ }
3539
+ .gd-ui-kit-radio-row--disabled .gd-ui-kit-radio-row__title {
3540
+ cursor: not-allowed;
3541
+ }
3542
+ .gd-ui-kit-radio-row__description {
3543
+ font-size: 14px;
3544
+ color: var(--gd-palette-complementary-6);
3545
+ overflow: hidden;
3546
+ text-overflow: ellipsis;
3547
+ white-space: nowrap;
3548
+ }
3549
+ .gd-ui-kit-radio-row__trailing {
3550
+ flex-shrink: 0;
3551
+ display: inline-flex;
3552
+ align-items: center;
3553
+ }
3554
+
3555
+ .gd-ui-kit-avatar {
3556
+ display: inline-flex;
3557
+ align-items: center;
3558
+ justify-content: center;
3559
+ flex-shrink: 0;
3560
+ border-radius: 50%;
3561
+ width: var(--gd-avatar-size);
3562
+ height: var(--gd-avatar-size);
3563
+ background-color: var(--gd-avatar-background-color);
3564
+ }
3565
+ .gd-ui-kit-avatar--background-primary {
3566
+ --gd-avatar-background-color: var(--gd-palette-primary-base);
3567
+ }
3568
+ .gd-ui-kit-avatar--background-success {
3569
+ --gd-avatar-background-color: var(--gd-palette-success-base);
3570
+ }
3571
+ .gd-ui-kit-avatar--background-warning {
3572
+ --gd-avatar-background-color: var(--gd-palette-warning-base);
3573
+ }
3574
+ .gd-ui-kit-avatar--background-error {
3575
+ --gd-avatar-background-color: var(--gd-palette-error-base);
3576
+ }
3577
+ .gd-ui-kit-avatar--background-complementary-0 {
3578
+ --gd-avatar-background-color: var(--gd-palette-complementary-0);
3579
+ }
3580
+ .gd-ui-kit-avatar--background-complementary-1 {
3581
+ --gd-avatar-background-color: var(--gd-palette-complementary-1);
3582
+ }
3583
+ .gd-ui-kit-avatar--background-complementary-2 {
3584
+ --gd-avatar-background-color: var(--gd-palette-complementary-2);
3585
+ }
3586
+ .gd-ui-kit-avatar--background-complementary-3 {
3587
+ --gd-avatar-background-color: var(--gd-palette-complementary-3);
3588
+ }
3589
+ .gd-ui-kit-avatar--background-complementary-4 {
3590
+ --gd-avatar-background-color: var(--gd-palette-complementary-4);
3591
+ }
3592
+ .gd-ui-kit-avatar--background-complementary-5 {
3593
+ --gd-avatar-background-color: var(--gd-palette-complementary-5);
3594
+ }
3595
+ .gd-ui-kit-avatar--background-complementary-6 {
3596
+ --gd-avatar-background-color: var(--gd-palette-complementary-6);
3597
+ }
3598
+ .gd-ui-kit-avatar--background-complementary-7 {
3599
+ --gd-avatar-background-color: var(--gd-palette-complementary-7);
3600
+ }
3601
+ .gd-ui-kit-avatar--background-complementary-8 {
3602
+ --gd-avatar-background-color: var(--gd-palette-complementary-8);
3603
+ }
3604
+ .gd-ui-kit-avatar--background-complementary-9 {
3605
+ --gd-avatar-background-color: var(--gd-palette-complementary-9);
3606
+ }
3607
+
3608
+ .gd-ui-kit-grantee-row {
3609
+ display: flex;
3610
+ align-items: center;
3611
+ gap: var(--gd-spacing-10px);
3612
+ width: 100%;
3613
+ min-height: 50px;
3614
+ padding: var(--gd-spacing-5px) 0;
3615
+ box-sizing: border-box;
3616
+ }
3617
+ .gd-ui-kit-grantee-row__text {
3618
+ flex: 1 1 auto;
3619
+ min-width: 0;
3620
+ display: flex;
3621
+ flex-direction: column;
3622
+ line-height: 20px;
3623
+ }
3624
+ .gd-ui-kit-grantee-row__name {
3625
+ font-size: 14px;
3626
+ font-weight: 700;
3627
+ color: var(--gd-palette-complementary-8);
3628
+ overflow: hidden;
3629
+ text-overflow: ellipsis;
3630
+ white-space: nowrap;
3631
+ }
3632
+ .gd-ui-kit-grantee-row__email {
3633
+ font-size: 14px;
3634
+ color: var(--gd-palette-complementary-6);
3635
+ overflow: hidden;
3636
+ text-overflow: ellipsis;
3637
+ white-space: nowrap;
3638
+ }
3639
+
3640
+ .gd-ui-kit-object-share-dialog {
3641
+ display: flex;
3642
+ flex-direction: column;
3643
+ gap: var(--gd-spacing-10px);
3644
+ }
3645
+ .gd-ui-kit-object-share-dialog__grantees {
3646
+ display: flex;
3647
+ flex-direction: column;
3648
+ }
3649
+
3650
+ .gd-ui-kit-add-grantee-dialog {
3651
+ display: flex;
3652
+ flex-direction: column;
3653
+ gap: var(--gd-spacing-10px);
3654
+ padding-bottom: var(--gd-spacing-5px);
3655
+ }
3656
+ .gd-ui-kit-add-grantee-dialog__preview {
3657
+ display: flex;
3658
+ align-items: center;
3659
+ min-height: 50px;
3660
+ }
3661
+ .gd-ui-kit-add-grantee-dialog__empty-state {
3662
+ flex: 1 1 auto;
3663
+ text-align: center;
3664
+ font-size: 14px;
3665
+ line-height: 20px;
3666
+ color: var(--gd-palette-complementary-6);
3667
+ }
3668
+
3669
+ .gd-ui-kit-general-access-radio {
3670
+ display: flex;
3671
+ flex-direction: column;
3672
+ width: 100%;
3673
+ box-sizing: border-box;
3674
+ }
3675
+
3676
+ [class^=gd-ui-kit-],
3677
+ [class*=" gd-ui-kit-"] {
3678
+ font-family: var(--gd-font-family);
3679
+ }
3680
+
3409
3681
  .sr-only {
3410
3682
  position: absolute;
3411
3683
  width: 1px;
@@ -13598,16 +13870,14 @@ input[type=search]::-webkit-search-cancel-button {
13598
13870
  cursor: pointer;
13599
13871
  }
13600
13872
  .gd-filter-group-item .gd-filter-group-item-chevron {
13601
- transition: transform 0.8s ease;
13602
13873
  padding-right: 4px;
13603
13874
  color: var(--gd-palette-complementary-6, #94a1ad);
13604
13875
  }
13605
13876
  .gd-filter-group-item:not(.error, .gd-is-disabled):hover, .gd-filter-group-item.gd-is-active {
13606
13877
  background-color: var(--gd-palette-complementary-2, #ebeff4);
13607
13878
  }
13608
- .gd-filter-group-item:not(.error, .gd-is-disabled):hover::before, .gd-filter-group-item.gd-is-active::before {
13609
- transform: translateX(0) scaleX(1);
13610
- opacity: 1;
13879
+ .gd-filter-group-item.gd-is-active:not(.gd-is-disabled):hover {
13880
+ background-color: var(--gd-palette-primary-dimmed, #e8f7fc);
13611
13881
  }
13612
13882
  .gd-filter-group-item::before {
13613
13883
  content: "";
@@ -13617,23 +13887,14 @@ input[type=search]::-webkit-search-cancel-button {
13617
13887
  width: 4px;
13618
13888
  height: 100%;
13619
13889
  background-color: var(--gd-palette-primary-base, #14b2e2);
13620
- transform: translateX(-2px) scaleX(0);
13621
13890
  opacity: 0;
13622
- transition: transform 0.2s ease, opacity 0.2s ease;
13623
- }
13624
- .gd-filter-group-item:not(.error, .gd-is-disabled):hover .gd-filter-group-item-chevron, .gd-filter-group-item.gd-is-active .gd-filter-group-item-chevron {
13625
- transform: translateX(4px);
13626
- }
13627
- .gd-filter-group-item.gd-is-active:not(.error, .gd-is-disabled):hover {
13628
- background-color: var(--gd-palette-primary-dimmed, #e8f7fc);
13629
13891
  }
13630
- .gd-filter-group-item.gd-is-active:not(.error, .gd-is-disabled):hover::before {
13631
- transform: translateX(-2px) scaleX(0);
13632
- opacity: 0;
13892
+ .gd-filter-group-item.gd-is-active::before {
13893
+ opacity: 1;
13633
13894
  }
13634
- .gd-filter-group-item.gd-is-active:not(.error, .gd-is-disabled):hover .gd-filter-group-item-chevron {
13635
- transform: translateX(0);
13636
- animation: none;
13895
+ .gd-filter-group-item:not(.error, .gd-is-active, .gd-is-disabled):hover::before {
13896
+ background-color: var(--gd-palette-complementary-5-t40, rgba(176, 190, 202, 0.6));
13897
+ opacity: 1;
13637
13898
  }
13638
13899
  .gd-filter-group-item.error:not(.gd-is-active) {
13639
13900
  background-color: var(--gd-palette-error-dimmed, #fcedec);
@@ -13641,6 +13902,10 @@ input[type=search]::-webkit-search-cancel-button {
13641
13902
  .gd-filter-group-item.error:not(.gd-is-active) .gd-filter-group-item-icon {
13642
13903
  color: var(--gd-palette-error-base, #e54d42);
13643
13904
  }
13905
+ .gd-filter-group-item.error:not(.gd-is-active):not(.gd-is-disabled):hover::before {
13906
+ background-color: var(--gd-palette-error-base-t85, rgba(229, 77, 66, 0.15));
13907
+ opacity: 1;
13908
+ }
13644
13909
  .gd-filter-group-item.error.gd-is-active .gd-filter-group-item-icon {
13645
13910
  color: #94a1ad;
13646
13911
  }