@transferwise/components 46.107.0 → 46.108.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 (82) hide show
  1. package/build/header/Header.js +1 -0
  2. package/build/header/Header.js.map +1 -1
  3. package/build/header/Header.mjs +1 -0
  4. package/build/header/Header.mjs.map +1 -1
  5. package/build/link/Link.js +6 -2
  6. package/build/link/Link.js.map +1 -1
  7. package/build/link/Link.mjs +6 -2
  8. package/build/link/Link.mjs.map +1 -1
  9. package/build/listItem/ListItem.js +20 -8
  10. package/build/listItem/ListItem.js.map +1 -1
  11. package/build/listItem/ListItem.mjs +20 -8
  12. package/build/listItem/ListItem.mjs.map +1 -1
  13. package/build/listItem/ListItemContext.js.map +1 -1
  14. package/build/listItem/ListItemContext.mjs.map +1 -1
  15. package/build/listItem/Navigation/ListItemNavigation.js +1 -3
  16. package/build/listItem/Navigation/ListItemNavigation.js.map +1 -1
  17. package/build/listItem/Navigation/ListItemNavigation.mjs +2 -4
  18. package/build/listItem/Navigation/ListItemNavigation.mjs.map +1 -1
  19. package/build/listItem/Prompt/InlinePrompt/InlinePrompt.js +74 -0
  20. package/build/listItem/Prompt/InlinePrompt/InlinePrompt.js.map +1 -0
  21. package/build/listItem/Prompt/InlinePrompt/InlinePrompt.mjs +72 -0
  22. package/build/listItem/Prompt/InlinePrompt/InlinePrompt.mjs.map +1 -0
  23. package/build/listItem/Prompt/ListItemPrompt.js +10 -15
  24. package/build/listItem/Prompt/ListItemPrompt.js.map +1 -1
  25. package/build/listItem/Prompt/ListItemPrompt.mjs +11 -16
  26. package/build/listItem/Prompt/ListItemPrompt.mjs.map +1 -1
  27. package/build/main.css +94 -74
  28. package/build/styles/link/Link.css +7 -0
  29. package/build/styles/listItem/ListItem.css +87 -74
  30. package/build/styles/listItem/Prompt/InlinePrompt/InlinePrompt.css +153 -0
  31. package/build/styles/listItem/Prompt/ListItemPrompt.css +72 -72
  32. package/build/styles/main.css +94 -74
  33. package/build/types/header/Header.d.ts +1 -0
  34. package/build/types/header/Header.d.ts.map +1 -1
  35. package/build/types/link/Link.d.ts +1 -1
  36. package/build/types/link/Link.d.ts.map +1 -1
  37. package/build/types/listItem/ListItem.d.ts +10 -1
  38. package/build/types/listItem/ListItem.d.ts.map +1 -1
  39. package/build/types/listItem/ListItemContext.d.ts +2 -1
  40. package/build/types/listItem/ListItemContext.d.ts.map +1 -1
  41. package/build/types/listItem/Navigation/ListItemNavigation.d.ts.map +1 -1
  42. package/build/types/listItem/Prompt/InlinePrompt/InlinePrompt.d.ts +15 -0
  43. package/build/types/listItem/Prompt/InlinePrompt/InlinePrompt.d.ts.map +1 -0
  44. package/build/types/listItem/Prompt/InlinePrompt/index.d.ts +3 -0
  45. package/build/types/listItem/Prompt/InlinePrompt/index.d.ts.map +1 -0
  46. package/build/types/listItem/Prompt/ListItemPrompt.d.ts +4 -6
  47. package/build/types/listItem/Prompt/ListItemPrompt.d.ts.map +1 -1
  48. package/build/types/listItem/_stories/helpers.d.ts.map +1 -1
  49. package/build/types/listItem/_stories/subcomponents.d.ts +1 -0
  50. package/build/types/listItem/_stories/subcomponents.d.ts.map +1 -1
  51. package/build/types/listItem/useListItemControl.d.ts +1 -1
  52. package/package.json +3 -3
  53. package/src/header/Header.story.tsx +14 -0
  54. package/src/header/Header.tsx +2 -0
  55. package/src/link/Link.css +7 -0
  56. package/src/link/Link.less +8 -0
  57. package/src/link/Link.spec.tsx +28 -0
  58. package/src/link/Link.story.tsx +72 -16
  59. package/src/link/Link.tsx +5 -1
  60. package/src/listItem/ListItem.css +87 -74
  61. package/src/listItem/ListItem.less +19 -4
  62. package/src/listItem/ListItem.spec.tsx +33 -0
  63. package/src/listItem/ListItem.tsx +38 -12
  64. package/src/listItem/ListItemContext.tsx +2 -1
  65. package/src/listItem/Navigation/ListItemNavigation.spec.tsx +1 -10
  66. package/src/listItem/Navigation/ListItemNavigation.story.tsx +0 -22
  67. package/src/listItem/Navigation/ListItemNavigation.tsx +2 -3
  68. package/src/listItem/Prompt/InlinePrompt/InlinePrompt.css +153 -0
  69. package/src/listItem/Prompt/InlinePrompt/InlinePrompt.less +162 -0
  70. package/src/listItem/Prompt/InlinePrompt/InlinePrompt.spec.tsx +66 -0
  71. package/src/listItem/Prompt/InlinePrompt/InlinePrompt.tsx +56 -0
  72. package/src/listItem/Prompt/InlinePrompt/index.ts +2 -0
  73. package/src/listItem/Prompt/ListItemPrompt.css +72 -72
  74. package/src/listItem/Prompt/ListItemPrompt.less +2 -130
  75. package/src/listItem/Prompt/ListItemPrompt.spec.tsx +36 -0
  76. package/src/listItem/Prompt/ListItemPrompt.story.tsx +4 -2
  77. package/src/listItem/Prompt/ListItemPrompt.tsx +14 -14
  78. package/src/listItem/_stories/ListItem.disabled.story.tsx +433 -0
  79. package/src/listItem/_stories/ListItem.story.tsx +1 -177
  80. package/src/listItem/_stories/helpers.tsx +1 -0
  81. package/src/listItem/_stories/subcomponents.tsx +5 -0
  82. package/src/main.css +94 -74
@@ -58,6 +58,7 @@ export default {
58
58
  valueTitle: '100 GBP',
59
59
  valueSubtitle: '100 USD',
60
60
  disabled: false,
61
+ disabledPromptMessage: undefined,
61
62
  spotlight: undefined,
62
63
  inverted: false,
63
64
  valueColumnWidth: undefined,
@@ -564,183 +565,6 @@ export const Interactivity: StoryObj<PreviewStoryArgs> = storySourceWithoutNoise
564
565
  },
565
566
  });
566
567
 
567
- /**
568
- * While most disabled states will show as grayed out, the navigation control switches from chevron
569
- * to a new icon for improved user experience and accessibility. <br />
570
- * For the same reason, only the control part of the List Item is dimmed, while all the content
571
- * retains high contrast and interactivity.
572
- *
573
- * Please refer to the [design documentation](https://wise.design/components/list-item#accessibility:~:text=-,Disabled%20states,-) for more details
574
- */
575
- export const Disabled: Story = {
576
- parameters: {
577
- docs: {
578
- canvas: {
579
- sourceState: 'hidden',
580
- },
581
- },
582
- controls: { disable: true },
583
- knobs: { disable: true },
584
- },
585
- render: (args) => (
586
- <List>
587
- <ListItem
588
- disabled
589
- media={
590
- <ListItem.AvatarView>
591
- <MultiCurrency />
592
- </ListItem.AvatarView>
593
- }
594
- title="Navigation"
595
- subtitle={lorem5}
596
- control={<ListItem.Navigation onClick={() => {}} />}
597
- />
598
- <ListItem
599
- disabled
600
- media={
601
- <ListItem.AvatarView>
602
- <MultiCurrency />
603
- </ListItem.AvatarView>
604
- }
605
- title="Button secondary neutral"
606
- subtitle={lorem5}
607
- control={<ListItem.Button priority="secondary-neutral">Secondary Neutral</ListItem.Button>}
608
- />
609
- <ListItem
610
- disabled
611
- media={
612
- <ListItem.AvatarView>
613
- <MultiCurrency />
614
- </ListItem.AvatarView>
615
- }
616
- title="Button primary"
617
- subtitle={lorem5}
618
- control={<ListItem.Button priority="primary">Primary</ListItem.Button>}
619
- />
620
- <ListItem
621
- disabled
622
- media={
623
- <ListItem.AvatarView>
624
- <MultiCurrency />
625
- </ListItem.AvatarView>
626
- }
627
- title="Button tertiary"
628
- subtitle={lorem5}
629
- control={<ListItem.Button priority="tertiary">Tertiary</ListItem.Button>}
630
- />
631
- <ListItem
632
- disabled
633
- media={
634
- <ListItem.AvatarView>
635
- <MultiCurrency />
636
- </ListItem.AvatarView>
637
- }
638
- title="Icon Button"
639
- subtitle={lorem5}
640
- control={
641
- <ListItem.IconButton>
642
- <Plus />
643
- </ListItem.IconButton>
644
- }
645
- />
646
- <ListItem
647
- disabled
648
- media={
649
- <ListItem.AvatarView>
650
- <MultiCurrency />
651
- </ListItem.AvatarView>
652
- }
653
- title="Checkbox"
654
- subtitle={lorem5}
655
- control={<ListItem.Checkbox />}
656
- />
657
- <ListItem
658
- disabled
659
- media={
660
- <ListItem.AvatarView>
661
- <MultiCurrency />
662
- </ListItem.AvatarView>
663
- }
664
- title="Checkbox checked"
665
- subtitle={lorem5}
666
- control={<ListItem.Checkbox checked />}
667
- />
668
- <ListItem
669
- disabled
670
- media={
671
- <ListItem.AvatarView>
672
- <MultiCurrency />
673
- </ListItem.AvatarView>
674
- }
675
- title="Checkbox indeterminate"
676
- subtitle={lorem5}
677
- control={<ListItem.Checkbox indeterminate />}
678
- />
679
- <ListItem
680
- disabled
681
- media={
682
- <ListItem.AvatarView>
683
- <MultiCurrency />
684
- </ListItem.AvatarView>
685
- }
686
- title="Switch on"
687
- subtitle={lorem5}
688
- control={<ListItem.Switch checked onClick={() => {}} />}
689
- />
690
- <ListItem
691
- disabled
692
- media={
693
- <ListItem.AvatarView>
694
- <MultiCurrency />
695
- </ListItem.AvatarView>
696
- }
697
- title="Switch off"
698
- subtitle={lorem5}
699
- control={<ListItem.Switch onClick={() => {}} />}
700
- />
701
- <ListItem
702
- disabled
703
- media={
704
- <ListItem.AvatarView>
705
- <MultiCurrency />
706
- </ListItem.AvatarView>
707
- }
708
- title="Switch off"
709
- subtitle={lorem5}
710
- control={<ListItem.Radio name="radio" checked />}
711
- />
712
- <ListItem
713
- disabled
714
- media={
715
- <ListItem.AvatarView>
716
- <MultiCurrency />
717
- </ListItem.AvatarView>
718
- }
719
- title="Switch off"
720
- subtitle={lorem5}
721
- control={<ListItem.Radio name="radios" />}
722
- />
723
- <ListItem
724
- disabled
725
- media={
726
- <ListItem.AvatarView>
727
- <MultiCurrency />
728
- </ListItem.AvatarView>
729
- }
730
- title="Switch off"
731
- subtitle={lorem5}
732
- additionalInfo={ADDITIONAL_INFO.interactive}
733
- prompt={PROMPTS.interactive}
734
- control={
735
- <ListItem.Button partiallyInteractive onClick={() => {}}>
736
- Click me
737
- </ListItem.Button>
738
- }
739
- />
740
- </List>
741
- ),
742
- };
743
-
744
568
  /**
745
569
  * For backwards compatibility, all of the ListItem's content elements accept `ReactNode`.
746
570
  * That said, most of them should be fed with plain text only. The exception is `valueTitle`
@@ -43,6 +43,7 @@ export const withoutKey: Decorator = (Story, { args }) => {
43
43
  const key = [
44
44
  args.previewInteractivity,
45
45
  args?.disabled ? 'disabled' : 'enabled',
46
+ args?.disabledPromptMessage ? 'withReason' : 'withoutReason',
46
47
  args?.inverted ? 'desc' : 'asc',
47
48
  ].join('-');
48
49
 
@@ -144,6 +144,11 @@ export const SB_LIST_ITEM_MEDIA = {
144
144
  src="https://wise.com/public-resources/assets/spend/card-asset/medium/v2/personal_green_wise_2023_active.svg"
145
145
  />
146
146
  ),
147
+ avatarFlag: (
148
+ <ListItem.AvatarView>
149
+ <Flag code="de" />
150
+ </ListItem.AvatarView>
151
+ ),
147
152
  avatarSingle: (
148
153
  <ListItem.AvatarView>
149
154
  <Briefcase />
package/src/main.css CHANGED
@@ -3026,10 +3026,8 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
3026
3026
  margin-top: var(--size-4);
3027
3027
  }
3028
3028
  }
3029
- .wds-list-item-prompt {
3030
- grid-area: prompt;
3029
+ .wds-inline-prompt {
3031
3030
  display: inline-flex;
3032
- justify-self: start;
3033
3031
  text-align: left;
3034
3032
  padding-top: calc(8px / 2);
3035
3033
  padding-top: calc(var(--padding-x-small) / 2);
@@ -3044,33 +3042,27 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
3044
3042
  word-break: break-word;
3045
3043
  word-wrap: break-word;
3046
3044
  }
3047
- .wds-list-item-prompt:has(a),
3048
- .wds-list-item-prompt:has(button) {
3045
+ .wds-inline-prompt:has(a),
3046
+ .wds-inline-prompt:has(button) {
3049
3047
  position: relative;
3050
3048
  z-index: 1;
3051
3049
  }
3052
- .wds-list-item-prompt a,
3053
- .wds-list-item-prompt button {
3050
+ .wds-inline-prompt--muted {
3051
+ opacity: 0.93;
3052
+ filter: grayscale(1);
3053
+ }
3054
+ .wds-inline-prompt a,
3055
+ .wds-inline-prompt button {
3054
3056
  text-underline-offset: calc(4px / 2);
3055
3057
  text-underline-offset: calc(var(--size-4) / 2);
3056
3058
  }
3057
- .wds-list-item-prompt a:first-of-type:before,
3058
- .wds-list-item-prompt button:first-of-type:before {
3059
+ .wds-inline-prompt a:first-of-type:before,
3060
+ .wds-inline-prompt button:first-of-type:before {
3059
3061
  content: '';
3060
3062
  position: absolute;
3061
3063
  inset: 0;
3062
3064
  }
3063
- .wds-list-item-prompt.np-prompt-icon {
3064
- padding-left: calc(8px - 1px);
3065
- padding-left: calc(var(--padding-x-small) - 1px);
3066
- padding-right: 8px;
3067
- padding-right: var(--padding-x-small);
3068
- display: inline-flex;
3069
- align-items: center;
3070
- gap: 4px;
3071
- gap: var(--size-4);
3072
- }
3073
- .wds-list-item-prompt .np-prompt-icon {
3065
+ .wds-inline-prompt__media-wrapper {
3074
3066
  padding-right: calc(12px / 2);
3075
3067
  padding-right: calc(var(--size-12) / 2);
3076
3068
  padding-top: calc(4px - 1px);
@@ -3078,111 +3070,119 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
3078
3070
  padding-bottom: calc(4px - 1px);
3079
3071
  padding-bottom: calc(var(--size-4) - 1px);
3080
3072
  }
3081
- .wds-list-item-prompt .np-prompt-icon .tw-icon-tags,
3082
- .wds-list-item-prompt .np-prompt-icon .tw-icon-confetti {
3073
+ .wds-inline-prompt__media-wrapper .tw-icon-tags,
3074
+ .wds-inline-prompt__media-wrapper .tw-icon-confetti {
3083
3075
  color: var(--color-sentiment-positive-primary);
3084
3076
  }
3085
- .wds-list-item-prompt.negative {
3077
+ .wds-inline-prompt--negative {
3086
3078
  background-color: var(--color-sentiment-negative-secondary);
3087
3079
  color: var(--color-sentiment-negative-primary);
3088
3080
  }
3089
- .wds-list-item-prompt.negative a,
3090
- .wds-list-item-prompt.negative button {
3081
+ .wds-inline-prompt--negative a,
3082
+ .wds-inline-prompt--negative button {
3091
3083
  color: var(--color-sentiment-negative-primary);
3092
3084
  }
3093
- .wds-list-item-prompt.negative a:hover,
3094
- .wds-list-item-prompt.negative button:hover {
3085
+ .wds-inline-prompt--negative a:hover,
3086
+ .wds-inline-prompt--negative button:hover {
3095
3087
  color: var(--color-sentiment-negative-primary-hover);
3096
3088
  }
3097
- .wds-list-item-prompt.negative a:active,
3098
- .wds-list-item-prompt.negative button:active {
3089
+ .wds-inline-prompt--negative a:active,
3090
+ .wds-inline-prompt--negative button:active {
3099
3091
  color: var(--color-sentiment-negative-primary-active);
3100
3092
  }
3101
- .wds-list-item-prompt.wds-list-item-prompt.negative:has(a, button):hover {
3093
+ .wds-inline-prompt.wds-inline-prompt--negative:has(a, button):hover {
3102
3094
  background-color: var(--color-sentiment-negative-secondary-hover);
3103
3095
  }
3104
- .wds-list-item-prompt.wds-list-item-prompt.negative:has(a, button):active {
3096
+ .wds-inline-prompt.wds-inline-prompt--negative:has(a, button):active {
3105
3097
  background-color: var(--color-sentiment-negative-secondary-active);
3106
3098
  }
3107
- .wds-list-item-prompt.positive,
3108
- .wds-list-item-prompt.discount,
3109
- .wds-list-item-prompt.savings {
3099
+ .wds-inline-prompt--positive {
3110
3100
  background-color: var(--color-sentiment-positive-secondary);
3111
3101
  color: var(--color-sentiment-positive-primary);
3112
3102
  }
3113
- .wds-list-item-prompt.positive a,
3114
- .wds-list-item-prompt.discount a,
3115
- .wds-list-item-prompt.savings a,
3116
- .wds-list-item-prompt.positive button,
3117
- .wds-list-item-prompt.discount button,
3118
- .wds-list-item-prompt.savings button {
3103
+ .wds-inline-prompt--positive a,
3104
+ .wds-inline-prompt--positive button {
3119
3105
  color: var(--color-sentiment-positive-primary);
3120
3106
  }
3121
- .wds-list-item-prompt.positive a:hover,
3122
- .wds-list-item-prompt.discount a:hover,
3123
- .wds-list-item-prompt.savings a:hover,
3124
- .wds-list-item-prompt.positive button:hover,
3125
- .wds-list-item-prompt.discount button:hover,
3126
- .wds-list-item-prompt.savings button:hover {
3107
+ .wds-inline-prompt--positive a:hover,
3108
+ .wds-inline-prompt--positive button:hover {
3127
3109
  color: var(--color-sentiment-positive-primary-hover);
3128
3110
  }
3129
- .wds-list-item-prompt.positive a:active,
3130
- .wds-list-item-prompt.discount a:active,
3131
- .wds-list-item-prompt.savings a:active,
3132
- .wds-list-item-prompt.positive button:active,
3133
- .wds-list-item-prompt.discount button:active,
3134
- .wds-list-item-prompt.savings button:active {
3111
+ .wds-inline-prompt--positive a:active,
3112
+ .wds-inline-prompt--positive button:active {
3135
3113
  color: var(--color-sentiment-positive-primary-active);
3136
3114
  }
3137
- .wds-list-item-prompt.wds-list-item-prompt.positive:has(a, button):hover,
3138
- .wds-list-item-prompt.wds-list-item-prompt.discount:has(a, button):hover,
3139
- .wds-list-item-prompt.wds-list-item-prompt.savings:has(a, button):hover {
3115
+ .wds-inline-prompt.wds-inline-prompt--positive:has(a, button):hover {
3140
3116
  background-color: var(--color-sentiment-positive-secondary-hover);
3141
3117
  }
3142
- .wds-list-item-prompt.wds-list-item-prompt.positive:has(a, button):active,
3143
- .wds-list-item-prompt.wds-list-item-prompt.discount:has(a, button):active,
3144
- .wds-list-item-prompt.wds-list-item-prompt.savings:has(a, button):active {
3118
+ .wds-inline-prompt.wds-inline-prompt--positive:has(a, button):active {
3145
3119
  background-color: var(--color-sentiment-positive-secondary-active);
3146
3120
  }
3147
- .wds-list-item-prompt.neutral {
3121
+ .wds-inline-prompt--proposition {
3122
+ background-color: var(--color-sentiment-positive-secondary);
3123
+ color: var(--color-sentiment-positive-primary);
3124
+ }
3125
+ .wds-inline-prompt--proposition a,
3126
+ .wds-inline-prompt--proposition button {
3127
+ color: var(--color-sentiment-positive-primary);
3128
+ }
3129
+ .wds-inline-prompt--proposition a:hover,
3130
+ .wds-inline-prompt--proposition button:hover {
3131
+ color: var(--color-sentiment-positive-primary-hover);
3132
+ }
3133
+ .wds-inline-prompt--proposition a:active,
3134
+ .wds-inline-prompt--proposition button:active {
3135
+ color: var(--color-sentiment-positive-primary-active);
3136
+ }
3137
+ .wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):hover {
3138
+ background-color: var(--color-sentiment-positive-secondary-hover);
3139
+ }
3140
+ .wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):active {
3141
+ background-color: var(--color-sentiment-positive-secondary-active);
3142
+ }
3143
+ .wds-inline-prompt--neutral {
3148
3144
  background-color: rgba(134,167,189,0.10196);
3149
3145
  background-color: var(--color-background-neutral);
3150
3146
  color: #37517e;
3151
3147
  color: var(--color-content-primary);
3152
3148
  }
3153
- .wds-list-item-prompt.neutral a,
3154
- .wds-list-item-prompt.neutral button {
3149
+ .wds-inline-prompt--neutral a,
3150
+ .wds-inline-prompt--neutral button {
3155
3151
  color: #37517e;
3156
3152
  color: var(--color-content-primary);
3157
3153
  }
3158
- .wds-list-item-prompt.wds-list-item-prompt.neutral:has(a, button):hover {
3154
+ .wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):hover {
3159
3155
  background-color: var(--color-background-neutral-hover);
3160
3156
  }
3161
- .wds-list-item-prompt.wds-list-item-prompt.neutral:has(a, button):active {
3157
+ .wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):active {
3162
3158
  background-color: var(--color-background-neutral-active);
3163
3159
  }
3164
- .wds-list-item-prompt.warning {
3160
+ .wds-inline-prompt--warning {
3165
3161
  background-color: var(--color-sentiment-warning-secondary);
3166
3162
  color: var(--color-sentiment-warning-content);
3167
3163
  }
3168
- .wds-list-item-prompt.warning a,
3169
- .wds-list-item-prompt.warning button {
3164
+ .wds-inline-prompt--warning a,
3165
+ .wds-inline-prompt--warning button {
3170
3166
  color: var(--color-sentiment-warning-content);
3171
3167
  }
3172
- .wds-list-item-prompt.warning a:hover,
3173
- .wds-list-item-prompt.warning button:hover {
3168
+ .wds-inline-prompt--warning a:hover,
3169
+ .wds-inline-prompt--warning button:hover {
3174
3170
  color: var(--color-sentiment-warning-content-hover);
3175
3171
  }
3176
- .wds-list-item-prompt.warning a:active,
3177
- .wds-list-item-prompt.warning button:active {
3172
+ .wds-inline-prompt--warning a:active,
3173
+ .wds-inline-prompt--warning button:active {
3178
3174
  color: var(--color-sentiment-warning-content-active);
3179
3175
  }
3180
- .wds-list-item-prompt.wds-list-item-prompt.warning:has(a, button):hover {
3176
+ .wds-inline-prompt.wds-inline-prompt--warning:has(a, button):hover {
3181
3177
  background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 92%, var(--color-sentiment-warning-primary));
3182
3178
  }
3183
- .wds-list-item-prompt.wds-list-item-prompt.warning:has(a, button):active {
3179
+ .wds-inline-prompt.wds-inline-prompt--warning:has(a, button):active {
3184
3180
  background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 84%, var(--color-sentiment-warning-primary));
3185
3181
  }
3182
+ .wds-list-item-prompt {
3183
+ grid-area: prompt;
3184
+ justify-self: start;
3185
+ }
3186
3186
  .wds-list-item {
3187
3187
  list-style: none;
3188
3188
  width: 100%;
@@ -3364,16 +3364,29 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
3364
3364
  flex: 0 0 auto;
3365
3365
  }
3366
3366
  .wds-list-item.disabled {
3367
- filter: none;
3368
3367
  opacity: 1;
3368
+ opacity: initial;
3369
3369
  }
3370
+ .wds-list-item.disabled,
3370
3371
  .wds-list-item.disabled label {
3371
3372
  cursor: not-allowed;
3372
3373
  }
3373
- .wds-list-item.disabled .tw-icon-backslash-circle {
3374
+ .wds-list-item.disabled .wds-list-item-title,
3375
+ .wds-list-item.disabled .wds-list-item-title-value,
3376
+ .wds-list-item.disabled .wds-list-item-subtitle,
3377
+ .wds-list-item.disabled .wds-list-item-subtitle-value,
3378
+ .wds-list-item.disabled .wds-list-item-additional-info {
3374
3379
  color: #768e9c;
3375
3380
  color: var(--color-content-tertiary);
3376
3381
  }
3382
+ .wds-list-item.disabled .wds-list-item-media,
3383
+ .wds-list-item.disabled .wds-list-item-body,
3384
+ .wds-list-item.disabled .wds-list-item-additional-info {
3385
+ opacity: 0.93;
3386
+ }
3387
+ .wds-list-item.disabled--has-prompt-reason .wds-list-item-prompt {
3388
+ opacity: 0.93;
3389
+ }
3377
3390
  .wds-list-item-spotlight {
3378
3391
  padding-left: 12px;
3379
3392
  padding-left: var(--size-12);
@@ -3932,6 +3945,13 @@ button.np-link {
3932
3945
  margin-left: 0;
3933
3946
  margin-left: initial;
3934
3947
  }
3948
+ .np-link.np-link--disabled,
3949
+ .np-link:disabled {
3950
+ filter: none;
3951
+ mix-blend-mode: luminosity;
3952
+ opacity: 0.45;
3953
+ cursor: not-allowed;
3954
+ }
3935
3955
  :root {
3936
3956
  --coin-colour: #1c3108;
3937
3957
  --coin-size: 4.5rem;