Skip to content

Commit 76483d0

Browse files
authored
Merge branch 'main' into ts-strict-update-react-aria-b
2 parents a43fdfc + 17d75d8 commit 76483d0

File tree

337 files changed

+30497
-944
lines changed

Some content is hidden

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

337 files changed

+30497
-944
lines changed

.circleci/config.yml

+13
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,16 @@ jobs:
290290
paths:
291291
- 'ts-diff.txt'
292292

293+
typecheck-docs:
294+
executor: rsp-large
295+
steps:
296+
- restore_cache:
297+
key: react-spectrum-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
298+
299+
- run:
300+
name: check-examples
301+
command: make check-examples
302+
293303
storybook:
294304
executor: rsp-large
295305
steps:
@@ -498,6 +508,9 @@ workflows:
498508
filters:
499509
branches:
500510
ignore: main
511+
- typecheck-docs:
512+
requires:
513+
- install
501514
- storybook:
502515
requires:
503516
- install

.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ module.exports = {
2828
sourceType: 'module'
2929
},
3030
rules: {
31-
'jsdoc/require-description-complete-sentence': [ERROR, {abbreviations: ['e.g', 'etc', 'i.e']}],
31+
'jsdoc/require-description-complete-sentence': [ERROR, {abbreviations: ['e.g', 'i.e']}],
3232
'jsdoc/check-alignment': ERROR,
3333
'jsdoc/check-indentation': ERROR,
34-
'jsdoc/check-tag-names': ERROR,
34+
'jsdoc/check-tag-names': [ERROR, {definedTags: ['selector']}],
3535
// enable this rule to see literally everything missing jsdocs, this rule needs some refinement but is good as a sanity check.
3636
// 'jsdoc/require-jsdoc': [ERROR, {contexts:['TSInterfaceDeclaration TSPropertySignature', 'TSInterfaceDeclaration TSMethodSignature']}],
3737
'jsdoc/require-description': [ERROR, {exemptedBy: ['deprecated'], checkConstructors: false}],

.storybook/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
core: {
44
builder: "storybook-builder-parcel",
55
},
6-
stories: ['../packages/*/*/stories/*.stories.{js,jsx,ts,tsx}'],
6+
stories: ['../packages/**/stories/*.stories.{js,jsx,ts,tsx}'],
77
addons: [
88
'@storybook/addon-actions',
99
'@storybook/addon-a11y',

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,7 @@ website:
9696
website-production:
9797
node scripts/buildWebsite.js
9898
cp packages/dev/docs/pages/robots.txt dist/production/docs/robots.txt
99+
100+
check-examples:
101+
node scripts/extractExamples.mjs
102+
yarn tsc --project dist/docs-examples/tsconfig.json

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"build:storybook-17": "build-storybook -c .storybook -o dist/$(git rev-parse HEAD)/storybook-17",
1818
"start:chromatic": "CHROMATIC=1 NODE_ENV=storybook start-storybook -p 9004 --ci -c '.chromatic'",
1919
"build:chromatic": "CHROMATIC=1 build-storybook -c .chromatic -o dist/$(git rev-parse HEAD)/chromatic",
20-
"start:docs": "DOCS_ENV=dev parcel 'packages/@react-{spectrum,aria,stately}/*/docs/*.mdx' 'packages/@internationalized/*/docs/*.mdx' 'packages/dev/docs/pages/**/*.mdx'",
21-
"build:docs": "DOCS_ENV=staging parcel build 'packages/@react-{spectrum,aria,stately}/*/docs/*.mdx' 'packages/@internationalized/*/docs/*.mdx' 'packages/dev/docs/pages/**/*.mdx'",
20+
"start:docs": "DOCS_ENV=dev parcel 'packages/@react-{spectrum,aria,stately}/*/docs/*.mdx' 'packages/react-aria-components/docs/*.mdx' 'packages/@internationalized/*/docs/*.mdx' 'packages/dev/docs/pages/**/*.mdx'",
21+
"build:docs": "DOCS_ENV=staging parcel build 'packages/@react-{spectrum,aria,stately}/*/docs/*.mdx' 'packages/react-aria-components/docs/*.mdx' 'packages/@internationalized/*/docs/*.mdx' 'packages/dev/docs/pages/**/*.mdx'",
2222
"test": "yarn jest",
2323
"test-strict": "cross-env STRICT_MODE=1 yarn jest",
2424
"build": "make build",
@@ -47,6 +47,7 @@
4747
"workspaces": [
4848
"packages/react-stately",
4949
"packages/react-aria",
50+
"packages/react-aria-components",
5051
"packages/*/*"
5152
],
5253
"devDependencies": {

packages/@adobe/react-spectrum/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/react-spectrum",
3-
"version": "3.25.0",
3+
"version": "3.25.1",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -27,14 +27,14 @@
2727
"@react-aria/i18n": "^3.7.0",
2828
"@react-aria/ssr": "^3.5.0",
2929
"@react-aria/visually-hidden": "^3.7.0",
30-
"@react-spectrum/actiongroup": "^3.8.0",
30+
"@react-spectrum/actiongroup": "^3.8.1",
3131
"@react-spectrum/badge": "^3.1.0",
32-
"@react-spectrum/breadcrumbs": "^3.7.0",
32+
"@react-spectrum/breadcrumbs": "^3.7.1",
3333
"@react-spectrum/button": "^3.12.0",
3434
"@react-spectrum/buttongroup": "^3.6.0",
3535
"@react-spectrum/calendar": "^3.2.0",
3636
"@react-spectrum/checkbox": "^3.7.0",
37-
"@react-spectrum/combobox": "^3.8.0",
37+
"@react-spectrum/combobox": "^3.8.1",
3838
"@react-spectrum/contextualhelp": "^3.5.0",
3939
"@react-spectrum/datepicker": "^3.4.0",
4040
"@react-spectrum/dialog": "^3.7.0",
@@ -47,22 +47,22 @@
4747
"@react-spectrum/labeledvalue": "^3.1.0",
4848
"@react-spectrum/layout": "^3.5.0",
4949
"@react-spectrum/link": "^3.5.0",
50-
"@react-spectrum/list": "^3.3.0",
51-
"@react-spectrum/listbox": "^3.9.0",
52-
"@react-spectrum/menu": "^3.10.0",
50+
"@react-spectrum/list": "^3.3.1",
51+
"@react-spectrum/listbox": "^3.9.1",
52+
"@react-spectrum/menu": "^3.10.1",
5353
"@react-spectrum/meter": "^3.4.0",
5454
"@react-spectrum/numberfield": "^3.6.0",
5555
"@react-spectrum/overlays": "^5.0.0",
56-
"@react-spectrum/picker": "^3.10.0",
56+
"@react-spectrum/picker": "^3.10.1",
5757
"@react-spectrum/progress": "^3.4.0",
5858
"@react-spectrum/provider": "^3.7.0",
5959
"@react-spectrum/radio": "^3.5.0",
6060
"@react-spectrum/searchfield": "^3.7.0",
6161
"@react-spectrum/slider": "^3.5.0",
6262
"@react-spectrum/statuslight": "^3.5.0",
6363
"@react-spectrum/switch": "^3.4.0",
64-
"@react-spectrum/table": "^3.7.0",
65-
"@react-spectrum/tabs": "^3.5.0",
64+
"@react-spectrum/table": "^3.7.1",
65+
"@react-spectrum/tabs": "^3.5.1",
6666
"@react-spectrum/text": "^3.4.0",
6767
"@react-spectrum/textfield": "^3.10.0",
6868
"@react-spectrum/theme-dark": "^3.5.0",

packages/@adobe/spectrum-css-temp/components/circleloader/skin.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ governing permissions and limitations under the License.
4343
@media (forced-colors: active) {
4444
.spectrum-CircleLoader {
4545
--spectrum-loader-circle-medium-track-fill-color: Highlight;
46-
--spectrum-loader-circle-medium-over-background-track-fill-color: Canvas;
46+
--spectrum-loader-circle-medium-over-background-track-fill-color: Highlight;
47+
--spectrum-loader-circle-medium-track-color: CanvasText;
4748
}
4849
}

packages/@adobe/spectrum-css-temp/components/radio/index.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ governing permissions and limitations under the License.
1212

1313
@import '../commons/index.css';
1414

15-
:root {
15+
.spectrum-Radio {
1616
--spectrum-radio-radius: calc(var(--spectrum-radio-circle-diameter) / 2);
1717
--spectrum-radio-border-width-checked: calc(calc(var(--spectrum-radio-circle-diameter) / 2) - calc(var(--spectrum-radio-circle-dot-size) / 2));
1818

packages/@adobe/spectrum-css-temp/components/table/skin.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ tbody.spectrum-Table-body {
180180
/* Box shadow for bottom border for non-selected rows that aren't immediately above a selected row. Can't omit the bottom border for last row unlike listview
181181
* due to how table rows always reserve 1px for the bottom border (results in a white gap on hover otherwise).
182182
*/
183-
&:after {
183+
&:not(tr):after {
184184
box-shadow: inset 0 -1px 0 0 var(--spectrum-table-cell-border-color);
185185
content: '';
186186
display: block;

packages/@react-aria/accordion/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/accordion",
3-
"version": "3.0.0-alpha.15",
3+
"version": "3.0.0-alpha.16",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -24,7 +24,7 @@
2424
"dependencies": {
2525
"@react-aria/button": "^3.7.0",
2626
"@react-aria/interactions": "^3.14.0",
27-
"@react-aria/selection": "^3.13.0",
27+
"@react-aria/selection": "^3.13.1",
2828
"@react-aria/utils": "^3.15.0",
2929
"@react-stately/tree": "^3.5.0",
3030
"@react-types/accordion": "3.0.0-alpha.12",

packages/@react-aria/actiongroup/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/actiongroup",
3-
"version": "3.5.0",
3+
"version": "3.5.1",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -25,7 +25,7 @@
2525
"@react-aria/focus": "^3.11.0",
2626
"@react-aria/i18n": "^3.7.0",
2727
"@react-aria/interactions": "^3.14.0",
28-
"@react-aria/selection": "^3.13.0",
28+
"@react-aria/selection": "^3.13.1",
2929
"@react-aria/utils": "^3.15.0",
3030
"@react-stately/collections": "^3.6.0",
3131
"@react-stately/list": "^3.7.0",

packages/@react-aria/autocomplete/docs/useSearchAutocomplete.mdx

+16-13
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ function SearchAutocomplete(props) {
140140
let inputRef = React.useRef(null);
141141
let listBoxRef = React.useRef(null);
142142
let popoverRef = React.useRef(null);
143+
let buttonRef = React.useRef(null);
143144

144145
let {inputProps, listBoxProps, labelProps, clearButtonProps} = useSearchAutocomplete(
145146
{
@@ -151,7 +152,7 @@ function SearchAutocomplete(props) {
151152
state
152153
);
153154

154-
let {buttonProps} = useButton(clearButtonProps);
155+
let {buttonProps} = useButton(clearButtonProps, buttonRef);
155156

156157
return (
157158
<div style={{display: 'inline-flex', flexDirection: 'column'}}>
@@ -167,7 +168,7 @@ function SearchAutocomplete(props) {
167168
fontSize: 16
168169
}} />
169170
{state.inputValue !== '' &&
170-
<button {...buttonProps}>❎</button>
171+
<button {...buttonProps} ref={buttonRef}>❎</button>
171172
}
172173
{state.isOpen &&
173174
<Popover state={state} triggerRef={inputRef} popoverRef={popoverRef} isNonModal placement="bottom start">
@@ -203,21 +204,23 @@ See [usePopover](usePopover.html) for more examples of popovers.
203204
<summary style={{fontWeight: 'bold'}}><ChevronRight size="S" /> Show code</summary>
204205

205206
```tsx example export=true render=false
207+
import type {AriaPopoverProps} from 'react-aria';
208+
import type {OverlayTriggerState} from 'react-stately';
206209
import {usePopover, Overlay, DismissButton} from '@react-aria/overlays';
207210

208-
function Popover({children, state, ...props}) {
209-
let ref = React.useRef();
210-
let {popoverRef = ref} = props;
211-
let {popoverProps} = usePopover({
212-
...props,
213-
popoverRef
214-
}, state);
211+
interface PopoverProps extends AriaPopoverProps {
212+
children: React.ReactNode,
213+
state: OverlayTriggerState
214+
}
215+
216+
function Popover({children, state, ...props}: PopoverProps) {
217+
let {popoverProps} = usePopover(props, state);
215218

216219
return (
217220
<Overlay>
218221
<div
219222
{...popoverProps}
220-
ref={popoverRef}
223+
ref={props.popoverRef as React.RefObject<HTMLDivElement>}
221224
style={{
222225
...popoverProps.style,
223226
background: 'lightgray',
@@ -246,7 +249,7 @@ user types in the SearchAutocomplete. They can also be shared with other compone
246249
import {useListBox, useOption} from '@react-aria/listbox';
247250

248251
function ListBox(props) {
249-
let ref = React.useRef();
252+
let ref = React.useRef(null);
250253
let {listBoxRef = ref, state} = props;
251254
let {listBoxProps} = useListBox(props, state, listBoxRef);
252255

@@ -273,7 +276,7 @@ function ListBox(props) {
273276
}
274277

275278
function Option({item, state}) {
276-
let ref = React.useRef();
279+
let ref = React.useRef(null);
277280
let {optionProps, isSelected, isFocused, isDisabled} = useOption({key: item.key}, state, ref);
278281

279282
let backgroundColor;
@@ -350,7 +353,7 @@ function Example() {
350353
{id: 8, name: 'Agricultural'},
351354
{id: 9, name: 'Electrical'}
352355
];
353-
let [major, setMajor] = React.useState();
356+
let [major, setMajor] = React.useState(null);
354357

355358
let onSubmit = (value, key) => {
356359
if (value) {

packages/@react-aria/autocomplete/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/autocomplete",
3-
"version": "3.0.0-alpha.14",
3+
"version": "3.0.0-alpha.15",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -22,14 +22,14 @@
2222
"url": "https://github.com/adobe/react-spectrum"
2323
},
2424
"dependencies": {
25-
"@react-aria/combobox": "^3.5.0",
25+
"@react-aria/combobox": "^3.5.1",
2626
"@react-aria/i18n": "^3.7.0",
27-
"@react-aria/listbox": "^3.8.0",
27+
"@react-aria/listbox": "^3.8.1",
2828
"@react-aria/live-announcer": "^3.2.0",
29-
"@react-aria/menu": "^3.8.0",
29+
"@react-aria/menu": "^3.8.1",
3030
"@react-aria/overlays": "^3.13.0",
3131
"@react-aria/searchfield": "^3.5.0",
32-
"@react-aria/selection": "^3.13.0",
32+
"@react-aria/selection": "^3.13.1",
3333
"@react-aria/textfield": "^3.9.0",
3434
"@react-aria/utils": "^3.15.0",
3535
"@react-stately/collections": "^3.6.0",

packages/@react-aria/breadcrumbs/docs/useBreadcrumbs.mdx

+12-12
Original file line numberDiff line numberDiff line change
@@ -92,21 +92,21 @@ import {useBreadcrumbs, useBreadcrumbItem} from '@react-aria/breadcrumbs';
9292

9393
function Breadcrumbs(props) {
9494
let {navProps} = useBreadcrumbs(props);
95-
let children = React.Children.toArray(props.children);
95+
let childCount = React.Children.count(props.children);
9696

9797
return (
9898
<nav {...navProps}>
9999
<ol style={{display: 'flex', listStyle: 'none', margin: 0, padding: 0}}>
100-
{children.map((child, i) =>
101-
React.cloneElement(child, {isCurrent: i === children.length - 1})
100+
{React.Children.map(props.children, (child, i) =>
101+
React.cloneElement(child, {isCurrent: i === childCount - 1})
102102
)}
103103
</ol>
104104
</nav>
105105
)
106106
}
107107

108108
function BreadcrumbItem(props) {
109-
let ref = React.useRef();
109+
let ref = React.useRef(null);
110110
let {itemProps} = useBreadcrumbItem({...props, elementType: 'span'}, ref);
111111
return (
112112
<li>
@@ -144,21 +144,21 @@ for each BreadcrumbItem. This is the default `elementType`, so the option can be
144144
///- begin collapse -///
145145
function Breadcrumbs(props) {
146146
let {navProps} = useBreadcrumbs(props);
147-
let children = React.Children.toArray(props.children);
147+
let childCount = React.Children.count(props.children);
148148

149149
return (
150150
<nav {...navProps}>
151151
<ol style={{display: 'flex', listStyle: 'none', margin: 0, padding: 0}}>
152-
{children.map((child, i) =>
153-
React.cloneElement(child, {isCurrent: i === children.length - 1})
152+
{React.Children.map(props.children, (child, i) =>
153+
React.cloneElement(child, {isCurrent: i === childCount - 1})
154154
)}
155155
</ol>
156156
</nav>
157157
);
158158
}
159159
///- end collapse -///
160160
function BreadcrumbItem(props) {
161-
let ref = React.useRef();
161+
let ref = React.useRef(null);
162162
let {itemProps} = useBreadcrumbItem(props, ref);
163163
return (
164164
<li>
@@ -200,21 +200,21 @@ the current has elementType `h3` and all other breadcrumbs are of type `a`.
200200
///- begin collapse -///
201201
function Breadcrumbs(props) {
202202
let {navProps} = useBreadcrumbs(props);
203-
let children = React.Children.toArray(props.children);
203+
let childCount = React.Children.count(props.children);
204204

205205
return (
206206
<nav {...navProps}>
207207
<ol style={{display: 'flex', listStyle: 'none', margin: 0, padding: 0}}>
208-
{children.map((child, i) =>
209-
React.cloneElement(child, {isCurrent: i === children.length - 1})
208+
{React.Children.map(props.children, (child, i) =>
209+
React.cloneElement(child, {isCurrent: i === childCount - 1})
210210
)}
211211
</ol>
212212
</nav>
213213
)
214214
}
215215
///- end collapse -///
216216
function BreadcrumbItem(props) {
217-
let ref = React.useRef();
217+
let ref = React.useRef(null);
218218
let {itemProps} = useBreadcrumbItem({
219219
...props,
220220
elementType: props.isCurrent ? 'h3' : 'a'

0 commit comments

Comments
 (0)