@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.
- package/build/header/Header.js +1 -0
- package/build/header/Header.js.map +1 -1
- package/build/header/Header.mjs +1 -0
- package/build/header/Header.mjs.map +1 -1
- package/build/link/Link.js +6 -2
- package/build/link/Link.js.map +1 -1
- package/build/link/Link.mjs +6 -2
- package/build/link/Link.mjs.map +1 -1
- package/build/listItem/ListItem.js +20 -8
- package/build/listItem/ListItem.js.map +1 -1
- package/build/listItem/ListItem.mjs +20 -8
- package/build/listItem/ListItem.mjs.map +1 -1
- package/build/listItem/ListItemContext.js.map +1 -1
- package/build/listItem/ListItemContext.mjs.map +1 -1
- package/build/listItem/Navigation/ListItemNavigation.js +1 -3
- package/build/listItem/Navigation/ListItemNavigation.js.map +1 -1
- package/build/listItem/Navigation/ListItemNavigation.mjs +2 -4
- package/build/listItem/Navigation/ListItemNavigation.mjs.map +1 -1
- package/build/listItem/Prompt/InlinePrompt/InlinePrompt.js +74 -0
- package/build/listItem/Prompt/InlinePrompt/InlinePrompt.js.map +1 -0
- package/build/listItem/Prompt/InlinePrompt/InlinePrompt.mjs +72 -0
- package/build/listItem/Prompt/InlinePrompt/InlinePrompt.mjs.map +1 -0
- package/build/listItem/Prompt/ListItemPrompt.js +10 -15
- package/build/listItem/Prompt/ListItemPrompt.js.map +1 -1
- package/build/listItem/Prompt/ListItemPrompt.mjs +11 -16
- package/build/listItem/Prompt/ListItemPrompt.mjs.map +1 -1
- package/build/main.css +94 -74
- package/build/styles/link/Link.css +7 -0
- package/build/styles/listItem/ListItem.css +87 -74
- package/build/styles/listItem/Prompt/InlinePrompt/InlinePrompt.css +153 -0
- package/build/styles/listItem/Prompt/ListItemPrompt.css +72 -72
- package/build/styles/main.css +94 -74
- package/build/types/header/Header.d.ts +1 -0
- package/build/types/header/Header.d.ts.map +1 -1
- package/build/types/link/Link.d.ts +1 -1
- package/build/types/link/Link.d.ts.map +1 -1
- package/build/types/listItem/ListItem.d.ts +10 -1
- package/build/types/listItem/ListItem.d.ts.map +1 -1
- package/build/types/listItem/ListItemContext.d.ts +2 -1
- package/build/types/listItem/ListItemContext.d.ts.map +1 -1
- package/build/types/listItem/Navigation/ListItemNavigation.d.ts.map +1 -1
- package/build/types/listItem/Prompt/InlinePrompt/InlinePrompt.d.ts +15 -0
- package/build/types/listItem/Prompt/InlinePrompt/InlinePrompt.d.ts.map +1 -0
- package/build/types/listItem/Prompt/InlinePrompt/index.d.ts +3 -0
- package/build/types/listItem/Prompt/InlinePrompt/index.d.ts.map +1 -0
- package/build/types/listItem/Prompt/ListItemPrompt.d.ts +4 -6
- package/build/types/listItem/Prompt/ListItemPrompt.d.ts.map +1 -1
- package/build/types/listItem/_stories/helpers.d.ts.map +1 -1
- package/build/types/listItem/_stories/subcomponents.d.ts +1 -0
- package/build/types/listItem/_stories/subcomponents.d.ts.map +1 -1
- package/build/types/listItem/useListItemControl.d.ts +1 -1
- package/package.json +3 -3
- package/src/header/Header.story.tsx +14 -0
- package/src/header/Header.tsx +2 -0
- package/src/link/Link.css +7 -0
- package/src/link/Link.less +8 -0
- package/src/link/Link.spec.tsx +28 -0
- package/src/link/Link.story.tsx +72 -16
- package/src/link/Link.tsx +5 -1
- package/src/listItem/ListItem.css +87 -74
- package/src/listItem/ListItem.less +19 -4
- package/src/listItem/ListItem.spec.tsx +33 -0
- package/src/listItem/ListItem.tsx +38 -12
- package/src/listItem/ListItemContext.tsx +2 -1
- package/src/listItem/Navigation/ListItemNavigation.spec.tsx +1 -10
- package/src/listItem/Navigation/ListItemNavigation.story.tsx +0 -22
- package/src/listItem/Navigation/ListItemNavigation.tsx +2 -3
- package/src/listItem/Prompt/InlinePrompt/InlinePrompt.css +153 -0
- package/src/listItem/Prompt/InlinePrompt/InlinePrompt.less +162 -0
- package/src/listItem/Prompt/InlinePrompt/InlinePrompt.spec.tsx +66 -0
- package/src/listItem/Prompt/InlinePrompt/InlinePrompt.tsx +56 -0
- package/src/listItem/Prompt/InlinePrompt/index.ts +2 -0
- package/src/listItem/Prompt/ListItemPrompt.css +72 -72
- package/src/listItem/Prompt/ListItemPrompt.less +2 -130
- package/src/listItem/Prompt/ListItemPrompt.spec.tsx +36 -0
- package/src/listItem/Prompt/ListItemPrompt.story.tsx +4 -2
- package/src/listItem/Prompt/ListItemPrompt.tsx +14 -14
- package/src/listItem/_stories/ListItem.disabled.story.tsx +433 -0
- package/src/listItem/_stories/ListItem.story.tsx +1 -177
- package/src/listItem/_stories/helpers.tsx +1 -0
- package/src/listItem/_stories/subcomponents.tsx +5 -0
- package/src/main.css +94 -74
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
.wds-inline-prompt {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
text-align: left;
|
|
4
|
+
padding-top: calc(8px / 2);
|
|
5
|
+
padding-top: calc(var(--padding-x-small) / 2);
|
|
6
|
+
padding-bottom: calc(8px / 2);
|
|
7
|
+
padding-bottom: calc(var(--padding-x-small) / 2);
|
|
8
|
+
padding-left: calc(8px - 1px);
|
|
9
|
+
padding-left: calc(var(--padding-x-small) - 1px);
|
|
10
|
+
padding-right: 8px;
|
|
11
|
+
padding-right: var(--padding-x-small);
|
|
12
|
+
border-radius: 10px;
|
|
13
|
+
border-radius: var(--radius-small);
|
|
14
|
+
word-break: break-word;
|
|
15
|
+
word-wrap: break-word;
|
|
16
|
+
}
|
|
17
|
+
.wds-inline-prompt:has(a),
|
|
18
|
+
.wds-inline-prompt:has(button) {
|
|
19
|
+
position: relative;
|
|
20
|
+
z-index: 1;
|
|
21
|
+
}
|
|
22
|
+
.wds-inline-prompt--muted {
|
|
23
|
+
opacity: 0.93;
|
|
24
|
+
filter: grayscale(1);
|
|
25
|
+
}
|
|
26
|
+
.wds-inline-prompt a,
|
|
27
|
+
.wds-inline-prompt button {
|
|
28
|
+
text-underline-offset: calc(4px / 2);
|
|
29
|
+
text-underline-offset: calc(var(--size-4) / 2);
|
|
30
|
+
}
|
|
31
|
+
.wds-inline-prompt a:first-of-type:before,
|
|
32
|
+
.wds-inline-prompt button:first-of-type:before {
|
|
33
|
+
content: '';
|
|
34
|
+
position: absolute;
|
|
35
|
+
inset: 0;
|
|
36
|
+
}
|
|
37
|
+
.wds-inline-prompt__media-wrapper {
|
|
38
|
+
padding-right: calc(12px / 2);
|
|
39
|
+
padding-right: calc(var(--size-12) / 2);
|
|
40
|
+
padding-top: calc(4px - 1px);
|
|
41
|
+
padding-top: calc(var(--size-4) - 1px);
|
|
42
|
+
padding-bottom: calc(4px - 1px);
|
|
43
|
+
padding-bottom: calc(var(--size-4) - 1px);
|
|
44
|
+
}
|
|
45
|
+
.wds-inline-prompt__media-wrapper .tw-icon-tags,
|
|
46
|
+
.wds-inline-prompt__media-wrapper .tw-icon-confetti {
|
|
47
|
+
color: var(--color-sentiment-positive-primary);
|
|
48
|
+
}
|
|
49
|
+
.wds-inline-prompt--negative {
|
|
50
|
+
background-color: var(--color-sentiment-negative-secondary);
|
|
51
|
+
color: var(--color-sentiment-negative-primary);
|
|
52
|
+
}
|
|
53
|
+
.wds-inline-prompt--negative a,
|
|
54
|
+
.wds-inline-prompt--negative button {
|
|
55
|
+
color: var(--color-sentiment-negative-primary);
|
|
56
|
+
}
|
|
57
|
+
.wds-inline-prompt--negative a:hover,
|
|
58
|
+
.wds-inline-prompt--negative button:hover {
|
|
59
|
+
color: var(--color-sentiment-negative-primary-hover);
|
|
60
|
+
}
|
|
61
|
+
.wds-inline-prompt--negative a:active,
|
|
62
|
+
.wds-inline-prompt--negative button:active {
|
|
63
|
+
color: var(--color-sentiment-negative-primary-active);
|
|
64
|
+
}
|
|
65
|
+
.wds-inline-prompt.wds-inline-prompt--negative:has(a, button):hover {
|
|
66
|
+
background-color: var(--color-sentiment-negative-secondary-hover);
|
|
67
|
+
}
|
|
68
|
+
.wds-inline-prompt.wds-inline-prompt--negative:has(a, button):active {
|
|
69
|
+
background-color: var(--color-sentiment-negative-secondary-active);
|
|
70
|
+
}
|
|
71
|
+
.wds-inline-prompt--positive {
|
|
72
|
+
background-color: var(--color-sentiment-positive-secondary);
|
|
73
|
+
color: var(--color-sentiment-positive-primary);
|
|
74
|
+
}
|
|
75
|
+
.wds-inline-prompt--positive a,
|
|
76
|
+
.wds-inline-prompt--positive button {
|
|
77
|
+
color: var(--color-sentiment-positive-primary);
|
|
78
|
+
}
|
|
79
|
+
.wds-inline-prompt--positive a:hover,
|
|
80
|
+
.wds-inline-prompt--positive button:hover {
|
|
81
|
+
color: var(--color-sentiment-positive-primary-hover);
|
|
82
|
+
}
|
|
83
|
+
.wds-inline-prompt--positive a:active,
|
|
84
|
+
.wds-inline-prompt--positive button:active {
|
|
85
|
+
color: var(--color-sentiment-positive-primary-active);
|
|
86
|
+
}
|
|
87
|
+
.wds-inline-prompt.wds-inline-prompt--positive:has(a, button):hover {
|
|
88
|
+
background-color: var(--color-sentiment-positive-secondary-hover);
|
|
89
|
+
}
|
|
90
|
+
.wds-inline-prompt.wds-inline-prompt--positive:has(a, button):active {
|
|
91
|
+
background-color: var(--color-sentiment-positive-secondary-active);
|
|
92
|
+
}
|
|
93
|
+
.wds-inline-prompt--proposition {
|
|
94
|
+
background-color: var(--color-sentiment-positive-secondary);
|
|
95
|
+
color: var(--color-sentiment-positive-primary);
|
|
96
|
+
}
|
|
97
|
+
.wds-inline-prompt--proposition a,
|
|
98
|
+
.wds-inline-prompt--proposition button {
|
|
99
|
+
color: var(--color-sentiment-positive-primary);
|
|
100
|
+
}
|
|
101
|
+
.wds-inline-prompt--proposition a:hover,
|
|
102
|
+
.wds-inline-prompt--proposition button:hover {
|
|
103
|
+
color: var(--color-sentiment-positive-primary-hover);
|
|
104
|
+
}
|
|
105
|
+
.wds-inline-prompt--proposition a:active,
|
|
106
|
+
.wds-inline-prompt--proposition button:active {
|
|
107
|
+
color: var(--color-sentiment-positive-primary-active);
|
|
108
|
+
}
|
|
109
|
+
.wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):hover {
|
|
110
|
+
background-color: var(--color-sentiment-positive-secondary-hover);
|
|
111
|
+
}
|
|
112
|
+
.wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):active {
|
|
113
|
+
background-color: var(--color-sentiment-positive-secondary-active);
|
|
114
|
+
}
|
|
115
|
+
.wds-inline-prompt--neutral {
|
|
116
|
+
background-color: rgba(134,167,189,0.10196);
|
|
117
|
+
background-color: var(--color-background-neutral);
|
|
118
|
+
color: #37517e;
|
|
119
|
+
color: var(--color-content-primary);
|
|
120
|
+
}
|
|
121
|
+
.wds-inline-prompt--neutral a,
|
|
122
|
+
.wds-inline-prompt--neutral button {
|
|
123
|
+
color: #37517e;
|
|
124
|
+
color: var(--color-content-primary);
|
|
125
|
+
}
|
|
126
|
+
.wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):hover {
|
|
127
|
+
background-color: var(--color-background-neutral-hover);
|
|
128
|
+
}
|
|
129
|
+
.wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):active {
|
|
130
|
+
background-color: var(--color-background-neutral-active);
|
|
131
|
+
}
|
|
132
|
+
.wds-inline-prompt--warning {
|
|
133
|
+
background-color: var(--color-sentiment-warning-secondary);
|
|
134
|
+
color: var(--color-sentiment-warning-content);
|
|
135
|
+
}
|
|
136
|
+
.wds-inline-prompt--warning a,
|
|
137
|
+
.wds-inline-prompt--warning button {
|
|
138
|
+
color: var(--color-sentiment-warning-content);
|
|
139
|
+
}
|
|
140
|
+
.wds-inline-prompt--warning a:hover,
|
|
141
|
+
.wds-inline-prompt--warning button:hover {
|
|
142
|
+
color: var(--color-sentiment-warning-content-hover);
|
|
143
|
+
}
|
|
144
|
+
.wds-inline-prompt--warning a:active,
|
|
145
|
+
.wds-inline-prompt--warning button:active {
|
|
146
|
+
color: var(--color-sentiment-warning-content-active);
|
|
147
|
+
}
|
|
148
|
+
.wds-inline-prompt.wds-inline-prompt--warning:has(a, button):hover {
|
|
149
|
+
background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 92%, var(--color-sentiment-warning-primary));
|
|
150
|
+
}
|
|
151
|
+
.wds-inline-prompt.wds-inline-prompt--warning:has(a, button):active {
|
|
152
|
+
background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 84%, var(--color-sentiment-warning-primary));
|
|
153
|
+
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
.wds-
|
|
2
|
-
grid-area: prompt;
|
|
1
|
+
.wds-inline-prompt {
|
|
3
2
|
display: inline-flex;
|
|
4
|
-
justify-self: start;
|
|
5
3
|
text-align: left;
|
|
6
4
|
padding-top: calc(8px / 2);
|
|
7
5
|
padding-top: calc(var(--padding-x-small) / 2);
|
|
@@ -16,33 +14,27 @@
|
|
|
16
14
|
word-break: break-word;
|
|
17
15
|
word-wrap: break-word;
|
|
18
16
|
}
|
|
19
|
-
.wds-
|
|
20
|
-
.wds-
|
|
17
|
+
.wds-inline-prompt:has(a),
|
|
18
|
+
.wds-inline-prompt:has(button) {
|
|
21
19
|
position: relative;
|
|
22
20
|
z-index: 1;
|
|
23
21
|
}
|
|
24
|
-
.wds-
|
|
25
|
-
.
|
|
22
|
+
.wds-inline-prompt--muted {
|
|
23
|
+
opacity: 0.93;
|
|
24
|
+
filter: grayscale(1);
|
|
25
|
+
}
|
|
26
|
+
.wds-inline-prompt a,
|
|
27
|
+
.wds-inline-prompt button {
|
|
26
28
|
text-underline-offset: calc(4px / 2);
|
|
27
29
|
text-underline-offset: calc(var(--size-4) / 2);
|
|
28
30
|
}
|
|
29
|
-
.wds-
|
|
30
|
-
.wds-
|
|
31
|
+
.wds-inline-prompt a:first-of-type:before,
|
|
32
|
+
.wds-inline-prompt button:first-of-type:before {
|
|
31
33
|
content: '';
|
|
32
34
|
position: absolute;
|
|
33
35
|
inset: 0;
|
|
34
36
|
}
|
|
35
|
-
.wds-
|
|
36
|
-
padding-left: calc(8px - 1px);
|
|
37
|
-
padding-left: calc(var(--padding-x-small) - 1px);
|
|
38
|
-
padding-right: 8px;
|
|
39
|
-
padding-right: var(--padding-x-small);
|
|
40
|
-
display: inline-flex;
|
|
41
|
-
align-items: center;
|
|
42
|
-
gap: 4px;
|
|
43
|
-
gap: var(--size-4);
|
|
44
|
-
}
|
|
45
|
-
.wds-list-item-prompt .np-prompt-icon {
|
|
37
|
+
.wds-inline-prompt__media-wrapper {
|
|
46
38
|
padding-right: calc(12px / 2);
|
|
47
39
|
padding-right: calc(var(--size-12) / 2);
|
|
48
40
|
padding-top: calc(4px - 1px);
|
|
@@ -50,108 +42,116 @@
|
|
|
50
42
|
padding-bottom: calc(4px - 1px);
|
|
51
43
|
padding-bottom: calc(var(--size-4) - 1px);
|
|
52
44
|
}
|
|
53
|
-
.wds-
|
|
54
|
-
.wds-
|
|
45
|
+
.wds-inline-prompt__media-wrapper .tw-icon-tags,
|
|
46
|
+
.wds-inline-prompt__media-wrapper .tw-icon-confetti {
|
|
55
47
|
color: var(--color-sentiment-positive-primary);
|
|
56
48
|
}
|
|
57
|
-
.wds-
|
|
49
|
+
.wds-inline-prompt--negative {
|
|
58
50
|
background-color: var(--color-sentiment-negative-secondary);
|
|
59
51
|
color: var(--color-sentiment-negative-primary);
|
|
60
52
|
}
|
|
61
|
-
.wds-
|
|
62
|
-
.wds-
|
|
53
|
+
.wds-inline-prompt--negative a,
|
|
54
|
+
.wds-inline-prompt--negative button {
|
|
63
55
|
color: var(--color-sentiment-negative-primary);
|
|
64
56
|
}
|
|
65
|
-
.wds-
|
|
66
|
-
.wds-
|
|
57
|
+
.wds-inline-prompt--negative a:hover,
|
|
58
|
+
.wds-inline-prompt--negative button:hover {
|
|
67
59
|
color: var(--color-sentiment-negative-primary-hover);
|
|
68
60
|
}
|
|
69
|
-
.wds-
|
|
70
|
-
.wds-
|
|
61
|
+
.wds-inline-prompt--negative a:active,
|
|
62
|
+
.wds-inline-prompt--negative button:active {
|
|
71
63
|
color: var(--color-sentiment-negative-primary-active);
|
|
72
64
|
}
|
|
73
|
-
.wds-
|
|
65
|
+
.wds-inline-prompt.wds-inline-prompt--negative:has(a, button):hover {
|
|
74
66
|
background-color: var(--color-sentiment-negative-secondary-hover);
|
|
75
67
|
}
|
|
76
|
-
.wds-
|
|
68
|
+
.wds-inline-prompt.wds-inline-prompt--negative:has(a, button):active {
|
|
77
69
|
background-color: var(--color-sentiment-negative-secondary-active);
|
|
78
70
|
}
|
|
79
|
-
.wds-
|
|
80
|
-
.wds-list-item-prompt.discount,
|
|
81
|
-
.wds-list-item-prompt.savings {
|
|
71
|
+
.wds-inline-prompt--positive {
|
|
82
72
|
background-color: var(--color-sentiment-positive-secondary);
|
|
83
73
|
color: var(--color-sentiment-positive-primary);
|
|
84
74
|
}
|
|
85
|
-
.wds-
|
|
86
|
-
.wds-
|
|
87
|
-
.wds-list-item-prompt.savings a,
|
|
88
|
-
.wds-list-item-prompt.positive button,
|
|
89
|
-
.wds-list-item-prompt.discount button,
|
|
90
|
-
.wds-list-item-prompt.savings button {
|
|
75
|
+
.wds-inline-prompt--positive a,
|
|
76
|
+
.wds-inline-prompt--positive button {
|
|
91
77
|
color: var(--color-sentiment-positive-primary);
|
|
92
78
|
}
|
|
93
|
-
.wds-
|
|
94
|
-
.wds-
|
|
95
|
-
.wds-list-item-prompt.savings a:hover,
|
|
96
|
-
.wds-list-item-prompt.positive button:hover,
|
|
97
|
-
.wds-list-item-prompt.discount button:hover,
|
|
98
|
-
.wds-list-item-prompt.savings button:hover {
|
|
79
|
+
.wds-inline-prompt--positive a:hover,
|
|
80
|
+
.wds-inline-prompt--positive button:hover {
|
|
99
81
|
color: var(--color-sentiment-positive-primary-hover);
|
|
100
82
|
}
|
|
101
|
-
.wds-
|
|
102
|
-
.wds-
|
|
103
|
-
.wds-list-item-prompt.savings a:active,
|
|
104
|
-
.wds-list-item-prompt.positive button:active,
|
|
105
|
-
.wds-list-item-prompt.discount button:active,
|
|
106
|
-
.wds-list-item-prompt.savings button:active {
|
|
83
|
+
.wds-inline-prompt--positive a:active,
|
|
84
|
+
.wds-inline-prompt--positive button:active {
|
|
107
85
|
color: var(--color-sentiment-positive-primary-active);
|
|
108
86
|
}
|
|
109
|
-
.wds-
|
|
110
|
-
.wds-list-item-prompt.wds-list-item-prompt.discount:has(a, button):hover,
|
|
111
|
-
.wds-list-item-prompt.wds-list-item-prompt.savings:has(a, button):hover {
|
|
87
|
+
.wds-inline-prompt.wds-inline-prompt--positive:has(a, button):hover {
|
|
112
88
|
background-color: var(--color-sentiment-positive-secondary-hover);
|
|
113
89
|
}
|
|
114
|
-
.wds-
|
|
115
|
-
.wds-list-item-prompt.wds-list-item-prompt.discount:has(a, button):active,
|
|
116
|
-
.wds-list-item-prompt.wds-list-item-prompt.savings:has(a, button):active {
|
|
90
|
+
.wds-inline-prompt.wds-inline-prompt--positive:has(a, button):active {
|
|
117
91
|
background-color: var(--color-sentiment-positive-secondary-active);
|
|
118
92
|
}
|
|
119
|
-
.wds-
|
|
93
|
+
.wds-inline-prompt--proposition {
|
|
94
|
+
background-color: var(--color-sentiment-positive-secondary);
|
|
95
|
+
color: var(--color-sentiment-positive-primary);
|
|
96
|
+
}
|
|
97
|
+
.wds-inline-prompt--proposition a,
|
|
98
|
+
.wds-inline-prompt--proposition button {
|
|
99
|
+
color: var(--color-sentiment-positive-primary);
|
|
100
|
+
}
|
|
101
|
+
.wds-inline-prompt--proposition a:hover,
|
|
102
|
+
.wds-inline-prompt--proposition button:hover {
|
|
103
|
+
color: var(--color-sentiment-positive-primary-hover);
|
|
104
|
+
}
|
|
105
|
+
.wds-inline-prompt--proposition a:active,
|
|
106
|
+
.wds-inline-prompt--proposition button:active {
|
|
107
|
+
color: var(--color-sentiment-positive-primary-active);
|
|
108
|
+
}
|
|
109
|
+
.wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):hover {
|
|
110
|
+
background-color: var(--color-sentiment-positive-secondary-hover);
|
|
111
|
+
}
|
|
112
|
+
.wds-inline-prompt.wds-inline-prompt--proposition:has(a, button):active {
|
|
113
|
+
background-color: var(--color-sentiment-positive-secondary-active);
|
|
114
|
+
}
|
|
115
|
+
.wds-inline-prompt--neutral {
|
|
120
116
|
background-color: rgba(134,167,189,0.10196);
|
|
121
117
|
background-color: var(--color-background-neutral);
|
|
122
118
|
color: #37517e;
|
|
123
119
|
color: var(--color-content-primary);
|
|
124
120
|
}
|
|
125
|
-
.wds-
|
|
126
|
-
.wds-
|
|
121
|
+
.wds-inline-prompt--neutral a,
|
|
122
|
+
.wds-inline-prompt--neutral button {
|
|
127
123
|
color: #37517e;
|
|
128
124
|
color: var(--color-content-primary);
|
|
129
125
|
}
|
|
130
|
-
.wds-
|
|
126
|
+
.wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):hover {
|
|
131
127
|
background-color: var(--color-background-neutral-hover);
|
|
132
128
|
}
|
|
133
|
-
.wds-
|
|
129
|
+
.wds-inline-prompt.wds-inline-prompt--neutral:has(a, button):active {
|
|
134
130
|
background-color: var(--color-background-neutral-active);
|
|
135
131
|
}
|
|
136
|
-
.wds-
|
|
132
|
+
.wds-inline-prompt--warning {
|
|
137
133
|
background-color: var(--color-sentiment-warning-secondary);
|
|
138
134
|
color: var(--color-sentiment-warning-content);
|
|
139
135
|
}
|
|
140
|
-
.wds-
|
|
141
|
-
.wds-
|
|
136
|
+
.wds-inline-prompt--warning a,
|
|
137
|
+
.wds-inline-prompt--warning button {
|
|
142
138
|
color: var(--color-sentiment-warning-content);
|
|
143
139
|
}
|
|
144
|
-
.wds-
|
|
145
|
-
.wds-
|
|
140
|
+
.wds-inline-prompt--warning a:hover,
|
|
141
|
+
.wds-inline-prompt--warning button:hover {
|
|
146
142
|
color: var(--color-sentiment-warning-content-hover);
|
|
147
143
|
}
|
|
148
|
-
.wds-
|
|
149
|
-
.wds-
|
|
144
|
+
.wds-inline-prompt--warning a:active,
|
|
145
|
+
.wds-inline-prompt--warning button:active {
|
|
150
146
|
color: var(--color-sentiment-warning-content-active);
|
|
151
147
|
}
|
|
152
|
-
.wds-
|
|
148
|
+
.wds-inline-prompt.wds-inline-prompt--warning:has(a, button):hover {
|
|
153
149
|
background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 92%, var(--color-sentiment-warning-primary));
|
|
154
150
|
}
|
|
155
|
-
.wds-
|
|
151
|
+
.wds-inline-prompt.wds-inline-prompt--warning:has(a, button):active {
|
|
156
152
|
background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 84%, var(--color-sentiment-warning-primary));
|
|
157
153
|
}
|
|
154
|
+
.wds-list-item-prompt {
|
|
155
|
+
grid-area: prompt;
|
|
156
|
+
justify-self: start;
|
|
157
|
+
}
|
package/build/styles/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-
|
|
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-
|
|
3048
|
-
.wds-
|
|
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-
|
|
3053
|
-
.
|
|
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-
|
|
3058
|
-
.wds-
|
|
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-
|
|
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-
|
|
3082
|
-
.wds-
|
|
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-
|
|
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-
|
|
3090
|
-
.wds-
|
|
3081
|
+
.wds-inline-prompt--negative a,
|
|
3082
|
+
.wds-inline-prompt--negative button {
|
|
3091
3083
|
color: var(--color-sentiment-negative-primary);
|
|
3092
3084
|
}
|
|
3093
|
-
.wds-
|
|
3094
|
-
.wds-
|
|
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-
|
|
3098
|
-
.wds-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
3114
|
-
.wds-
|
|
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-
|
|
3122
|
-
.wds-
|
|
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-
|
|
3130
|
-
.wds-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
3154
|
-
.wds-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
3169
|
-
.wds-
|
|
3164
|
+
.wds-inline-prompt--warning a,
|
|
3165
|
+
.wds-inline-prompt--warning button {
|
|
3170
3166
|
color: var(--color-sentiment-warning-content);
|
|
3171
3167
|
}
|
|
3172
|
-
.wds-
|
|
3173
|
-
.wds-
|
|
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-
|
|
3177
|
-
.wds-
|
|
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-
|
|
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-
|
|
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 .
|
|
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;
|
|
@@ -3,6 +3,7 @@ import React, { FunctionComponent, ReactNode } from 'react';
|
|
|
3
3
|
type ActionProps = AriaLabelProperty & {
|
|
4
4
|
text: string;
|
|
5
5
|
onClick?: (event: React.MouseEvent) => void;
|
|
6
|
+
disabled?: boolean;
|
|
6
7
|
};
|
|
7
8
|
type ButtonActionProps = ActionProps;
|
|
8
9
|
type LinkActionProps = ActionProps & LinkProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/header/Header.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,OAAO,EAAE,SAAS,EAAc,MAAM,WAAW,CAAC;AAG3F,OAAO,KAAK,EAAE,EAAqB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE/E,KAAK,WAAW,GAAG,iBAAiB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/header/Header.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,OAAO,EAAE,SAAS,EAAc,MAAM,WAAW,CAAC;AAG3F,OAAO,KAAK,EAAE,EAAqB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE/E,KAAK,WAAW,GAAG,iBAAiB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,KAAK,iBAAiB,GAAG,WAAW,CAAC;AACrC,KAAK,eAAe,GAAG,WAAW,GAAG,SAAS,CAAC;AAE/C,MAAM,WAAW,WAAY,SAAQ,WAAW;IAC9C;;;OAGG;IACH,MAAM,CAAC,EAAE,iBAAiB,GAAG,eAAe,CAAC;IAE7C;;;;;;;;OAQG;IACH,EAAE,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAEnC,oDAAoD;IACpD,KAAK,EAAE,SAAS,CAAC;IAEjB,uDAAuD;IACvD,KAAK,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;IAE5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AA6BD;;;;;;;;;;GAUG;AACH,QAAA,MAAM,MAAM,EAAE,iBAAiB,CAAC,WAAW,CA6C1C,CAAC;AAIF,eAAe,MAAM,CAAC"}
|
|
@@ -8,6 +8,6 @@ export type Props = PrimitiveAnchorProps & Pick<PrimitiveButtonProps, 'onClick'>
|
|
|
8
8
|
*
|
|
9
9
|
* Documentation: https://transferwise.github.io/neptune-web/components/content/Link
|
|
10
10
|
*/
|
|
11
|
-
declare const Link: ({ className, children, href, target, type, "aria-label": ariaLabel, onClick, ...props }: Props) => import("react").JSX.Element;
|
|
11
|
+
declare const Link: ({ className, children, href, target, type, "aria-label": ariaLabel, onClick, disabled, ...props }: Props) => import("react").JSX.Element;
|
|
12
12
|
export default Link;
|
|
13
13
|
//# sourceMappingURL=Link.d.ts.map
|