uikit-react-public 0.37.2 → 0.38.1
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/dist/components/Alert/Alert.d.ts +1 -1
- package/dist/components/Alert/Alert.stories.d.ts +1 -1
- package/dist/components/Alert/AlertTitle.d.ts +1 -1
- package/dist/components/Datepicker/subcomponents/Panel.d.ts +1 -2
- package/dist/components/Overlay/Overlay.d.ts +2 -1
- package/dist/components/Overlay/Overlay.stories.d.ts +1 -0
- package/dist/components/Toggle/ToggleHandle.d.ts +1 -1
- package/dist/components/UclLogoNew/UclLogo.d.ts +2 -1
- package/dist/components/UclLogoNew/__tests__/UclLogo.test.d.ts +1 -0
- package/dist/components/WeekPicker/__tests__/WeekPicker.test.d.ts +1 -0
- package/dist/index.js +3479 -3396
- package/dist/theme/dark/darkColour.d.ts +1 -0
- package/dist/theme/index.d.ts +1 -1
- package/dist/theme/light/lightColour.d.ts +1 -0
- package/dist/theme/original/defaultTheme.d.ts +7 -0
- package/dist/theme/original/originalColourNewStructure.d.ts +1 -0
- package/dist/theme/useTheme.d.ts +12 -0
- package/lib/components/Alert/AlertMessage.tsx +5 -4
- package/lib/components/Alert/AlertTitle.tsx +6 -8
- package/lib/components/AppHeader/AppHeader.stories.tsx +3 -3
- package/lib/components/AppHeader/AppHeader.tsx +2 -2
- package/lib/components/AppHeader/AppHeaderBottom.tsx +2 -3
- package/lib/components/AppHeader/AppHeaderTop.tsx +1 -1
- package/lib/components/AppHeader/__tests__/__snapshots__/AppHeader.test.tsx.snap +1 -1
- package/lib/components/AppMenu/AppMenuContent.tsx +4 -5
- package/lib/components/AppMenu/AppMenuDivider.tsx +5 -6
- package/lib/components/AppMenu/AppMenuItem.tsx +6 -6
- package/lib/components/AppMenu/__tests__/__snapshots__/AppMenu.test.tsx.snap +1 -1
- package/lib/components/Avatar/Avatar.tsx +7 -5
- package/lib/components/Avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +18 -18
- package/lib/components/Badge/Badge.tsx +12 -12
- package/lib/components/Badge/__tests__/Badge.test.tsx +84 -1
- package/lib/components/Badge/__tests__/__snapshots__/Badge.test.tsx.snap +2 -2
- package/lib/components/Blanket/Blanket.tsx +1 -1
- package/lib/components/Blanket/__tests__/__snapshots__/Blanket.test.tsx.snap +1 -1
- package/lib/components/Button/__tests__/Button.test.tsx +46 -1
- package/lib/components/Button/__tests__/__snapshots__/Button.test.tsx.snap +2 -2
- package/lib/components/Button/style/buttonAccentStyle.ts +1 -1
- package/lib/components/Button/style/buttonPrimaryDestructiveStyle.ts +1 -1
- package/lib/components/Button/style/buttonPrimaryWarningStyle.ts +1 -1
- package/lib/components/Button/style/buttonSecondarySubtleStyle.ts +1 -1
- package/lib/components/Calendar/Calendar.tsx +1 -0
- package/lib/components/Calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +17 -17
- package/lib/components/Calendar/subcomponents/AcademicWeek.tsx +0 -1
- package/lib/components/Calendar/subcomponents/Day.tsx +2 -2
- package/lib/components/Chip/Chip.tsx +7 -8
- package/lib/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap +5 -5
- package/lib/components/CookieNotice/CookieNotice.tsx +3 -3
- package/lib/components/Datepicker/__tests__/Datepicker.test.tsx +58 -1
- package/lib/components/Datepicker/__tests__/__snapshots__/Datepicker.test.tsx.snap +6 -6
- package/lib/components/Datepicker/subcomponents/CustomDatepicker.tsx +32 -11
- package/lib/components/Datepicker/subcomponents/DatepickerInput.tsx +7 -6
- package/lib/components/Datepicker/subcomponents/Panel.tsx +3 -21
- package/lib/components/Datepicker/subcomponents/VisibleField.tsx +6 -8
- package/lib/components/Dialog/BaseDialog.tsx +3 -3
- package/lib/components/Divider/Divider.tsx +5 -3
- package/lib/components/FileInput/FileInput.tsx +1 -1
- package/lib/components/FileInput/__tests__/__snapshots__/FileInput.test.tsx.snap +2 -2
- package/lib/components/Footer/Footer.tsx +17 -17
- package/lib/components/Footer/FooterNavLink.tsx +3 -3
- package/lib/components/Footer/SocialLink.tsx +3 -3
- package/lib/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap +55 -55
- package/lib/components/FooterNew/BackToTop.tsx +1 -1
- package/lib/components/FooterNew/FooterColumn.tsx +1 -2
- package/lib/components/FooterNew/FooterNavLink.tsx +6 -5
- package/lib/components/FooterNew/LegalAndCopyright.tsx +15 -15
- package/lib/components/FooterNew/LogoAddressAndSocial.tsx +8 -6
- package/lib/components/FooterNew/SocialLink.tsx +4 -4
- package/lib/components/FooterNew/__tests__/__snapshots__/Footer.test.tsx.snap +44 -44
- package/lib/components/Header/Header.tsx +3 -3
- package/lib/components/Header/__tests__/__snapshots__/Header.test.tsx.snap +2 -2
- package/lib/components/HeaderDraft/HeaderBottomBreadcrumbs.tsx +3 -4
- package/lib/components/HeaderDraft/HeaderBottomHeadingAndAvatar.tsx +7 -7
- package/lib/components/HeaderDraft/HeaderBreadcrumb.tsx +4 -4
- package/lib/components/HeaderDraft/HeaderDraft.tsx +7 -7
- package/lib/components/HeaderDraft/__tests__/__snapshots__/Header.test.tsx.snap +5 -5
- package/lib/components/HeaderNew/Header.tsx +2 -2
- package/lib/components/HeaderNew/__tests__/__snapshots__/Header.test.tsx.snap +2 -2
- package/lib/components/Input/Input.tsx +6 -6
- package/lib/components/Input/__tests__/__snapshots__/Input.test.tsx.snap +4 -4
- package/lib/components/Label/Label.tsx +2 -2
- package/lib/components/Label/__tests__/__snapshots__/Label.test.tsx.snap +1 -1
- package/lib/components/Layout/Layout.stories.tsx +12 -12
- package/lib/components/Link/Link.tsx +4 -4
- package/lib/components/Menu/MenuContent.tsx +3 -3
- package/lib/components/Menu/MenuItem.tsx +10 -8
- package/lib/components/Menu/MenuSection.tsx +1 -1
- package/lib/components/Modal/Modal.tsx +5 -15
- package/lib/components/Modal/__tests__/__snapshots__/Modal.test.tsx.snap +2 -2
- package/lib/components/NativeDatepicker/NativeDatepicker.tsx +9 -7
- package/lib/components/Overlay/Overlay.tsx +17 -5
- package/lib/components/Radio/Radio.tsx +13 -4
- package/lib/components/Radio/__tests__/__snapshots__/Radio.test.tsx.snap +3 -3
- package/lib/components/Search/Search.tsx +2 -2
- package/lib/components/Search/__tests__/__snapshots__/Search.test.tsx.snap +2 -2
- package/lib/components/Select/subcomponents/CustomSelect.tsx +4 -4
- package/lib/components/Spinner/Spinner.stories.tsx +3 -3
- package/lib/components/Spinner/Spinner.tsx +1 -1
- package/lib/components/Table/__tests__/__snapshots__/Table.test.tsx.snap +3 -3
- package/lib/components/Table/subcomponents/Head.tsx +2 -2
- package/lib/components/Table/subcomponents/Row.tsx +1 -1
- package/lib/components/Textarea/Textarea.tsx +7 -8
- package/lib/components/Textarea/__tests__/__snapshots__/Textarea.test.tsx.snap +4 -4
- package/lib/components/Timepicker/Timepicker.tsx +6 -4
- package/lib/components/Toggle/Toggle.tsx +4 -2
- package/lib/components/Toggle/ToggleHandle.tsx +4 -2
- package/lib/components/Tooltip/Tooltip.tsx +8 -5
- package/lib/components/Tooltip/__tests__/__snapshots__/tooltip.test.tsx.snap +2 -2
- package/lib/components/UclLogo/UclLogoNegativeSpace.tsx +7 -3
- package/lib/components/UclLogoNew/UclLogo.tsx +8 -9
- package/lib/components/UclLogoNew/__tests__/UclLogo.test.tsx +41 -0
- package/lib/components/WeekPicker/__tests__/WeekPicker.test.tsx +36 -0
- package/lib/components/WeekPicker/subcomponents/CustomDatepicker.tsx +27 -11
- package/lib/components/WeekPicker/subcomponents/DatepickerInput.tsx +6 -6
- package/lib/components/WeekPicker/subcomponents/VisibleField.tsx +9 -9
- package/lib/theme/dark/darkColour.ts +2 -1
- package/lib/theme/dark/darkTheme.ts +8 -1
- package/lib/theme/index.ts +1 -0
- package/lib/theme/light/lightColour.ts +2 -1
- package/lib/theme/light/lightTheme.ts +7 -0
- package/lib/theme/original/defaultTheme.ts +10 -0
- package/lib/theme/original/originalColourNewStructure.ts +2 -1
- package/package.json +2 -2
|
@@ -29,7 +29,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
29
29
|
class="css-x7g5ai"
|
|
30
30
|
>
|
|
31
31
|
<div
|
|
32
|
-
class="css-
|
|
32
|
+
class="css-zrpfhw"
|
|
33
33
|
>
|
|
34
34
|
University College London
|
|
35
35
|
<br />
|
|
@@ -39,7 +39,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
39
39
|
class="css-ems5xl"
|
|
40
40
|
>
|
|
41
41
|
<a
|
|
42
|
-
class="css-
|
|
42
|
+
class="css-iyfaeh"
|
|
43
43
|
href="tel:+4402076792000"
|
|
44
44
|
>
|
|
45
45
|
Tel: +44 (0) 20 7679 2000
|
|
@@ -51,7 +51,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
51
51
|
>
|
|
52
52
|
<a
|
|
53
53
|
aria-label="Instagram"
|
|
54
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
54
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
55
55
|
data-testid="ucl-uikit-footer__social-link"
|
|
56
56
|
href="https://www.instagram.com/ucl/"
|
|
57
57
|
target="_blank"
|
|
@@ -80,7 +80,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
80
80
|
</a>
|
|
81
81
|
<a
|
|
82
82
|
aria-label="LinkedIn"
|
|
83
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
83
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
84
84
|
data-testid="ucl-uikit-footer__social-link"
|
|
85
85
|
href="https://www.linkedin.com/school/university-college-london/"
|
|
86
86
|
target="_blank"
|
|
@@ -108,7 +108,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
108
108
|
</a>
|
|
109
109
|
<a
|
|
110
110
|
aria-label="YouTube"
|
|
111
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
111
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
112
112
|
data-testid="ucl-uikit-footer__social-link"
|
|
113
113
|
href="https://www.youtube.com/ucltv"
|
|
114
114
|
target="_blank"
|
|
@@ -134,7 +134,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
134
134
|
</a>
|
|
135
135
|
<a
|
|
136
136
|
aria-label="TikTok"
|
|
137
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
137
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
138
138
|
data-testid="ucl-uikit-footer__social-link"
|
|
139
139
|
href="https://www.tiktok.com/@uclofficial"
|
|
140
140
|
target="_blank"
|
|
@@ -160,7 +160,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
160
160
|
</a>
|
|
161
161
|
<a
|
|
162
162
|
aria-label="Facebook"
|
|
163
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
163
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
164
164
|
data-testid="ucl-uikit-footer__social-link"
|
|
165
165
|
href="https://www.facebook.com/uclofficial/"
|
|
166
166
|
target="_blank"
|
|
@@ -186,7 +186,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
186
186
|
</a>
|
|
187
187
|
<a
|
|
188
188
|
aria-label="Bluesky"
|
|
189
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
189
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
190
190
|
data-testid="ucl-uikit-footer__social-link"
|
|
191
191
|
href="https://bsky.app/profile/ucl.ac.uk"
|
|
192
192
|
target="_blank"
|
|
@@ -212,7 +212,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
212
212
|
</a>
|
|
213
213
|
<a
|
|
214
214
|
aria-label="Threads"
|
|
215
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
215
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
216
216
|
data-testid="ucl-uikit-footer__social-link"
|
|
217
217
|
href="https://www.threads.com/@ucl"
|
|
218
218
|
target="_blank"
|
|
@@ -239,7 +239,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
239
239
|
</a>
|
|
240
240
|
<a
|
|
241
241
|
aria-label="SoundCloud"
|
|
242
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
242
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
243
243
|
data-testid="ucl-uikit-footer__social-link"
|
|
244
244
|
href="https://soundcloud.com/uclsound"
|
|
245
245
|
target="_blank"
|
|
@@ -273,7 +273,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
273
273
|
data-testid="ucl-uikit-footer__back-to-top"
|
|
274
274
|
>
|
|
275
275
|
<button
|
|
276
|
-
class="css-
|
|
276
|
+
class="css-18idfzv"
|
|
277
277
|
>
|
|
278
278
|
Back to top
|
|
279
279
|
<svg
|
|
@@ -353,7 +353,7 @@ exports[`Footer > snapshot: footer links provided 1`] = `
|
|
|
353
353
|
</a>
|
|
354
354
|
</div>
|
|
355
355
|
<div
|
|
356
|
-
class="css-
|
|
356
|
+
class="css-i2x11w"
|
|
357
357
|
>
|
|
358
358
|
©
|
|
359
359
|
2026
|
|
@@ -376,23 +376,23 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
376
376
|
data-testid="ucl-uikit-footer__links"
|
|
377
377
|
>
|
|
378
378
|
<div
|
|
379
|
-
class="ucl-uikit-footer__column css-
|
|
379
|
+
class="ucl-uikit-footer__column css-1qdqdud"
|
|
380
380
|
data-testid="ucl-uikit-footer__column"
|
|
381
381
|
>
|
|
382
382
|
<h3
|
|
383
|
-
class="css-
|
|
383
|
+
class="css-18ul2r4"
|
|
384
384
|
>
|
|
385
385
|
Category 1
|
|
386
386
|
</h3>
|
|
387
387
|
<a
|
|
388
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-
|
|
388
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-138c06l"
|
|
389
389
|
data-testid="ucl-uikit-footer__nav-link"
|
|
390
390
|
href="#"
|
|
391
391
|
>
|
|
392
392
|
Item 1
|
|
393
393
|
</a>
|
|
394
394
|
<a
|
|
395
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-
|
|
395
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-138c06l"
|
|
396
396
|
data-testid="ucl-uikit-footer__nav-link"
|
|
397
397
|
href="#"
|
|
398
398
|
>
|
|
@@ -400,23 +400,23 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
400
400
|
</a>
|
|
401
401
|
</div>
|
|
402
402
|
<div
|
|
403
|
-
class="ucl-uikit-footer__column css-
|
|
403
|
+
class="ucl-uikit-footer__column css-1qdqdud"
|
|
404
404
|
data-testid="ucl-uikit-footer__column"
|
|
405
405
|
>
|
|
406
406
|
<h3
|
|
407
|
-
class="css-
|
|
407
|
+
class="css-18ul2r4"
|
|
408
408
|
>
|
|
409
409
|
Category 2
|
|
410
410
|
</h3>
|
|
411
411
|
<a
|
|
412
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-
|
|
412
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-138c06l"
|
|
413
413
|
data-testid="ucl-uikit-footer__nav-link"
|
|
414
414
|
href="#"
|
|
415
415
|
>
|
|
416
416
|
Item 1
|
|
417
417
|
</a>
|
|
418
418
|
<a
|
|
419
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-
|
|
419
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__nav-link css-138c06l"
|
|
420
420
|
data-testid="ucl-uikit-footer__nav-link"
|
|
421
421
|
href="#"
|
|
422
422
|
>
|
|
@@ -445,7 +445,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
445
445
|
class="css-x7g5ai"
|
|
446
446
|
>
|
|
447
447
|
<div
|
|
448
|
-
class="css-
|
|
448
|
+
class="css-zrpfhw"
|
|
449
449
|
>
|
|
450
450
|
University College London
|
|
451
451
|
<br />
|
|
@@ -455,7 +455,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
455
455
|
class="css-ems5xl"
|
|
456
456
|
>
|
|
457
457
|
<a
|
|
458
|
-
class="css-
|
|
458
|
+
class="css-iyfaeh"
|
|
459
459
|
href="tel:+4402076792000"
|
|
460
460
|
>
|
|
461
461
|
Tel: +44 (0) 20 7679 2000
|
|
@@ -467,7 +467,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
467
467
|
>
|
|
468
468
|
<a
|
|
469
469
|
aria-label="Instagram"
|
|
470
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
470
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
471
471
|
data-testid="ucl-uikit-footer__social-link"
|
|
472
472
|
href="https://www.instagram.com/ucl/"
|
|
473
473
|
target="_blank"
|
|
@@ -496,7 +496,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
496
496
|
</a>
|
|
497
497
|
<a
|
|
498
498
|
aria-label="LinkedIn"
|
|
499
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
499
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
500
500
|
data-testid="ucl-uikit-footer__social-link"
|
|
501
501
|
href="https://www.linkedin.com/school/university-college-london/"
|
|
502
502
|
target="_blank"
|
|
@@ -524,7 +524,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
524
524
|
</a>
|
|
525
525
|
<a
|
|
526
526
|
aria-label="YouTube"
|
|
527
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
527
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
528
528
|
data-testid="ucl-uikit-footer__social-link"
|
|
529
529
|
href="https://www.youtube.com/ucltv"
|
|
530
530
|
target="_blank"
|
|
@@ -550,7 +550,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
550
550
|
</a>
|
|
551
551
|
<a
|
|
552
552
|
aria-label="TikTok"
|
|
553
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
553
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
554
554
|
data-testid="ucl-uikit-footer__social-link"
|
|
555
555
|
href="https://www.tiktok.com/@uclofficial"
|
|
556
556
|
target="_blank"
|
|
@@ -576,7 +576,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
576
576
|
</a>
|
|
577
577
|
<a
|
|
578
578
|
aria-label="Facebook"
|
|
579
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
579
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
580
580
|
data-testid="ucl-uikit-footer__social-link"
|
|
581
581
|
href="https://www.facebook.com/uclofficial/"
|
|
582
582
|
target="_blank"
|
|
@@ -602,7 +602,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
602
602
|
</a>
|
|
603
603
|
<a
|
|
604
604
|
aria-label="Bluesky"
|
|
605
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
605
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
606
606
|
data-testid="ucl-uikit-footer__social-link"
|
|
607
607
|
href="https://bsky.app/profile/ucl.ac.uk"
|
|
608
608
|
target="_blank"
|
|
@@ -628,7 +628,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
628
628
|
</a>
|
|
629
629
|
<a
|
|
630
630
|
aria-label="Threads"
|
|
631
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
631
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
632
632
|
data-testid="ucl-uikit-footer__social-link"
|
|
633
633
|
href="https://www.threads.com/@ucl"
|
|
634
634
|
target="_blank"
|
|
@@ -655,7 +655,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
655
655
|
</a>
|
|
656
656
|
<a
|
|
657
657
|
aria-label="SoundCloud"
|
|
658
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
658
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
659
659
|
data-testid="ucl-uikit-footer__social-link"
|
|
660
660
|
href="https://soundcloud.com/uclsound"
|
|
661
661
|
target="_blank"
|
|
@@ -689,7 +689,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
689
689
|
data-testid="ucl-uikit-footer__back-to-top"
|
|
690
690
|
>
|
|
691
691
|
<button
|
|
692
|
-
class="css-
|
|
692
|
+
class="css-18idfzv"
|
|
693
693
|
>
|
|
694
694
|
Back to top
|
|
695
695
|
<svg
|
|
@@ -769,7 +769,7 @@ exports[`Footer > snapshot: nav links 1`] = `
|
|
|
769
769
|
</a>
|
|
770
770
|
</div>
|
|
771
771
|
<div
|
|
772
|
-
class="css-
|
|
772
|
+
class="css-i2x11w"
|
|
773
773
|
>
|
|
774
774
|
©
|
|
775
775
|
2026
|
|
@@ -808,7 +808,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
808
808
|
class="css-x7g5ai"
|
|
809
809
|
>
|
|
810
810
|
<div
|
|
811
|
-
class="css-
|
|
811
|
+
class="css-zrpfhw"
|
|
812
812
|
>
|
|
813
813
|
University College London
|
|
814
814
|
<br />
|
|
@@ -818,7 +818,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
818
818
|
class="css-ems5xl"
|
|
819
819
|
>
|
|
820
820
|
<a
|
|
821
|
-
class="css-
|
|
821
|
+
class="css-iyfaeh"
|
|
822
822
|
href="tel:+4402076792000"
|
|
823
823
|
>
|
|
824
824
|
Tel: +44 (0) 20 7679 2000
|
|
@@ -830,7 +830,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
830
830
|
>
|
|
831
831
|
<a
|
|
832
832
|
aria-label="Instagram"
|
|
833
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
833
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
834
834
|
data-testid="ucl-uikit-footer__social-link"
|
|
835
835
|
href="https://www.instagram.com/ucl/"
|
|
836
836
|
target="_blank"
|
|
@@ -859,7 +859,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
859
859
|
</a>
|
|
860
860
|
<a
|
|
861
861
|
aria-label="LinkedIn"
|
|
862
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
862
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
863
863
|
data-testid="ucl-uikit-footer__social-link"
|
|
864
864
|
href="https://www.linkedin.com/school/university-college-london/"
|
|
865
865
|
target="_blank"
|
|
@@ -887,7 +887,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
887
887
|
</a>
|
|
888
888
|
<a
|
|
889
889
|
aria-label="YouTube"
|
|
890
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
890
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
891
891
|
data-testid="ucl-uikit-footer__social-link"
|
|
892
892
|
href="https://www.youtube.com/ucltv"
|
|
893
893
|
target="_blank"
|
|
@@ -913,7 +913,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
913
913
|
</a>
|
|
914
914
|
<a
|
|
915
915
|
aria-label="TikTok"
|
|
916
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
916
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
917
917
|
data-testid="ucl-uikit-footer__social-link"
|
|
918
918
|
href="https://www.tiktok.com/@uclofficial"
|
|
919
919
|
target="_blank"
|
|
@@ -939,7 +939,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
939
939
|
</a>
|
|
940
940
|
<a
|
|
941
941
|
aria-label="Facebook"
|
|
942
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
942
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
943
943
|
data-testid="ucl-uikit-footer__social-link"
|
|
944
944
|
href="https://www.facebook.com/uclofficial/"
|
|
945
945
|
target="_blank"
|
|
@@ -965,7 +965,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
965
965
|
</a>
|
|
966
966
|
<a
|
|
967
967
|
aria-label="Bluesky"
|
|
968
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
968
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
969
969
|
data-testid="ucl-uikit-footer__social-link"
|
|
970
970
|
href="https://bsky.app/profile/ucl.ac.uk"
|
|
971
971
|
target="_blank"
|
|
@@ -991,7 +991,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
991
991
|
</a>
|
|
992
992
|
<a
|
|
993
993
|
aria-label="Threads"
|
|
994
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
994
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
995
995
|
data-testid="ucl-uikit-footer__social-link"
|
|
996
996
|
href="https://www.threads.com/@ucl"
|
|
997
997
|
target="_blank"
|
|
@@ -1018,7 +1018,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
1018
1018
|
</a>
|
|
1019
1019
|
<a
|
|
1020
1020
|
aria-label="SoundCloud"
|
|
1021
|
-
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-
|
|
1021
|
+
class="ucl-uikit-base-link ucl-uikit-link ucl-uikit-footer__social-link css-1x2yumo"
|
|
1022
1022
|
data-testid="ucl-uikit-footer__social-link"
|
|
1023
1023
|
href="https://soundcloud.com/uclsound"
|
|
1024
1024
|
target="_blank"
|
|
@@ -1052,7 +1052,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
1052
1052
|
data-testid="ucl-uikit-footer__back-to-top"
|
|
1053
1053
|
>
|
|
1054
1054
|
<button
|
|
1055
|
-
class="css-
|
|
1055
|
+
class="css-18idfzv"
|
|
1056
1056
|
>
|
|
1057
1057
|
Back to top
|
|
1058
1058
|
<svg
|
|
@@ -1132,7 +1132,7 @@ exports[`Footer > snapshot: no nav links 1`] = `
|
|
|
1132
1132
|
</a>
|
|
1133
1133
|
</div>
|
|
1134
1134
|
<div
|
|
1135
|
-
class="css-
|
|
1135
|
+
class="css-i2x11w"
|
|
1136
1136
|
>
|
|
1137
1137
|
©
|
|
1138
1138
|
2026
|
|
@@ -39,15 +39,15 @@ const Header = ({
|
|
|
39
39
|
const [theme] = useTheme();
|
|
40
40
|
|
|
41
41
|
const baseStyle = css`
|
|
42
|
-
background-color: ${theme.
|
|
42
|
+
background-color: ${theme.colour.surface.default};
|
|
43
43
|
font-family: ${theme.font.family.primary};
|
|
44
44
|
font-synthesis: none;
|
|
45
45
|
text-rendering: optimizeLegibility;
|
|
46
46
|
-webkit-font-smoothing: antialiased;
|
|
47
47
|
-moz-osx-font-smoothing: grayscale;
|
|
48
48
|
position: relative;
|
|
49
|
-
background-color: ${theme.
|
|
50
|
-
color: ${theme.
|
|
49
|
+
background-color: ${theme.colour.surface.inverseBrandPrimary};
|
|
50
|
+
color: ${theme.colour.text.brandInverse};
|
|
51
51
|
display: flex;
|
|
52
52
|
justify-content: center;
|
|
53
53
|
align-items: center;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Header > snapshot: variant=avatar 1`] = `
|
|
4
4
|
<header
|
|
5
|
-
class="ucl-uikit-header css-
|
|
5
|
+
class="ucl-uikit-header css-u33frp"
|
|
6
6
|
data-testid="ucl-uikit-header"
|
|
7
7
|
>
|
|
8
8
|
<svg
|
|
@@ -30,7 +30,7 @@ exports[`Header > snapshot: variant=avatar 1`] = `
|
|
|
30
30
|
|
|
31
31
|
exports[`Header > snapshot: variant=breadcrumbs 1`] = `
|
|
32
32
|
<header
|
|
33
|
-
class="ucl-uikit-header css-
|
|
33
|
+
class="ucl-uikit-header css-u33frp"
|
|
34
34
|
data-testid="ucl-uikit-header"
|
|
35
35
|
>
|
|
36
36
|
<svg
|
|
@@ -4,8 +4,7 @@ import { useTheme } from '../..';
|
|
|
4
4
|
|
|
5
5
|
export const NAME = 'ucl-uikit-header__bottom--breadcrumbs';
|
|
6
6
|
|
|
7
|
-
export interface HeaderBottomBreadcrumbsProps
|
|
8
|
-
extends HTMLAttributes<HTMLElement> {
|
|
7
|
+
export interface HeaderBottomBreadcrumbsProps extends HTMLAttributes<HTMLElement> {
|
|
9
8
|
testId?: string;
|
|
10
9
|
}
|
|
11
10
|
|
|
@@ -18,10 +17,10 @@ const HeaderBottomBreadcrumbs = ({
|
|
|
18
17
|
const [theme] = useTheme();
|
|
19
18
|
|
|
20
19
|
const baseStyle = css`
|
|
21
|
-
color: ${theme.
|
|
20
|
+
color: ${theme.colour.text.default};
|
|
22
21
|
padding: ${theme.padding.p16} 60px;
|
|
23
22
|
box-sizing: border-box;
|
|
24
|
-
border-bottom: 1px solid ${theme.
|
|
23
|
+
border-bottom: 1px solid ${theme.colour.border.subtle};
|
|
25
24
|
font-size: ${theme.font.size.f14};
|
|
26
25
|
`;
|
|
27
26
|
|
|
@@ -30,10 +30,10 @@ const Header = ({
|
|
|
30
30
|
const [theme] = useTheme();
|
|
31
31
|
|
|
32
32
|
const baseStyle = css`
|
|
33
|
-
color: ${theme.
|
|
33
|
+
color: ${theme.colour.text.default};
|
|
34
34
|
padding: ${theme.padding.p20} 60px;
|
|
35
35
|
box-sizing: border-box;
|
|
36
|
-
border-bottom: 1px solid ${theme.
|
|
36
|
+
border-bottom: 1px solid ${theme.colour.border.subtle};
|
|
37
37
|
display: flex;
|
|
38
38
|
justify-content: space-between;
|
|
39
39
|
align-items: center;
|
|
@@ -54,7 +54,7 @@ const Header = ({
|
|
|
54
54
|
|
|
55
55
|
const subheadingStyle = css`
|
|
56
56
|
margin: ${theme.margin.m8} 0 0 0;
|
|
57
|
-
color: ${theme.
|
|
57
|
+
color: ${theme.colour.text.secondary};
|
|
58
58
|
font-size: ${theme.font.size.f16};
|
|
59
59
|
font-weight: 400;
|
|
60
60
|
line-height: 16px;
|
|
@@ -65,7 +65,7 @@ const Header = ({
|
|
|
65
65
|
margin-bottom: -4px;
|
|
66
66
|
margin-right: -${theme.padding.p8}; // subtract padding-right
|
|
67
67
|
padding: ${theme.padding.p8} ${theme.padding.p8};
|
|
68
|
-
color: ${theme.
|
|
68
|
+
color: ${theme.colour.text.default};
|
|
69
69
|
display: flex;
|
|
70
70
|
justify-content: space-between;
|
|
71
71
|
align-items: center;
|
|
@@ -73,7 +73,7 @@ const Header = ({
|
|
|
73
73
|
transition: background-color 0.15s ease-out;
|
|
74
74
|
|
|
75
75
|
&:hover {
|
|
76
|
-
background-color: ${theme.
|
|
76
|
+
background-color: ${theme.colour.fill.brandSubtleHover};
|
|
77
77
|
}
|
|
78
78
|
`;
|
|
79
79
|
|
|
@@ -92,7 +92,7 @@ const Header = ({
|
|
|
92
92
|
const nameAndRoleStyle = css`
|
|
93
93
|
flex: 1;
|
|
94
94
|
font-size: ${theme.font.size.f14};
|
|
95
|
-
color: ${theme.
|
|
95
|
+
color: ${theme.colour.text.default};
|
|
96
96
|
`;
|
|
97
97
|
|
|
98
98
|
const nameStyle = css`
|
|
@@ -100,7 +100,7 @@ const Header = ({
|
|
|
100
100
|
`;
|
|
101
101
|
|
|
102
102
|
const roleStyle = css`
|
|
103
|
-
color: ${theme.
|
|
103
|
+
color: ${theme.colour.text.secondary};
|
|
104
104
|
`;
|
|
105
105
|
|
|
106
106
|
const chevronStyle = css`
|
|
@@ -19,7 +19,7 @@ const HeaderBreadcrumb = ({
|
|
|
19
19
|
const [theme] = useTheme();
|
|
20
20
|
|
|
21
21
|
const baseStyle = css`
|
|
22
|
-
color: ${theme.
|
|
22
|
+
color: ${theme.colour.text.default};
|
|
23
23
|
font-size: ${theme.font.size.f14};
|
|
24
24
|
`;
|
|
25
25
|
|
|
@@ -32,14 +32,14 @@ const HeaderBreadcrumb = ({
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&:hover {
|
|
35
|
-
color: ${theme.
|
|
35
|
+
color: ${theme.colour.text.default};
|
|
36
36
|
text-decoration: underline;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
`;
|
|
40
40
|
|
|
41
41
|
const nonLinkStyle = css`
|
|
42
|
-
color: ${theme.
|
|
42
|
+
color: ${theme.colour.text.secondary};
|
|
43
43
|
font-weight: 700;
|
|
44
44
|
`;
|
|
45
45
|
|
|
@@ -48,7 +48,7 @@ const HeaderBreadcrumb = ({
|
|
|
48
48
|
const chevronIconStyle = css`
|
|
49
49
|
margin-left: ${theme.margin.m8};
|
|
50
50
|
vertical-align: middle;
|
|
51
|
-
color: ${theme.
|
|
51
|
+
color: ${theme.colour.text.secondary};
|
|
52
52
|
`;
|
|
53
53
|
|
|
54
54
|
const style = cx(NAME, baseStyle, className);
|
|
@@ -56,7 +56,7 @@ const HeaderDraft = ({
|
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
const baseStyle = css`
|
|
59
|
-
background-color: ${theme.
|
|
59
|
+
background-color: ${theme.colour.surface.default};
|
|
60
60
|
font-family: ${theme.font.family.primary};
|
|
61
61
|
font-synthesis: none;
|
|
62
62
|
text-rendering: optimizeLegibility;
|
|
@@ -88,8 +88,8 @@ const HeaderDraft = ({
|
|
|
88
88
|
const topStyle = css`
|
|
89
89
|
position: relative;
|
|
90
90
|
height: ${HEADER_TOP_HEIGHT}px;
|
|
91
|
-
background-color: ${theme.
|
|
92
|
-
color: ${theme.
|
|
91
|
+
background-color: ${theme.colour.surface.inverseBrandPrimary};
|
|
92
|
+
color: ${theme.colour.text.brandInverse};
|
|
93
93
|
display: flex;
|
|
94
94
|
justify-content: center;
|
|
95
95
|
align-items: center;
|
|
@@ -115,8 +115,8 @@ const HeaderDraft = ({
|
|
|
115
115
|
right: 60px;
|
|
116
116
|
height: 40px;
|
|
117
117
|
padding: 0 ${theme.padding.p16};
|
|
118
|
-
background-color: ${theme.
|
|
119
|
-
color: ${theme.
|
|
118
|
+
background-color: ${theme.colour.surface.default};
|
|
119
|
+
color: ${theme.colour.text.default};
|
|
120
120
|
font-size: ${theme.font.size.f16};
|
|
121
121
|
font-weight: 700;
|
|
122
122
|
border: none;
|
|
@@ -128,8 +128,8 @@ const HeaderDraft = ({
|
|
|
128
128
|
color 0.15s ease-out;
|
|
129
129
|
|
|
130
130
|
&:hover {
|
|
131
|
-
color: ${theme.
|
|
132
|
-
background-color: ${theme.
|
|
131
|
+
color: ${theme.colour.text.default};
|
|
132
|
+
background-color: ${theme.colour.fill.brandSubtleHover};
|
|
133
133
|
}
|
|
134
134
|
`;
|
|
135
135
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Header > snapshot: variant=avatar 1`] = `
|
|
4
4
|
<header
|
|
5
|
-
class="ucl-uikit-header css-
|
|
5
|
+
class="ucl-uikit-header css-16ajjjr"
|
|
6
6
|
data-testid="ucl-uikit-header"
|
|
7
7
|
>
|
|
8
8
|
<div
|
|
9
|
-
class="css-
|
|
9
|
+
class="css-1w82olg"
|
|
10
10
|
>
|
|
11
11
|
<svg
|
|
12
12
|
class="css-y3m4z0"
|
|
@@ -43,7 +43,7 @@ exports[`Header > snapshot: variant=avatar 1`] = `
|
|
|
43
43
|
</h2>
|
|
44
44
|
</div>
|
|
45
45
|
<div
|
|
46
|
-
class="css-
|
|
46
|
+
class="css-1ptdzcv"
|
|
47
47
|
>
|
|
48
48
|
<div
|
|
49
49
|
class="css-se18zh"
|
|
@@ -93,11 +93,11 @@ exports[`Header > snapshot: variant=avatar 1`] = `
|
|
|
93
93
|
|
|
94
94
|
exports[`Header > snapshot: variant=breadcrumbs 1`] = `
|
|
95
95
|
<header
|
|
96
|
-
class="ucl-uikit-header css-
|
|
96
|
+
class="ucl-uikit-header css-16ajjjr"
|
|
97
97
|
data-testid="ucl-uikit-header"
|
|
98
98
|
>
|
|
99
99
|
<div
|
|
100
|
-
class="css-
|
|
100
|
+
class="css-1w82olg"
|
|
101
101
|
>
|
|
102
102
|
<svg
|
|
103
103
|
class="css-y3m4z0"
|
|
@@ -42,7 +42,7 @@ const Header = ({
|
|
|
42
42
|
text-rendering: optimizeLegibility;
|
|
43
43
|
-webkit-font-smoothing: antialiased;
|
|
44
44
|
-moz-osx-font-smoothing: grayscale;
|
|
45
|
-
color: ${theme.
|
|
45
|
+
color: ${theme.colour.text.brandPrimary};
|
|
46
46
|
display: flex;
|
|
47
47
|
align-items: center;
|
|
48
48
|
height: ${HEADER_MOBILE_HEIGHT_PX}px;
|
|
@@ -52,7 +52,7 @@ const Header = ({
|
|
|
52
52
|
@media (min-width: ${theme.breakpoints.desktop}px) {
|
|
53
53
|
height: ${HEADER_TABLET_HEIGHT_PX}px;
|
|
54
54
|
padding: 0 ${theme.padding.p48} 0 ${theme.padding.p64};
|
|
55
|
-
border-bottom: 1px solid ${theme.colour.border.
|
|
55
|
+
border-bottom: 1px solid ${theme.colour.border.subtle};
|
|
56
56
|
}
|
|
57
57
|
`;
|
|
58
58
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Header > snapshot: variant=avatar 1`] = `
|
|
4
4
|
<header
|
|
5
|
-
class="ucl-uikit-header css-
|
|
5
|
+
class="ucl-uikit-header css-1nmwv3y"
|
|
6
6
|
data-testid="ucl-uikit-header"
|
|
7
7
|
>
|
|
8
8
|
<div
|
|
@@ -41,7 +41,7 @@ exports[`Header > snapshot: variant=avatar 1`] = `
|
|
|
41
41
|
|
|
42
42
|
exports[`Header > snapshot: variant=breadcrumbs 1`] = `
|
|
43
43
|
<header
|
|
44
|
-
class="ucl-uikit-header css-
|
|
44
|
+
class="ucl-uikit-header css-1nmwv3y"
|
|
45
45
|
data-testid="ucl-uikit-header"
|
|
46
46
|
>
|
|
47
47
|
<div
|
|
@@ -54,13 +54,13 @@ const Input = forwardRef<Ref, InputProps>(
|
|
|
54
54
|
box-sizing: border-box;
|
|
55
55
|
font-family: ${theme.font.family.primary};
|
|
56
56
|
font-size: ${theme.font.size.f16};
|
|
57
|
-
color: ${theme.
|
|
58
|
-
background-color: ${theme.
|
|
59
|
-
border: ${theme.border.b1} solid ${theme.
|
|
57
|
+
color: ${theme.colour.text.default};
|
|
58
|
+
background-color: ${theme.colour.fill.inverse};
|
|
59
|
+
border: ${theme.border.b1} solid ${theme.colour.speciality.inputDefault};
|
|
60
60
|
outline: none;
|
|
61
61
|
|
|
62
62
|
&::placeholder {
|
|
63
|
-
color: ${theme.
|
|
63
|
+
color: ${theme.colour.text.tertiary};
|
|
64
64
|
}
|
|
65
65
|
`;
|
|
66
66
|
|
|
@@ -71,8 +71,8 @@ const Input = forwardRef<Ref, InputProps>(
|
|
|
71
71
|
`;
|
|
72
72
|
|
|
73
73
|
const disabledStyle = css`
|
|
74
|
-
color: ${theme.
|
|
75
|
-
border-color: ${theme.
|
|
74
|
+
color: ${theme.colour.text.disabled};
|
|
75
|
+
border-color: ${theme.colour.border.disabled};
|
|
76
76
|
cursor: not-allowed;
|
|
77
77
|
`;
|
|
78
78
|
|