@react-aria/button 3.0.0-nightly.1345 → 3.0.0-nightly.1356

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/main.js CHANGED
@@ -1,126 +1,107 @@
1
- var _babelRuntimeHelpersExtends = $parcel$interopDefault(require("@babel/runtime/helpers/extends"));
1
+ var $aTJy2$reactariautils = require("@react-aria/utils");
2
+ var $aTJy2$reactariafocus = require("@react-aria/focus");
3
+ var $aTJy2$reactariainteractions = require("@react-aria/interactions");
2
4
 
3
- var {
4
- usePress
5
- } = require("@react-aria/interactions");
5
+ function $parcel$exportWildcard(dest, source) {
6
+ Object.keys(source).forEach(function(key) {
7
+ if (key === 'default' || key === '__esModule' || dest.hasOwnProperty(key)) {
8
+ return;
9
+ }
6
10
 
7
- var {
8
- useFocusable
9
- } = require("@react-aria/focus");
10
-
11
- var {
12
- filterDOMProps,
13
- mergeProps,
14
- chain
15
- } = require("@react-aria/utils");
11
+ Object.defineProperty(dest, key, {
12
+ enumerable: true,
13
+ get: function get() {
14
+ return source[key];
15
+ }
16
+ });
17
+ });
16
18
 
17
- function $parcel$interopDefault(a) {
18
- return a && a.__esModule ? a.default : a;
19
+ return dest;
19
20
  }
21
+ function $parcel$export(e, n, v, s) {
22
+ Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
23
+ }
24
+ var $183ed812e03a7a09$exports = {};
25
+
26
+ $parcel$export($183ed812e03a7a09$exports, "useButton", () => $183ed812e03a7a09$export$ea18c227d4417cc3);
20
27
 
21
- /**
22
- * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,
23
- * focus behavior, and ARIA props for both native button elements and custom element types.
24
- * @param props - Props to be applied to the button.
25
- * @param ref - A ref to a DOM element for the button.
26
- */
27
- function useButton(props, ref) {
28
- let {
29
- elementType = 'button',
30
- isDisabled,
31
- onPress,
32
- onPressStart,
33
- onPressEnd,
34
- onPressChange,
35
- // @ts-ignore - undocumented
36
- preventFocusOnPress,
37
- // @ts-ignore
38
- onClick: deprecatedOnClick,
39
- href,
40
- target,
41
- rel,
42
- type = 'button'
43
- } = props;
44
- let additionalProps;
45
-
46
- if (elementType === 'button') {
47
- additionalProps = {
48
- type,
49
- disabled: isDisabled
28
+
29
+
30
+
31
+ function $183ed812e03a7a09$export$ea18c227d4417cc3(props, ref) {
32
+ let { elementType: elementType = 'button' , isDisabled: isDisabled , onPress: onPress , onPressStart: onPressStart , onPressEnd: onPressEnd , onPressChange: onPressChange , preventFocusOnPress: // @ts-ignore - undocumented
33
+ preventFocusOnPress , // @ts-ignore
34
+ onClick: deprecatedOnClick , href: href , target: target , rel: rel , type: type = 'button' } = props;
35
+ let additionalProps;
36
+ if (elementType === 'button') additionalProps = {
37
+ type: type,
38
+ disabled: isDisabled
50
39
  };
51
- } else {
52
- additionalProps = {
53
- role: 'button',
54
- tabIndex: isDisabled ? undefined : 0,
55
- href: elementType === 'a' && isDisabled ? undefined : href,
56
- target: elementType === 'a' ? target : undefined,
57
- type: elementType === 'input' ? type : undefined,
58
- disabled: elementType === 'input' ? isDisabled : undefined,
59
- 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,
60
- rel: elementType === 'a' ? rel : undefined
40
+ else additionalProps = {
41
+ role: 'button',
42
+ tabIndex: isDisabled ? undefined : 0,
43
+ href: elementType === 'a' && isDisabled ? undefined : href,
44
+ target: elementType === 'a' ? target : undefined,
45
+ type: elementType === 'input' ? type : undefined,
46
+ disabled: elementType === 'input' ? isDisabled : undefined,
47
+ 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,
48
+ rel: elementType === 'a' ? rel : undefined
49
+ };
50
+ let { pressProps: pressProps , isPressed: isPressed } = $aTJy2$reactariainteractions.usePress({
51
+ onPressStart: onPressStart,
52
+ onPressEnd: onPressEnd,
53
+ onPressChange: onPressChange,
54
+ onPress: onPress,
55
+ isDisabled: isDisabled,
56
+ preventFocusOnPress: preventFocusOnPress,
57
+ ref: ref
58
+ });
59
+ let { focusableProps: focusableProps } = $aTJy2$reactariafocus.useFocusable(props, ref);
60
+ let buttonProps = $aTJy2$reactariautils.mergeProps(focusableProps, pressProps);
61
+ buttonProps = $aTJy2$reactariautils.mergeProps(buttonProps, $aTJy2$reactariautils.filterDOMProps(props, {
62
+ labelable: true
63
+ }));
64
+ return {
65
+ isPressed: isPressed,
66
+ buttonProps: $aTJy2$reactariautils.mergeProps(additionalProps, buttonProps, {
67
+ 'aria-haspopup': props['aria-haspopup'],
68
+ 'aria-expanded': props['aria-expanded'],
69
+ 'aria-controls': props['aria-controls'],
70
+ 'aria-pressed': props['aria-pressed'],
71
+ onClick: (e)=>{
72
+ if (deprecatedOnClick) {
73
+ deprecatedOnClick(e);
74
+ console.warn('onClick is deprecated, please use onPress');
75
+ }
76
+ }
77
+ })
61
78
  };
62
- }
63
-
64
- let {
65
- pressProps,
66
- isPressed
67
- } = usePress({
68
- onPressStart,
69
- onPressEnd,
70
- onPressChange,
71
- onPress,
72
- isDisabled,
73
- preventFocusOnPress,
74
- ref
75
- });
76
- let {
77
- focusableProps
78
- } = useFocusable(props, ref);
79
- let buttonProps = mergeProps(focusableProps, pressProps);
80
- buttonProps = mergeProps(buttonProps, filterDOMProps(props, {
81
- labelable: true
82
- }));
83
- return {
84
- isPressed,
85
- // Used to indicate press state for visual
86
- buttonProps: mergeProps(additionalProps, buttonProps, {
87
- 'aria-haspopup': props['aria-haspopup'],
88
- 'aria-expanded': props['aria-expanded'],
89
- 'aria-controls': props['aria-controls'],
90
- 'aria-pressed': props['aria-pressed'],
91
- onClick: e => {
92
- if (deprecatedOnClick) {
93
- deprecatedOnClick(e);
94
- console.warn('onClick is deprecated, please use onPress');
95
- }
96
- }
97
- })
98
- };
99
79
  }
100
80
 
101
- exports.useButton = useButton;
102
-
103
- /**
104
- * Provides the behavior and accessibility implementation for a toggle button component.
105
- * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.
106
- */
107
- function useToggleButton(props, state, ref) {
108
- const {
109
- isSelected
110
- } = state;
111
- const {
112
- isPressed,
113
- buttonProps
114
- } = useButton(_babelRuntimeHelpersExtends({}, props, {
115
- onPress: chain(state.toggle, props.onPress)
116
- }), ref);
117
- return {
118
- isPressed,
119
- buttonProps: mergeProps(buttonProps, {
120
- 'aria-pressed': isSelected
121
- })
122
- };
81
+
82
+ var $a53e5214abeab36d$exports = {};
83
+
84
+ $parcel$export($a53e5214abeab36d$exports, "useToggleButton", () => $a53e5214abeab36d$export$51e84d46ca0bc451);
85
+
86
+
87
+
88
+ function $a53e5214abeab36d$export$51e84d46ca0bc451(props, state, ref) {
89
+ const { isSelected: isSelected } = state;
90
+ const { isPressed: isPressed , buttonProps: buttonProps } = $183ed812e03a7a09$export$ea18c227d4417cc3({
91
+ ...props,
92
+ onPress: $aTJy2$reactariautils.chain(state.toggle, props.onPress)
93
+ }, ref);
94
+ return {
95
+ isPressed: isPressed,
96
+ buttonProps: $aTJy2$reactariautils.mergeProps(buttonProps, {
97
+ 'aria-pressed': isSelected
98
+ })
99
+ };
123
100
  }
124
101
 
125
- exports.useToggleButton = useToggleButton;
102
+
103
+ $parcel$exportWildcard(module.exports, $183ed812e03a7a09$exports);
104
+ $parcel$exportWildcard(module.exports, $a53e5214abeab36d$exports);
105
+
106
+
126
107
  //# sourceMappingURL=main.js.map
package/dist/main.js.map CHANGED
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;AAAA,SAASA,sBAAT,CAAgCC,CAAhC,EAAmC;AACjC,SAAOA,CAAC,IAAIA,CAAC,CAACC,UAAP,GAAoBD,CAAC,CAACE,OAAtB,GAAgCF,CAAvC;AACD;;ACsCD;;;;;;AAMO,SAASG,SAAT,CAAmBC,KAAnB,EAAwDC,GAAxD,EAA8G;AACnH,MAAI;AACFC,IAAAA,WAAW,GAAG,QADZ;AAEFC,IAAAA,UAFE;AAGFC,IAAAA,OAHE;AAIFC,IAAAA,YAJE;AAKFC,IAAAA,UALE;AAMFC,IAAAA,aANE;AAOF;AACAC,IAAAA,mBARE;AASF;AACAC,IAAAA,OAAO,EAAEC,iBAVP;AAWFC,IAAAA,IAXE;AAYFC,IAAAA,MAZE;AAaFC,IAAAA,GAbE;AAcFC,IAAAA,IAAI,GAAG;AAdL,MAeAd,KAfJ;AAgBA,MAAIe,eAAJ;;AACA,MAAIb,WAAW,KAAK,QAApB,EAA8B;AAC5Ba,IAAAA,eAAe,GAAG;AAChBD,MAAAA,IADgB;AAEhBE,MAAAA,QAAQ,EAAEb;AAFM,KAAlB;AAID,GALD,MAKO;AACLY,IAAAA,eAAe,GAAG;AAChBE,MAAAA,IAAI,EAAE,QADU;AAEhBC,MAAAA,QAAQ,EAAEf,UAAU,GAAGgB,SAAH,GAAe,CAFnB;AAGhBR,MAAAA,IAAI,EAAET,WAAW,KAAK,GAAhB,IAAuBC,UAAvB,GAAoCgB,SAApC,GAAgDR,IAHtC;AAIhBC,MAAAA,MAAM,EAAEV,WAAW,KAAK,GAAhB,GAAsBU,MAAtB,GAA+BO,SAJvB;AAKhBL,MAAAA,IAAI,EAAEZ,WAAW,KAAK,OAAhB,GAA0BY,IAA1B,GAAiCK,SALvB;AAMhBH,MAAAA,QAAQ,EAAEd,WAAW,KAAK,OAAhB,GAA0BC,UAA1B,GAAuCgB,SANjC;AAOhB,uBAAiB,CAAChB,UAAD,IAAeD,WAAW,KAAK,OAA/B,GAAyCiB,SAAzC,GAAqDhB,UAPtD;AAQhBU,MAAAA,GAAG,EAAEX,WAAW,KAAK,GAAhB,GAAsBW,GAAtB,GAA4BM;AARjB,KAAlB;AAUD;;AAED,MAAI;AAACC,IAAAA,UAAD;AAAaC,IAAAA;AAAb,MAA0BC,QAAQ,CAAC;AACrCjB,IAAAA,YADqC;AAErCC,IAAAA,UAFqC;AAGrCC,IAAAA,aAHqC;AAIrCH,IAAAA,OAJqC;AAKrCD,IAAAA,UALqC;AAMrCK,IAAAA,mBANqC;AAOrCP,IAAAA;AAPqC,GAAD,CAAtC;AAUA,MAAI;AAACsB,IAAAA;AAAD,MAAmBC,YAAY,CAACxB,KAAD,EAAQC,GAAR,CAAnC;AACA,MAAIwB,WAAW,GAAGC,UAAU,CAACH,cAAD,EAAiBH,UAAjB,CAA5B;AACAK,EAAAA,WAAW,GAAGC,UAAU,CAACD,WAAD,EAAcE,cAAc,CAAC3B,KAAD,EAAQ;AAAC4B,IAAAA,SAAS,EAAE;AAAZ,GAAR,CAA5B,CAAxB;AAEA,SAAO;AACLP,IAAAA,SADK;AACM;AACXI,IAAAA,WAAW,EAAEC,UAAU,CAACX,eAAD,EAAkBU,WAAlB,EAA+B;AACpD,uBAAiBzB,KAAK,CAAC,eAAD,CAD8B;AAEpD,uBAAiBA,KAAK,CAAC,eAAD,CAF8B;AAGpD,uBAAiBA,KAAK,CAAC,eAAD,CAH8B;AAIpD,sBAAgBA,KAAK,CAAC,cAAD,CAJ+B;AAKpDS,MAAAA,OAAO,EAAGoB,CAAD,IAAO;AACd,YAAInB,iBAAJ,EAAuB;AACrBA,UAAAA,iBAAiB,CAACmB,CAAD,CAAjB;AACAC,UAAAA,OAAO,CAACC,IAAR,CAAa,2CAAb;AACD;AACF;AAVmD,KAA/B;AAFlB,GAAP;AAeD;;;;AC/ED;;;;AAIO,SAASC,eAAT,CAAyBhC,KAAzB,EAAoEiC,KAApE,EAAwFhC,GAAxF,EAA8I;AACnJ,QAAM;AAACiC,IAAAA;AAAD,MAAeD,KAArB;AACA,QAAM;AAACZ,IAAAA,SAAD;AAAYI,IAAAA;AAAZ,MAA2B,0CAC5BzB,KAD4B;AAE/BI,IAAAA,OAAO,EAAE+B,KAAK,CAACF,KAAK,CAACG,MAAP,EAAepC,KAAK,CAACI,OAArB;AAFiB,MAG9BH,GAH8B,CAAjC;AAKA,SAAO;AACLoB,IAAAA,SADK;AAELI,IAAAA,WAAW,EAAEC,UAAU,CAACD,WAAD,EAAc;AACnC,sBAAgBS;AADmB,KAAd;AAFlB,GAAP;AAMD","sources":["./node_modules/@parcel/scope-hoisting/lib/helpers.js","./packages/@react-aria/button/src/useButton.ts","./packages/@react-aria/button/src/useToggleButton.ts"],"sourcesContent":["function $parcel$interopDefault(a) {\n return a && a.__esModule ? a.default : a;\n}\n\nfunction $parcel$defineInteropFlag(a) {\n Object.defineProperty(a, '__esModule', {value: true});\n}\n\nfunction $parcel$exportWildcard(dest, source) {\n Object.keys(source).forEach(function(key) {\n if (key === 'default' || key === '__esModule') {\n return;\n }\n\n Object.defineProperty(dest, key, {\n enumerable: true,\n get: function get() {\n return source[key];\n },\n });\n });\n\n return dest;\n}\n\nfunction $parcel$missingModule(name) {\n var err = new Error(\"Cannot find module '\" + name + \"'\");\n err.code = 'MODULE_NOT_FOUND';\n throw err;\n}\n\nvar $parcel$global =\n typeof globalThis !== 'undefined'\n ? globalThis\n : typeof self !== 'undefined'\n ? self\n : typeof window !== 'undefined'\n ? window\n : typeof global !== 'undefined'\n ? global\n : {};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaButtonProps} from '@react-types/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {useFocusable} from '@react-aria/focus';\nimport {usePress} from '@react-aria/interactions';\n\n\nexport interface ButtonAria<T> {\n /** Props for the button element. */\n buttonProps: T,\n /** Whether the button is currently pressed. */\n isPressed: boolean\n}\n\nexport function useButton(props: AriaButtonProps<'a'>, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useButton(props: AriaButtonProps<'button'>, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useButton(props: AriaButtonProps<'div'>, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useButton(props: AriaButtonProps<'input'>, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useButton(props: AriaButtonProps<'span'>, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,\n * focus behavior, and ARIA props for both native button elements and custom element types.\n * @param props - Props to be applied to the button.\n * @param ref - A ref to a DOM element for the button.\n */\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n let {\n elementType = 'button',\n isDisabled,\n onPress,\n onPressStart,\n onPressEnd,\n onPressChange,\n // @ts-ignore - undocumented\n preventFocusOnPress,\n // @ts-ignore\n onClick: deprecatedOnClick,\n href,\n target,\n rel,\n type = 'button'\n } = props;\n let additionalProps;\n if (elementType === 'button') {\n additionalProps = {\n type,\n disabled: isDisabled\n };\n } else {\n additionalProps = {\n role: 'button',\n tabIndex: isDisabled ? undefined : 0,\n href: elementType === 'a' && isDisabled ? undefined : href,\n target: elementType === 'a' ? target : undefined,\n type: elementType === 'input' ? type : undefined,\n disabled: elementType === 'input' ? isDisabled : undefined,\n 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,\n rel: elementType === 'a' ? rel : undefined\n };\n }\n\n let {pressProps, isPressed} = usePress({\n onPressStart,\n onPressEnd,\n onPressChange,\n onPress,\n isDisabled,\n preventFocusOnPress,\n ref\n });\n\n let {focusableProps} = useFocusable(props, ref);\n let buttonProps = mergeProps(focusableProps, pressProps);\n buttonProps = mergeProps(buttonProps, filterDOMProps(props, {labelable: true}));\n\n return {\n isPressed, // Used to indicate press state for visual\n buttonProps: mergeProps(additionalProps, buttonProps, {\n 'aria-haspopup': props['aria-haspopup'],\n 'aria-expanded': props['aria-expanded'],\n 'aria-controls': props['aria-controls'],\n 'aria-pressed': props['aria-pressed'],\n onClick: (e) => {\n if (deprecatedOnClick) {\n deprecatedOnClick(e);\n console.warn('onClick is deprecated, please use onPress');\n }\n }\n })\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaToggleButtonProps} from '@react-types/button';\nimport {ButtonAria, useButton} from './useButton';\nimport {chain} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {ToggleState} from '@react-stately/toggle';\n\nexport function useToggleButton(props: AriaToggleButtonProps<'a'>, state: ToggleState, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'button'>, state: ToggleState, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'div'>, state: ToggleState, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'input'>, state: ToggleState, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'span'>, state: ToggleState, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a toggle button component.\n * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.\n */\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n const {isSelected} = state;\n const {isPressed, buttonProps} = useButton({\n ...props,\n onPress: chain(state.toggle, props.onPress)\n }, ref);\n\n return {\n isPressed,\n buttonProps: mergeProps(buttonProps, {\n 'aria-pressed': isSelected\n })\n };\n}\n"],"names":["$parcel$interopDefault","a","__esModule","default","useButton","props","ref","elementType","isDisabled","onPress","onPressStart","onPressEnd","onPressChange","preventFocusOnPress","onClick","deprecatedOnClick","href","target","rel","type","additionalProps","disabled","role","tabIndex","undefined","pressProps","isPressed","usePress","focusableProps","useFocusable","buttonProps","mergeProps","filterDOMProps","labelable","e","console","warn","useToggleButton","state","isSelected","chain","toggle"],"version":3,"file":"main.js.map"}
1
+ {"mappings":"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","sources":["packages/@react-aria/button/src/index.ts","packages/@react-aria/button/src/useButton.ts","packages/@react-aria/button/src/useToggleButton.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useButton';\nexport * from './useToggleButton';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaButtonProps} from '@react-types/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {useFocusable} from '@react-aria/focus';\nimport {usePress} from '@react-aria/interactions';\n\n\nexport interface ButtonAria<T> {\n /** Props for the button element. */\n buttonProps: T,\n /** Whether the button is currently pressed. */\n isPressed: boolean\n}\n\nexport function useButton(props: AriaButtonProps<'a'>, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useButton(props: AriaButtonProps<'button'>, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useButton(props: AriaButtonProps<'div'>, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useButton(props: AriaButtonProps<'input'>, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useButton(props: AriaButtonProps<'span'>, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,\n * focus behavior, and ARIA props for both native button elements and custom element types.\n * @param props - Props to be applied to the button.\n * @param ref - A ref to a DOM element for the button.\n */\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n let {\n elementType = 'button',\n isDisabled,\n onPress,\n onPressStart,\n onPressEnd,\n onPressChange,\n // @ts-ignore - undocumented\n preventFocusOnPress,\n // @ts-ignore\n onClick: deprecatedOnClick,\n href,\n target,\n rel,\n type = 'button'\n } = props;\n let additionalProps;\n if (elementType === 'button') {\n additionalProps = {\n type,\n disabled: isDisabled\n };\n } else {\n additionalProps = {\n role: 'button',\n tabIndex: isDisabled ? undefined : 0,\n href: elementType === 'a' && isDisabled ? undefined : href,\n target: elementType === 'a' ? target : undefined,\n type: elementType === 'input' ? type : undefined,\n disabled: elementType === 'input' ? isDisabled : undefined,\n 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,\n rel: elementType === 'a' ? rel : undefined\n };\n }\n\n let {pressProps, isPressed} = usePress({\n onPressStart,\n onPressEnd,\n onPressChange,\n onPress,\n isDisabled,\n preventFocusOnPress,\n ref\n });\n\n let {focusableProps} = useFocusable(props, ref);\n let buttonProps = mergeProps(focusableProps, pressProps);\n buttonProps = mergeProps(buttonProps, filterDOMProps(props, {labelable: true}));\n\n return {\n isPressed, // Used to indicate press state for visual\n buttonProps: mergeProps(additionalProps, buttonProps, {\n 'aria-haspopup': props['aria-haspopup'],\n 'aria-expanded': props['aria-expanded'],\n 'aria-controls': props['aria-controls'],\n 'aria-pressed': props['aria-pressed'],\n onClick: (e) => {\n if (deprecatedOnClick) {\n deprecatedOnClick(e);\n console.warn('onClick is deprecated, please use onPress');\n }\n }\n })\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaToggleButtonProps} from '@react-types/button';\nimport {ButtonAria, useButton} from './useButton';\nimport {chain} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {ToggleState} from '@react-stately/toggle';\n\nexport function useToggleButton(props: AriaToggleButtonProps<'a'>, state: ToggleState, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'button'>, state: ToggleState, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'div'>, state: ToggleState, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'input'>, state: ToggleState, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'span'>, state: ToggleState, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a toggle button component.\n * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.\n */\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n const {isSelected} = state;\n const {isPressed, buttonProps} = useButton({\n ...props,\n onPress: chain(state.toggle, props.onPress)\n }, ref);\n\n return {\n isPressed,\n buttonProps: mergeProps(buttonProps, {\n 'aria-pressed': isSelected\n })\n };\n}\n"],"names":[],"version":3,"file":"main.js.map"}
package/dist/module.js CHANGED
@@ -1,107 +1,90 @@
1
- import _babelRuntimeHelpersEsmExtends from "@babel/runtime/helpers/esm/extends";
2
- import { usePress } from "@react-aria/interactions";
3
- import { useFocusable } from "@react-aria/focus";
4
- import { filterDOMProps, mergeProps, chain } from "@react-aria/utils";
5
-
6
- /**
7
- * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,
8
- * focus behavior, and ARIA props for both native button elements and custom element types.
9
- * @param props - Props to be applied to the button.
10
- * @param ref - A ref to a DOM element for the button.
11
- */
12
- export function useButton(props, ref) {
13
- let {
14
- elementType = 'button',
15
- isDisabled,
16
- onPress,
17
- onPressStart,
18
- onPressEnd,
19
- onPressChange,
20
- // @ts-ignore - undocumented
21
- preventFocusOnPress,
22
- // @ts-ignore
23
- onClick: deprecatedOnClick,
24
- href,
25
- target,
26
- rel,
27
- type = 'button'
28
- } = props;
29
- let additionalProps;
30
-
31
- if (elementType === 'button') {
32
- additionalProps = {
33
- type,
34
- disabled: isDisabled
1
+ import {mergeProps as $g2YqU$mergeProps, filterDOMProps as $g2YqU$filterDOMProps, chain as $g2YqU$chain} from "@react-aria/utils";
2
+ import {useFocusable as $g2YqU$useFocusable} from "@react-aria/focus";
3
+ import {usePress as $g2YqU$usePress} from "@react-aria/interactions";
4
+
5
+ function $parcel$export(e, n, v, s) {
6
+ Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
7
+ }
8
+ var $048ee1f31949f9fd$exports = {};
9
+
10
+ $parcel$export($048ee1f31949f9fd$exports, "useButton", () => $048ee1f31949f9fd$export$ea18c227d4417cc3);
11
+
12
+
13
+
14
+
15
+ function $048ee1f31949f9fd$export$ea18c227d4417cc3(props, ref) {
16
+ let { elementType: elementType = 'button' , isDisabled: isDisabled , onPress: onPress , onPressStart: onPressStart , onPressEnd: onPressEnd , onPressChange: onPressChange , preventFocusOnPress: // @ts-ignore - undocumented
17
+ preventFocusOnPress , // @ts-ignore
18
+ onClick: deprecatedOnClick , href: href , target: target , rel: rel , type: type = 'button' } = props;
19
+ let additionalProps;
20
+ if (elementType === 'button') additionalProps = {
21
+ type: type,
22
+ disabled: isDisabled
35
23
  };
36
- } else {
37
- additionalProps = {
38
- role: 'button',
39
- tabIndex: isDisabled ? undefined : 0,
40
- href: elementType === 'a' && isDisabled ? undefined : href,
41
- target: elementType === 'a' ? target : undefined,
42
- type: elementType === 'input' ? type : undefined,
43
- disabled: elementType === 'input' ? isDisabled : undefined,
44
- 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,
45
- rel: elementType === 'a' ? rel : undefined
24
+ else additionalProps = {
25
+ role: 'button',
26
+ tabIndex: isDisabled ? undefined : 0,
27
+ href: elementType === 'a' && isDisabled ? undefined : href,
28
+ target: elementType === 'a' ? target : undefined,
29
+ type: elementType === 'input' ? type : undefined,
30
+ disabled: elementType === 'input' ? isDisabled : undefined,
31
+ 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,
32
+ rel: elementType === 'a' ? rel : undefined
33
+ };
34
+ let { pressProps: pressProps , isPressed: isPressed } = $g2YqU$usePress({
35
+ onPressStart: onPressStart,
36
+ onPressEnd: onPressEnd,
37
+ onPressChange: onPressChange,
38
+ onPress: onPress,
39
+ isDisabled: isDisabled,
40
+ preventFocusOnPress: preventFocusOnPress,
41
+ ref: ref
42
+ });
43
+ let { focusableProps: focusableProps } = $g2YqU$useFocusable(props, ref);
44
+ let buttonProps = $g2YqU$mergeProps(focusableProps, pressProps);
45
+ buttonProps = $g2YqU$mergeProps(buttonProps, $g2YqU$filterDOMProps(props, {
46
+ labelable: true
47
+ }));
48
+ return {
49
+ isPressed: isPressed,
50
+ buttonProps: $g2YqU$mergeProps(additionalProps, buttonProps, {
51
+ 'aria-haspopup': props['aria-haspopup'],
52
+ 'aria-expanded': props['aria-expanded'],
53
+ 'aria-controls': props['aria-controls'],
54
+ 'aria-pressed': props['aria-pressed'],
55
+ onClick: (e)=>{
56
+ if (deprecatedOnClick) {
57
+ deprecatedOnClick(e);
58
+ console.warn('onClick is deprecated, please use onPress');
59
+ }
60
+ }
61
+ })
46
62
  };
47
- }
48
-
49
- let {
50
- pressProps,
51
- isPressed
52
- } = usePress({
53
- onPressStart,
54
- onPressEnd,
55
- onPressChange,
56
- onPress,
57
- isDisabled,
58
- preventFocusOnPress,
59
- ref
60
- });
61
- let {
62
- focusableProps
63
- } = useFocusable(props, ref);
64
- let buttonProps = mergeProps(focusableProps, pressProps);
65
- buttonProps = mergeProps(buttonProps, filterDOMProps(props, {
66
- labelable: true
67
- }));
68
- return {
69
- isPressed,
70
- // Used to indicate press state for visual
71
- buttonProps: mergeProps(additionalProps, buttonProps, {
72
- 'aria-haspopup': props['aria-haspopup'],
73
- 'aria-expanded': props['aria-expanded'],
74
- 'aria-controls': props['aria-controls'],
75
- 'aria-pressed': props['aria-pressed'],
76
- onClick: e => {
77
- if (deprecatedOnClick) {
78
- deprecatedOnClick(e);
79
- console.warn('onClick is deprecated, please use onPress');
80
- }
81
- }
82
- })
83
- };
84
63
  }
85
64
 
86
- /**
87
- * Provides the behavior and accessibility implementation for a toggle button component.
88
- * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.
89
- */
90
- export function useToggleButton(props, state, ref) {
91
- const {
92
- isSelected
93
- } = state;
94
- const {
95
- isPressed,
96
- buttonProps
97
- } = useButton(_babelRuntimeHelpersEsmExtends({}, props, {
98
- onPress: chain(state.toggle, props.onPress)
99
- }), ref);
100
- return {
101
- isPressed,
102
- buttonProps: mergeProps(buttonProps, {
103
- 'aria-pressed': isSelected
104
- })
105
- };
65
+
66
+ var $cbd434df81526325$exports = {};
67
+
68
+ $parcel$export($cbd434df81526325$exports, "useToggleButton", () => $cbd434df81526325$export$51e84d46ca0bc451);
69
+
70
+
71
+
72
+ function $cbd434df81526325$export$51e84d46ca0bc451(props, state, ref) {
73
+ const { isSelected: isSelected } = state;
74
+ const { isPressed: isPressed , buttonProps: buttonProps } = $048ee1f31949f9fd$export$ea18c227d4417cc3({
75
+ ...props,
76
+ onPress: $g2YqU$chain(state.toggle, props.onPress)
77
+ }, ref);
78
+ return {
79
+ isPressed: isPressed,
80
+ buttonProps: $g2YqU$mergeProps(buttonProps, {
81
+ 'aria-pressed': isSelected
82
+ })
83
+ };
106
84
  }
85
+
86
+
87
+
88
+
89
+ export {$048ee1f31949f9fd$export$ea18c227d4417cc3 as useButton, $cbd434df81526325$export$51e84d46ca0bc451 as useToggleButton};
107
90
  //# sourceMappingURL=module.js.map
@@ -1 +1 @@
1
- {"mappings":"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","sources":["./packages/@react-aria/button/src/useButton.ts","./packages/@react-aria/button/src/useToggleButton.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaButtonProps} from '@react-types/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {useFocusable} from '@react-aria/focus';\nimport {usePress} from '@react-aria/interactions';\n\n\nexport interface ButtonAria<T> {\n /** Props for the button element. */\n buttonProps: T,\n /** Whether the button is currently pressed. */\n isPressed: boolean\n}\n\nexport function useButton(props: AriaButtonProps<'a'>, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useButton(props: AriaButtonProps<'button'>, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useButton(props: AriaButtonProps<'div'>, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useButton(props: AriaButtonProps<'input'>, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useButton(props: AriaButtonProps<'span'>, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,\n * focus behavior, and ARIA props for both native button elements and custom element types.\n * @param props - Props to be applied to the button.\n * @param ref - A ref to a DOM element for the button.\n */\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n let {\n elementType = 'button',\n isDisabled,\n onPress,\n onPressStart,\n onPressEnd,\n onPressChange,\n // @ts-ignore - undocumented\n preventFocusOnPress,\n // @ts-ignore\n onClick: deprecatedOnClick,\n href,\n target,\n rel,\n type = 'button'\n } = props;\n let additionalProps;\n if (elementType === 'button') {\n additionalProps = {\n type,\n disabled: isDisabled\n };\n } else {\n additionalProps = {\n role: 'button',\n tabIndex: isDisabled ? undefined : 0,\n href: elementType === 'a' && isDisabled ? undefined : href,\n target: elementType === 'a' ? target : undefined,\n type: elementType === 'input' ? type : undefined,\n disabled: elementType === 'input' ? isDisabled : undefined,\n 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,\n rel: elementType === 'a' ? rel : undefined\n };\n }\n\n let {pressProps, isPressed} = usePress({\n onPressStart,\n onPressEnd,\n onPressChange,\n onPress,\n isDisabled,\n preventFocusOnPress,\n ref\n });\n\n let {focusableProps} = useFocusable(props, ref);\n let buttonProps = mergeProps(focusableProps, pressProps);\n buttonProps = mergeProps(buttonProps, filterDOMProps(props, {labelable: true}));\n\n return {\n isPressed, // Used to indicate press state for visual\n buttonProps: mergeProps(additionalProps, buttonProps, {\n 'aria-haspopup': props['aria-haspopup'],\n 'aria-expanded': props['aria-expanded'],\n 'aria-controls': props['aria-controls'],\n 'aria-pressed': props['aria-pressed'],\n onClick: (e) => {\n if (deprecatedOnClick) {\n deprecatedOnClick(e);\n console.warn('onClick is deprecated, please use onPress');\n }\n }\n })\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaToggleButtonProps} from '@react-types/button';\nimport {ButtonAria, useButton} from './useButton';\nimport {chain} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {ToggleState} from '@react-stately/toggle';\n\nexport function useToggleButton(props: AriaToggleButtonProps<'a'>, state: ToggleState, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'button'>, state: ToggleState, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'div'>, state: ToggleState, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'input'>, state: ToggleState, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'span'>, state: ToggleState, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a toggle button component.\n * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.\n */\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n const {isSelected} = state;\n const {isPressed, buttonProps} = useButton({\n ...props,\n onPress: chain(state.toggle, props.onPress)\n }, ref);\n\n return {\n isPressed,\n buttonProps: mergeProps(buttonProps, {\n 'aria-pressed': isSelected\n })\n };\n}\n"],"names":["useButton","props","ref","elementType","isDisabled","onPress","onPressStart","onPressEnd","onPressChange","preventFocusOnPress","onClick","deprecatedOnClick","href","target","rel","type","additionalProps","disabled","role","tabIndex","undefined","pressProps","isPressed","usePress","focusableProps","useFocusable","buttonProps","mergeProps","filterDOMProps","labelable","e","console","warn","useToggleButton","state","isSelected","chain","toggle"],"version":3,"file":"module.js.map"}
1
+ {"mappings":"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","sources":["packages/@react-aria/button/src/index.ts","packages/@react-aria/button/src/useButton.ts","packages/@react-aria/button/src/useToggleButton.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useButton';\nexport * from './useToggleButton';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaButtonProps} from '@react-types/button';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {useFocusable} from '@react-aria/focus';\nimport {usePress} from '@react-aria/interactions';\n\n\nexport interface ButtonAria<T> {\n /** Props for the button element. */\n buttonProps: T,\n /** Whether the button is currently pressed. */\n isPressed: boolean\n}\n\nexport function useButton(props: AriaButtonProps<'a'>, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useButton(props: AriaButtonProps<'button'>, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useButton(props: AriaButtonProps<'div'>, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useButton(props: AriaButtonProps<'input'>, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useButton(props: AriaButtonProps<'span'>, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a button component. Handles mouse, keyboard, and touch interactions,\n * focus behavior, and ARIA props for both native button elements and custom element types.\n * @param props - Props to be applied to the button.\n * @param ref - A ref to a DOM element for the button.\n */\nexport function useButton(props: AriaButtonProps<ElementType>, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n let {\n elementType = 'button',\n isDisabled,\n onPress,\n onPressStart,\n onPressEnd,\n onPressChange,\n // @ts-ignore - undocumented\n preventFocusOnPress,\n // @ts-ignore\n onClick: deprecatedOnClick,\n href,\n target,\n rel,\n type = 'button'\n } = props;\n let additionalProps;\n if (elementType === 'button') {\n additionalProps = {\n type,\n disabled: isDisabled\n };\n } else {\n additionalProps = {\n role: 'button',\n tabIndex: isDisabled ? undefined : 0,\n href: elementType === 'a' && isDisabled ? undefined : href,\n target: elementType === 'a' ? target : undefined,\n type: elementType === 'input' ? type : undefined,\n disabled: elementType === 'input' ? isDisabled : undefined,\n 'aria-disabled': !isDisabled || elementType === 'input' ? undefined : isDisabled,\n rel: elementType === 'a' ? rel : undefined\n };\n }\n\n let {pressProps, isPressed} = usePress({\n onPressStart,\n onPressEnd,\n onPressChange,\n onPress,\n isDisabled,\n preventFocusOnPress,\n ref\n });\n\n let {focusableProps} = useFocusable(props, ref);\n let buttonProps = mergeProps(focusableProps, pressProps);\n buttonProps = mergeProps(buttonProps, filterDOMProps(props, {labelable: true}));\n\n return {\n isPressed, // Used to indicate press state for visual\n buttonProps: mergeProps(additionalProps, buttonProps, {\n 'aria-haspopup': props['aria-haspopup'],\n 'aria-expanded': props['aria-expanded'],\n 'aria-controls': props['aria-controls'],\n 'aria-pressed': props['aria-pressed'],\n onClick: (e) => {\n if (deprecatedOnClick) {\n deprecatedOnClick(e);\n console.warn('onClick is deprecated, please use onPress');\n }\n }\n })\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {\n AnchorHTMLAttributes,\n ButtonHTMLAttributes,\n ElementType,\n HTMLAttributes,\n InputHTMLAttributes,\n RefObject\n} from 'react';\nimport {AriaToggleButtonProps} from '@react-types/button';\nimport {ButtonAria, useButton} from './useButton';\nimport {chain} from '@react-aria/utils';\nimport {mergeProps} from '@react-aria/utils';\nimport {ToggleState} from '@react-stately/toggle';\n\nexport function useToggleButton(props: AriaToggleButtonProps<'a'>, state: ToggleState, ref: RefObject<HTMLAnchorElement>): ButtonAria<AnchorHTMLAttributes<HTMLAnchorElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'button'>, state: ToggleState, ref: RefObject<HTMLButtonElement>): ButtonAria<ButtonHTMLAttributes<HTMLButtonElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'div'>, state: ToggleState, ref: RefObject<HTMLDivElement>): ButtonAria<HTMLAttributes<HTMLDivElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'input'>, state: ToggleState, ref: RefObject<HTMLInputElement>): ButtonAria<InputHTMLAttributes<HTMLInputElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<'span'>, state: ToggleState, ref: RefObject<HTMLSpanElement>): ButtonAria<HTMLAttributes<HTMLSpanElement>>;\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<HTMLElement>): ButtonAria<HTMLAttributes<HTMLElement>>;\n/**\n * Provides the behavior and accessibility implementation for a toggle button component.\n * ToggleButtons allow users to toggle a selection on or off, for example switching between two states or modes.\n */\nexport function useToggleButton(props: AriaToggleButtonProps<ElementType>, state: ToggleState, ref: RefObject<any>): ButtonAria<HTMLAttributes<any>> {\n const {isSelected} = state;\n const {isPressed, buttonProps} = useButton({\n ...props,\n onPress: chain(state.toggle, props.onPress)\n }, ref);\n\n return {\n isPressed,\n buttonProps: mergeProps(buttonProps, {\n 'aria-pressed': isSelected\n })\n };\n}\n"],"names":[],"version":3,"file":"module.js.map"}
@@ -1 +1 @@
1
- {"mappings":"A;A;A;AA2BA,4BAA4B,CAAC;IAC3B,oCAAoC;IACpC,WAAW,EAAE,CAAC,CAAC;IACf,+CAA+C;IAC/C,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,0BAA0B,KAAK,EAAE,gBAAgB,GAAG,CAAC,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AAC/I,0BAA0B,KAAK,EAAE,gBAAgB,QAAQ,CAAC,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AACpJ,0BAA0B,KAAK,EAAE,gBAAgB,KAAK,CAAC,EAAE,GAAG,EAAE,UAAU,cAAc,CAAC,GAAG,WAAW,eAAe,cAAc,CAAC,CAAC,CAAC;AACrI,0BAA0B,KAAK,EAAE,gBAAgB,OAAO,CAAC,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,oBAAoB,gBAAgB,CAAC,CAAC,CAAC;AAChJ,0BAA0B,KAAK,EAAE,gBAAgB,MAAM,CAAC,EAAE,GAAG,EAAE,UAAU,eAAe,CAAC,GAAG,WAAW,eAAe,eAAe,CAAC,CAAC,CAAC;AACxI,0BAA0B,KAAK,EAAE,gBAAgB,WAAW,CAAC,EAAE,GAAG,EAAE,UAAU,WAAW,CAAC,GAAG,WAAW,eAAe,WAAW,CAAC,CAAC,CAAC;ACbrI,gCAAgC,KAAK,EAAE,sBAAsB,GAAG,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AAC/K,gCAAgC,KAAK,EAAE,sBAAsB,QAAQ,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AACpL,gCAAgC,KAAK,EAAE,sBAAsB,KAAK,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,cAAc,CAAC,GAAG,WAAW,eAAe,cAAc,CAAC,CAAC,CAAC;AACrK,gCAAgC,KAAK,EAAE,sBAAsB,OAAO,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,oBAAoB,gBAAgB,CAAC,CAAC,CAAC;AAChL,gCAAgC,KAAK,EAAE,sBAAsB,MAAM,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,eAAe,CAAC,GAAG,WAAW,eAAe,eAAe,CAAC,CAAC,CAAC;AACxK,gCAAgC,KAAK,EAAE,sBAAsB,WAAW,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,WAAW,CAAC,GAAG,WAAW,eAAe,WAAW,CAAC,CAAC,CAAC","sources":["./packages/@react-aria/button/src/packages/@react-aria/button/src/useButton.ts","./packages/@react-aria/button/src/packages/@react-aria/button/src/useToggleButton.ts","./packages/@react-aria/button/src/packages/@react-aria/button/src/index.ts"],"sourcesContent":[null,null,null],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":";;;AA2BA,4BAA4B,CAAC;IAC3B,oCAAoC;IACpC,WAAW,EAAE,CAAC,CAAC;IACf,+CAA+C;IAC/C,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,0BAA0B,KAAK,EAAE,gBAAgB,GAAG,CAAC,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AAC/I,0BAA0B,KAAK,EAAE,gBAAgB,QAAQ,CAAC,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AACpJ,0BAA0B,KAAK,EAAE,gBAAgB,KAAK,CAAC,EAAE,GAAG,EAAE,UAAU,cAAc,CAAC,GAAG,WAAW,eAAe,cAAc,CAAC,CAAC,CAAC;AACrI,0BAA0B,KAAK,EAAE,gBAAgB,OAAO,CAAC,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,oBAAoB,gBAAgB,CAAC,CAAC,CAAC;AAChJ,0BAA0B,KAAK,EAAE,gBAAgB,MAAM,CAAC,EAAE,GAAG,EAAE,UAAU,eAAe,CAAC,GAAG,WAAW,eAAe,eAAe,CAAC,CAAC,CAAC;AACxI,0BAA0B,KAAK,EAAE,gBAAgB,WAAW,CAAC,EAAE,GAAG,EAAE,UAAU,WAAW,CAAC,GAAG,WAAW,eAAe,WAAW,CAAC,CAAC,CAAC;ACbrI,gCAAgC,KAAK,EAAE,sBAAsB,GAAG,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AAC/K,gCAAgC,KAAK,EAAE,sBAAsB,QAAQ,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,iBAAiB,CAAC,GAAG,WAAW,qBAAqB,iBAAiB,CAAC,CAAC,CAAC;AACpL,gCAAgC,KAAK,EAAE,sBAAsB,KAAK,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,cAAc,CAAC,GAAG,WAAW,eAAe,cAAc,CAAC,CAAC,CAAC;AACrK,gCAAgC,KAAK,EAAE,sBAAsB,OAAO,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,oBAAoB,gBAAgB,CAAC,CAAC,CAAC;AAChL,gCAAgC,KAAK,EAAE,sBAAsB,MAAM,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,eAAe,CAAC,GAAG,WAAW,eAAe,eAAe,CAAC,CAAC,CAAC;AACxK,gCAAgC,KAAK,EAAE,sBAAsB,WAAW,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,WAAW,CAAC,GAAG,WAAW,eAAe,WAAW,CAAC,CAAC,CAAC","sources":["packages/@react-aria/button/src/packages/@react-aria/button/src/useButton.ts","packages/@react-aria/button/src/packages/@react-aria/button/src/useToggleButton.ts","packages/@react-aria/button/src/packages/@react-aria/button/src/index.ts","packages/@react-aria/button/src/index.ts"],"sourcesContent":[null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useButton';\nexport * from './useToggleButton';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-aria/button",
3
- "version": "3.0.0-nightly.1345+f6ce7acdd",
3
+ "version": "3.0.0-nightly.1356+87960ad25",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -18,11 +18,11 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@babel/runtime": "^7.6.2",
21
- "@react-aria/focus": "3.0.0-nightly.1345+f6ce7acdd",
22
- "@react-aria/interactions": "3.0.0-nightly.1345+f6ce7acdd",
23
- "@react-aria/utils": "3.0.0-nightly.1345+f6ce7acdd",
24
- "@react-stately/toggle": "3.0.0-nightly.1345+f6ce7acdd",
25
- "@react-types/button": "3.4.2-nightly.3036+f6ce7acdd"
21
+ "@react-aria/focus": "3.0.0-nightly.1356+87960ad25",
22
+ "@react-aria/interactions": "3.0.0-nightly.1356+87960ad25",
23
+ "@react-aria/utils": "3.0.0-nightly.1356+87960ad25",
24
+ "@react-stately/toggle": "3.0.0-nightly.1356+87960ad25",
25
+ "@react-types/button": "3.4.2-nightly.3047+87960ad25"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": "^16.8.0 || ^17.0.0-rc.1"
@@ -30,5 +30,5 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "f6ce7acdd85c9a23a3397b0e75350e3208fdd04a"
33
+ "gitHead": "87960ad25c26bc4cd6af506bb5e7e0f06621556c"
34
34
  }