Skip to content

Commit 9909a8d

Browse files
authored
Merge branch 'master' into composite-reorder
2 parents e6806da + fb460dd commit 9909a8d

File tree

70 files changed

+2232
-1758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2232
-1758
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up pnpm
3030
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
3131
- name: Use Node.js 22.x
32-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
32+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
3333
with:
3434
node-version: '22.18'
3535
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies

.github/workflows/ensure-triage-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
issues: write
1818
steps:
19-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
19+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
2020
with:
2121
script: |
2222
const { data: labels } = await github.rest.issues.listLabelsOnIssue({

.github/workflows/fixed-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Get associated PRs
1717
id: get-prs
18-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
18+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
1919
with:
2020
script: |
2121
const issue_number = context.payload.issue.number;
@@ -109,7 +109,7 @@ jobs:
109109
110110
- name: Add comment to issue
111111
if: steps.get-prs.outputs.has_pr == 'true'
112-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
112+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
113113
with:
114114
script: |
115115
// Get PR number from the previous step's output

docs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"@emotion/styled": "^11.14.1",
2222
"@mdx-js/loader": "^3.1.1",
2323
"@mdx-js/react": "^3.1.1",
24-
"@mui/system": "7.3.2",
2524
"@next/mdx": "^15.5.2",
2625
"@react-spring/web": "^10.0.1",
2726
"@stefanprobst/rehype-extract-toc": "^3.0.0",

docs/reference/generated/autocomplete-root.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"autoHighlight": {
4747
"type": "boolean",
4848
"default": "false",
49-
"description": "Whether to automatically highlight the first item when the popup opens.",
49+
"description": "Whether to automatically highlight the first item while filtering.",
5050
"detailedType": "boolean | undefined"
5151
},
5252
"cols": {

docs/reference/generated/collapsible-panel.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"detailedType": "boolean | undefined"
1010
},
1111
"className": {
12-
"type": "string | ((state: Collapsible.Root.State) => string)",
12+
"type": "string | ((state: Collapsible.Panel.State) => string)",
1313
"description": "CSS class applied to the element, or a function that\nreturns a class based on the component’s state.",
14-
"detailedType": "| string\n| ((state: Collapsible.Root.State) => string)"
14+
"detailedType": "| string\n| ((state: Collapsible.Panel.State) => string)"
1515
},
1616
"keepMounted": {
1717
"type": "boolean",
@@ -20,9 +20,9 @@
2020
"detailedType": "boolean | undefined"
2121
},
2222
"render": {
23-
"type": "ReactElement | ((props: HTMLProps, state: Collapsible.Root.State) => ReactElement)",
23+
"type": "ReactElement | ((props: HTMLProps, state: Collapsible.Panel.State) => ReactElement)",
2424
"description": "Allows you to replace the component’s HTML element\nwith a different tag, or compose it with another component.\n\nAccepts a `ReactElement` or a function that returns the element to render.",
25-
"detailedType": "| ReactElement\n| ((\n props: HTMLProps,\n state: Collapsible.Root.State,\n ) => ReactElement)"
25+
"detailedType": "| ReactElement\n| ((\n props: HTMLProps,\n state: Collapsible.Panel.State,\n ) => ReactElement)"
2626
}
2727
},
2828
"dataAttributes": {

docs/reference/generated/combobox-root.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@
4343
"description": "A ref to imperative actions.\n- `unmount`: When specified, the combobox will not be unmounted when closed.\nInstead, the `unmount` function must be called to unmount the combobox manually.\nUseful when the combobox's animation is controlled by an external library.",
4444
"detailedType": "React.RefObject<Combobox.Root.Actions> | undefined"
4545
},
46+
"autoHighlight": {
47+
"type": "boolean",
48+
"default": "false",
49+
"description": "Whether to automatically highlight the first item while filtering.",
50+
"detailedType": "boolean | undefined"
51+
},
4652
"cols": {
4753
"type": "number",
4854
"default": "1",

docs/reference/generated/slider-root.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
"description": "The component orientation.",
8484
"detailedType": "'horizontal' | 'vertical' | undefined"
8585
},
86-
"inputRef": {
87-
"type": "Ref<HTMLInputElement>",
88-
"description": "A ref to access the hidden input element.",
89-
"detailedType": "React.Ref<HTMLInputElement> | undefined"
90-
},
9186
"className": {
9287
"type": "string | ((state: Slider.Root.State) => string)",
9388
"description": "CSS class applied to the element, or a function that\nreturns a class based on the component’s state."

docs/reference/generated/slider-thumb.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
"description": "Whether the thumb should ignore user interaction.",
4040
"detailedType": "boolean | undefined"
4141
},
42+
"inputRef": {
43+
"type": "Ref<HTMLInputElement>",
44+
"description": "A ref to access the nested input element.",
45+
"detailedType": "React.Ref<HTMLInputElement> | undefined"
46+
},
4247
"className": {
4348
"type": "string | ((state: Slider.Thumb.State) => string)",
4449
"description": "CSS class applied to the element, or a function that\nreturns a class based on the component’s state."

docs/scripts/generateLlmTxt/__snapshots__/mdxToMarkdown.test.mjs.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export default function ExampleDirectionProvider() {
409409
<Slider.Control className="flex w-56 items-center py-3">
410410
<Slider.Track className="relative h-1 w-full rounded bg-gray-200 shadow-[inset_0_0_0_1px] shadow-gray-200">
411411
<Slider.Indicator className="rounded bg-gray-700" />
412-
<Slider.Thumb className="size-4 rounded-full bg-white outline outline-1 outline-gray-300 focus-visible:outline focus-visible:outline-2 focus-visible:outline-blue-800" />
412+
<Slider.Thumb className="size-4 rounded-full bg-white outline outline-1 outline-gray-300 has-[:focus-visible]:outline has-[:focus-visible]:outline-2 has-[:focus-visible]:outline-blue-800" />
413413
</Slider.Track>
414414
</Slider.Control>
415415
</Slider.Root>
@@ -455,7 +455,7 @@ This example shows how to implement the component using CSS Modules.
455455
background-color: white;
456456
outline: 1px solid var(--color-gray-300);
457457
458-
&:focus-visible {
458+
&:has(:focus-visible) {
459459
outline: 2px solid var(--color-blue);
460460
}
461461
}

0 commit comments

Comments
 (0)