Skip to content

Commit 95360a7

Browse files
authored
fix: ensure all component internals have part names (#3306)
* fix: ensure all component internals have part names * ensure badge styles do not break
1 parent fa6a20d commit 95360a7

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

packages/web-components/fast-components-msft/src/badge/badge.styles.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const BadgeStyles = css`
1515
line-height: var(--type-ramp-minus-1-height);
1616
}
1717
18-
.badge {
18+
.control {
1919
border-radius: calc(var(--corner-radius) * 1px);
2020
padding: calc(var(--design-unit) * 0.5px) calc(var(--design-unit) * 1px);
2121
}

packages/web-components/fast-components/src/badge/badge.styles.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ export const BadgeStyles = css`
1010
line-height: var(--type-ramp-minus-1-height);
1111
}
1212
13-
.badge {
13+
.control {
1414
border-radius: calc(var(--corner-radius) * 1px);
1515
padding: calc(var(--design-unit) * 0.5px) calc(var(--design-unit) * 1px);
1616
color: ${accentForegroundRestBehavior.var};
1717
font-weight: 600;
1818
}
1919
20-
.badge[style] {
20+
.control[style] {
2121
font-weight: 400;
2222
}
2323
24-
:host(.circular) .badge {
24+
:host(.circular) .control {
2525
border-radius: 100px;
2626
padding: 0 calc(var(--design-unit) * 1px);
2727
${

packages/web-components/fast-foundation/src/accordion/accordion-item/accordion-item.template.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export const AccordionItemTemplate = html<AccordionItem>`
3535
</div>
3636
<div
3737
class="region"
38+
part="region"
3839
id="${x => x.id}-panel"
3940
role="region"
4041
aria-labelledby="${x => x.id}"

packages/web-components/fast-foundation/src/anchor/anchor.template.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const AnchorTemplate = html<Anchor>`
66
<template class="${x => x.appearance}">
77
<a
88
class="control"
9+
part="control"
910
download="${x => x.download}"
1011
href="${x => x.href}"
1112
hreflang="${x => x.hreflang}"

packages/web-components/fast-foundation/src/badge/badge.template.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { Badge } from "./badge";
44
export const BadgeTemplate = html<Badge>`
55
<template class="${x => (x.circular ? "circular" : "")}">
66
<div
7-
class="badge"
7+
class="control"
8+
part="control"
89
style="${x =>
910
x.fill || x.color
1011
? `background-color: var(--badge-fill-${x.fill}); color: var(--badge-color-${x.color})`

packages/web-components/fast-foundation/src/button/button.template.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const ButtonTemplate = html<Button>`
66
<template class="${x => x.appearance}">
77
<button
88
class="control"
9+
part="control"
910
?autofocus=${x => x.autofocus}
1011
?disabled=${x => x.disabled}
1112
form=${x => x.formId}

0 commit comments

Comments
 (0)