@react-spectrum/divider 3.5.16 → 3.5.18
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/Divider.main.js +1 -1
- package/dist/Divider.main.js.map +1 -1
- package/dist/Divider.mjs +1 -1
- package/dist/Divider.module.js +1 -1
- package/dist/Divider.module.js.map +1 -1
- package/dist/rule_vars_css.main.js +11 -11
- package/dist/rule_vars_css.main.js.map +1 -1
- package/dist/rule_vars_css.mjs +11 -11
- package/dist/rule_vars_css.module.js +11 -11
- package/dist/rule_vars_css.module.js.map +1 -1
- package/dist/{vars.4e4c96fa.css → vars.e377bd1e.css} +32 -32
- package/dist/{vars.4e4c96fa.css.map → vars.e377bd1e.css.map} +1 -1
- package/package.json +7 -7
package/dist/Divider.main.js
CHANGED
package/dist/Divider.main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;AASD,IAAI,gCAAU;IACZ,GAAG;IACH,GAAG;IACH,GAAG;AACL;AAEA,SAAS,8BAAQ,KAA2B,EAAE,GAAW;IACvD,QAAQ,CAAA,GAAA,sCAAW,EAAE,OAAO;IAC5B,IAAI,QACF,OAAO,kBACP,cAAc,cACd,GAAG,YACJ,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,mCAAQ,EAAE;IACvB,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,uCAAY,EAAE;IACjC,IAAI,SAAS,6BAAO,CAAC,KAAK;IAE1B,IAAI,UAAuB;IAC3B,IAAI,gBAAgB,YAClB,UAAU;IAGZ,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,sCAAW,EAAE;QAClC,GAAG,KAAK;QACR,aAAa;IACf;IAEA,qBACE,0DAAC;QACE,GAAG,UAAU;QACd,WACE,CAAA,GAAA,oCAAS,EACP,CAAA,GAAA,mDAAK,GACL,iBACA,CAAC,eAAe,EAAE,
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;AASD,IAAI,gCAAU;IACZ,GAAG;IACH,GAAG;IACH,GAAG;AACL;AAEA,SAAS,8BAAQ,KAA2B,EAAE,GAAW;IACvD,QAAQ,CAAA,GAAA,sCAAW,EAAE,OAAO;IAC5B,IAAI,QACF,OAAO,kBACP,cAAc,cACd,GAAG,YACJ,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,mCAAQ,EAAE;IACvB,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,uCAAY,EAAE;IACjC,IAAI,SAAS,6BAAO,CAAC,KAAK;IAE1B,IAAI,UAAuB;IAC3B,IAAI,gBAAgB,YAClB,UAAU;IAGZ,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,sCAAW,EAAE;QAClC,GAAG,KAAK;QACR,aAAa;IACf;IAEA,qBACE,0DAAC;QACE,GAAG,UAAU;QACd,WACE,CAAA,GAAA,oCAAS,EACP,CAAA,GAAA,mDAAK,GACL,iBACA,CAAC,eAAe,EAAE,QAAQ,EAC1B;YACE,2BAA2B,gBAAgB;YAC3C,6BAA6B,gBAAgB;QAC/C,GACA,WAAW,SAAS;QAGxB,kEAAkE;QAClE,KAAK;QACJ,GAAG,cAAc;;AAExB;AAEA;;;CAGC,GACD,IAAI,0DAAW,CAAA,GAAA,sCAAI,EAAE,UAAU,CAAC","sources":["packages/@react-spectrum/divider/src/Divider.tsx"],"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 {classNames, useDOMRef, useSlotProps, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport React, {ElementType} from 'react';\nimport {SpectrumDividerProps} from '@react-types/divider';\nimport styles from '@adobe/spectrum-css-temp/components/rule/vars.css';\nimport {useSeparator} from '@react-aria/separator';\n\nlet sizeMap = {\n S: 'small',\n M: 'medium',\n L: 'large'\n};\n\nfunction Divider(props: SpectrumDividerProps, ref: DOMRef) {\n props = useSlotProps(props, 'divider');\n let {\n size = 'L',\n orientation = 'horizontal',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n let {styleProps} = useStyleProps(otherProps);\n let weight = sizeMap[size];\n\n let Element: ElementType = 'hr';\n if (orientation === 'vertical') {\n Element = 'div';\n }\n\n let {separatorProps} = useSeparator({\n ...props,\n elementType: Element\n });\n\n return (\n <Element\n {...styleProps}\n className={\n classNames(\n styles,\n 'spectrum-Rule',\n `spectrum-Rule--${weight}`,\n {\n 'spectrum-Rule--vertical': orientation === 'vertical',\n 'spectrum-Rule--horizontal': orientation === 'horizontal'\n },\n styleProps.className\n )\n }\n // @ts-ignore https://github.com/Microsoft/TypeScript/issues/28892\n ref={domRef}\n {...separatorProps} />\n );\n}\n\n/**\n * Dividers bring clarity to a layout by grouping and dividing content in close proximity.\n * They can also be used to establish rhythm and hierarchy.\n */\nlet _Divider = React.forwardRef(Divider);\nexport {_Divider as Divider};\n"],"names":[],"version":3,"file":"Divider.main.js.map"}
|
package/dist/Divider.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./vars.
|
|
1
|
+
import "./vars.e377bd1e.css";
|
|
2
2
|
import $budPV$rule_vars_cssmodulejs from "./rule_vars_css.mjs";
|
|
3
3
|
import {useSlotProps as $budPV$useSlotProps, useDOMRef as $budPV$useDOMRef, useStyleProps as $budPV$useStyleProps, classNames as $budPV$classNames} from "@react-spectrum/utils";
|
|
4
4
|
import $budPV$react from "react";
|
package/dist/Divider.module.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./vars.
|
|
1
|
+
import "./vars.e377bd1e.css";
|
|
2
2
|
import $budPV$rule_vars_cssmodulejs from "./rule_vars_css.module.js";
|
|
3
3
|
import {useSlotProps as $budPV$useSlotProps, useDOMRef as $budPV$useDOMRef, useStyleProps as $budPV$useStyleProps, classNames as $budPV$classNames} from "@react-spectrum/utils";
|
|
4
4
|
import $budPV$react from "react";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;AASD,IAAI,gCAAU;IACZ,GAAG;IACH,GAAG;IACH,GAAG;AACL;AAEA,SAAS,8BAAQ,KAA2B,EAAE,GAAW;IACvD,QAAQ,CAAA,GAAA,mBAAW,EAAE,OAAO;IAC5B,IAAI,QACF,OAAO,kBACP,cAAc,cACd,GAAG,YACJ,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,gBAAQ,EAAE;IACvB,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,oBAAY,EAAE;IACjC,IAAI,SAAS,6BAAO,CAAC,KAAK;IAE1B,IAAI,UAAuB;IAC3B,IAAI,gBAAgB,YAClB,UAAU;IAGZ,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,mBAAW,EAAE;QAClC,GAAG,KAAK;QACR,aAAa;IACf;IAEA,qBACE,gCAAC;QACE,GAAG,UAAU;QACd,WACE,CAAA,GAAA,iBAAS,EACP,CAAA,GAAA,sDAAK,GACL,iBACA,CAAC,eAAe,EAAE,
|
|
1
|
+
{"mappings":";;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;AASD,IAAI,gCAAU;IACZ,GAAG;IACH,GAAG;IACH,GAAG;AACL;AAEA,SAAS,8BAAQ,KAA2B,EAAE,GAAW;IACvD,QAAQ,CAAA,GAAA,mBAAW,EAAE,OAAO;IAC5B,IAAI,QACF,OAAO,kBACP,cAAc,cACd,GAAG,YACJ,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,gBAAQ,EAAE;IACvB,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,oBAAY,EAAE;IACjC,IAAI,SAAS,6BAAO,CAAC,KAAK;IAE1B,IAAI,UAAuB;IAC3B,IAAI,gBAAgB,YAClB,UAAU;IAGZ,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,mBAAW,EAAE;QAClC,GAAG,KAAK;QACR,aAAa;IACf;IAEA,qBACE,gCAAC;QACE,GAAG,UAAU;QACd,WACE,CAAA,GAAA,iBAAS,EACP,CAAA,GAAA,sDAAK,GACL,iBACA,CAAC,eAAe,EAAE,QAAQ,EAC1B;YACE,2BAA2B,gBAAgB;YAC3C,6BAA6B,gBAAgB;QAC/C,GACA,WAAW,SAAS;QAGxB,kEAAkE;QAClE,KAAK;QACJ,GAAG,cAAc;;AAExB;AAEA;;;CAGC,GACD,IAAI,0DAAW,CAAA,GAAA,YAAI,EAAE,UAAU,CAAC","sources":["packages/@react-spectrum/divider/src/Divider.tsx"],"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 {classNames, useDOMRef, useSlotProps, useStyleProps} from '@react-spectrum/utils';\nimport {DOMRef} from '@react-types/shared';\nimport React, {ElementType} from 'react';\nimport {SpectrumDividerProps} from '@react-types/divider';\nimport styles from '@adobe/spectrum-css-temp/components/rule/vars.css';\nimport {useSeparator} from '@react-aria/separator';\n\nlet sizeMap = {\n S: 'small',\n M: 'medium',\n L: 'large'\n};\n\nfunction Divider(props: SpectrumDividerProps, ref: DOMRef) {\n props = useSlotProps(props, 'divider');\n let {\n size = 'L',\n orientation = 'horizontal',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n let {styleProps} = useStyleProps(otherProps);\n let weight = sizeMap[size];\n\n let Element: ElementType = 'hr';\n if (orientation === 'vertical') {\n Element = 'div';\n }\n\n let {separatorProps} = useSeparator({\n ...props,\n elementType: Element\n });\n\n return (\n <Element\n {...styleProps}\n className={\n classNames(\n styles,\n 'spectrum-Rule',\n `spectrum-Rule--${weight}`,\n {\n 'spectrum-Rule--vertical': orientation === 'vertical',\n 'spectrum-Rule--horizontal': orientation === 'horizontal'\n },\n styleProps.className\n )\n }\n // @ts-ignore https://github.com/Microsoft/TypeScript/issues/28892\n ref={domRef}\n {...separatorProps} />\n );\n}\n\n/**\n * Dividers bring clarity to a layout by grouping and dividing content in close proximity.\n * They can also be used to establish rhythm and hierarchy.\n */\nlet _Divider = React.forwardRef(Divider);\nexport {_Divider as Divider};\n"],"names":[],"version":3,"file":"Divider.module.js.map"}
|
|
@@ -25,17 +25,17 @@ var $7fdcb1fd1927dca1$export$243baa0ec4ab58cc;
|
|
|
25
25
|
var $7fdcb1fd1927dca1$export$a8d73b58ca350eb9;
|
|
26
26
|
var $7fdcb1fd1927dca1$export$b4b727880cfe37d;
|
|
27
27
|
var $7fdcb1fd1927dca1$export$76f93463a8fc15a8;
|
|
28
|
-
$7fdcb1fd1927dca1$export$f39a09f249340e2a = `
|
|
29
|
-
$7fdcb1fd1927dca1$export$8c4ee2c50c22c514 = `
|
|
30
|
-
$7fdcb1fd1927dca1$export$4109102f950813a6 = `
|
|
31
|
-
$7fdcb1fd1927dca1$export$24c7f46a6e3605dd = `
|
|
32
|
-
$7fdcb1fd1927dca1$export$2927016961429360 = `
|
|
33
|
-
$7fdcb1fd1927dca1$export$9ebf9cdaed6878bc = `
|
|
34
|
-
$7fdcb1fd1927dca1$export$563c1b24466c05b8 = `
|
|
35
|
-
$7fdcb1fd1927dca1$export$243baa0ec4ab58cc = `
|
|
36
|
-
$7fdcb1fd1927dca1$export$a8d73b58ca350eb9 = `
|
|
37
|
-
$7fdcb1fd1927dca1$export$b4b727880cfe37d = `
|
|
38
|
-
$7fdcb1fd1927dca1$export$76f93463a8fc15a8 = `
|
|
28
|
+
$7fdcb1fd1927dca1$export$f39a09f249340e2a = `VXVB8W_focus-ring`;
|
|
29
|
+
$7fdcb1fd1927dca1$export$8c4ee2c50c22c514 = `VXVB8W_i18nFontFamily`;
|
|
30
|
+
$7fdcb1fd1927dca1$export$4109102f950813a6 = `VXVB8W_spectrum-FocusRing-ring`;
|
|
31
|
+
$7fdcb1fd1927dca1$export$24c7f46a6e3605dd = `VXVB8W_spectrum-FocusRing ${$7fdcb1fd1927dca1$export$4109102f950813a6}`;
|
|
32
|
+
$7fdcb1fd1927dca1$export$2927016961429360 = `VXVB8W_spectrum-FocusRing--quiet`;
|
|
33
|
+
$7fdcb1fd1927dca1$export$9ebf9cdaed6878bc = `VXVB8W_spectrum-Rule`;
|
|
34
|
+
$7fdcb1fd1927dca1$export$563c1b24466c05b8 = `VXVB8W_spectrum-Rule--horizontal`;
|
|
35
|
+
$7fdcb1fd1927dca1$export$243baa0ec4ab58cc = `VXVB8W_spectrum-Rule--large`;
|
|
36
|
+
$7fdcb1fd1927dca1$export$a8d73b58ca350eb9 = `VXVB8W_spectrum-Rule--medium`;
|
|
37
|
+
$7fdcb1fd1927dca1$export$b4b727880cfe37d = `VXVB8W_spectrum-Rule--small`;
|
|
38
|
+
$7fdcb1fd1927dca1$export$76f93463a8fc15a8 = `VXVB8W_spectrum-Rule--vertical`;
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
//# sourceMappingURL=rule_vars_css.main.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AAVA,4CAA+B,CAAC,iBAAiB,CAAC;AAClD,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAuC,CAAC,0BAA0B,EAAE,
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AAVA,4CAA+B,CAAC,iBAAiB,CAAC;AAClD,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAuC,CAAC,0BAA0B,EAAE,2CAA2C;AAC/G,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAkC,CAAC,oBAAoB,CAAC;AACxD,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAA0C,CAAC,4BAA4B,CAAC;AACxE,2CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAA4C,CAAC,8BAA8B,CAAC","sources":["packages/@adobe/spectrum-css-temp/components/rule/vars.css"],"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\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"rule_vars_css.main.js.map"}
|
package/dist/rule_vars_css.mjs
CHANGED
|
@@ -26,17 +26,17 @@ var $7a9eac509b76fa30$export$243baa0ec4ab58cc;
|
|
|
26
26
|
var $7a9eac509b76fa30$export$a8d73b58ca350eb9;
|
|
27
27
|
var $7a9eac509b76fa30$export$b4b727880cfe37d;
|
|
28
28
|
var $7a9eac509b76fa30$export$76f93463a8fc15a8;
|
|
29
|
-
$7a9eac509b76fa30$export$f39a09f249340e2a = `
|
|
30
|
-
$7a9eac509b76fa30$export$8c4ee2c50c22c514 = `
|
|
31
|
-
$7a9eac509b76fa30$export$4109102f950813a6 = `
|
|
32
|
-
$7a9eac509b76fa30$export$24c7f46a6e3605dd = `
|
|
33
|
-
$7a9eac509b76fa30$export$2927016961429360 = `
|
|
34
|
-
$7a9eac509b76fa30$export$9ebf9cdaed6878bc = `
|
|
35
|
-
$7a9eac509b76fa30$export$563c1b24466c05b8 = `
|
|
36
|
-
$7a9eac509b76fa30$export$243baa0ec4ab58cc = `
|
|
37
|
-
$7a9eac509b76fa30$export$a8d73b58ca350eb9 = `
|
|
38
|
-
$7a9eac509b76fa30$export$b4b727880cfe37d = `
|
|
39
|
-
$7a9eac509b76fa30$export$76f93463a8fc15a8 = `
|
|
29
|
+
$7a9eac509b76fa30$export$f39a09f249340e2a = `VXVB8W_focus-ring`;
|
|
30
|
+
$7a9eac509b76fa30$export$8c4ee2c50c22c514 = `VXVB8W_i18nFontFamily`;
|
|
31
|
+
$7a9eac509b76fa30$export$4109102f950813a6 = `VXVB8W_spectrum-FocusRing-ring`;
|
|
32
|
+
$7a9eac509b76fa30$export$24c7f46a6e3605dd = `VXVB8W_spectrum-FocusRing ${$7a9eac509b76fa30$export$4109102f950813a6}`;
|
|
33
|
+
$7a9eac509b76fa30$export$2927016961429360 = `VXVB8W_spectrum-FocusRing--quiet`;
|
|
34
|
+
$7a9eac509b76fa30$export$9ebf9cdaed6878bc = `VXVB8W_spectrum-Rule`;
|
|
35
|
+
$7a9eac509b76fa30$export$563c1b24466c05b8 = `VXVB8W_spectrum-Rule--horizontal`;
|
|
36
|
+
$7a9eac509b76fa30$export$243baa0ec4ab58cc = `VXVB8W_spectrum-Rule--large`;
|
|
37
|
+
$7a9eac509b76fa30$export$a8d73b58ca350eb9 = `VXVB8W_spectrum-Rule--medium`;
|
|
38
|
+
$7a9eac509b76fa30$export$b4b727880cfe37d = `VXVB8W_spectrum-Rule--small`;
|
|
39
|
+
$7a9eac509b76fa30$export$76f93463a8fc15a8 = `VXVB8W_spectrum-Rule--vertical`;
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
export {$7a9eac509b76fa30$exports as default};
|
|
@@ -26,17 +26,17 @@ var $7a9eac509b76fa30$export$243baa0ec4ab58cc;
|
|
|
26
26
|
var $7a9eac509b76fa30$export$a8d73b58ca350eb9;
|
|
27
27
|
var $7a9eac509b76fa30$export$b4b727880cfe37d;
|
|
28
28
|
var $7a9eac509b76fa30$export$76f93463a8fc15a8;
|
|
29
|
-
$7a9eac509b76fa30$export$f39a09f249340e2a = `
|
|
30
|
-
$7a9eac509b76fa30$export$8c4ee2c50c22c514 = `
|
|
31
|
-
$7a9eac509b76fa30$export$4109102f950813a6 = `
|
|
32
|
-
$7a9eac509b76fa30$export$24c7f46a6e3605dd = `
|
|
33
|
-
$7a9eac509b76fa30$export$2927016961429360 = `
|
|
34
|
-
$7a9eac509b76fa30$export$9ebf9cdaed6878bc = `
|
|
35
|
-
$7a9eac509b76fa30$export$563c1b24466c05b8 = `
|
|
36
|
-
$7a9eac509b76fa30$export$243baa0ec4ab58cc = `
|
|
37
|
-
$7a9eac509b76fa30$export$a8d73b58ca350eb9 = `
|
|
38
|
-
$7a9eac509b76fa30$export$b4b727880cfe37d = `
|
|
39
|
-
$7a9eac509b76fa30$export$76f93463a8fc15a8 = `
|
|
29
|
+
$7a9eac509b76fa30$export$f39a09f249340e2a = `VXVB8W_focus-ring`;
|
|
30
|
+
$7a9eac509b76fa30$export$8c4ee2c50c22c514 = `VXVB8W_i18nFontFamily`;
|
|
31
|
+
$7a9eac509b76fa30$export$4109102f950813a6 = `VXVB8W_spectrum-FocusRing-ring`;
|
|
32
|
+
$7a9eac509b76fa30$export$24c7f46a6e3605dd = `VXVB8W_spectrum-FocusRing ${$7a9eac509b76fa30$export$4109102f950813a6}`;
|
|
33
|
+
$7a9eac509b76fa30$export$2927016961429360 = `VXVB8W_spectrum-FocusRing--quiet`;
|
|
34
|
+
$7a9eac509b76fa30$export$9ebf9cdaed6878bc = `VXVB8W_spectrum-Rule`;
|
|
35
|
+
$7a9eac509b76fa30$export$563c1b24466c05b8 = `VXVB8W_spectrum-Rule--horizontal`;
|
|
36
|
+
$7a9eac509b76fa30$export$243baa0ec4ab58cc = `VXVB8W_spectrum-Rule--large`;
|
|
37
|
+
$7a9eac509b76fa30$export$a8d73b58ca350eb9 = `VXVB8W_spectrum-Rule--medium`;
|
|
38
|
+
$7a9eac509b76fa30$export$b4b727880cfe37d = `VXVB8W_spectrum-Rule--small`;
|
|
39
|
+
$7a9eac509b76fa30$export$76f93463a8fc15a8 = `VXVB8W_spectrum-Rule--vertical`;
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
export {$7a9eac509b76fa30$exports as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AAVA,4CAA+B,CAAC,iBAAiB,CAAC;AAClD,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAuC,CAAC,0BAA0B,EAAE,
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AAVA,4CAA+B,CAAC,iBAAiB,CAAC;AAClD,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAuC,CAAC,0BAA0B,EAAE,2CAA2C;AAC/G,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAkC,CAAC,oBAAoB,CAAC;AACxD,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAA0C,CAAC,4BAA4B,CAAC;AACxE,2CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAA4C,CAAC,8BAA8B,CAAC","sources":["packages/@adobe/spectrum-css-temp/components/rule/vars.css"],"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\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"rule_vars_css.module.js.map"}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
.
|
|
1
|
+
.VXVB8W_i18nFontFamily {
|
|
2
2
|
font-synthesis: weight;
|
|
3
3
|
font-family: adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.
|
|
6
|
+
.VXVB8W_i18nFontFamily:lang(ar) {
|
|
7
7
|
font-family: myriad-arabic, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
.
|
|
10
|
+
.VXVB8W_i18nFontFamily:lang(he) {
|
|
11
11
|
font-family: myriad-hebrew, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
.
|
|
14
|
+
.VXVB8W_i18nFontFamily:lang(zh) {
|
|
15
15
|
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Heiti TC Light, sans-serif;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.
|
|
18
|
+
.VXVB8W_i18nFontFamily:lang(zh-Hans) {
|
|
19
19
|
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.
|
|
22
|
+
.VXVB8W_i18nFontFamily:lang(zh-Hant) {
|
|
23
23
|
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Microsoft JhengHei UI, Microsoft JhengHei, Heiti TC Light, sans-serif;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
.VXVB8W_i18nFontFamily:lang(zh-SG), .VXVB8W_i18nFontFamily:lang(zh-CN) {
|
|
27
27
|
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
.
|
|
30
|
+
.VXVB8W_i18nFontFamily:lang(ko) {
|
|
31
31
|
font-family: adobe-clean-han-korean, source-han-korean, Malgun Gothic, Apple Gothic, sans-serif;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.
|
|
34
|
+
.VXVB8W_i18nFontFamily:lang(ja) {
|
|
35
35
|
font-family: adobe-clean-han-japanese, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Osaka, YuGothic, Yu Gothic, メイリオ, Meiryo, MS Pゴシック, MS PGothic, sans-serif;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.
|
|
38
|
+
.VXVB8W_spectrum-FocusRing-ring {
|
|
39
39
|
--spectrum-focus-ring-border-radius: var(--spectrum-textfield-border-radius, var(--spectrum-alias-border-radius-regular));
|
|
40
40
|
--spectrum-focus-ring-gap: var(--spectrum-alias-input-focusring-gap);
|
|
41
41
|
--spectrum-focus-ring-size: var(--spectrum-alias-input-focusring-size);
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
--spectrum-focus-ring-color: var(--spectrum-high-contrast-focus-ring-color, var(--spectrum-alias-focus-ring-color, var(--spectrum-alias-focus-color)));
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
.
|
|
46
|
+
.VXVB8W_spectrum-FocusRing-ring:after {
|
|
47
47
|
border-radius: calc(var(--spectrum-focus-ring-border-radius) + var(--spectrum-focus-ring-gap));
|
|
48
48
|
content: "";
|
|
49
49
|
margin: calc(-1 * var(--spectrum-focus-ring-border-size));
|
|
@@ -54,31 +54,31 @@
|
|
|
54
54
|
inset: 0;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
.
|
|
57
|
+
.VXVB8W_spectrum-FocusRing.VXVB8W_focus-ring:after {
|
|
58
58
|
margin: calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size));
|
|
59
59
|
box-shadow: 0 0 0 var(--spectrum-focus-ring-size) var(--spectrum-focus-ring-color);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
.
|
|
62
|
+
.VXVB8W_spectrum-FocusRing--quiet:after {
|
|
63
63
|
border-radius: 0;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.
|
|
66
|
+
.VXVB8W_spectrum-FocusRing--quiet.VXVB8W_focus-ring:after {
|
|
67
67
|
margin: 0 0 calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size)) 0;
|
|
68
68
|
box-shadow: 0 var(--spectrum-focus-ring-size) 0 var(--spectrum-focus-ring-color);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
@media (forced-colors: active) {
|
|
72
|
-
.
|
|
72
|
+
.VXVB8W_spectrum-FocusRing, .VXVB8W_spectrum-FocusRing-ring, .VXVB8W_spectrum-FocusRing--quiet {
|
|
73
73
|
--spectrum-high-contrast-focus-ring-color: Highlight;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
:is(.
|
|
76
|
+
:is(.VXVB8W_spectrum-FocusRing, .VXVB8W_spectrum-FocusRing-ring, .VXVB8W_spectrum-FocusRing--quiet):after {
|
|
77
77
|
forced-color-adjust: none;
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
.
|
|
81
|
+
.VXVB8W_spectrum-Rule {
|
|
82
82
|
border: none;
|
|
83
83
|
border-width: var(--spectrum-rule-medium-height, var(--spectrum-global-dimension-static-size-25));
|
|
84
84
|
border-radius: var(--spectrum-rule-medium-height, var(--spectrum-global-dimension-static-size-25));
|
|
@@ -88,64 +88,64 @@
|
|
|
88
88
|
overflow: visible;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.
|
|
91
|
+
.VXVB8W_spectrum-Rule--large {
|
|
92
92
|
border-radius: var(--spectrum-rule-large-border-radius, var(--spectrum-global-dimension-static-size-25));
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
.
|
|
95
|
+
.VXVB8W_spectrum-Rule--medium {
|
|
96
96
|
border-radius: var(--spectrum-rule-medium-border-radius, var(--spectrum-global-dimension-static-size-10));
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
.
|
|
99
|
+
.VXVB8W_spectrum-Rule--small {
|
|
100
100
|
border-radius: var(--spectrum-rule-small-border-radius, var(--spectrum-global-dimension-static-size-10));
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.
|
|
103
|
+
.VXVB8W_spectrum-Rule--horizontal.VXVB8W_spectrum-Rule--large {
|
|
104
104
|
block-size: var(--spectrum-rule-large-height, var(--spectrum-global-dimension-static-size-50));
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
.
|
|
107
|
+
.VXVB8W_spectrum-Rule--horizontal.VXVB8W_spectrum-Rule--medium {
|
|
108
108
|
block-size: var(--spectrum-rule-medium-height, var(--spectrum-global-dimension-static-size-25));
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.
|
|
111
|
+
.VXVB8W_spectrum-Rule--horizontal.VXVB8W_spectrum-Rule--small {
|
|
112
112
|
block-size: var(--spectrum-rule-small-height, var(--spectrum-global-dimension-static-size-10));
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
.
|
|
115
|
+
.VXVB8W_spectrum-Rule--vertical {
|
|
116
116
|
height: auto;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
.
|
|
119
|
+
.VXVB8W_spectrum-Rule--vertical.VXVB8W_spectrum-Rule--large {
|
|
120
120
|
inline-size: var(--spectrum-rule-large-height, var(--spectrum-global-dimension-static-size-50));
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
.
|
|
123
|
+
.VXVB8W_spectrum-Rule--vertical.VXVB8W_spectrum-Rule--medium {
|
|
124
124
|
inline-size: var(--spectrum-rule-medium-height, var(--spectrum-global-dimension-static-size-25));
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
.
|
|
127
|
+
.VXVB8W_spectrum-Rule--vertical.VXVB8W_spectrum-Rule--small {
|
|
128
128
|
inline-size: var(--spectrum-rule-small-height, var(--spectrum-global-dimension-static-size-10));
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
.
|
|
131
|
+
.VXVB8W_spectrum-Rule--large {
|
|
132
132
|
background-color: var(--spectrum-rule-large-background-color, var(--spectrum-global-color-gray-800));
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
.
|
|
135
|
+
.VXVB8W_spectrum-Rule--medium {
|
|
136
136
|
background-color: var(--spectrum-rule-medium-background-color, var(--spectrum-global-color-gray-300));
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
.
|
|
139
|
+
.VXVB8W_spectrum-Rule--small {
|
|
140
140
|
background-color: var(--spectrum-rule-small-background-color, var(--spectrum-global-color-gray-300));
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
@media (forced-colors: active) {
|
|
144
|
-
.
|
|
144
|
+
.VXVB8W_spectrum-Rule {
|
|
145
145
|
forced-color-adjust: none;
|
|
146
146
|
--spectrum-rule-large-background-color: CanvasText;
|
|
147
147
|
--spectrum-rule-medium-background-color: CanvasText;
|
|
148
148
|
--spectrum-rule-small-background-color: CanvasText;
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
|
-
/*# sourceMappingURL=vars.
|
|
151
|
+
/*# sourceMappingURL=vars.e377bd1e.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"AA4DA;;;;;AAIE;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAQA;;;;AAIA;;;;AAKF;;;;;;;;AAOE;;;;;;;;;;;AAqBE;;;;;AAQF;;;;AAKE;;;;;AAOJ;EACE;;;;EAIE;;;;;AAMJ;;;;;;;;;;AAeA;;;;AAIA;;;;AAIA;;;;AAKE;;;;AAIA;;;;AAIA;;;;AAKF;;;;AAKE;;;;AAIA;;;;AAIA;;;;AAiBF;;;;AAIA;;;;AAIA;;;;AAIA;EACE","sources":["packages/@adobe/spectrum-css-temp/components/rule/vars.css"],"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\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"vars.
|
|
1
|
+
{"mappings":"AA4DA;;;;;AAIE;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAQA;;;;AAIA;;;;AAKF;;;;;;;;AAOE;;;;;;;;;;;AAqBE;;;;;AAQF;;;;AAKE;;;;;AAOJ;EACE;;;;EAIE;;;;;AAMJ;;;;;;;;;;AAeA;;;;AAIA;;;;AAIA;;;;AAKE;;;;AAIA;;;;AAIA;;;;AAKF;;;;AAKE;;;;AAIA;;;;AAIA;;;;AAiBF;;;;AAIA;;;;AAIA;;;;AAIA;EACE","sources":["packages/@adobe/spectrum-css-temp/components/rule/vars.css"],"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\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"vars.e377bd1e.css.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-spectrum/divider",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.18",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"url": "https://github.com/adobe/react-spectrum"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@react-aria/separator": "^3.4.
|
|
40
|
-
"@react-spectrum/utils": "^3.
|
|
41
|
-
"@react-types/divider": "^3.3.
|
|
42
|
-
"@react-types/shared": "^3.
|
|
39
|
+
"@react-aria/separator": "^3.4.4",
|
|
40
|
+
"@react-spectrum/utils": "^3.12.0",
|
|
41
|
+
"@react-types/divider": "^3.3.13",
|
|
42
|
+
"@react-types/shared": "^3.26.0",
|
|
43
43
|
"@swc/helpers": "^0.5.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@adobe/spectrum-css-temp": "3.0.0-alpha.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
|
|
49
|
+
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "71f0ef23053f9e03ee7e97df736e8b083e006849"
|
|
55
55
|
}
|