Skip to content

Commit 8b266ca

Browse files
author
Fergus Bisset
committed
chore(release): 0.0.44-alpha.15
1 parent 7be2e67 commit 8b266ca

File tree

7 files changed

+125
-115
lines changed

7 files changed

+125
-115
lines changed

dist/components/Header/Header.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,9 @@
647647
background-color: var(--fdp-header-bg, var(--brand-fdp-semantic-surface-background-primary, #ffffff));
648648
color: var(--fdp-header-text, var(--brand-fdp-semantic-surface-text-primary, #425563));
649649
}
650+
[data-brand=fdp] .nhsuk-header .nhsuk-header__service {
651+
justify-content: center;
652+
}
650653
[data-brand=fdp] .nhsuk-header__container {
651654
padding-left: 32px;
652655
padding-right: 32px;

dist/components/Header/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,10 @@ span .nhsuk-u-visually-hidden {
949949
color: var(--fdp-header-text, var(--brand-fdp-semantic-surface-text-primary, #425563));
950950
}
951951

952+
[data-brand=fdp] .nhsuk-header .nhsuk-header__service {
953+
justify-content: center;
954+
}
955+
952956
[data-brand=fdp] .nhsuk-header__container {
953957
padding-left: 32px;
954958
padding-right: 32px;

dist/meta/components.json

Lines changed: 111 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "0.0.44-alpha.14",
3-
"generatedAt": "2025-10-26T13:04:31.353Z",
3+
"generatedAt": "2025-10-26T13:12:47.254Z",
44
"count": 18,
55
"components": {
66
"Textarea": {
@@ -426,29 +426,6 @@
426426
],
427427
"source": "src/components/Label/Label.schema.ts"
428428
},
429-
"InsetText": {
430-
"name": "InsetText",
431-
"category": "content",
432-
"since": "0.1.1",
433-
"props": [
434-
{
435-
"name": "text",
436-
"type": "string",
437-
"description": "Plain text content (ignored if html is provided)"
438-
},
439-
{
440-
"name": "html",
441-
"type": "string",
442-
"description": "HTML content (overrides text)"
443-
},
444-
{
445-
"name": "className",
446-
"type": "string",
447-
"description": "Additional CSS classes"
448-
}
449-
],
450-
"source": "src/components/InsetText/InsetText.schema.ts"
451-
},
452429
"Input": {
453430
"name": "Input",
454431
"category": "form",
@@ -591,6 +568,56 @@
591568
],
592569
"source": "src/components/Input/Input.schema.ts"
593570
},
571+
"InsetText": {
572+
"name": "InsetText",
573+
"category": "content",
574+
"since": "0.1.1",
575+
"props": [
576+
{
577+
"name": "text",
578+
"type": "string",
579+
"description": "Plain text content (ignored if html is provided)"
580+
},
581+
{
582+
"name": "html",
583+
"type": "string",
584+
"description": "HTML content (overrides text)"
585+
},
586+
{
587+
"name": "className",
588+
"type": "string",
589+
"description": "Additional CSS classes"
590+
}
591+
],
592+
"source": "src/components/InsetText/InsetText.schema.ts"
593+
},
594+
"Hint": {
595+
"name": "Hint",
596+
"category": "typography",
597+
"since": "0.1.1",
598+
"a11yNotes": [
599+
"Provides supporting contextual help text associated with a form field or section."
600+
],
601+
"props": [
602+
{
603+
"name": "id",
604+
"type": "string",
605+
"description": "HTML id attribute"
606+
},
607+
{
608+
"name": "className",
609+
"type": "string",
610+
"description": "Additional CSS classes"
611+
},
612+
{
613+
"name": "children",
614+
"type": "ReactNode|string",
615+
"required": true,
616+
"description": "Hint content"
617+
}
618+
],
619+
"source": "src/components/Hint/Hint.schema.ts"
620+
},
594621
"Heading": {
595622
"name": "Heading",
596623
"category": "typography",
@@ -637,33 +664,6 @@
637664
],
638665
"source": "src/components/Heading/Heading.schema.ts"
639666
},
640-
"Hint": {
641-
"name": "Hint",
642-
"category": "typography",
643-
"since": "0.1.1",
644-
"a11yNotes": [
645-
"Provides supporting contextual help text associated with a form field or section."
646-
],
647-
"props": [
648-
{
649-
"name": "id",
650-
"type": "string",
651-
"description": "HTML id attribute"
652-
},
653-
{
654-
"name": "className",
655-
"type": "string",
656-
"description": "Additional CSS classes"
657-
},
658-
{
659-
"name": "children",
660-
"type": "ReactNode|string",
661-
"required": true,
662-
"description": "Hint content"
663-
}
664-
],
665-
"source": "src/components/Hint/Hint.schema.ts"
666-
},
667667
"Fieldset": {
668668
"name": "Fieldset",
669669
"category": "form",
@@ -960,64 +960,6 @@
960960
],
961961
"source": "src/components/CharacterCount/CharacterCount.schema.ts"
962962
},
963-
"Checkboxes": {
964-
"name": "Checkboxes",
965-
"props": [
966-
{
967-
"name": "items",
968-
"type": "CheckboxItem[]",
969-
"required": true,
970-
"description": "Array of checkbox items"
971-
},
972-
{
973-
"name": "name",
974-
"type": "string",
975-
"required": true,
976-
"description": "Shared name attribute"
977-
},
978-
{
979-
"name": "idPrefix",
980-
"type": "string",
981-
"description": "ID prefix for fieldset and inputs"
982-
},
983-
{
984-
"name": "legend",
985-
"type": "string",
986-
"description": "Legend text"
987-
},
988-
{
989-
"name": "isPageHeading",
990-
"type": "boolean",
991-
"description": "Legend rendered as page heading"
992-
},
993-
{
994-
"name": "legendSize",
995-
"type": "\"xl\"|\"l\"|\"m\"|\"s\"",
996-
"description": "Legend size"
997-
},
998-
{
999-
"name": "hint",
1000-
"type": "string",
1001-
"description": "Group hint text"
1002-
},
1003-
{
1004-
"name": "errorMessage",
1005-
"type": "string",
1006-
"description": "Group error message"
1007-
},
1008-
{
1009-
"name": "className",
1010-
"type": "string",
1011-
"description": "Extra wrapper classes"
1012-
},
1013-
{
1014-
"name": "small",
1015-
"type": "boolean",
1016-
"description": "Small variant"
1017-
}
1018-
],
1019-
"source": "src/components/Checkboxes/Checkboxes.schema.ts"
1020-
},
1021963
"Button": {
1022964
"name": "Button",
1023965
"category": "form",
@@ -1111,6 +1053,64 @@
11111053
}
11121054
],
11131055
"source": "src/components/Button/Button.schema.ts"
1056+
},
1057+
"Checkboxes": {
1058+
"name": "Checkboxes",
1059+
"props": [
1060+
{
1061+
"name": "items",
1062+
"type": "CheckboxItem[]",
1063+
"required": true,
1064+
"description": "Array of checkbox items"
1065+
},
1066+
{
1067+
"name": "name",
1068+
"type": "string",
1069+
"required": true,
1070+
"description": "Shared name attribute"
1071+
},
1072+
{
1073+
"name": "idPrefix",
1074+
"type": "string",
1075+
"description": "ID prefix for fieldset and inputs"
1076+
},
1077+
{
1078+
"name": "legend",
1079+
"type": "string",
1080+
"description": "Legend text"
1081+
},
1082+
{
1083+
"name": "isPageHeading",
1084+
"type": "boolean",
1085+
"description": "Legend rendered as page heading"
1086+
},
1087+
{
1088+
"name": "legendSize",
1089+
"type": "\"xl\"|\"l\"|\"m\"|\"s\"",
1090+
"description": "Legend size"
1091+
},
1092+
{
1093+
"name": "hint",
1094+
"type": "string",
1095+
"description": "Group hint text"
1096+
},
1097+
{
1098+
"name": "errorMessage",
1099+
"type": "string",
1100+
"description": "Group error message"
1101+
},
1102+
{
1103+
"name": "className",
1104+
"type": "string",
1105+
"description": "Extra wrapper classes"
1106+
},
1107+
{
1108+
"name": "small",
1109+
"type": "boolean",
1110+
"description": "Small variant"
1111+
}
1112+
],
1113+
"source": "src/components/Checkboxes/Checkboxes.schema.ts"
11141114
}
11151115
},
11161116
"categories": {
@@ -1135,8 +1135,8 @@
11351135
"Details"
11361136
],
11371137
"typography": [
1138-
"Heading",
1139-
"Hint"
1138+
"Hint",
1139+
"Heading"
11401140
],
11411141
"uncategorised": [
11421142
"CharacterCount",

dist/nhs-fdp-design-system-core.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2313,6 +2313,9 @@ span .nhsuk-u-visually-hidden {
23132313
background-color: var(--fdp-header-bg, var(--brand-fdp-semantic-surface-background-primary, #ffffff));
23142314
color: var(--fdp-header-text, var(--brand-fdp-semantic-surface-text-primary, #425563));
23152315
}
2316+
[data-brand=fdp] .nhsuk-header .nhsuk-header__service {
2317+
justify-content: center;
2318+
}
23162319
[data-brand=fdp] .nhsuk-header__container {
23172320
padding-left: 32px;
23182321
padding-right: 32px;

dist/nhs-fdp-design-system.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fergusbisset/nhs-fdp-design-system",
3-
"version": "0.0.44-alpha.14",
3+
"version": "0.0.44-alpha.15",
44
"description": "NHS FDP Design System - A comprehensive React component library built with design tokens",
55
"main": "dist/index.umd.js",
66
"module": "dist/index.esm.js",

0 commit comments

Comments
 (0)