@react-spectrum/s2 3.0.0-nightly-e1b72a79f-241017 → 3.0.0-nightly-0ddbe6f95-241019

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.
@@ -1,4 +1,5 @@
1
1
  require("./Disclosure.css");
2
+ var $6e265ff388155b91$exports = require("./ActionButton.cjs");
2
3
  var $e991cbcdf82ced71$exports = require("./CenterBaseline.cjs");
3
4
  var $1df9f1c9262ce5df$exports = require("./Chevron.cjs");
4
5
  var $ac757a4c2bd72aee$exports = require("../icons/useSpectrumContextProps.cjs");
@@ -16,6 +17,7 @@ function $parcel$export(e, n, v, s) {
16
17
  $parcel$export(module.exports, "DisclosureContext", () => $4e301a98f0cc4e4f$export$d665dd135a51b28a);
17
18
  $parcel$export(module.exports, "Disclosure", () => $4e301a98f0cc4e4f$export$74a362b31437ec83);
18
19
  $parcel$export(module.exports, "DisclosureHeader", () => $4e301a98f0cc4e4f$export$1e037ddd32f5b8ac);
20
+ $parcel$export(module.exports, "DisclosureTitle", () => $4e301a98f0cc4e4f$export$7843c6a5b3e340a2);
19
21
  $parcel$export(module.exports, "DisclosurePanel", () => $4e301a98f0cc4e4f$export$feabaa331e1d464c);
20
22
  /*
21
23
  * Copyright 2024 Adobe. All rights reserved.
@@ -35,6 +37,7 @@ $parcel$export(module.exports, "DisclosurePanel", () => $4e301a98f0cc4e4f$export
35
37
 
36
38
 
37
39
 
40
+
38
41
  const $4e301a98f0cc4e4f$export$d665dd135a51b28a = /*#__PURE__*/ (0, $5FRIp$react.createContext)(null);
39
42
  const $4e301a98f0cc4e4f$var$disclosure = function anonymous(props, overrides) {
40
43
  let rules = " .";
@@ -87,7 +90,7 @@ function $4e301a98f0cc4e4f$var$Disclosure(props, ref) {
87
90
  /**
88
91
  * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.
89
92
  */ let $4e301a98f0cc4e4f$export$74a362b31437ec83 = /*#__PURE__*/ (0, $5FRIp$react.forwardRef)($4e301a98f0cc4e4f$var$Disclosure);
90
- const $4e301a98f0cc4e4f$var$headingStyle = " . Aa Ba ya za";
93
+ const $4e301a98f0cc4e4f$var$headingStyle = " . Aa Ba ya za _9-3t1y";
91
94
  const $4e301a98f0cc4e4f$var$buttonStyles = function anonymous(props) {
92
95
  let rules = " .";
93
96
  if (props.isFocusVisible) rules += ' _Lb';
@@ -222,7 +225,44 @@ const $4e301a98f0cc4e4f$var$chevronStyles = function anonymous(props) {
222
225
  rules += ' _8-3t1x';
223
226
  return rules;
224
227
  };
225
- function $4e301a98f0cc4e4f$var$DisclosureHeader(props, ref) {
228
+ const $4e301a98f0cc4e4f$var$InternalDisclosureHeader = /*#__PURE__*/ (0, $5FRIp$react.createContext)(null);
229
+ function $4e301a98f0cc4e4f$var$DisclosureHeaderWithForwardRef(props, ref) {
230
+ let { UNSAFE_className: UNSAFE_className, UNSAFE_style: UNSAFE_style, children: children } = props;
231
+ let domRef = (0, $5FRIp$reactspectrumutils.useDOMRef)(ref);
232
+ let { size: size, isQuiet: isQuiet, density: density } = (0, $5FRIp$reactariacomponents.useSlottedContext)($4e301a98f0cc4e4f$export$d665dd135a51b28a);
233
+ let mapSize = {
234
+ S: 'XS',
235
+ M: 'S',
236
+ L: 'M',
237
+ XL: 'L'
238
+ };
239
+ // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container
240
+ let newSize = size;
241
+ if (density === 'compact') newSize = mapSize[size ?? 'M'];
242
+ return /*#__PURE__*/ (0, $5FRIp$reactjsxruntime.jsx)((0, $5FRIp$reactariacomponents.Provider), {
243
+ values: [
244
+ [
245
+ (0, $6e265ff388155b91$exports.ActionButtonContext),
246
+ {
247
+ size: newSize,
248
+ isQuiet: isQuiet
249
+ }
250
+ ],
251
+ [
252
+ $4e301a98f0cc4e4f$var$InternalDisclosureHeader,
253
+ {}
254
+ ]
255
+ ],
256
+ children: /*#__PURE__*/ (0, $5FRIp$reactjsxruntime.jsx)("div", {
257
+ style: UNSAFE_style,
258
+ className: (UNSAFE_className ?? '') + " . _Zd _1c ic jc",
259
+ ref: domRef,
260
+ children: children
261
+ })
262
+ });
263
+ }
264
+ const $4e301a98f0cc4e4f$export$1e037ddd32f5b8ac = /*#__PURE__*/ (0, $5FRIp$react.forwardRef)($4e301a98f0cc4e4f$var$DisclosureHeaderWithForwardRef);
265
+ function $4e301a98f0cc4e4f$var$DisclosureTitle(props, ref) {
226
266
  let { level: level = 3, UNSAFE_style: UNSAFE_style, UNSAFE_className: UNSAFE_className = '', ...otherProps } = props;
227
267
  let domRef = (0, $5FRIp$reactspectrumutils.useDOMRef)(ref);
228
268
  const domProps = (0, $5FRIp$reactariautils.filterDOMProps)(otherProps);
@@ -230,7 +270,7 @@ function $4e301a98f0cc4e4f$var$DisclosureHeader(props, ref) {
230
270
  let { isExpanded: isExpanded } = (0, $5FRIp$react.useContext)((0, $5FRIp$reactariacomponents.DisclosureStateContext));
231
271
  let { size: size, density: density, isQuiet: isQuiet } = (0, $5FRIp$reactariacomponents.useSlottedContext)($4e301a98f0cc4e4f$export$d665dd135a51b28a);
232
272
  let isRTL = direction === 'rtl';
233
- return /*#__PURE__*/ (0, $5FRIp$reactjsxruntime.jsx)((0, $5FRIp$reactariacomponents.Heading), {
273
+ let buttonTrigger = /*#__PURE__*/ (0, $5FRIp$reactjsxruntime.jsx)((0, $5FRIp$reactariacomponents.Heading), {
234
274
  ...domProps,
235
275
  level: level,
236
276
  ref: domRef,
@@ -259,10 +299,15 @@ function $4e301a98f0cc4e4f$var$DisclosureHeader(props, ref) {
259
299
  ]
260
300
  })
261
301
  });
302
+ let ctx = (0, $5FRIp$react.useContext)($4e301a98f0cc4e4f$var$InternalDisclosureHeader);
303
+ if (ctx) return buttonTrigger;
304
+ return /*#__PURE__*/ (0, $5FRIp$reactjsxruntime.jsx)($4e301a98f0cc4e4f$export$1e037ddd32f5b8ac, {
305
+ children: buttonTrigger
306
+ });
262
307
  }
263
308
  /**
264
- * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.
265
- */ let $4e301a98f0cc4e4f$export$1e037ddd32f5b8ac = /*#__PURE__*/ (0, $5FRIp$react.forwardRef)($4e301a98f0cc4e4f$var$DisclosureHeader);
309
+ * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.
310
+ */ let $4e301a98f0cc4e4f$export$7843c6a5b3e340a2 = /*#__PURE__*/ (0, $5FRIp$react.forwardRef)($4e301a98f0cc4e4f$var$DisclosureTitle);
266
311
  const $4e301a98f0cc4e4f$var$panelStyles = function anonymous(props) {
267
312
  let rules = " .";
268
313
  rules += ' _c-bc1l9oh';
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["/*\n * Copyright 2024 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, DOMRef, DOMRefValue} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nfunction DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n return (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n}\n\n/**\n * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureHeader = forwardRef(DisclosureHeader);\nexport {_DisclosureHeader as DisclosureHeader};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.cjs.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;;;AA+BM,MAAM,0DAAoB,CAAA,GAAA,0BAAY,EAAgF;AAE7H,MAAM;;;;;;;;;;;;;;;;;;;;;;AAoBN,SAAS,iCAAW,KAAsB,EAAE,GAA2B;IACrE,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,iDAAsB,EAAE,OAAO,KAAK;IACnD,IAAI,QACF,OAAO,cACP,UAAU,oBACV,OAAO,gBACP,YAAY,oBACZ,mBAAmB,IACpB,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,mCAAQ,EAAE;IAEvB,qBACE,gCAAC,CAAA,GAAA,mCAAO;QACN,QAAQ;YACN;gBAAC;gBAAmB;0BAAC;6BAAM;6BAAS;gBAAO;aAAE;SAC9C;kBACD,cAAA,gCAAC,CAAA,GAAA,8CAAY;YACV,GAAG,KAAK;YACT,KAAK;YACL,OAAO;YACP,WAAW,AAAC,CAAA,oBAAoB,EAAC,IAAK,iCAAW;yBAAC;YAAO,GAAG,MAAM,MAAM;sBACvE,MAAM,QAAQ;;;AAIvB;AAEA;;CAEC,GACD,IAAI,0DAAc,CAAA,GAAA,uBAAS,EAAE;AAiB7B,MAAM;AAKN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2EN,MAAM;;;;;;;;;;;AAaN,MAAM,+DAA2B,CAAA,GAAA,0BAAY,EAAa;AAE1D,SAAS,qDAA+B,KAA4B,EAAE,GAA2B;IAC/F,IAAI,oBACF,gBAAgB,gBAChB,YAAY,YACZ,QAAQ,EACT,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,mCAAQ,EAAE;IACvB,IAAI,QAAC,IAAI,WAAE,OAAO,WAAE,OAAO,EAAC,GAAG,CAAA,GAAA,4CAAgB,EAAE;IAEjD,IAAI,UAAU;QACZ,GAAG;QACH,GAAG;QACH,GAAG;QACH,IAAI;IACN;IAEA,yIAAyI;IACzI,IAAI,UAAsD;IAC1D,IAAI,YAAY,WACd,UAAU,OAAO,CAAC,QAAQ,IAAI;IAGhC,qBACE,gCAAC,CAAA,GAAA,mCAAO;QACN,QAAQ;YACN;gBAAC,CAAA,GAAA,6CAAkB;gBAAG;oBAAC,MAAM;6BAAS;gBAAO;aAAE;YAC/C;gBAAC;gBAA0B,CAAC;aAAE;SAC/B;kBACD,cAAA,gCAAC;YACC,OAAO;YACP,WAAW,AAAC,CAAA,oBAAoB,EAAC;YACjC,KAAK;sBACJ;;;AAIT;AAKO,MAAM,4CAAiC,AAAd,WAAW,GAAI,CAAA,GAAA,uBAAS,EAAqB;AAE7E,SAAS,sCAAgB,KAA2B,EAAE,GAA2B;IAC/E,IAAI,SACF,QAAQ,iBACR,YAAY,oBACZ,mBAAmB,IACnB,GAAG,YACJ,GAAG;IACJ,IAAI,SAAS,CAAA,GAAA,mCAAQ,EAAE;IACvB,MAAM,WAAW,CAAA,GAAA,oCAAa,EAAE;IAChC,IAAI,aAAC,SAAS,EAAC,GAAG,CAAA,GAAA,oCAAQ;IAC1B,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,uBAAS,EAAE,CAAA,GAAA,iDAAqB;IACnD,IAAI,QAAC,IAAI,WAAE,OAAO,WAAE,OAAO,EAAC,GAAG,CAAA,GAAA,4CAAgB,EAAE;IACjD,IAAI,QAAQ,cAAc;IAE1B,IAAI,8BACF,gCAAC,CAAA,GAAA,kCAAM;QACJ,GAAG,QAAQ;QACZ,OAAO;QACP,KAAK;QACL,OAAO;QACP,WAAW,AAAC,CAAA,oBAAoB,EAAC,IAAK;kBACtC,cAAA,iCAAC,CAAA,GAAA,iCAAK;YAAE,WAAW,CAAC,cAAgB,mCAAa;oBAAC,GAAG,WAAW;0BAAE;6BAAM;6BAAS;gBAAO;YAAI,MAAK;;8BAC/F,gCAAC,CAAA,GAAA,wCAAa;8BACZ,cAAA,gCAAC,CAAA,GAAA,iCAAM;wBAAE,MAAM;wBAAM,WAAW,oCAAc;wCAAC;mCAAY;wBAAK;wBAAI,eAAY;;;gBAEjF,MAAM,QAAQ;;;;IAIrB,IAAI,MAAM,CAAA,GAAA,uBAAS,EAAE;IACrB,IAAI,KACF,OAAO;IAGT,qBACE,gCAAC;kBACE;;AAGP;AAEA;;CAEC,GACD,IAAI,0DAAmB,CAAA,GAAA,uBAAS,EAAE;AAOlC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBN,SAAS,sCAAgB,KAA2B,EAAE,GAA2B;IAC/E,IAAI,gBACF,YAAY,oBACZ,mBAAmB,IACnB,GAAG,YACJ,GAAG;IACJ,MAAM,WAAW,CAAA,GAAA,oCAAa,EAAE;IAChC,IAAI,QAAC,IAAI,EAAC,GAAG,CAAA,GAAA,4CAAgB,EAAE;IAC/B,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,uBAAS,EAAE,CAAA,GAAA,iDAAqB;IACnD,IAAI,WAAW,CAAA,GAAA,mCAAQ,EAAE;IACzB,qBACE,gCAAC,CAAA,GAAA,mDAAiB;QACf,GAAG,QAAQ;QACZ,KAAK;QACL,OAAO;QACP,WAAW,AAAC,CAAA,oBAAoB,EAAC,IAAK,kCAAY;kBAAC;wBAAM;QAAU;kBAClE,MAAM,QAAQ;;AAGrB;AAEA;;CAEC,GACD,IAAI,0DAAmB,CAAA,GAAA,uBAAS,EAAE","sources":["packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["/*\n * Copyright 2024 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 {ActionButtonContext} from './ActionButton';\nimport {AriaLabelingProps, DOMProps, DOMRef, DOMRefValue, forwardRefType} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureTitleProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\ninterface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0,\n flexGrow: 1\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nconst InternalDisclosureHeader = createContext<{} | null>(null);\n\nfunction DisclosureHeaderWithForwardRef(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_className,\n UNSAFE_style,\n children\n } = props;\n let domRef = useDOMRef(ref);\n let {size, isQuiet, density} = useSlottedContext(DisclosureContext)!;\n\n let mapSize = {\n S: 'XS',\n M: 'S',\n L: 'M',\n XL: 'L'\n };\n\n // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container\n let newSize : 'XS' | 'S' | 'M' | 'L' | 'XL' | undefined = size;\n if (density === 'compact') {\n newSize = mapSize[size ?? 'M'] as 'XS' | 'S' | 'M' | 'L';\n }\n\n return (\n <Provider\n values={[\n [ActionButtonContext, {size: newSize, isQuiet}],\n [InternalDisclosureHeader, {}]\n ]}>\n <div\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + style({display: 'flex', alignItems: 'center', gap: 4})}\n ref={domRef}>\n {children}\n </div>\n </Provider>\n );\n}\n\n/**\n * A wrapper element for the disclosure title that can contain other elements not part of the trigger.\n */\nexport const DisclosureHeader = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosureHeaderWithForwardRef);\n\nfunction DisclosureTitle(props: DisclosureTitleProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n\n let buttonTrigger = (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n let ctx = useContext(InternalDisclosureHeader);\n if (ctx) {\n return buttonTrigger;\n }\n\n return (\n <DisclosureHeader>\n {buttonTrigger}\n </DisclosureHeader>\n );\n}\n\n/**\n * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureTitle = forwardRef(DisclosureTitle);\nexport {_DisclosureTitle as DisclosureTitle};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.cjs.map"}
@@ -39,6 +39,10 @@
39
39
  margin-inline-end: 0;
40
40
  }
41
41
 
42
+ ._9-3t1y {
43
+ flex-grow: 1;
44
+ }
45
+
42
46
  ._La {
43
47
  outline-style: none;
44
48
  }
@@ -93,10 +97,6 @@
93
97
  color: var(--lightningcss-light, #c6c6c6) var(--lightningcss-dark, #444);
94
98
  }
95
99
 
96
- ._Zd {
97
- display: flex;
98
- }
99
-
100
100
  ._1d {
101
101
  align-items: baseline;
102
102
  }
@@ -257,6 +257,22 @@
257
257
  flex-shrink: 0;
258
258
  }
259
259
 
260
+ ._Zd {
261
+ display: flex;
262
+ }
263
+
264
+ ._1c {
265
+ align-items: center;
266
+ }
267
+
268
+ .ic {
269
+ row-gap: .25rem;
270
+ }
271
+
272
+ .jc {
273
+ column-gap: .25rem;
274
+ }
275
+
260
276
  ._ca {
261
277
  font-family: adobe-clean-variable, adobe-clean, ui-sans-serif, system-ui, sans-serif;
262
278
  }
@@ -1 +1 @@
1
- {"mappings":"AC0CmB;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EA+DE;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAIA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EA2EC;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAqDF;;;;EAAA;;;;EAAA;;;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;;AAnMD;EAAA;;;;EAAA;;;;EAmEE;;;;EAgID;;;;EAAA;;;;;AAnMD;;AAAA;EAAA;IAAA;;;;IAmEE;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAgID;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;;;AAhIC;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;IAAA;;;;;;AA2EC","sources":["af82a6f8008c749b","packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["@import \"02b9b02b69a441b2\";\n@import \"80d1cf6aba9342e9\";\n@import \"d47c144c912b2c65\";\n@import \"54c3947845455457\";\n@import \"47e48706d70658de\";\n","/*\n * Copyright 2024 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, DOMRef, DOMRefValue} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nfunction DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n return (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n}\n\n/**\n * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureHeader = forwardRef(DisclosureHeader);\nexport {_DisclosureHeader as DisclosureHeader};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.css.map"}
1
+ {"mappings":"AC2CmB;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAmEE;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAKA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EA2EC;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EA6CwB;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAgE1B;;;;EAAA;;;;EAAA;;;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;;AAhQD;EAAA;;;;EAAA;;;;EAwEE;;;;EAwLD;;;;EAAA;;;;;AAhQD;;AAAA;EAAA;IAAA;;;;IAwEE;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAwLD;;;;IAAA;;;;IAAA;;;;IAAA;;;;IAAA;;;;;;AAxLC;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;;;;;AAAA;EAAA;IAAA;;;;;;AA2EC","sources":["af82a6f8008c749b","packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["@import \"02b9b02b69a441b2\";\n@import \"80d1cf6aba9342e9\";\n@import \"d47c144c912b2c65\";\n@import \"54c3947845455457\";\n@import \"47e48706d70658de\";\n@import \"879f5cdc449bf13e\";\n","/*\n * Copyright 2024 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 {ActionButtonContext} from './ActionButton';\nimport {AriaLabelingProps, DOMProps, DOMRef, DOMRefValue, forwardRefType} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureTitleProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\ninterface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0,\n flexGrow: 1\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nconst InternalDisclosureHeader = createContext<{} | null>(null);\n\nfunction DisclosureHeaderWithForwardRef(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_className,\n UNSAFE_style,\n children\n } = props;\n let domRef = useDOMRef(ref);\n let {size, isQuiet, density} = useSlottedContext(DisclosureContext)!;\n\n let mapSize = {\n S: 'XS',\n M: 'S',\n L: 'M',\n XL: 'L'\n };\n\n // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container\n let newSize : 'XS' | 'S' | 'M' | 'L' | 'XL' | undefined = size;\n if (density === 'compact') {\n newSize = mapSize[size ?? 'M'] as 'XS' | 'S' | 'M' | 'L';\n }\n\n return (\n <Provider\n values={[\n [ActionButtonContext, {size: newSize, isQuiet}],\n [InternalDisclosureHeader, {}]\n ]}>\n <div\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + style({display: 'flex', alignItems: 'center', gap: 4})}\n ref={domRef}>\n {children}\n </div>\n </Provider>\n );\n}\n\n/**\n * A wrapper element for the disclosure title that can contain other elements not part of the trigger.\n */\nexport const DisclosureHeader = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosureHeaderWithForwardRef);\n\nfunction DisclosureTitle(props: DisclosureTitleProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n\n let buttonTrigger = (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n let ctx = useContext(InternalDisclosureHeader);\n if (ctx) {\n return buttonTrigger;\n }\n\n return (\n <DisclosureHeader>\n {buttonTrigger}\n </DisclosureHeader>\n );\n}\n\n/**\n * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureTitle = forwardRef(DisclosureTitle);\nexport {_DisclosureTitle as DisclosureTitle};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.css.map"}
@@ -1,9 +1,10 @@
1
1
  import "./Disclosure.css";
2
+ import {ActionButtonContext as $da878a05ab4a403e$export$2ff682723a46d413} from "./ActionButton.mjs";
2
3
  import {CenterBaseline as $1f4b04be3f24aae3$export$768dac55bb57081d} from "./CenterBaseline.mjs";
3
4
  import $4b69f02ec06b9226$export$2e2bcd8739ae039 from "./Chevron.mjs";
4
5
  import {useSpectrumContextProps as $5ce63c423902f47d$export$764f6146fadd77f7} from "../icons/useSpectrumContextProps.mjs";
5
6
  import {jsx as $7VHtn$jsx, jsxs as $7VHtn$jsxs} from "react/jsx-runtime";
6
- import {Provider as $7VHtn$Provider, UNSTABLE_Disclosure as $7VHtn$UNSTABLE_Disclosure, useLocale as $7VHtn$useLocale, DisclosureStateContext as $7VHtn$DisclosureStateContext, useSlottedContext as $7VHtn$useSlottedContext, Heading as $7VHtn$Heading, Button as $7VHtn$Button, UNSTABLE_DisclosurePanel as $7VHtn$UNSTABLE_DisclosurePanel} from "react-aria-components";
7
+ import {Provider as $7VHtn$Provider, UNSTABLE_Disclosure as $7VHtn$UNSTABLE_Disclosure, useSlottedContext as $7VHtn$useSlottedContext, useLocale as $7VHtn$useLocale, DisclosureStateContext as $7VHtn$DisclosureStateContext, Heading as $7VHtn$Heading, Button as $7VHtn$Button, UNSTABLE_DisclosurePanel as $7VHtn$UNSTABLE_DisclosurePanel} from "react-aria-components";
7
8
  import {filterDOMProps as $7VHtn$filterDOMProps} from "@react-aria/utils";
8
9
  import {createContext as $7VHtn$createContext, forwardRef as $7VHtn$forwardRef, useContext as $7VHtn$useContext} from "react";
9
10
  import {useDOMRef as $7VHtn$useDOMRef} from "@react-spectrum/utils";
@@ -26,6 +27,7 @@ import {useDOMRef as $7VHtn$useDOMRef} from "@react-spectrum/utils";
26
27
 
27
28
 
28
29
 
30
+
29
31
  const $cf1d656285911959$export$d665dd135a51b28a = /*#__PURE__*/ (0, $7VHtn$createContext)(null);
30
32
  const $cf1d656285911959$var$disclosure = function anonymous(props, overrides) {
31
33
  let rules = " .";
@@ -78,7 +80,7 @@ function $cf1d656285911959$var$Disclosure(props, ref) {
78
80
  /**
79
81
  * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.
80
82
  */ let $cf1d656285911959$export$74a362b31437ec83 = /*#__PURE__*/ (0, $7VHtn$forwardRef)($cf1d656285911959$var$Disclosure);
81
- const $cf1d656285911959$var$headingStyle = " . Aa Ba ya za";
83
+ const $cf1d656285911959$var$headingStyle = " . Aa Ba ya za _9-3t1y";
82
84
  const $cf1d656285911959$var$buttonStyles = function anonymous(props) {
83
85
  let rules = " .";
84
86
  if (props.isFocusVisible) rules += ' _Lb';
@@ -213,7 +215,44 @@ const $cf1d656285911959$var$chevronStyles = function anonymous(props) {
213
215
  rules += ' _8-3t1x';
214
216
  return rules;
215
217
  };
216
- function $cf1d656285911959$var$DisclosureHeader(props, ref) {
218
+ const $cf1d656285911959$var$InternalDisclosureHeader = /*#__PURE__*/ (0, $7VHtn$createContext)(null);
219
+ function $cf1d656285911959$var$DisclosureHeaderWithForwardRef(props, ref) {
220
+ let { UNSAFE_className: UNSAFE_className, UNSAFE_style: UNSAFE_style, children: children } = props;
221
+ let domRef = (0, $7VHtn$useDOMRef)(ref);
222
+ let { size: size, isQuiet: isQuiet, density: density } = (0, $7VHtn$useSlottedContext)($cf1d656285911959$export$d665dd135a51b28a);
223
+ let mapSize = {
224
+ S: 'XS',
225
+ M: 'S',
226
+ L: 'M',
227
+ XL: 'L'
228
+ };
229
+ // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container
230
+ let newSize = size;
231
+ if (density === 'compact') newSize = mapSize[size ?? 'M'];
232
+ return /*#__PURE__*/ (0, $7VHtn$jsx)((0, $7VHtn$Provider), {
233
+ values: [
234
+ [
235
+ (0, $da878a05ab4a403e$export$2ff682723a46d413),
236
+ {
237
+ size: newSize,
238
+ isQuiet: isQuiet
239
+ }
240
+ ],
241
+ [
242
+ $cf1d656285911959$var$InternalDisclosureHeader,
243
+ {}
244
+ ]
245
+ ],
246
+ children: /*#__PURE__*/ (0, $7VHtn$jsx)("div", {
247
+ style: UNSAFE_style,
248
+ className: (UNSAFE_className ?? '') + " . _Zd _1c ic jc",
249
+ ref: domRef,
250
+ children: children
251
+ })
252
+ });
253
+ }
254
+ const $cf1d656285911959$export$1e037ddd32f5b8ac = /*#__PURE__*/ (0, $7VHtn$forwardRef)($cf1d656285911959$var$DisclosureHeaderWithForwardRef);
255
+ function $cf1d656285911959$var$DisclosureTitle(props, ref) {
217
256
  let { level: level = 3, UNSAFE_style: UNSAFE_style, UNSAFE_className: UNSAFE_className = '', ...otherProps } = props;
218
257
  let domRef = (0, $7VHtn$useDOMRef)(ref);
219
258
  const domProps = (0, $7VHtn$filterDOMProps)(otherProps);
@@ -221,7 +260,7 @@ function $cf1d656285911959$var$DisclosureHeader(props, ref) {
221
260
  let { isExpanded: isExpanded } = (0, $7VHtn$useContext)((0, $7VHtn$DisclosureStateContext));
222
261
  let { size: size, density: density, isQuiet: isQuiet } = (0, $7VHtn$useSlottedContext)($cf1d656285911959$export$d665dd135a51b28a);
223
262
  let isRTL = direction === 'rtl';
224
- return /*#__PURE__*/ (0, $7VHtn$jsx)((0, $7VHtn$Heading), {
263
+ let buttonTrigger = /*#__PURE__*/ (0, $7VHtn$jsx)((0, $7VHtn$Heading), {
225
264
  ...domProps,
226
265
  level: level,
227
266
  ref: domRef,
@@ -250,10 +289,15 @@ function $cf1d656285911959$var$DisclosureHeader(props, ref) {
250
289
  ]
251
290
  })
252
291
  });
292
+ let ctx = (0, $7VHtn$useContext)($cf1d656285911959$var$InternalDisclosureHeader);
293
+ if (ctx) return buttonTrigger;
294
+ return /*#__PURE__*/ (0, $7VHtn$jsx)($cf1d656285911959$export$1e037ddd32f5b8ac, {
295
+ children: buttonTrigger
296
+ });
253
297
  }
254
298
  /**
255
- * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.
256
- */ let $cf1d656285911959$export$1e037ddd32f5b8ac = /*#__PURE__*/ (0, $7VHtn$forwardRef)($cf1d656285911959$var$DisclosureHeader);
299
+ * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.
300
+ */ let $cf1d656285911959$export$7843c6a5b3e340a2 = /*#__PURE__*/ (0, $7VHtn$forwardRef)($cf1d656285911959$var$DisclosureTitle);
257
301
  const $cf1d656285911959$var$panelStyles = function anonymous(props) {
258
302
  let rules = " .";
259
303
  rules += ' _c-bc1l9oh';
@@ -316,5 +360,5 @@ function $cf1d656285911959$var$DisclosurePanel(props, ref) {
316
360
  */ let $cf1d656285911959$export$feabaa331e1d464c = /*#__PURE__*/ (0, $7VHtn$forwardRef)($cf1d656285911959$var$DisclosurePanel);
317
361
 
318
362
 
319
- export {$cf1d656285911959$export$d665dd135a51b28a as DisclosureContext, $cf1d656285911959$export$74a362b31437ec83 as Disclosure, $cf1d656285911959$export$1e037ddd32f5b8ac as DisclosureHeader, $cf1d656285911959$export$feabaa331e1d464c as DisclosurePanel};
363
+ export {$cf1d656285911959$export$d665dd135a51b28a as DisclosureContext, $cf1d656285911959$export$74a362b31437ec83 as Disclosure, $cf1d656285911959$export$1e037ddd32f5b8ac as DisclosureHeader, $cf1d656285911959$export$7843c6a5b3e340a2 as DisclosureTitle, $cf1d656285911959$export$feabaa331e1d464c as DisclosurePanel};
320
364
  //# sourceMappingURL=Disclosure.mjs.map
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["/*\n * Copyright 2024 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, DOMRef, DOMRefValue} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nfunction DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n return (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n}\n\n/**\n * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureHeader = forwardRef(DisclosureHeader);\nexport {_DisclosureHeader as DisclosureHeader};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.mjs.map"}
1
+ {"mappings":"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","sources":["packages/@react-spectrum/s2/src/Disclosure.tsx"],"sourcesContent":["/*\n * Copyright 2024 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 {ActionButtonContext} from './ActionButton';\nimport {AriaLabelingProps, DOMProps, DOMRef, DOMRefValue, forwardRefType} from '@react-types/shared';\nimport {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';\nimport {CenterBaseline} from './CenterBaseline';\nimport {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };\nimport Chevron from '../ui-icons/Chevron';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {focusRing, lightDark, size as sizeValue, style} from '../style' with { type: 'macro' };\nimport React, {createContext, forwardRef, ReactNode, useContext} from 'react';\nimport {useDOMRef} from '@react-spectrum/utils';\nimport {useSpectrumContextProps} from './useSpectrumContextProps';\n\nexport interface DisclosureProps extends Omit<RACDisclosureProps, 'className' | 'style' | 'children'>, StyleProps {\n /**\n * The size of the disclosure.\n * @default 'M'\n */\n size?: 'S' | 'M' | 'L' | 'XL',\n /**\n * The amount of space between the disclosures.\n * @default 'regular'\n */\n density?: 'compact' | 'regular' | 'spacious',\n /** Whether the disclosure should be displayed with a quiet style. */\n isQuiet?: boolean,\n /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */\n children: ReactNode\n}\n\nexport const DisclosureContext = createContext<ContextValue<Omit<DisclosureProps, 'children'>, DOMRefValue<HTMLDivElement>>>(null);\n\nconst disclosure = style({\n color: 'heading',\n borderTopWidth: {\n default: 1,\n isQuiet: 0\n },\n borderBottomWidth: {\n default: 0,\n ':last-child': {\n default: 1,\n isQuiet: 0\n }\n },\n borderStartWidth: 0,\n borderEndWidth: 0,\n borderStyle: 'solid',\n borderColor: 'gray-200',\n minWidth: sizeValue(200)\n}, getAllowedOverrides());\n\nfunction Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {\n [props, ref] = useSpectrumContextProps(props, ref, DisclosureContext);\n let {\n size = 'M',\n density = 'regular',\n isQuiet,\n UNSAFE_style,\n UNSAFE_className = ''\n } = props;\n let domRef = useDOMRef(ref);\n\n return (\n <Provider\n values={[\n [DisclosureContext, {size, isQuiet, density}]\n ]}>\n <RACDisclosure\n {...props}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + disclosure({isQuiet}, props.styles)}>\n {props.children}\n </RACDisclosure>\n </Provider>\n );\n}\n\n/**\n * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.\n */\nlet _Disclosure = forwardRef(Disclosure);\nexport {_Disclosure as Disclosure};\n\nexport interface DisclosureTitleProps extends UnsafeStyles, DOMProps {\n /** The heading level of the disclosure header.\n * \n * @default 3\n */\n level?: number,\n /** The contents of the disclosure header. */\n children: React.ReactNode\n}\n\ninterface DisclosureHeaderProps extends UnsafeStyles, DOMProps {\n children: React.ReactNode\n}\n\nconst headingStyle = style({\n margin: 0,\n flexGrow: 1\n});\n\nconst buttonStyles = style({\n ...focusRing(),\n outlineOffset: -2,\n font: 'heading',\n color: {\n default: 'neutral',\n isDisabled: 'disabled'\n },\n fontWeight: 'bold',\n fontSize: {\n size: {\n S: 'heading-xs',\n M: 'heading-sm',\n L: 'heading',\n XL: 'heading-lg'\n }\n },\n lineHeight: 'ui',\n display: 'flex',\n alignItems: 'baseline',\n paddingX: '[calc(self(minHeight) * 3/8 - 1px)]',\n paddingY: centerPadding(),\n gap: '[calc(self(minHeight) * 3/8 - 1px)]',\n minHeight: {\n // compact is equivalent to 'control', but other densities have more padding.\n size: {\n S: {\n density: {\n compact: 24,\n regular: 32,\n spacious: 40\n }\n },\n M: {\n density: {\n compact: 32,\n regular: 40,\n spacious: 48\n }\n },\n L: {\n density: {\n compact: 40,\n regular: 48,\n spacious: 56\n }\n },\n XL: {\n density: {\n compact: 48,\n regular: 56,\n spacious: 64\n }\n }\n }\n },\n width: 'full',\n backgroundColor: {\n default: 'transparent',\n isFocusVisible: lightDark('transparent-black-100', 'transparent-white-100'),\n isHovered: lightDark('transparent-black-100', 'transparent-white-100'),\n isPressed: lightDark('transparent-black-100', 'transparent-white-100')\n },\n transition: 'default',\n borderWidth: 0,\n borderRadius: {\n // Only rounded for keyboard focus and quiet.\n default: 'none',\n isFocusVisible: 'control',\n isQuiet: 'control'\n },\n textAlign: 'start',\n disableTapHighlight: true\n});\n\nconst chevronStyles = style({\n rotate: {\n isRTL: 180,\n isExpanded: 90\n },\n transition: 'default',\n '--iconPrimary': {\n type: 'fill',\n value: 'currentColor'\n },\n flexShrink: 0\n});\n\nconst InternalDisclosureHeader = createContext<{} | null>(null);\n\nfunction DisclosureHeaderWithForwardRef(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_className,\n UNSAFE_style,\n children\n } = props;\n let domRef = useDOMRef(ref);\n let {size, isQuiet, density} = useSlottedContext(DisclosureContext)!;\n\n let mapSize = {\n S: 'XS',\n M: 'S',\n L: 'M',\n XL: 'L'\n };\n\n // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container\n let newSize : 'XS' | 'S' | 'M' | 'L' | 'XL' | undefined = size;\n if (density === 'compact') {\n newSize = mapSize[size ?? 'M'] as 'XS' | 'S' | 'M' | 'L';\n }\n\n return (\n <Provider\n values={[\n [ActionButtonContext, {size: newSize, isQuiet}],\n [InternalDisclosureHeader, {}]\n ]}>\n <div\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + style({display: 'flex', alignItems: 'center', gap: 4})}\n ref={domRef}>\n {children}\n </div>\n </Provider>\n );\n}\n\n/**\n * A wrapper element for the disclosure title that can contain other elements not part of the trigger.\n */\nexport const DisclosureHeader = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosureHeaderWithForwardRef);\n\nfunction DisclosureTitle(props: DisclosureTitleProps, ref: DOMRef<HTMLDivElement>) {\n let {\n level = 3,\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n let domRef = useDOMRef(ref);\n const domProps = filterDOMProps(otherProps);\n let {direction} = useLocale();\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;\n let isRTL = direction === 'rtl';\n\n let buttonTrigger = (\n <Heading\n {...domProps}\n level={level}\n ref={domRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + headingStyle}>\n <Button className={(renderProps) => buttonStyles({...renderProps, size, density, isQuiet})} slot=\"trigger\">\n <CenterBaseline>\n <Chevron size={size} className={chevronStyles({isExpanded, isRTL})} aria-hidden=\"true\" />\n </CenterBaseline>\n {props.children}\n </Button>\n </Heading>\n );\n let ctx = useContext(InternalDisclosureHeader);\n if (ctx) {\n return buttonTrigger;\n }\n\n return (\n <DisclosureHeader>\n {buttonTrigger}\n </DisclosureHeader>\n );\n}\n\n/**\n * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.\n */\nlet _DisclosureTitle = forwardRef(DisclosureTitle);\nexport {_DisclosureTitle as DisclosureTitle};\n\nexport interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {\n children: React.ReactNode\n}\n\nconst panelStyles = style({\n font: 'body',\n paddingTop: {\n isExpanded: 8\n },\n paddingBottom: {\n isExpanded: 16\n },\n paddingX: {\n isExpanded: {\n size: {\n S: 8,\n M: sizeValue(9),\n L: 12,\n XL: sizeValue(15)\n }\n }\n }\n});\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: DOMRef<HTMLDivElement>) {\n let {\n UNSAFE_style,\n UNSAFE_className = '',\n ...otherProps\n } = props;\n const domProps = filterDOMProps(otherProps);\n let {size} = useSlottedContext(DisclosureContext)!;\n let {isExpanded} = useContext(DisclosureStateContext)!;\n let panelRef = useDOMRef(ref);\n return (\n <RACDisclosurePanel\n {...domProps}\n ref={panelRef}\n style={UNSAFE_style}\n className={(UNSAFE_className ?? '') + panelStyles({size, isExpanded})}>\n {props.children}\n </RACDisclosurePanel>\n );\n}\n\n/**\n * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.\n */\nlet _DisclosurePanel = forwardRef(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n\n"],"names":[],"version":3,"file":"Disclosure.mjs.map"}
package/dist/main.cjs CHANGED
@@ -122,6 +122,7 @@ $parcel$export(module.exports, "DisclosureHeader", () => $4e301a98f0cc4e4f$expor
122
122
  $parcel$export(module.exports, "Disclosure", () => $4e301a98f0cc4e4f$exports.Disclosure);
123
123
  $parcel$export(module.exports, "DisclosurePanel", () => $4e301a98f0cc4e4f$exports.DisclosurePanel);
124
124
  $parcel$export(module.exports, "DisclosureContext", () => $4e301a98f0cc4e4f$exports.DisclosureContext);
125
+ $parcel$export(module.exports, "DisclosureTitle", () => $4e301a98f0cc4e4f$exports.DisclosureTitle);
125
126
  $parcel$export(module.exports, "Heading", () => $6367bc87eb7d24ad$exports.Heading);
126
127
  $parcel$export(module.exports, "HeadingContext", () => $6367bc87eb7d24ad$exports.HeadingContext);
127
128
  $parcel$export(module.exports, "Header", () => $6367bc87eb7d24ad$exports.Header);
package/dist/main.cjs.map CHANGED
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC","sources":["packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":["/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"main.cjs.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC","sources":["packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":["/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext, DisclosureTitle} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"main.cjs.map"}
package/dist/module.mjs CHANGED
@@ -20,7 +20,7 @@ import {ColorSwatchPicker as $ba9c901b6c815fb9$export$b46792416e3d8515, ColorSwa
20
20
  import {ColorWheel as $4a6afc95235907f0$export$f80663f808113381, ColorWheelContext as $4a6afc95235907f0$export$265015d6dc85bf21} from "./ColorWheel.mjs";
21
21
  import {ComboBox as $a2f262fac286a920$export$72b9695b8216309a, ComboBoxContext as $a2f262fac286a920$export$d414ccceff7063c3, ComboBoxItem as $a2f262fac286a920$export$b674b8ff01584ab1, ComboBoxSection as $a2f262fac286a920$export$5510125537491b61} from "./ComboBox.mjs";
22
22
  import {ContextualHelp as $8e176595bc49ca3f$export$7d3cdb256c2ba320, ContextualHelpContext as $8e176595bc49ca3f$export$41b9afaaba473494} from "./ContextualHelp.mjs";
23
- import {Disclosure as $cf1d656285911959$export$74a362b31437ec83, DisclosureContext as $cf1d656285911959$export$d665dd135a51b28a, DisclosureHeader as $cf1d656285911959$export$1e037ddd32f5b8ac, DisclosurePanel as $cf1d656285911959$export$feabaa331e1d464c} from "./Disclosure.mjs";
23
+ import {Disclosure as $cf1d656285911959$export$74a362b31437ec83, DisclosureContext as $cf1d656285911959$export$d665dd135a51b28a, DisclosureHeader as $cf1d656285911959$export$1e037ddd32f5b8ac, DisclosurePanel as $cf1d656285911959$export$feabaa331e1d464c, DisclosureTitle as $cf1d656285911959$export$7843c6a5b3e340a2} from "./Disclosure.mjs";
24
24
  import {Content as $8e847109a6ab556d$export$7c6e2c02157bb7d2, ContentContext as $8e847109a6ab556d$export$1cbdd774077931b4, Footer as $8e847109a6ab556d$export$a06f1c675e846f6f, FooterContext as $8e847109a6ab556d$export$5630640b68817ed6, Header as $8e847109a6ab556d$export$8b251419efc915eb, HeaderContext as $8e847109a6ab556d$export$e0e4026c12a8bdbb, Heading as $8e847109a6ab556d$export$a8a3e93435678ff9, HeadingContext as $8e847109a6ab556d$export$d688439359537581, Keyboard as $8e847109a6ab556d$export$16e4d70cc375e707, KeyboardContext as $8e847109a6ab556d$export$744d98a3b8a94e1c, Text as $8e847109a6ab556d$export$5f1af8db9871e1d6, TextContext as $8e847109a6ab556d$export$9afb8bc826b033ea} from "./Content.mjs";
25
25
  import {Dialog as $9bbc115952dac5a6$export$3ddf2d174ce01153} from "./Dialog.mjs";
26
26
  import {DialogTrigger as $66262086fa190fcb$export$2e1e1122cf0cba88} from "./DialogTrigger.mjs";
@@ -133,5 +133,5 @@ import {Collection as $c2fb5c905bcef374$re_export$Collection, FileTrigger as $c2
133
133
 
134
134
 
135
135
 
136
- export {$e0a5d45f488fa6ba$export$a766cd26d0d69044 as Accordion, $e0a5d45f488fa6ba$export$6bd5bb82c987ab74 as AccordionContext, $da878a05ab4a403e$export$cfc7921d29ef7b80 as ActionButton, $da878a05ab4a403e$export$2ff682723a46d413 as ActionButtonContext, $8bf3cd2442eb485e$export$ed57a210b9d13bb6 as ActionMenu, $8bf3cd2442eb485e$export$7f4b66acaca28bd5 as ActionMenuContext, $94a8ad475d9a330c$export$de466dd8317b0b75 as AlertDialog, $3ffa2cd930156220$export$e2255cf6045e8d47 as Avatar, $3ffa2cd930156220$export$a20dad690e1279e2 as AvatarContext, $85e1de65a7290f4a$export$5b26ebaf2b105908 as AvatarGroup, $85e1de65a7290f4a$export$4f18251748129091 as AvatarGroupContext, $6357025487dea614$export$37acb3580601e69a as Badge, $6357025487dea614$export$1d4627584e49159a as BadgeContext, $f329dd4f2aa58cd0$export$2dc68d50d56fbbd as Breadcrumbs, $f329dd4f2aa58cd0$export$dabcc1ec9dd9d1cc as Breadcrumb, $f329dd4f2aa58cd0$export$65596d3621b0a4a0 as BreadcrumbsContext, $067ea9f64ccd4e8e$export$353f5b6fc5456de1 as Button, $067ea9f64ccd4e8e$export$29d11c0fe2fc51d8 as LinkButton, $067ea9f64ccd4e8e$export$24d547caef80ccd1 as ButtonContext, $067ea9f64ccd4e8e$export$1c1a176f3b9e48d3 as LinkButtonContext, $472eaa9a9b344b9a$export$69b1032f2ecdf404 as ButtonGroup, $472eaa9a9b344b9a$export$4c574c91bb0be0e2 as ButtonGroupContext, $68e4e6fe083e22fd$export$60332b2344f7fe41 as Card, $68e4e6fe083e22fd$export$115f017852a4bb7c as CardPreview, $68e4e6fe083e22fd$export$c368ea3e577b1b86 as CollectionCardPreview, $68e4e6fe083e22fd$export$eff93e4e59ccc3b8 as AssetCard, $68e4e6fe083e22fd$export$78e8870b5d8ae469 as UserCard, $68e4e6fe083e22fd$export$e6cbe35324ccf844 as ProductCard, $68e4e6fe083e22fd$export$d0b2ee33ebf7d64 as CardContext, $bbcff092fe610ff3$export$7e52c821f7b6f422 as CardView, $bbcff092fe610ff3$export$64992ac69f286e5c as CardViewContext, $9b405e0f8095dce0$export$48513f6b9f8ce62d as Checkbox, $9b405e0f8095dce0$export$b085522c77523c51 as CheckboxContext, $4f43ac2b11e2df05$export$4aa08d5625cb8ead as CheckboxGroup, $4f43ac2b11e2df05$export$baf37c4be89255b8 as CheckboxGroupContext, $40a2b649525568ab$export$b2103f68a961418e as ColorArea, $40a2b649525568ab$export$ebe63fadcdce34ed as ColorAreaContext, $9c5ed7ec0bc126af$export$b865d4358897bb17 as ColorField, $9c5ed7ec0bc126af$export$44644b8a16031b5b as ColorFieldContext, $495db619596088aa$export$44fd664bcca5b6fb as ColorSlider, $495db619596088aa$export$717b2c0a523a0b53 as ColorSliderContext, $cd9e1720baab3945$export$cae13e90592f246a as ColorSwatch, $cd9e1720baab3945$export$83cc445538396800 as ColorSwatchContext, $ba9c901b6c815fb9$export$b46792416e3d8515 as ColorSwatchPicker, $ba9c901b6c815fb9$export$7214f50881fc1eaf as ColorSwatchPickerContext, $4a6afc95235907f0$export$f80663f808113381 as ColorWheel, $4a6afc95235907f0$export$265015d6dc85bf21 as ColorWheelContext, $a2f262fac286a920$export$72b9695b8216309a as ComboBox, $a2f262fac286a920$export$b674b8ff01584ab1 as ComboBoxItem, $a2f262fac286a920$export$5510125537491b61 as ComboBoxSection, $a2f262fac286a920$export$d414ccceff7063c3 as ComboBoxContext, $8e176595bc49ca3f$export$7d3cdb256c2ba320 as ContextualHelp, $8e176595bc49ca3f$export$41b9afaaba473494 as ContextualHelpContext, $cf1d656285911959$export$1e037ddd32f5b8ac as DisclosureHeader, $cf1d656285911959$export$74a362b31437ec83 as Disclosure, $cf1d656285911959$export$feabaa331e1d464c as DisclosurePanel, $cf1d656285911959$export$d665dd135a51b28a as DisclosureContext, $8e847109a6ab556d$export$a8a3e93435678ff9 as Heading, $8e847109a6ab556d$export$d688439359537581 as HeadingContext, $8e847109a6ab556d$export$8b251419efc915eb as Header, $8e847109a6ab556d$export$e0e4026c12a8bdbb as HeaderContext, $8e847109a6ab556d$export$7c6e2c02157bb7d2 as Content, $8e847109a6ab556d$export$1cbdd774077931b4 as ContentContext, $8e847109a6ab556d$export$a06f1c675e846f6f as Footer, $8e847109a6ab556d$export$5630640b68817ed6 as FooterContext, $8e847109a6ab556d$export$5f1af8db9871e1d6 as Text, $8e847109a6ab556d$export$9afb8bc826b033ea as TextContext, $8e847109a6ab556d$export$16e4d70cc375e707 as Keyboard, $8e847109a6ab556d$export$744d98a3b8a94e1c as KeyboardContext, $9bbc115952dac5a6$export$3ddf2d174ce01153 as Dialog, $66262086fa190fcb$export$2e1e1122cf0cba88 as DialogTrigger, $dd7e1b1b86bf720d$export$547754aada6e339f as DialogContainer, $dd7e1b1b86bf720d$export$a2f2d8fa6720dab1 as useDialogContainer, $bdf52657dac0f070$export$2e0a83ec2e27ecbb as Divider, $bdf52657dac0f070$export$30fbfd376abdf190 as DividerContext, $fb6e45fba2483f65$export$3c6489d84dc98b6 as DropZone, $fb6e45fba2483f65$export$14a72053295ff9a6 as DropZoneContext, $9b916426527cebe7$export$a7fed597f4b8afd8 as Form, $ac8c32e6775ddd1f$export$274edc73af1ae9c8 as createIcon, $ac8c32e6775ddd1f$export$a49f528ae1a4d0ed as IconContext, $ac8c32e6775ddd1f$export$207c7561471de4bd as IllustrationContext, $4950413ac998f607$export$406dbc84c317ece0 as IllustratedMessage, $4950413ac998f607$export$d661ef89ad42d682 as IllustratedMessageContext, $dbd6f0b2503b938c$export$3e431a229df88919 as Image, $dbd6f0b2503b938c$export$8151eb379fcf2442 as ImageContext, $4b5e069e9e001e8b$export$1b926c015f09611d as ImageCoordinator, $fc2cf6b397804b9c$export$a3b2c96db9b0eb71 as InlineAlert, $fc2cf6b397804b9c$export$c0de4eca0a8bf011 as InlineAlertContext, $f50c78733c21bfe2$export$a6c7ac8248d6e38a as Link, $f50c78733c21bfe2$export$e2509388b49734e7 as LinkContext, $13afb0ea5f0ed767$export$2ce376c2cc3355c8 as MenuItem, $13afb0ea5f0ed767$export$27d2ad3c5815583e as MenuTrigger, $13afb0ea5f0ed767$export$d9b273488cd8ce6f as Menu, $13afb0ea5f0ed767$export$4b1545b4f2016d26 as MenuSection, $13afb0ea5f0ed767$export$ecabc99eeffab7ca as SubmenuTrigger, $13afb0ea5f0ed767$export$c7e742effb1c51e2 as MenuContext, $bb56943300b294c6$export$62e3ae2a4090b879 as Meter, $bb56943300b294c6$export$8b645da15a96b44f as MeterContext, $675eca1a78ccd399$export$63c5fa0b2fdccd2e as NumberField, $675eca1a78ccd399$export$b414a48cf5dcbc11 as NumberFieldContext, $b41c15d27fbaff7d$export$ba25329847403e11 as Picker, $b41c15d27fbaff7d$export$d601881f38163e28 as PickerItem, $b41c15d27fbaff7d$export$a340772aca6155cd as PickerSection, $b41c15d27fbaff7d$export$b72b8dade9393cd5 as PickerContext, $b847b7cd294eafba$export$c17561cb55d4db30 as ProgressBar, $b847b7cd294eafba$export$e9f3bf65a26ce129 as ProgressBarContext, $41ddd91dbbf0c389$export$c79b9d6b4cc92af7 as ProgressCircle, $41ddd91dbbf0c389$export$afffa1e5edf12209 as ProgressCircleContext, $9affbfa4e13b9582$export$2881499e37b75b9a as Provider, $1ae2870af9a200f8$export$d7b12c4107be0d61 as Radio, $9a2afae66771094f$export$a98f0dcb43a68a25 as RadioGroup, $9a2afae66771094f$export$a79eda4ff50e30b6 as RadioGroupContext, $c683c8ad68e59901$export$826424dabc3dd705 as RangeSlider, $c683c8ad68e59901$export$9e0b46d8c4f4c18f as RangeSliderContext, $e3d0f3db0eb61b92$export$b94867ecbd698f21 as SearchField, $e3d0f3db0eb61b92$export$d1c4e4c63cb03a11 as SearchFieldContext, $c679c2152e03f8bf$export$668709c620d0b8e2 as SegmentedControl, $c679c2152e03f8bf$export$4fc12f2742e8cf3f as SegmentedControlItem, $c679c2152e03f8bf$export$c083c44d8a07dd35 as SegmentedControlContext, $8128d8480e67c400$export$472062a354075cee as Slider, $8128d8480e67c400$export$e99164f0030f3bff as SliderContext, $5ad421ec19460c48$export$8f31e4c4a37b8e9c as Skeleton, $5ad421ec19460c48$export$4f8dc7555740235c as useIsSkeleton, $00cf18afd94ad18c$export$4365333b6bb1c86b as SkeletonCollection, $cd71613dba8ee178$export$5f84c37a31c6e41c as StatusLight, $cd71613dba8ee178$export$d8f8c0b091d8cb9b as StatusLightContext, $8926b17b75ae985d$export$b5d5cf8927ab7262 as Switch, $8926b17b75ae985d$export$8699e3b644d5a28a as SwitchContext, $0fcd5fb617970a1d$export$b3c27e869d856b7 as TableView, $0fcd5fb617970a1d$export$f850895b287ef28e as TableHeader, $0fcd5fb617970a1d$export$76ccd210b9029917 as TableBody, $0fcd5fb617970a1d$export$b59bdbef9ce70de2 as Row, $0fcd5fb617970a1d$export$f6f0c3fe4ec306ea as Cell, $0fcd5fb617970a1d$export$816b5d811295e6bc as Column, $0fcd5fb617970a1d$export$93e4b0b2cc49b648 as TableContext, $79e2b4a1b34d1592$export$b2539bed5023c21c as Tabs, $79e2b4a1b34d1592$export$e51a686c67fdaa2d as TabList, $79e2b4a1b34d1592$export$3e41faf802a29e71 as Tab, $79e2b4a1b34d1592$export$3d96ec278d3efce4 as TabPanel, $79e2b4a1b34d1592$export$cfa7aa87c26e7d1f as TabsContext, $1d63bfab43d9ffe1$export$67ea30858aaf75e3 as TagGroup, $1d63bfab43d9ffe1$export$3288d34c523a1192 as Tag, $1d63bfab43d9ffe1$export$5b07b5dd2cbd96e3 as TagGroupContext, $d946f50010ba937f$export$f5c9f3c2c4054eec as TextArea, $d946f50010ba937f$export$2c73285ae9390cec as TextField, $d946f50010ba937f$export$2dc6166a7e65358c as TextAreaContext, $d946f50010ba937f$export$2129e27b3ef0d483 as TextFieldContext, $fe4c9df7420c3c9f$export$d2b052e7b4be1756 as ToggleButton, $fe4c9df7420c3c9f$export$43506d75ebd2e218 as ToggleButtonContext, $4c20647d6e5d8fdf$export$28c660c63b792dea as Tooltip, $4c20647d6e5d8fdf$export$8c610744efcf8a1d as TooltipTrigger, $10ea7662e51a285b$export$56e8cba416805d8d as pressScale, $c2fb5c905bcef374$re_export$Collection as Collection, $c2fb5c905bcef374$re_export$FileTrigger as FileTrigger};
136
+ export {$e0a5d45f488fa6ba$export$a766cd26d0d69044 as Accordion, $e0a5d45f488fa6ba$export$6bd5bb82c987ab74 as AccordionContext, $da878a05ab4a403e$export$cfc7921d29ef7b80 as ActionButton, $da878a05ab4a403e$export$2ff682723a46d413 as ActionButtonContext, $8bf3cd2442eb485e$export$ed57a210b9d13bb6 as ActionMenu, $8bf3cd2442eb485e$export$7f4b66acaca28bd5 as ActionMenuContext, $94a8ad475d9a330c$export$de466dd8317b0b75 as AlertDialog, $3ffa2cd930156220$export$e2255cf6045e8d47 as Avatar, $3ffa2cd930156220$export$a20dad690e1279e2 as AvatarContext, $85e1de65a7290f4a$export$5b26ebaf2b105908 as AvatarGroup, $85e1de65a7290f4a$export$4f18251748129091 as AvatarGroupContext, $6357025487dea614$export$37acb3580601e69a as Badge, $6357025487dea614$export$1d4627584e49159a as BadgeContext, $f329dd4f2aa58cd0$export$2dc68d50d56fbbd as Breadcrumbs, $f329dd4f2aa58cd0$export$dabcc1ec9dd9d1cc as Breadcrumb, $f329dd4f2aa58cd0$export$65596d3621b0a4a0 as BreadcrumbsContext, $067ea9f64ccd4e8e$export$353f5b6fc5456de1 as Button, $067ea9f64ccd4e8e$export$29d11c0fe2fc51d8 as LinkButton, $067ea9f64ccd4e8e$export$24d547caef80ccd1 as ButtonContext, $067ea9f64ccd4e8e$export$1c1a176f3b9e48d3 as LinkButtonContext, $472eaa9a9b344b9a$export$69b1032f2ecdf404 as ButtonGroup, $472eaa9a9b344b9a$export$4c574c91bb0be0e2 as ButtonGroupContext, $68e4e6fe083e22fd$export$60332b2344f7fe41 as Card, $68e4e6fe083e22fd$export$115f017852a4bb7c as CardPreview, $68e4e6fe083e22fd$export$c368ea3e577b1b86 as CollectionCardPreview, $68e4e6fe083e22fd$export$eff93e4e59ccc3b8 as AssetCard, $68e4e6fe083e22fd$export$78e8870b5d8ae469 as UserCard, $68e4e6fe083e22fd$export$e6cbe35324ccf844 as ProductCard, $68e4e6fe083e22fd$export$d0b2ee33ebf7d64 as CardContext, $bbcff092fe610ff3$export$7e52c821f7b6f422 as CardView, $bbcff092fe610ff3$export$64992ac69f286e5c as CardViewContext, $9b405e0f8095dce0$export$48513f6b9f8ce62d as Checkbox, $9b405e0f8095dce0$export$b085522c77523c51 as CheckboxContext, $4f43ac2b11e2df05$export$4aa08d5625cb8ead as CheckboxGroup, $4f43ac2b11e2df05$export$baf37c4be89255b8 as CheckboxGroupContext, $40a2b649525568ab$export$b2103f68a961418e as ColorArea, $40a2b649525568ab$export$ebe63fadcdce34ed as ColorAreaContext, $9c5ed7ec0bc126af$export$b865d4358897bb17 as ColorField, $9c5ed7ec0bc126af$export$44644b8a16031b5b as ColorFieldContext, $495db619596088aa$export$44fd664bcca5b6fb as ColorSlider, $495db619596088aa$export$717b2c0a523a0b53 as ColorSliderContext, $cd9e1720baab3945$export$cae13e90592f246a as ColorSwatch, $cd9e1720baab3945$export$83cc445538396800 as ColorSwatchContext, $ba9c901b6c815fb9$export$b46792416e3d8515 as ColorSwatchPicker, $ba9c901b6c815fb9$export$7214f50881fc1eaf as ColorSwatchPickerContext, $4a6afc95235907f0$export$f80663f808113381 as ColorWheel, $4a6afc95235907f0$export$265015d6dc85bf21 as ColorWheelContext, $a2f262fac286a920$export$72b9695b8216309a as ComboBox, $a2f262fac286a920$export$b674b8ff01584ab1 as ComboBoxItem, $a2f262fac286a920$export$5510125537491b61 as ComboBoxSection, $a2f262fac286a920$export$d414ccceff7063c3 as ComboBoxContext, $8e176595bc49ca3f$export$7d3cdb256c2ba320 as ContextualHelp, $8e176595bc49ca3f$export$41b9afaaba473494 as ContextualHelpContext, $cf1d656285911959$export$1e037ddd32f5b8ac as DisclosureHeader, $cf1d656285911959$export$74a362b31437ec83 as Disclosure, $cf1d656285911959$export$feabaa331e1d464c as DisclosurePanel, $cf1d656285911959$export$d665dd135a51b28a as DisclosureContext, $cf1d656285911959$export$7843c6a5b3e340a2 as DisclosureTitle, $8e847109a6ab556d$export$a8a3e93435678ff9 as Heading, $8e847109a6ab556d$export$d688439359537581 as HeadingContext, $8e847109a6ab556d$export$8b251419efc915eb as Header, $8e847109a6ab556d$export$e0e4026c12a8bdbb as HeaderContext, $8e847109a6ab556d$export$7c6e2c02157bb7d2 as Content, $8e847109a6ab556d$export$1cbdd774077931b4 as ContentContext, $8e847109a6ab556d$export$a06f1c675e846f6f as Footer, $8e847109a6ab556d$export$5630640b68817ed6 as FooterContext, $8e847109a6ab556d$export$5f1af8db9871e1d6 as Text, $8e847109a6ab556d$export$9afb8bc826b033ea as TextContext, $8e847109a6ab556d$export$16e4d70cc375e707 as Keyboard, $8e847109a6ab556d$export$744d98a3b8a94e1c as KeyboardContext, $9bbc115952dac5a6$export$3ddf2d174ce01153 as Dialog, $66262086fa190fcb$export$2e1e1122cf0cba88 as DialogTrigger, $dd7e1b1b86bf720d$export$547754aada6e339f as DialogContainer, $dd7e1b1b86bf720d$export$a2f2d8fa6720dab1 as useDialogContainer, $bdf52657dac0f070$export$2e0a83ec2e27ecbb as Divider, $bdf52657dac0f070$export$30fbfd376abdf190 as DividerContext, $fb6e45fba2483f65$export$3c6489d84dc98b6 as DropZone, $fb6e45fba2483f65$export$14a72053295ff9a6 as DropZoneContext, $9b916426527cebe7$export$a7fed597f4b8afd8 as Form, $ac8c32e6775ddd1f$export$274edc73af1ae9c8 as createIcon, $ac8c32e6775ddd1f$export$a49f528ae1a4d0ed as IconContext, $ac8c32e6775ddd1f$export$207c7561471de4bd as IllustrationContext, $4950413ac998f607$export$406dbc84c317ece0 as IllustratedMessage, $4950413ac998f607$export$d661ef89ad42d682 as IllustratedMessageContext, $dbd6f0b2503b938c$export$3e431a229df88919 as Image, $dbd6f0b2503b938c$export$8151eb379fcf2442 as ImageContext, $4b5e069e9e001e8b$export$1b926c015f09611d as ImageCoordinator, $fc2cf6b397804b9c$export$a3b2c96db9b0eb71 as InlineAlert, $fc2cf6b397804b9c$export$c0de4eca0a8bf011 as InlineAlertContext, $f50c78733c21bfe2$export$a6c7ac8248d6e38a as Link, $f50c78733c21bfe2$export$e2509388b49734e7 as LinkContext, $13afb0ea5f0ed767$export$2ce376c2cc3355c8 as MenuItem, $13afb0ea5f0ed767$export$27d2ad3c5815583e as MenuTrigger, $13afb0ea5f0ed767$export$d9b273488cd8ce6f as Menu, $13afb0ea5f0ed767$export$4b1545b4f2016d26 as MenuSection, $13afb0ea5f0ed767$export$ecabc99eeffab7ca as SubmenuTrigger, $13afb0ea5f0ed767$export$c7e742effb1c51e2 as MenuContext, $bb56943300b294c6$export$62e3ae2a4090b879 as Meter, $bb56943300b294c6$export$8b645da15a96b44f as MeterContext, $675eca1a78ccd399$export$63c5fa0b2fdccd2e as NumberField, $675eca1a78ccd399$export$b414a48cf5dcbc11 as NumberFieldContext, $b41c15d27fbaff7d$export$ba25329847403e11 as Picker, $b41c15d27fbaff7d$export$d601881f38163e28 as PickerItem, $b41c15d27fbaff7d$export$a340772aca6155cd as PickerSection, $b41c15d27fbaff7d$export$b72b8dade9393cd5 as PickerContext, $b847b7cd294eafba$export$c17561cb55d4db30 as ProgressBar, $b847b7cd294eafba$export$e9f3bf65a26ce129 as ProgressBarContext, $41ddd91dbbf0c389$export$c79b9d6b4cc92af7 as ProgressCircle, $41ddd91dbbf0c389$export$afffa1e5edf12209 as ProgressCircleContext, $9affbfa4e13b9582$export$2881499e37b75b9a as Provider, $1ae2870af9a200f8$export$d7b12c4107be0d61 as Radio, $9a2afae66771094f$export$a98f0dcb43a68a25 as RadioGroup, $9a2afae66771094f$export$a79eda4ff50e30b6 as RadioGroupContext, $c683c8ad68e59901$export$826424dabc3dd705 as RangeSlider, $c683c8ad68e59901$export$9e0b46d8c4f4c18f as RangeSliderContext, $e3d0f3db0eb61b92$export$b94867ecbd698f21 as SearchField, $e3d0f3db0eb61b92$export$d1c4e4c63cb03a11 as SearchFieldContext, $c679c2152e03f8bf$export$668709c620d0b8e2 as SegmentedControl, $c679c2152e03f8bf$export$4fc12f2742e8cf3f as SegmentedControlItem, $c679c2152e03f8bf$export$c083c44d8a07dd35 as SegmentedControlContext, $8128d8480e67c400$export$472062a354075cee as Slider, $8128d8480e67c400$export$e99164f0030f3bff as SliderContext, $5ad421ec19460c48$export$8f31e4c4a37b8e9c as Skeleton, $5ad421ec19460c48$export$4f8dc7555740235c as useIsSkeleton, $00cf18afd94ad18c$export$4365333b6bb1c86b as SkeletonCollection, $cd71613dba8ee178$export$5f84c37a31c6e41c as StatusLight, $cd71613dba8ee178$export$d8f8c0b091d8cb9b as StatusLightContext, $8926b17b75ae985d$export$b5d5cf8927ab7262 as Switch, $8926b17b75ae985d$export$8699e3b644d5a28a as SwitchContext, $0fcd5fb617970a1d$export$b3c27e869d856b7 as TableView, $0fcd5fb617970a1d$export$f850895b287ef28e as TableHeader, $0fcd5fb617970a1d$export$76ccd210b9029917 as TableBody, $0fcd5fb617970a1d$export$b59bdbef9ce70de2 as Row, $0fcd5fb617970a1d$export$f6f0c3fe4ec306ea as Cell, $0fcd5fb617970a1d$export$816b5d811295e6bc as Column, $0fcd5fb617970a1d$export$93e4b0b2cc49b648 as TableContext, $79e2b4a1b34d1592$export$b2539bed5023c21c as Tabs, $79e2b4a1b34d1592$export$e51a686c67fdaa2d as TabList, $79e2b4a1b34d1592$export$3e41faf802a29e71 as Tab, $79e2b4a1b34d1592$export$3d96ec278d3efce4 as TabPanel, $79e2b4a1b34d1592$export$cfa7aa87c26e7d1f as TabsContext, $1d63bfab43d9ffe1$export$67ea30858aaf75e3 as TagGroup, $1d63bfab43d9ffe1$export$3288d34c523a1192 as Tag, $1d63bfab43d9ffe1$export$5b07b5dd2cbd96e3 as TagGroupContext, $d946f50010ba937f$export$f5c9f3c2c4054eec as TextArea, $d946f50010ba937f$export$2c73285ae9390cec as TextField, $d946f50010ba937f$export$2dc6166a7e65358c as TextAreaContext, $d946f50010ba937f$export$2129e27b3ef0d483 as TextFieldContext, $fe4c9df7420c3c9f$export$d2b052e7b4be1756 as ToggleButton, $fe4c9df7420c3c9f$export$43506d75ebd2e218 as ToggleButtonContext, $4c20647d6e5d8fdf$export$28c660c63b792dea as Tooltip, $4c20647d6e5d8fdf$export$8c610744efcf8a1d as TooltipTrigger, $10ea7662e51a285b$export$56e8cba416805d8d as pressScale, $c2fb5c905bcef374$re_export$Collection as Collection, $c2fb5c905bcef374$re_export$FileTrigger as FileTrigger};
137
137
  //# sourceMappingURL=module.mjs.map
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC","sources":["packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":["/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"module.mjs.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC","sources":["packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":["/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext, DisclosureTitle} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"module.mjs.map"}
package/dist/types.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React, { CSSProperties, ReactNode, JSX, ComponentType, Context, FunctionComponent, SVGProps, RefObject, RefAttributes, ForwardRefExoticComponent, JSXElementConstructor, ReactElement, ReactPortal, HTMLAttributeReferrerPolicy } from "react";
2
2
  import { AriaLabelingProps, DOMProps, DOMRefValue, SpectrumLabelableProps, FocusableRefValue, LinkDOMProps, LoadingState, HelpTextProps, Orientation, ValueBase, LabelPosition, InputDOMProps, RangeValue } from "@react-types/shared";
3
- import { ContextValue, DisclosurePanelProps as _DisclosurePanelProps1, DisclosureProps as _DisclosureProps1, DisclosureGroupProps, SlotProps, FormProps as _FormProps1, ButtonProps as _ButtonProps1, CheckboxProps as _CheckboxProps1, SeparatorProps, PopoverProps as _PopoverProps1, MenuItemProps as _MenuItemProps1, MenuProps as _MenuProps1, MenuTriggerProps as _MenuTriggerProps1, SubmenuTriggerProps as _SubmenuTriggerProps1, SectionProps, ProgressBarProps as _ProgressBarProps1, LinkProps as _LinkProps1, DialogProps as _DialogProps1, BreadcrumbsProps as _BreadcrumbsProps1, GridListItemProps, GridListProps, DialogTriggerProps as _DialogTriggerProps1, CheckboxGroupProps as _CheckboxGroupProps1, ColorAreaProps as _ColorAreaProps1, ColorFieldProps as _ColorFieldProps1, ColorSliderProps as _ColorSliderProps1, ColorSwatchProps as _ColorSwatchProps1, ColorWheelProps as _ColorWheelProps1, SelectProps, ListBoxItemProps, ListBoxProps, ComboBoxProps as _ComboBoxProps1, DropZoneProps as _DropZoneProps1, MeterProps as _MeterProps1, NumberFieldProps as _NumberFieldProps1, RadioProps as _RadioProps1, RadioGroupProps as _RadioGroupProps1, SliderProps as _SliderProps1, SearchFieldProps as _SearchFieldProps1, SwitchProps as _SwitchProps1, Key, CellProps as _CellProps1, ColumnProps as _ColumnProps1, RowProps as _RowProps1, TableBodyProps as _TableBodyProps1, TableHeaderProps as _TableHeaderProps1, TableProps, TabListProps as _TabListProps1, TabPanelProps as _TabPanelProps1, TabProps as _TabProps1, TabsProps as _TabsProps1, TagGroupProps as _TagGroupProps1, TagProps as _TagProps1, TagListProps, TextFieldProps as _TextFieldProps1, ToggleButtonProps as _ToggleButtonProps1, TooltipProps as _TooltipProps1, TooltipTriggerComponentProps } from "react-aria-components";
3
+ import { ContextValue, SlotProps, FormProps as _FormProps1, ButtonProps as _ButtonProps1, DisclosurePanelProps as _DisclosurePanelProps1, DisclosureProps as _DisclosureProps1, DisclosureGroupProps, CheckboxProps as _CheckboxProps1, SeparatorProps, PopoverProps as _PopoverProps1, MenuItemProps as _MenuItemProps1, MenuProps as _MenuProps1, MenuTriggerProps as _MenuTriggerProps1, SubmenuTriggerProps as _SubmenuTriggerProps1, SectionProps, ProgressBarProps as _ProgressBarProps1, LinkProps as _LinkProps1, DialogProps as _DialogProps1, BreadcrumbsProps as _BreadcrumbsProps1, GridListItemProps, GridListProps, DialogTriggerProps as _DialogTriggerProps1, CheckboxGroupProps as _CheckboxGroupProps1, ColorAreaProps as _ColorAreaProps1, ColorFieldProps as _ColorFieldProps1, ColorSliderProps as _ColorSliderProps1, ColorSwatchProps as _ColorSwatchProps1, ColorWheelProps as _ColorWheelProps1, SelectProps, ListBoxItemProps, ListBoxProps, ComboBoxProps as _ComboBoxProps1, DropZoneProps as _DropZoneProps1, MeterProps as _MeterProps1, NumberFieldProps as _NumberFieldProps1, RadioProps as _RadioProps1, RadioGroupProps as _RadioGroupProps1, SliderProps as _SliderProps1, SearchFieldProps as _SearchFieldProps1, SwitchProps as _SwitchProps1, Key, CellProps as _CellProps1, ColumnProps as _ColumnProps1, RowProps as _RowProps1, TableBodyProps as _TableBodyProps1, TableHeaderProps as _TableHeaderProps1, TableProps, TabListProps as _TabListProps1, TabPanelProps as _TabPanelProps1, TabProps as _TabProps1, TabsProps as _TabsProps1, TagGroupProps as _TagGroupProps1, TagProps as _TagProps1, TagListProps, TextFieldProps as _TextFieldProps1, ToggleButtonProps as _ToggleButtonProps1, TooltipProps as _TooltipProps1, TooltipTriggerComponentProps } from "react-aria-components";
4
4
  import { ColorScheme, Router } from "@react-types/provider";
5
5
  import { AriaBreadcrumbItemProps } from "react-aria";
6
6
  import { TextFieldRef } from "@react-types/textfield";
@@ -26,70 +26,6 @@ interface StyleProps extends UnsafeStyles {
26
26
  /** Spectrum-defined styles, returned by the `style()` macro. */
27
27
  styles?: StylesProp;
28
28
  }
29
- export interface DisclosureProps extends Omit<_DisclosureProps1, 'className' | 'style' | 'children'>, StyleProps {
30
- /**
31
- * The size of the disclosure.
32
- * @default 'M'
33
- */
34
- size?: 'S' | 'M' | 'L' | 'XL';
35
- /**
36
- * The amount of space between the disclosures.
37
- * @default 'regular'
38
- */
39
- density?: 'compact' | 'regular' | 'spacious';
40
- /** Whether the disclosure should be displayed with a quiet style. */
41
- isQuiet?: boolean;
42
- /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */
43
- children: ReactNode;
44
- }
45
- export const DisclosureContext: React.Context<ContextValue<Omit<DisclosureProps, "children">, DOMRefValue<HTMLDivElement>>>;
46
- /**
47
- * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.
48
- */
49
- export let Disclosure: React.ForwardRefExoticComponent<DisclosureProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
50
- interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {
51
- /** The heading level of the disclosure header.
52
- *
53
- * @default 3
54
- */
55
- level?: number;
56
- /** The contents of the disclosure header. */
57
- children: React.ReactNode;
58
- }
59
- /**
60
- * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.
61
- */
62
- export let DisclosureHeader: React.ForwardRefExoticComponent<DisclosureHeaderProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
63
- export interface DisclosurePanelProps extends Omit<_DisclosurePanelProps1, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {
64
- children: React.ReactNode;
65
- }
66
- /**
67
- * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.
68
- */
69
- export let DisclosurePanel: React.ForwardRefExoticComponent<DisclosurePanelProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
70
- export interface AccordionProps extends Omit<DisclosureGroupProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, SlotProps {
71
- /** The disclosure elements in the accordion. */
72
- children: React.ReactNode;
73
- /** Spectrum-defined styles, returned by the `style()` macro. */
74
- styles?: StylesPropWithHeight;
75
- /**
76
- * The size of the accordion.
77
- * @default 'M'
78
- */
79
- size?: 'S' | 'M' | 'L' | 'XL';
80
- /**
81
- * The amount of space between the disclosure items.
82
- * @default 'regular'
83
- */
84
- density?: 'compact' | 'regular' | 'spacious';
85
- /** Whether the accordion should be displayed with a quiet style. */
86
- isQuiet?: boolean;
87
- }
88
- export const AccordionContext: React.Context<ContextValue<AccordionProps, DOMRefValue<HTMLDivElement>>>;
89
- /**
90
- * An accordion is a container for multiple disclosures.
91
- */
92
- export let Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
93
29
  export function useIsSkeleton(): boolean;
94
30
  export interface SkeletonProps {
95
31
  children: ReactNode;
@@ -175,6 +111,77 @@ export const ActionButtonContext: Context<ContextValue<ActionButtonProps, Focusa
175
111
  * They’re used for similar, task-based options within a workflow, and are ideal for interfaces where buttons aren’t meant to draw a lot of attention.
176
112
  */
177
113
  export let ActionButton: ForwardRefExoticComponent<ActionButtonProps & RefAttributes<FocusableRefValue<HTMLButtonElement, HTMLButtonElement>>>;
114
+ export interface DisclosureProps extends Omit<_DisclosureProps1, 'className' | 'style' | 'children'>, StyleProps {
115
+ /**
116
+ * The size of the disclosure.
117
+ * @default 'M'
118
+ */
119
+ size?: 'S' | 'M' | 'L' | 'XL';
120
+ /**
121
+ * The amount of space between the disclosures.
122
+ * @default 'regular'
123
+ */
124
+ density?: 'compact' | 'regular' | 'spacious';
125
+ /** Whether the disclosure should be displayed with a quiet style. */
126
+ isQuiet?: boolean;
127
+ /** The contents of the disclosure, consisting of an DisclosureHeader and DisclosurePanel. */
128
+ children: ReactNode;
129
+ }
130
+ export const DisclosureContext: React.Context<ContextValue<Omit<DisclosureProps, "children">, DOMRefValue<HTMLDivElement>>>;
131
+ /**
132
+ * A disclosure is a collapsible section of content. It is composed of a a header with a heading and trigger button, and a panel that contains the content.
133
+ */
134
+ export let Disclosure: React.ForwardRefExoticComponent<DisclosureProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
135
+ interface DisclosureTitleProps extends UnsafeStyles, DOMProps {
136
+ /** The heading level of the disclosure header.
137
+ *
138
+ * @default 3
139
+ */
140
+ level?: number;
141
+ /** The contents of the disclosure header. */
142
+ children: React.ReactNode;
143
+ }
144
+ interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {
145
+ children: React.ReactNode;
146
+ }
147
+ /**
148
+ * A wrapper element for the disclosure title that can contain other elements not part of the trigger.
149
+ */
150
+ export const DisclosureHeader: (props: DisclosureHeaderProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>) => React.ReactElement | null;
151
+ /**
152
+ * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.
153
+ */
154
+ export let DisclosureTitle: React.ForwardRefExoticComponent<DisclosureTitleProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
155
+ export interface DisclosurePanelProps extends Omit<_DisclosurePanelProps1, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {
156
+ children: React.ReactNode;
157
+ }
158
+ /**
159
+ * A disclosure panel is a collapsible section of content that is hidden until the disclosure is expanded.
160
+ */
161
+ export let DisclosurePanel: React.ForwardRefExoticComponent<DisclosurePanelProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
162
+ export interface AccordionProps extends Omit<DisclosureGroupProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, SlotProps {
163
+ /** The disclosure elements in the accordion. */
164
+ children: React.ReactNode;
165
+ /** Spectrum-defined styles, returned by the `style()` macro. */
166
+ styles?: StylesPropWithHeight;
167
+ /**
168
+ * The size of the accordion.
169
+ * @default 'M'
170
+ */
171
+ size?: 'S' | 'M' | 'L' | 'XL';
172
+ /**
173
+ * The amount of space between the disclosure items.
174
+ * @default 'regular'
175
+ */
176
+ density?: 'compact' | 'regular' | 'spacious';
177
+ /** Whether the accordion should be displayed with a quiet style. */
178
+ isQuiet?: boolean;
179
+ }
180
+ export const AccordionContext: React.Context<ContextValue<AccordionProps, DOMRefValue<HTMLDivElement>>>;
181
+ /**
182
+ * An accordion is a container for multiple disclosures.
183
+ */
184
+ export let Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>>;
178
185
  interface CheckboxStyleProps {
179
186
  /**
180
187
  * The size of the Checkbox.
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/types.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/runtime.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/style-macro.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/tokens.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/spectrum-theme.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/index.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CenterBaseline.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/style-utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Chevron.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/useSpectrumContextProps.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Disclosure.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Accordion.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Skeleton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Icon.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/pressScale.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Content.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Form.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ActionButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/types.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Checkmark.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Dash.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Checkbox.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Divider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ImageCoordinator.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Image.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/LinkOut.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/page.macro.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Provider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Popover.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Menu.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ActionMenu.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ProgressCircle.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Button.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ButtonGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Cross.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CloseButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Modal.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Dialog.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/AlertDialog.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Avatar.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/AvatarGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Badge.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Breadcrumbs.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Card.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CardView.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Asterisk.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DialogTrigger.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ContextualHelp.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Field.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CheckboxGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorHandle.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorArea.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSlider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSwatch.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSwatchPicker.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorWheel.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Picker.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ComboBox.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DialogContainer.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/IllustratedMessage.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DropZone.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/InlineAlert.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Link.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/bar-utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Meter.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Add.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/NumberField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ProgressBar.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Radio.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/RadioGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Slider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/RangeSlider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ClearButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SearchField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SegmentedControl.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SkeletonCollection.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/StatusLight.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Switch.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TableView.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Tabs.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TagGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TextField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ToggleButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Tooltip.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/index.ts","packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":"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","sources":["packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/types.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/style-macro.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/tokens.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/spectrum-theme.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/index.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/style/runtime.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CenterBaseline.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/style-utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Skeleton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/useSpectrumContextProps.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Icon.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/pressScale.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Content.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Form.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ActionButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Chevron.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Disclosure.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Accordion.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/types.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Checkmark.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Dash.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Checkbox.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Divider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ImageCoordinator.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Image.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/LinkOut.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/page.macro.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Provider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Popover.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Menu.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ActionMenu.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ProgressCircle.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Button.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ButtonGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Cross.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CloseButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Modal.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Dialog.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/AlertDialog.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Avatar.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/AvatarGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Badge.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Breadcrumbs.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Card.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CardView.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Asterisk.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DialogTrigger.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ContextualHelp.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Field.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/CheckboxGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorHandle.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorArea.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSlider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSwatch.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorSwatchPicker.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ColorWheel.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Picker.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ComboBox.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DialogContainer.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/IllustratedMessage.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/DropZone.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/InlineAlert.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Link.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/bar-utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Meter.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/ui-icons/Add.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/NumberField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ProgressBar.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Radio.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/RadioGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Slider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/RangeSlider.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ClearButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SearchField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SegmentedControl.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/SkeletonCollection.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/StatusLight.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Switch.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/utils.ts","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TableView.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Tabs.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TagGroup.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/TextField.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/ToggleButton.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/Tooltip.tsx","packages/@react-spectrum/s2/src/packages/@react-spectrum/s2/src/index.ts","packages/@react-spectrum/s2/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2024 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 {Accordion, AccordionContext} from './Accordion';\nexport {ActionButton, ActionButtonContext} from './ActionButton';\nexport {ActionMenu, ActionMenuContext} from './ActionMenu';\nexport {AlertDialog} from './AlertDialog';\nexport {Avatar, AvatarContext} from './Avatar';\nexport {AvatarGroup, AvatarGroupContext} from './AvatarGroup';\nexport {Badge, BadgeContext} from './Badge';\nexport {Breadcrumbs, Breadcrumb, BreadcrumbsContext} from './Breadcrumbs';\nexport {Button, LinkButton, ButtonContext, LinkButtonContext} from './Button';\nexport {ButtonGroup, ButtonGroupContext} from './ButtonGroup';\nexport {Card, CardPreview, CollectionCardPreview, AssetCard, UserCard, ProductCard, CardContext} from './Card';\nexport {CardView, CardViewContext} from './CardView';\nexport {Checkbox, CheckboxContext} from './Checkbox';\nexport {CheckboxGroup, CheckboxGroupContext} from './CheckboxGroup';\nexport {ColorArea, ColorAreaContext} from './ColorArea';\nexport {ColorField, ColorFieldContext} from './ColorField';\nexport {ColorSlider, ColorSliderContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorWheel, ColorWheelContext} from './ColorWheel';\nexport {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';\nexport {ContextualHelp, ContextualHelpContext} from './ContextualHelp';\nexport {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext, DisclosureTitle} from './Disclosure';\nexport {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';\nexport {Dialog} from './Dialog';\nexport {DialogTrigger} from './DialogTrigger';\nexport {DialogContainer, useDialogContainer} from './DialogContainer';\nexport {Divider, DividerContext} from './Divider';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {Form} from './Form';\nexport {createIcon, IconContext, IllustrationContext} from './Icon';\nexport {IllustratedMessage, IllustratedMessageContext} from './IllustratedMessage';\nexport {Image, ImageContext} from './Image';\nexport {ImageCoordinator} from './ImageCoordinator';\nexport {InlineAlert, InlineAlertContext} from './InlineAlert';\nexport {Link, LinkContext} from './Link';\nexport {MenuItem, MenuTrigger, Menu, MenuSection, SubmenuTrigger, MenuContext} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {NumberField, NumberFieldContext} from './NumberField';\nexport {Picker, PickerItem, PickerSection, PickerContext} from './Picker';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {ProgressCircle, ProgressCircleContext} from './ProgressCircle';\nexport {Provider} from './Provider';\nexport {Radio} from './Radio';\nexport {RadioGroup, RadioGroupContext} from './RadioGroup';\nexport {RangeSlider, RangeSliderContext} from './RangeSlider';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {SegmentedControl, SegmentedControlItem, SegmentedControlContext} from './SegmentedControl';\nexport {Slider, SliderContext} from './Slider';\nexport {Skeleton, useIsSkeleton} from './Skeleton';\nexport {SkeletonCollection} from './SkeletonCollection';\nexport {StatusLight, StatusLightContext} from './StatusLight';\nexport {Switch, SwitchContext} from './Switch';\nexport {TableView, TableHeader, TableBody, Row, Cell, Column, TableContext} from './TableView';\nexport {Tabs, TabList, Tab, TabPanel, TabsContext} from './Tabs';\nexport {TagGroup, Tag, TagGroupContext} from './TagGroup';\nexport {TextArea, TextField, TextAreaContext, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Tooltip, TooltipTrigger} from './Tooltip';\n\nexport {pressScale} from './pressScale';\n\nexport {Collection} from 'react-aria-components';\nexport {FileTrigger} from 'react-aria-components';\n\nexport type {AccordionProps} from './Accordion';\nexport type {ActionButtonProps} from './ActionButton';\nexport type {ActionMenuProps} from './ActionMenu';\nexport type {AlertDialogProps} from './AlertDialog';\nexport type {AvatarProps} from './Avatar';\nexport type {AvatarGroupProps} from './AvatarGroup';\nexport type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';\nexport type {BadgeProps} from './Badge';\nexport type {ButtonProps, LinkButtonProps} from './Button';\nexport type {ButtonGroupProps} from './ButtonGroup';\nexport type {CardProps, CardPreviewProps, AssetCardProps, ProductCardProps, UserCardProps} from './Card';\nexport type {CardViewProps} from './CardView';\nexport type {CheckboxProps} from './Checkbox';\nexport type {CheckboxGroupProps} from './CheckboxGroup';\nexport type {ColorAreaProps} from './ColorArea';\nexport type {ColorFieldProps} from './ColorField';\nexport type {ColorSliderProps} from './ColorSlider';\nexport type {ColorSwatchProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps} from './ColorSwatchPicker';\nexport type {ColorWheelProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxItemProps, ComboBoxSectionProps} from './ComboBox';\nexport type {DialogProps} from './Dialog';\nexport type {DialogContainerProps, DialogContainerValue} from './DialogContainer';\nexport type {DialogTriggerProps} from './DialogTrigger';\nexport type {DisclosureProps, DisclosurePanelProps} from './Disclosure';\nexport type {DividerProps} from './Divider';\nexport type {DropZoneProps} from './DropZone';\nexport type {FormProps} from './Form';\nexport type {IconProps, IconContextValue} from './Icon';\nexport type {InlineAlertProps} from './InlineAlert';\nexport type {ImageProps} from './Image';\nexport type {ImageCoordinatorProps} from './ImageCoordinator';\nexport type {LinkProps} from './Link';\nexport type {MenuTriggerProps, MenuProps, MenuItemProps, MenuSectionProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps} from './Meter';\nexport type {PickerProps, PickerItemProps, PickerSectionProps} from './Picker';\nexport type {ProgressBarProps} from './ProgressBar';\nexport type {ProgressCircleProps} from './ProgressCircle';\nexport type {ProviderProps} from './Provider';\nexport type {RadioProps} from './Radio';\nexport type {RadioGroupProps} from './RadioGroup';\nexport type {SearchFieldProps} from './SearchField';\nexport type {SegmentedControlProps, SegmentedControlItemProps} from './SegmentedControl';\nexport type {SliderProps} from './Slider';\nexport type {RangeSliderProps} from './RangeSlider';\nexport type {SkeletonProps} from './Skeleton';\nexport type {SkeletonCollectionProps} from './SkeletonCollection';\nexport type {StatusLightProps} from './StatusLight';\nexport type {SwitchProps} from './Switch';\nexport type {TableViewProps, TableHeaderProps, TableBodyProps, RowProps, CellProps, ColumnProps} from './TableView';\nexport type {TabsProps, TabProps, TabListProps, TabPanelProps} from './Tabs';\nexport type {TagGroupProps, TagProps} from './TagGroup';\nexport type {TextFieldProps, TextAreaProps} from './TextField';\nexport type {ToggleButtonProps} from './ToggleButton';\nexport type {TooltipProps} from './Tooltip';\nexport type {FileTriggerProps, TooltipTriggerComponentProps as TooltipTriggerProps} from 'react-aria-components';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-spectrum/s2",
3
- "version": "3.0.0-nightly-e1b72a79f-241017",
3
+ "version": "3.0.0-nightly-0ddbe6f95-241019",
4
4
  "description": "Spectrum 2 UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -56,23 +56,23 @@
56
56
  "src"
57
57
  ],
58
58
  "dependencies": {
59
- "@react-aria/collections": "3.0.0-nightly-e1b72a79f-241017",
60
- "@react-aria/i18n": "^3.0.0-nightly-e1b72a79f-241017",
61
- "@react-aria/interactions": "^3.0.0-nightly-e1b72a79f-241017",
62
- "@react-aria/utils": "^3.0.0-nightly-e1b72a79f-241017",
63
- "@react-spectrum/utils": "^3.0.0-nightly-e1b72a79f-241017",
64
- "@react-stately/layout": "^3.0.0-nightly-e1b72a79f-241017",
65
- "@react-stately/virtualizer": "^3.0.0-nightly-e1b72a79f-241017",
66
- "@react-types/color": "^3.0.0-nightly-e1b72a79f-241017",
67
- "@react-types/dialog": "^3.0.0-nightly-e1b72a79f-241017",
68
- "@react-types/grid": "^3.0.0-nightly-e1b72a79f-241017",
69
- "@react-types/provider": "^3.0.0-nightly-e1b72a79f-241017",
70
- "@react-types/shared": "^3.0.0-nightly-e1b72a79f-241017",
71
- "@react-types/table": "^3.0.0-nightly-e1b72a79f-241017",
72
- "@react-types/textfield": "^3.0.0-nightly-e1b72a79f-241017",
59
+ "@react-aria/collections": "3.0.0-nightly-0ddbe6f95-241019",
60
+ "@react-aria/i18n": "^3.0.0-nightly-0ddbe6f95-241019",
61
+ "@react-aria/interactions": "^3.0.0-nightly-0ddbe6f95-241019",
62
+ "@react-aria/utils": "^3.0.0-nightly-0ddbe6f95-241019",
63
+ "@react-spectrum/utils": "^3.0.0-nightly-0ddbe6f95-241019",
64
+ "@react-stately/layout": "^3.0.0-nightly-0ddbe6f95-241019",
65
+ "@react-stately/virtualizer": "^3.0.0-nightly-0ddbe6f95-241019",
66
+ "@react-types/color": "^3.0.0-nightly-0ddbe6f95-241019",
67
+ "@react-types/dialog": "^3.0.0-nightly-0ddbe6f95-241019",
68
+ "@react-types/grid": "^3.0.0-nightly-0ddbe6f95-241019",
69
+ "@react-types/provider": "^3.0.0-nightly-0ddbe6f95-241019",
70
+ "@react-types/shared": "^3.0.0-nightly-0ddbe6f95-241019",
71
+ "@react-types/table": "^3.0.0-nightly-0ddbe6f95-241019",
72
+ "@react-types/textfield": "^3.0.0-nightly-0ddbe6f95-241019",
73
73
  "csstype": "^3.0.2",
74
- "react-aria": "^3.0.0-nightly-e1b72a79f-241017",
75
- "react-aria-components": "^3.0.0-nightly-e1b72a79f-241017"
74
+ "react-aria": "^3.0.0-nightly-0ddbe6f95-241019",
75
+ "react-aria-components": "^3.0.0-nightly-0ddbe6f95-241019"
76
76
  },
77
77
  "peerDependencies": {
78
78
  "react": "^18.0.0 || ^19.0.0",
@@ -10,7 +10,8 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
- import {AriaLabelingProps, DOMProps, DOMRef, DOMRefValue} from '@react-types/shared';
13
+ import {ActionButtonContext} from './ActionButton';
14
+ import {AriaLabelingProps, DOMProps, DOMRef, DOMRefValue, forwardRefType} from '@react-types/shared';
14
15
  import {Button, ContextValue, DisclosureStateContext, Heading, Provider, UNSTABLE_Disclosure as RACDisclosure, UNSTABLE_DisclosurePanel as RACDisclosurePanel, DisclosurePanelProps as RACDisclosurePanelProps, DisclosureProps as RACDisclosureProps, useLocale, useSlottedContext} from 'react-aria-components';
15
16
  import {CenterBaseline} from './CenterBaseline';
16
17
  import {centerPadding, getAllowedOverrides, StyleProps, UnsafeStyles} from './style-utils' with { type: 'macro' };
@@ -93,7 +94,7 @@ function Disclosure(props: DisclosureProps, ref: DOMRef<HTMLDivElement>) {
93
94
  let _Disclosure = forwardRef(Disclosure);
94
95
  export {_Disclosure as Disclosure};
95
96
 
96
- export interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {
97
+ export interface DisclosureTitleProps extends UnsafeStyles, DOMProps {
97
98
  /** The heading level of the disclosure header.
98
99
  *
99
100
  * @default 3
@@ -103,8 +104,13 @@ export interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {
103
104
  children: React.ReactNode
104
105
  }
105
106
 
107
+ interface DisclosureHeaderProps extends UnsafeStyles, DOMProps {
108
+ children: React.ReactNode
109
+ }
110
+
106
111
  const headingStyle = style({
107
- margin: 0
112
+ margin: 0,
113
+ flexGrow: 1
108
114
  });
109
115
 
110
116
  const buttonStyles = style({
@@ -195,7 +201,52 @@ const chevronStyles = style({
195
201
  flexShrink: 0
196
202
  });
197
203
 
198
- function DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {
204
+ const InternalDisclosureHeader = createContext<{} | null>(null);
205
+
206
+ function DisclosureHeaderWithForwardRef(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivElement>) {
207
+ let {
208
+ UNSAFE_className,
209
+ UNSAFE_style,
210
+ children
211
+ } = props;
212
+ let domRef = useDOMRef(ref);
213
+ let {size, isQuiet, density} = useSlottedContext(DisclosureContext)!;
214
+
215
+ let mapSize = {
216
+ S: 'XS',
217
+ M: 'S',
218
+ L: 'M',
219
+ XL: 'L'
220
+ };
221
+
222
+ // maps to one size smaller in the compact density to ensure there is space between the top and bottom of the action button and container
223
+ let newSize : 'XS' | 'S' | 'M' | 'L' | 'XL' | undefined = size;
224
+ if (density === 'compact') {
225
+ newSize = mapSize[size ?? 'M'] as 'XS' | 'S' | 'M' | 'L';
226
+ }
227
+
228
+ return (
229
+ <Provider
230
+ values={[
231
+ [ActionButtonContext, {size: newSize, isQuiet}],
232
+ [InternalDisclosureHeader, {}]
233
+ ]}>
234
+ <div
235
+ style={UNSAFE_style}
236
+ className={(UNSAFE_className ?? '') + style({display: 'flex', alignItems: 'center', gap: 4})}
237
+ ref={domRef}>
238
+ {children}
239
+ </div>
240
+ </Provider>
241
+ );
242
+ }
243
+
244
+ /**
245
+ * A wrapper element for the disclosure title that can contain other elements not part of the trigger.
246
+ */
247
+ export const DisclosureHeader = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosureHeaderWithForwardRef);
248
+
249
+ function DisclosureTitle(props: DisclosureTitleProps, ref: DOMRef<HTMLDivElement>) {
199
250
  let {
200
251
  level = 3,
201
252
  UNSAFE_style,
@@ -208,7 +259,8 @@ function DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivEleme
208
259
  let {isExpanded} = useContext(DisclosureStateContext)!;
209
260
  let {size, density, isQuiet} = useSlottedContext(DisclosureContext)!;
210
261
  let isRTL = direction === 'rtl';
211
- return (
262
+
263
+ let buttonTrigger = (
212
264
  <Heading
213
265
  {...domProps}
214
266
  level={level}
@@ -223,13 +275,23 @@ function DisclosureHeader(props: DisclosureHeaderProps, ref: DOMRef<HTMLDivEleme
223
275
  </Button>
224
276
  </Heading>
225
277
  );
278
+ let ctx = useContext(InternalDisclosureHeader);
279
+ if (ctx) {
280
+ return buttonTrigger;
281
+ }
282
+
283
+ return (
284
+ <DisclosureHeader>
285
+ {buttonTrigger}
286
+ </DisclosureHeader>
287
+ );
226
288
  }
227
289
 
228
290
  /**
229
- * A header for a disclosure. Contains a heading and a trigger button to expand/collapse the panel.
291
+ * A disclosure title consisting of a heading and a trigger button to expand/collapse the panel.
230
292
  */
231
- let _DisclosureHeader = forwardRef(DisclosureHeader);
232
- export {_DisclosureHeader as DisclosureHeader};
293
+ let _DisclosureTitle = forwardRef(DisclosureTitle);
294
+ export {_DisclosureTitle as DisclosureTitle};
233
295
 
234
296
  export interface DisclosurePanelProps extends Omit<RACDisclosurePanelProps, 'className' | 'style' | 'children'>, UnsafeStyles, DOMProps, AriaLabelingProps {
235
297
  children: React.ReactNode
package/src/index.ts CHANGED
@@ -32,7 +32,7 @@ export {ColorSwatchPicker, ColorSwatchPickerContext} from './ColorSwatchPicker';
32
32
  export {ColorWheel, ColorWheelContext} from './ColorWheel';
33
33
  export {ComboBox, ComboBoxItem, ComboBoxSection, ComboBoxContext} from './ComboBox';
34
34
  export {ContextualHelp, ContextualHelpContext} from './ContextualHelp';
35
- export {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext} from './Disclosure';
35
+ export {DisclosureHeader, Disclosure, DisclosurePanel, DisclosureContext, DisclosureTitle} from './Disclosure';
36
36
  export {Heading, HeadingContext, Header, HeaderContext, Content, ContentContext, Footer, FooterContext, Text, TextContext, Keyboard, KeyboardContext} from './Content';
37
37
  export {Dialog} from './Dialog';
38
38
  export {DialogTrigger} from './DialogTrigger';
package/src/types.ts CHANGED
@@ -13,6 +13,7 @@
13
13
  import React from 'react';
14
14
 
15
15
  // Override forwardRef types so generics work.
16
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
16
17
  declare function forwardRef<T, P = {}>(
17
18
  render: (props: P, ref: React.Ref<T>) => React.ReactElement | null
18
19
  ): (props: P & React.RefAttributes<T>) => React.ReactElement | null;