@react-aria/separator 3.1.1 → 3.1.5

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,43 +1,51 @@
1
- var {
2
- filterDOMProps
3
- } = require("@react-aria/utils");
4
-
5
- var _babelRuntimeHelpersExtends = $parcel$interopDefault(require("@babel/runtime/helpers/extends"));
6
-
7
- function $parcel$interopDefault(a) {
8
- return a && a.__esModule ? a.default : a;
9
- }
10
-
11
- /**
12
- * Provides the accessibility implementation for a separator.
13
- * A separator is a visual divider between two groups of content,
14
- * e.g. groups of menu items or sections of a page.
15
- */
16
- function useSeparator(props) {
17
- let domProps = filterDOMProps(props, {
18
- labelable: true
1
+ var $lj7dZ$reactariautils = require("@react-aria/utils");
2
+
3
+ function $parcel$exportWildcard(dest, source) {
4
+ Object.keys(source).forEach(function(key) {
5
+ if (key === 'default' || key === '__esModule' || dest.hasOwnProperty(key)) {
6
+ return;
7
+ }
8
+
9
+ Object.defineProperty(dest, key, {
10
+ enumerable: true,
11
+ get: function get() {
12
+ return source[key];
13
+ }
14
+ });
19
15
  });
20
- let ariaOrientation; // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined
21
- // if it's vertical, we need to specify it
22
16
 
23
- if (props.orientation === 'vertical') {
24
- ariaOrientation = 'vertical';
25
- } // hr elements implicitly have role = separator and a horizontal orientation
26
-
27
-
28
- if (props.elementType !== 'hr') {
17
+ return dest;
18
+ }
19
+ function $parcel$export(e, n, v, s) {
20
+ Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
21
+ }
22
+ var $5835d532307f44ca$exports = {};
23
+
24
+ $parcel$export($5835d532307f44ca$exports, "useSeparator", () => $5835d532307f44ca$export$52210f68a14655d0);
25
+
26
+ function $5835d532307f44ca$export$52210f68a14655d0(props) {
27
+ let domProps = $lj7dZ$reactariautils.filterDOMProps(props, {
28
+ labelable: true
29
+ });
30
+ let ariaOrientation;
31
+ // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined
32
+ // if it's vertical, we need to specify it
33
+ if (props.orientation === 'vertical') ariaOrientation = 'vertical';
34
+ // hr elements implicitly have role = separator and a horizontal orientation
35
+ if (props.elementType !== 'hr') return {
36
+ separatorProps: {
37
+ ...domProps,
38
+ role: 'separator',
39
+ 'aria-orientation': ariaOrientation
40
+ }
41
+ };
29
42
  return {
30
- separatorProps: _babelRuntimeHelpersExtends({}, domProps, {
31
- role: 'separator',
32
- 'aria-orientation': ariaOrientation
33
- })
43
+ separatorProps: domProps
34
44
  };
35
- }
36
-
37
- return {
38
- separatorProps: domProps
39
- };
40
45
  }
41
46
 
42
- exports.useSeparator = useSeparator;
47
+
48
+ $parcel$exportWildcard(module.exports, $5835d532307f44ca$exports);
49
+
50
+
43
51
  //# 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;;AC6BD;;;;;AAKO,SAASG,YAAT,CAAsBC,KAAtB,EAA4D;AACjE,MAAIC,QAAQ,GAAGC,cAAc,CAACF,KAAD,EAAQ;AAACG,IAAAA,SAAS,EAAE;AAAZ,GAAR,CAA7B;AACA,MAAIC,eAAJ,CAFiE,CAGjE;AACA;;AACA,MAAIJ,KAAK,CAACK,WAAN,KAAsB,UAA1B,EAAsC;AACpCD,IAAAA,eAAe,GAAG,UAAlB;AACD,GAPgE,CAQjE;;;AACA,MAAIJ,KAAK,CAACM,WAAN,KAAsB,IAA1B,EAAgC;AAC9B,WAAO;AACLC,MAAAA,cAAc,kCACTN,QADS;AAEZO,QAAAA,IAAI,EAAE,WAFM;AAGZ,4BAAoBJ;AAHR;AADT,KAAP;AAOD;;AACD,SAAO;AAACG,IAAAA,cAAc,EAAEN;AAAjB,GAAP;AACD","sources":["./node_modules/@parcel/scope-hoisting/lib/helpers.js","./packages/@react-aria/separator/src/useSeparator.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 {AriaLabelingProps, DOMProps, Orientation} from '@react-types/shared';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {HTMLAttributes} from 'react';\n\nexport interface SeparatorProps extends DOMProps, AriaLabelingProps {\n /**\n * The orientation of the separator.\n * @default 'horizontal'\n */\n orientation?: Orientation,\n /** The HTML element type that will be used to render the separator. */\n elementType?: string\n}\n\nexport interface SeparatorAria {\n /** Props for the separator element. */\n separatorProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Provides the accessibility implementation for a separator.\n * A separator is a visual divider between two groups of content,\n * e.g. groups of menu items or sections of a page.\n */\nexport function useSeparator(props: SeparatorProps): SeparatorAria {\n let domProps = filterDOMProps(props, {labelable: true});\n let ariaOrientation;\n // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined\n // if it's vertical, we need to specify it\n if (props.orientation === 'vertical') {\n ariaOrientation = 'vertical';\n }\n // hr elements implicitly have role = separator and a horizontal orientation\n if (props.elementType !== 'hr') {\n return {\n separatorProps: {\n ...domProps,\n role: 'separator',\n 'aria-orientation': ariaOrientation\n }\n };\n }\n return {separatorProps: domProps};\n}\n"],"names":["$parcel$interopDefault","a","__esModule","default","useSeparator","props","domProps","filterDOMProps","labelable","ariaOrientation","orientation","elementType","separatorProps","role"],"version":3,"file":"main.js.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;SCoCgB,yCAAY,CAAC,KAAqB,EAAiB,CAAC;IAClE,GAAG,CAAC,QAAQ,GAAG,oCAAc,CAAC,KAAK,EAAE,CAAC;QAAA,SAAS,EAAE,IAAI;IAAA,CAAC;IACtD,GAAG,CAAC,eAAe;IACnB,EAAiG,AAAjG,+FAAiG;IACjG,EAA0C,AAA1C,wCAA0C;IAC1C,EAAE,EAAE,KAAK,CAAC,WAAW,KAAK,CAAU,WAClC,eAAe,GAAG,CAAU;IAE9B,EAA4E,AAA5E,0EAA4E;IAC5E,EAAE,EAAE,KAAK,CAAC,WAAW,KAAK,CAAI,KAC5B,MAAM,CAAC,CAAC;QACN,cAAc,EAAE,CAAC;eACZ,QAAQ;YACX,IAAI,EAAE,CAAW;YACjB,CAAkB,mBAAE,eAAe;QACrC,CAAC;IACH,CAAC;IAEH,MAAM,CAAC,CAAC;QAAA,cAAc,EAAE,QAAQ;IAAA,CAAC;AACnC,CAAC","sources":["packages/@react-aria/separator/src/index.ts","packages/@react-aria/separator/src/useSeparator.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 './useSeparator';\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 {AriaLabelingProps, DOMProps, Orientation} from '@react-types/shared';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {HTMLAttributes} from 'react';\n\nexport interface SeparatorProps extends DOMProps, AriaLabelingProps {\n /**\n * The orientation of the separator.\n * @default 'horizontal'\n */\n orientation?: Orientation,\n /** The HTML element type that will be used to render the separator. */\n elementType?: string\n}\n\nexport interface SeparatorAria {\n /** Props for the separator element. */\n separatorProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Provides the accessibility implementation for a separator.\n * A separator is a visual divider between two groups of content,\n * e.g. groups of menu items or sections of a page.\n */\nexport function useSeparator(props: SeparatorProps): SeparatorAria {\n let domProps = filterDOMProps(props, {labelable: true});\n let ariaOrientation;\n // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined\n // if it's vertical, we need to specify it\n if (props.orientation === 'vertical') {\n ariaOrientation = 'vertical';\n }\n // hr elements implicitly have role = separator and a horizontal orientation\n if (props.elementType !== 'hr') {\n return {\n separatorProps: {\n ...domProps,\n role: 'separator',\n 'aria-orientation': ariaOrientation\n }\n };\n }\n return {separatorProps: domProps};\n}\n"],"names":[],"version":3,"file":"main.js.map"}
package/dist/module.js CHANGED
@@ -1,34 +1,35 @@
1
- import { filterDOMProps } from "@react-aria/utils";
2
- import _babelRuntimeHelpersEsmExtends from "@babel/runtime/helpers/esm/extends";
1
+ import {filterDOMProps as $1uahB$filterDOMProps} from "@react-aria/utils";
3
2
 
4
- /**
5
- * Provides the accessibility implementation for a separator.
6
- * A separator is a visual divider between two groups of content,
7
- * e.g. groups of menu items or sections of a page.
8
- */
9
- export function useSeparator(props) {
10
- let domProps = filterDOMProps(props, {
11
- labelable: true
12
- });
13
- let ariaOrientation; // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined
14
- // if it's vertical, we need to specify it
15
-
16
- if (props.orientation === 'vertical') {
17
- ariaOrientation = 'vertical';
18
- } // hr elements implicitly have role = separator and a horizontal orientation
3
+ function $parcel$export(e, n, v, s) {
4
+ Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
5
+ }
6
+ var $c7a318c69e40f5a5$exports = {};
19
7
 
8
+ $parcel$export($c7a318c69e40f5a5$exports, "useSeparator", () => $c7a318c69e40f5a5$export$52210f68a14655d0);
20
9
 
21
- if (props.elementType !== 'hr') {
10
+ function $c7a318c69e40f5a5$export$52210f68a14655d0(props) {
11
+ let domProps = $1uahB$filterDOMProps(props, {
12
+ labelable: true
13
+ });
14
+ let ariaOrientation;
15
+ // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined
16
+ // if it's vertical, we need to specify it
17
+ if (props.orientation === 'vertical') ariaOrientation = 'vertical';
18
+ // hr elements implicitly have role = separator and a horizontal orientation
19
+ if (props.elementType !== 'hr') return {
20
+ separatorProps: {
21
+ ...domProps,
22
+ role: 'separator',
23
+ 'aria-orientation': ariaOrientation
24
+ }
25
+ };
22
26
  return {
23
- separatorProps: _babelRuntimeHelpersEsmExtends({}, domProps, {
24
- role: 'separator',
25
- 'aria-orientation': ariaOrientation
26
- })
27
+ separatorProps: domProps
27
28
  };
28
- }
29
-
30
- return {
31
- separatorProps: domProps
32
- };
33
29
  }
30
+
31
+
32
+
33
+
34
+ export {$c7a318c69e40f5a5$export$52210f68a14655d0 as useSeparator};
34
35
  //# sourceMappingURL=module.js.map
@@ -1 +1 @@
1
- {"mappings":";;;AA+BA;;;;;OAKO,SAASA,YAAT,CAAsBC,KAAtB,EAA4D;AACjE,MAAIC,QAAQ,GAAGC,cAAc,CAACF,KAAD,EAAQ;AAACG,IAAAA,SAAS,EAAE;AAAZ,GAAR,CAA7B;AACA,MAAIC,eAAJ,CAFiE,CAGjE;AACA;;AACA,MAAIJ,KAAK,CAACK,WAAN,KAAsB,UAA1B,EAAsC;AACpCD,IAAAA,eAAe,GAAG,UAAlB;AACD,GAPgE,CAQjE;;;AACA,MAAIJ,KAAK,CAACM,WAAN,KAAsB,IAA1B,EAAgC;AAC9B,WAAO;AACLC,MAAAA,cAAc,qCACTN,QADS;AAEZO,QAAAA,IAAI,EAAE,WAFM;AAGZ,4BAAoBJ;AAHR;AADT,KAAP;AAOD;;AACD,SAAO;AAACG,IAAAA,cAAc,EAAEN;AAAjB,GAAP;AACD","sources":["./packages/@react-aria/separator/src/useSeparator.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 {AriaLabelingProps, DOMProps, Orientation} from '@react-types/shared';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {HTMLAttributes} from 'react';\n\nexport interface SeparatorProps extends DOMProps, AriaLabelingProps {\n /**\n * The orientation of the separator.\n * @default 'horizontal'\n */\n orientation?: Orientation,\n /** The HTML element type that will be used to render the separator. */\n elementType?: string\n}\n\nexport interface SeparatorAria {\n /** Props for the separator element. */\n separatorProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Provides the accessibility implementation for a separator.\n * A separator is a visual divider between two groups of content,\n * e.g. groups of menu items or sections of a page.\n */\nexport function useSeparator(props: SeparatorProps): SeparatorAria {\n let domProps = filterDOMProps(props, {labelable: true});\n let ariaOrientation;\n // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined\n // if it's vertical, we need to specify it\n if (props.orientation === 'vertical') {\n ariaOrientation = 'vertical';\n }\n // hr elements implicitly have role = separator and a horizontal orientation\n if (props.elementType !== 'hr') {\n return {\n separatorProps: {\n ...domProps,\n role: 'separator',\n 'aria-orientation': ariaOrientation\n }\n };\n }\n return {separatorProps: domProps};\n}\n"],"names":["useSeparator","props","domProps","filterDOMProps","labelable","ariaOrientation","orientation","elementType","separatorProps","role"],"version":3,"file":"module.js.map"}
1
+ {"mappings":";;;;;;;;;SCoCgB,yCAAY,CAAC,KAAqB,EAAiB,CAAC;IAClE,GAAG,CAAC,QAAQ,GAAG,qBAAc,CAAC,KAAK,EAAE,CAAC;QAAA,SAAS,EAAE,IAAI;IAAA,CAAC;IACtD,GAAG,CAAC,eAAe;IACnB,EAAiG,AAAjG,+FAAiG;IACjG,EAA0C,AAA1C,wCAA0C;IAC1C,EAAE,EAAE,KAAK,CAAC,WAAW,KAAK,CAAU,WAClC,eAAe,GAAG,CAAU;IAE9B,EAA4E,AAA5E,0EAA4E;IAC5E,EAAE,EAAE,KAAK,CAAC,WAAW,KAAK,CAAI,KAC5B,MAAM,CAAC,CAAC;QACN,cAAc,EAAE,CAAC;eACZ,QAAQ;YACX,IAAI,EAAE,CAAW;YACjB,CAAkB,mBAAE,eAAe;QACrC,CAAC;IACH,CAAC;IAEH,MAAM,CAAC,CAAC;QAAA,cAAc,EAAE,QAAQ;IAAA,CAAC;AACnC,CAAC","sources":["packages/@react-aria/separator/src/index.ts","packages/@react-aria/separator/src/useSeparator.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 './useSeparator';\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 {AriaLabelingProps, DOMProps, Orientation} from '@react-types/shared';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {HTMLAttributes} from 'react';\n\nexport interface SeparatorProps extends DOMProps, AriaLabelingProps {\n /**\n * The orientation of the separator.\n * @default 'horizontal'\n */\n orientation?: Orientation,\n /** The HTML element type that will be used to render the separator. */\n elementType?: string\n}\n\nexport interface SeparatorAria {\n /** Props for the separator element. */\n separatorProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Provides the accessibility implementation for a separator.\n * A separator is a visual divider between two groups of content,\n * e.g. groups of menu items or sections of a page.\n */\nexport function useSeparator(props: SeparatorProps): SeparatorAria {\n let domProps = filterDOMProps(props, {labelable: true});\n let ariaOrientation;\n // if orientation is horizontal, aria-orientation default is horizontal, so we leave it undefined\n // if it's vertical, we need to specify it\n if (props.orientation === 'vertical') {\n ariaOrientation = 'vertical';\n }\n // hr elements implicitly have role = separator and a horizontal orientation\n if (props.elementType !== 'hr') {\n return {\n separatorProps: {\n ...domProps,\n role: 'separator',\n 'aria-orientation': ariaOrientation\n }\n };\n }\n return {separatorProps: domProps};\n}\n"],"names":[],"version":3,"file":"module.js.map"}
@@ -1 +1 @@
1
- {"mappings":"A;A;AAgBA,+BAAgC,SAAQ,QAAQ,EAAE,iBAAiB;IACjE;A;A;OAGG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,uEAAuE;IACvE,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED;IACE,uCAAuC;IACvC,cAAc,EAAE,eAAe,WAAW,CAAC,CAAA;CAC5C;AAED;A;A;A;GAIG;AACH,6BAA6B,KAAK,EAAE,cAAc,GAAG,aAAa,CAmBjE","sources":["./packages/@react-aria/separator/src/packages/@react-aria/separator/src/useSeparator.ts","./packages/@react-aria/separator/src/packages/@react-aria/separator/src/index.ts"],"sourcesContent":[null,null],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":";;AAgBA,+BAAgC,SAAQ,QAAQ,EAAE,iBAAiB;IACjE;;;OAGG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,uEAAuE;IACvE,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED;IACE,uCAAuC;IACvC,cAAc,EAAE,eAAe,WAAW,CAAC,CAAA;CAC5C;AAED;;;;GAIG;AACH,6BAA6B,KAAK,EAAE,cAAc,GAAG,aAAa,CAmBjE","sources":["packages/@react-aria/separator/src/packages/@react-aria/separator/src/useSeparator.ts","packages/@react-aria/separator/src/packages/@react-aria/separator/src/index.ts","packages/@react-aria/separator/src/index.ts"],"sourcesContent":[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 './useSeparator';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-aria/separator",
3
- "version": "3.1.1",
3
+ "version": "3.1.5",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@babel/runtime": "^7.6.2",
21
- "@react-aria/utils": "^3.3.0",
22
- "@react-types/shared": "^3.2.1"
21
+ "@react-aria/utils": "^3.11.2",
22
+ "@react-types/shared": "^3.11.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "react": "^16.8.0 || ^17.0.0-rc.1"
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "0778f71a3c13e1e24388a23b6d525e3b9f5b98f1"
30
+ "gitHead": "404d41859b7d6f56201d7fc01bd9f22ae3512937"
31
31
  }