react-aria-components 3.0.0-nightly-5ae234603-240925 → 3.0.0-nightly-d57bd8d90-240927

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 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AAkBM,MAAM,0DAAqB,CAAA,GAAA,0BAAY,EAAyD;AAEvG,SAAS,kCAA8B,KAA0B,EAAE,GAAmC;IACpG,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,uBAAS,EAAE,CAAA,GAAA,mDAAwB;IAC1D,IAAI,YAAC,QAAQ,EAAC,GAAG,CAAA,GAAA,+BAAa,EAAE;IAEhC,qBACE,0DAAC,CAAA,GAAA,6CAAgB;QAAE,uBAAS,0DAAC,CAAA,GAAA,sCAAS,GAAM;OACzC,CAAA;YAMc;eALb,0DAAC;YACC,KAAK;YACJ,GAAG,QAAQ;YACZ,MAAM,MAAM,IAAI,IAAI;YACpB,OAAO,MAAM,KAAK;YAClB,WAAW,CAAA,mBAAA,MAAM,SAAS,cAAf,8BAAA,mBAAmB;yBAC9B,0DAAC,0CAAmB,QAAQ;YAAC,OAAO;yBAClC,0DAAC;YAAe,YAAY;;IAE5B;AAIZ;AAEA;;CAEC,GACD,MAAM,2CAA6B,AAAd,WAAW,GAAI,CAAA,GAAA,uBAAS,EAAqB;AAwB3D,MAAM,4CAAa,WAAW,GAAG,CAAA,GAAA,+CAAkB,EAAE,QAAQ,SAAS,WAAW,KAAsB,EAAE,GAAgC,EAAE,IAAmB;IACnK,sGAAsG;IACtG,IAAI,YAAY,KAAK,OAAO,IAAI;IAChC,IAAI,cAAC,UAAU,YAAE,QAAQ,EAAC,GAAG,CAAA,GAAA,2CAAgB,EAAE;IAC/C,IAAI,YAAY;QACd,gBAAgB,YAAY,SAAS;QACrC,YAAY,cAAc;QAC1B,SAAS,IAAM,qBAAA,+BAAA,SAAW,KAAK,GAAG;IACpC;IAEA,IAAI,cAAc,CAAA,GAAA,wCAAa,EAAE;QAC/B,GAAG,KAAK,KAAK;QACb,UAAU,KAAK,QAAQ;QACvB,QAAQ;YAAC,YAAY,cAAc;uBAAW;QAAS;QACvD,kBAAkB;IACpB;IAEA,qBACE,0DAAC;QACE,GAAG,CAAA,GAAA,oCAAa,EAAE,MAAa;QAC/B,GAAG,WAAW;QACf,KAAK;QACL,iBAAe,cAAc,aAAa;QAC1C,gBAAc,aAAa;qBAC3B,0DAAC,CAAA,GAAA,qCAAU,EAAE,QAAQ;QAAC,OAAO;OAC1B,YAAY,QAAQ;AAI7B","sources":["packages/react-aria-components/src/Breadcrumbs.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport {AriaBreadcrumbsProps, useBreadcrumbs} from 'react-aria';\nimport {Collection, CollectionBuilder, createLeafComponent} from '@react-aria/collections';\nimport {CollectionProps, CollectionRendererContext} from './Collection';\nimport {ContextValue, RenderProps, SlotProps, StyleProps, useContextProps, useRenderProps, useSlottedContext} from './utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {forwardRefType, Key} from '@react-types/shared';\nimport {LinkContext} from './Link';\nimport {Node} from 'react-stately';\nimport React, {createContext, ForwardedRef, forwardRef, useContext} from 'react';\n\nexport interface BreadcrumbsProps<T> extends Omit<CollectionProps<T>, 'disabledKeys'>, AriaBreadcrumbsProps, StyleProps, SlotProps {\n /** Whether the breadcrumbs are disabled. */\n isDisabled?: boolean,\n /** Handler that is called when a breadcrumb is clicked. */\n onAction?: (key: Key) => void\n}\n\nexport const BreadcrumbsContext = createContext<ContextValue<BreadcrumbsProps<any>, HTMLOListElement>>(null);\n\nfunction Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>, ref: ForwardedRef<HTMLOListElement>) {\n [props, ref] = useContextProps(props, ref, BreadcrumbsContext);\n let {CollectionRoot} = useContext(CollectionRendererContext);\n let {navProps} = useBreadcrumbs(props);\n\n return (\n <CollectionBuilder content={<Collection {...props} />}>\n {collection => (\n <ol\n ref={ref}\n {...navProps}\n slot={props.slot || undefined}\n style={props.style}\n className={props.className ?? 'react-aria-Breadcrumbs'}>\n <BreadcrumbsContext.Provider value={props}>\n <CollectionRoot collection={collection} />\n </BreadcrumbsContext.Provider>\n </ol>\n )}\n </CollectionBuilder>\n );\n}\n\n/**\n * Breadcrumbs display a hierarchy of links to the current page or resource in an application.\n */\nconst _Breadcrumbs = /*#__PURE__*/ (forwardRef as forwardRefType)(Breadcrumbs);\nexport {_Breadcrumbs as Breadcrumbs};\n\nexport interface BreadcrumbRenderProps {\n /**\n * Whether the breadcrumb is for the current page.\n * @selector [data-current]\n */\n isCurrent: boolean,\n /**\n * Whether the breadcrumb is disabled.\n * @selector [data-current]\n */\n isDisabled: boolean\n}\n\nexport interface BreadcrumbProps extends RenderProps<BreadcrumbRenderProps> {\n /** A unique id for the breadcrumb, which will be passed to `onAction` when the breadcrumb is pressed. */\n id?: Key\n}\n\n/**\n * A Breadcrumb represents an individual item in a `<Breadcrumbs>` list.\n */\nexport const Breadcrumb = /*#__PURE__*/ createLeafComponent('item', function Breadcrumb(props: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>, node: Node<unknown>) {\n // Recreating useBreadcrumbItem because we want to use composition instead of having the link builtin.\n let isCurrent = node.nextKey == null;\n let {isDisabled, onAction} = useSlottedContext(BreadcrumbsContext)!;\n let linkProps = {\n 'aria-current': isCurrent ? 'page' : null,\n isDisabled: isDisabled || isCurrent,\n onPress: () => onAction?.(node.key)\n };\n\n let renderProps = useRenderProps({\n ...node.props,\n children: node.rendered,\n values: {isDisabled: isDisabled || isCurrent, isCurrent},\n defaultClassName: 'react-aria-Breadcrumb'\n });\n\n return (\n <li\n {...filterDOMProps(props as any)}\n {...renderProps}\n ref={ref}\n data-disabled={isDisabled || isCurrent || undefined}\n data-current={isCurrent || undefined}>\n <LinkContext.Provider value={linkProps}>\n {renderProps.children}\n </LinkContext.Provider>\n </li>\n );\n});\n"],"names":[],"version":3,"file":"Breadcrumbs.main.js.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AAkBM,MAAM,0DAAqB,CAAA,GAAA,0BAAY,EAAyD;AAEvG,SAAS,kCAA8B,KAA0B,EAAE,GAAmC;IACpG,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,uBAAS,EAAE,CAAA,GAAA,mDAAwB;IAC1D,IAAI,YAAC,QAAQ,EAAC,GAAG,CAAA,GAAA,+BAAa,EAAE;IAEhC,qBACE,0DAAC,CAAA,GAAA,6CAAgB;QAAE,uBAAS,0DAAC,CAAA,GAAA,sCAAS,GAAM;OACzC,CAAA;YAMc;eALb,0DAAC;YACC,KAAK;YACJ,GAAG,QAAQ;YACZ,MAAM,MAAM,IAAI,IAAI;YACpB,OAAO,MAAM,KAAK;YAClB,WAAW,CAAA,mBAAA,MAAM,SAAS,cAAf,8BAAA,mBAAmB;yBAC9B,0DAAC,0CAAmB,QAAQ;YAAC,OAAO;yBAClC,0DAAC;YAAe,YAAY;;IAE5B;AAIZ;AAEA;;CAEC,GACD,MAAM,2CAA6B,AAAd,WAAW,GAAI,CAAA,GAAA,uBAAS,EAAqB;AAwB3D,MAAM,4CAAa,WAAW,GAAG,CAAA,GAAA,+CAAkB,EAAE,QAAQ,SAAS,WAAW,KAAsB,EAAE,GAAgC,EAAE,IAAmB;IACnK,sGAAsG;IACtG,IAAI,YAAY,KAAK,OAAO,IAAI;IAChC,IAAI,cAAC,UAAU,YAAE,QAAQ,EAAC,GAAG,CAAA,GAAA,2CAAgB,EAAE;IAC/C,IAAI,YAAY;QACd,gBAAgB,YAAY,SAAS;QACrC,YAAY,cAAc;QAC1B,SAAS,IAAM,qBAAA,+BAAA,SAAW,KAAK,GAAG;IACpC;IAEA,IAAI,cAAc,CAAA,GAAA,wCAAa,EAAE;QAC/B,GAAG,KAAK,KAAK;QACb,UAAU,KAAK,QAAQ;QACvB,QAAQ;YAAC,YAAY,cAAc;uBAAW;QAAS;QACvD,kBAAkB;IACpB;IAEA,qBACE,0DAAC;QACE,GAAG,CAAA,GAAA,oCAAa,EAAE,MAAa;QAC/B,GAAG,WAAW;QACf,KAAK;QACL,iBAAe,cAAc,aAAa;QAC1C,gBAAc,aAAa;qBAC3B,0DAAC,CAAA,GAAA,qCAAU,EAAE,QAAQ;QAAC,OAAO;OAC1B,YAAY,QAAQ;AAI7B","sources":["packages/react-aria-components/src/Breadcrumbs.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport {AriaBreadcrumbsProps, useBreadcrumbs} from 'react-aria';\nimport {Collection, CollectionBuilder, createLeafComponent} from '@react-aria/collections';\nimport {CollectionProps, CollectionRendererContext} from './Collection';\nimport {ContextValue, RenderProps, SlotProps, StyleProps, useContextProps, useRenderProps, useSlottedContext} from './utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {forwardRefType, Key} from '@react-types/shared';\nimport {LinkContext} from './Link';\nimport {Node} from 'react-stately';\nimport React, {createContext, ForwardedRef, forwardRef, useContext} from 'react';\n\nexport interface BreadcrumbsProps<T> extends Omit<CollectionProps<T>, 'disabledKeys'>, AriaBreadcrumbsProps, StyleProps, SlotProps {\n /** Whether the breadcrumbs are disabled. */\n isDisabled?: boolean,\n /** Handler that is called when a breadcrumb is clicked. */\n onAction?: (key: Key) => void\n}\n\nexport const BreadcrumbsContext = createContext<ContextValue<BreadcrumbsProps<any>, HTMLOListElement>>(null);\n\nfunction Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>, ref: ForwardedRef<HTMLOListElement>) {\n [props, ref] = useContextProps(props, ref, BreadcrumbsContext);\n let {CollectionRoot} = useContext(CollectionRendererContext);\n let {navProps} = useBreadcrumbs(props);\n\n return (\n <CollectionBuilder content={<Collection {...props} />}>\n {collection => (\n <ol\n ref={ref}\n {...navProps}\n slot={props.slot || undefined}\n style={props.style}\n className={props.className ?? 'react-aria-Breadcrumbs'}>\n <BreadcrumbsContext.Provider value={props}>\n <CollectionRoot collection={collection} />\n </BreadcrumbsContext.Provider>\n </ol>\n )}\n </CollectionBuilder>\n );\n}\n\n/**\n * Breadcrumbs display a hierarchy of links to the current page or resource in an application.\n */\nconst _Breadcrumbs = /*#__PURE__*/ (forwardRef as forwardRefType)(Breadcrumbs);\nexport {_Breadcrumbs as Breadcrumbs};\n\nexport interface BreadcrumbRenderProps {\n /**\n * Whether the breadcrumb is for the current page.\n * @selector [data-current]\n */\n isCurrent: boolean,\n /**\n * Whether the breadcrumb is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean\n}\n\nexport interface BreadcrumbProps extends RenderProps<BreadcrumbRenderProps> {\n /** A unique id for the breadcrumb, which will be passed to `onAction` when the breadcrumb is pressed. */\n id?: Key\n}\n\n/**\n * A Breadcrumb represents an individual item in a `<Breadcrumbs>` list.\n */\nexport const Breadcrumb = /*#__PURE__*/ createLeafComponent('item', function Breadcrumb(props: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>, node: Node<unknown>) {\n // Recreating useBreadcrumbItem because we want to use composition instead of having the link builtin.\n let isCurrent = node.nextKey == null;\n let {isDisabled, onAction} = useSlottedContext(BreadcrumbsContext)!;\n let linkProps = {\n 'aria-current': isCurrent ? 'page' : null,\n isDisabled: isDisabled || isCurrent,\n onPress: () => onAction?.(node.key)\n };\n\n let renderProps = useRenderProps({\n ...node.props,\n children: node.rendered,\n values: {isDisabled: isDisabled || isCurrent, isCurrent},\n defaultClassName: 'react-aria-Breadcrumb'\n });\n\n return (\n <li\n {...filterDOMProps(props as any)}\n {...renderProps}\n ref={ref}\n data-disabled={isDisabled || isCurrent || undefined}\n data-current={isCurrent || undefined}>\n <LinkContext.Provider value={linkProps}>\n {renderProps.children}\n </LinkContext.Provider>\n </li>\n );\n});\n"],"names":[],"version":3,"file":"Breadcrumbs.main.js.map"}
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AAkBM,MAAM,0DAAqB,CAAA,GAAA,oBAAY,EAAyD;AAEvG,SAAS,kCAA8B,KAA0B,EAAE,GAAmC;IACpG,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,iBAAS,EAAE,CAAA,GAAA,yCAAwB;IAC1D,IAAI,YAAC,QAAQ,EAAC,GAAG,CAAA,GAAA,qBAAa,EAAE;IAEhC,qBACE,gCAAC,CAAA,GAAA,wBAAgB;QAAE,uBAAS,gCAAC,CAAA,GAAA,iBAAS,GAAM;OACzC,CAAA;YAMc;eALb,gCAAC;YACC,KAAK;YACJ,GAAG,QAAQ;YACZ,MAAM,MAAM,IAAI,IAAI;YACpB,OAAO,MAAM,KAAK;YAClB,WAAW,CAAA,mBAAA,MAAM,SAAS,cAAf,8BAAA,mBAAmB;yBAC9B,gCAAC,0CAAmB,QAAQ;YAAC,OAAO;yBAClC,gCAAC;YAAe,YAAY;;IAE5B;AAIZ;AAEA;;CAEC,GACD,MAAM,2CAA6B,AAAd,WAAW,GAAI,CAAA,GAAA,iBAAS,EAAqB;AAwB3D,MAAM,4CAAa,WAAW,GAAG,CAAA,GAAA,0BAAkB,EAAE,QAAQ,SAAS,WAAW,KAAsB,EAAE,GAAgC,EAAE,IAAmB;IACnK,sGAAsG;IACtG,IAAI,YAAY,KAAK,OAAO,IAAI;IAChC,IAAI,cAAC,UAAU,YAAE,QAAQ,EAAC,GAAG,CAAA,GAAA,yCAAgB,EAAE;IAC/C,IAAI,YAAY;QACd,gBAAgB,YAAY,SAAS;QACrC,YAAY,cAAc;QAC1B,SAAS,IAAM,qBAAA,+BAAA,SAAW,KAAK,GAAG;IACpC;IAEA,IAAI,cAAc,CAAA,GAAA,uCAAa,EAAE;QAC/B,GAAG,KAAK,KAAK;QACb,UAAU,KAAK,QAAQ;QACvB,QAAQ;YAAC,YAAY,cAAc;uBAAW;QAAS;QACvD,kBAAkB;IACpB;IAEA,qBACE,gCAAC;QACE,GAAG,CAAA,GAAA,qBAAa,EAAE,MAAa;QAC/B,GAAG,WAAW;QACf,KAAK;QACL,iBAAe,cAAc,aAAa;QAC1C,gBAAc,aAAa;qBAC3B,gCAAC,CAAA,GAAA,yCAAU,EAAE,QAAQ;QAAC,OAAO;OAC1B,YAAY,QAAQ;AAI7B","sources":["packages/react-aria-components/src/Breadcrumbs.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport {AriaBreadcrumbsProps, useBreadcrumbs} from 'react-aria';\nimport {Collection, CollectionBuilder, createLeafComponent} from '@react-aria/collections';\nimport {CollectionProps, CollectionRendererContext} from './Collection';\nimport {ContextValue, RenderProps, SlotProps, StyleProps, useContextProps, useRenderProps, useSlottedContext} from './utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {forwardRefType, Key} from '@react-types/shared';\nimport {LinkContext} from './Link';\nimport {Node} from 'react-stately';\nimport React, {createContext, ForwardedRef, forwardRef, useContext} from 'react';\n\nexport interface BreadcrumbsProps<T> extends Omit<CollectionProps<T>, 'disabledKeys'>, AriaBreadcrumbsProps, StyleProps, SlotProps {\n /** Whether the breadcrumbs are disabled. */\n isDisabled?: boolean,\n /** Handler that is called when a breadcrumb is clicked. */\n onAction?: (key: Key) => void\n}\n\nexport const BreadcrumbsContext = createContext<ContextValue<BreadcrumbsProps<any>, HTMLOListElement>>(null);\n\nfunction Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>, ref: ForwardedRef<HTMLOListElement>) {\n [props, ref] = useContextProps(props, ref, BreadcrumbsContext);\n let {CollectionRoot} = useContext(CollectionRendererContext);\n let {navProps} = useBreadcrumbs(props);\n\n return (\n <CollectionBuilder content={<Collection {...props} />}>\n {collection => (\n <ol\n ref={ref}\n {...navProps}\n slot={props.slot || undefined}\n style={props.style}\n className={props.className ?? 'react-aria-Breadcrumbs'}>\n <BreadcrumbsContext.Provider value={props}>\n <CollectionRoot collection={collection} />\n </BreadcrumbsContext.Provider>\n </ol>\n )}\n </CollectionBuilder>\n );\n}\n\n/**\n * Breadcrumbs display a hierarchy of links to the current page or resource in an application.\n */\nconst _Breadcrumbs = /*#__PURE__*/ (forwardRef as forwardRefType)(Breadcrumbs);\nexport {_Breadcrumbs as Breadcrumbs};\n\nexport interface BreadcrumbRenderProps {\n /**\n * Whether the breadcrumb is for the current page.\n * @selector [data-current]\n */\n isCurrent: boolean,\n /**\n * Whether the breadcrumb is disabled.\n * @selector [data-current]\n */\n isDisabled: boolean\n}\n\nexport interface BreadcrumbProps extends RenderProps<BreadcrumbRenderProps> {\n /** A unique id for the breadcrumb, which will be passed to `onAction` when the breadcrumb is pressed. */\n id?: Key\n}\n\n/**\n * A Breadcrumb represents an individual item in a `<Breadcrumbs>` list.\n */\nexport const Breadcrumb = /*#__PURE__*/ createLeafComponent('item', function Breadcrumb(props: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>, node: Node<unknown>) {\n // Recreating useBreadcrumbItem because we want to use composition instead of having the link builtin.\n let isCurrent = node.nextKey == null;\n let {isDisabled, onAction} = useSlottedContext(BreadcrumbsContext)!;\n let linkProps = {\n 'aria-current': isCurrent ? 'page' : null,\n isDisabled: isDisabled || isCurrent,\n onPress: () => onAction?.(node.key)\n };\n\n let renderProps = useRenderProps({\n ...node.props,\n children: node.rendered,\n values: {isDisabled: isDisabled || isCurrent, isCurrent},\n defaultClassName: 'react-aria-Breadcrumb'\n });\n\n return (\n <li\n {...filterDOMProps(props as any)}\n {...renderProps}\n ref={ref}\n data-disabled={isDisabled || isCurrent || undefined}\n data-current={isCurrent || undefined}>\n <LinkContext.Provider value={linkProps}>\n {renderProps.children}\n </LinkContext.Provider>\n </li>\n );\n});\n"],"names":[],"version":3,"file":"Breadcrumbs.module.js.map"}
1
+ {"mappings":";;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AAkBM,MAAM,0DAAqB,CAAA,GAAA,oBAAY,EAAyD;AAEvG,SAAS,kCAA8B,KAA0B,EAAE,GAAmC;IACpG,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,IAAI,kBAAC,cAAc,EAAC,GAAG,CAAA,GAAA,iBAAS,EAAE,CAAA,GAAA,yCAAwB;IAC1D,IAAI,YAAC,QAAQ,EAAC,GAAG,CAAA,GAAA,qBAAa,EAAE;IAEhC,qBACE,gCAAC,CAAA,GAAA,wBAAgB;QAAE,uBAAS,gCAAC,CAAA,GAAA,iBAAS,GAAM;OACzC,CAAA;YAMc;eALb,gCAAC;YACC,KAAK;YACJ,GAAG,QAAQ;YACZ,MAAM,MAAM,IAAI,IAAI;YACpB,OAAO,MAAM,KAAK;YAClB,WAAW,CAAA,mBAAA,MAAM,SAAS,cAAf,8BAAA,mBAAmB;yBAC9B,gCAAC,0CAAmB,QAAQ;YAAC,OAAO;yBAClC,gCAAC;YAAe,YAAY;;IAE5B;AAIZ;AAEA;;CAEC,GACD,MAAM,2CAA6B,AAAd,WAAW,GAAI,CAAA,GAAA,iBAAS,EAAqB;AAwB3D,MAAM,4CAAa,WAAW,GAAG,CAAA,GAAA,0BAAkB,EAAE,QAAQ,SAAS,WAAW,KAAsB,EAAE,GAAgC,EAAE,IAAmB;IACnK,sGAAsG;IACtG,IAAI,YAAY,KAAK,OAAO,IAAI;IAChC,IAAI,cAAC,UAAU,YAAE,QAAQ,EAAC,GAAG,CAAA,GAAA,yCAAgB,EAAE;IAC/C,IAAI,YAAY;QACd,gBAAgB,YAAY,SAAS;QACrC,YAAY,cAAc;QAC1B,SAAS,IAAM,qBAAA,+BAAA,SAAW,KAAK,GAAG;IACpC;IAEA,IAAI,cAAc,CAAA,GAAA,uCAAa,EAAE;QAC/B,GAAG,KAAK,KAAK;QACb,UAAU,KAAK,QAAQ;QACvB,QAAQ;YAAC,YAAY,cAAc;uBAAW;QAAS;QACvD,kBAAkB;IACpB;IAEA,qBACE,gCAAC;QACE,GAAG,CAAA,GAAA,qBAAa,EAAE,MAAa;QAC/B,GAAG,WAAW;QACf,KAAK;QACL,iBAAe,cAAc,aAAa;QAC1C,gBAAc,aAAa;qBAC3B,gCAAC,CAAA,GAAA,yCAAU,EAAE,QAAQ;QAAC,OAAO;OAC1B,YAAY,QAAQ;AAI7B","sources":["packages/react-aria-components/src/Breadcrumbs.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport {AriaBreadcrumbsProps, useBreadcrumbs} from 'react-aria';\nimport {Collection, CollectionBuilder, createLeafComponent} from '@react-aria/collections';\nimport {CollectionProps, CollectionRendererContext} from './Collection';\nimport {ContextValue, RenderProps, SlotProps, StyleProps, useContextProps, useRenderProps, useSlottedContext} from './utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {forwardRefType, Key} from '@react-types/shared';\nimport {LinkContext} from './Link';\nimport {Node} from 'react-stately';\nimport React, {createContext, ForwardedRef, forwardRef, useContext} from 'react';\n\nexport interface BreadcrumbsProps<T> extends Omit<CollectionProps<T>, 'disabledKeys'>, AriaBreadcrumbsProps, StyleProps, SlotProps {\n /** Whether the breadcrumbs are disabled. */\n isDisabled?: boolean,\n /** Handler that is called when a breadcrumb is clicked. */\n onAction?: (key: Key) => void\n}\n\nexport const BreadcrumbsContext = createContext<ContextValue<BreadcrumbsProps<any>, HTMLOListElement>>(null);\n\nfunction Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>, ref: ForwardedRef<HTMLOListElement>) {\n [props, ref] = useContextProps(props, ref, BreadcrumbsContext);\n let {CollectionRoot} = useContext(CollectionRendererContext);\n let {navProps} = useBreadcrumbs(props);\n\n return (\n <CollectionBuilder content={<Collection {...props} />}>\n {collection => (\n <ol\n ref={ref}\n {...navProps}\n slot={props.slot || undefined}\n style={props.style}\n className={props.className ?? 'react-aria-Breadcrumbs'}>\n <BreadcrumbsContext.Provider value={props}>\n <CollectionRoot collection={collection} />\n </BreadcrumbsContext.Provider>\n </ol>\n )}\n </CollectionBuilder>\n );\n}\n\n/**\n * Breadcrumbs display a hierarchy of links to the current page or resource in an application.\n */\nconst _Breadcrumbs = /*#__PURE__*/ (forwardRef as forwardRefType)(Breadcrumbs);\nexport {_Breadcrumbs as Breadcrumbs};\n\nexport interface BreadcrumbRenderProps {\n /**\n * Whether the breadcrumb is for the current page.\n * @selector [data-current]\n */\n isCurrent: boolean,\n /**\n * Whether the breadcrumb is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean\n}\n\nexport interface BreadcrumbProps extends RenderProps<BreadcrumbRenderProps> {\n /** A unique id for the breadcrumb, which will be passed to `onAction` when the breadcrumb is pressed. */\n id?: Key\n}\n\n/**\n * A Breadcrumb represents an individual item in a `<Breadcrumbs>` list.\n */\nexport const Breadcrumb = /*#__PURE__*/ createLeafComponent('item', function Breadcrumb(props: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>, node: Node<unknown>) {\n // Recreating useBreadcrumbItem because we want to use composition instead of having the link builtin.\n let isCurrent = node.nextKey == null;\n let {isDisabled, onAction} = useSlottedContext(BreadcrumbsContext)!;\n let linkProps = {\n 'aria-current': isCurrent ? 'page' : null,\n isDisabled: isDisabled || isCurrent,\n onPress: () => onAction?.(node.key)\n };\n\n let renderProps = useRenderProps({\n ...node.props,\n children: node.rendered,\n values: {isDisabled: isDisabled || isCurrent, isCurrent},\n defaultClassName: 'react-aria-Breadcrumb'\n });\n\n return (\n <li\n {...filterDOMProps(props as any)}\n {...renderProps}\n ref={ref}\n data-disabled={isDisabled || isCurrent || undefined}\n data-current={isCurrent || undefined}>\n <LinkContext.Provider value={linkProps}>\n {renderProps.children}\n </LinkContext.Provider>\n </li>\n );\n});\n"],"names":[],"version":3,"file":"Breadcrumbs.module.js.map"}
@@ -62,7 +62,7 @@ function $b856e6788a7ea5bf$var$Button(props, ref) {
62
62
  isFocused: isFocused,
63
63
  isFocusVisible: isFocusVisible,
64
64
  isDisabled: props.isDisabled || false,
65
- isPending: isPending
65
+ isPending: isPending !== null && isPending !== void 0 ? isPending : false
66
66
  };
67
67
  let renderProps = (0, $c5ccf687772c0422$exports.useRenderProps)({
68
68
  ...props,
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AA0FD,MAAM,uDAAiC,IAAI,IAAI;IAAC;IAAQ;IAAc;IAAe;IAAc;IAAkB;IAAc;IAAQ;CAAQ;AAE5I,MAAM,0DAAgB,CAAA,GAAA,0BAAY,EAAuD,CAAC;AAEjG,SAAS,6BAAO,KAAkB,EAAE,GAAoC;IACtE,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,QAAQ,0CAAoB;IAC5B,IAAI,MAAM;IACV,IAAI,aAAC,SAAS,EAAC,GAAG;IAClB,IAAI,eAAC,WAAW,aAAE,SAAS,EAAC,GAAG,CAAA,GAAA,0BAAQ,EAAE,OAAO;IAChD,IAAI,cAAC,UAAU,aAAE,SAAS,kBAAE,cAAc,EAAC,GAAG,CAAA,GAAA,6BAAW,EAAE;IAC3D,IAAI,cAAC,UAAU,aAAE,SAAS,EAAC,GAAG,CAAA,GAAA,yBAAO,EAAE;QACrC,GAAG,KAAK;QACR,YAAY,MAAM,UAAU,IAAI;IAClC;IACA,IAAI,eAAe;mBACjB;QACA,WAAW,AAAC,CAAA,IAAI,SAAS,IAAI,SAAQ,KAAM,CAAC;mBAC5C;wBACA;QACA,YAAY,MAAM,UAAU,IAAI;mBAChC;IACF;IAEA,IAAI,cAAc,CAAA,GAAA,wCAAa,EAAE;QAC/B,GAAG,KAAK;QACR,QAAQ;QACR,kBAAkB;IACpB;IAEA,IAAI,WAAW,CAAA,GAAA,sBAAI,EAAE,YAAY,EAAE;IACnC,IAAI,aAAa,CAAA,GAAA,sBAAI;IAErB,IAAI,iBAAiB,WAAW,CAAC,kBAAkB;IACnD,IAAI,WAAW;QACb,uCAAuC;QACvC,uDAAuD;QACvD,IAAI,gBACF,iBAAiB,CAAC,EAAE,eAAe,CAAC,EAAE,WAAW,CAAC;aAC7C,IAAI,WAAW,CAAC,aAAa,EAClC,iBAAiB,CAAC,EAAE,SAAS,CAAC,EAAE,WAAW,CAAC;IAEhD;IAEA,IAAI,aAAa,CAAA,GAAA,mBAAK,EAAE;IACxB,CAAA,GAAA,sBAAQ,EAAE;QACR,IAAI,UAAU;YAAC,mBAAmB,kBAAkB;QAAQ;QAC5D,IAAI,CAAC,WAAW,OAAO,IAAI,aAAa,WACtC,CAAA,GAAA,sCAAO,EAAE,SAAS;aACb,IAAI,WAAW,OAAO,IAAI,aAAa,CAAC,WAC7C,CAAA,GAAA,sCAAO,EAAE,SAAS;QAEpB,WAAW,OAAO,GAAG;IACvB,GAAG;QAAC;QAAW;QAAW;QAAgB;KAAS;IAEnD,qBACE,0DAAC;QACE,GAAG,CAAA,GAAA,oCAAa,EAAE,OAAO;YAAC,WAAW;QAA8B,EAAE;QACrE,GAAG,CAAA,GAAA,2BAAS,EAAE,aAAa,YAAY,WAAW;QAClD,GAAG,WAAW;QACf,IAAI;QACJ,KAAK;QACL,mBAAiB;QACjB,MAAM,MAAM,IAAI,IAAI;QACpB,iBAAe,YAAY,SAAS,WAAW,CAAC,gBAAgB;QAChE,iBAAe,MAAM,UAAU,IAAI;QACnC,gBAAc,aAAa,SAAS,IAAI;QACxC,gBAAc,aAAa;QAC3B,gBAAc,aAAa;QAC3B,gBAAc,aAAa;QAC3B,sBAAoB,kBAAkB;qBACtC,0DAAC,CAAA,GAAA,4CAAiB,EAAE,QAAQ;QAAC,OAAO;YAAC,IAAI;QAAU;OAChD,YAAY,QAAQ;AAI7B;AAEA,SAAS,0CAAoB,KAAK;IAChC,kDAAkD;IAClD,IAAI,MAAM,SAAS,EAAE;QACnB,MAAM,OAAO,GAAG;QAChB,MAAM,YAAY,GAAG;QACrB,MAAM,UAAU,GAAG;QACnB,MAAM,aAAa,GAAG;QACtB,MAAM,SAAS,GAAG;QAClB,MAAM,SAAS,GAAG;QAClB,MAAM,OAAO,GAAG;QAChB,MAAM,OAAO,GAAG;QAChB,MAAM,IAAI,GAAG;IACf;IACA,OAAO;AACT;AAEA;;CAEC,GACD,MAAM,4CAAU,WAAW,GAAG,CAAA,GAAA,mDAAsB,EAAE","sources":["packages/react-aria-components/src/Button.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 {announce} from '@react-aria/live-announcer';\nimport {\n AriaButtonProps,\n HoverEvents,\n mergeProps,\n useButton,\n useFocusRing,\n useHover,\n useId\n} from 'react-aria';\nimport {\n ContextValue,\n RenderProps,\n SlotProps,\n useContextProps,\n useRenderProps\n} from './utils';\nimport {createHideableComponent} from '@react-aria/collections';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProgressBarContext} from './ProgressBar';\nimport React, {createContext, ForwardedRef, useEffect, useRef} from 'react';\n\nexport interface ButtonRenderProps {\n /**\n * Whether the button is currently hovered with a mouse.\n * @selector [data-hovered]\n */\n isHovered: boolean,\n /**\n * Whether the button is currently in a pressed state.\n * @selector [data-pressed]\n */\n isPressed: boolean,\n /**\n * Whether the button is focused, either via a mouse or keyboard.\n * @selector [data-focused]\n */\n isFocused: boolean,\n /**\n * Whether the button is keyboard focused.\n * @selector [data-focus-visible]\n */\n isFocusVisible: boolean,\n /**\n * Whether the button is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * If the button is currently in the `isPending` state.\n * @selector [data-pending]\n */\n isPending?: boolean\n}\n\nexport interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {\n /**\n * The `<form>` element to associate the button with.\n * The value of this attribute must be the id of a `<form>` in the same document.\n */\n form?: string,\n /**\n * The URL that processes the information submitted by the button.\n * Overrides the action attribute of the button's form owner.\n */\n formAction?: string,\n /** Indicates how to encode the form data that is submitted. */\n formEncType?: string,\n /** Indicates the HTTP method used to submit the form. */\n formMethod?: string,\n /** Indicates that the form is not to be validated when it is submitted. */\n formNoValidate?: boolean,\n /** Overrides the target attribute of the button's form owner. */\n formTarget?: string,\n /** Submitted as a pair with the button's value as part of the form data. */\n name?: string,\n /** The value associated with the button's name when it's submitted with the form data. */\n value?: string,\n /**\n * Whether to disable events immediately and display the `ProgressBar`.\n */\n isPending?: boolean\n}\n\ninterface ButtonContextValue extends ButtonProps {\n isPressed?: boolean\n}\n\nconst additionalButtonHTMLAttributes = new Set(['form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'name', 'value']);\n\nexport const ButtonContext = createContext<ContextValue<ButtonContextValue, HTMLButtonElement>>({});\n\nfunction Button(props: ButtonProps, ref: ForwardedRef<HTMLButtonElement>) {\n [props, ref] = useContextProps(props, ref, ButtonContext);\n props = disablePendingProps(props);\n let ctx = props as ButtonContextValue;\n let {isPending} = ctx;\n let {buttonProps, isPressed} = useButton(props, ref);\n let {focusProps, isFocused, isFocusVisible} = useFocusRing(props);\n let {hoverProps, isHovered} = useHover({\n ...props,\n isDisabled: props.isDisabled || isPending\n });\n let renderValues = {\n isHovered,\n isPressed: (ctx.isPressed || isPressed) && !isPending,\n isFocused,\n isFocusVisible,\n isDisabled: props.isDisabled || false,\n isPending\n };\n\n let renderProps = useRenderProps({\n ...props,\n values: renderValues,\n defaultClassName: 'react-aria-Button'\n });\n\n let buttonId = useId(buttonProps.id);\n let progressId = useId();\n\n let ariaLabelledby = buttonProps['aria-labelledby'];\n if (isPending) {\n // aria-labelledby wins over aria-label\n // https://www.w3.org/TR/accname-1.2/#computation-steps\n if (ariaLabelledby) {\n ariaLabelledby = `${ariaLabelledby} ${progressId}`;\n } else if (buttonProps['aria-label']) {\n ariaLabelledby = `${buttonId} ${progressId}`;\n }\n }\n\n let wasPending = useRef(isPending);\n useEffect(() => {\n let message = {'aria-labelledby': ariaLabelledby || buttonId};\n if (!wasPending.current && isFocused && isPending) {\n announce(message, 'assertive');\n } else if (wasPending.current && isFocused && !isPending) {\n announce(message, 'assertive');\n }\n wasPending.current = isPending;\n }, [isPending, isFocused, ariaLabelledby, buttonId]);\n\n return (\n <button\n {...filterDOMProps(props, {propNames: additionalButtonHTMLAttributes})}\n {...mergeProps(buttonProps, focusProps, hoverProps)}\n {...renderProps}\n id={buttonId}\n ref={ref}\n aria-labelledby={ariaLabelledby}\n slot={props.slot || undefined}\n aria-disabled={isPending ? 'true' : buttonProps['aria-disabled']}\n data-disabled={props.isDisabled || undefined}\n data-pressed={renderValues.isPressed || undefined}\n data-hovered={isHovered || undefined}\n data-focused={isFocused || undefined}\n data-pending={isPending || undefined}\n data-focus-visible={isFocusVisible || undefined}>\n <ProgressBarContext.Provider value={{id: progressId}}>\n {renderProps.children}\n </ProgressBarContext.Provider>\n </button>\n );\n}\n\nfunction disablePendingProps(props) {\n // Don't allow interaction while isPending is true\n if (props.isPending) {\n props.onPress = undefined;\n props.onPressStart = undefined;\n props.onPressEnd = undefined;\n props.onPressChange = undefined;\n props.onPressUp = undefined;\n props.onKeyDown = undefined;\n props.onKeyUp = undefined;\n props.onClick = undefined;\n props.href = undefined;\n }\n return props;\n}\n\n/**\n * A button allows a user to perform an action, with mouse, touch, and keyboard interactions.\n */\nconst _Button = /*#__PURE__*/ createHideableComponent(Button);\nexport {_Button as Button};\n"],"names":[],"version":3,"file":"Button.main.js.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AA2FD,MAAM,uDAAiC,IAAI,IAAI;IAAC;IAAQ;IAAc;IAAe;IAAc;IAAkB;IAAc;IAAQ;CAAQ;AAE5I,MAAM,0DAAgB,CAAA,GAAA,0BAAY,EAAuD,CAAC;AAEjG,SAAS,6BAAO,KAAkB,EAAE,GAAoC;IACtE,CAAC,OAAO,IAAI,GAAG,CAAA,GAAA,yCAAc,EAAE,OAAO,KAAK;IAC3C,QAAQ,0CAAoB;IAC5B,IAAI,MAAM;IACV,IAAI,aAAC,SAAS,EAAC,GAAG;IAClB,IAAI,eAAC,WAAW,aAAE,SAAS,EAAC,GAAG,CAAA,GAAA,0BAAQ,EAAE,OAAO;IAChD,IAAI,cAAC,UAAU,aAAE,SAAS,kBAAE,cAAc,EAAC,GAAG,CAAA,GAAA,6BAAW,EAAE;IAC3D,IAAI,cAAC,UAAU,aAAE,SAAS,EAAC,GAAG,CAAA,GAAA,yBAAO,EAAE;QACrC,GAAG,KAAK;QACR,YAAY,MAAM,UAAU,IAAI;IAClC;IACA,IAAI,eAAe;mBACjB;QACA,WAAW,AAAC,CAAA,IAAI,SAAS,IAAI,SAAQ,KAAM,CAAC;mBAC5C;wBACA;QACA,YAAY,MAAM,UAAU,IAAI;QAChC,WAAW,sBAAA,uBAAA,YAAa;IAC1B;IAEA,IAAI,cAAc,CAAA,GAAA,wCAAa,EAAE;QAC/B,GAAG,KAAK;QACR,QAAQ;QACR,kBAAkB;IACpB;IAEA,IAAI,WAAW,CAAA,GAAA,sBAAI,EAAE,YAAY,EAAE;IACnC,IAAI,aAAa,CAAA,GAAA,sBAAI;IAErB,IAAI,iBAAiB,WAAW,CAAC,kBAAkB;IACnD,IAAI,WAAW;QACb,uCAAuC;QACvC,uDAAuD;QACvD,IAAI,gBACF,iBAAiB,CAAC,EAAE,eAAe,CAAC,EAAE,WAAW,CAAC;aAC7C,IAAI,WAAW,CAAC,aAAa,EAClC,iBAAiB,CAAC,EAAE,SAAS,CAAC,EAAE,WAAW,CAAC;IAEhD;IAEA,IAAI,aAAa,CAAA,GAAA,mBAAK,EAAE;IACxB,CAAA,GAAA,sBAAQ,EAAE;QACR,IAAI,UAAU;YAAC,mBAAmB,kBAAkB;QAAQ;QAC5D,IAAI,CAAC,WAAW,OAAO,IAAI,aAAa,WACtC,CAAA,GAAA,sCAAO,EAAE,SAAS;aACb,IAAI,WAAW,OAAO,IAAI,aAAa,CAAC,WAC7C,CAAA,GAAA,sCAAO,EAAE,SAAS;QAEpB,WAAW,OAAO,GAAG;IACvB,GAAG;QAAC;QAAW;QAAW;QAAgB;KAAS;IAEnD,qBACE,0DAAC;QACE,GAAG,CAAA,GAAA,oCAAa,EAAE,OAAO;YAAC,WAAW;QAA8B,EAAE;QACrE,GAAG,CAAA,GAAA,2BAAS,EAAE,aAAa,YAAY,WAAW;QAClD,GAAG,WAAW;QACf,IAAI;QACJ,KAAK;QACL,mBAAiB;QACjB,MAAM,MAAM,IAAI,IAAI;QACpB,iBAAe,YAAY,SAAS,WAAW,CAAC,gBAAgB;QAChE,iBAAe,MAAM,UAAU,IAAI;QACnC,gBAAc,aAAa,SAAS,IAAI;QACxC,gBAAc,aAAa;QAC3B,gBAAc,aAAa;QAC3B,gBAAc,aAAa;QAC3B,sBAAoB,kBAAkB;qBACtC,0DAAC,CAAA,GAAA,4CAAiB,EAAE,QAAQ;QAAC,OAAO;YAAC,IAAI;QAAU;OAChD,YAAY,QAAQ;AAI7B;AAEA,SAAS,0CAAoB,KAAK;IAChC,kDAAkD;IAClD,IAAI,MAAM,SAAS,EAAE;QACnB,MAAM,OAAO,GAAG;QAChB,MAAM,YAAY,GAAG;QACrB,MAAM,UAAU,GAAG;QACnB,MAAM,aAAa,GAAG;QACtB,MAAM,SAAS,GAAG;QAClB,MAAM,SAAS,GAAG;QAClB,MAAM,OAAO,GAAG;QAChB,MAAM,OAAO,GAAG;QAChB,MAAM,IAAI,GAAG;IACf;IACA,OAAO;AACT;AAEA;;CAEC,GACD,MAAM,4CAAU,WAAW,GAAG,CAAA,GAAA,mDAAsB,EAAE","sources":["packages/react-aria-components/src/Button.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 {announce} from '@react-aria/live-announcer';\nimport {\n AriaButtonProps,\n HoverEvents,\n mergeProps,\n useButton,\n useFocusRing,\n useHover,\n useId\n} from 'react-aria';\nimport {\n ContextValue,\n RenderProps,\n SlotProps,\n useContextProps,\n useRenderProps\n} from './utils';\nimport {createHideableComponent} from '@react-aria/collections';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProgressBarContext} from './ProgressBar';\nimport React, {createContext, ForwardedRef, useEffect, useRef} from 'react';\n\nexport interface ButtonRenderProps {\n /**\n * Whether the button is currently hovered with a mouse.\n * @selector [data-hovered]\n */\n isHovered: boolean,\n /**\n * Whether the button is currently in a pressed state.\n * @selector [data-pressed]\n */\n isPressed: boolean,\n /**\n * Whether the button is focused, either via a mouse or keyboard.\n * @selector [data-focused]\n */\n isFocused: boolean,\n /**\n * Whether the button is keyboard focused.\n * @selector [data-focus-visible]\n */\n isFocusVisible: boolean,\n /**\n * Whether the button is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * Whether the button is currently in a pending state.\n * @selector [data-pending]\n */\n isPending: boolean\n}\n\nexport interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {\n /**\n * The `<form>` element to associate the button with.\n * The value of this attribute must be the id of a `<form>` in the same document.\n */\n form?: string,\n /**\n * The URL that processes the information submitted by the button.\n * Overrides the action attribute of the button's form owner.\n */\n formAction?: string,\n /** Indicates how to encode the form data that is submitted. */\n formEncType?: string,\n /** Indicates the HTTP method used to submit the form. */\n formMethod?: string,\n /** Indicates that the form is not to be validated when it is submitted. */\n formNoValidate?: boolean,\n /** Overrides the target attribute of the button's form owner. */\n formTarget?: string,\n /** Submitted as a pair with the button's value as part of the form data. */\n name?: string,\n /** The value associated with the button's name when it's submitted with the form data. */\n value?: string,\n /**\n * Whether the button is in a pending state. This disables press and hover events\n * while retaining focusability, and announces the pending state to screen readers.\n */\n isPending?: boolean\n}\n\ninterface ButtonContextValue extends ButtonProps {\n isPressed?: boolean\n}\n\nconst additionalButtonHTMLAttributes = new Set(['form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'name', 'value']);\n\nexport const ButtonContext = createContext<ContextValue<ButtonContextValue, HTMLButtonElement>>({});\n\nfunction Button(props: ButtonProps, ref: ForwardedRef<HTMLButtonElement>) {\n [props, ref] = useContextProps(props, ref, ButtonContext);\n props = disablePendingProps(props);\n let ctx = props as ButtonContextValue;\n let {isPending} = ctx;\n let {buttonProps, isPressed} = useButton(props, ref);\n let {focusProps, isFocused, isFocusVisible} = useFocusRing(props);\n let {hoverProps, isHovered} = useHover({\n ...props,\n isDisabled: props.isDisabled || isPending\n });\n let renderValues = {\n isHovered,\n isPressed: (ctx.isPressed || isPressed) && !isPending,\n isFocused,\n isFocusVisible,\n isDisabled: props.isDisabled || false,\n isPending: isPending ?? false\n };\n\n let renderProps = useRenderProps({\n ...props,\n values: renderValues,\n defaultClassName: 'react-aria-Button'\n });\n\n let buttonId = useId(buttonProps.id);\n let progressId = useId();\n\n let ariaLabelledby = buttonProps['aria-labelledby'];\n if (isPending) {\n // aria-labelledby wins over aria-label\n // https://www.w3.org/TR/accname-1.2/#computation-steps\n if (ariaLabelledby) {\n ariaLabelledby = `${ariaLabelledby} ${progressId}`;\n } else if (buttonProps['aria-label']) {\n ariaLabelledby = `${buttonId} ${progressId}`;\n }\n }\n\n let wasPending = useRef(isPending);\n useEffect(() => {\n let message = {'aria-labelledby': ariaLabelledby || buttonId};\n if (!wasPending.current && isFocused && isPending) {\n announce(message, 'assertive');\n } else if (wasPending.current && isFocused && !isPending) {\n announce(message, 'assertive');\n }\n wasPending.current = isPending;\n }, [isPending, isFocused, ariaLabelledby, buttonId]);\n\n return (\n <button\n {...filterDOMProps(props, {propNames: additionalButtonHTMLAttributes})}\n {...mergeProps(buttonProps, focusProps, hoverProps)}\n {...renderProps}\n id={buttonId}\n ref={ref}\n aria-labelledby={ariaLabelledby}\n slot={props.slot || undefined}\n aria-disabled={isPending ? 'true' : buttonProps['aria-disabled']}\n data-disabled={props.isDisabled || undefined}\n data-pressed={renderValues.isPressed || undefined}\n data-hovered={isHovered || undefined}\n data-focused={isFocused || undefined}\n data-pending={isPending || undefined}\n data-focus-visible={isFocusVisible || undefined}>\n <ProgressBarContext.Provider value={{id: progressId}}>\n {renderProps.children}\n </ProgressBarContext.Provider>\n </button>\n );\n}\n\nfunction disablePendingProps(props) {\n // Don't allow interaction while isPending is true\n if (props.isPending) {\n props.onPress = undefined;\n props.onPressStart = undefined;\n props.onPressEnd = undefined;\n props.onPressChange = undefined;\n props.onPressUp = undefined;\n props.onKeyDown = undefined;\n props.onKeyUp = undefined;\n props.onClick = undefined;\n props.href = undefined;\n }\n return props;\n}\n\n/**\n * A button allows a user to perform an action, with mouse, touch, and keyboard interactions.\n */\nconst _Button = /*#__PURE__*/ createHideableComponent(Button);\nexport {_Button as Button};\n"],"names":[],"version":3,"file":"Button.main.js.map"}
package/dist/Button.mjs CHANGED
@@ -51,7 +51,7 @@ function $d2b4bc8c273e7be6$var$Button(props, ref) {
51
51
  isFocused: isFocused,
52
52
  isFocusVisible: isFocusVisible,
53
53
  isDisabled: props.isDisabled || false,
54
- isPending: isPending
54
+ isPending: isPending !== null && isPending !== void 0 ? isPending : false
55
55
  };
56
56
  let renderProps = (0, $64fa3d84918910a7$export$4d86445c2cf5e3)({
57
57
  ...props,
@@ -51,7 +51,7 @@ function $d2b4bc8c273e7be6$var$Button(props, ref) {
51
51
  isFocused: isFocused,
52
52
  isFocusVisible: isFocusVisible,
53
53
  isDisabled: props.isDisabled || false,
54
- isPending: isPending
54
+ isPending: isPending !== null && isPending !== void 0 ? isPending : false
55
55
  };
56
56
  let renderProps = (0, $64fa3d84918910a7$export$4d86445c2cf5e3)({
57
57
  ...props,
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/react-aria-components/src/Button.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 {announce} from '@react-aria/live-announcer';\nimport {\n AriaButtonProps,\n HoverEvents,\n mergeProps,\n useButton,\n useFocusRing,\n useHover,\n useId\n} from 'react-aria';\nimport {\n ContextValue,\n RenderProps,\n SlotProps,\n useContextProps,\n useRenderProps\n} from './utils';\nimport {createHideableComponent} from '@react-aria/collections';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProgressBarContext} from './ProgressBar';\nimport React, {createContext, ForwardedRef, useEffect, useRef} from 'react';\n\nexport interface ButtonRenderProps {\n /**\n * Whether the button is currently hovered with a mouse.\n * @selector [data-hovered]\n */\n isHovered: boolean,\n /**\n * Whether the button is currently in a pressed state.\n * @selector [data-pressed]\n */\n isPressed: boolean,\n /**\n * Whether the button is focused, either via a mouse or keyboard.\n * @selector [data-focused]\n */\n isFocused: boolean,\n /**\n * Whether the button is keyboard focused.\n * @selector [data-focus-visible]\n */\n isFocusVisible: boolean,\n /**\n * Whether the button is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * If the button is currently in the `isPending` state.\n * @selector [data-pending]\n */\n isPending?: boolean\n}\n\nexport interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {\n /**\n * The `<form>` element to associate the button with.\n * The value of this attribute must be the id of a `<form>` in the same document.\n */\n form?: string,\n /**\n * The URL that processes the information submitted by the button.\n * Overrides the action attribute of the button's form owner.\n */\n formAction?: string,\n /** Indicates how to encode the form data that is submitted. */\n formEncType?: string,\n /** Indicates the HTTP method used to submit the form. */\n formMethod?: string,\n /** Indicates that the form is not to be validated when it is submitted. */\n formNoValidate?: boolean,\n /** Overrides the target attribute of the button's form owner. */\n formTarget?: string,\n /** Submitted as a pair with the button's value as part of the form data. */\n name?: string,\n /** The value associated with the button's name when it's submitted with the form data. */\n value?: string,\n /**\n * Whether to disable events immediately and display the `ProgressBar`.\n */\n isPending?: boolean\n}\n\ninterface ButtonContextValue extends ButtonProps {\n isPressed?: boolean\n}\n\nconst additionalButtonHTMLAttributes = new Set(['form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'name', 'value']);\n\nexport const ButtonContext = createContext<ContextValue<ButtonContextValue, HTMLButtonElement>>({});\n\nfunction Button(props: ButtonProps, ref: ForwardedRef<HTMLButtonElement>) {\n [props, ref] = useContextProps(props, ref, ButtonContext);\n props = disablePendingProps(props);\n let ctx = props as ButtonContextValue;\n let {isPending} = ctx;\n let {buttonProps, isPressed} = useButton(props, ref);\n let {focusProps, isFocused, isFocusVisible} = useFocusRing(props);\n let {hoverProps, isHovered} = useHover({\n ...props,\n isDisabled: props.isDisabled || isPending\n });\n let renderValues = {\n isHovered,\n isPressed: (ctx.isPressed || isPressed) && !isPending,\n isFocused,\n isFocusVisible,\n isDisabled: props.isDisabled || false,\n isPending\n };\n\n let renderProps = useRenderProps({\n ...props,\n values: renderValues,\n defaultClassName: 'react-aria-Button'\n });\n\n let buttonId = useId(buttonProps.id);\n let progressId = useId();\n\n let ariaLabelledby = buttonProps['aria-labelledby'];\n if (isPending) {\n // aria-labelledby wins over aria-label\n // https://www.w3.org/TR/accname-1.2/#computation-steps\n if (ariaLabelledby) {\n ariaLabelledby = `${ariaLabelledby} ${progressId}`;\n } else if (buttonProps['aria-label']) {\n ariaLabelledby = `${buttonId} ${progressId}`;\n }\n }\n\n let wasPending = useRef(isPending);\n useEffect(() => {\n let message = {'aria-labelledby': ariaLabelledby || buttonId};\n if (!wasPending.current && isFocused && isPending) {\n announce(message, 'assertive');\n } else if (wasPending.current && isFocused && !isPending) {\n announce(message, 'assertive');\n }\n wasPending.current = isPending;\n }, [isPending, isFocused, ariaLabelledby, buttonId]);\n\n return (\n <button\n {...filterDOMProps(props, {propNames: additionalButtonHTMLAttributes})}\n {...mergeProps(buttonProps, focusProps, hoverProps)}\n {...renderProps}\n id={buttonId}\n ref={ref}\n aria-labelledby={ariaLabelledby}\n slot={props.slot || undefined}\n aria-disabled={isPending ? 'true' : buttonProps['aria-disabled']}\n data-disabled={props.isDisabled || undefined}\n data-pressed={renderValues.isPressed || undefined}\n data-hovered={isHovered || undefined}\n data-focused={isFocused || undefined}\n data-pending={isPending || undefined}\n data-focus-visible={isFocusVisible || undefined}>\n <ProgressBarContext.Provider value={{id: progressId}}>\n {renderProps.children}\n </ProgressBarContext.Provider>\n </button>\n );\n}\n\nfunction disablePendingProps(props) {\n // Don't allow interaction while isPending is true\n if (props.isPending) {\n props.onPress = undefined;\n props.onPressStart = undefined;\n props.onPressEnd = undefined;\n props.onPressChange = undefined;\n props.onPressUp = undefined;\n props.onKeyDown = undefined;\n props.onKeyUp = undefined;\n props.onClick = undefined;\n props.href = undefined;\n }\n return props;\n}\n\n/**\n * A button allows a user to perform an action, with mouse, touch, and keyboard interactions.\n */\nconst _Button = /*#__PURE__*/ createHideableComponent(Button);\nexport {_Button as Button};\n"],"names":[],"version":3,"file":"Button.module.js.map"}
1
+ {"mappings":"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","sources":["packages/react-aria-components/src/Button.tsx"],"sourcesContent":["/*\n * Copyright 2022 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 {announce} from '@react-aria/live-announcer';\nimport {\n AriaButtonProps,\n HoverEvents,\n mergeProps,\n useButton,\n useFocusRing,\n useHover,\n useId\n} from 'react-aria';\nimport {\n ContextValue,\n RenderProps,\n SlotProps,\n useContextProps,\n useRenderProps\n} from './utils';\nimport {createHideableComponent} from '@react-aria/collections';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProgressBarContext} from './ProgressBar';\nimport React, {createContext, ForwardedRef, useEffect, useRef} from 'react';\n\nexport interface ButtonRenderProps {\n /**\n * Whether the button is currently hovered with a mouse.\n * @selector [data-hovered]\n */\n isHovered: boolean,\n /**\n * Whether the button is currently in a pressed state.\n * @selector [data-pressed]\n */\n isPressed: boolean,\n /**\n * Whether the button is focused, either via a mouse or keyboard.\n * @selector [data-focused]\n */\n isFocused: boolean,\n /**\n * Whether the button is keyboard focused.\n * @selector [data-focus-visible]\n */\n isFocusVisible: boolean,\n /**\n * Whether the button is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * Whether the button is currently in a pending state.\n * @selector [data-pending]\n */\n isPending: boolean\n}\n\nexport interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {\n /**\n * The `<form>` element to associate the button with.\n * The value of this attribute must be the id of a `<form>` in the same document.\n */\n form?: string,\n /**\n * The URL that processes the information submitted by the button.\n * Overrides the action attribute of the button's form owner.\n */\n formAction?: string,\n /** Indicates how to encode the form data that is submitted. */\n formEncType?: string,\n /** Indicates the HTTP method used to submit the form. */\n formMethod?: string,\n /** Indicates that the form is not to be validated when it is submitted. */\n formNoValidate?: boolean,\n /** Overrides the target attribute of the button's form owner. */\n formTarget?: string,\n /** Submitted as a pair with the button's value as part of the form data. */\n name?: string,\n /** The value associated with the button's name when it's submitted with the form data. */\n value?: string,\n /**\n * Whether the button is in a pending state. This disables press and hover events\n * while retaining focusability, and announces the pending state to screen readers.\n */\n isPending?: boolean\n}\n\ninterface ButtonContextValue extends ButtonProps {\n isPressed?: boolean\n}\n\nconst additionalButtonHTMLAttributes = new Set(['form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'name', 'value']);\n\nexport const ButtonContext = createContext<ContextValue<ButtonContextValue, HTMLButtonElement>>({});\n\nfunction Button(props: ButtonProps, ref: ForwardedRef<HTMLButtonElement>) {\n [props, ref] = useContextProps(props, ref, ButtonContext);\n props = disablePendingProps(props);\n let ctx = props as ButtonContextValue;\n let {isPending} = ctx;\n let {buttonProps, isPressed} = useButton(props, ref);\n let {focusProps, isFocused, isFocusVisible} = useFocusRing(props);\n let {hoverProps, isHovered} = useHover({\n ...props,\n isDisabled: props.isDisabled || isPending\n });\n let renderValues = {\n isHovered,\n isPressed: (ctx.isPressed || isPressed) && !isPending,\n isFocused,\n isFocusVisible,\n isDisabled: props.isDisabled || false,\n isPending: isPending ?? false\n };\n\n let renderProps = useRenderProps({\n ...props,\n values: renderValues,\n defaultClassName: 'react-aria-Button'\n });\n\n let buttonId = useId(buttonProps.id);\n let progressId = useId();\n\n let ariaLabelledby = buttonProps['aria-labelledby'];\n if (isPending) {\n // aria-labelledby wins over aria-label\n // https://www.w3.org/TR/accname-1.2/#computation-steps\n if (ariaLabelledby) {\n ariaLabelledby = `${ariaLabelledby} ${progressId}`;\n } else if (buttonProps['aria-label']) {\n ariaLabelledby = `${buttonId} ${progressId}`;\n }\n }\n\n let wasPending = useRef(isPending);\n useEffect(() => {\n let message = {'aria-labelledby': ariaLabelledby || buttonId};\n if (!wasPending.current && isFocused && isPending) {\n announce(message, 'assertive');\n } else if (wasPending.current && isFocused && !isPending) {\n announce(message, 'assertive');\n }\n wasPending.current = isPending;\n }, [isPending, isFocused, ariaLabelledby, buttonId]);\n\n return (\n <button\n {...filterDOMProps(props, {propNames: additionalButtonHTMLAttributes})}\n {...mergeProps(buttonProps, focusProps, hoverProps)}\n {...renderProps}\n id={buttonId}\n ref={ref}\n aria-labelledby={ariaLabelledby}\n slot={props.slot || undefined}\n aria-disabled={isPending ? 'true' : buttonProps['aria-disabled']}\n data-disabled={props.isDisabled || undefined}\n data-pressed={renderValues.isPressed || undefined}\n data-hovered={isHovered || undefined}\n data-focused={isFocused || undefined}\n data-pending={isPending || undefined}\n data-focus-visible={isFocusVisible || undefined}>\n <ProgressBarContext.Provider value={{id: progressId}}>\n {renderProps.children}\n </ProgressBarContext.Provider>\n </button>\n );\n}\n\nfunction disablePendingProps(props) {\n // Don't allow interaction while isPending is true\n if (props.isPending) {\n props.onPress = undefined;\n props.onPressStart = undefined;\n props.onPressEnd = undefined;\n props.onPressChange = undefined;\n props.onPressUp = undefined;\n props.onKeyDown = undefined;\n props.onKeyUp = undefined;\n props.onClick = undefined;\n props.href = undefined;\n }\n return props;\n}\n\n/**\n * A button allows a user to perform an action, with mouse, touch, and keyboard interactions.\n */\nconst _Button = /*#__PURE__*/ createHideableComponent(Button);\nexport {_Button as Button};\n"],"names":[],"version":3,"file":"Button.module.js.map"}
@@ -74,9 +74,10 @@ function $11c780105231f6ef$var$Disclosure(props, ref) {
74
74
  // (can't pass id into useId since it can also be a number)
75
75
  let defaultId = (0, $8afVX$reactariautils.useId)();
76
76
  id || (id = defaultId);
77
+ let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;
77
78
  let state = (0, $8afVX$reactstatelydisclosure.useDisclosureState)({
78
79
  ...props,
79
- isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,
80
+ isExpanded: isExpanded,
80
81
  onExpandedChange (isExpanded) {
81
82
  var _props_onExpandedChange;
82
83
  if (groupState) groupState.toggleKey(id);
@@ -87,6 +88,7 @@ function $11c780105231f6ef$var$Disclosure(props, ref) {
87
88
  let isDisabled = props.isDisabled || (groupState === null || groupState === void 0 ? void 0 : groupState.isDisabled) || false;
88
89
  let { buttonProps: buttonProps, panelProps: panelProps } = (0, $8afVX$reactariadisclosure.useDisclosure)({
89
90
  ...props,
91
+ isExpanded: isExpanded,
90
92
  isDisabled: isDisabled
91
93
  }, state, panelRef);
92
94
  let { isFocusVisible: isFocusVisibleWithin, focusProps: focusWithinProps } = (0, $8afVX$reactaria.useFocusRing)({
@@ -168,7 +170,9 @@ function $11c780105231f6ef$var$DisclosurePanel(props, ref) {
168
170
  /**
169
171
  * 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.
170
172
  */ const $11c780105231f6ef$export$74a362b31437ec83 = /*#__PURE__*/ (0, $8afVX$react.forwardRef)($11c780105231f6ef$var$Disclosure);
171
- const $11c780105231f6ef$export$feabaa331e1d464c = /*#__PURE__*/ (0, $8afVX$react.forwardRef)($11c780105231f6ef$var$DisclosurePanel);
173
+ /**
174
+ * A DisclosurePanel provides the content for a disclosure.
175
+ */ const $11c780105231f6ef$export$feabaa331e1d464c = /*#__PURE__*/ (0, $8afVX$react.forwardRef)($11c780105231f6ef$var$DisclosurePanel);
172
176
 
173
177
 
174
178
  //# sourceMappingURL=Disclosure.main.js.map
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/react-aria-components/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 {AriaDisclosureProps, useDisclosure} from '@react-aria/disclosure';\nimport {ButtonContext} from './Button';\nimport {ContextValue, DEFAULT_SLOT, Provider, RenderProps, SlotProps, useContextProps, useRenderProps} from './utils';\nimport {DisclosureGroupState, DisclosureState, DisclosureGroupProps as StatelyDisclosureGroupProps, useDisclosureGroupState, useDisclosureState} from '@react-stately/disclosure';\nimport {DOMProps, forwardRefType, Key} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, mergeRefs, useId} from '@react-aria/utils';\nimport React, {createContext, DOMAttributes, ForwardedRef, forwardRef, ReactNode, useContext} from 'react';\nimport {useFocusRing} from 'react-aria';\n\nexport interface DisclosureGroupProps extends StatelyDisclosureGroupProps, RenderProps<DisclosureGroupRenderProps>, DOMProps {}\n\nexport interface DisclosureGroupRenderProps {\n /**\n * Whether the disclosure group is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure group.\n */\n state: DisclosureGroupState\n}\n\nexport const DisclosureGroupStateContext = createContext<DisclosureGroupState | null>(null);\n\nfunction DisclosureGroup(props: DisclosureGroupProps, ref: ForwardedRef<HTMLDivElement>) {\n let state = useDisclosureGroupState(props);\n\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosureGroup',\n values: {\n isDisabled: state.isDisabled,\n state\n }\n });\n\n let domProps = filterDOMProps(props);\n\n return (\n <div\n {...domProps}\n {...renderProps}\n ref={ref}\n data-disabled={props.isDisabled || undefined}>\n <DisclosureGroupStateContext.Provider value={state}>\n {renderProps.children}\n </DisclosureGroupStateContext.Provider>\n </div>\n );\n}\n\n/**\n * A DisclosureGroup is a grouping of related disclosures, sometimes called an Accordion.\n * It supports both single and multiple expanded items.\n */\nconst _DisclosureGroup = forwardRef(DisclosureGroup);\nexport {_DisclosureGroup as DisclosureGroup};\n\nexport interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {\n /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */\n id?: Key\n}\n\nexport interface DisclosureRenderProps {\n /**\n * Whether the disclosure is expanded.\n * @selector [data-expanded]\n */\n isExpanded: boolean,\n /**\n * Whether the disclosure has keyboard focus.\n * @selector [data-focus-visible-within]\n */\n isFocusVisibleWithin: boolean,\n /**\n * Whether the disclosure is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure.\n */\n state: DisclosureState\n}\n\nexport const DisclosureContext = createContext<ContextValue<DisclosureProps, HTMLDivElement>>(null);\nexport const DisclosureStateContext = createContext<DisclosureState | null>(null);\n\ninterface InternalDisclosureContextValue {\n panelProps: DOMAttributes<HTMLElement>,\n panelRef: React.RefObject<HTMLDivElement | null>\n}\n\nconst InternalDisclosureContext = createContext<InternalDisclosureContextValue | null>(null);\n\nfunction Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {\n [props, ref] = useContextProps(props, ref, DisclosureContext);\n let groupState = useContext(DisclosureGroupStateContext);\n let {id, ...otherProps} = props;\n\n // Generate an id if one wasn't provided.\n // (can't pass id into useId since it can also be a number)\n let defaultId = useId();\n id ||= defaultId;\n\n let state = useDisclosureState({\n ...props,\n isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,\n onExpandedChange(isExpanded) {\n if (groupState) {\n groupState.toggleKey(id);\n }\n\n props.onExpandedChange?.(isExpanded);\n }\n });\n\n let panelRef = React.useRef<HTMLDivElement | null>(null);\n let isDisabled = props.isDisabled || groupState?.isDisabled || false;\n let {buttonProps, panelProps} = useDisclosure({\n ...props,\n isDisabled\n }, state, panelRef);\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n\n let renderProps = useRenderProps({\n ...props,\n id: undefined,\n defaultClassName: 'react-aria-Disclosure',\n values: {\n isExpanded: state.isExpanded,\n isDisabled,\n isFocusVisibleWithin,\n state\n }\n });\n\n let domProps = filterDOMProps(otherProps as any);\n\n return (\n <Provider\n values={[\n [ButtonContext, {\n slots: {\n [DEFAULT_SLOT]: {},\n trigger: buttonProps\n }\n }],\n [InternalDisclosureContext, {panelProps, panelRef}],\n [DisclosureStateContext, state]\n ]}>\n <div\n ref={ref}\n data-expanded={state.isExpanded || undefined}\n data-disabled={isDisabled || undefined}\n data-focus-visible-within={isFocusVisibleWithin || undefined}\n {...domProps}\n {...focusWithinProps}\n {...renderProps}>\n {renderProps.children}\n </div>\n </Provider>\n );\n}\n\nexport interface DisclosurePanelProps extends RenderProps<{}> {\n /**\n * The accessibility role for the disclosure's panel.\n * @default 'group'\n */\n role?: 'group' | 'region',\n children: ReactNode\n}\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: ForwardedRef<HTMLDivElement>) {\n let {role = 'group'} = props;\n let {panelProps, panelRef} = useContext(InternalDisclosureContext)!;\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosurePanel',\n values: {\n isFocusVisibleWithin\n }\n });\n return (\n <div\n ref={mergeRefs(ref, panelRef)}\n {...mergeProps(panelProps, focusWithinProps)}\n {...renderProps}\n role={role}\n data-focus-visible-within={isFocusVisibleWithin || undefined}>\n <Provider\n values={[\n [ButtonContext, null]\n ]}>\n {props.children}\n </Provider>\n </div>\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 */\nconst _Disclosure = /*#__PURE__*/ (forwardRef as forwardRefType)(Disclosure);\nexport {_Disclosure as Disclosure};\n\nconst _DisclosurePanel = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n"],"names":[],"version":3,"file":"Disclosure.main.js.map"}
1
+ {"mappings":"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","sources":["packages/react-aria-components/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 {AriaDisclosureProps, useDisclosure} from '@react-aria/disclosure';\nimport {ButtonContext} from './Button';\nimport {ContextValue, DEFAULT_SLOT, Provider, RenderProps, SlotProps, useContextProps, useRenderProps} from './utils';\nimport {DisclosureGroupState, DisclosureState, DisclosureGroupProps as StatelyDisclosureGroupProps, useDisclosureGroupState, useDisclosureState} from '@react-stately/disclosure';\nimport {DOMProps, forwardRefType, Key} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, mergeRefs, useId} from '@react-aria/utils';\nimport React, {createContext, DOMAttributes, ForwardedRef, forwardRef, ReactNode, useContext} from 'react';\nimport {useFocusRing} from 'react-aria';\n\nexport interface DisclosureGroupProps extends StatelyDisclosureGroupProps, RenderProps<DisclosureGroupRenderProps>, DOMProps {}\n\nexport interface DisclosureGroupRenderProps {\n /**\n * Whether the disclosure group is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure group.\n */\n state: DisclosureGroupState\n}\n\nexport const DisclosureGroupStateContext = createContext<DisclosureGroupState | null>(null);\n\nfunction DisclosureGroup(props: DisclosureGroupProps, ref: ForwardedRef<HTMLDivElement>) {\n let state = useDisclosureGroupState(props);\n\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosureGroup',\n values: {\n isDisabled: state.isDisabled,\n state\n }\n });\n\n let domProps = filterDOMProps(props);\n\n return (\n <div\n {...domProps}\n {...renderProps}\n ref={ref}\n data-disabled={props.isDisabled || undefined}>\n <DisclosureGroupStateContext.Provider value={state}>\n {renderProps.children}\n </DisclosureGroupStateContext.Provider>\n </div>\n );\n}\n\n/**\n * A DisclosureGroup is a grouping of related disclosures, sometimes called an Accordion.\n * It supports both single and multiple expanded items.\n */\nconst _DisclosureGroup = forwardRef(DisclosureGroup);\nexport {_DisclosureGroup as DisclosureGroup};\n\nexport interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {\n /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */\n id?: Key,\n /** The children of the component. A function may be provided to alter the children based on component state. */\n children: ReactNode | ((values: DisclosureRenderProps & {defaultChildren: ReactNode | undefined}) => ReactNode)\n}\n\nexport interface DisclosureRenderProps {\n /**\n * Whether the disclosure is expanded.\n * @selector [data-expanded]\n */\n isExpanded: boolean,\n /**\n * Whether the disclosure has keyboard focus.\n * @selector [data-focus-visible-within]\n */\n isFocusVisibleWithin: boolean,\n /**\n * Whether the disclosure is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure.\n */\n state: DisclosureState\n}\n\nexport const DisclosureContext = createContext<ContextValue<DisclosureProps, HTMLDivElement>>(null);\nexport const DisclosureStateContext = createContext<DisclosureState | null>(null);\n\ninterface InternalDisclosureContextValue {\n panelProps: DOMAttributes<HTMLElement>,\n panelRef: React.RefObject<HTMLDivElement | null>\n}\n\nconst InternalDisclosureContext = createContext<InternalDisclosureContextValue | null>(null);\n\nfunction Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {\n [props, ref] = useContextProps(props, ref, DisclosureContext);\n let groupState = useContext(DisclosureGroupStateContext);\n let {id, ...otherProps} = props;\n\n // Generate an id if one wasn't provided.\n // (can't pass id into useId since it can also be a number)\n let defaultId = useId();\n id ||= defaultId;\n\n let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;\n let state = useDisclosureState({\n ...props,\n isExpanded,\n onExpandedChange(isExpanded) {\n if (groupState) {\n groupState.toggleKey(id);\n }\n\n props.onExpandedChange?.(isExpanded);\n }\n });\n\n let panelRef = React.useRef<HTMLDivElement | null>(null);\n let isDisabled = props.isDisabled || groupState?.isDisabled || false;\n let {buttonProps, panelProps} = useDisclosure({\n ...props,\n isExpanded,\n isDisabled\n }, state, panelRef);\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n\n let renderProps = useRenderProps({\n ...props,\n id: undefined,\n defaultClassName: 'react-aria-Disclosure',\n values: {\n isExpanded: state.isExpanded,\n isDisabled,\n isFocusVisibleWithin,\n state\n }\n });\n\n let domProps = filterDOMProps(otherProps as any);\n\n return (\n <Provider\n values={[\n [ButtonContext, {\n slots: {\n [DEFAULT_SLOT]: {},\n trigger: buttonProps\n }\n }],\n [InternalDisclosureContext, {panelProps, panelRef}],\n [DisclosureStateContext, state]\n ]}>\n <div\n ref={ref}\n data-expanded={state.isExpanded || undefined}\n data-disabled={isDisabled || undefined}\n data-focus-visible-within={isFocusVisibleWithin || undefined}\n {...domProps}\n {...focusWithinProps}\n {...renderProps}>\n {renderProps.children}\n </div>\n </Provider>\n );\n}\n\nexport interface DisclosurePanelProps extends RenderProps<{}> {\n /**\n * The accessibility role for the disclosure's panel.\n * @default 'group'\n */\n role?: 'group' | 'region',\n /**\n * The children of the component.\n */\n children: ReactNode\n}\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: ForwardedRef<HTMLDivElement>) {\n let {role = 'group'} = props;\n let {panelProps, panelRef} = useContext(InternalDisclosureContext)!;\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosurePanel',\n values: {\n isFocusVisibleWithin\n }\n });\n return (\n <div\n ref={mergeRefs(ref, panelRef)}\n {...mergeProps(panelProps, focusWithinProps)}\n {...renderProps}\n role={role}\n data-focus-visible-within={isFocusVisibleWithin || undefined}>\n <Provider\n values={[\n [ButtonContext, null]\n ]}>\n {props.children}\n </Provider>\n </div>\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 */\nconst _Disclosure = /*#__PURE__*/ (forwardRef as forwardRefType)(Disclosure);\nexport {_Disclosure as Disclosure};\n\n/**\n * A DisclosurePanel provides the content for a disclosure.\n */\nconst _DisclosurePanel = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n"],"names":[],"version":3,"file":"Disclosure.main.js.map"}
@@ -59,9 +59,10 @@ function $28f4fd908f0de97f$var$Disclosure(props, ref) {
59
59
  // (can't pass id into useId since it can also be a number)
60
60
  let defaultId = (0, $hI1OT$useId)();
61
61
  id || (id = defaultId);
62
+ let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;
62
63
  let state = (0, $hI1OT$useDisclosureState)({
63
64
  ...props,
64
- isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,
65
+ isExpanded: isExpanded,
65
66
  onExpandedChange (isExpanded) {
66
67
  var _props_onExpandedChange;
67
68
  if (groupState) groupState.toggleKey(id);
@@ -72,6 +73,7 @@ function $28f4fd908f0de97f$var$Disclosure(props, ref) {
72
73
  let isDisabled = props.isDisabled || (groupState === null || groupState === void 0 ? void 0 : groupState.isDisabled) || false;
73
74
  let { buttonProps: buttonProps, panelProps: panelProps } = (0, $hI1OT$useDisclosure)({
74
75
  ...props,
76
+ isExpanded: isExpanded,
75
77
  isDisabled: isDisabled
76
78
  }, state, panelRef);
77
79
  let { isFocusVisible: isFocusVisibleWithin, focusProps: focusWithinProps } = (0, $hI1OT$useFocusRing)({
@@ -153,7 +155,9 @@ function $28f4fd908f0de97f$var$DisclosurePanel(props, ref) {
153
155
  /**
154
156
  * 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.
155
157
  */ const $28f4fd908f0de97f$export$74a362b31437ec83 = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$Disclosure);
156
- const $28f4fd908f0de97f$export$feabaa331e1d464c = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$DisclosurePanel);
158
+ /**
159
+ * A DisclosurePanel provides the content for a disclosure.
160
+ */ const $28f4fd908f0de97f$export$feabaa331e1d464c = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$DisclosurePanel);
157
161
 
158
162
 
159
163
  export {$28f4fd908f0de97f$export$1d40e3e0cc4d5de as DisclosureGroupStateContext, $28f4fd908f0de97f$export$944aceb4f8c89f10 as DisclosureGroup, $28f4fd908f0de97f$export$d665dd135a51b28a as DisclosureContext, $28f4fd908f0de97f$export$dab3ea4a6ef094da as DisclosureStateContext, $28f4fd908f0de97f$export$74a362b31437ec83 as Disclosure, $28f4fd908f0de97f$export$feabaa331e1d464c as DisclosurePanel};
@@ -59,9 +59,10 @@ function $28f4fd908f0de97f$var$Disclosure(props, ref) {
59
59
  // (can't pass id into useId since it can also be a number)
60
60
  let defaultId = (0, $hI1OT$useId)();
61
61
  id || (id = defaultId);
62
+ let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;
62
63
  let state = (0, $hI1OT$useDisclosureState)({
63
64
  ...props,
64
- isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,
65
+ isExpanded: isExpanded,
65
66
  onExpandedChange (isExpanded) {
66
67
  var _props_onExpandedChange;
67
68
  if (groupState) groupState.toggleKey(id);
@@ -72,6 +73,7 @@ function $28f4fd908f0de97f$var$Disclosure(props, ref) {
72
73
  let isDisabled = props.isDisabled || (groupState === null || groupState === void 0 ? void 0 : groupState.isDisabled) || false;
73
74
  let { buttonProps: buttonProps, panelProps: panelProps } = (0, $hI1OT$useDisclosure)({
74
75
  ...props,
76
+ isExpanded: isExpanded,
75
77
  isDisabled: isDisabled
76
78
  }, state, panelRef);
77
79
  let { isFocusVisible: isFocusVisibleWithin, focusProps: focusWithinProps } = (0, $hI1OT$useFocusRing)({
@@ -153,7 +155,9 @@ function $28f4fd908f0de97f$var$DisclosurePanel(props, ref) {
153
155
  /**
154
156
  * 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.
155
157
  */ const $28f4fd908f0de97f$export$74a362b31437ec83 = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$Disclosure);
156
- const $28f4fd908f0de97f$export$feabaa331e1d464c = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$DisclosurePanel);
158
+ /**
159
+ * A DisclosurePanel provides the content for a disclosure.
160
+ */ const $28f4fd908f0de97f$export$feabaa331e1d464c = /*#__PURE__*/ (0, $hI1OT$forwardRef)($28f4fd908f0de97f$var$DisclosurePanel);
157
161
 
158
162
 
159
163
  export {$28f4fd908f0de97f$export$1d40e3e0cc4d5de as DisclosureGroupStateContext, $28f4fd908f0de97f$export$944aceb4f8c89f10 as DisclosureGroup, $28f4fd908f0de97f$export$d665dd135a51b28a as DisclosureContext, $28f4fd908f0de97f$export$dab3ea4a6ef094da as DisclosureStateContext, $28f4fd908f0de97f$export$74a362b31437ec83 as Disclosure, $28f4fd908f0de97f$export$feabaa331e1d464c as DisclosurePanel};
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/react-aria-components/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 {AriaDisclosureProps, useDisclosure} from '@react-aria/disclosure';\nimport {ButtonContext} from './Button';\nimport {ContextValue, DEFAULT_SLOT, Provider, RenderProps, SlotProps, useContextProps, useRenderProps} from './utils';\nimport {DisclosureGroupState, DisclosureState, DisclosureGroupProps as StatelyDisclosureGroupProps, useDisclosureGroupState, useDisclosureState} from '@react-stately/disclosure';\nimport {DOMProps, forwardRefType, Key} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, mergeRefs, useId} from '@react-aria/utils';\nimport React, {createContext, DOMAttributes, ForwardedRef, forwardRef, ReactNode, useContext} from 'react';\nimport {useFocusRing} from 'react-aria';\n\nexport interface DisclosureGroupProps extends StatelyDisclosureGroupProps, RenderProps<DisclosureGroupRenderProps>, DOMProps {}\n\nexport interface DisclosureGroupRenderProps {\n /**\n * Whether the disclosure group is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure group.\n */\n state: DisclosureGroupState\n}\n\nexport const DisclosureGroupStateContext = createContext<DisclosureGroupState | null>(null);\n\nfunction DisclosureGroup(props: DisclosureGroupProps, ref: ForwardedRef<HTMLDivElement>) {\n let state = useDisclosureGroupState(props);\n\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosureGroup',\n values: {\n isDisabled: state.isDisabled,\n state\n }\n });\n\n let domProps = filterDOMProps(props);\n\n return (\n <div\n {...domProps}\n {...renderProps}\n ref={ref}\n data-disabled={props.isDisabled || undefined}>\n <DisclosureGroupStateContext.Provider value={state}>\n {renderProps.children}\n </DisclosureGroupStateContext.Provider>\n </div>\n );\n}\n\n/**\n * A DisclosureGroup is a grouping of related disclosures, sometimes called an Accordion.\n * It supports both single and multiple expanded items.\n */\nconst _DisclosureGroup = forwardRef(DisclosureGroup);\nexport {_DisclosureGroup as DisclosureGroup};\n\nexport interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {\n /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */\n id?: Key\n}\n\nexport interface DisclosureRenderProps {\n /**\n * Whether the disclosure is expanded.\n * @selector [data-expanded]\n */\n isExpanded: boolean,\n /**\n * Whether the disclosure has keyboard focus.\n * @selector [data-focus-visible-within]\n */\n isFocusVisibleWithin: boolean,\n /**\n * Whether the disclosure is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure.\n */\n state: DisclosureState\n}\n\nexport const DisclosureContext = createContext<ContextValue<DisclosureProps, HTMLDivElement>>(null);\nexport const DisclosureStateContext = createContext<DisclosureState | null>(null);\n\ninterface InternalDisclosureContextValue {\n panelProps: DOMAttributes<HTMLElement>,\n panelRef: React.RefObject<HTMLDivElement | null>\n}\n\nconst InternalDisclosureContext = createContext<InternalDisclosureContextValue | null>(null);\n\nfunction Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {\n [props, ref] = useContextProps(props, ref, DisclosureContext);\n let groupState = useContext(DisclosureGroupStateContext);\n let {id, ...otherProps} = props;\n\n // Generate an id if one wasn't provided.\n // (can't pass id into useId since it can also be a number)\n let defaultId = useId();\n id ||= defaultId;\n\n let state = useDisclosureState({\n ...props,\n isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,\n onExpandedChange(isExpanded) {\n if (groupState) {\n groupState.toggleKey(id);\n }\n\n props.onExpandedChange?.(isExpanded);\n }\n });\n\n let panelRef = React.useRef<HTMLDivElement | null>(null);\n let isDisabled = props.isDisabled || groupState?.isDisabled || false;\n let {buttonProps, panelProps} = useDisclosure({\n ...props,\n isDisabled\n }, state, panelRef);\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n\n let renderProps = useRenderProps({\n ...props,\n id: undefined,\n defaultClassName: 'react-aria-Disclosure',\n values: {\n isExpanded: state.isExpanded,\n isDisabled,\n isFocusVisibleWithin,\n state\n }\n });\n\n let domProps = filterDOMProps(otherProps as any);\n\n return (\n <Provider\n values={[\n [ButtonContext, {\n slots: {\n [DEFAULT_SLOT]: {},\n trigger: buttonProps\n }\n }],\n [InternalDisclosureContext, {panelProps, panelRef}],\n [DisclosureStateContext, state]\n ]}>\n <div\n ref={ref}\n data-expanded={state.isExpanded || undefined}\n data-disabled={isDisabled || undefined}\n data-focus-visible-within={isFocusVisibleWithin || undefined}\n {...domProps}\n {...focusWithinProps}\n {...renderProps}>\n {renderProps.children}\n </div>\n </Provider>\n );\n}\n\nexport interface DisclosurePanelProps extends RenderProps<{}> {\n /**\n * The accessibility role for the disclosure's panel.\n * @default 'group'\n */\n role?: 'group' | 'region',\n children: ReactNode\n}\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: ForwardedRef<HTMLDivElement>) {\n let {role = 'group'} = props;\n let {panelProps, panelRef} = useContext(InternalDisclosureContext)!;\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosurePanel',\n values: {\n isFocusVisibleWithin\n }\n });\n return (\n <div\n ref={mergeRefs(ref, panelRef)}\n {...mergeProps(panelProps, focusWithinProps)}\n {...renderProps}\n role={role}\n data-focus-visible-within={isFocusVisibleWithin || undefined}>\n <Provider\n values={[\n [ButtonContext, null]\n ]}>\n {props.children}\n </Provider>\n </div>\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 */\nconst _Disclosure = /*#__PURE__*/ (forwardRef as forwardRefType)(Disclosure);\nexport {_Disclosure as Disclosure};\n\nconst _DisclosurePanel = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n"],"names":[],"version":3,"file":"Disclosure.module.js.map"}
1
+ {"mappings":"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","sources":["packages/react-aria-components/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 {AriaDisclosureProps, useDisclosure} from '@react-aria/disclosure';\nimport {ButtonContext} from './Button';\nimport {ContextValue, DEFAULT_SLOT, Provider, RenderProps, SlotProps, useContextProps, useRenderProps} from './utils';\nimport {DisclosureGroupState, DisclosureState, DisclosureGroupProps as StatelyDisclosureGroupProps, useDisclosureGroupState, useDisclosureState} from '@react-stately/disclosure';\nimport {DOMProps, forwardRefType, Key} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, mergeRefs, useId} from '@react-aria/utils';\nimport React, {createContext, DOMAttributes, ForwardedRef, forwardRef, ReactNode, useContext} from 'react';\nimport {useFocusRing} from 'react-aria';\n\nexport interface DisclosureGroupProps extends StatelyDisclosureGroupProps, RenderProps<DisclosureGroupRenderProps>, DOMProps {}\n\nexport interface DisclosureGroupRenderProps {\n /**\n * Whether the disclosure group is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure group.\n */\n state: DisclosureGroupState\n}\n\nexport const DisclosureGroupStateContext = createContext<DisclosureGroupState | null>(null);\n\nfunction DisclosureGroup(props: DisclosureGroupProps, ref: ForwardedRef<HTMLDivElement>) {\n let state = useDisclosureGroupState(props);\n\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosureGroup',\n values: {\n isDisabled: state.isDisabled,\n state\n }\n });\n\n let domProps = filterDOMProps(props);\n\n return (\n <div\n {...domProps}\n {...renderProps}\n ref={ref}\n data-disabled={props.isDisabled || undefined}>\n <DisclosureGroupStateContext.Provider value={state}>\n {renderProps.children}\n </DisclosureGroupStateContext.Provider>\n </div>\n );\n}\n\n/**\n * A DisclosureGroup is a grouping of related disclosures, sometimes called an Accordion.\n * It supports both single and multiple expanded items.\n */\nconst _DisclosureGroup = forwardRef(DisclosureGroup);\nexport {_DisclosureGroup as DisclosureGroup};\n\nexport interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {\n /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */\n id?: Key,\n /** The children of the component. A function may be provided to alter the children based on component state. */\n children: ReactNode | ((values: DisclosureRenderProps & {defaultChildren: ReactNode | undefined}) => ReactNode)\n}\n\nexport interface DisclosureRenderProps {\n /**\n * Whether the disclosure is expanded.\n * @selector [data-expanded]\n */\n isExpanded: boolean,\n /**\n * Whether the disclosure has keyboard focus.\n * @selector [data-focus-visible-within]\n */\n isFocusVisibleWithin: boolean,\n /**\n * Whether the disclosure is disabled.\n * @selector [data-disabled]\n */\n isDisabled: boolean,\n /**\n * State of the disclosure.\n */\n state: DisclosureState\n}\n\nexport const DisclosureContext = createContext<ContextValue<DisclosureProps, HTMLDivElement>>(null);\nexport const DisclosureStateContext = createContext<DisclosureState | null>(null);\n\ninterface InternalDisclosureContextValue {\n panelProps: DOMAttributes<HTMLElement>,\n panelRef: React.RefObject<HTMLDivElement | null>\n}\n\nconst InternalDisclosureContext = createContext<InternalDisclosureContextValue | null>(null);\n\nfunction Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {\n [props, ref] = useContextProps(props, ref, DisclosureContext);\n let groupState = useContext(DisclosureGroupStateContext);\n let {id, ...otherProps} = props;\n\n // Generate an id if one wasn't provided.\n // (can't pass id into useId since it can also be a number)\n let defaultId = useId();\n id ||= defaultId;\n\n let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;\n let state = useDisclosureState({\n ...props,\n isExpanded,\n onExpandedChange(isExpanded) {\n if (groupState) {\n groupState.toggleKey(id);\n }\n\n props.onExpandedChange?.(isExpanded);\n }\n });\n\n let panelRef = React.useRef<HTMLDivElement | null>(null);\n let isDisabled = props.isDisabled || groupState?.isDisabled || false;\n let {buttonProps, panelProps} = useDisclosure({\n ...props,\n isExpanded,\n isDisabled\n }, state, panelRef);\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n\n let renderProps = useRenderProps({\n ...props,\n id: undefined,\n defaultClassName: 'react-aria-Disclosure',\n values: {\n isExpanded: state.isExpanded,\n isDisabled,\n isFocusVisibleWithin,\n state\n }\n });\n\n let domProps = filterDOMProps(otherProps as any);\n\n return (\n <Provider\n values={[\n [ButtonContext, {\n slots: {\n [DEFAULT_SLOT]: {},\n trigger: buttonProps\n }\n }],\n [InternalDisclosureContext, {panelProps, panelRef}],\n [DisclosureStateContext, state]\n ]}>\n <div\n ref={ref}\n data-expanded={state.isExpanded || undefined}\n data-disabled={isDisabled || undefined}\n data-focus-visible-within={isFocusVisibleWithin || undefined}\n {...domProps}\n {...focusWithinProps}\n {...renderProps}>\n {renderProps.children}\n </div>\n </Provider>\n );\n}\n\nexport interface DisclosurePanelProps extends RenderProps<{}> {\n /**\n * The accessibility role for the disclosure's panel.\n * @default 'group'\n */\n role?: 'group' | 'region',\n /**\n * The children of the component.\n */\n children: ReactNode\n}\n\nfunction DisclosurePanel(props: DisclosurePanelProps, ref: ForwardedRef<HTMLDivElement>) {\n let {role = 'group'} = props;\n let {panelProps, panelRef} = useContext(InternalDisclosureContext)!;\n let {\n isFocusVisible: isFocusVisibleWithin,\n focusProps: focusWithinProps\n } = useFocusRing({within: true});\n let renderProps = useRenderProps({\n ...props,\n defaultClassName: 'react-aria-DisclosurePanel',\n values: {\n isFocusVisibleWithin\n }\n });\n return (\n <div\n ref={mergeRefs(ref, panelRef)}\n {...mergeProps(panelProps, focusWithinProps)}\n {...renderProps}\n role={role}\n data-focus-visible-within={isFocusVisibleWithin || undefined}>\n <Provider\n values={[\n [ButtonContext, null]\n ]}>\n {props.children}\n </Provider>\n </div>\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 */\nconst _Disclosure = /*#__PURE__*/ (forwardRef as forwardRefType)(Disclosure);\nexport {_Disclosure as Disclosure};\n\n/**\n * A DisclosurePanel provides the content for a disclosure.\n */\nconst _DisclosurePanel = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosurePanel);\nexport {_DisclosurePanel as DisclosurePanel};\n"],"names":[],"version":3,"file":"Disclosure.module.js.map"}
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/react-aria-components/src/Virtualizer.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 {CollectionBranchProps, CollectionRenderer, CollectionRendererContext, CollectionRootProps} from './Collection';\nimport {DropPosition, DropTarget, DropTargetDelegate, ItemDropTarget, Node} from '@react-types/shared';\nimport {Layout, ReusableView, useVirtualizerState, VirtualizerState} from '@react-stately/virtualizer';\nimport React, {createContext, ReactElement, ReactNode, useContext, useMemo} from 'react';\nimport {useScrollView, VirtualizerItem} from '@react-aria/virtualizer';\n\ntype View = ReusableView<Node<unknown>, ReactNode>;\n\nexport interface LayoutOptionsDelegate<O> {\n useLayoutOptions?(): O\n}\n\ninterface ILayout<O> extends Layout<Node<unknown>, O>, Partial<DropTargetDelegate>, LayoutOptionsDelegate<O> {}\n\nexport interface VirtualizerProps<O> {\n /** The child collection to virtualize (e.g. ListBox, GridList, or Table). */\n children: ReactNode,\n /** The layout object that determines the position and size of the visible elements. */\n layout: ILayout<O>,\n /** Options for the layout. */\n layoutOptions?: O\n}\n\nconst VirtualizerContext = createContext<VirtualizerState<any, any> | null>(null);\nconst LayoutContext = createContext<Pick<VirtualizerProps<any>, 'layout' | 'layoutOptions'> | null>(null);\n\nexport function Virtualizer<O>(props: VirtualizerProps<O>) {\n let {children, layout, layoutOptions} = props;\n let renderer: CollectionRenderer = useMemo(() => ({\n isVirtualized: true,\n layoutDelegate: layout,\n dropTargetDelegate: layout.getDropTargetFromPoint ? layout as DropTargetDelegate : undefined,\n CollectionRoot,\n CollectionBranch\n }), [layout]);\n\n return (\n <CollectionRendererContext.Provider value={renderer}>\n <LayoutContext.Provider value={{layout, layoutOptions}}>\n {children}\n </LayoutContext.Provider>\n </CollectionRendererContext.Provider>\n );\n}\n\nfunction CollectionRoot({collection, persistedKeys, scrollRef, renderDropIndicator}: CollectionRootProps) {\n let {layout, layoutOptions} = useContext(LayoutContext)!;\n let layoutOptions2 = layout.useLayoutOptions?.();\n let state = useVirtualizerState({\n layout,\n collection,\n renderView: (type, item) => {\n return item?.render?.(item);\n },\n onVisibleRectChange(rect) {\n let element = scrollRef?.current;\n if (element) {\n element.scrollLeft = rect.x;\n element.scrollTop = rect.y;\n }\n },\n persistedKeys,\n layoutOptions: useMemo(() => {\n if (layoutOptions && layoutOptions2) {\n return {...layoutOptions, ...layoutOptions2};\n }\n return layoutOptions || layoutOptions2;\n }, [layoutOptions, layoutOptions2])\n });\n\n let {contentProps} = useScrollView({\n onVisibleRectChange: state.setVisibleRect,\n contentSize: state.contentSize,\n onScrollStart: state.startScrolling,\n onScrollEnd: state.endScrolling\n }, scrollRef!);\n\n if (state.contentSize.area === 0) {\n return null;\n }\n\n return (\n <div {...contentProps}>\n <VirtualizerContext.Provider value={state}>\n {renderChildren(null, state.visibleViews, renderDropIndicator)}\n </VirtualizerContext.Provider>\n </div>\n );\n}\n\nfunction CollectionBranch({parent, renderDropIndicator}: CollectionBranchProps) {\n let virtualizer = useContext(VirtualizerContext);\n let parentView = virtualizer!.virtualizer.getVisibleView(parent.key)!;\n return renderChildren(parentView, Array.from(parentView.children), renderDropIndicator);\n}\n\nfunction renderChildren(parent: View | null, children: View[], renderDropIndicator?: (target: ItemDropTarget) => ReactNode) {\n return children.map(view => renderWrapper(parent, view, renderDropIndicator));\n}\n\nfunction renderWrapper(\n parent: View | null,\n reusableView: View,\n renderDropIndicator?: (target: ItemDropTarget) => ReactNode\n): ReactElement {\n let rendered = (\n <VirtualizerItem\n key={reusableView.key}\n layoutInfo={reusableView.layoutInfo!}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {reusableView.rendered}\n </VirtualizerItem>\n );\n\n let {collection, layout} = reusableView.virtualizer;\n let {key, type} = reusableView.content;\n if (type === 'item' && renderDropIndicator && layout.getDropTargetLayoutInfo) {\n rendered = (\n <React.Fragment key={reusableView.key}>\n {renderDropIndicatorWrapper(parent, reusableView, 'before', renderDropIndicator)}\n {rendered}\n {collection.getKeyAfter(key) == null && renderDropIndicatorWrapper(parent, reusableView, 'after', renderDropIndicator)}\n </React.Fragment>\n );\n }\n\n return rendered;\n}\n\nfunction renderDropIndicatorWrapper(\n parent: View | null,\n reusableView: View,\n dropPosition: DropPosition,\n renderDropIndicator: (target: ItemDropTarget) => ReactNode\n) {\n let target: DropTarget = {type: 'item', key: reusableView.content.key, dropPosition};\n let indicator = renderDropIndicator(target);\n if (indicator) {\n let layoutInfo = reusableView.virtualizer.layout.getDropTargetLayoutInfo!(target);\n indicator = (\n <VirtualizerItem\n layoutInfo={layoutInfo}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {indicator}\n </VirtualizerItem>\n );\n }\n \n return indicator;\n}\n"],"names":[],"version":3,"file":"Virtualizer.main.js.map"}
1
+ {"mappings":"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","sources":["packages/react-aria-components/src/Virtualizer.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 {CollectionBranchProps, CollectionRenderer, CollectionRendererContext, CollectionRootProps} from './Collection';\nimport {DropPosition, DropTarget, DropTargetDelegate, ItemDropTarget, Node} from '@react-types/shared';\nimport {Layout, ReusableView, useVirtualizerState, VirtualizerState} from '@react-stately/virtualizer';\nimport React, {createContext, ReactElement, ReactNode, useContext, useMemo} from 'react';\nimport {useScrollView, VirtualizerItem} from '@react-aria/virtualizer';\n\ntype View = ReusableView<Node<unknown>, ReactNode>;\n\nexport interface LayoutOptionsDelegate<O> {\n useLayoutOptions?(): O\n}\n\ninterface ILayout<O> extends Layout<Node<unknown>, O>, Partial<DropTargetDelegate>, LayoutOptionsDelegate<O> {}\n\nexport interface VirtualizerProps<O> {\n /** The child collection to virtualize (e.g. ListBox, GridList, or Table). */\n children: ReactNode,\n /** The layout object that determines the position and size of the visible elements. */\n layout: ILayout<O>,\n /** Options for the layout. */\n layoutOptions?: O\n}\n\nconst VirtualizerContext = createContext<VirtualizerState<any, any> | null>(null);\nconst LayoutContext = createContext<Pick<VirtualizerProps<any>, 'layout' | 'layoutOptions'> | null>(null);\n\nexport function Virtualizer<O>(props: VirtualizerProps<O>) {\n let {children, layout, layoutOptions} = props;\n let renderer: CollectionRenderer = useMemo(() => ({\n isVirtualized: true,\n layoutDelegate: layout,\n dropTargetDelegate: layout.getDropTargetFromPoint ? layout as DropTargetDelegate : undefined,\n CollectionRoot,\n CollectionBranch\n }), [layout]);\n\n return (\n <CollectionRendererContext.Provider value={renderer}>\n <LayoutContext.Provider value={{layout, layoutOptions}}>\n {children}\n </LayoutContext.Provider>\n </CollectionRendererContext.Provider>\n );\n}\n\nfunction CollectionRoot({collection, persistedKeys, scrollRef, renderDropIndicator}: CollectionRootProps) {\n let {layout, layoutOptions} = useContext(LayoutContext)!;\n let layoutOptions2 = layout.useLayoutOptions?.();\n let state = useVirtualizerState({\n layout,\n collection,\n renderView: (type, item) => {\n return item?.render?.(item);\n },\n onVisibleRectChange(rect) {\n let element = scrollRef?.current;\n if (element) {\n element.scrollLeft = rect.x;\n element.scrollTop = rect.y;\n }\n },\n persistedKeys,\n layoutOptions: useMemo(() => {\n if (layoutOptions && layoutOptions2) {\n return {...layoutOptions, ...layoutOptions2};\n }\n return layoutOptions || layoutOptions2;\n }, [layoutOptions, layoutOptions2])\n });\n\n let {contentProps} = useScrollView({\n onVisibleRectChange: state.setVisibleRect,\n contentSize: state.contentSize,\n onScrollStart: state.startScrolling,\n onScrollEnd: state.endScrolling\n }, scrollRef!);\n\n if (state.contentSize.area === 0) {\n return null;\n }\n\n return (\n <div {...contentProps}>\n <VirtualizerContext.Provider value={state}>\n {renderChildren(null, state.visibleViews, renderDropIndicator)}\n </VirtualizerContext.Provider>\n </div>\n );\n}\n\nfunction CollectionBranch({parent, renderDropIndicator}: CollectionBranchProps) {\n let virtualizer = useContext(VirtualizerContext);\n let parentView = virtualizer!.virtualizer.getVisibleView(parent.key)!;\n return renderChildren(parentView, Array.from(parentView.children), renderDropIndicator);\n}\n\nfunction renderChildren(parent: View | null, children: View[], renderDropIndicator?: (target: ItemDropTarget) => ReactNode) {\n return children.map(view => renderWrapper(parent, view, renderDropIndicator));\n}\n\nfunction renderWrapper(\n parent: View | null,\n reusableView: View,\n renderDropIndicator?: (target: ItemDropTarget) => ReactNode\n): ReactElement {\n let rendered = (\n <VirtualizerItem\n key={reusableView.key}\n layoutInfo={reusableView.layoutInfo!}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {reusableView.rendered}\n </VirtualizerItem>\n );\n\n let {collection, layout} = reusableView.virtualizer;\n let {key, type} = reusableView.content;\n if (type === 'item' && renderDropIndicator && layout.getDropTargetLayoutInfo) {\n rendered = (\n <React.Fragment key={reusableView.key}>\n {renderDropIndicatorWrapper(parent, reusableView, 'before', renderDropIndicator)}\n {rendered}\n {collection.getKeyAfter(key) == null && renderDropIndicatorWrapper(parent, reusableView, 'after', renderDropIndicator)}\n </React.Fragment>\n );\n }\n\n return rendered;\n}\n\nfunction renderDropIndicatorWrapper(\n parent: View | null,\n reusableView: View,\n dropPosition: DropPosition,\n renderDropIndicator: (target: ItemDropTarget) => ReactNode\n) {\n let target: DropTarget = {type: 'item', key: reusableView.content.key, dropPosition};\n let indicator = renderDropIndicator(target);\n if (indicator) {\n let layoutInfo = reusableView.virtualizer.layout.getDropTargetLayoutInfo!(target);\n indicator = (\n <VirtualizerItem\n layoutInfo={layoutInfo}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {indicator}\n </VirtualizerItem>\n );\n }\n\n return indicator;\n}\n"],"names":[],"version":3,"file":"Virtualizer.main.js.map"}
@@ -1 +1 @@
1
- {"mappings":";;;;;AAAA;;;;;;;;;;CAUC;;;;AAyBD,MAAM,yDAAqB,CAAA,GAAA,oBAAY,EAAqC;AAC5E,MAAM,oDAAgB,CAAA,GAAA,oBAAY,EAAkE;AAE7F,SAAS,0CAAe,KAA0B;IACvD,IAAI,YAAC,QAAQ,UAAE,MAAM,iBAAE,aAAa,EAAC,GAAG;IACxC,IAAI,WAA+B,CAAA,GAAA,cAAM,EAAE,IAAO,CAAA;YAChD,eAAe;YACf,gBAAgB;YAChB,oBAAoB,OAAO,sBAAsB,GAAG,SAA+B;4BACnF;8BACA;QACF,CAAA,GAAI;QAAC;KAAO;IAEZ,qBACE,gCAAC,CAAA,GAAA,yCAAwB,EAAE,QAAQ;QAAC,OAAO;qBACzC,gCAAC,oCAAc,QAAQ;QAAC,OAAO;oBAAC;2BAAQ;QAAa;OAClD;AAIT;AAEA,SAAS,qCAAe,cAAC,UAAU,iBAAE,aAAa,aAAE,SAAS,uBAAE,mBAAmB,EAAsB;QAEjF;IADrB,IAAI,UAAC,MAAM,iBAAE,aAAa,EAAC,GAAG,CAAA,GAAA,iBAAS,EAAE;IACzC,IAAI,kBAAiB,2BAAA,OAAO,gBAAgB,cAAvB,+CAAA,8BAAA;IACrB,IAAI,QAAQ,CAAA,GAAA,0BAAkB,EAAE;gBAC9B;oBACA;QACA,YAAY,CAAC,MAAM;gBACV;YAAP,OAAO,iBAAA,4BAAA,eAAA,KAAM,MAAM,cAAZ,mCAAA,kBAAA,MAAe;QACxB;QACA,qBAAoB,IAAI;YACtB,IAAI,UAAU,sBAAA,gCAAA,UAAW,OAAO;YAChC,IAAI,SAAS;gBACX,QAAQ,UAAU,GAAG,KAAK,CAAC;gBAC3B,QAAQ,SAAS,GAAG,KAAK,CAAC;YAC5B;QACF;uBACA;QACA,eAAe,CAAA,GAAA,cAAM,EAAE;YACrB,IAAI,iBAAiB,gBACnB,OAAO;gBAAC,GAAG,aAAa;gBAAE,GAAG,cAAc;YAAA;YAE7C,OAAO,iBAAiB;QAC1B,GAAG;YAAC;YAAe;SAAe;IACpC;IAEA,IAAI,gBAAC,YAAY,EAAC,GAAG,CAAA,GAAA,oBAAY,EAAE;QACjC,qBAAqB,MAAM,cAAc;QACzC,aAAa,MAAM,WAAW;QAC9B,eAAe,MAAM,cAAc;QACnC,aAAa,MAAM,YAAY;IACjC,GAAG;IAEH,IAAI,MAAM,WAAW,CAAC,IAAI,KAAK,GAC7B,OAAO;IAGT,qBACE,gCAAC,OAAQ,4BACP,gCAAC,yCAAmB,QAAQ;QAAC,OAAO;OACjC,qCAAe,MAAM,MAAM,YAAY,EAAE;AAIlD;AAEA,SAAS,uCAAiB,UAAC,MAAM,uBAAE,mBAAmB,EAAwB;IAC5E,IAAI,cAAc,CAAA,GAAA,iBAAS,EAAE;IAC7B,IAAI,aAAa,YAAa,WAAW,CAAC,cAAc,CAAC,OAAO,GAAG;IACnE,OAAO,qCAAe,YAAY,MAAM,IAAI,CAAC,WAAW,QAAQ,GAAG;AACrE;AAEA,SAAS,qCAAe,MAAmB,EAAE,QAAgB,EAAE,mBAA2D;IACxH,OAAO,SAAS,GAAG,CAAC,CAAA,OAAQ,oCAAc,QAAQ,MAAM;AAC1D;AAEA,SAAS,oCACP,MAAmB,EACnB,YAAkB,EAClB,mBAA2D;IAE3D,IAAI,yBACF,gCAAC,CAAA,GAAA,sBAAc;QACb,KAAK,aAAa,GAAG;QACrB,YAAY,aAAa,UAAU;QACnC,aAAa,aAAa,WAAW;QACrC,MAAM,EAAE,mBAAA,6BAAA,OAAQ,UAAU;OACzB,aAAa,QAAQ;IAI1B,IAAI,cAAC,UAAU,UAAE,MAAM,EAAC,GAAG,aAAa,WAAW;IACnD,IAAI,OAAC,GAAG,QAAE,IAAI,EAAC,GAAG,aAAa,OAAO;IACtC,IAAI,SAAS,UAAU,uBAAuB,OAAO,uBAAuB,EAC1E,yBACE,gCAAC,CAAA,GAAA,YAAI,EAAE,QAAQ;QAAC,KAAK,aAAa,GAAG;OAClC,iDAA2B,QAAQ,cAAc,UAAU,sBAC3D,UACA,WAAW,WAAW,CAAC,QAAQ,QAAQ,iDAA2B,QAAQ,cAAc,SAAS;IAKxG,OAAO;AACT;AAEA,SAAS,iDACP,MAAmB,EACnB,YAAkB,EAClB,YAA0B,EAC1B,mBAA0D;IAE1D,IAAI,SAAqB;QAAC,MAAM;QAAQ,KAAK,aAAa,OAAO,CAAC,GAAG;sBAAE;IAAY;IACnF,IAAI,YAAY,oBAAoB;IACpC,IAAI,WAAW;QACb,IAAI,aAAa,aAAa,WAAW,CAAC,MAAM,CAAC,uBAAuB,CAAE;QAC1E,0BACE,gCAAC,CAAA,GAAA,sBAAc;YACb,YAAY;YACZ,aAAa,aAAa,WAAW;YACrC,MAAM,EAAE,mBAAA,6BAAA,OAAQ,UAAU;WACzB;IAGP;IAEA,OAAO;AACT","sources":["packages/react-aria-components/src/Virtualizer.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 {CollectionBranchProps, CollectionRenderer, CollectionRendererContext, CollectionRootProps} from './Collection';\nimport {DropPosition, DropTarget, DropTargetDelegate, ItemDropTarget, Node} from '@react-types/shared';\nimport {Layout, ReusableView, useVirtualizerState, VirtualizerState} from '@react-stately/virtualizer';\nimport React, {createContext, ReactElement, ReactNode, useContext, useMemo} from 'react';\nimport {useScrollView, VirtualizerItem} from '@react-aria/virtualizer';\n\ntype View = ReusableView<Node<unknown>, ReactNode>;\n\nexport interface LayoutOptionsDelegate<O> {\n useLayoutOptions?(): O\n}\n\ninterface ILayout<O> extends Layout<Node<unknown>, O>, Partial<DropTargetDelegate>, LayoutOptionsDelegate<O> {}\n\nexport interface VirtualizerProps<O> {\n /** The child collection to virtualize (e.g. ListBox, GridList, or Table). */\n children: ReactNode,\n /** The layout object that determines the position and size of the visible elements. */\n layout: ILayout<O>,\n /** Options for the layout. */\n layoutOptions?: O\n}\n\nconst VirtualizerContext = createContext<VirtualizerState<any, any> | null>(null);\nconst LayoutContext = createContext<Pick<VirtualizerProps<any>, 'layout' | 'layoutOptions'> | null>(null);\n\nexport function Virtualizer<O>(props: VirtualizerProps<O>) {\n let {children, layout, layoutOptions} = props;\n let renderer: CollectionRenderer = useMemo(() => ({\n isVirtualized: true,\n layoutDelegate: layout,\n dropTargetDelegate: layout.getDropTargetFromPoint ? layout as DropTargetDelegate : undefined,\n CollectionRoot,\n CollectionBranch\n }), [layout]);\n\n return (\n <CollectionRendererContext.Provider value={renderer}>\n <LayoutContext.Provider value={{layout, layoutOptions}}>\n {children}\n </LayoutContext.Provider>\n </CollectionRendererContext.Provider>\n );\n}\n\nfunction CollectionRoot({collection, persistedKeys, scrollRef, renderDropIndicator}: CollectionRootProps) {\n let {layout, layoutOptions} = useContext(LayoutContext)!;\n let layoutOptions2 = layout.useLayoutOptions?.();\n let state = useVirtualizerState({\n layout,\n collection,\n renderView: (type, item) => {\n return item?.render?.(item);\n },\n onVisibleRectChange(rect) {\n let element = scrollRef?.current;\n if (element) {\n element.scrollLeft = rect.x;\n element.scrollTop = rect.y;\n }\n },\n persistedKeys,\n layoutOptions: useMemo(() => {\n if (layoutOptions && layoutOptions2) {\n return {...layoutOptions, ...layoutOptions2};\n }\n return layoutOptions || layoutOptions2;\n }, [layoutOptions, layoutOptions2])\n });\n\n let {contentProps} = useScrollView({\n onVisibleRectChange: state.setVisibleRect,\n contentSize: state.contentSize,\n onScrollStart: state.startScrolling,\n onScrollEnd: state.endScrolling\n }, scrollRef!);\n\n if (state.contentSize.area === 0) {\n return null;\n }\n\n return (\n <div {...contentProps}>\n <VirtualizerContext.Provider value={state}>\n {renderChildren(null, state.visibleViews, renderDropIndicator)}\n </VirtualizerContext.Provider>\n </div>\n );\n}\n\nfunction CollectionBranch({parent, renderDropIndicator}: CollectionBranchProps) {\n let virtualizer = useContext(VirtualizerContext);\n let parentView = virtualizer!.virtualizer.getVisibleView(parent.key)!;\n return renderChildren(parentView, Array.from(parentView.children), renderDropIndicator);\n}\n\nfunction renderChildren(parent: View | null, children: View[], renderDropIndicator?: (target: ItemDropTarget) => ReactNode) {\n return children.map(view => renderWrapper(parent, view, renderDropIndicator));\n}\n\nfunction renderWrapper(\n parent: View | null,\n reusableView: View,\n renderDropIndicator?: (target: ItemDropTarget) => ReactNode\n): ReactElement {\n let rendered = (\n <VirtualizerItem\n key={reusableView.key}\n layoutInfo={reusableView.layoutInfo!}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {reusableView.rendered}\n </VirtualizerItem>\n );\n\n let {collection, layout} = reusableView.virtualizer;\n let {key, type} = reusableView.content;\n if (type === 'item' && renderDropIndicator && layout.getDropTargetLayoutInfo) {\n rendered = (\n <React.Fragment key={reusableView.key}>\n {renderDropIndicatorWrapper(parent, reusableView, 'before', renderDropIndicator)}\n {rendered}\n {collection.getKeyAfter(key) == null && renderDropIndicatorWrapper(parent, reusableView, 'after', renderDropIndicator)}\n </React.Fragment>\n );\n }\n\n return rendered;\n}\n\nfunction renderDropIndicatorWrapper(\n parent: View | null,\n reusableView: View,\n dropPosition: DropPosition,\n renderDropIndicator: (target: ItemDropTarget) => ReactNode\n) {\n let target: DropTarget = {type: 'item', key: reusableView.content.key, dropPosition};\n let indicator = renderDropIndicator(target);\n if (indicator) {\n let layoutInfo = reusableView.virtualizer.layout.getDropTargetLayoutInfo!(target);\n indicator = (\n <VirtualizerItem\n layoutInfo={layoutInfo}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {indicator}\n </VirtualizerItem>\n );\n }\n \n return indicator;\n}\n"],"names":[],"version":3,"file":"Virtualizer.module.js.map"}
1
+ {"mappings":"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","sources":["packages/react-aria-components/src/Virtualizer.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 {CollectionBranchProps, CollectionRenderer, CollectionRendererContext, CollectionRootProps} from './Collection';\nimport {DropPosition, DropTarget, DropTargetDelegate, ItemDropTarget, Node} from '@react-types/shared';\nimport {Layout, ReusableView, useVirtualizerState, VirtualizerState} from '@react-stately/virtualizer';\nimport React, {createContext, ReactElement, ReactNode, useContext, useMemo} from 'react';\nimport {useScrollView, VirtualizerItem} from '@react-aria/virtualizer';\n\ntype View = ReusableView<Node<unknown>, ReactNode>;\n\nexport interface LayoutOptionsDelegate<O> {\n useLayoutOptions?(): O\n}\n\ninterface ILayout<O> extends Layout<Node<unknown>, O>, Partial<DropTargetDelegate>, LayoutOptionsDelegate<O> {}\n\nexport interface VirtualizerProps<O> {\n /** The child collection to virtualize (e.g. ListBox, GridList, or Table). */\n children: ReactNode,\n /** The layout object that determines the position and size of the visible elements. */\n layout: ILayout<O>,\n /** Options for the layout. */\n layoutOptions?: O\n}\n\nconst VirtualizerContext = createContext<VirtualizerState<any, any> | null>(null);\nconst LayoutContext = createContext<Pick<VirtualizerProps<any>, 'layout' | 'layoutOptions'> | null>(null);\n\nexport function Virtualizer<O>(props: VirtualizerProps<O>) {\n let {children, layout, layoutOptions} = props;\n let renderer: CollectionRenderer = useMemo(() => ({\n isVirtualized: true,\n layoutDelegate: layout,\n dropTargetDelegate: layout.getDropTargetFromPoint ? layout as DropTargetDelegate : undefined,\n CollectionRoot,\n CollectionBranch\n }), [layout]);\n\n return (\n <CollectionRendererContext.Provider value={renderer}>\n <LayoutContext.Provider value={{layout, layoutOptions}}>\n {children}\n </LayoutContext.Provider>\n </CollectionRendererContext.Provider>\n );\n}\n\nfunction CollectionRoot({collection, persistedKeys, scrollRef, renderDropIndicator}: CollectionRootProps) {\n let {layout, layoutOptions} = useContext(LayoutContext)!;\n let layoutOptions2 = layout.useLayoutOptions?.();\n let state = useVirtualizerState({\n layout,\n collection,\n renderView: (type, item) => {\n return item?.render?.(item);\n },\n onVisibleRectChange(rect) {\n let element = scrollRef?.current;\n if (element) {\n element.scrollLeft = rect.x;\n element.scrollTop = rect.y;\n }\n },\n persistedKeys,\n layoutOptions: useMemo(() => {\n if (layoutOptions && layoutOptions2) {\n return {...layoutOptions, ...layoutOptions2};\n }\n return layoutOptions || layoutOptions2;\n }, [layoutOptions, layoutOptions2])\n });\n\n let {contentProps} = useScrollView({\n onVisibleRectChange: state.setVisibleRect,\n contentSize: state.contentSize,\n onScrollStart: state.startScrolling,\n onScrollEnd: state.endScrolling\n }, scrollRef!);\n\n if (state.contentSize.area === 0) {\n return null;\n }\n\n return (\n <div {...contentProps}>\n <VirtualizerContext.Provider value={state}>\n {renderChildren(null, state.visibleViews, renderDropIndicator)}\n </VirtualizerContext.Provider>\n </div>\n );\n}\n\nfunction CollectionBranch({parent, renderDropIndicator}: CollectionBranchProps) {\n let virtualizer = useContext(VirtualizerContext);\n let parentView = virtualizer!.virtualizer.getVisibleView(parent.key)!;\n return renderChildren(parentView, Array.from(parentView.children), renderDropIndicator);\n}\n\nfunction renderChildren(parent: View | null, children: View[], renderDropIndicator?: (target: ItemDropTarget) => ReactNode) {\n return children.map(view => renderWrapper(parent, view, renderDropIndicator));\n}\n\nfunction renderWrapper(\n parent: View | null,\n reusableView: View,\n renderDropIndicator?: (target: ItemDropTarget) => ReactNode\n): ReactElement {\n let rendered = (\n <VirtualizerItem\n key={reusableView.key}\n layoutInfo={reusableView.layoutInfo!}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {reusableView.rendered}\n </VirtualizerItem>\n );\n\n let {collection, layout} = reusableView.virtualizer;\n let {key, type} = reusableView.content;\n if (type === 'item' && renderDropIndicator && layout.getDropTargetLayoutInfo) {\n rendered = (\n <React.Fragment key={reusableView.key}>\n {renderDropIndicatorWrapper(parent, reusableView, 'before', renderDropIndicator)}\n {rendered}\n {collection.getKeyAfter(key) == null && renderDropIndicatorWrapper(parent, reusableView, 'after', renderDropIndicator)}\n </React.Fragment>\n );\n }\n\n return rendered;\n}\n\nfunction renderDropIndicatorWrapper(\n parent: View | null,\n reusableView: View,\n dropPosition: DropPosition,\n renderDropIndicator: (target: ItemDropTarget) => ReactNode\n) {\n let target: DropTarget = {type: 'item', key: reusableView.content.key, dropPosition};\n let indicator = renderDropIndicator(target);\n if (indicator) {\n let layoutInfo = reusableView.virtualizer.layout.getDropTargetLayoutInfo!(target);\n indicator = (\n <VirtualizerItem\n layoutInfo={layoutInfo}\n virtualizer={reusableView.virtualizer}\n parent={parent?.layoutInfo}>\n {indicator}\n </VirtualizerItem>\n );\n }\n\n return indicator;\n}\n"],"names":[],"version":3,"file":"Virtualizer.module.js.map"}
package/dist/types.d.ts CHANGED
@@ -665,7 +665,7 @@ export interface BreadcrumbRenderProps {
665
665
  isCurrent: boolean;
666
666
  /**
667
667
  * Whether the breadcrumb is disabled.
668
- * @selector [data-current]
668
+ * @selector [data-disabled]
669
669
  */
670
670
  isDisabled: boolean;
671
671
  }
@@ -728,10 +728,10 @@ export interface ButtonRenderProps {
728
728
  */
729
729
  isDisabled: boolean;
730
730
  /**
731
- * If the button is currently in the `isPending` state.
731
+ * Whether the button is currently in a pending state.
732
732
  * @selector [data-pending]
733
733
  */
734
- isPending?: boolean;
734
+ isPending: boolean;
735
735
  }
736
736
  export interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {
737
737
  /**
@@ -757,7 +757,8 @@ export interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' |
757
757
  /** The value associated with the button's name when it's submitted with the form data. */
758
758
  value?: string;
759
759
  /**
760
- * Whether to disable events immediately and display the `ProgressBar`.
760
+ * Whether the button is in a pending state. This disables press and hover events
761
+ * while retaining focusability, and announces the pending state to screen readers.
761
762
  */
762
763
  isPending?: boolean;
763
764
  }
@@ -1531,6 +1532,10 @@ export const UNSTABLE_DisclosureGroup: React.ForwardRefExoticComponent<Disclosur
1531
1532
  export interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {
1532
1533
  /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */
1533
1534
  id?: Key;
1535
+ /** The children of the component. A function may be provided to alter the children based on component state. */
1536
+ children: ReactNode | ((values: DisclosureRenderProps & {
1537
+ defaultChildren: ReactNode | undefined;
1538
+ }) => ReactNode);
1534
1539
  }
1535
1540
  export interface DisclosureRenderProps {
1536
1541
  /**
@@ -1561,12 +1566,18 @@ export interface DisclosurePanelProps extends RenderProps<{}> {
1561
1566
  * @default 'group'
1562
1567
  */
1563
1568
  role?: 'group' | 'region';
1569
+ /**
1570
+ * The children of the component.
1571
+ */
1564
1572
  children: ReactNode;
1565
1573
  }
1566
1574
  /**
1567
1575
  * 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.
1568
1576
  */
1569
1577
  export const UNSTABLE_Disclosure: (props: DisclosureProps & React.RefAttributes<HTMLDivElement>) => React.ReactElement | null;
1578
+ /**
1579
+ * A DisclosurePanel provides the content for a disclosure.
1580
+ */
1570
1581
  export const UNSTABLE_DisclosurePanel: (props: DisclosurePanelProps & React.RefAttributes<HTMLDivElement>) => React.ReactElement | null;
1571
1582
  export interface DropZoneRenderProps {
1572
1583
  /**
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/react-aria-components/src/packages/react-aria-components/src/utils.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Text.tsx","packages/react-aria-components/src/packages/react-aria-components/src/FieldError.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Form.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Label.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Checkbox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorThumb.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorArea.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Input.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Slider.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSlider.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorWheel.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Heading.tsx","packages/react-aria-components/src/packages/react-aria-components/src/RSPContexts.ts","packages/react-aria-components/src/packages/react-aria-components/src/Collection.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Link.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Breadcrumbs.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ProgressBar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Button.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Calendar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSwatch.tsx","packages/react-aria-components/src/packages/react-aria-components/src/useDragAndDrop.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DragAndDrop.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Header.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Separator.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ListBox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSwatchPicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorPicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Group.tsx","packages/react-aria-components/src/packages/react-aria-components/src/OverlayArrow.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Popover.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Dialog.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ComboBox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DateField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DatePicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Disclosure.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DropZone.tsx","packages/react-aria-components/src/packages/react-aria-components/src/FileTrigger.tsx","packages/react-aria-components/src/packages/react-aria-components/src/GridList.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Keyboard.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Menu.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Meter.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Modal.tsx","packages/react-aria-components/src/packages/react-aria-components/src/NumberField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/RadioGroup.tsx","packages/react-aria-components/src/packages/react-aria-components/src/SearchField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Select.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Switch.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Table.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Virtualizer.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TableLayout.ts","packages/react-aria-components/src/packages/react-aria-components/src/Tabs.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TagGroup.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TextArea.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TextField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ToggleButton.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Toolbar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Tooltip.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Tree.tsx","packages/react-aria-components/src/packages/react-aria-components/src/index.ts","packages/react-aria-components/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,"/*\n * Copyright 2022 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n// Mark as a client only package. This will cause a build time error if you try\n// to import it from a React Server Component in a framework like Next.js.\nimport 'client-only';\n\nexport {CheckboxContext, ColorAreaContext, ColorFieldContext, ColorSliderContext, ColorWheelContext, HeadingContext} from './RSPContexts';\n\nexport {Breadcrumbs, BreadcrumbsContext, Breadcrumb} from './Breadcrumbs';\nexport {Button, ButtonContext} from './Button';\nexport {Calendar, CalendarGrid, CalendarGridHeader, CalendarGridBody, CalendarHeaderCell, CalendarCell, RangeCalendar, CalendarContext, RangeCalendarContext, CalendarStateContext, RangeCalendarStateContext} from './Calendar';\nexport {Checkbox, CheckboxGroup, CheckboxGroupContext, CheckboxGroupStateContext} from './Checkbox';\nexport {ColorArea, ColorAreaStateContext} from './ColorArea';\nexport {ColorField, ColorFieldStateContext} from './ColorField';\nexport {ColorPicker, ColorPickerContext, ColorPickerStateContext} from './ColorPicker';\nexport {ColorSlider, ColorSliderStateContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerItem, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorThumb} from './ColorThumb';\nexport {ColorWheel, ColorWheelTrack, ColorWheelTrackContext, ColorWheelStateContext} from './ColorWheel';\nexport {ComboBox, ComboBoxContext, ComboBoxStateContext} from './ComboBox';\nexport {composeRenderProps, DEFAULT_SLOT, Provider, useContextProps, useSlottedContext} from './utils';\nexport {DateField, DateInput, DateSegment, TimeField, DateFieldContext, TimeFieldContext, DateFieldStateContext, TimeFieldStateContext} from './DateField';\nexport {DatePicker, DateRangePicker, DatePickerContext, DateRangePickerContext, DatePickerStateContext, DateRangePickerStateContext} from './DatePicker';\nexport {DialogTrigger, Dialog, DialogContext, OverlayTriggerStateContext} from './Dialog';\nexport {Disclosure as UNSTABLE_Disclosure, DisclosureGroup as UNSTABLE_DisclosureGroup, DisclosureGroupStateContext, DisclosurePanel as UNSTABLE_DisclosurePanel, DisclosureStateContext, DisclosureContext} from './Disclosure';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {FieldError, FieldErrorContext} from './FieldError';\nexport {FileTrigger} from './FileTrigger';\nexport {Form, FormContext} from './Form';\nexport {GridList, GridListItem, GridListContext} from './GridList';\nexport {Group, GroupContext} from './Group';\nexport {Header, HeaderContext} from './Header';\nexport {Heading} from './Heading';\nexport {Input, InputContext} from './Input';\nexport {Section, CollectionRendererContext as UNSTABLE_CollectionRendererContext, DefaultCollectionRenderer as UNSTABLE_DefaultCollectionRenderer} from './Collection';\nexport {Collection, createLeafComponent as UNSTABLE_createLeafComponent, createBranchComponent as UNSTABLE_createBranchComponent, CollectionBuilder as UNSTABLE_CollectionBuilder} from '@react-aria/collections';\nexport {Keyboard, KeyboardContext} from './Keyboard';\nexport {Label, LabelContext} from './Label';\nexport {Link, LinkContext} from './Link';\nexport {ListBox, ListBoxItem, ListBoxContext, ListStateContext} from './ListBox';\nexport {Menu, MenuItem, MenuTrigger, MenuContext, MenuStateContext, RootMenuTriggerStateContext, SubmenuTrigger} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {Modal, ModalOverlay, ModalContext} from './Modal';\nexport {NumberField, NumberFieldContext, NumberFieldStateContext} from './NumberField';\nexport {OverlayArrow} from './OverlayArrow';\nexport {Popover, PopoverContext} from './Popover';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {RadioGroup, Radio, RadioGroupContext, RadioContext, RadioGroupStateContext} from './RadioGroup';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {Select, SelectValue, SelectContext, SelectValueContext, SelectStateContext} from './Select';\nexport {Separator, SeparatorContext} from './Separator';\nexport {Slider, SliderOutput, SliderTrack, SliderThumb, SliderContext, SliderOutputContext, SliderTrackContext, SliderStateContext} from './Slider';\nexport {Switch, SwitchContext} from './Switch';\nexport {UNSTABLE_TableLoadingIndicator, Table, Row, Cell, Column, ColumnResizer, TableHeader, TableBody, TableContext, ResizableTableContainer, useTableOptions, TableStateContext, TableColumnResizeStateContext} from './Table';\nexport {TableLayout as UNSTABLE_TableLayout} from './TableLayout';\nexport {Tabs, TabList, TabPanel, Tab, TabsContext, TabListStateContext} from './Tabs';\nexport {TagGroup, TagGroupContext, TagList, TagListContext, Tag} from './TagGroup';\nexport {Text, TextContext} from './Text';\nexport {TextArea, TextAreaContext} from './TextArea';\nexport {TextField, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Toolbar, ToolbarContext} from './Toolbar';\nexport {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip';\nexport {UNSTABLE_TreeLoadingIndicator, UNSTABLE_Tree, UNSTABLE_TreeItem, UNSTABLE_TreeContext, UNSTABLE_TreeItemContent, UNSTABLE_TreeStateContext} from './Tree';\nexport {useDragAndDrop} from './useDragAndDrop';\nexport {DropIndicator, DropIndicatorContext, DragAndDropContext} from './DragAndDrop';\nexport {Virtualizer as UNSTABLE_Virtualizer} from './Virtualizer';\nexport {DIRECTORY_DRAG_TYPE, isDirectoryDropItem, isFileDropItem, isTextDropItem, SSRProvider, RouterProvider, I18nProvider, useLocale} from 'react-aria';\nexport {FormValidationContext} from 'react-stately';\nexport {parseColor, getColorChannels} from '@react-stately/color';\nexport {ListLayout as UNSTABLE_ListLayout, GridLayout as UNSTABLE_GridLayout} from '@react-stately/layout';\n\nexport type {BreadcrumbsProps, BreadcrumbProps, BreadcrumbRenderProps} from './Breadcrumbs';\nexport type {ButtonProps, ButtonRenderProps} from './Button';\nexport type {CalendarCellProps, CalendarProps, CalendarRenderProps, CalendarGridProps, CalendarGridHeaderProps, CalendarGridBodyProps, CalendarHeaderCellProps, CalendarCellRenderProps, RangeCalendarProps, RangeCalendarRenderProps} from './Calendar';\nexport type {CheckboxGroupProps, CheckboxGroupRenderProps, CheckboxRenderProps, CheckboxProps} from './Checkbox';\nexport type {ColorAreaProps, ColorAreaRenderProps} from './ColorArea';\nexport type {ColorFieldProps, ColorFieldRenderProps} from './ColorField';\nexport type {ColorSliderProps, ColorSliderRenderProps} from './ColorSlider';\nexport type {ColorSwatchProps, ColorSwatchRenderProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps, ColorSwatchPickerRenderProps, ColorSwatchPickerItemProps, ColorSwatchPickerItemRenderProps} from './ColorSwatchPicker';\nexport type {ColorThumbProps, ColorThumbRenderProps} from './ColorThumb';\nexport type {ColorPickerProps, ColorPickerRenderProps} from './ColorPicker';\nexport type {ColorWheelProps, ColorWheelRenderProps, ColorWheelTrackProps, ColorWheelTrackRenderProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxRenderProps} from './ComboBox';\nexport type {DateFieldProps, DateFieldRenderProps, DateInputProps, DateInputRenderProps, DateSegmentProps, DateSegmentRenderProps, TimeFieldProps} from './DateField';\nexport type {DatePickerProps, DatePickerRenderProps, DateRangePickerProps, DateRangePickerRenderProps} from './DatePicker';\nexport type {DialogProps, DialogTriggerProps} from './Dialog';\nexport type {DisclosureProps, DisclosureRenderProps, DisclosurePanelProps, DisclosureGroupProps, DisclosureGroupRenderProps} from './Disclosure';\nexport type {DropZoneProps, DropZoneRenderProps} from './DropZone';\nexport type {FieldErrorProps, FieldErrorRenderProps} from './FieldError';\nexport type {FileTriggerProps} from './FileTrigger';\nexport type {FormProps} from './Form';\nexport type {GridListProps, GridListRenderProps, GridListItemProps, GridListItemRenderProps} from './GridList';\nexport type {GroupProps, GroupRenderProps} from './Group';\nexport type {HeadingProps} from './Heading';\nexport type {InputProps, InputRenderProps} from './Input';\nexport type {SectionProps, CollectionRenderer} from './Collection';\nexport type {LabelProps} from './Label';\nexport type {LinkProps} from './Link';\nexport type {LinkRenderProps} from './Link';\nexport type {ListBoxProps, ListBoxRenderProps, ListBoxItemProps, ListBoxItemRenderProps} from './ListBox';\nexport type {MenuProps, MenuItemProps, MenuItemRenderProps, MenuTriggerProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps, MeterRenderProps} from './Meter';\nexport type {ModalOverlayProps, ModalRenderProps} from './Modal';\nexport type {NumberFieldProps, NumberFieldRenderProps} from './NumberField';\nexport type {OverlayArrowProps, OverlayArrowRenderProps} from './OverlayArrow';\nexport type {PopoverProps, PopoverRenderProps} from './Popover';\nexport type {ProgressBarProps, ProgressBarRenderProps} from './ProgressBar';\nexport type {RadioGroupProps, RadioGroupRenderProps, RadioProps, RadioRenderProps} from './RadioGroup';\nexport type {SearchFieldProps, SearchFieldRenderProps} from './SearchField';\nexport type {SelectProps, SelectValueProps, SelectValueRenderProps, SelectRenderProps} from './Select';\nexport type {SeparatorProps} from './Separator';\nexport type {SliderOutputProps, SliderProps, SliderRenderProps, SliderThumbProps, SliderTrackProps, SliderTrackRenderProps, SliderThumbRenderProps} from './Slider';\nexport type {SwitchProps, SwitchRenderProps} from './Switch';\nexport type {TableProps, TableRenderProps, TableHeaderProps, TableBodyProps, TableBodyRenderProps, ResizableTableContainerProps, ColumnProps, ColumnRenderProps, ColumnResizerProps, ColumnResizerRenderProps, RowProps, RowRenderProps, CellProps, CellRenderProps} from './Table';\nexport type {TabListProps, TabListRenderProps, TabPanelProps, TabPanelRenderProps, TabProps, TabsProps, TabRenderProps, TabsRenderProps} from './Tabs';\nexport type {TagGroupProps, TagListProps, TagListRenderProps, TagProps, TagRenderProps} from './TagGroup';\nexport type {TextAreaProps} from './TextArea';\nexport type {TextFieldProps, TextFieldRenderProps} from './TextField';\nexport type {TextProps} from './Text';\nexport type {ToggleButtonProps, ToggleButtonRenderProps} from './ToggleButton';\nexport type {ToolbarProps, ToolbarRenderProps} from './Toolbar';\nexport type {TooltipProps, TooltipRenderProps, TooltipTriggerComponentProps} from './Tooltip';\nexport type {TreeProps, TreeRenderProps, TreeItemProps, TreeItemRenderProps, TreeItemContentProps, TreeItemContentRenderProps} from './Tree';\nexport type {DragAndDropHooks, DragAndDropOptions} from './useDragAndDrop';\nexport type {DropIndicatorProps} from './DragAndDrop';\nexport type {ContextValue, SlotProps} from './utils';\nexport type {VirtualizerProps} from './Virtualizer';\n\nexport type {DateValue, DateRange, TimeValue} from 'react-aria';\nexport type {DirectoryDropItem, DraggableCollectionEndEvent, DraggableCollectionMoveEvent, DraggableCollectionStartEvent, DragPreviewRenderer, DragTypes, DropItem, DropOperation, DroppableCollectionDropEvent, DroppableCollectionEnterEvent, DroppableCollectionExitEvent, DroppableCollectionInsertDropEvent, DroppableCollectionMoveEvent, DroppableCollectionOnItemDropEvent, DroppableCollectionReorderEvent, DroppableCollectionRootDropEvent, DropPosition, DropTarget, FileDropItem, ItemDropTarget, RootDropTarget, TextDropItem, PressEvent} from 'react-aria';\nexport type {Key, Selection, SortDescriptor, SortDirection, SelectionMode} from 'react-stately';\nexport type {ValidationResult, RouterConfig} from '@react-types/shared';\nexport type {Color, ColorSpace, ColorFormat} from '@react-types/color';\nexport type {ListLayoutOptions, GridLayoutOptions} from '@react-stately/layout';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":";;;;;;;;;;;;;;;;;;AAiBA,OAAO,MAAM,2BAAgC,CAAC;AAE9C,uBAAuB,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC,CAAA;CACnC;AAED,yBAAgC,CAAC,IAAI,aAAa,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;AAC5E,yBAAyB,CAAC,EAAE,CAAC,IAAI,oBAAoB,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAEpE,mBAAmB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AACxC,oBAAoB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,IAC/C,CAAC,cAAc,CAAC,CAAC,CAAC,GAClB,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GACpC,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GACtD,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GACxE,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GAC1F,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GAC5G,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GAC9H,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GAChJ,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GAClK,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,GACpL,CAAC,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;AAE3M,wBAAwB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;IACrD,MAAM,EAAE,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IACxD,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,yBAAyB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAC,MAAM,EAAE,QAAQ,EAAC,EAAE,cAAc,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,GAAG,IAAI,OAAO,CAOzI;AAED;IACE,+GAA+G;IAC/G,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8GAA8G;IAC9G,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AAED,kBAA0B,SAAQ,UAAU,EAAE,UAAc;IAC1D,qCAAqC;IACrC,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,0BAAiC,CAAC,SAAS,OAAO;IAChD,oIAAoI;IACpI,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,KAAK,IAAI,CAAA;CACnC;AAED,2BAAkC,CAAC;IACjC,yLAAyL;IACzL,SAAS,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG;QAAC,gBAAgB,EAAE,MAAM,GAAG,SAAS,CAAA;KAAC,KAAK,MAAM,CAAC,CAAC;IACtF,wLAAwL;IACxL,KAAK,CAAC,EAAE,aAAa,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG;QAAC,YAAY,EAAE,aAAa,CAAA;KAAC,KAAK,aAAa,GAAG,SAAS,CAAC,CAAA;CACnG;AAED,sBAA6B,CAAC,CAAE,SAAQ,iBAAiB,CAAC,CAAC;IACzD,gHAAgH;IAChH,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG;QAAC,eAAe,EAAE,SAAS,GAAG,SAAS,CAAA;KAAC,KAAK,SAAS,CAAC,CAAA;CAC7F;AAsDD;;;GAGG;AACH,mCAAmC,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,CAAC,EAElD,KAAK,EAAE,CAAC,SAAS,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,EAC5D,IAAI,EAAE,CAAC,SAAS,EAAE,CAAC,EAAE,WAAW,EAAE,CAAC,KAAK,CAAC,GACxC,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAEvB;AAED,aAAoB,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAC,GAAG,CAAC,EAAE,aAAa,CAAC,CAAC,CAAA;CAAC,CAAC;AACxD;IACE;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CACrB;AAED,kCAAkC,CAAC,EAAE,OAAO,EAAE,QAAQ,oBAAoB,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,SAAS,CAqBzH;AAED,gCAAgC,CAAC,EAAE,CAAC,SAAS,SAAS,EAAE,CAAC,SAAS,OAAO,EAAE,KAAK,EAAE,CAAC,GAAG,SAAS,EAAE,GAAG,EAAE,aAAa,CAAC,CAAC,EAAE,OAAO,EAAE,QAAQ,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CA+BrL;AAgHD;IACE;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAA;CACvC;AC3TD,0BAA2B,SAAQ,eAAe,WAAW,CAAC;IAC5D,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,OAAO,MAAM,gEAAqE,CAAC;AASnF,OAAA,MAAM,mFAAwB,CAAC;ACV/B,OAAO,MAAM,kDAAgE,CAAC;AAE9E,sCAAuC,SAAQ,gBAAgB;CAAG;AAClE,gCAAiC,SAAQ,YAAY,qBAAqB,CAAC,EAAE,UAAQ;CAAG;AAWxF;;GAEG;AACH,OAAA,MAAM,+FAAoC,CAAC;AClB3C,0BAA2B,SAAQ,WAAe,EAAE,QAAQ;IAC1D;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAA;CACvC;AAED,OAAO,MAAM,oEAA2E,CAAC;AAgBzF;;;GAGG;AACH,OAAA,MAAM,uFAAwB,CAAC;AC/B/B,2BAA4B,SAAQ,oBAAoB,gBAAgB,CAAC;IACvE,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,OAAO,MAAM,uEAA4E,CAAC;AAS1F,OAAA,MAAM,+FAAqD,CAAC;ACN5D,mCAAoC,SAAQ,IAAI,CAAC,sBAAsB,EAAE,UAAU,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,wBAAwB,CAAC,EAAE,SAAS;CAAG;AAC9O,8BAA+B,SAAQ,IAAI,CAAC,iBAAiB,EAAE,UAAU,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,WAAW,EAAE,aAAa,EAAE,YAAY,mBAAmB,CAAC,EAAE,SAAS;IAC5L;;OAEG;IACH,QAAQ,CAAC,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,CAAA;CAC9C;AAED;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,kBAAkB,CAAA;CAC1B;AAED;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,eAAe,EAAE,OAAO,CAAC;IACzB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,OAAO,MAAM,qFAA4F,CAAC;AAC1G,OAAO,MAAM,4DAA0E,CAAC;AAyIxF;;;GAGG;AACH,OAAA,MAAM,qGAAkE,CAAC;AAEzE;;GAEG;AACH,OAAA,MAAM,6GAA4E,CAAC;ACxOnF;IACE;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;IACb;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,gCAAiC,SAAQ,aAAW,EAAE,YAAY,qBAAqB,CAAC;CAAG;AA4C3F;;GAEG;AACH,OAAA,MAAM,kGAAoC,CAAC;AChG3C;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,cAAc,CAAA;CACtB;AAED,+BAAgC,SAAQ,kBAAkB,EAAE,YAAY,oBAAoB,CAAC,EAAE,SAAS;CAAG;AAE3G,OAAO,MAAM,oDAAkE,CAAC;AAoDhF;;GAEG;AACH,OAAA,MAAM,gGAAkC,CAAC;AC7DzC;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,2BAA4B,SAAQ,IAAI,CAAC,oBAAoB,gBAAgB,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,EAAE,WAAW,EAAE,iBAAiB,gBAAgB,CAAC;CAAG;AAE1J,OAAO,MAAM,uEAA4E,CAAC;AA2C1F;;GAEG;AACH,OAAA,MAAM,+FAAqD,CAAC;ACnE5D;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,OAAO,EAAE,YAAY,GAAG,KAAK,CAAC;IAC9B;;OAEG;IACH,KAAK,EAAE,eAAe,CAAA;CACvB;AAED,gCAAiC,SAAQ,IAAI,CAAC,mBAAmB,EAAE,OAAO,GAAG,aAAa,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,qBAAqB,CAAC,EAAE,SAAS;IAClP;;;OAGG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;;OAGG;IACH,UAAU,CAAC,EAAE,UAAU,CAAA;CACxB;AAED,OAAO,MAAM,sDAAoE,CAAC;AAWlF;;GAEG;AACH,OAAA,MAAM,kGAAoC,CAAC;ACvD3C,6BAA6B,CAAC,GAAG,MAAM,GAAG,MAAM,EAAE,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,OAAO,CAAC,EAAE,YAAY,iBAAiB,CAAC,EAAE,SAAS;IACtI;;OAEG;IACH,aAAa,CAAC,EAAE,KAAK,mBAAmB,CAAA;CACzC;AAED,OAAO,MAAM,0FAA8E,CAAC;AAC5F,OAAO,MAAM,8CAA4D,CAAC;AAC1E,OAAO,MAAM,wFAA+F,CAAC;AAC7G,OAAO,MAAM,6FAAoG,CAAC;AAElH;IACE;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,WAAW,CAAA;CACnB;AAgDD;;GAEG;AACH,OAAA,MAAM,SAjDU,CAAC,SAAS,MAAM,GAAG,MAAM,EAAE,2FAiDyB,CAAC;AAGrE,kCAAmC,SAAQ,YAAY,iBAAiB,CAAC;CAAG;AAC5E,kCAAmC,SAAQ,IAAI,CAAC,qBAAqB,iBAAiB,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,OAAO,CAAC,EAAE,iBAAiB;CAAG;AA6BlJ;;GAEG;AACH,OAAA,MAAM,8GAA0E,CAAC;AAGjF,uCAAwC,SAAQ,iBAAiB;IAC/D;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,iCAAkC,SAAQ,WAAW,EAAE,YAAY,sBAAsB,CAAC;CAAG;AAC7F,iCAAkC,SAAQ,IAAI,CAAC,eAAe,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,OAAO,CAAC,EAAE,gBAAgB;CAAG;AA6BpI;;GAEG;AACH,OAAA,MAAM,yGAAwE,CAAC;AAG/E;IACE;;OAEG;IACH,KAAK,EAAE,WAAW,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,iCAAkC,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,GAAG,iBAAiB,CAAC,EAAE,WAAW,EAAE,YAAY,sBAAsB,CAAC;IACjJ;;OAEG;IACH,QAAQ,CAAC,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,CAAA;CAC9C;AA+DD;;GAEG;AACH,OAAA,MAAM,yGAAwE,CAAC;AChR/E;IACE;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAA;CACxB;AAED,iCAAkC,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,CAAC,EAAE,YAAY,sBAAsB,CAAC,EAAE,SAAS;CAAG;AAEhI,OAAO,MAAM,wDAAsE,CAAC;AA6DpF;;GAEG;AACH,OAAA,MAAM,oGAAsC,CAAC;ACvF7C;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,eAAe,CAAA;CACvB;AAED,gCAAiC,SAAQ,qBAAqB,EAAE,YAAY,qBAAqB,CAAC,EAAE,SAAS;CAAG;AAEhH,OAAO,MAAM,sDAAoE,CAAC;AA0ClF;;GAEG;AACH,OAAA,MAAM,kGAAoC,CAAC;AAG3C,2CAA4C,SAAQ,qBAAqB;CAAG;AAC5E,qCAAsC,SAAQ,iBAAiB,0BAA0B,CAAC;CAAG;AAC7F,qCAAsC,SAAQ,IAAI,CAAC,eAAe,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,OAAO,CAAC,EAAE,oBAAoB;CAAG;AAE5I,OAAO,MAAM,gGAAuG,CAAC;AAwBrH;;GAEG;AACH,OAAA,MAAM,4GAA8C,CAAC;ACrFrD,6BAA8B,SAAQ,eAAe,WAAW,CAAC;IAC/D,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAcD,OAAA,MAAM,gGAA8B,CAAC;ACLrC,OAAO,MAAM,uEAAoF,CAAC;AAClG,OAAO,MAAM,gFAA6F,CAAC;AAC3G,OAAO,MAAM,yEAAsF,CAAC;AACpG,OAAO,MAAM,oFAAiG,CAAC;AAC/G,OAAO,MAAM,kFAA+F,CAAC;AAC7G,OAAO,MAAM,uEAAkF,CAAC;ACfhG,0BAAiC,CAAC,CAAE,SAAQ,IAAI,CAAC,eAAe,CAAC,CAAC,EAAE,UAAU,CAAC;IAC7E,sCAAsC;IACtC,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,SAAS,CAAC,CAAC;IAChD,mFAAmF;IACnF,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;CACrB;AAED;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,aAAa,EAAE,aAAa,CAAC;IAC7B,iDAAiD;IACjD,iBAAiB,EAAE,iBAAiB,CAAC;IACrC;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,8BAA8B,CAAC,CAAE,SAAQ,IAAI,CAAC,eAAmB,CAAC,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC,EAAE,UAAU;IACpG,oCAAoC;IACpC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,gHAAgH;IAChH,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,2DAA2D;IAC3D,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,YAAY,CAAC,CAAC;IACnD,mFAAmF;IACnF,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;CACrB;AAQD,OAAO,MAAM,UAA0D,CAAC,SAAS,MAAM,yFAGrF,CAAC;AAEH;IACE,yCAAyC;IACzC,UAAU,EAAE,WAAY,KAAK,OAAO,CAAC,CAAC,CAAC;IACvC,8CAA8C;IAC9C,MAAM,EAAE,KAAK,OAAO,CAAC,CAAC;IACtB,8DAA8D;IAC9D,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,SAAS,CAAA;CAC5D;AAED,6BAAqC,SAAQ,eAAe,WAAW,CAAC;IACtE,yCAAyC;IACzC,UAAU,EAAE,WAAY,KAAK,OAAO,CAAC,CAAC,CAAC;IACvC,0EAA0E;IAC1E,aAAa,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IAChC,wDAAwD;IACxD,SAAS,CAAC,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,CAAC;IAC1C,8DAA8D;IAC9D,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,SAAS,CAAA;CAC5D;AAED;IACE,gDAAgD;IAChD,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,sFAAsF;IACtF,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,kGAAkG;IAClG,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,0DAA0D;IAC1D,cAAc,EAAE,MAAM,aAAa,CAAC,mBAAmB,CAAC,CAAC;IACxD,2DAA2D;IAC5D,gBAAgB,EAAE,MAAM,aAAa,CAAC,qBAAqB,CAAC,CAAA;CAC7D;AAED,OAAO,MAAM,oCAA2B,kBAOvC,CAAC;AA6BF,OAAO,MAAM,qEAAwF,CAAC;AC7JtG,0BAA2B,SAAQ,IAAI,CAAC,eAAe,EAAE,aAAa,CAAC,EAAE,WAAW,EAAE,YAAY,eAAe,CAAC,EAAE,SAAS;CAAG;AAEhI;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,OAAO,MAAM,sEAA6E,CAAC;AAwC3F;;;GAGG;AACH,OAAA,MAAM,8FAA0D,CAAC;AC3EjE,kCAAkC,CAAC,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC,EAAE,oBAAoB,EAAE,UAAU,EAAE,SAAS;IAChI,4CAA4C;IAC5C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,2DAA2D;IAC3D,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAA;CAC9B;AAED,OAAO,MAAM,wFAA+F,CAAC;AAyB7G;;GAEG;AACH,OAAA,MAAM,cA1Be,CAAC,SAAS,MAAM,kGA0ByC,CAAC;AAG/E;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,gCAAiC,SAAQ,YAAY,qBAAqB,CAAC;IACzE,yGAAyG;IACzG,EAAE,CAAC,EAAE,GAAG,CAAA;CACT;AAED;;GAEG;AACH,OAAO,MAAM,+FA6BX,CAAC;AC3FH,iCAAkC,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,CAAC,EAAE,YAAY,sBAAsB,CAAC,EAAE,SAAS;CAAG;AAEhI;IACE;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B;;;OAGG;IACH,eAAe,EAAE,OAAO,CAAA;CACzB;AAED,OAAO,MAAM,iFAAwF,CAAC;AAwCtG;;;GAGG;AACH,OAAA,MAAM,oGAAsC,CAAC;AC/C7C;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,4BAA6B,SAAQ,IAAI,CAAC,eAAe,EAAE,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,GAAG,aAAa,CAAC,EAAE,WAAW,EAAE,SAAS,EAAE,YAAY,iBAAiB,CAAC;IACxK;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,+DAA+D;IAC/D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2EAA2E;IAC3E,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,iEAAiE;IACjE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,4EAA4E;IAC5E,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,0FAA0F;IAC1F,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,4BAA6B,SAAQ,WAAW;IAC9C,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAID,OAAO,MAAM,iFAAsF,CAAC;AA4FpG;;GAEG;AACH,OAAA,MAAM,kGAAuD,CAAC;ACnK9D;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,aAAa,CAAC;IACrB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,yCAA0C,SAAQ,IAAI,CAAC,mBAAmB,EAAE,OAAO,CAAC;IAClF;;OAEG;IACH,KAAK,EAAE,kBAAkB,CAAA;CAC1B;AAED,+BAA+B,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,kBAAkB,CAAC,CAAC,EAAE,cAAc,GAAG,iBAAiB,CAAC,EAAE,YAAY,mBAAmB,CAAC,EAAE,SAAS;IACrK;;;OAGG;IACH,eAAe,CAAC,EAAE,YAAY,CAAA;CAC/B;AAED,oCAAoC,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,uBAAuB,CAAC,CAAC,EAAE,cAAc,GAAG,iBAAiB,CAAC,EAAE,YAAY,wBAAwB,CAAC,EAAE,SAAS;IACpL;;;OAGG;IACH,eAAe,CAAC,EAAE,YAAY,CAAA;CAC/B;AAED,OAAO,MAAM,gFAAqF,CAAC;AACnG,OAAO,MAAM,0FAA+F,CAAC;AAC7G,OAAO,MAAM,kDAAgE,CAAC;AAC9E,OAAO,MAAM,4DAA0E,CAAC;AAuExF;;GAEG;AACH,OAAA,MAAM,WAxEY,CAAC,SAAS,SAAS,6FAwEmC,CAAC;AA4EzE;;GAEG;AACH,OAAA,MAAM,gBA5EiB,CAAC,SAAS,SAAS,kGA4EwC,CAAC;AAGnF;IACE,yCAAyC;IACzC,IAAI,EAAE,YAAY,CAAC;IACnB,gEAAgE;IAChE,aAAa,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,gBAAgB,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;;OAKG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;;;;;;OASG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,kCAAmC,SAAQ,UAAU;IACnD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,YAAY,KAAK,YAAY,CAAC,CAAC;IAClF;;;;OAIG;IACH,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAA;CAC3C;AAiDD;;;GAGG;AACH,OAAA,MAAM,6GAA0E,CAAC;AAGjF,wCAAyC,SAAQ,UAAU;IACzD,wEAAwE;IACxE,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,YAAY,CAAA;CACxC;AAoBD;;GAEG;AACH,OAAA,MAAM,gIAA+F,CAAC;AAGtG,wCAAyC,SAAQ,QAAQ;CAAG;AAe5D;;GAEG;AACH,OAAA,MAAM,wHAA6D,CAAC;AAGpE,sCAAuC,SAAQ,UAAU;IACvD,gEAAgE;IAChE,QAAQ,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,YAAY,CAAA;CAC/C;AA8BD;;GAEG;AACH,OAAA,MAAM,4HAA2F,CAAC;AAGlG,kCAAmC,SAAQ,YAAY,uBAAuB,CAAC,EAAE,aAAW;IAC1F,sCAAsC;IACtC,IAAI,EAAE,YAAY,CAAA;CACnB;AA8DD;;GAEG;AACH,OAAA,MAAM,iHAA0E,CAAC;ACzhBjF;IACE,+BAA+B;IAC/B,KAAK,EAAE,KAAK,CAAA;CACb;AAED,iCAAkC,SAAQ,oBAAoB,EAAE,iBAAiB,sBAAsB,CAAC,EAAE,SAAS;CAAG;AAEtH,OAAO,MAAM,iFAAwF,CAAC;AAuBtG;;GAEG;AACH,OAAA,MAAM,oGAAsC,CAAC;ACO7C,sCAAuC,SAAQ,IAAI,CAAC,+BAA+B,EAAE,UAAU,CAAC;CAAG;AAEnG;IACE,2BAA2B,CAAC,EAAE,CAAC,KAAK,EAAE,4BAA4B,KAAK,wBAAwB,CAAC;IAChG,sBAAsB,CAAC,EAAE,CAAC,KAAK,EAAE,0BAA0B,EAAE,KAAK,EAAE,wBAAwB,EAAE,GAAG,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,KAAK,IAAI,CAAC;IAC1I,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,kBAAkB,EAAE,KAAK,EAAE,wBAAwB,KAAK,mBAAmB,CAAC;IACvG,WAAW,CAAC,EAAE,kBAAkB,CAAC;IACjC,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,IAAI,OAAO,CAAC;IACvD,iBAAiB,CAAC,EAAE,MAAM,OAAO,CAAA;CAClC;AAED;IACE,2BAA2B,CAAC,EAAE,CAAC,KAAK,EAAE,+BAA+B,KAAK,wBAAwB,CAAC;IACnG,sBAAsB,CAAC,EAAE,CAAC,KAAK,EAAE,0BAA0B,EAAE,KAAK,EAAE,wBAAwB,EAAE,GAAG,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,KAAK,yBAAyB,CAAC;IAC/J,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,oBAAoB,EAAE,KAAK,EAAE,wBAAwB,EAAE,GAAG,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,KAAK,mBAAmB,CAAC;IAC/I,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAsB,EAAE,KAAK,EAAE,wBAAwB,EAAE,GAAG,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,KAAK,iBAAiB,CAAC;IAC7I,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,OAAO,CAAC;IAC1D,kBAAkB,CAAC,EAAE,oBAAkB,CAAC;IACxC,wBAAwB,6BAA6B,CAAA;CACtD;AAED,+BAA+B,SAAS,GAAG,SAAS,CAAA;AAEpD;IACE,uDAAuD;IACvD,gBAAgB,EAAE,gBAAgB,CAAA;CACnC;AAED,mCAAoC,SAAQ,IAAI,CAAC,wBAAwB,EAAE,SAAS,GAAG,UAAU,CAAC,EAAE,wBAAwB;IAC1H;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE,CAAC;IAC1C;;;OAGG;IACH,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,IAAI,OAAO,CAAC;IACvD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,OAAO,CAAC;IAC1D,yGAAyG;IACzG,kBAAkB,CAAC,EAAE,oBAAkB,CAAC;IACxC,2DAA2D;IAC3D,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED;;GAEG;AACH,+BAA+B,OAAO,EAAE,kBAAkB,GAAG,WAAW,CAiDvE;ACnID;IACE,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,SAAS,CAAC,EAAE,wBAAwB,CAAC;IACrC,SAAS,CAAC,EAAE,wBAAwB,CAAA;CACrC;AAED,OAAO,MAAM,0DAA+D,CAAC;AAC7E,OAAO,MAAM,8DAA4E,CAAC;AAE1F;IACE;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAA;CACtB;AAED,mCAAoC,SAAQ,oBAAsB,EAAE,YAAY,wBAAwB,CAAC;CAAI;AAC7G;IACE,MAAM,EAAE,CAAC,KAAK,EAAE,kBAAkB,EAAE,GAAG,EAAE,aAAa,WAAW,CAAC,KAAK,SAAS,CAAA;CACjF;AAOD;;GAEG;AACH,OAAA,MAAM,qGAA0C,CAAC;AC/BjD,OAAO,MAAM,0FAAyF,CAAC;AAEvG,OAAO,MAAM,6GAOX,CAAC;ACPH,+BAAgC,SAAQ,gBAAkB,EAAE,UAAU,EAAE,SAAS;CAAG;AAEpF,OAAO,MAAM,0EAA+E,CAAC;AAE7F,OAAO,MAAM,6FAuBX,CAAC;ACnBH;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,MAAM,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB;;OAEG;IACH,KAAK,EAAE,UAAU,OAAO,CAAC,CAAA;CAC1B;AAED,8BAA8B,CAAC,CAAE,SAAQ,IAAI,CAAC,iBAAiB,CAAC,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,iBAAiB,kBAAkB,CAAC,EAAE,SAAS,EAAE,gBAAgB,cAAc,CAAC;IAC5L,8DAA8D;IAC9D,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,kHAAkH;IAClH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,uEAAuE;IACvE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,SAAS,CAAC;IAC5D;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,aAAW,CAAA;CAC1B;AAED,OAAO,MAAM,8EAAqF,CAAC;AACnG,OAAO,MAAM,+CAA6D,CAAC;AA8B3E;;GAEG;AACH,OAAA,MAAM,UA/BW,CAAC,SAAS,MAAM,4FA+BqC,CAAC;AAuLvE,uCAAwC,SAAQ,eAAe;CAAG;AAElE,kCAAkC,CAAC,GAAG,MAAM,CAAE,SAAQ,YAAY,sBAAsB,CAAC,EAAE,YAAY,EAAE,aAAW;IAClH,iCAAiC;IACjC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,6GAA6G;IAC7G,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,wFAAwF;IACxF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4CAA4C;IAC5C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oCAAoC;IACpC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAED;;GAEG;AACH,OAAO,MAAM,cAA6E,CAAC,SAAS,MAAM,mFAkFxG,CAAC;ACrYH,6CAA8C,SAAQ,IAAI,CAAC,kBAAkB,EAAE,cAAc,CAAC;CAAG;AACjG,uCAAwC,SAAQ,UAAU,MAAM,GAAG,OAAK,EAAE,OAAK,CAAC,EAAE,iBAAiB,EAAE,iBAAiB,4BAA4B,CAAC;IACjJ,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CAC1B;AAED,OAAO,MAAM,6FAAoG,CAAC;AAiClH;;GAEG;AACH,OAAA,IAAI,gHAAkD,CAAC;AAGvD,iDAAkD,SAAQ,IAAI,CAAC,sBAAsB,EAAE,eAAe,GAAG,mBAAmB,CAAC;IAC3H,+BAA+B;IAC/B,KAAK,EAAE,OAAK,CAAA;CACb;AAED,2CAA4C,SAAQ,YAAY,gCAAgC,CAAC,EAAE,aAAW;IAC5G,+BAA+B;IAC/B,KAAK,EAAE,MAAM,GAAG,OAAK,CAAC;IACtB,4CAA4C;IAC5C,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAuCD,OAAA,IAAI,wHAA0D,CAAC;ACzF/D;IACE,oCAAoC;IACpC,KAAK,EAAE,KAAK,CAAA;CACb;AAED,iCAAkC,SAAQ,kBAAuB,EAAE,SAAS,EAAE,IAAI,CAAC,YAAY,sBAAsB,CAAC,EAAE,UAAU,CAAC;CAAG;AAEtI,OAAO,MAAM,wEAA+E,CAAC;AAC7F,OAAO,MAAM,wDAAsE,CAAC;AAEpF;;;GAGG;AACH,4BAA4B,KAAK,EAAE,gBAAgB,qBAyBlD;AC3CD;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,2BAA4B,SAAQ,iBAAiB,EAAE,IAAI,CAAC,eAAe,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,CAAC,EAAE,UAAQ,EAAE,UAAU,EAAE,YAAY,gBAAgB,CAAC,EAAE,SAAS;IAC5M,qCAAqC;IACrC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,oCAAoC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,cAAc,CAAA;CAC3C;AAED,OAAO,MAAM,qEAA0E,CAAC;AAoCxF;;GAEG;AACH,OAAA,MAAM,6FAA4D,CAAC;AC1EnE,kCAAmC,SAAQ,IAAI,CAAC,eAAe,cAAc,CAAC,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAAE,YAAY,uBAAuB,CAAC;CAAG;AAE5J;IACE;;;OAGG;IACH,SAAS,EAAE,aAAa,CAAA;CACzB;AAqCD;;;GAGG;AACH,OAAA,MAAM,2GAA0E,CAAC;ACpDjF,6BAA8B,SAAQ,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,gBAAgB,EAAE,YAAY,GAAG,YAAY,GAAG,QAAQ,GAAG,WAAW,CAAC,EAAE,mBAAmB,EAAE,YAAY,kBAAkB,CAAC,EAAE,SAAS;IAChN;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,UAAU,OAAO,GAAG,IAAI,CAAC,CAAC;IACvC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED;IACE;;;OAGG;IACH,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;OAGG;IACH,SAAS,EAAE,aAAa,CAAC;IACzB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,OAAO,MAAM,sEAA6E,CAAC;AAwC3F;;GAEG;AACH,OAAA,MAAM,8FAAgE,CAAC;ACtGvE,mCAAoC,SAAQ,mBAAmB;IAC7D,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED;IACE,KAAK,EAAE,MAAM,IAAI,CAAA;CAClB;AAED,4BAA6B,SAAQ,eAAe,EAAE,UAAU,EAAE,SAAS;IACzE,mGAAmG;IACnG,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,IAAI,EAAE,iBAAiB,KAAK,SAAS,CAAC,CAAA;CAChE;AAED,OAAO,MAAM,oEAA2E,CAAC;AACzF,OAAO,MAAM,8DAA4E,CAAC;AAE1F;;GAEG;AACH,8BAA8B,KAAK,EAAE,kBAAkB,qBAyBtD;AAqDD;;GAEG;AACH,OAAA,MAAM,4FAA8D,CAAC;AC5FrE;IACE;;;OAGG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,+BAA+B,CAAC,SAAS,MAAM,CAAE,SAAQ,IAAI,CAAC,kBAAkB,CAAC,CAAC,EAAE,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,mBAAmB,CAAC,EAAE,SAAS;IAC/P,kGAAkG;IAClG,aAAa,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,KAAK,OAAO,CAAC;IACnE;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC3B,qFAAqF;IACrF,qBAAqB,CAAC,EAAE,OAAO,CAAA;CAChC;AAED,OAAO,MAAM,gFAAuF,CAAC;AACrG,OAAO,MAAM,uDAAqE,CAAC;AA4JnF;;GAEG;AACH,OAAA,MAAM,WA7JY,CAAC,SAAS,MAAM,6FA6JsC,CAAC;ACxMzE;IACE;;OAEG;IACH,KAAK,EAAE,cAAc,CAAC;IACtB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AACD,gCAAgC,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,oBAAoB,CAAC,EAAE,SAAS;CAAG;AAC7O,gCAAgC,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,oBAAoB,CAAC,EAAE,SAAS;CAAG;AAE7O,OAAO,MAAM,kFAAyF,CAAC;AACvG,OAAO,MAAM,kFAAyF,CAAC;AACvG,OAAO,MAAM,oDAAkE,CAAC;AAChF,OAAO,MAAM,oDAAkE,CAAC;AA8DhF;;;GAGG;AACH,OAAA,MAAM,YAhEa,CAAC,SAAS,SAAS,8FAgEoC,CAAC;AA8D3E;;;GAGG;AACH,OAAA,MAAM,YA/Da,CAAC,SAAS,SAAS,8FA+DoC,CAAC;AAG3E;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IAEpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,+BAAgC,SAAQ,SAAS,EAAE,iBAAiB,oBAAoB,CAAC;IACvF,QAAQ,EAAE,CAAC,OAAO,EAAE,aAAY,KAAK,YAAY,CAAA;CAClD;AAyDD;;GAEG;AACH,OAAA,MAAM,qGAAoE,CAAC;AAG3E,uCAAwC,SAAQ,IAAI,CAAC,aAAY,EAAE,YAAY,CAAC;IAC9E;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,IAAI,EAAE,eAAe,CAAA;CACtB;AAED,iCAAkC,SAAQ,YAAY,sBAAsB,CAAC,EAAE,WAAW;IACxF,OAAO,EAAE,aAAY,CAAA;CACtB;AA0CD;;;GAGG;AACH,OAAA,MAAM,yGAAwE,CAAC;ACnV/E;IACE;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,KAAK,EAAE,eAAe,CAAA;CACvB;AACD,2CAA4C,SAAQ,IAAI,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACtF;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAA;CAC5B;AAED,iCAAiC,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,oBAAoB,CAAC,CAAC,EAAE,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,IAAI,CAAC,uBAAuB,CAAC,CAAC,EAAE,qBAAqB,CAAC,EAAE,aAAa,EAAE,YAAY,qBAAqB,CAAC,EAAE,SAAS;CAAG;AACxS,sCAAsC,CAAC,SAAS,SAAS,CAAE,SAAQ,IAAI,CAAC,yBAAyB,CAAC,CAAC,EAAE,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,IAAI,CAAC,4BAA4B,CAAC,CAAC,EAAE,qBAAqB,CAAC,EAAE,aAAa,EAAE,YAAY,0BAA0B,CAAC,EAAE,SAAS;CAAG;AAE5T,OAAO,MAAM,oFAA2F,CAAC;AACzG,OAAO,MAAM,8FAAqG,CAAC;AACnH,OAAO,MAAM,sDAAoE,CAAC;AAClF,OAAO,MAAM,gEAA8E,CAAC;AAmG5F;;GAEG;AACH,OAAA,MAAM,aApGc,CAAC,SAAS,SAAS,+FAoGqC,CAAC;AA0G7E;;;GAGG;AACH,OAAA,MAAM,kBA3GmB,CAAC,SAAS,SAAS,oGA2G0C,CAAC;ACvQvF,qCAAsC,SAAQ,sBAA2B,EAAE,YAAY,0BAA0B,CAAC,EAAE,UAAQ;CAAG;AAE/H;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAA;CAC5B;AAED,OAAO,MAAM,gEAA8E,CAAC;AA6B5F;;;GAGG;AACH,OAAA,MAAM,qHAA8C,CAAC;AAGrD,gCAAiC,SAAQ,IAAI,CAAC,mBAAmB,EAAE,UAAU,CAAC,EAAE,YAAY,qBAAqB,CAAC,EAAE,SAAS;IAC3H,2GAA2G;IAC3G,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,gHAAgH;IAChH,QAAQ,EAAE,SAAS,GAAG,CAAC,CAAC,MAAM,EAAE,qBAAqB,GAAG;QAAC,eAAe,EAAE,SAAS,GAAG,SAAS,CAAA;KAAC,KAAK,SAAS,CAAC,CAAA;CAChH;AAED;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,oBAAoB,EAAE,OAAO,CAAC;IAC9B;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,eAAe,CAAA;CACvB;AAED,OAAO,MAAM,+EAAsF,CAAC;AACpG,OAAO,MAAM,sDAAoE,CAAC;AAoFlF,qCAAsC,SAAQ,YAAY,EAAE,CAAC;IAC3D;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAA;CACpB;AAiCD;;GAEG;AACH,OAAA,MAAM,gHAAsE,CAAC;AAG7E;;GAEG;AACH,OAAA,MAAM,0HAAgF,CAAC;ACvNvF;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,8BAA+B,SAAQ,IAAI,CAAC,WAAW,EAAE,0BAA0B,GAAG,KAAK,GAAG,eAAe,CAAC,EAAE,aAAW,EAAE,YAAY,mBAAmB,CAAC,EAAE,SAAS,EAAE,iBAAiB;CAAG;AAE9L,OAAO,MAAM,2EAAkF,CAAC;AA+EhG;;GAEG;AACH,OAAA,MAAM,8FAAgC,CAAC;ACrHvC;IACE;;OAEG;IACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAClC;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,aAAa,CAAC;IACvC;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,GAAG,IAAI,KAAK,IAAI,CAAC;IAC5C;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B;AAiCD;;GAEG;AACH,OAAA,MAAM,sGAAsC,CAAC;ACpD7C;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,MAAM,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB;;OAEG;IACH,KAAK,EAAE,UAAU,OAAO,CAAC,CAAA;CAC1B;AAED,+BAA+B,CAAC,CAAE,SAAQ,IAAI,CAAC,kBAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,iBAAiB,mBAAmB,CAAC,EAAE,SAAS,EAAE,gBAAgB,cAAc,CAAC;IACrL,8DAA8D;IAC9D,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,mHAAmH;IACnH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,uEAAuE;IACvE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,SAAS,CAAC;IAC7D;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;CAC1B;AAGD,OAAO,MAAM,gFAAuF,CAAC;AA4KrG;;;GAGG;AACH,OAAA,MAAM,WA9KY,CAAC,SAAS,MAAM,6FA8KsC,CAAC;AAGzE,wCAAyC,SAAQ,eAAe;CAAG;AAEnE,mCAAmC,CAAC,GAAG,MAAM,CAAE,SAAQ,YAAY,uBAAuB,CAAC,EAAE,YAAY,EAAE,aAAW;IACpH,iCAAiC;IACjC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,6GAA6G;IAC7G,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,wFAAwF;IACxF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oCAAoC;IACpC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAED;;GAEG;AACH,OAAO,MAAM,eAA+E,CAAC,SAAS,MAAM,oFAsI1G,CAAC;ACxYH,OAAO,MAAM,4FAA2F,CAAC;AAOzG,OAAA,MAAM,+GAAgC,CAAC;ACqBvC,OAAO,MAAM,wEAA+E,CAAC;AAC7F,OAAO,MAAM,+CAA6D,CAAC;AAC3E,OAAO,MAAM,gEAA8E,CAAC;AAE5F,iCAAkC,SAAQ,kBAAoB;IAC5D,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,4BAA4B,KAAK,EAAE,gBAAgB,qBA0ClD;AAED;IACE;;OAEG;IACH,QAAQ,EAAE,YAAY,EAAE,CAAC;IACzB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAID;;;;GAIG;AACH,OAAO,MAAM,+GAkCiB,CAAC;AAE/B,2BAA2B,CAAC,CAAE,SAAQ,IAAI,CAAC,cAAc,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,UAAU,EAAE,SAAS,EAAE,gBAAgB,cAAc,CAAC;CAAG;AAwFvJ;;GAEG;AACH,OAAA,MAAM,OAzFQ,CAAC,SAAS,MAAM,yFAyFkC,CAAC;AA+BjE,oCAAqC,SAAQ,eAAe;IAC1D;;;;OAIG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,MAAM,EAAE,OAAO,CAAA;CAChB;AAED,+BAA+B,CAAC,GAAG,MAAM,CAAE,SAAQ,YAAY,mBAAmB,CAAC,EAAE,YAAY,EAAE,aAAW;IAC5G,iCAAiC;IACjC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,6GAA6G;IAC7G,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,wFAAwF;IACxF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4CAA4C;IAC5C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oCAAoC;IACpC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,wDAAwD;IACxD,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAID;;GAEG;AACH,OAAO,MAAM,WAAuE,CAAC,SAAS,MAAM,gFA0DlG,CAAC;AC1VH,2BAA4B,SAAQ,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,EAAE,YAAY,gBAAgB,CAAC,EAAE,SAAS;CAAG;AAE9G;IACE;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,MAAM,GAAG,SAAS,CAAA;CAC9B;AAED,OAAO,MAAM,qEAA4E,CAAC;AAsC1F;;GAEG;AACH,OAAA,MAAM,6FAA4D,CAAC;ACtDnE,kCAAmC,SAAQ,qBAAqB,EAAE,mBAAmB,EAAE,YAAY,gBAAgB,CAAC,EAAE,SAAS;IAC7H;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAA;CACnC;AASD,OAAO,MAAM,4EAAmF,CAAC;AAGjG;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,mBAAmB,CAAA;CAC3B;AAgDD;;GAEG;AACH,OAAA,MAAM,oGAA4D,CAAC;AA8BnE;;GAEG;AACH,OAAO,MAAM,2GAAuF,CAAC;ACvHrG;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAA;CACxB;AAED,iCAAkC,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,GAAG,aAAa,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,sBAAsB,CAAC,EAAE,SAAS;CAAG;AAE1P,OAAO,MAAM,iFAAwF,CAAC;AACtG,OAAO,MAAM,wDAAsE,CAAC;AA4EpF;;GAEG;AACH,OAAA,MAAM,yGAAwE,CAAC;ACtG/E,gCAAiC,SAAQ,IAAI,CAAC,mBAAmB,EAAE,UAAU,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,qBAAqB,CAAC,EAAE,SAAS;CAAG;AACrO,2BAA4B,SAAQ,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,EAAE,WAAW,EAAE,YAAY,gBAAgB,CAAC,EAAE,SAAS;IACzH;;OAEG;IACH,QAAQ,CAAC,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,CAAA;CAC9C;AAED;IACE;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,eAAe,CAAA;CACvB;AAED;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,OAAO,MAAM,+EAAsF,CAAC;AACpG,OAAO,MAAM,gFAAuF,CAAC;AACrG,OAAO,MAAM,sDAAoE,CAAC;AAyHlF;;GAEG;AACH,OAAA,MAAM,uGAAsE,CAAC;AAE7E;;GAEG;AACH,OAAA,MAAM,+FAA4D,CAAC;ACxNnE;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAA;CACxB;AAED,iCAAkC,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,GAAG,aAAa,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,YAAY,sBAAsB,CAAC,EAAE,SAAS;CAAG;AAE3O,OAAO,MAAM,iFAAwF,CAAC;AA8DtG;;GAEG;AACH,OAAA,MAAM,yGAAwE,CAAC;ACpF/E;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,6BAA6B,CAAC,SAAS,MAAM,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,GAAG,OAAO,CAAC,EAAE,aAAa,EAAE,YAAY,iBAAiB,CAAC,EAAE,SAAS;CAAG;AAExP,OAAO,MAAM,4EAAmF,CAAC;AACjG,OAAO,MAAM,uDAAqE,CAAC;AA+InF;;GAEG;AACH,OAAA,MAAM,SAhJU,CAAC,SAAS,MAAM,2FAgJoC,CAAC;AAGrE,wCAAwC,CAAC;IACvC;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB,uDAAuD;IACvD,YAAY,EAAE,CAAC,GAAG,IAAI,CAAC;IACvB,oDAAoD;IACpD,YAAY,EAAE,MAAM,GAAG,IAAI,CAAA;CAC5B;AAED,kCAAkC,CAAC,SAAS,MAAM,CAAE,SAAQ,IAAI,CAAC,eAAe,WAAW,CAAC,EAAE,MAAM,YAAY,OAAO,CAAC,CAAC,EAAE,YAAY,uBAAuB,CAAC,CAAC,CAAC;CAAG;AAEpK,OAAO,MAAM,uFAA8F,CAAC;AAkD5G;;;GAGG;AACH,OAAA,MAAM,cApDe,CAAC,SAAS,MAAM,iGAoDyC,CAAC;ACzQ/E,4BAA6B,SAAQ,IAAI,CAAC,eAAe,EAAE,UAAU,CAAC,EAAE,WAAW,EAAE,YAAY,iBAAiB,CAAC,EAAE,SAAS;IAC5H;;OAEG;IACH,QAAQ,CAAC,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,CAAA;CAC9C;AAED;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,WAAW,CAAA;CACnB;AAED,OAAO,MAAM,yEAAgF,CAAC;AA6D9F;;GAEG;AACH,OAAA,MAAM,iGAA8D,CAAC;ACkErE,6CAA8C,SAAQ,QAAQ,EAAE,gBAAgB,cAAc,CAAC;IAC7F;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,UAAU,CAAC,KAAK,IAAI,CAAC;IACvD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,UAAU,CAAC,KAAK,IAAI,CAAC;IAClD;;;OAGG;IACH,WAAW,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,UAAU,CAAC,KAAK,IAAI,CAAA;CACrD;AAyDD,OAAA,MAAM,4HAA8D,CAAC;AAGrE,OAAO,MAAM,uEAA8E,CAAC;AAC5F,OAAO,MAAM,iDAA+D,CAAC;AAC7E,OAAO,MAAM,6EAA2F,CAAC;AAEzG;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,KAAK,EAAE,WAAW,OAAO,CAAC,CAAA;CAC3B;AAED,2BAA4B,SAAQ,IAAI,CAAC,aAAiB,GAAG,CAAC,EAAE,UAAU,CAAC,EAAE,iBAAiB,gBAAgB,CAAC,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,gBAAgB,CAAC;IAC9K,mGAAmG;IACnG,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC;;;OAGG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,wEAAwE;IACxE,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IACjC,gHAAgH;IAChH,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;CACpC;AA+KD;;;GAGG;AACH,OAAA,MAAM,0FAA0B,CAAC;AAQjC;IACE,0DAA0D;IAC1D,aAAa,EAAE,aAAa,CAAC;IAC7B,+FAA+F;IAC/F,iBAAiB,EAAE,iBAAiB,GAAG,IAAI,CAAC;IAC5C,gDAAgD;IAChD,sBAAsB,EAAE,OAAO,CAAC;IAChC,mDAAmD;IACnD,cAAc,EAAE,OAAO,CAAA;CACxB;AAID;;GAEG;AACH,mCAAmC,wBAAwB,CAE1D;AAED;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,kCAAkC,CAAC,CAAE,SAAQ,iBAAiB,sBAAsB,CAAC,EAAE,aAAW;IAChG,+BAA+B;IAC/B,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;IACd,uHAAuH;IACvH,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,YAAY,CAAC,CAAC;IACnD,qFAAqF;IACrF,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;CACrB;AAED;;GAEG;AACH,OAAO,MAAM,cAEV,CAAC,SAAS,MAAM,yGA8ClB,CAAC;AA0BF;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,aAAa,EAAE,aAAa,GAAG,SAAS,CAAC;IACzC;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,IAAI,CAAC,SAAS,EAAE,aAAa,GAAG,IAAI,CAAC;IACrC;;OAEG;IACH,WAAW,IAAI,IAAI,CAAA;CACpB;AAED,4BAA6B,SAAQ,YAAY,iBAAiB,CAAC;IACjE,mCAAmC;IACnC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,yCAAyC;IACzC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,+JAA+J;IAC/J,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,8FAA8F;IAC9F,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sHAAsH;IACtH,KAAK,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IAC1B,8HAA8H;IAC9H,YAAY,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IACjC,8HAA8H;IAC9H,QAAQ,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACnC,8HAA8H;IAC9H,QAAQ,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAA;CACnC;AAED;;GAEG;AACH,OAAO,MAAM,uFAiFX,CAAC;AAEH;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,kBAAkB,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAAA;CAC9C;AAED,mCAAoC,SAAQ,aAAW,EAAE,YAAY,wBAAwB,CAAC;IAC5F,oDAAoD;IACpD,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAoGD,OAAA,MAAM,wGAA0C,CAAC;AAGjD;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,YAAY,EAAE,OAAO,CAAA;CACtB;AAED,gCAAgC,CAAC,CAAE,SAAQ,gBAAgB,CAAC,CAAC,EAAE,iBAAiB,oBAAoB,CAAC;IACnG,uEAAuE;IACvE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,KAAK,SAAS,CAAA;CAC9D;AACD;;GAEG;AACH,OAAO,MAAM,YAA8D,CAAC,SAAS,MAAM,uGAiEzF,CAAC;AAEH,+BAAgC,SAAQ,eAAe;IACrD,sDAAsD;IACtD,oBAAoB,EAAE,OAAO,CAAA;CAC9B;AAED,0BAA0B,CAAC,CAAE,SAAQ,iBAAiB,cAAc,CAAC,EAAE,YAAY,EAAE,aAAW;IAC9F,gCAAgC;IAChC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,+DAA+D;IAC/D,OAAO,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACtB,2FAA2F;IAC3F,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,YAAY,CAAC,CAAC;IACnD,4GAA4G;IAC5G,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,mFAAmF;IACnF,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC;IACrB,uFAAuF;IACvF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,mCAAmC;IACnC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAED;;GAEG;AACH,OAAO,MAAM,MAEV,CAAC,SAAS,MAAM,6FAyIlB,CAAC;AAEF;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB;AAED,0BAA2B,SAAQ,YAAY,eAAe,CAAC;IAC7D,iCAAiC;IACjC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,wFAAwF;IACxF,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED;;GAEG;AACH,OAAO,MAAM,mFA4CX,CAAC;AAmGH,oCAA4C,SAAQ,UAAU;IAC5D,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,OAAO,MAAM,iCAA8F,CAAC,SAAS,MAAM,0FAuCzH,CAAC;AC30CH,gCAAuC,CAAC;IACtC,gBAAgB,CAAC,IAAI,CAAC,CAAA;CACvB;AAED,kBAAkB,CAAC,CAAE,SAAQ,OAAO,OAAK,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,EAAE,sBAAsB,CAAC,CAAC;CAAG;AAE/G,kCAAkC,CAAC;IACjC,6EAA6E;IAC7E,QAAQ,EAAE,SAAS,CAAC;IACpB,uFAAuF;IACvF,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC;IACnB,8BAA8B;IAC9B,aAAa,CAAC,EAAE,CAAC,CAAA;CAClB;AAKD,qCAA4B,CAAC,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC,qBAiBxD;ACtCD,kCAAyB,CAAC,CAAE,SAAQ,YAAgB,CAAC,CAAE,YAAW,sBAAsB,gBAAgB,CAAC;IAEvG,gBAAgB;;;CAQjB;ACND,0BAA2B,SAAQ,IAAI,CAAC,iBAAiB,GAAG,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,YAAY,eAAe,CAAC,EAAE,SAAS;CAAG;AAEhI;IACE;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAA;CACzB;AAED,8BAA8B,CAAC,CAAE,SAAQ,iBAAiB,kBAAkB,CAAC,EAAE,iBAAiB,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC;CAAG;AAE7I;IACE;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;OAEG;IACH,KAAK,EAAE,aAAa,OAAO,CAAC,CAAA;CAC7B;AAED,yBAA0B,SAAQ,YAAY,cAAc,CAAC,EAAE,iBAAiB,EAAE,YAAY,EAAE,aAAW;IACzG,gCAAgC;IAChC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,mCAAmC;IACnC,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,8BAA+B,SAAQ,iBAAiB,EAAE,YAAY,mBAAmB,CAAC;IACxF;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B;AAED;IACE;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,KAAK,EAAE,aAAa,OAAO,CAAC,CAAA;CAC7B;AAED,OAAO,MAAM,mEAA0E,CAAC;AACxF,OAAO,MAAM,wDAAsE,CAAC;AAiEpF;;GAEG;AACH,OAAA,MAAM,2FAA0D,CAAC;AAoDjE;;;GAGG;AACH,OAAA,MAAM,UArDW,CAAC,SAAS,MAAM,4FAqDqC,CAAC;AAGvE;;GAEG;AACH,OAAO,MAAM,iFAuCX,CAAC;AAmDH;;GAEG;AACH,OAAA,MAAM,mGAA2D,CAAC;AC5TlE,8BAA+B,SAAQ,IAAI,CAAC,kBAAkB,OAAO,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,GAAG,kBAAkB,CAAC,EAAE,QAAQ,EAAE,SAAS;CAAG;AAErL;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,KAAK,EAAE,UAAU,OAAO,CAAC,CAAA;CAC1B;AAED,8BAA8B,CAAC,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC,EAAE,iBAAiB,kBAAkB,CAAC;IACrH,2EAA2E;IAC3E,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,SAAS,CAAA;CAC5D;AAED,OAAO,MAAM,2EAAkF,CAAC;AAChG,OAAO,MAAM,8EAAqF,CAAC;AAiEnG;;GAEG;AACH,OAAA,MAAM,mGAAkE,CAAC;AAqDzE;;GAEG;AACH,OAAA,MAAM,UArDW,CAAC,SAAS,MAAM,4FAqDqC,CAAC;AAGvE,+BAAgC,SAAQ,IAAI,CAAC,eAAe,EAAE,gBAAgB,GAAG,YAAY,GAAG,cAAc,CAAC;IAC7G;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAA;CACxB;AAED,yBAA0B,SAAQ,YAAY,cAAc,CAAC,EAAE,YAAY,EAAE,aAAW;IACtF,+BAA+B;IAC/B,EAAE,CAAC,EAAE,GAAG,CAAC;IACT;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,mCAAmC;IACnC,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED;;GAEG;AACH,OAAO,MAAM,iFA6DX,CAAC;ACrQH,8BAA+B,SAAQ,IAAI,CAAC,uBAAuB,mBAAmB,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,EAAE,WAAW,EAAE,iBAAiB,gBAAgB,CAAC;CAAG;AAEnK,OAAO,MAAM,gFAAqF,CAAC;AA0CnG;;GAEG;AACH,OAAA,MAAM,mGAAgC,CAAC;AC5BvC;IACE;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAA;CACpB;AAED,+BAAgC,SAAQ,IAAI,CAAC,kBAAkB,EAAE,OAAO,GAAG,aAAa,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,oBAAoB,CAAC,EAAE,aAAa,EAAE,IAAI,CAAC,QAAQ,EAAE,OAAO,GAAG,WAAW,GAAG,UAAU,CAAC,EAAE,SAAS,EAAE,YAAY,oBAAoB,CAAC;IACpR,oCAAoC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,OAAO,MAAM,6EAAoF,CAAC;AAoElG;;GAEG;AACH,OAAA,MAAM,qGAAoE,CAAC;ACxG3E,wCAAyC,SAAQ,IAAI,CAAC,iBAAiB,EAAE,WAAW,CAAC;IACnF;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,WAAW,CAAA;CACnB;AAED,kCAAmC,SAAQ,IAAI,CAAC,qBAAqB,EAAE,UAAU,GAAG,aAAa,CAAC,EAAE,WAAW,EAAE,SAAS,EAAE,YAAY,uBAAuB,CAAC;CAAG;AAEnK,OAAO,MAAM,sFAA2F,CAAC;AA6BzG;;GAEG;AACH,OAAA,MAAM,8GAA0E,CAAC;AC/CjF;IACE;;;OAGG;IACH,WAAW,EAAE,aAAW,CAAA;CACzB;AAED,6BAA8B,SAAQ,gBAAgB,EAAE,SAAS,EAAE,YAAY,kBAAkB,CAAC;CACjG;AAED,OAAO,MAAM,yEAA8E,CAAC;AAyB5F;;;GAGG;AACH,OAAA,MAAM,iGAAgE,CAAC;ACrCvE,6CAA8C,SAAQ,mBAAmB;IACvE,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,6BAA8B,SAAQ,aAAa,EAAE,IAAI,CAAC,iBAAiB,EAAE,qBAAqB,CAAC,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,YAAY,kBAAkB,CAAC;IAC1K;;;;OAIG;IACH,UAAU,CAAC,EAAE,UAAU,OAAO,GAAG,IAAI,CAAC,CAAC;IACvC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;;OAGG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;CACtB;AAED;IACE;;;OAGG;IACH,SAAS,EAAE,aAAa,CAAC;IACzB;;;OAGG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,mBAAmB,CAAA;CAC3B;AAED,OAAO,MAAM,8DAA4E,CAAC;AAC1F,OAAO,MAAM,yEAAgF,CAAC;AAE9F;;;;GAIG;AACH,+BAA+B,KAAK,EAAE,4BAA4B,qBAgBjE;AAmBD;;GAEG;AACH,OAAA,MAAM,iGAAgE,CAAC;ACtBvE;IACE;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,KAAK,EAAE,UAAU,OAAO,CAAC,CAAA;CAC1B;AAED,mCAA2C,SAAQ,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC;CAAG;AAEtF,2BAA2B,CAAC,CAAE,SAAQ,IAAI,CAAC,sBAAsB,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,iBAAiB,eAAe,CAAC,EAAE,SAAS,EAAE,gBAAgB,cAAc,CAAC,EAAE,UAAU;IAC7L,wDAAwD;IACxD,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,uEAAuE;IACvE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,yBAAyB,KAAK,SAAS,CAAC;IACnE;;;OAGG;IACH,gBAAgB,CAAC,EAAE,kBAAgB,CAAA;CACpC;AAGD,OAAO,MAAM,iFAAwF,CAAC;AACtG,OAAO,MAAM,wDAAsE,CAAC;AAwHpF;;;GAGG;AACH,OAAA,MAAM,gBA1HQ,CAAC,SAAS,MAAM,yFA0HkC,CAAC;AAIjE,oCAAqC,SAAQ,IAAI,CAAC,eAAe,EAAE,gBAAgB,GAAG,YAAY,GAAG,cAAc,CAAC;IAClH,yCAAyC;IACzC,UAAU,EAAE,OAAO,CAAC;IAGpB,4DAA4D;IAC5D,oBAAoB,EAAE,OAAO,CAAA;CAC9B;AAED,2CAA4C,SAAQ,eAAe;IAEjE,UAAU,EAAE,OAAO,CAAC;IAEpB,YAAY,EAAE,OAAO,CAAC;IAEtB,KAAK,EAAE,MAAM,CAAC;IAEd,oBAAoB,EAAE,OAAO,CAAA;CAC9B;AAID,qCAAsC,SAAQ,IAAI,CAAC,YAAY,0BAA0B,CAAC,EAAE,UAAU,CAAC;CAAG;AAE1G,OAAO,MAAM,kHAWX,CAAC;AAIH,+BAA+B,CAAC,GAAG,MAAM,CAAE,SAAQ,iBAAiB,mBAAmB,CAAC,EAAE,YAAY,EAAE,aAAW;IACjH,qCAAqC;IACrC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,kHAAkH;IAClH,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,6FAA6F;IAC7F,SAAS,EAAE,MAAM,CAAC;IAClB,iDAAiD;IACjD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,qKAAqK;IACrK,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED;;GAEG;AACH,OAAO,MAAM,oBAAiE,CAAC,SAAS,MAAM,6FAiI5F,CAAC;AAEH;IACE;;;OAGG;IACH,KAAK,EAAE,MAAM,CAAA;CACd;AAED,yBAAiC,SAAQ,YAAY,+BAA+B,CAAC,EAAE,iBAAiB,+BAA+B,CAAC;CAAG;AAE3I,OAAO,MAAM,gCAAkF,CAAC,SAAS,MAAM,+EAqC7G,CAAC;ACncH,OAAO,EAAC,UAAU,EAAE,mBAAmB,IAAI,4BAA4B,EAAE,qBAAqB,IAAI,8BAA8B,EAAE,iBAAiB,IAAI,0BAA0B,EAAC,MAAM,yBAAyB,CAAC;AAgClN,OAAO,EAAC,mBAAmB,EAAE,mBAAmB,EAAE,cAAc,EAAE,cAAc,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,SAAS,EAAC,MAAM,YAAY,CAAC;AAC1J,OAAO,EAAC,qBAAqB,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,UAAU,EAAE,gBAAgB,EAAC,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAC,UAAU,IAAI,mBAAmB,EAAE,UAAU,IAAI,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AA4D3G,YAAY,EAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAC,MAAM,YAAY,CAAC;AAChE,YAAY,EAAC,iBAAiB,EAAE,2BAA2B,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,mBAAmB,EAAE,SAAS,EAAE,QAAQ,EAAE,aAAa,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,4BAA4B,EAAE,kCAAkC,EAAE,4BAA4B,EAAE,kCAAkC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAE,UAAU,EAAC,MAAM,YAAY,CAAC;AAC3iB,YAAY,EAAC,GAAG,EAAE,SAAS,EAAE,cAAc,EAAE,aAAa,EAAE,aAAa,EAAC,MAAM,eAAe,CAAC;AAChG,YAAY,EAAC,gBAAgB,EAAE,YAAY,EAAC,MAAM,qBAAqB,CAAC;AACxE,YAAY,EAAC,KAAK,EAAE,UAAU,EAAE,WAAW,EAAC,MAAM,oBAAoB,CAAC;AACvE,YAAY,EAAC,iBAAiB,EAAE,iBAAiB,EAAC,MAAM,uBAAuB,CAAC","sources":["packages/react-aria-components/src/packages/react-aria-components/src/utils.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Text.tsx","packages/react-aria-components/src/packages/react-aria-components/src/FieldError.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Form.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Label.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Checkbox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorThumb.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorArea.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Input.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Slider.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSlider.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorWheel.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Heading.tsx","packages/react-aria-components/src/packages/react-aria-components/src/RSPContexts.ts","packages/react-aria-components/src/packages/react-aria-components/src/Collection.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Link.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Breadcrumbs.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ProgressBar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Button.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Calendar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSwatch.tsx","packages/react-aria-components/src/packages/react-aria-components/src/useDragAndDrop.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DragAndDrop.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Header.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Separator.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ListBox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorSwatchPicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ColorPicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Group.tsx","packages/react-aria-components/src/packages/react-aria-components/src/OverlayArrow.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Popover.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Dialog.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ComboBox.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DateField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DatePicker.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Disclosure.tsx","packages/react-aria-components/src/packages/react-aria-components/src/DropZone.tsx","packages/react-aria-components/src/packages/react-aria-components/src/FileTrigger.tsx","packages/react-aria-components/src/packages/react-aria-components/src/GridList.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Keyboard.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Menu.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Meter.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Modal.tsx","packages/react-aria-components/src/packages/react-aria-components/src/NumberField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/RadioGroup.tsx","packages/react-aria-components/src/packages/react-aria-components/src/SearchField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Select.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Switch.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Table.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Virtualizer.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TableLayout.ts","packages/react-aria-components/src/packages/react-aria-components/src/Tabs.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TagGroup.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TextArea.tsx","packages/react-aria-components/src/packages/react-aria-components/src/TextField.tsx","packages/react-aria-components/src/packages/react-aria-components/src/ToggleButton.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Toolbar.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Tooltip.tsx","packages/react-aria-components/src/packages/react-aria-components/src/Tree.tsx","packages/react-aria-components/src/packages/react-aria-components/src/index.ts","packages/react-aria-components/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,"/*\n * Copyright 2022 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n// Mark as a client only package. This will cause a build time error if you try\n// to import it from a React Server Component in a framework like Next.js.\nimport 'client-only';\n\nexport {CheckboxContext, ColorAreaContext, ColorFieldContext, ColorSliderContext, ColorWheelContext, HeadingContext} from './RSPContexts';\n\nexport {Breadcrumbs, BreadcrumbsContext, Breadcrumb} from './Breadcrumbs';\nexport {Button, ButtonContext} from './Button';\nexport {Calendar, CalendarGrid, CalendarGridHeader, CalendarGridBody, CalendarHeaderCell, CalendarCell, RangeCalendar, CalendarContext, RangeCalendarContext, CalendarStateContext, RangeCalendarStateContext} from './Calendar';\nexport {Checkbox, CheckboxGroup, CheckboxGroupContext, CheckboxGroupStateContext} from './Checkbox';\nexport {ColorArea, ColorAreaStateContext} from './ColorArea';\nexport {ColorField, ColorFieldStateContext} from './ColorField';\nexport {ColorPicker, ColorPickerContext, ColorPickerStateContext} from './ColorPicker';\nexport {ColorSlider, ColorSliderStateContext} from './ColorSlider';\nexport {ColorSwatch, ColorSwatchContext} from './ColorSwatch';\nexport {ColorSwatchPicker, ColorSwatchPickerItem, ColorSwatchPickerContext} from './ColorSwatchPicker';\nexport {ColorThumb} from './ColorThumb';\nexport {ColorWheel, ColorWheelTrack, ColorWheelTrackContext, ColorWheelStateContext} from './ColorWheel';\nexport {ComboBox, ComboBoxContext, ComboBoxStateContext} from './ComboBox';\nexport {composeRenderProps, DEFAULT_SLOT, Provider, useContextProps, useSlottedContext} from './utils';\nexport {DateField, DateInput, DateSegment, TimeField, DateFieldContext, TimeFieldContext, DateFieldStateContext, TimeFieldStateContext} from './DateField';\nexport {DatePicker, DateRangePicker, DatePickerContext, DateRangePickerContext, DatePickerStateContext, DateRangePickerStateContext} from './DatePicker';\nexport {DialogTrigger, Dialog, DialogContext, OverlayTriggerStateContext} from './Dialog';\nexport {Disclosure as UNSTABLE_Disclosure, DisclosureGroup as UNSTABLE_DisclosureGroup, DisclosureGroupStateContext, DisclosurePanel as UNSTABLE_DisclosurePanel, DisclosureStateContext, DisclosureContext} from './Disclosure';\nexport {DropZone, DropZoneContext} from './DropZone';\nexport {FieldError, FieldErrorContext} from './FieldError';\nexport {FileTrigger} from './FileTrigger';\nexport {Form, FormContext} from './Form';\nexport {GridList, GridListItem, GridListContext} from './GridList';\nexport {Group, GroupContext} from './Group';\nexport {Header, HeaderContext} from './Header';\nexport {Heading} from './Heading';\nexport {Input, InputContext} from './Input';\nexport {Section, CollectionRendererContext as UNSTABLE_CollectionRendererContext, DefaultCollectionRenderer as UNSTABLE_DefaultCollectionRenderer} from './Collection';\nexport {Collection, createLeafComponent as UNSTABLE_createLeafComponent, createBranchComponent as UNSTABLE_createBranchComponent, CollectionBuilder as UNSTABLE_CollectionBuilder} from '@react-aria/collections';\nexport {Keyboard, KeyboardContext} from './Keyboard';\nexport {Label, LabelContext} from './Label';\nexport {Link, LinkContext} from './Link';\nexport {ListBox, ListBoxItem, ListBoxContext, ListStateContext} from './ListBox';\nexport {Menu, MenuItem, MenuTrigger, MenuContext, MenuStateContext, RootMenuTriggerStateContext, SubmenuTrigger} from './Menu';\nexport {Meter, MeterContext} from './Meter';\nexport {Modal, ModalOverlay, ModalContext} from './Modal';\nexport {NumberField, NumberFieldContext, NumberFieldStateContext} from './NumberField';\nexport {OverlayArrow} from './OverlayArrow';\nexport {Popover, PopoverContext} from './Popover';\nexport {ProgressBar, ProgressBarContext} from './ProgressBar';\nexport {RadioGroup, Radio, RadioGroupContext, RadioContext, RadioGroupStateContext} from './RadioGroup';\nexport {SearchField, SearchFieldContext} from './SearchField';\nexport {Select, SelectValue, SelectContext, SelectValueContext, SelectStateContext} from './Select';\nexport {Separator, SeparatorContext} from './Separator';\nexport {Slider, SliderOutput, SliderTrack, SliderThumb, SliderContext, SliderOutputContext, SliderTrackContext, SliderStateContext} from './Slider';\nexport {Switch, SwitchContext} from './Switch';\nexport {UNSTABLE_TableLoadingIndicator, Table, Row, Cell, Column, ColumnResizer, TableHeader, TableBody, TableContext, ResizableTableContainer, useTableOptions, TableStateContext, TableColumnResizeStateContext} from './Table';\nexport {TableLayout as UNSTABLE_TableLayout} from './TableLayout';\nexport {Tabs, TabList, TabPanel, Tab, TabsContext, TabListStateContext} from './Tabs';\nexport {TagGroup, TagGroupContext, TagList, TagListContext, Tag} from './TagGroup';\nexport {Text, TextContext} from './Text';\nexport {TextArea, TextAreaContext} from './TextArea';\nexport {TextField, TextFieldContext} from './TextField';\nexport {ToggleButton, ToggleButtonContext} from './ToggleButton';\nexport {Toolbar, ToolbarContext} from './Toolbar';\nexport {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip';\nexport {UNSTABLE_TreeLoadingIndicator, UNSTABLE_Tree, UNSTABLE_TreeItem, UNSTABLE_TreeContext, UNSTABLE_TreeItemContent, UNSTABLE_TreeStateContext} from './Tree';\nexport {useDragAndDrop} from './useDragAndDrop';\nexport {DropIndicator, DropIndicatorContext, DragAndDropContext} from './DragAndDrop';\nexport {Virtualizer as UNSTABLE_Virtualizer} from './Virtualizer';\nexport {DIRECTORY_DRAG_TYPE, isDirectoryDropItem, isFileDropItem, isTextDropItem, SSRProvider, RouterProvider, I18nProvider, useLocale} from 'react-aria';\nexport {FormValidationContext} from 'react-stately';\nexport {parseColor, getColorChannels} from '@react-stately/color';\nexport {ListLayout as UNSTABLE_ListLayout, GridLayout as UNSTABLE_GridLayout} from '@react-stately/layout';\n\nexport type {BreadcrumbsProps, BreadcrumbProps, BreadcrumbRenderProps} from './Breadcrumbs';\nexport type {ButtonProps, ButtonRenderProps} from './Button';\nexport type {CalendarCellProps, CalendarProps, CalendarRenderProps, CalendarGridProps, CalendarGridHeaderProps, CalendarGridBodyProps, CalendarHeaderCellProps, CalendarCellRenderProps, RangeCalendarProps, RangeCalendarRenderProps} from './Calendar';\nexport type {CheckboxGroupProps, CheckboxGroupRenderProps, CheckboxRenderProps, CheckboxProps} from './Checkbox';\nexport type {ColorAreaProps, ColorAreaRenderProps} from './ColorArea';\nexport type {ColorFieldProps, ColorFieldRenderProps} from './ColorField';\nexport type {ColorSliderProps, ColorSliderRenderProps} from './ColorSlider';\nexport type {ColorSwatchProps, ColorSwatchRenderProps} from './ColorSwatch';\nexport type {ColorSwatchPickerProps, ColorSwatchPickerRenderProps, ColorSwatchPickerItemProps, ColorSwatchPickerItemRenderProps} from './ColorSwatchPicker';\nexport type {ColorThumbProps, ColorThumbRenderProps} from './ColorThumb';\nexport type {ColorPickerProps, ColorPickerRenderProps} from './ColorPicker';\nexport type {ColorWheelProps, ColorWheelRenderProps, ColorWheelTrackProps, ColorWheelTrackRenderProps} from './ColorWheel';\nexport type {ComboBoxProps, ComboBoxRenderProps} from './ComboBox';\nexport type {DateFieldProps, DateFieldRenderProps, DateInputProps, DateInputRenderProps, DateSegmentProps, DateSegmentRenderProps, TimeFieldProps} from './DateField';\nexport type {DatePickerProps, DatePickerRenderProps, DateRangePickerProps, DateRangePickerRenderProps} from './DatePicker';\nexport type {DialogProps, DialogTriggerProps} from './Dialog';\nexport type {DisclosureProps, DisclosureRenderProps, DisclosurePanelProps, DisclosureGroupProps, DisclosureGroupRenderProps} from './Disclosure';\nexport type {DropZoneProps, DropZoneRenderProps} from './DropZone';\nexport type {FieldErrorProps, FieldErrorRenderProps} from './FieldError';\nexport type {FileTriggerProps} from './FileTrigger';\nexport type {FormProps} from './Form';\nexport type {GridListProps, GridListRenderProps, GridListItemProps, GridListItemRenderProps} from './GridList';\nexport type {GroupProps, GroupRenderProps} from './Group';\nexport type {HeadingProps} from './Heading';\nexport type {InputProps, InputRenderProps} from './Input';\nexport type {SectionProps, CollectionRenderer} from './Collection';\nexport type {LabelProps} from './Label';\nexport type {LinkProps} from './Link';\nexport type {LinkRenderProps} from './Link';\nexport type {ListBoxProps, ListBoxRenderProps, ListBoxItemProps, ListBoxItemRenderProps} from './ListBox';\nexport type {MenuProps, MenuItemProps, MenuItemRenderProps, MenuTriggerProps, SubmenuTriggerProps} from './Menu';\nexport type {MeterProps, MeterRenderProps} from './Meter';\nexport type {ModalOverlayProps, ModalRenderProps} from './Modal';\nexport type {NumberFieldProps, NumberFieldRenderProps} from './NumberField';\nexport type {OverlayArrowProps, OverlayArrowRenderProps} from './OverlayArrow';\nexport type {PopoverProps, PopoverRenderProps} from './Popover';\nexport type {ProgressBarProps, ProgressBarRenderProps} from './ProgressBar';\nexport type {RadioGroupProps, RadioGroupRenderProps, RadioProps, RadioRenderProps} from './RadioGroup';\nexport type {SearchFieldProps, SearchFieldRenderProps} from './SearchField';\nexport type {SelectProps, SelectValueProps, SelectValueRenderProps, SelectRenderProps} from './Select';\nexport type {SeparatorProps} from './Separator';\nexport type {SliderOutputProps, SliderProps, SliderRenderProps, SliderThumbProps, SliderTrackProps, SliderTrackRenderProps, SliderThumbRenderProps} from './Slider';\nexport type {SwitchProps, SwitchRenderProps} from './Switch';\nexport type {TableProps, TableRenderProps, TableHeaderProps, TableBodyProps, TableBodyRenderProps, ResizableTableContainerProps, ColumnProps, ColumnRenderProps, ColumnResizerProps, ColumnResizerRenderProps, RowProps, RowRenderProps, CellProps, CellRenderProps} from './Table';\nexport type {TabListProps, TabListRenderProps, TabPanelProps, TabPanelRenderProps, TabProps, TabsProps, TabRenderProps, TabsRenderProps} from './Tabs';\nexport type {TagGroupProps, TagListProps, TagListRenderProps, TagProps, TagRenderProps} from './TagGroup';\nexport type {TextAreaProps} from './TextArea';\nexport type {TextFieldProps, TextFieldRenderProps} from './TextField';\nexport type {TextProps} from './Text';\nexport type {ToggleButtonProps, ToggleButtonRenderProps} from './ToggleButton';\nexport type {ToolbarProps, ToolbarRenderProps} from './Toolbar';\nexport type {TooltipProps, TooltipRenderProps, TooltipTriggerComponentProps} from './Tooltip';\nexport type {TreeProps, TreeRenderProps, TreeItemProps, TreeItemRenderProps, TreeItemContentProps, TreeItemContentRenderProps} from './Tree';\nexport type {DragAndDropHooks, DragAndDropOptions} from './useDragAndDrop';\nexport type {DropIndicatorProps} from './DragAndDrop';\nexport type {ContextValue, SlotProps} from './utils';\nexport type {VirtualizerProps} from './Virtualizer';\n\nexport type {DateValue, DateRange, TimeValue} from 'react-aria';\nexport type {DirectoryDropItem, DraggableCollectionEndEvent, DraggableCollectionMoveEvent, DraggableCollectionStartEvent, DragPreviewRenderer, DragTypes, DropItem, DropOperation, DroppableCollectionDropEvent, DroppableCollectionEnterEvent, DroppableCollectionExitEvent, DroppableCollectionInsertDropEvent, DroppableCollectionMoveEvent, DroppableCollectionOnItemDropEvent, DroppableCollectionReorderEvent, DroppableCollectionRootDropEvent, DropPosition, DropTarget, FileDropItem, ItemDropTarget, RootDropTarget, TextDropItem, PressEvent} from 'react-aria';\nexport type {Key, Selection, SortDescriptor, SortDirection, SelectionMode} from 'react-stately';\nexport type {ValidationResult, RouterConfig} from '@react-types/shared';\nexport type {Color, ColorSpace, ColorFormat} from '@react-types/color';\nexport type {ListLayoutOptions, GridLayoutOptions} from '@react-stately/layout';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-aria-components",
3
- "version": "3.0.0-nightly-5ae234603-240925",
3
+ "version": "3.0.0-nightly-d57bd8d90-240927",
4
4
  "description": "A library of styleable components built using React Aria",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -37,37 +37,37 @@
37
37
  "url": "https://github.com/adobe/react-spectrum"
38
38
  },
39
39
  "dependencies": {
40
- "@internationalized/date": "^3.0.0-nightly-5ae234603-240925",
41
- "@internationalized/string": "^3.0.0-nightly-5ae234603-240925",
42
- "@react-aria/accordion": "3.0.0-nightly-5ae234603-240925",
43
- "@react-aria/collections": "3.0.0-nightly-5ae234603-240925",
44
- "@react-aria/color": "3.0.0-nightly-5ae234603-240925",
45
- "@react-aria/disclosure": "3.0.0-nightly-5ae234603-240925",
46
- "@react-aria/dnd": "^3.0.0-nightly-5ae234603-240925",
47
- "@react-aria/focus": "^3.0.0-nightly-5ae234603-240925",
48
- "@react-aria/interactions": "^3.0.0-nightly-5ae234603-240925",
49
- "@react-aria/live-announcer": "^3.0.0-nightly-5ae234603-240925",
50
- "@react-aria/menu": "^3.0.0-nightly-5ae234603-240925",
51
- "@react-aria/toolbar": "3.0.0-nightly-5ae234603-240925",
52
- "@react-aria/tree": "3.0.0-nightly-5ae234603-240925",
53
- "@react-aria/utils": "^3.0.0-nightly-5ae234603-240925",
54
- "@react-aria/virtualizer": "^3.0.0-nightly-5ae234603-240925",
55
- "@react-stately/color": "^3.0.0-nightly-5ae234603-240925",
56
- "@react-stately/disclosure": "3.0.0-nightly-5ae234603-240925",
57
- "@react-stately/layout": "^3.0.0-nightly-5ae234603-240925",
58
- "@react-stately/menu": "^3.0.0-nightly-5ae234603-240925",
59
- "@react-stately/table": "^3.0.0-nightly-5ae234603-240925",
60
- "@react-stately/utils": "^3.0.0-nightly-5ae234603-240925",
61
- "@react-stately/virtualizer": "^3.0.0-nightly-5ae234603-240925",
62
- "@react-types/color": "3.0.0-nightly-5ae234603-240925",
63
- "@react-types/form": "^3.0.0-nightly-5ae234603-240925",
64
- "@react-types/grid": "^3.0.0-nightly-5ae234603-240925",
65
- "@react-types/shared": "^3.0.0-nightly-5ae234603-240925",
66
- "@react-types/table": "^3.0.0-nightly-5ae234603-240925",
40
+ "@internationalized/date": "^3.0.0-nightly-d57bd8d90-240927",
41
+ "@internationalized/string": "^3.0.0-nightly-d57bd8d90-240927",
42
+ "@react-aria/accordion": "3.0.0-nightly-d57bd8d90-240927",
43
+ "@react-aria/collections": "3.0.0-nightly-d57bd8d90-240927",
44
+ "@react-aria/color": "3.0.0-nightly-d57bd8d90-240927",
45
+ "@react-aria/disclosure": "3.0.0-nightly-d57bd8d90-240927",
46
+ "@react-aria/dnd": "^3.0.0-nightly-d57bd8d90-240927",
47
+ "@react-aria/focus": "^3.0.0-nightly-d57bd8d90-240927",
48
+ "@react-aria/interactions": "^3.0.0-nightly-d57bd8d90-240927",
49
+ "@react-aria/live-announcer": "^3.0.0-nightly-d57bd8d90-240927",
50
+ "@react-aria/menu": "^3.0.0-nightly-d57bd8d90-240927",
51
+ "@react-aria/toolbar": "3.0.0-nightly-d57bd8d90-240927",
52
+ "@react-aria/tree": "3.0.0-nightly-d57bd8d90-240927",
53
+ "@react-aria/utils": "^3.0.0-nightly-d57bd8d90-240927",
54
+ "@react-aria/virtualizer": "^3.0.0-nightly-d57bd8d90-240927",
55
+ "@react-stately/color": "^3.0.0-nightly-d57bd8d90-240927",
56
+ "@react-stately/disclosure": "3.0.0-nightly-d57bd8d90-240927",
57
+ "@react-stately/layout": "^3.0.0-nightly-d57bd8d90-240927",
58
+ "@react-stately/menu": "^3.0.0-nightly-d57bd8d90-240927",
59
+ "@react-stately/table": "^3.0.0-nightly-d57bd8d90-240927",
60
+ "@react-stately/utils": "^3.0.0-nightly-d57bd8d90-240927",
61
+ "@react-stately/virtualizer": "^3.0.0-nightly-d57bd8d90-240927",
62
+ "@react-types/color": "3.0.0-nightly-d57bd8d90-240927",
63
+ "@react-types/form": "^3.0.0-nightly-d57bd8d90-240927",
64
+ "@react-types/grid": "^3.0.0-nightly-d57bd8d90-240927",
65
+ "@react-types/shared": "^3.0.0-nightly-d57bd8d90-240927",
66
+ "@react-types/table": "^3.0.0-nightly-d57bd8d90-240927",
67
67
  "@swc/helpers": "^0.5.0",
68
68
  "client-only": "^0.0.1",
69
- "react-aria": "^3.0.0-nightly-5ae234603-240925",
70
- "react-stately": "^3.0.0-nightly-5ae234603-240925",
69
+ "react-aria": "^3.0.0-nightly-d57bd8d90-240927",
70
+ "react-stately": "^3.0.0-nightly-d57bd8d90-240927",
71
71
  "use-sync-external-store": "^1.2.0"
72
72
  },
73
73
  "peerDependencies": {
@@ -65,7 +65,7 @@ export interface BreadcrumbRenderProps {
65
65
  isCurrent: boolean,
66
66
  /**
67
67
  * Whether the breadcrumb is disabled.
68
- * @selector [data-current]
68
+ * @selector [data-disabled]
69
69
  */
70
70
  isDisabled: boolean
71
71
  }
package/src/Button.tsx CHANGED
@@ -59,10 +59,10 @@ export interface ButtonRenderProps {
59
59
  */
60
60
  isDisabled: boolean,
61
61
  /**
62
- * If the button is currently in the `isPending` state.
62
+ * Whether the button is currently in a pending state.
63
63
  * @selector [data-pending]
64
64
  */
65
- isPending?: boolean
65
+ isPending: boolean
66
66
  }
67
67
 
68
68
  export interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' | 'target' | 'rel' | 'elementType'>, HoverEvents, SlotProps, RenderProps<ButtonRenderProps> {
@@ -89,7 +89,8 @@ export interface ButtonProps extends Omit<AriaButtonProps, 'children' | 'href' |
89
89
  /** The value associated with the button's name when it's submitted with the form data. */
90
90
  value?: string,
91
91
  /**
92
- * Whether to disable events immediately and display the `ProgressBar`.
92
+ * Whether the button is in a pending state. This disables press and hover events
93
+ * while retaining focusability, and announces the pending state to screen readers.
93
94
  */
94
95
  isPending?: boolean
95
96
  }
@@ -119,7 +120,7 @@ function Button(props: ButtonProps, ref: ForwardedRef<HTMLButtonElement>) {
119
120
  isFocused,
120
121
  isFocusVisible,
121
122
  isDisabled: props.isDisabled || false,
122
- isPending
123
+ isPending: isPending ?? false
123
124
  };
124
125
 
125
126
  let renderProps = useRenderProps({
@@ -71,7 +71,9 @@ export {_DisclosureGroup as DisclosureGroup};
71
71
 
72
72
  export interface DisclosureProps extends Omit<AriaDisclosureProps, 'children'>, RenderProps<DisclosureRenderProps>, SlotProps {
73
73
  /** An id for the disclosure when used within a DisclosureGroup, matching the id used in `expandedKeys`. */
74
- id?: Key
74
+ id?: Key,
75
+ /** The children of the component. A function may be provided to alter the children based on component state. */
76
+ children: ReactNode | ((values: DisclosureRenderProps & {defaultChildren: ReactNode | undefined}) => ReactNode)
75
77
  }
76
78
 
77
79
  export interface DisclosureRenderProps {
@@ -116,9 +118,10 @@ function Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {
116
118
  let defaultId = useId();
117
119
  id ||= defaultId;
118
120
 
121
+ let isExpanded = groupState ? groupState.expandedKeys.has(id) : props.isExpanded;
119
122
  let state = useDisclosureState({
120
123
  ...props,
121
- isExpanded: groupState ? groupState.expandedKeys.has(id) : props.isExpanded,
124
+ isExpanded,
122
125
  onExpandedChange(isExpanded) {
123
126
  if (groupState) {
124
127
  groupState.toggleKey(id);
@@ -132,6 +135,7 @@ function Disclosure(props: DisclosureProps, ref: ForwardedRef<HTMLDivElement>) {
132
135
  let isDisabled = props.isDisabled || groupState?.isDisabled || false;
133
136
  let {buttonProps, panelProps} = useDisclosure({
134
137
  ...props,
138
+ isExpanded,
135
139
  isDisabled
136
140
  }, state, panelRef);
137
141
  let {
@@ -185,6 +189,9 @@ export interface DisclosurePanelProps extends RenderProps<{}> {
185
189
  * @default 'group'
186
190
  */
187
191
  role?: 'group' | 'region',
192
+ /**
193
+ * The children of the component.
194
+ */
188
195
  children: ReactNode
189
196
  }
190
197
 
@@ -225,5 +232,8 @@ function DisclosurePanel(props: DisclosurePanelProps, ref: ForwardedRef<HTMLDivE
225
232
  const _Disclosure = /*#__PURE__*/ (forwardRef as forwardRefType)(Disclosure);
226
233
  export {_Disclosure as Disclosure};
227
234
 
235
+ /**
236
+ * A DisclosurePanel provides the content for a disclosure.
237
+ */
228
238
  const _DisclosurePanel = /*#__PURE__*/ (forwardRef as forwardRefType)(DisclosurePanel);
229
239
  export {_DisclosurePanel as DisclosurePanel};
@@ -159,6 +159,6 @@ function renderDropIndicatorWrapper(
159
159
  </VirtualizerItem>
160
160
  );
161
161
  }
162
-
162
+
163
163
  return indicator;
164
164
  }