@equisoft/design-elements-react 9.2.1-snapshot.20250204141019 → 9.2.1-snapshot.20250205002952

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.
Files changed (2) hide show
  1. package/dist/bundle.js +1 -1
  2. package/package.json +1 -1
package/dist/bundle.js CHANGED
@@ -3753,7 +3753,7 @@ color: ${({disabled:e,theme:t})=>e?t.component["combobox-clear-button-disabled-i
3753
3753
  }
3754
3754
  `,h=(0,u.default)(d.Avatar)`
3755
3755
  margin-right: ${({isMobile:e})=>e?0:"var(--spacing-1x)"};
3756
- `;function v(e){return e.find((e=>!e.disabled))}t.UserProfile=({ariaLabel:e,buttonAriaLabel:t,className:n,defaultOpen:a=!1,id:r,inverted:i=!0,tag:u,onMenuVisibilityChanged:d,options:m,userEmail:g,username:b})=>{const{t:y}=(0,s.useTranslation)("user-profile"),{isMobile:w}=(0,c.useDeviceContext)(),M=v(m),E=(0,l.useRef)(null);return(0,o.jsx)(f,Object.assign({ariaLabel:e||y("ariaLabel"),buttonAriaLabel:t,className:n,"data-testid":"user-profile",defaultOpen:a,hasCaret:!w,id:r,icon:(0,o.jsx)(h,{isMobile:w,username:b}),inverted:i,tag:u,isMobile:w},w?{}:{label:b},{onMenuVisibilityChanged:d,firstItemRef:E,render:e=>(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(p.GroupItem,{id:"user-label",children:(0,o.jsx)(p.LabelItem,{label:b,description:g})}),(0,o.jsx)(p.GroupItem,{id:"user-actions",children:m.map((t=>(0,o.jsx)(p.NavItem,{"data-testid":`action-${t.value}`,ref:M===t?E:void 0,value:t.value,href:t.href,label:t.label,isHtmlLink:t.isHtmlLink,isExternalLink:t.isExternalLink,lozenge:t.lozenge,disabled:t.disabled,target:t.target,onClick:t.disabled?void 0:n=>{var a;null===(a=t.onClick)||void 0===a||a.call(t,n),e()}},t.value)))})]})}))};try{t.getFirstFocusableItem.displayName="getFirstFocusableItem",t.getFirstFocusableItem.__docgenInfo={description:"",displayName:"getFirstFocusableItem",props:{length:{defaultValue:null,description:"Gets or sets the length of the array. This is a number one higher than the highest index in the array.",name:"length",required:!0,type:{name:"number"}},toString:{defaultValue:null,description:"Returns a string representation of an array.",name:"toString",required:!1,type:{name:"() => string"}},toLocaleString:{defaultValue:null,description:"Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.",name:"toLocaleString",required:!1,type:{name:"{ (): string; (locales: string | string[], options?: (NumberFormatOptions & DateTimeFormatOptions)): string; }"}},pop:{defaultValue:null,description:"Removes the last element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.",name:"pop",required:!0,type:{name:"() => NavItemProps | undefined"}},push:{defaultValue:null,description:"Appends new elements to the end of an array, and returns the new length of the array.\n@param items New elements to add to the array.",name:"push",required:!0,type:{name:"(...items: NavItemProps[]) => number"}},concat:{defaultValue:null,description:"Combines two or more arrays.\nThis method returns a new array without modifying any existing arrays.\n@param items Additional arrays and/or items to add to the end of the array.\n@param items Additional arrays and/or items to add to the end of the array.",name:"concat",required:!0,type:{name:"{ (...items: ConcatArray<NavItemProps>[]): NavItemProps[]; (...items: (NavItemProps | ConcatArray<NavItemProps>)[]): NavItemProps[]; }"}},join:{defaultValue:null,description:"Adds all the elements of an array into a string, separated by the specified separator string.\n@param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.",name:"join",required:!0,type:{name:"(separator?: string | undefined) => string"}},reverse:{defaultValue:null,description:"Reverses the elements in an array in place.\nThis method mutates the array and returns a reference to the same array.",name:"reverse",required:!0,type:{name:"() => NavItemProps[]"}},shift:{defaultValue:null,description:"Removes the first element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.",name:"shift",required:!0,type:{name:"() => NavItemProps | undefined"}},slice:{defaultValue:null,description:"Returns a copy of a section of an array.\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\nFor example, -2 refers to the second to last element of the array.\n@param start The beginning index of the specified portion of the array.\nIf start is undefined, then the slice begins at index 0.\n@param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\nIf end is undefined, then the slice extends to the end of the array.",name:"slice",required:!0,type:{name:"(start?: number | undefined, end?: number | undefined) => NavItemProps[]"}},sort:{defaultValue:null,description:"Sorts an array in place.\nThis method mutates the array and returns a reference to the same array.\n@param compareFn Function used to determine the order of the elements. It is expected to return\na negative value if the first argument is less than the second argument, zero if they're equal, and a positive\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\n```ts\n[11,2,22,1].sort((a, b) => a - b)\n```",name:"sort",required:!0,type:{name:"(compareFn?: ((a: NavItemProps, b: NavItemProps) => number) | undefined) => NavItemProps[]"}},splice:{defaultValue:null,description:"Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n@param start The zero-based location in the array from which to start removing elements.\n@param deleteCount The number of elements to remove.\n@returns An array containing the elements that were deleted.\n@param start The zero-based location in the array from which to start removing elements.\n@param deleteCount The number of elements to remove.\n@param items Elements to insert into the array in place of the deleted elements.\n@returns An array containing the elements that were deleted.",name:"splice",required:!0,type:{name:"{ (start: number, deleteCount?: number | undefined): NavItemProps[]; (start: number, deleteCount: number, ...items: NavItemProps[]): NavItemProps[]; }"}},unshift:{defaultValue:null,description:"Inserts new elements at the start of an array, and returns the new length of the array.\n@param items Elements to insert at the start of the array.",name:"unshift",required:!0,type:{name:"(...items: NavItemProps[]) => number"}},indexOf:{defaultValue:null,description:"Returns the index of the first occurrence of a value in an array, or -1 if it is not present.\n@param searchElement The value to locate in the array.\n@param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.",name:"indexOf",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => number"}},lastIndexOf:{defaultValue:null,description:"Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.\n@param searchElement The value to locate in the array.\n@param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.",name:"lastIndexOf",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => number"}},every:{defaultValue:null,description:"Determines whether all the members of an array satisfy the specified test.\n@param predicate A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.\n@param predicate A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.",name:"every",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => value is S, thisArg?: any): this is S[]; (predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any): boolean; }"}},some:{defaultValue:null,description:"Determines whether the specified callback function returns true for any element of an array.\n@param predicate A function that accepts up to three arguments. The some method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value true, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.",name:"some",required:!0,type:{name:"(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any) => boolean"}},forEach:{defaultValue:null,description:"Performs the specified action for each element in an array.\n@param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",name:"forEach",required:!0,type:{name:"(callbackfn: (value: NavItemProps, index: number, array: NavItemProps[]) => void, thisArg?: any) => void"}},map:{defaultValue:null,description:"Calls a defined callback function on each element of an array, and returns an array that contains the results.\n@param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",name:"map",required:!0,type:{name:"<U>(callbackfn: (value: NavItemProps, index: number, array: NavItemProps[]) => U, thisArg?: any) => U[]"}},filter:{defaultValue:null,description:"Returns the elements of an array that meet the condition specified in a callback function.\n@param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n@param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",name:"filter",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => value is S, thisArg?: any): S[]; (predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any): NavItemProps[]; }"}},reduce:{defaultValue:null,description:"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n@param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n@param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",name:"reduce",required:!0,type:{name:"{ (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps): NavItemProps; (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps, initialValue: NavItemProps): NavIt..."}},reduceRight:{defaultValue:null,description:"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n@param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n@param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",name:"reduceRight",required:!0,type:{name:"{ (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps): NavItemProps; (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps, initialValue: NavItemProps): NavIt..."}},find:{defaultValue:null,description:"Returns the value of the first element in the array where predicate is true, and undefined\notherwise.\n@param predicate find calls predicate once for each element of the array, in ascending\norder, until it finds one where predicate returns true. If such an element is found, find\nimmediately returns that element value. Otherwise, find returns undefined.\n@param thisArg If provided, it will be used as the this value for each invocation of\npredicate. If it is not provided, undefined is used instead.",name:"find",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => unknown, thisArg?: any): NavItemProps | undefined; }"}},findIndex:{defaultValue:null,description:"Returns the index of the first element in the array where predicate is true, and -1\notherwise.\n@param predicate find calls predicate once for each element of the array, in ascending\norder, until it finds one where predicate returns true. If such an element is found,\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1.\n@param thisArg If provided, it will be used as the this value for each invocation of\npredicate. If it is not provided, undefined is used instead.",name:"findIndex",required:!0,type:{name:"(predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => unknown, thisArg?: any) => number"}},fill:{defaultValue:null,description:"Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n@param value value to fill array section with\n@param start index to start filling the array at. If start is negative, it is treated as\nlength+start where length is the length of the array.\n@param end index to stop filling the array at. If end is negative, it is treated as\nlength+end.",name:"fill",required:!0,type:{name:"(value: NavItemProps, start?: number | undefined, end?: number | undefined) => NavItemProps[]"}},copyWithin:{defaultValue:null,description:"Returns the this object after copying a section of the array identified by start and end\nto the same array starting at position target\n@param target If target is negative, it is treated as length+target where length is the\nlength of the array.\n@param start If start is negative, it is treated as length+start. If end is negative, it\nis treated as length+end.\n@param end If not specified, length of the this object is used as its default value.",name:"copyWithin",required:!0,type:{name:"(target: number, start: number, end?: number | undefined) => NavItemProps[]"}},entries:{defaultValue:null,description:"Returns an iterable of key, value pairs for every entry in the array",name:"entries",required:!0,type:{name:"() => IterableIterator<[number, NavItemProps]>"}},keys:{defaultValue:null,description:"Returns an iterable of keys in the array",name:"keys",required:!0,type:{name:"() => IterableIterator<number>"}},values:{defaultValue:null,description:"Returns an iterable of values in the array",name:"values",required:!0,type:{name:"() => IterableIterator<NavItemProps>"}},includes:{defaultValue:null,description:"Determines whether an array includes a certain element, returning true or false as appropriate.\n@param searchElement The element to search for.\n@param fromIndex The position in this array at which to begin searching for searchElement.",name:"includes",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => boolean"}},flatMap:{defaultValue:null,description:"Calls a defined callback function on each element of an array. Then, flattens the result into\na new array.\nThis is identical to a map followed by flat with depth 1.\n@param callback A function that accepts up to three arguments. The flatMap method calls the\ncallback function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callback function. If\nthisArg is omitted, undefined is used as the this value.",name:"flatMap",required:!0,type:{name:"<U, This = undefined>(callback: (this: This, value: NavItemProps, index: number, array: NavItemProps[]) => U | readonly U[], thisArg?: This | undefined) => U[]"}},flat:{defaultValue:null,description:"Returns a new array with all sub-array elements concatenated into it recursively up to the\nspecified depth.\n@param depth The maximum recursion depth",name:"flat",required:!0,type:{name:"<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]"}},"__@iterator@54863":{defaultValue:null,description:"Iterator",name:"__@iterator@54863",required:!0,type:{name:"() => IterableIterator<NavItemProps>"}},"__@unscopables@57356":{defaultValue:null,description:"Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",name:"__@unscopables@57356",required:!0,type:{name:"{ [x: number]: boolean | undefined; length?: boolean | undefined; toString?: boolean | undefined; toLocaleString?: boolean | undefined; pop?: boolean | undefined; push?: boolean | undefined; ... 29 more ...; at?: boolean | undefined; }"}},at:{defaultValue:null,description:"",name:"at",required:!0,type:{name:"(index: number) => NavItemProps | undefined"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/user-profile/user-profile.tsx#getFirstFocusableItem"]={docgenInfo:t.getFirstFocusableItem.__docgenInfo,name:"getFirstFocusableItem",path:"src/components/user-profile/user-profile.tsx#getFirstFocusableItem"})}catch(e){}try{t.UserProfile.displayName="UserProfile",t.UserProfile.__docgenInfo={description:"",displayName:"UserProfile",props:{ariaLabel:{defaultValue:{value:"'User menu'"},description:"Sets nav's description",name:"ariaLabel",required:!1,type:{name:"string"}},buttonAriaLabel:{defaultValue:null,description:"",name:"buttonAriaLabel",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"",name:"className",required:!1,type:{name:"string"}},defaultOpen:{defaultValue:{value:!1},description:"Sets menu open by default",name:"defaultOpen",required:!1,type:{name:"boolean"}},id:{defaultValue:null,description:"",name:"id",required:!1,type:{name:"string"}},inverted:{defaultValue:{value:!0},description:"",name:"inverted",required:!1,type:{name:"boolean"}},tag:{defaultValue:null,description:"Set wrapper element tag",name:"tag",required:!1,type:{name:"enum",value:[{value:'"div"'},{value:'"nav"'}]}},options:{defaultValue:null,description:"",name:"options",required:!0,type:{name:"NavItemProps[]"}},username:{defaultValue:null,description:"",name:"username",required:!0,type:{name:"string"}},userEmail:{defaultValue:null,description:"",name:"userEmail",required:!1,type:{name:"string"}},onMenuVisibilityChanged:{defaultValue:null,description:"",name:"onMenuVisibilityChanged",required:!1,type:{name:"((isOpen: boolean) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/user-profile/user-profile.tsx#UserProfile"]={docgenInfo:t.UserProfile.__docgenInfo,name:"UserProfile",path:"src/components/user-profile/user-profile.tsx#UserProfile"})}catch(e){}},39086:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hiddenStyle=void 0,t.hiddenStyle="\n border: 0 !important;\n clip: rect(1px, 1px, 1px, 1px);\n height: 1px !important;\n overflow: hidden;\n padding:0 !important;\n position: absolute !important;\n width: 1px !important;\n"},10861:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.VisuallyHidden=void 0;const r=n(97905),i=a(n(88694)),o=n(39086),l=i.default.span`
3756
+ `;function v(e){return e.find((e=>!e.disabled))}t.UserProfile=({ariaLabel:e,buttonAriaLabel:t,className:n,defaultOpen:a=!1,id:r,inverted:i=!0,tag:u,onMenuVisibilityChanged:d,options:m,userEmail:g,username:b})=>{const{t:y}=(0,s.useTranslation)("user-profile"),{isMobile:w}=(0,c.useDeviceContext)(),M=v(m),E=(0,l.useRef)(null);return(0,o.jsx)(f,Object.assign({ariaLabel:e||y("ariaLabel"),buttonAriaLabel:t,className:n,"data-testid":"user-profile",defaultOpen:a,hasCaret:!w,id:r,icon:(0,o.jsx)(h,{isMobile:w,username:b}),inverted:i,tag:u,isMobile:w},w?{}:{label:b},{onMenuVisibilityChanged:d,firstItemRef:E,render:e=>(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(p.GroupItem,{id:"user-label",children:(0,o.jsx)(p.LabelItem,{label:b,description:g})}),(0,o.jsx)(p.GroupItem,{id:"user-actions",children:m.map((t=>(0,o.jsx)(p.NavItem,{"data-testid":`action-${t.value}`,ref:M===t?E:void 0,value:t.value,href:t.href,label:t.label,isHtmlLink:t.isHtmlLink,isExternalLink:t.isExternalLink,lozenge:t.lozenge,disabled:t.disabled,target:t.target,onClick:t.disabled?void 0:n=>{var a;null===(a=t.onClick)||void 0===a||a.call(t,n),e()}},t.value)))})]})}))};try{t.getFirstFocusableItem.displayName="getFirstFocusableItem",t.getFirstFocusableItem.__docgenInfo={description:"",displayName:"getFirstFocusableItem",props:{length:{defaultValue:null,description:"Gets or sets the length of the array. This is a number one higher than the highest index in the array.",name:"length",required:!0,type:{name:"number"}},toString:{defaultValue:null,description:"Returns a string representation of an array.",name:"toString",required:!1,type:{name:"() => string"}},toLocaleString:{defaultValue:null,description:"Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.",name:"toLocaleString",required:!1,type:{name:"{ (): string; (locales: string | string[], options?: (NumberFormatOptions & DateTimeFormatOptions)): string; }"}},pop:{defaultValue:null,description:"Removes the last element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.",name:"pop",required:!0,type:{name:"() => NavItemProps | undefined"}},push:{defaultValue:null,description:"Appends new elements to the end of an array, and returns the new length of the array.\n@param items New elements to add to the array.",name:"push",required:!0,type:{name:"(...items: NavItemProps[]) => number"}},concat:{defaultValue:null,description:"Combines two or more arrays.\nThis method returns a new array without modifying any existing arrays.\n@param items Additional arrays and/or items to add to the end of the array.\n@param items Additional arrays and/or items to add to the end of the array.",name:"concat",required:!0,type:{name:"{ (...items: ConcatArray<NavItemProps>[]): NavItemProps[]; (...items: (NavItemProps | ConcatArray<NavItemProps>)[]): NavItemProps[]; }"}},join:{defaultValue:null,description:"Adds all the elements of an array into a string, separated by the specified separator string.\n@param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.",name:"join",required:!0,type:{name:"(separator?: string | undefined) => string"}},reverse:{defaultValue:null,description:"Reverses the elements in an array in place.\nThis method mutates the array and returns a reference to the same array.",name:"reverse",required:!0,type:{name:"() => NavItemProps[]"}},shift:{defaultValue:null,description:"Removes the first element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.",name:"shift",required:!0,type:{name:"() => NavItemProps | undefined"}},slice:{defaultValue:null,description:"Returns a copy of a section of an array.\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\nFor example, -2 refers to the second to last element of the array.\n@param start The beginning index of the specified portion of the array.\nIf start is undefined, then the slice begins at index 0.\n@param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\nIf end is undefined, then the slice extends to the end of the array.",name:"slice",required:!0,type:{name:"(start?: number | undefined, end?: number | undefined) => NavItemProps[]"}},sort:{defaultValue:null,description:"Sorts an array in place.\nThis method mutates the array and returns a reference to the same array.\n@param compareFn Function used to determine the order of the elements. It is expected to return\na negative value if the first argument is less than the second argument, zero if they're equal, and a positive\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\n```ts\n[11,2,22,1].sort((a, b) => a - b)\n```",name:"sort",required:!0,type:{name:"(compareFn?: ((a: NavItemProps, b: NavItemProps) => number) | undefined) => NavItemProps[]"}},splice:{defaultValue:null,description:"Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n@param start The zero-based location in the array from which to start removing elements.\n@param deleteCount The number of elements to remove.\n@returns An array containing the elements that were deleted.\n@param start The zero-based location in the array from which to start removing elements.\n@param deleteCount The number of elements to remove.\n@param items Elements to insert into the array in place of the deleted elements.\n@returns An array containing the elements that were deleted.",name:"splice",required:!0,type:{name:"{ (start: number, deleteCount?: number | undefined): NavItemProps[]; (start: number, deleteCount: number, ...items: NavItemProps[]): NavItemProps[]; }"}},unshift:{defaultValue:null,description:"Inserts new elements at the start of an array, and returns the new length of the array.\n@param items Elements to insert at the start of the array.",name:"unshift",required:!0,type:{name:"(...items: NavItemProps[]) => number"}},indexOf:{defaultValue:null,description:"Returns the index of the first occurrence of a value in an array, or -1 if it is not present.\n@param searchElement The value to locate in the array.\n@param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.",name:"indexOf",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => number"}},lastIndexOf:{defaultValue:null,description:"Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.\n@param searchElement The value to locate in the array.\n@param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.",name:"lastIndexOf",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => number"}},every:{defaultValue:null,description:"Determines whether all the members of an array satisfy the specified test.\n@param predicate A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.\n@param predicate A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.",name:"every",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => value is S, thisArg?: any): this is S[]; (predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any): boolean; }"}},some:{defaultValue:null,description:"Determines whether the specified callback function returns true for any element of an array.\n@param predicate A function that accepts up to three arguments. The some method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value true, or until the end of the array.\n@param thisArg An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.",name:"some",required:!0,type:{name:"(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any) => boolean"}},forEach:{defaultValue:null,description:"Performs the specified action for each element in an array.\n@param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",name:"forEach",required:!0,type:{name:"(callbackfn: (value: NavItemProps, index: number, array: NavItemProps[]) => void, thisArg?: any) => void"}},map:{defaultValue:null,description:"Calls a defined callback function on each element of an array, and returns an array that contains the results.\n@param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",name:"map",required:!0,type:{name:"<U>(callbackfn: (value: NavItemProps, index: number, array: NavItemProps[]) => U, thisArg?: any) => U[]"}},filter:{defaultValue:null,description:"Returns the elements of an array that meet the condition specified in a callback function.\n@param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n@param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",name:"filter",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => value is S, thisArg?: any): S[]; (predicate: (value: NavItemProps, index: number, array: NavItemProps[]) => unknown, thisArg?: any): NavItemProps[]; }"}},reduce:{defaultValue:null,description:"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n@param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n@param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",name:"reduce",required:!0,type:{name:"{ (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps): NavItemProps; (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps, initialValue: NavItemProps): NavIt..."}},reduceRight:{defaultValue:null,description:"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n@param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n@param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n@param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",name:"reduceRight",required:!0,type:{name:"{ (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps): NavItemProps; (callbackfn: (previousValue: NavItemProps, currentValue: NavItemProps, currentIndex: number, array: NavItemProps[]) => NavItemProps, initialValue: NavItemProps): NavIt..."}},find:{defaultValue:null,description:"Returns the value of the first element in the array where predicate is true, and undefined\notherwise.\n@param predicate find calls predicate once for each element of the array, in ascending\norder, until it finds one where predicate returns true. If such an element is found, find\nimmediately returns that element value. Otherwise, find returns undefined.\n@param thisArg If provided, it will be used as the this value for each invocation of\npredicate. If it is not provided, undefined is used instead.",name:"find",required:!0,type:{name:"{ <S extends NavItemProps>(predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => unknown, thisArg?: any): NavItemProps | undefined; }"}},findIndex:{defaultValue:null,description:"Returns the index of the first element in the array where predicate is true, and -1\notherwise.\n@param predicate find calls predicate once for each element of the array, in ascending\norder, until it finds one where predicate returns true. If such an element is found,\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1.\n@param thisArg If provided, it will be used as the this value for each invocation of\npredicate. If it is not provided, undefined is used instead.",name:"findIndex",required:!0,type:{name:"(predicate: (value: NavItemProps, index: number, obj: NavItemProps[]) => unknown, thisArg?: any) => number"}},fill:{defaultValue:null,description:"Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n@param value value to fill array section with\n@param start index to start filling the array at. If start is negative, it is treated as\nlength+start where length is the length of the array.\n@param end index to stop filling the array at. If end is negative, it is treated as\nlength+end.",name:"fill",required:!0,type:{name:"(value: NavItemProps, start?: number | undefined, end?: number | undefined) => NavItemProps[]"}},copyWithin:{defaultValue:null,description:"Returns the this object after copying a section of the array identified by start and end\nto the same array starting at position target\n@param target If target is negative, it is treated as length+target where length is the\nlength of the array.\n@param start If start is negative, it is treated as length+start. If end is negative, it\nis treated as length+end.\n@param end If not specified, length of the this object is used as its default value.",name:"copyWithin",required:!0,type:{name:"(target: number, start: number, end?: number | undefined) => NavItemProps[]"}},entries:{defaultValue:null,description:"Returns an iterable of key, value pairs for every entry in the array",name:"entries",required:!0,type:{name:"() => IterableIterator<[number, NavItemProps]>"}},keys:{defaultValue:null,description:"Returns an iterable of keys in the array",name:"keys",required:!0,type:{name:"() => IterableIterator<number>"}},values:{defaultValue:null,description:"Returns an iterable of values in the array",name:"values",required:!0,type:{name:"() => IterableIterator<NavItemProps>"}},includes:{defaultValue:null,description:"Determines whether an array includes a certain element, returning true or false as appropriate.\n@param searchElement The element to search for.\n@param fromIndex The position in this array at which to begin searching for searchElement.",name:"includes",required:!0,type:{name:"(searchElement: NavItemProps, fromIndex?: number | undefined) => boolean"}},flatMap:{defaultValue:null,description:"Calls a defined callback function on each element of an array. Then, flattens the result into\na new array.\nThis is identical to a map followed by flat with depth 1.\n@param callback A function that accepts up to three arguments. The flatMap method calls the\ncallback function one time for each element in the array.\n@param thisArg An object to which the this keyword can refer in the callback function. If\nthisArg is omitted, undefined is used as the this value.",name:"flatMap",required:!0,type:{name:"<U, This = undefined>(callback: (this: This, value: NavItemProps, index: number, array: NavItemProps[]) => U | readonly U[], thisArg?: This | undefined) => U[]"}},flat:{defaultValue:null,description:"Returns a new array with all sub-array elements concatenated into it recursively up to the\nspecified depth.\n@param depth The maximum recursion depth",name:"flat",required:!0,type:{name:"<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]"}},"__@iterator@54863":{defaultValue:null,description:"Iterator",name:"__@iterator@54863",required:!0,type:{name:"() => IterableIterator<NavItemProps>"}},"__@unscopables@57363":{defaultValue:null,description:"Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",name:"__@unscopables@57363",required:!0,type:{name:"{ [x: number]: boolean | undefined; length?: boolean | undefined; toString?: boolean | undefined; toLocaleString?: boolean | undefined; pop?: boolean | undefined; push?: boolean | undefined; ... 29 more ...; at?: boolean | undefined; }"}},at:{defaultValue:null,description:"",name:"at",required:!0,type:{name:"(index: number) => NavItemProps | undefined"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/user-profile/user-profile.tsx#getFirstFocusableItem"]={docgenInfo:t.getFirstFocusableItem.__docgenInfo,name:"getFirstFocusableItem",path:"src/components/user-profile/user-profile.tsx#getFirstFocusableItem"})}catch(e){}try{t.UserProfile.displayName="UserProfile",t.UserProfile.__docgenInfo={description:"",displayName:"UserProfile",props:{ariaLabel:{defaultValue:{value:"'User menu'"},description:"Sets nav's description",name:"ariaLabel",required:!1,type:{name:"string"}},buttonAriaLabel:{defaultValue:null,description:"",name:"buttonAriaLabel",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"",name:"className",required:!1,type:{name:"string"}},defaultOpen:{defaultValue:{value:!1},description:"Sets menu open by default",name:"defaultOpen",required:!1,type:{name:"boolean"}},id:{defaultValue:null,description:"",name:"id",required:!1,type:{name:"string"}},inverted:{defaultValue:{value:!0},description:"",name:"inverted",required:!1,type:{name:"boolean"}},tag:{defaultValue:null,description:"Set wrapper element tag",name:"tag",required:!1,type:{name:"enum",value:[{value:'"div"'},{value:'"nav"'}]}},options:{defaultValue:null,description:"",name:"options",required:!0,type:{name:"NavItemProps[]"}},username:{defaultValue:null,description:"",name:"username",required:!0,type:{name:"string"}},userEmail:{defaultValue:null,description:"",name:"userEmail",required:!1,type:{name:"string"}},onMenuVisibilityChanged:{defaultValue:null,description:"",name:"onMenuVisibilityChanged",required:!1,type:{name:"((isOpen: boolean) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/user-profile/user-profile.tsx#UserProfile"]={docgenInfo:t.UserProfile.__docgenInfo,name:"UserProfile",path:"src/components/user-profile/user-profile.tsx#UserProfile"})}catch(e){}},39086:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hiddenStyle=void 0,t.hiddenStyle="\n border: 0 !important;\n clip: rect(1px, 1px, 1px, 1px);\n height: 1px !important;\n overflow: hidden;\n padding:0 !important;\n position: absolute !important;\n width: 1px !important;\n"},10861:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.VisuallyHidden=void 0;const r=n(97905),i=a(n(88694)),o=n(39086),l=i.default.span`
3757
3757
  ${o.hiddenStyle}
3758
3758
  `;t.VisuallyHidden=({children:e})=>(0,r.jsx)(l,{"aria-hidden":"false",children:e});try{t.VisuallyHidden.displayName="VisuallyHidden",t.VisuallyHidden.__docgenInfo={description:"",displayName:"VisuallyHidden",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/visually-hidden/visuallyhidden.tsx#VisuallyHidden"]={docgenInfo:t.VisuallyHidden.__docgenInfo,name:"VisuallyHidden",path:"src/components/visually-hidden/visuallyhidden.tsx#VisuallyHidden"})}catch(e){}},74116:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useAriaConditionalIds=function(e){return e.filter((e=>{var t;return e.id&&(null===(t=e.include)||void 0===t||t)})).map((e=>e.id)).join(" ")||void 0}},22065:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useClickOutside=function(e,t){(0,a.useEffect)((()=>{function n(n){(0,r.eventIsInside)(n,...e.map((e=>e.current)))||t()}return document.addEventListener("mousedown",n),()=>document.removeEventListener("mousedown",n)}),[t,e])};const a=n(39155),r=n(19239)},55369:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useDataAttributes=function(e){const[t,n]=(0,a.useState)((()=>i(e))),o=r(e)?[...Object.values(e)]:[e];return(0,a.useEffect)((()=>{n(i(e))}),o),t};const a=n(39155);function r(e){return null!==e&&"object"==typeof e}function i(e){return r(e)?Object.keys(e).reduce(((t,n)=>(function(e){return null!==e.match(/data-/i)}(n)&&(t[n]=e[n]),t)),{}):{}}},21122:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useId=function(e){return(0,a.useMemo)((()=>null!=e?e:(0,r.v4)()),[e])};const a=n(39155),r=n(27129)},82958:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useListCursor=function({elements:e,initialElement:t,predicate:n=()=>!0,wrapAround:i=!1}){const[o,l]=(0,a.useState)(t),u=(0,a.useCallback)((()=>{const t=(0,r.findFirstElement)(e,n);return t&&l(t),t}),[e,n]),s=(0,a.useCallback)((()=>{const t=(0,r.findLastElement)(e,n);return t&&l(t),t}),[e,n]),d=(0,a.useCallback)((()=>{if(void 0===o)return u();const t=e.indexOf(o),a=(0,r.findPreviousElement)(e,t,n,{wrapAround:i});return a&&l(a),a}),[e,n,u,o,i]),c=(0,a.useCallback)((()=>{if(void 0===o)return u();const t=e.indexOf(o),a=(0,r.findNextElement)(e,t,n,{wrapAround:i});return a&&l(a),a}),[e,n,u,o,i]);return{selectedElement:o,setSelectedElement:l,selectPrevious:d,selectNext:c,selectFirst:u,selectLast:s}};const a=n(39155),r=n(56865)},88280:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useListSearch=function({elements:e,focusedElement:t,onFoundElementChange:n,searchPropertyAccessor:i,predicate:o=()=>!0,searchResetTimeout:l=500}){const u=(0,a.useRef)(void 0),s=(0,a.useRef)(""),d=(0,a.useCallback)(((e,t)=>e.filter((e=>i(e).toLowerCase().startsWith(t.toLowerCase())&&o(e)))),[o,i]),c=(0,a.useCallback)((n=>{const a=t?e.indexOf(t)+1:0,i=[...e.slice(a),...e.slice(0,a)],o=d(i,n)[0];return o||((0,r.allSameLetter)(n)?d(i,n[0])[0]:void 0)}),[d,t,e]);return{handleSearchInput:(0,a.useCallback)((e=>{void 0!==u.current&&clearTimeout(u.current),u.current=setTimeout((()=>{s.current=""}),l),s.current+=e,n&&n(c(s.current))}),[c,n,l])}};const a=n(39155),r=n(45079)},19244:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useListSelect=function(e,t=()=>{},n=!1){const[r,i]=(0,a.useState)((()=>{const e=t();return e?[e]:[]})),[o,l]=(0,a.useState)(t),u=r[r.length-1],s=(0,a.useCallback)((t=>{l(t),n?r.find((n=>e(n,t)))||i((e=>[...e,t])):i([t])}),[n,e,r]),d=(0,a.useCallback)((t=>{i((n=>n.filter((n=>!e(n,t)))))}),[e]),c=(0,a.useCallback)((()=>{!n&&o&&i([o])}),[n,o]),m=(0,a.useCallback)((()=>{i([]),l(void 0)}),[]);return{selectedElements:r,currentSelectedElement:u,previousSelectedElement:o,selectElement:s,deselectElement:d,revertPreviousSelectedElement:c,clearSelection:m}};const a=n(39155)},39355:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useScrollIntoView=function({container:e}){return{scrollIntoView:(0,a.useCallback)(((t,n=!1)=>{if(!e.current)return;const{offsetHeight:a,offsetTop:r}=t,{offsetHeight:i,scrollTop:o}=e.current,l=getComputedStyle(e.current),u=r-parseFloat(l.paddingTop),s=r-i+a+parseFloat(l.paddingBottom),d=s>o;u<o||d&&n?e.current.scrollTo(0,u):d&&e.current.scrollTo(0,s)}),[e])}};const a=n(39155)},89450:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useScrollable=function({scrollableElement:e,scrollByPercent:t,onScroll:n}){(0,a.useEffect)((()=>{if(!e.current)return;const t=e.current;function a(){const e=t.scrollLeft,a=t.scrollWidth,r=t.offsetWidth;n({atStartX:0===e,atEndX:Math.ceil(e)+r>=a})}a();const r=new ResizeObserver(a);return r.observe(t),t.addEventListener("scroll",a),()=>{r.unobserve(t),t.removeEventListener("scroll",a)}}),[e,n]);const r=(0,a.useCallback)((n=>()=>{if(!e.current)return;const a=e.current.offsetWidth*t,r=e.current.scrollLeft,i="left"===n?r-a:r+a;e.current.scrollTo({left:i,behavior:"smooth"})}),[e,t]);return(0,a.useMemo)((()=>({scrollToLeft:r("left"),scrollToRight:r("right")})),[r])};const a=n(39155)},4054:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useTheme=function(){return(0,a.useContext)(r.ThemeContext)};const a=n(39155),r=n(88694)},10384:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useToast=function(){const{addToast:e,removeToast:t}=(0,r.useToasts)();return{showToast:(0,a.useCallback)(((t,n)=>e(t,n,!0)),[e]),hideToast:t}};const a=n(39155),r=n(46503)},46503:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useToasts=function(){return(0,a.useContext)(r.ToastContext)};const a=n(39155),r=n(19014)},31771:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.createI18n=function(e="en"){const t=r.default.createInstance();return t.init({defaultNS:"common",resources:i.Translations,lng:e,fallbackLng:e,interpolation:{escapeValue:!1},returnNull:!1}).catch(console.error),t};const r=a(n(49575)),i=n(66259)},66259:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Translations=void 0,t.Translations={en:{avatar:{ariaLabel:"{{username}} avatar"},bento:{productsLabel:"Products",externalsLabel:"Resources"},button:{loadingLabel:"Loading..."},combobox:{clearInput:"Clear input",loading:"Loading...",noResult:"No result",noResultForQuery:'No result for "{{query}}"',showOptions:"Show {{label}} options",validationErrorMessage:"You must select an option"},common:{opensInNewTab:"opens in a new tab",opensInNewTabScreenReader:"(opens in a new tab)",error:"Error"},datepicker:{calendarButtonLabel:"Choose date",calendarButtonSelectedLabel:"Choose date. The selected date is",calendarContainerLabel:"Choose date",todayButtonAriaLabel:"Choose today's date",todayButtonLabel:"Today",validationErrorMessage:"Invalid date",monthPreviousButtonLabel:"Go to previous month",monthNextButtonLabel:"Go to next month",monthSelectLabel:"Select a month",yearSelectLabel:"Select a year"},"dropdown-list":{inputAriaLabel:"Select an option",validationErrorMessage:"You must select an option"},"error-summary":{title:"The form contains one or more errors",message:"Please correct them to proceed to the next step."},"global-banner":{ignore:"Ignore"},"menu-button":{buttonAriaLabel:"Open menu"},modal:{closeButtonLabel:"Close dialog"},"modal-dialog":{cancelButtonLabel:"Cancel",confirmButtonLabel:"Confirm"},"money-input":{validationErrorMessage:"Invalid number"},"nav-menu-button":{ariaLabel:"Menu"},"numeric-input":{requiredValidationErrorMessage:"This field is required",maxValidationErrorMessage:"The value must be less than or equal to {{max}}",minValidationErrorMessage:"The value must be greater than or equal to {{min}}"},pagination:{pagination:"Pagination",results:"{{pageStartIndex}}–{{pageEndIndex}} of {{numberOfResults}} results"},"password-creation-input":{"password-strength":"Password strength: ","min-8-characters":"Minimum 8 characters","min-1-lower-case":"At least one lower case","min-1-upper-case":"At least one upper case","create-password":"Create password",weak:"Weak",fair:"Fair",good:"Good",strong:"Strong","show-password":"Show password in plain text.","hide-password":"Hide password."},"password-input":{"show-password":"Show password in plain text.","hide-password":"Hide password."},"progress-tracker":{completedAriaLabel:"completed",uncompletedAriaLabel:"not completed"},"search-input":{label:"Search"},"sectional-banner":{dismissLabel:"Dismiss banner"},"skip-link":{label:"Skip to main content"},slider:{rangeAriaLabel:"{{label}} range"},"stepper-input":{validationErrorMessage:"Invalid number"},"stepper-buttons":{"increment-button-aria-label":"Increase number","decrement-button-aria-label":"Decrease number"},table:{subrowsAriaLabel:"{{count}} subrows for this item",selectRow:"Select row"},tabs:{addTab:"Add Tabs",dismissTab:"Dismiss {{label}} tab"},tag:{deleteButtonAriaLabel:"Remove tag {{label}}"},"text-area":{validationErrorMessage:"This text area is invalid",maxLengthValidationErrorMessage:"The number of characters exceeds the maximum allowed. You must shorten the description.",characters:"{{length}} / {{max}} characters",charactersScreenReader:"{{length}} of {{max}} characters available"},"text-input":{validationErrorMessage:"This input is invalid",required:"required"},toast:{dismissButtonLabel:"Dismiss notification"},"user-profile":{ariaLabel:"User menu"}},fr:{avatar:{ariaLabel:"Avatar de {{username}}"},bento:{productsLabel:"Produits",externalsLabel:"Ressources"},button:{loadingLabel:"Chargement..."},combobox:{clearInput:"Vider le champ",loading:"Chargement...",noResult:"Aucun résultat",noResultForQuery:'Aucun résultat pour "{{query}}"',showOptions:"Afficher les options pour {{label}}",validationErrorMessage:"Vous devez sélectionner une option"},common:{opensInNewTab:"ouvre dans un nouvel onglet",opensInNewTabScreenReader:"(ouvre dans un nouvel onglet)",error:"Erreur"},datepicker:{calendarButtonLabel:"Choisissez une date",calendarButtonSelectedLabel:"Choisissez une date. La date sélectionnée est",calendarContainerLabel:"Choisissez une date",todayButtonAriaLabel:"Choisir la date d'aujourd'hui",todayButtonLabel:"Aujourd'hui",validationErrorMessage:"Date non valide",monthPreviousButtonLabel:"Aller au mois précédent",monthNextButtonLabel:"Aller au mois suivant",monthSelectLabel:"Choisissez un mois",yearSelectLabel:"Choisissez une année"},"dropdown-list":{inputAriaLabel:"Choisissez une option",validationErrorMessage:"Vous devez choisir une option"},"error-summary":{title:"Le formulaire contient une ou plusieurs erreurs",message:"Veuillez les corriger avant de passer à l'étape suivante."},"global-banner":{ignore:"Ignorer"},"menu-button":{buttonAriaLabel:"Ouvrir le menu"},modal:{closeButtonLabel:"Fermer le dialogue"},"modal-dialog":{cancelButtonLabel:"Annuler",confirmButtonLabel:"Confirmer"},"money-input":{validationErrorMessage:"Ce nombre n'est pas valide"},"nav-menu-button":{ariaLabel:"Menu"},"numeric-input":{requiredValidationErrorMessage:"Ce champ est obligatoire",maxValidationErrorMessage:"La valeur doit être inférieure ou égale à {{max}}",minValidationErrorMessage:"La valeur doit être supérieure ou égale à {{min}}"},pagination:{pagination:"Pagination",results:"{{pageStartIndex}}–{{pageEndIndex}} de {{numberOfResults}} résultats"},"password-creation-input":{"password-strength":"Force du mot de passe : ","min-8-characters":"Minimum 8 caractères","min-1-lower-case":"Au moins une minuscule","min-1-upper-case":"Au moins une majuscule","create-password":"Créer un mot de passe",weak:"Faible",fair:"Raisonnable",good:"Bon",strong:"Fort","show-password":"Montrer le mot de passe.","hide-password":"Cacher le mot de passe."},"password-input":{"show-password":"Montrer le mot de passe.","hide-password":"Cacher le mot de passe."},"progress-tracker":{completedAriaLabel:"complété",uncompletedAriaLabel:"non complété"},"search-input":{label:"Rechercher"},"sectional-banner":{dismissLabel:"Rejeter la bannière"},"skip-link":{label:"Passer au contenu principal"},slider:{rangeAriaLabel:"Plage de {{label}}"},"stepper-input":{validationErrorMessage:"Ce nombre n'est pas valide"},"stepper-buttons":{"increment-button-aria-label":"Augmenter le nombre","decrement-button-aria-label":"Diminuer le nombre"},table:{subrowsAriaLabel:"{{count}} sous-éléments pour cet élément",selectRow:"Sélectionnez une rangée"},tabs:{addTab:"Ajouter des onglets",dismissTab:"Fermer l'onglet {{label}}"},tag:{deleteButtonAriaLabel:"Retirer l'étiquette {{label}}"},"text-area":{validationErrorMessage:"Cette zone texte n'est pas valide",maxLengthValidationErrorMessage:"Le nombre de caractères dépasse le maximum autorisé. Vous devez raccourcir la description.",characters:"{{length}} / {{max}} caractères",charactersScreenReader:"{{length}} sur {{max}} caractères disponibles"},"text-input":{validationErrorMessage:"Ce champ est invalide",required:"obligatoire"},toast:{dismissButtonLabel:"Rejeter la notification"},"user-profile":{ariaLabel:"Menu utilisateur"}}}},46162:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useTranslation=function(e){const{i18n:t}=(0,r.useIntlContext)(),n=(0,a.useCallback)((()=>({t:t.getFixedT(t.language||i(t),e||void 0)})),[t,e]),[o,l]=(0,a.useState)(n()),u=(0,a.useCallback)((()=>{l(n())}),[l,n]);return(0,a.useEffect)((()=>(t.on("languageChanged",u),()=>t.off("languageChanged",u))),[t,u]),{i18n:t,t:o.t}};const a=n(39155),r=n(58640);function i(e){var t;const n=null===(t=e.options)||void 0===t?void 0:t.fallbackLng;return"string"==typeof n||Array.isArray(n)?n:"en"}},39002:function(e,t,n){"use strict";var a=this&&this.__createBinding||(Object.create?function(e,t,n,a){void 0===a&&(a=n);var r=Object.getOwnPropertyDescriptor(t,n);r&&!("get"in r?!t.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,a,r)}:function(e,t,n,a){void 0===a&&(a=n),e[a]=t[n]}),r=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||a(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.GlobalBanner=t.Slider=t.SideDrawer=t.SectionalBanner=t.Icon=t.Disclosure=t.DropdownMenuButton=t.GlobalHeader=t.Heading=t.ExternalLink=t.ErrorSummary=t.ChooserButtonGroup=t.CardLink=t.Card=t.Badge=t.Accordion=t.AccordionItem=t.Listbox=t.IntlProvider=t.useDeviceContext=t.DeviceContextProvider=t.ThemeWrapper=t.isLongEnough=t.hasAnUpperCaseLetter=t.hasALowerCaseLetter=t.ToggleSwitch=t.TextArea=t.Tabs=t.StepperInput=t.RadioButton=t.SearchGlobal=t.SearchContextual=t.RadioButtonGroup=t.ProgressCircular=t.PhoneInput=t.PasswordInput=t.PasswordCreationInput=t.NumericInput=t.DropdownList=t.Datepicker=t.Combobox=t.CheckboxGroup=t.Checkbox=t.Avatar=t.SegmentedControl=t.BentoMenuButton=t.DropdownNavigation=t.MenuButton=t.IconButton=t.Button=void 0,t.useTheme=t.injectMainCss=t.buildTheme=t.equisoftTheme=t.Pagination=t.ProgressCircle=t.ProgressIndicator=t.Fieldset=t.Link=t.RouteLink=t.Breadcrumb=t.useToast=t.UserProfile=t.useModal=t.Spinner=t.SkipLink=t.Status=t.RadioCardGroup=t.RadioCard=t.Lozenge=t.ToggleTag=t.Tag=t.ModalDialog=t.Modal=void 0,n.g.__DS_DEV__=!1;var i=n(91339);Object.defineProperty(t,"Button",{enumerable:!0,get:function(){return i.Button}});var o=n(82527);Object.defineProperty(t,"IconButton",{enumerable:!0,get:function(){return o.IconButton}});var l=n(32060);Object.defineProperty(t,"MenuButton",{enumerable:!0,get:function(){return l.MenuButton}});var u=n(50064);Object.defineProperty(t,"DropdownNavigation",{enumerable:!0,get:function(){return u.DropdownNavigation}});var s=n(40744);Object.defineProperty(t,"BentoMenuButton",{enumerable:!0,get:function(){return s.BentoMenuButton}});var d=n(19900);Object.defineProperty(t,"SegmentedControl",{enumerable:!0,get:function(){return d.SegmentedControl}});var c=n(4812);Object.defineProperty(t,"Avatar",{enumerable:!0,get:function(){return c.Avatar}});var m=n(75800);Object.defineProperty(t,"Checkbox",{enumerable:!0,get:function(){return m.Checkbox}});var p=n(45504);Object.defineProperty(t,"CheckboxGroup",{enumerable:!0,get:function(){return p.CheckboxGroup}});var f=n(28648);Object.defineProperty(t,"Combobox",{enumerable:!0,get:function(){return f.Combobox}});var h=n(76236);Object.defineProperty(t,"Datepicker",{enumerable:!0,get:function(){return h.Datepicker}});var v=n(40152);Object.defineProperty(t,"DropdownList",{enumerable:!0,get:function(){return v.DropdownList}}),r(n(35553),t);var g=n(14440);Object.defineProperty(t,"NumericInput",{enumerable:!0,get:function(){return g.NumericInput}});var b=n(14492);Object.defineProperty(t,"PasswordCreationInput",{enumerable:!0,get:function(){return b.PasswordCreationInput}});var y=n(33274);Object.defineProperty(t,"PasswordInput",{enumerable:!0,get:function(){return y.PasswordInput}});var w=n(75700);Object.defineProperty(t,"PhoneInput",{enumerable:!0,get:function(){return w.PhoneInput}});var M=n(61392);Object.defineProperty(t,"ProgressCircular",{enumerable:!0,get:function(){return M.ProgressCircular}});var E=n(54246);Object.defineProperty(t,"RadioButtonGroup",{enumerable:!0,get:function(){return E.RadioButtonGroup}});var _=n(54328);Object.defineProperty(t,"SearchContextual",{enumerable:!0,get:function(){return _.SearchContextual}});var k=n(74248);Object.defineProperty(t,"SearchGlobal",{enumerable:!0,get:function(){return k.SearchGlobal}});var C=n(35558);Object.defineProperty(t,"RadioButton",{enumerable:!0,get:function(){return C.RadioButton}});var x=n(80960);Object.defineProperty(t,"StepperInput",{enumerable:!0,get:function(){return x.StepperInput}});var T=n(56286);Object.defineProperty(t,"Tabs",{enumerable:!0,get:function(){return T.Tabs}});var H=n(38952);Object.defineProperty(t,"TextArea",{enumerable:!0,get:function(){return H.TextArea}}),r(n(5506),t);var L=n(26096);Object.defineProperty(t,"ToggleSwitch",{enumerable:!0,get:function(){return L.ToggleSwitch}});var P=n(26561);Object.defineProperty(t,"hasALowerCaseLetter",{enumerable:!0,get:function(){return P.hasALowerCaseLetter}}),Object.defineProperty(t,"hasAnUpperCaseLetter",{enumerable:!0,get:function(){return P.hasAnUpperCaseLetter}}),Object.defineProperty(t,"isLongEnough",{enumerable:!0,get:function(){return P.hasMinLength}});var S=n(26136);Object.defineProperty(t,"ThemeWrapper",{enumerable:!0,get:function(){return S.ThemeWrapper}});var V=n(72072);Object.defineProperty(t,"DeviceContextProvider",{enumerable:!0,get:function(){return V.DeviceContextProvider}}),Object.defineProperty(t,"useDeviceContext",{enumerable:!0,get:function(){return V.useDeviceContext}});var O=n(58640);Object.defineProperty(t,"IntlProvider",{enumerable:!0,get:function(){return O.IntlProvider}});var q=n(38428);Object.defineProperty(t,"Listbox",{enumerable:!0,get:function(){return q.Listbox}});var D=n(66830);Object.defineProperty(t,"AccordionItem",{enumerable:!0,get:function(){return D.AccordionItem}}),Object.defineProperty(t,"Accordion",{enumerable:!0,get:function(){return D.Accordion}});var j=n(55072);Object.defineProperty(t,"Badge",{enumerable:!0,get:function(){return j.Badge}});var R=n(8626);Object.defineProperty(t,"Card",{enumerable:!0,get:function(){return R.Card}});var I=n(12384);Object.defineProperty(t,"CardLink",{enumerable:!0,get:function(){return I.CardLink}}),r(n(56866),t);var A=n(33602);Object.defineProperty(t,"ChooserButtonGroup",{enumerable:!0,get:function(){return A.ChooserButtonGroup}});var F=n(17408);Object.defineProperty(t,"ErrorSummary",{enumerable:!0,get:function(){return F.ErrorSummary}});var z=n(75588);Object.defineProperty(t,"ExternalLink",{enumerable:!0,get:function(){return z.ExternalLink}});var W=n(23672);Object.defineProperty(t,"Heading",{enumerable:!0,get:function(){return W.Heading}});var N=n(32896);Object.defineProperty(t,"GlobalHeader",{enumerable:!0,get:function(){return N.GlobalHeader}});var B=n(36134);Object.defineProperty(t,"DropdownMenuButton",{enumerable:!0,get:function(){return B.DropdownMenuButton}});var $=n(37992);Object.defineProperty(t,"Disclosure",{enumerable:!0,get:function(){return $.Disclosure}});var Y=n(67672);Object.defineProperty(t,"Icon",{enumerable:!0,get:function(){return Y.Icon}});var U=n(18592);Object.defineProperty(t,"SectionalBanner",{enumerable:!0,get:function(){return U.SectionalBanner}}),r(n(11118),t);var K=n(70688);Object.defineProperty(t,"SideDrawer",{enumerable:!0,get:function(){return K.SideDrawer}});var G=n(14644);Object.defineProperty(t,"Slider",{enumerable:!0,get:function(){return G.Slider}});var X=n(85440);Object.defineProperty(t,"GlobalBanner",{enumerable:!0,get:function(){return X.GlobalBanner}}),r(n(82880),t),r(n(49636),t),r(n(8528),t);var Q=n(13377);Object.defineProperty(t,"Modal",{enumerable:!0,get:function(){return Q.Modal}}),Object.defineProperty(t,"ModalDialog",{enumerable:!0,get:function(){return Q.ModalDialog}});var J=n(67684);Object.defineProperty(t,"Tag",{enumerable:!0,get:function(){return J.Tag}});var Z=n(83489);Object.defineProperty(t,"ToggleTag",{enumerable:!0,get:function(){return Z.ToggleTag}});var ee=n(53148);Object.defineProperty(t,"Lozenge",{enumerable:!0,get:function(){return ee.Lozenge}});var te=n(44392);Object.defineProperty(t,"RadioCard",{enumerable:!0,get:function(){return te.RadioCard}});var ne=n(8154);Object.defineProperty(t,"RadioCardGroup",{enumerable:!0,get:function(){return ne.RadioCardGroup}});var ae=n(75334);Object.defineProperty(t,"Status",{enumerable:!0,get:function(){return ae.Status}});var re=n(2420);Object.defineProperty(t,"SkipLink",{enumerable:!0,get:function(){return re.SkipLink}});var ie=n(15992);Object.defineProperty(t,"Spinner",{enumerable:!0,get:function(){return ie.Spinner}});var oe=n(33646);Object.defineProperty(t,"useModal",{enumerable:!0,get:function(){return oe.useModal}});var le=n(80576);Object.defineProperty(t,"UserProfile",{enumerable:!0,get:function(){return le.UserProfile}});var ue=n(10384);Object.defineProperty(t,"useToast",{enumerable:!0,get:function(){return ue.useToast}});var se=n(17256);Object.defineProperty(t,"Breadcrumb",{enumerable:!0,get:function(){return se.Breadcrumb}}),r(n(53380),t);var de=n(73498);Object.defineProperty(t,"RouteLink",{enumerable:!0,get:function(){return de.RouteLink}});var ce=n(47748);Object.defineProperty(t,"Link",{enumerable:!0,get:function(){return ce.Link}}),r(n(33692),t);var me=n(78120);Object.defineProperty(t,"Fieldset",{enumerable:!0,get:function(){return me.Fieldset}});var pe=n(32912);Object.defineProperty(t,"ProgressIndicator",{enumerable:!0,get:function(){return pe.ProgressIndicator}});var fe=n(14480);Object.defineProperty(t,"ProgressCircle",{enumerable:!0,get:function(){return fe.ProgressCircle}});var he=n(67486);Object.defineProperty(t,"Pagination",{enumerable:!0,get:function(){return he.Pagination}});var ve=n(3702);Object.defineProperty(t,"equisoftTheme",{enumerable:!0,get:function(){return ve.equisoftTheme}}),Object.defineProperty(t,"buildTheme",{enumerable:!0,get:function(){return ve.buildTheme}});var ge=n(33365);Object.defineProperty(t,"injectMainCss",{enumerable:!0,get:function(){return ge.injectMainCss}});var be=n(4054);Object.defineProperty(t,"useTheme",{enumerable:!0,get:function(){return be.useTheme}}),r(n(36465),t)},408:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.breakpoints=void 0,t.breakpoints={mobile:480,desktop:1024}},96632:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.menuDimensions=void 0,t.menuDimensions={maxWidth:"350px",minWidth:"200px"}},92838:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.useFont=function(e){(0,r.useEffect)((()=>e?(i.default.use(),()=>i.default.unuse()):()=>{}),[e])};const r=n(39155),i=a(n(72698));try{t.useFont.displayName="useFont",t.useFont.__docgenInfo={description:"",displayName:"useFont",props:{valueOf:{defaultValue:null,description:"Returns the primitive value of the specified object.",name:"valueOf",required:!1,type:{name:"() => boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/styles/font-loader.tsx#useFont"]={docgenInfo:t.useFont.__docgenInfo,name:"useFont",path:"src/styles/font-loader.tsx#useFont"})}catch(e){}},33365:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.mainCss=t.injectMainCss=void 0,t.useStyle=function(e){(0,i.useFont)(e),(0,o.useMainCss)(e)};const r=a(n(8853)),i=n(92838),o=n(74110);var l=n(74110);Object.defineProperty(t,"injectMainCss",{enumerable:!0,get:function(){return l.injectMainCss}}),t.mainCss=r.default.toString()},74110:function(e,t,n){"use strict";var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.useMainCss=function(e){(0,r.useEffect)((()=>e?()=>{}:(i.default.use(),()=>i.default.unuse())),[e])},t.injectMainCss=function(){i.default.use()};const r=n(39155),i=a(n(259));try{t.useMainCss.displayName="useMainCss",t.useMainCss.__docgenInfo={description:"",displayName:"useMainCss",props:{valueOf:{defaultValue:null,description:"Returns the primitive value of the specified object.",name:"valueOf",required:!1,type:{name:"() => boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/styles/style-loader.tsx#useMainCss"]={docgenInfo:t.useMainCss.__docgenInfo,name:"useMainCss",path:"src/styles/style-loader.tsx#useMainCss"})}catch(e){}},23427:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.buildTheme=t.equisoftTheme=void 0;var a=n(89713);Object.defineProperty(t,"equisoftTheme",{enumerable:!0,get:function(){return a.equisoftTheme}});var r=n(5293);Object.defineProperty(t,"buildTheme",{enumerable:!0,get:function(){return r.buildTheme}})},5293:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.buildTheme=function(e){const t=function(e){return{ref:Object.assign(Object.assign({},r.defaultRefTokens),e.ref),alias:Object.assign(Object.assign({},r.defaultAliasTokens),e.alias),component:Object.assign(Object.assign({},r.defaultComponentTokens),e.component)}}(e),n=Object.assign(Object.assign({},t),{component:{}});function l(e){if(i(e))return n.ref[e];if(o(e)){const t=n.alias[e];return t===e?(a.devConsole.error(`Self-referencing AliasToken detected: '${e}'`),""):o(t)||i(t)?l(t):t}return a.devConsole.error(`Token '${e}' not found in RefTokens or AliasTokens`),""}return Object.keys(t.alias).forEach((e=>{if(o(e)){const r=t.alias[e];r?n.alias[e]=l(r):a.devConsole.error(`Token "${e}" is undefined.`)}})),Object.keys(t.component).forEach((e=>{if(e in r.defaultComponentTokens){const r=t.component[e];r?n.component[e]=l(r):a.devConsole.error(`Token "${e}" is undefined.`)}})),n};const a=n(38611),r=n(21744);function i(e){return e in r.defaultRefTokens}function o(e){return e in r.defaultAliasTokens}},89713:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.equisoftTheme=void 0;const a=n(5293),r=n(21744),i={ref:r.defaultRefTokens,alias:r.defaultAliasTokens,component:r.defaultComponentTokens};t.equisoftTheme=(0,a.buildTheme)(i)},3702:function(e,t,n){"use strict";var a=this&&this.__createBinding||(Object.create?function(e,t,n,a){void 0===a&&(a=n);var r=Object.getOwnPropertyDescriptor(t,n);r&&!("get"in r?!t.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,a,r)}:function(e,t,n,a){void 0===a&&(a=n),e[a]=t[n]}),r=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||a(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),r(n(89713),t),r(n(21744),t),r(n(5293),t),r(n(72304),t)},72304:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0})},84760:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultAliasTokens=void 0;const a=n(15111),r=n(92403);t.defaultAliasTokens=Object.assign(Object.assign({},a.defaultColorAliasTokens),r.defaultTextAliasTokens)},15111:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultColorAliasTokens=void 0,t.defaultColorAliasTokens={"color-action":"color-brand-50","color-action-hover":"color-brand-70","color-action-disabled":"color-brand-20","color-action-destructive":"color-alert-50","color-action-destructive-hover":"color-alert-70","color-action-destructive-disabled":"color-alert-20","color-action-inverse":"color-white","color-action-inverse-hover":"color-brand-20","color-action-inverse-disabled":"color-brand-50","color-background-neutral-subtlest":"color-neutral-02","color-background-neutral-subtle":"color-neutral-05","color-background-neutral-bold":"color-neutral-65","color-background-neutral-bold-disabled":"color-neutral-30","color-feedback-background-success-subtlest":"color-success-02","color-feedback-background-success-subtle":"color-success-05","color-feedback-background-success-bold":"color-success-50","color-feedback-background-success-bold-disabled":"color-success-20","color-feedback-border-success":"color-success-50","color-feedback-content-success":"color-success-70","color-feedback-background-alert-subtlest":"color-alert-02","color-feedback-background-alert-subtle":"color-alert-05","color-feedback-background-alert-bold":"color-alert-50","color-feedback-border-alert":"color-alert-50","color-feedback-content-alert":"color-alert-70","color-feedback-background-warning-subtlest":"color-warning-02","color-feedback-background-warning-subtle":"color-warning-05","color-feedback-background-warning-bold":"color-warning-50","color-feedback-border-warning":"color-warning-50","color-feedback-content-warning":"color-warning-80","color-feedback-background-discovery-subtlest":"color-discovery-02","color-feedback-background-discovery-subtle":"color-discovery-05","color-feedback-background-discovery-bold":"color-discovery-50","color-feedback-border-discovery":"color-discovery-50","color-feedback-content-discovery":"color-discovery-70","color-feedback-background-informative-subtlest":"color-informative-02","color-feedback-background-informative-subtle":"color-informative-05","color-feedback-background-informative-bold":"color-informative-50","color-feedback-border-informative":"color-informative-50","color-feedback-content-informative":"color-informative-70","color-control-background":"color-white","color-control-background-hover":"color-neutral-15","color-control-background-disabled":"color-neutral-05","color-control-background-readonly":"transparent-dark-3","color-control-background-checked":"color-brand-50","color-control-background-selected":"color-brand-05","color-control-background-selected-hover":"color-brand-10","color-control-border":"color-neutral-65","color-control-border-hover":"color-black","color-control-border-disabled":"color-neutral-30","color-control-border-readonly":"transparent-100","color-control-border-selected":"color-brand-50","color-control-border-checked":"color-brand-50","color-control-border-error":"color-alert-50","color-control-value":"color-content","color-control-value-hover":"color-content-hover","color-control-value-disabled":"color-content-disabled","color-control-value-readonly":"color-content","color-control-auxiliary":"color-neutral-65","color-control-auxiliary-hover":"color-black","color-control-auxiliary-disabled":"color-neutral-30","color-control-auxiliary-readonly":"color-neutral-65","color-control-auxiliary-error":"color-alert-50","color-control-auxiliary-success":"color-success-50","color-control-auxiliary-checked":"color-white","color-control-auxiliary-selected":"color-brand-70","color-menu-background":"color-background-overlay","color-menu-border":"color-border-overlay","color-menu-item-background":"transparent-100","color-menu-item-background-hover":"color-background-hover","color-menu-item-content":"color-content","color-menu-item-subcontent":"color-content-subtle","color-menu-item-content-hover":"color-content-hover","color-menu-item-content-disabled":"color-content-disabled","color-background-brand-subtle":"color-brand-20","color-background-brand":"color-brand-50","color-background-brand-bold":"color-brand-80","color-background-indicator-disabled":"color-neutral-30","color-background-indicator-selected":"color-brand-50","color-background-indicator-active":"color-brand-80","color-border-brand":"color-brand-50","color-border-brand-bold":"color-brand-70","color-content-brand":"color-brand-50","color-background":"color-white","color-background-overlay":"color-white","color-background-isolated":"color-neutral-02","color-background-hover":"color-neutral-15","color-background-disabled":"color-neutral-05","color-background-empty":"color-neutral-15","color-background-selected":"color-brand-05","color-background-selected-hover":"color-brand-10","color-backdrop-background":"transparent-dark-75","color-backdrop-background-subtle":"transparent-dark-50","color-border":"color-neutral-15","color-border-subtle":"color-neutral-05","color-border-bold":"color-neutral-50","color-border-overlay":"color-neutral-50","color-border-inverse":"color-white","color-border-hover":"color-black","color-border-disabled":"color-neutral-15","color-border-empty":"color-neutral-30","color-border-selected":"color-brand-50","color-border-focus-outside":"color-brand-50","color-border-focus-inside":"color-brand-20","color-border-focus-outside-inverse":"color-border-focus-inside","color-border-focus-inside-inverse":"color-border-focus-outside","color-content":"color-neutral-90","color-content-subtle":"color-neutral-65","color-content-inverse":"color-white","color-content-hover":"color-black","color-content-disabled":"color-neutral-30","color-content-selected":"color-brand-70","color-link-content":"color-informative-50","color-link-content-disabled":"color-informative-20","color-link-content-hover":"color-informative-70","color-link-content-visited":"color-informative-50","color-box-shadow":"transparent-dark-20"}},92403:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTextAliasTokens=void 0,t.defaultTextAliasTokens={"text-heading-xlarge-font-family":"font-family-brand","text-heading-xlarge-font-weight":"font-weight-semibold","text-heading-xlarge-font-size":"font-size-800","text-heading-xlarge-line-height":"line-height-1000","text-heading-xlarge-letter-spacing":"letter-spacing-normal","text-heading-xlarge-transform":"font-transform-none","text-heading-large-font-family":"font-family-brand","text-heading-large-font-weight":"font-weight-semibold","text-heading-large-font-size":"font-size-600","text-heading-large-line-height":"line-height-800","text-heading-large-letter-spacing":"letter-spacing-normal","text-heading-large-transform":"font-transform-none","text-heading-medium-font-family":"font-family-brand","text-heading-medium-font-weight":"font-weight-semibold","text-heading-medium-font-size":"font-size-500","text-heading-medium-line-height":"line-height-700","text-heading-medium-letter-spacing":"letter-spacing-normal","text-heading-medium-transform":"font-transform-none","text-heading-small-font-family":"font-family-brand","text-heading-small-font-weight":"font-weight-semibold","text-heading-small-font-size":"font-size-400","text-heading-small-line-height":"line-height-600","text-heading-small-letter-spacing":"letter-spacing-normal","text-heading-small-transform":"font-transform-none","text-heading-xsmall-font-family":"font-family-brand","text-heading-xsmall-font-weight":"font-weight-semibold","text-heading-xsmall-font-size":"font-size-350","text-heading-xsmall-line-height":"line-height-500","text-heading-xsmall-letter-spacing":"letter-spacing-normal","text-heading-xsmall-transform":"font-transform-none","text-body-large-font-family":"font-family-sans","text-body-large-font-weight":"font-weight-regular","text-body-large-font-size":"font-size-400","text-body-large-line-height":"line-height-600","text-body-large-letter-spacing":"letter-spacing-normal","text-body-large-transform":"font-transform-none","text-body-medium-font-family":"font-family-sans","text-body-medium-font-weight":"font-weight-regular","text-body-medium-font-size":"font-size-350","text-body-medium-line-height":"line-height-600","text-body-medium-letter-spacing":"letter-spacing-normal","text-body-medium-transform":"font-transform-none","text-body-small-font-family":"font-family-sans","text-body-small-font-weight":"font-weight-regular","text-body-small-font-size":"font-size-300","text-body-small-line-height":"line-height-500","text-body-small-letter-spacing":"letter-spacing-normal","text-body-small-transform":"font-transform-none","text-highlight-large-font-family":"font-family-sans","text-highlight-large-font-weight":"text-heading-large-font-weight","text-highlight-large-font-size":"text-heading-large-font-size","text-highlight-large-line-height":"text-heading-large-line-height","text-highlight-large-letter-spacing":"text-heading-large-letter-spacing","text-highlight-large-transform":"text-heading-large-transform","text-highlight-medium-font-family":"font-family-sans","text-highlight-medium-font-weight":"text-heading-medium-font-weight","text-highlight-medium-font-size":"text-heading-medium-font-size","text-highlight-medium-line-height":"text-heading-medium-line-height","text-highlight-medium-letter-spacing":"text-heading-medium-letter-spacing","text-highlight-medium-transform":"text-heading-medium-transform","text-highlight-small-font-family":"font-family-sans","text-highlight-small-font-weight":"text-heading-small-font-weight","text-highlight-small-font-size":"text-heading-small-font-size","text-highlight-small-line-height":"text-heading-small-line-height","text-highlight-small-letter-spacing":"text-heading-small-letter-spacing","text-highlight-small-transform":"text-heading-small-transform","text-action-medium-font-family":"text-body-small-font-family","text-action-medium-font-weight":"font-weight-bold","text-action-medium-font-size":"text-body-small-font-size","text-action-medium-line-height":"line-height-600","text-action-medium-letter-spacing":"text-body-small-letter-spacing","text-action-medium-transform":"font-transform-uppercase","text-action-small-font-family":"text-body-small-font-family","text-action-small-font-weight":"font-weight-bold","text-action-small-font-size":"font-size-275","text-action-small-line-height":"line-height-600","text-action-small-letter-spacing":"text-body-small-letter-spacing","text-action-small-transform":"font-transform-uppercase","text-label-medium-font-family":"text-body-medium-font-family","text-label-medium-font-weight":"text-body-medium-font-weight","text-label-medium-font-size":"text-body-medium-font-size","text-label-medium-line-height":"text-body-medium-line-height","text-label-medium-letter-spacing":"text-body-medium-letter-spacing","text-label-medium-transform":"text-body-medium-transform","text-label-small-font-family":"text-body-small-font-family","text-label-small-font-weight":"text-body-small-font-weight","text-label-small-font-size":"text-body-small-font-size","text-label-small-line-height":"text-body-small-line-height","text-label-small-letter-spacing":"text-body-small-letter-spacing","text-label-small-transform":"text-body-small-transform","text-legend-small-font-family":"text-body-small-font-family","text-legend-small-font-weight":"text-body-small-font-weight","text-legend-small-font-size":"text-body-small-font-size","text-legend-small-line-height":"text-body-small-line-height","text-legend-small-letter-spacing":"text-body-small-letter-spacing","text-legend-small-transform":"text-body-small-transform","text-caption-medium-font-family":"text-body-medium-font-family","text-caption-medium-font-weight":"text-body-medium-font-weight","text-caption-medium-font-size":"text-body-medium-font-size","text-caption-medium-line-height":"text-body-medium-line-height","text-caption-medium-letter-spacing":"text-body-medium-letter-spacing","text-caption-medium-transform":"text-body-medium-transform"}},62798:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultComponentTokens=void 0;const a=n(72693),r=n(47994),i=n(89122),o=n(93326),l=n(77798),u=n(79533),s=n(86339),d=n(68695),c=n(770),m=n(90976),p=n(18768),f=n(80779),h=n(18018),v=n(24119),g=n(77586),b=n(67595),y=n(80435),w=n(72151),M=n(43190),E=n(84447),_=n(55193),k=n(92781),C=n(36562),x=n(44089),T=n(86848),H=n(62033),L=n(67320),P=n(3304),S=n(92397),V=n(15537),O=n(62665),q=n(58613),D=n(42636),j=n(43446),R=n(10336),I=n(5805),A=n(24069),F=n(86070),z=n(41436),W=n(99664),N=n(24174),B=n(49666),$=n(22228),Y=n(91427),U=n(3444),K=n(64938),G=n(97427),X=n(56847),Q=n(49062),J=n(15847),Z=n(98602),ee=n(89910),te=n(32740),ne=n(58562);t.defaultComponentTokens=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},a.defaultAccordionTokens),r.defaultAvatarTokens),i.defaultBadgeTokens),o.defaultBentoMenuButtonTokens),l.defaultBreadcrumbTokens),u.defaultButtonTokens),s.defaultCardTokens),d.defaultCarouselTokens),c.defaultCheckboxTokens),m.defaultChooserTokens),p.defaultComboboxTokens),f.defaultDatepickerTokens),h.defaultDisclosureTokens),v.defaultDropdownListTokens),g.defaultDropdownMenuTokens),b.defaultFieldTokens),y.defaultFocusTokens),w.defaultGlobalBannerTokens),M.defaultGlobalHeaderTokens),E.defaultGlobalNavigationTokens),_.defaultHeadingTokens),k.defaultLabelTokens),C.defaultLegendTokens),x.defaultLinkTokens),T.defaultListboxTokens),H.defaultLozengeTokens),L.defaultMenuTokens),P.defaultModalTokens),S.defaultNavListTokens),V.defaultNumericInputTokens),O.defaultPaginationTokens),q.defaultPasswordInputTokens),D.defaultPhoneInputTokens),j.defaultProgressCircularTokens),R.defaultProgressTokens),I.defaultRadioButtonGroupTokens),A.defaultRadioCardTokens),F.defaultSearchInputTokens),z.defaultSectionalBannerTokens),W.defaultSegmentedControlTokens),N.defaultSideDrawerTokens),B.defaultSliderTokens),$.defaultSpinnerTokens),Y.defaultStatusTokens),U.defaultStepperTokens),G.defaultTableTokens),K.defaultTabTokens),X.defaultTagTokens),Q.defaultTextAreaTokens),J.defaultTextInputTokens),Z.defaultToastTokens),ee.defaultToggleSwitchTokens),te.defaultToggleTipTokens),ne.defaultTooltipTokens)},72693:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultAccordionTokens=void 0,t.defaultAccordionTokens={"accordion-panel-background-color":"color-background-isolated","accordion-panel-border-color":"color-border","accordion-panel-text-color":"color-content","accordion-header-background-color":"color-background","accordion-header-border-color":"color-border","accordion-header-text-color":"color-content","accordion-header-hover-background-color":"color-background-hover","accordion-header-hover-border-color":"color-border-hover","accordion-header-hover-text-color":"color-content-hover","accordion-header-disabled-background-color":"color-background-disabled","accordion-header-disabled-border-color":"color-border-disabled","accordion-header-disabled-text-color":"color-content-disabled","accordion-header-disabled-icon-color":"color-content-disabled"}},47994:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultAvatarTokens=void 0,t.defaultAvatarTokens={"avatar-background-color":"color-background-neutral-subtle","avatar-text-color":"color-content-subtle"}},89122:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultBadgeTokens=void 0,t.defaultBadgeTokens={"badge-background-color":"color-feedback-background-alert-bold","badge-text-color":"color-content-inverse"}},93326:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultBentoMenuButtonTokens=void 0,t.defaultBentoMenuButtonTokens={"bento-menu-separator-color":"color-border"}},77798:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultBreadcrumbTokens=void 0,t.defaultBreadcrumbTokens={"breadcrumb-link-active-color":"color-content","breadcrumb-link-color":"color-content-subtle","breadcrumb-link-disabled-color":"color-content-disabled","breadcrumb-link-hover-color":"color-content-hover","breadcrumb-separator-color":"color-content-subtle"}},79533:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultButtonTokens=void 0,t.defaultButtonTokens={"button-primary-background-color":"color-action","button-primary-border-color":"color-action","button-primary-text-color":"color-action-inverse","button-primary-hover-background-color":"color-action-hover","button-primary-hover-border-color":"color-action-hover","button-primary-hover-text-color":"color-action-inverse","button-primary-disabled-background-color":"color-action-disabled","button-primary-disabled-border-color":"color-action-disabled","button-primary-disabled-text-color":"color-action-inverse","button-primary-inverted-background-color":"color-action-inverse","button-primary-inverted-border-color":"color-action-inverse","button-primary-inverted-text-color":"color-action","button-primary-inverted-hover-background-color":"color-action-inverse-hover","button-primary-inverted-hover-border-color":"color-action-inverse-hover","button-primary-inverted-hover-text-color":"color-action-hover","button-primary-inverted-disabled-background-color":"color-action-inverse-disabled","button-primary-inverted-disabled-border-color":"color-action-inverse-disabled","button-primary-inverted-disabled-text-color":"color-action-disabled","button-secondary-background-color":"transparent-100","button-secondary-border-color":"color-action","button-secondary-text-color":"color-action","button-secondary-hover-background-color":"transparent-100","button-secondary-hover-border-color":"color-action-hover","button-secondary-hover-text-color":"color-action-hover","button-secondary-disabled-background-color":"transparent-100","button-secondary-disabled-border-color":"color-action-disabled","button-secondary-disabled-text-color":"color-action-disabled","button-secondary-inverted-background-color":"transparent-100","button-secondary-inverted-border-color":"color-action-inverse","button-secondary-inverted-text-color":"color-action-inverse","button-secondary-inverted-hover-background-color":"transparent-100","button-secondary-inverted-hover-border-color":"color-action-inverse-hover","button-secondary-inverted-hover-text-color":"color-action-inverse-hover","button-secondary-inverted-disabled-background-color":"transparent-100","button-secondary-inverted-disabled-border-color":"color-action-inverse-disabled","button-secondary-inverted-disabled-text-color":"color-action-inverse-disabled","button-tertiary-background-color":"transparent-100","button-tertiary-border-color":"transparent-100","button-tertiary-text-color":"color-content-subtle","button-tertiary-hover-background-color":"transparent-dark-15","button-tertiary-hover-border-color":"transparent-100","button-tertiary-hover-text-color":"color-content-hover","button-tertiary-disabled-background-color":"transparent-100","button-tertiary-disabled-border-color":"transparent-100","button-tertiary-disabled-text-color":"color-content-disabled","button-tertiary-inverted-background-color":"transparent-100","button-tertiary-inverted-border-color":"transparent-100","button-tertiary-inverted-text-color":"color-action-inverse","button-tertiary-inverted-hover-background-color":"transparent-dark-50","button-tertiary-inverted-hover-border-color":"transparent-100","button-tertiary-inverted-hover-text-color":"color-action-inverse","button-tertiary-inverted-disabled-background-color":"transparent-100","button-tertiary-inverted-disabled-border-color":"transparent-100","button-tertiary-inverted-disabled-text-color":"color-action-inverse-disabled","button-destructive-primary-background-color":"color-action-destructive","button-destructive-primary-border-color":"color-action-destructive","button-destructive-primary-text-color":"color-action-inverse","button-destructive-primary-hover-background-color":"color-action-destructive-hover","button-destructive-primary-hover-border-color":"color-action-destructive-hover","button-destructive-primary-hover-text-color":"color-action-inverse","button-destructive-primary-disabled-background-color":"color-action-destructive-disabled","button-destructive-primary-disabled-border-color":"color-action-destructive-disabled","button-destructive-primary-disabled-text-color":"color-action-inverse","button-destructive-primary-inverted-background-color":"color-action-inverse","button-destructive-primary-inverted-border-color":"color-action-inverse","button-destructive-primary-inverted-text-color":"color-action-destructive","button-destructive-primary-inverted-hover-background-color":"color-action-inverse","button-destructive-primary-inverted-hover-border-color":"color-action-inverse","button-destructive-primary-inverted-hover-text-color":"color-action-destructive-hover","button-destructive-primary-inverted-disabled-background-color":"color-action-inverse","button-destructive-primary-inverted-disabled-border-color":"color-action-inverse","button-destructive-primary-inverted-disabled-text-color":"color-action-destructive-disabled","button-destructive-secondary-background-color":"transparent-100","button-destructive-secondary-border-color":"color-action-destructive","button-destructive-secondary-text-color":"color-action-destructive","button-destructive-secondary-hover-background-color":"transparent-100","button-destructive-secondary-hover-border-color":"color-action-destructive-hover","button-destructive-secondary-hover-text-color":"color-action-destructive-hover","button-destructive-secondary-disabled-background-color":"transparent-100","button-destructive-secondary-disabled-border-color":"color-action-destructive-disabled","button-destructive-secondary-disabled-text-color":"color-action-destructive-disabled","button-destructive-secondary-inverted-background-color":"transparent-100","button-destructive-secondary-inverted-border-color":"color-action-destructive","button-destructive-secondary-inverted-text-color":"color-action-destructive","button-destructive-secondary-inverted-hover-background-color":"transparent-100","button-destructive-secondary-inverted-hover-border-color":"color-action-destructive-hover","button-destructive-secondary-inverted-hover-text-color":"color-action-destructive-hover","button-destructive-secondary-inverted-disabled-background-color":"transparent-100","button-destructive-secondary-inverted-disabled-border-color":"color-action-destructive-disabled","button-destructive-secondary-inverted-disabled-text-color":"color-action-destructive-disabled","button-destructive-tertiary-background-color":"transparent-100","button-destructive-tertiary-border-color":"transparent-100","button-destructive-tertiary-text-color":"color-action-destructive","button-destructive-tertiary-hover-background-color":"color-alert-05","button-destructive-tertiary-hover-border-color":"transparent-100","button-destructive-tertiary-hover-text-color":"color-action-destructive-hover","button-destructive-tertiary-disabled-background-color":"transparent-100","button-destructive-tertiary-disabled-border-color":"transparent-100","button-destructive-tertiary-disabled-text-color":"color-action-destructive-disabled","button-destructive-tertiary-inverted-background-color":"transparent-100","button-destructive-tertiary-inverted-border-color":"transparent-100","button-destructive-tertiary-inverted-text-color":"color-action-destructive","button-destructive-tertiary-inverted-hover-background-color":"color-alert-05","button-destructive-tertiary-inverted-hover-border-color":"transparent-100","button-destructive-tertiary-inverted-hover-text-color":"color-action-destructive-hover","button-destructive-tertiary-inverted-disabled-background-color":"transparent-100","button-destructive-tertiary-inverted-disabled-border-color":"transparent-100","button-destructive-tertiary-inverted-disabled-text-color":"color-action-destructive-disabled","button-input-background-color":"color-control-background","button-input-border-color":"color-control-border","button-input-text-color":"color-control-auxiliary","button-input-hover-background-color":"color-control-background-hover","button-input-hover-border-color":"color-control-border-hover","button-input-hover-text-color":"color-control-auxiliary-hover","button-input-disabled-background-color":"color-control-background-disabled","button-input-disabled-border-color":"color-control-border-disabled","button-input-disabled-text-color":"color-control-auxiliary-disabled"}},86339:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultCardTokens=void 0,t.defaultCardTokens={"card-background-color":"color-background","card-border-color":"color-border-subtle","card-text-color":"color-content","card-link-border-color":"color-border-bold","card-link-hover-border-color":"color-border-hover","card-link-hover-background-color":"color-background-hover","card-box-shadow-color":"color-box-shadow"}},68695:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultCarouselTokens=void 0,t.defaultCarouselTokens={"carousel-dot-selected-background-color":"color-background-indicator-selected","carousel-dot-unselected-background-color":"color-background-empty","carousel-dot-border-color":"transparent-100"}},770:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultCheckboxTokens=void 0,t.defaultCheckboxTokens={"checkbox-unchecked-background-color":"color-control-background","checkbox-unchecked-border-color":"color-control-border","checkbox-checked-icon-color":"color-control-auxiliary-checked","checkbox-checked-background-color":"color-control-background-checked","checkbox-checked-border-color":"color-control-border-checked","checkbox-disabled-background-color":"color-control-background-disabled","checkbox-disabled-border-color":"color-control-border-disabled","checkbox-hover-border-color":"color-control-border-hover","checkbox-hover-background-color":"color-control-background-hover","checkbox-error-border-color":"color-control-border-error"}},90976:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultChooserTokens=void 0,t.defaultChooserTokens={"chooser-background-color":"color-control-background","chooser-border-color":"color-control-border","chooser-text-color":"color-control-auxiliary","chooser-selected-background-color":"color-control-background-selected","chooser-selected-border-color":"color-control-border-selected","chooser-selected-text-color":"color-control-auxiliary-selected","chooser-hover-background-color":"color-control-background-hover","chooser-hover-border-color":"color-control-border-hover","chooser-hover-text-color":"color-control-auxiliary-hover","chooser-disabled-background-color":"color-control-background-disabled","chooser-disabled-border-color":"color-control-border-disabled","chooser-disabled-text-color":"color-control-auxiliary-disabled"}},18768:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultComboboxTokens=void 0,t.defaultComboboxTokens={"combobox-clear-button-border-right-color":"color-control-auxiliary","combobox-clear-button-disabled-icon-color":"color-control-auxiliary-disabled","combobox-clear-button-icon-color":"color-control-auxiliary","combobox-arrow-button-background-color":"transparent-100","combobox-arrow-button-hover-background-color":"transparent-100","combobox-arrow-button-disabled-icon-color":"color-control-auxiliary-disabled","combobox-arrow-button-icon-color":"color-control-auxiliary","combobox-border-color":"color-control-border","combobox-disabled-background-color":"color-control-background-disabled","combobox-disabled-border-color":"color-control-border-disabled","combobox-disabled-text-color":"color-control-auxiliary-disabled","combobox-error-border-color":"color-control-border-error","combobox-background-color":"color-control-background","combobox-placeholder-text-color":"color-control-auxiliary"}},80779:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultDatepickerTokens=void 0,t.defaultDatepickerTokens={"datepicker-background-color":"color-background-overlay","datepicker-border-color":"color-border-overlay","datepicker-box-shadow-color":"color-box-shadow","datepicker-backdrop-color":"color-backdrop-background-subtle","datepicker-header-background-color":"transparent-100","datepicker-day-background-color":"transparent-100","datepicker-day-border-color":"transparent-100","datepicker-day-text-color":"color-content","datepicker-day-hover-background-color":"color-background-hover","datepicker-day-disabled-text-color":"color-content-disabled","datepicker-day-outside-month-text-color":"color-content-subtle","datepicker-day-selected-outside-month-background-color":"color-background-selected","datepicker-day-selected-outside-month-border-color":"color-border-selected","datepicker-day-selected-outside-month-text-color":"color-content-selected","datepicker-day-selected-background-color":"color-background-selected","datepicker-day-selected-border-color":"color-border-selected","datepicker-day-selected-text-color":"color-content-selected","datepicker-day-today-text-color":"color-content-selected"}},18018:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultDisclosureTokens=void 0,t.defaultDisclosureTokens={"disclosure-background-color":"color-menu-background","disclosure-border-color":"color-menu-border","disclosure-box-shadow-color":"color-box-shadow","disclosure-text-color":"color-menu-item-content"}},24119:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultDropdownListTokens=void 0,t.defaultDropdownListTokens={"dropdown-list-input-background-color":"color-control-background","dropdown-list-input-border-color":"color-control-border","dropdown-list-input-error-border-color":"color-control-border-error","dropdown-list-arrow-color":"color-control-auxiliary","dropdown-list-input-disabled-background-color":"color-control-background-disabled","dropdown-list-input-disabled-border-color":"color-control-border-disabled","dropdown-list-arrow-disabled-color":"color-control-auxiliary-disabled","dropdown-list-input-disabled-text-color":"color-control-auxiliary-disabled","dropdown-list-input-icon-color":"color-control-auxiliary"}},77586:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultDropdownMenuTokens=void 0,t.defaultDropdownMenuTokens={"dropdown-menu-background-color":"color-menu-background","dropdown-menu-border-color":"color-menu-border","dropdown-menu-text-color":"color-menu-item-content","dropdown-menu-item-content-icon-background-color":"color-background-neutral-subtle","dropdown-menu-item-content-icon-border-color":"color-border","dropdown-menu-group-border-color":"color-border","dropdown-menu-nav-item-hover-background-color":"color-menu-item-background-hover","dropdown-menu-external-item-hover-background-color":"color-menu-item-background-hover","dropdown-menu-list-item-text-color":"color-menu-item-content","dropdown-menu-nav-item-text-color":"color-menu-item-content","dropdown-menu-nav-item-external-link-icon-color":"color-menu-item-content","dropdown-menu-nav-item-external-link-text-color":"color-menu-item-content","dropdown-menu-external-item-text-color":"color-menu-item-content","dropdown-menu-item-content-description-text-color":"color-menu-item-subcontent","dropdown-menu-nav-item-disabled-background-color":"color-menu-item-background","dropdown-menu-nav-item-disabled-text-color":"color-menu-item-content-disabled","dropdown-menu-nav-item-disabled-icon-color":"color-menu-item-content-disabled","dropdown-menu-external-item-disabled-text-color":"color-menu-item-content-disabled","dropdown-menu-external-item-visited-icon-color":"color-link-content-visited","dropdown-menu-external-item-visited-text-color":"color-link-content-visited","dropdown-menu-box-shadow-color":"color-box-shadow"}},67595:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultFieldTokens=void 0,t.defaultFieldTokens={"field-hint-text-color":"color-control-auxiliary","field-error-text-color":"color-control-auxiliary-error","field-input-border-color":"color-control-border","field-input-error-border-color":"color-control-border-error"}},80435:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultFocusTokens=void 0,t.defaultFocusTokens={"focus-inside-border-color":"color-border-focus-inside","focus-outside-border-color":"color-border-focus-outside","focus-inverted-inside-border-color":"color-border-focus-inside-inverse","focus-inverted-outside-border-color":"color-border-focus-outside-inverse"}},72151:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultGlobalBannerTokens=void 0,t.defaultGlobalBannerTokens={"global-banner-neutral-background-color":"color-background-neutral-bold","global-banner-neutral-text-color":"color-content-inverse","global-banner-neutral-action-button-text-color":"color-content-inverse","global-banner-neutral-action-button-border-color":"color-border-inverse","global-banner-neutral-action-button-hover-border-color":"transparent-light-50","global-banner-neutral-action-button-hover-text-color":"transparent-light-50","global-banner-discovery-background-color":"color-feedback-background-discovery-bold","global-banner-discovery-text-color":"color-content-inverse","global-banner-discovery-action-button-text-color":"color-content-inverse","global-banner-discovery-action-button-border-color":"color-border-inverse","global-banner-discovery-action-button-hover-border-color":"transparent-light-50","global-banner-discovery-action-button-hover-text-color":"transparent-light-50","global-banner-warning-background-color":"color-feedback-background-warning-bold","global-banner-warning-text-color":"color-content","global-banner-warning-action-button-text-color":"color-content","global-banner-warning-action-button-border-color":"color-content","global-banner-warning-action-button-hover-border-color":"transparent-dark-60","global-banner-warning-action-button-hover-text-color":"transparent-dark-60","global-banner-alert-background-color":"color-feedback-background-alert-bold","global-banner-alert-text-color":"color-content-inverse","global-banner-alert-action-button-text-color":"color-content-inverse","global-banner-alert-action-button-border-color":"color-border-inverse","global-banner-alert-action-button-hover-border-color":"transparent-light-50","global-banner-alert-action-button-hover-text-color":"transparent-light-50"}},43190:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultGlobalHeaderTokens=void 0,t.defaultGlobalHeaderTokens={"global-header-background-color":"color-background-brand-bold","global-header-logo-title-separator-color":"color-border-brand-bold","global-header-logo-content-text-color":"color-content-inverse","global-header-content-text-color":"color-content-inverse"}},84447:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultGlobalNavigationTokens=void 0,t.defaultGlobalNavigationTokens={"global-navigation-background-color":"color-background-overlay","global-navigation-box-shadow-color":"color-box-shadow","global-navigation-item-hover-background-color":"color-background-hover","global-navigation-item-hover-text-color":"color-content-hover","global-navigation-item-text-color":"color-content-subtle","global-navigation-item-selected-background-color":"color-background-selected","global-navigation-item-selected-text-color":"color-content-selected","global-navigation-separator-border-color":"color-border"}},55193:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultHeadingTokens=void 0,t.defaultHeadingTokens={"heading-text-color":"color-content","heading-subtitle-text-color":"color-content-subtle"}},92781:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultLabelTokens=void 0,t.defaultLabelTokens={"label-text-color":"color-content"}},36562:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultLegendTokens=void 0,t.defaultLegendTokens={"legend-item-bullet-color":"color-background-brand-subtle","legend-item-description-text-color":"color-content-subtle","legend-text-color":"color-content","legend-disabled-text-color":"color-content-disabled"}},44089:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultLinkTokens=void 0,t.defaultLinkTokens={"external-link-visited-text-color":"color-link-content-visited","route-link-visited-text-color":"color-link-content-visited","route-link-text-color":"color-link-content","route-link-disabled-text-color":"color-link-content-disabled","route-link-hover-text-color":"color-link-content-hover","skip-link-text-color":"color-link-content","skip-link-background-color":"color-background","link-text-color":"color-link-content","link-disabled-text-color":"color-link-content-disabled","link-hover-text-color":"color-link-content-hover","link-visited-text-color":"color-link-content-visited","link-icon-color":"color-link-content","link-disabled-icon-color":"color-link-content-disabled","link-hover-icon-color":"color-link-content-hover","link-visited-icon-color":"color-link-content-visited"}},86848:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultListboxTokens=void 0,t.defaultListboxTokens={"listbox-background-color":"color-menu-background","listbox-border-color":"color-menu-border","listbox-item-text-color":"color-menu-item-content","listbox-item-subcontent-text-color":"color-menu-item-subcontent","listbox-item-hover-background-color":"color-menu-item-background-hover","listbox-item-disabled-background-color":"color-menu-item-background","listbox-item-disabled-text-color":"color-menu-item-content-disabled","listbox-item-subcontent-disabled-text-color":"color-menu-item-content-disabled","listbox-item-indicator-selected-color":"color-background-indicator-selected","listbox-box-shadow-depth-color":"color-box-shadow"}},62033:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultLozengeTokens=void 0,t.defaultLozengeTokens={"lozenge-neutral-background-color":"color-background-neutral-bold","lozenge-neutral-border-color":"color-background-neutral-bold","lozenge-neutral-text-color":"color-content-inverse","lozenge-neutral-subtle-background-color":"color-background-neutral-subtle","lozenge-neutral-subtle-border-color":"color-background-neutral-subtle","lozenge-neutral-subtle-text-color":"color-content-subtle","lozenge-info-background-color":"color-feedback-background-informative-bold","lozenge-info-border-color":"color-feedback-background-informative-bold","lozenge-info-text-color":"color-content-inverse","lozenge-info-subtle-background-color":"color-feedback-background-informative-subtle","lozenge-info-subtle-border-color":"color-feedback-background-informative-subtle","lozenge-info-subtle-text-color":"color-feedback-content-informative","lozenge-success-background-color":"color-feedback-background-success-bold","lozenge-success-border-color":"color-feedback-background-success-bold","lozenge-success-text-color":"color-content-inverse","lozenge-success-subtle-background-color":"color-feedback-background-success-subtle","lozenge-success-subtle-border-color":"color-feedback-background-success-subtle","lozenge-success-subtle-text-color":"color-feedback-content-success","lozenge-discovery-background-color":"color-feedback-background-discovery-bold","lozenge-discovery-border-color":"color-feedback-background-discovery-bold","lozenge-discovery-text-color":"color-content-inverse","lozenge-discovery-subtle-background-color":"color-feedback-background-discovery-subtle","lozenge-discovery-subtle-border-color":"color-feedback-background-discovery-subtle","lozenge-discovery-subtle-text-color":"color-feedback-content-discovery","lozenge-alert-background-color":"color-feedback-background-alert-bold","lozenge-alert-border-color":"color-feedback-background-alert-bold","lozenge-alert-text-color":"color-content-inverse","lozenge-alert-subtle-background-color":"color-feedback-background-alert-subtle","lozenge-alert-subtle-border-color":"color-feedback-background-alert-subtle","lozenge-alert-subtle-text-color":"color-feedback-content-alert","lozenge-warning-background-color":"color-feedback-background-warning-bold","lozenge-warning-border-color":"color-feedback-background-warning-bold","lozenge-warning-text-color":"color-content","lozenge-warning-subtle-background-color":"color-feedback-background-warning-subtle","lozenge-warning-subtle-border-color":"color-feedback-background-warning-subtle","lozenge-warning-subtle-text-color":"color-feedback-content-warning"}},67320:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultMenuTokens=void 0,t.defaultMenuTokens={"menu-background-color":"color-menu-background","menu-border-color":"color-menu-border","menu-submenu-background-color":"color-menu-background","menu-submenu-border-color":"color-menu-border","menu-group-text-color":"color-menu-item-subcontent","menu-item-text-color":"color-menu-item-content","menu-item-hover-text-color":"color-menu-item-content-hover","menu-item-icon-color":"color-menu-item-content","menu-item-hover-icon-color":"color-menu-item-content-hover","menu-item-disabled-text-color":"color-menu-item-content-disabled","menu-item-hover-background-color":"color-menu-item-background-hover","menu-submenu-box-shadow-color":"color-box-shadow","menu-box-shadow-color":"color-box-shadow"}},3304:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultModalTokens=void 0,t.defaultModalTokens={"modal-background-color":"color-background-overlay","modal-border-color":"color-border-overlay","modal-backdrop-background-color":"color-backdrop-background","modal-dialog-alert-icon-color":"color-feedback-content-alert"}},92397:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultNavListTokens=void 0,t.defaultNavListTokens={"nav-list-background-color":"color-menu-background","nav-list-border-color":"color-menu-border","nav-list-item-icon-color":"color-menu-item-content","nav-list-item-text-color":"color-menu-item-content","nav-list-item-hover-background-color":"color-menu-item-background-hover","nav-list-item-text-hover-color":"color-menu-item-content-hover","nav-list-item-icon-hover-color":"color-menu-item-content-hover","nav-list-item-disabled-text-color":"color-menu-item-content-disabled","nav-list-box-shadow-color":"color-box-shadow"}},15537:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultNumericInputTokens=void 0,t.defaultNumericInputTokens={"numeric-input-background-color":"color-control-background","numeric-input-border-color":"color-control-border","numeric-input-error-border-color":"color-control-border-error","numeric-input-disabled-adornment-text-color":"color-control-auxiliary-disabled","numeric-input-disabled-background-color":"color-control-background-disabled","numeric-input-disabled-border-color":"color-control-border-disabled"}},62665:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultPaginationTokens=void 0,t.defaultPaginationTokens={"pagination-page-background-color":"transparent-100","pagination-page-text-color":"color-content-subtle","pagination-page-hover-background-color":"color-background-hover","pagination-page-selected-hover-background-color":"color-background-selected","pagination-page-selected-background-color":"color-background-selected","pagination-page-selected-border-color":"color-border-selected","pagination-page-selected-text-color":"color-content-selected"}},58613:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultPasswordInputTokens=void 0,t.defaultPasswordInputTokens={"password-rule-empty-text-color":"color-content-subtle","password-rule-error-text-color":"color-control-auxiliary-error","password-rule-success-text-color":"color-control-auxiliary-success","password-strength-label-text-color":"color-content-subtle","password-strength-meter-empty-color":"color-background-empty","password-strength-meter-weak-color":"color-alert-50","password-strength-meter-fair-color":"color-warning-50","password-strength-meter-good-color":"color-success-50","password-strength-meter-strong-color":"color-success-70"}},42636:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultPhoneInputTokens=void 0,t.defaultPhoneInputTokens={"phone-input-background-color":"transparent-100","phone-input-mask-text-color":"color-control-auxiliary"}},43446:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultProgressCircularTokens=void 0,t.defaultProgressCircularTokens={"progress-circular-color":"color-background-brand","progress-circular-inverted-color":"color-white"}},10336:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultProgressTokens=void 0,t.defaultProgressTokens={"progress-circle-empty-track-color":"color-background-empty","progress-circle-label-text-color":"color-content","progress-circle-result-text-color":"color-content","progress-indicator-label-text-color":"color-content","progress-indicator-empty-track-color":"color-background-empty","progress-tracker-notification-badge-color":"color-content-inverse","progress-tracker-notification-badge-fill-color":"color-feedback-background-alert-bold","progress-tracker-bridge-empty-background-color":"color-background-empty","progress-tracker-bridge-filled-background-color":"color-background-brand","progress-tracker-step-todo-text-color":"color-content","progress-tracker-step-todo-background-color":"color-background","progress-tracker-step-uncompleted-border-color":"color-border-empty","progress-tracker-step-uncompleted-text-color":"color-content","progress-tracker-step-uncompleted-label-text-color":"color-content-subtle","progress-tracker-step-current-border-color":"color-background-brand","progress-tracker-step-current-text-color":"color-content-selected","progress-tracker-step-current-label-text-color":"color-content-selected","progress-tracker-step-completed-background-color":"color-background-brand","progress-tracker-step-completed-border-color":"color-background-brand","progress-tracker-step-completed-text-color":"color-content-inverse","progress-tracker-step-completed-label-text-color":"color-content-brand"}},5805:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultRadioButtonGroupTokens=void 0,t.defaultRadioButtonGroupTokens={"radio-button-background-color":"color-control-background","radio-button-border-color":"color-control-border","radio-button-group-legend-text-color":"color-content","radio-button-hover-border-color":"color-control-border-hover","radio-button-disabled-background-color":"color-control-background-disabled","radio-button-disabled-border-color":"color-control-border-disabled","radio-button-disabled-hover-border-color":"color-control-border-disabled","radio-button-disabled-label-color":"color-content-disabled","radio-button-checked-background-color":"color-control-background-checked","radio-button-checked-border-color":"color-control-border-checked","radio-button-checked-dot-color":"color-control-background-checked","radio-button-disabled-checked-dot-color":"color-control-auxiliary-disabled"}},24069:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultRadioCardTokens=void 0,t.defaultRadioCardTokens={"radio-card-background-color":"color-control-background","radio-card-border-color":"color-control-border","radio-card-text-color":"color-control-value","radio-card-hover-background-color":"color-control-background-hover","radio-card-hover-border-color":"color-control-border-hover","radio-card-hover-text-color":"color-control-value-hover","radio-card-disabled-background-color":"color-control-background-disabled","radio-card-disabled-border-color":"color-control-border-disabled","radio-card-disabled-text-color":"color-control-auxiliary-disabled","radio-card-selected-background-color":"color-control-background-selected","radio-card-selected-border-color":"color-control-border-selected"}},86070:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSearchInputTokens=void 0,t.defaultSearchInputTokens={"search-input-disabled-icon-color":"color-control-auxiliary-disabled","search-input-icon-color":"color-control-auxiliary","search-input-label-text-color":"color-control-auxiliary","search-input-reset-button-background-color":"transparent-100","search-input-reset-button-border-color":"transparent-100"}},41436:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSectionalBannerTokens=void 0,t.defaultSectionalBannerTokens={"sectional-banner-neutral-background-color":"color-background-neutral-subtlest","sectional-banner-neutral-border-color":"color-border-bold","sectional-banner-neutral-icon-color":"color-content-subtle","sectional-banner-info-background-color":"color-feedback-background-informative-subtlest","sectional-banner-info-border-color":"color-feedback-border-informative","sectional-banner-info-icon-color":"color-feedback-content-informative","sectional-banner-discovery-background-color":"color-feedback-background-discovery-subtlest","sectional-banner-discovery-border-color":"color-feedback-border-discovery","sectional-banner-discovery-icon-color":"color-feedback-content-discovery","sectional-banner-success-background-color":"color-feedback-background-success-subtlest","sectional-banner-success-border-color":"color-feedback-border-success","sectional-banner-success-icon-color":"color-feedback-content-success","sectional-banner-warning-background-color":"color-feedback-background-warning-subtlest","sectional-banner-warning-border-color":"color-feedback-border-warning","sectional-banner-warning-icon-color":"color-feedback-content-warning","sectional-banner-alert-background-color":"color-feedback-background-alert-subtlest","sectional-banner-alert-border-color":"color-feedback-border-alert","sectional-banner-alert-icon-color":"color-feedback-content-alert"}},99664:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSegmentedControlTokens=void 0,t.defaultSegmentedControlTokens={"segmented-control-list-background-color":"transparent-dark-5","segmented-control-background-color":"transparent-100","segmented-control-border-color":"transparent-100","segmented-control-text-color":"color-control-auxiliary","segmented-control-hover-background-color":"transparent-dark-5","segmented-control-hover-border-color":"color-control-border-hover","segmented-control-hover-text-color":"color-control-auxiliary-hover","segmented-control-disabled-background-color":"color-control-background-disabled","segmented-control-disabled-border-color":"color-control-border-disabled","segmented-control-disabled-text-color":"color-control-auxiliary-disabled","segmented-control-pressed-background-color":"color-control-background-selected","segmented-control-pressed-border-color":"color-control-border-selected","segmented-control-pressed-text-color":"color-control-auxiliary-selected","segmented-control-pressed-hover-background-color":"color-control-background-selected-hover","segmented-control-pressed-hover-text-color":"color-control-auxiliary-selected"}},24174:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSideDrawerTokens=void 0,t.defaultSideDrawerTokens={"side-drawer-background-color":"color-background-overlay","side-drawer-box-shadow-color":"color-box-shadow"}},49666:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSliderTokens=void 0,t.defaultSliderTokens={"slider-track-empty-background-color":"color-background-empty","slider-track-empty-disabled-background-color":"color-background-neutral-subtle","slider-track-empty-label-text-color":"color-content-subtle","slider-track-empty-mark-background-color":"color-background-neutral-bold","slider-track-empty-mark-disabled-background-color":"color-background-indicator-disabled","slider-track-filled-background-color":"color-background-brand","slider-track-filled-disabled-background-color":"color-background-neutral-bold-disabled","slider-track-filled-mark-background-color":"color-control-background","slider-track-filled-mark-disabled-background-color":"color-control-background","slider-thumb-background-color":"color-control-background","slider-thumb-border-color":"color-border-brand","slider-thumb-disabled-border-color":"color-control-border-disabled"}},22228:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultSpinnerTokens=void 0,t.defaultSpinnerTokens={"spinner-fill-color":"color-background-brand"}},91427:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultStatusTokens=void 0,t.defaultStatusTokens={"status-circle-blocked-background-color":"color-feedback-background-alert-bold","status-circle-enabled-background-color":"color-feedback-background-success-bold","status-circle-disabled-background-color":"color-background-disabled","status-circle-disabled-border-color":"color-border-disabled","status-disabled-text-color":"color-content-disabled"}},3444:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultStepperTokens=void 0,t.defaultStepperTokens={"stepper-button-background-color":"color-control-background","stepper-button-border-color":"color-control-border","stepper-button-text-color":"color-control-auxiliary","stepper-button-hover-background-color":"color-control-background-hover","stepper-button-disabled-background-color":"color-control-background-disabled","stepper-button-disabled-border-color":"color-control-border-disabled","stepper-button-disabled-text-color":"color-control-auxiliary-disabled"}},64938:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTabTokens=void 0,t.defaultTabTokens={"tab-global-button-background-color":"transparent-100","tab-global-list-background-color":"color-background","tab-global-button-selected-background-color":"transparent-100","tab-section-background-color":"color-background","tab-section-border-color":"color-border","tab-section-box-shadow-color":"color-box-shadow","tab-section-list-background-color":"color-background-neutral-subtle","tab-section-button-background-color":"color-background","tab-section-button-selected-background-color":"color-background","tab-button-icon-color":"color-content-subtle","tab-button-text-color":"color-content-subtle","tab-button-hover-text-color":"color-content-hover","tab-button-active-text-color":"color-content","tab-button-selected-text-color":"color-content","tab-scroll-button-hover-background-color":"color-neutral-15","tab-border-bottom-color":"color-border","tab-button-indicator-hover-background-color":"color-background-hover","tab-button-indicator-active-background-color":"color-background-indicator-active","tab-button-indicator-selected-background-color":"color-background-indicator-selected"}},97427:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTableTokens=void 0,t.defaultTableTokens={"table-background-color":"transparent-100","table-text-color":"color-content","table-header-background-color":"color-background","table-header-border-color":"color-border","table-body-background-color":"transparent-100","table-footer-background-color":"color-background","table-footer-border-color":"color-border","table-group-border-color":"color-border","table-cell-hover-background-color":"color-background-hover","table-cell-number-text-color":"color-content-subtle","table-row-border-color":"color-border","table-row-odd-background-color":"color-background-isolated","table-row-selected-background-color":"color-background-selected","table-row-error-background-color":"color-feedback-background-alert-subtlest","table-sort-button-ascending-icon-color":"color-content-subtle","table-sort-button-descending-icon-color":"color-content-subtle","table-sort-button-default-icon-color":"color-content-subtle"}},56847:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTagTokens=void 0,t.defaultTagTokens={"tag-background-color":"color-background-neutral-subtle","tag-border-color":"color-border-bold","tag-text-color":"color-content","tag-icon-color":"color-content","tag-hover-background-color":"color-background-hover","tag-hover-border-color":"color-border-hover","tag-hover-icon-color":"color-content-hover","tag-hover-text-color":"color-content-hover","tag-selected-background-color":"color-background-selected","tag-selected-border-color":"color-border-selected","tag-selected-text-color":"color-content-selected","tag-selected-icon-color":"color-content-selected","tag-decorative-01-background-color":"color-decorative-01-05","tag-decorative-01-border-color":"color-decorative-01-50","tag-decorative-01-text-color":"color-decorative-01-70","tag-decorative-01-icon-color":"color-decorative-01-70","tag-decorative-02-background-color":"color-decorative-02-05","tag-decorative-02-border-color":"color-decorative-02-50","tag-decorative-02-text-color":"color-decorative-02-70","tag-decorative-02-icon-color":"color-decorative-02-70","tag-decorative-03-background-color":"color-decorative-03-05","tag-decorative-03-border-color":"color-decorative-03-50","tag-decorative-03-text-color":"color-decorative-03-70","tag-decorative-03-icon-color":"color-decorative-03-70","tag-decorative-04-background-color":"color-decorative-04-05","tag-decorative-04-border-color":"color-decorative-04-50","tag-decorative-04-text-color":"color-decorative-04-70","tag-decorative-04-icon-color":"color-decorative-04-70","tag-decorative-05-background-color":"color-decorative-05-05","tag-decorative-05-border-color":"color-decorative-05-50","tag-decorative-05-text-color":"color-decorative-05-70","tag-decorative-05-icon-color":"color-decorative-05-70","tag-decorative-06-background-color":"color-decorative-06-05","tag-decorative-06-border-color":"color-decorative-06-50","tag-decorative-06-text-color":"color-decorative-06-70","tag-decorative-06-icon-color":"color-decorative-06-70","tag-decorative-07-background-color":"color-decorative-07-05","tag-decorative-07-border-color":"color-decorative-07-50","tag-decorative-07-text-color":"color-decorative-07-70","tag-decorative-07-icon-color":"color-decorative-07-70","tag-decorative-08-background-color":"color-decorative-08-05","tag-decorative-08-border-color":"color-decorative-08-50","tag-decorative-08-text-color":"color-decorative-08-70","tag-decorative-08-icon-color":"color-decorative-08-70","tag-decorative-09-background-color":"color-decorative-09-05","tag-decorative-09-border-color":"color-decorative-09-50","tag-decorative-09-text-color":"color-decorative-09-70","tag-decorative-09-icon-color":"color-decorative-09-70","tag-decorative-10-background-color":"color-decorative-10-05","tag-decorative-10-border-color":"color-decorative-10-50","tag-decorative-10-text-color":"color-decorative-10-70","tag-decorative-10-icon-color":"color-decorative-10-70"}},49062:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTextAreaTokens=void 0,t.defaultTextAreaTokens={"text-area-counter-error-text-color":"color-control-auxiliary-error","text-area-counter-text-color":"color-control-auxiliary"}},15847:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTextInputTokens=void 0,t.defaultTextInputTokens={"text-input-background-color":"color-control-background","text-input-disabled-background-color":"color-control-background-disabled","text-input-readonly-background-color":"color-control-background-readonly","text-input-border-color":"color-control-border","text-input-disabled-border-color":"color-control-border-disabled","text-input-readonly-border-color":"color-control-border-readonly","text-input-error-border-color":"color-control-border-error","text-input-text-color":"color-control-value","text-input-disabled-text-color":"color-control-value-disabled","text-input-readonly-text-color":"color-control-value-readonly","text-input-placeholder-text-color":"color-control-auxiliary","text-input-placeholder-disabled-text-color":"color-control-auxiliary-disabled","text-input-adornment-color":"color-control-auxiliary","text-input-disabled-adornment-color":"color-control-auxiliary-disabled","text-input-readonly-adornment-color":"color-control-auxiliary-readonly"}},98602:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultToastTokens=void 0,t.defaultToastTokens={"toast-neutral-background-color":"color-background-neutral-bold","toast-neutral-text-color":"color-content-inverse","toast-neutral-icon-color":"color-content-inverse","toast-discovery-background-color":"color-feedback-background-discovery-bold","toast-discovery-text-color":"color-content-inverse","toast-discovery-icon-color":"color-content-inverse","toast-success-background-color":"color-feedback-background-success-bold","toast-success-text-color":"color-content-inverse","toast-success-icon-color":"color-content-inverse","toast-warning-background-color":"color-feedback-background-warning-bold","toast-warning-text-color":"color-content","toast-warning-icon-color":"color-content","toast-alert-background-color":"color-feedback-background-alert-bold","toast-alert-text-color":"color-content-inverse","toast-alert-icon-color":"color-content-inverse"}},89910:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultToggleSwitchTokens=void 0,t.defaultToggleSwitchTokens={"toggle-switch-background-color":"color-background-neutral-bold","toggle-switch-border-color":"color-background-neutral-bold","toggle-switch-toggled-background-color":"color-feedback-background-success-bold","toggle-switch-toggled-border-color":"color-feedback-background-success-bold","toggle-switch-disabled-background-color":"color-background-neutral-bold-disabled","toggle-switch-disabled-border-color":"color-background-neutral-bold-disabled","toggle-switch-disabled-toggled-background-color":"color-feedback-background-success-bold-disabled","toggle-switch-disabled-toggled-border-color":"color-feedback-background-success-bold-disabled","toggle-switch-label-text-color":"color-content","toggle-switch-knob-background-color":"color-control-background"}},32740:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultToggleTipTokens=void 0,t.defaultToggleTipTokens={"toggletip-popper-container-background-color":"color-background-overlay","toggletip-popper-container-border-color":"color-border-overlay","toggletip-popper-container-text-color":"color-content"}},58562:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTooltipTokens=void 0,t.defaultTooltipTokens={"tooltip-icon-color":"color-content","tooltip-inverted-icon-color":"color-content-inverse","tooltip-popper-container-border-color":"color-border-inverse","tooltip-popper-container-text-color":"color-content-inverse","tooltip-popper-container-default-background-color":"color-background-neutral-bold","tooltip-popper-container-success-background-color":"color-feedback-background-success-bold"}},21744:function(e,t,n){"use strict";var a=this&&this.__createBinding||(Object.create?function(e,t,n,a){void 0===a&&(a=n);var r=Object.getOwnPropertyDescriptor(t,n);r&&!("get"in r?!t.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,a,r)}:function(e,t,n,a){void 0===a&&(a=n),e[a]=t[n]}),r=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||a(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),r(n(80320),t),r(n(84760),t),r(n(62798),t),r(n(81280),t)},80320:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultRefTokens=void 0;const a=n(12920),r=n(19597),i=n(48621);t.defaultRefTokens=Object.assign(Object.assign(Object.assign({},a.defaultPaletteTokens),r.defaultTextTokens),i.defaultUtilityTokens)},12920:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultPaletteTokens=void 0,t.defaultPaletteTokens={"color-brand-05":"#E0F0F9","color-brand-10":"#C2E2F4","color-brand-20":"#84C6EA","color-brand-30":"#3F9DD1","color-brand-40":"#1582BD","color-brand-50":"#006296","color-brand-60":"#004E78","color-brand-70":"#003A5A","color-brand-80":"#012639","color-brand-90":"#00131E","color-accent-05":"#FFECEB","color-accent-10":"#FFD9D7","color-accent-20":"#FFB3AF","color-accent-30":"#FF8D88","color-accent-40":"#FF6760","color-accent-50":"#FF4138","color-accent-60":"#CC342D","color-accent-70":"#992722","color-accent-80":"#661A16","color-accent-90":"#330D0B","color-white":"#FFFFFF","color-neutral-02":"#FAFAFA","color-neutral-05":"#F1F2F2","color-neutral-10":"#E7E8EA","color-neutral-15":"#DBDEE1","color-neutral-20":"#CFD2D6","color-neutral-30":"#B7BBC2","color-neutral-40":"#9FA5AE","color-neutral-50":"#878F9A","color-neutral-60":"#6C727B","color-neutral-65":"#60666E","color-neutral-70":"#51555C","color-neutral-80":"#36393D","color-neutral-90":"#1B1C1E","color-black":"#000000","color-success-02":"#F6FBF8","color-success-05":"#E1F7EA","color-success-10":"#C4EED5","color-success-20":"#8ADDA9","color-success-30":"#50CB7F","color-success-40":"#1AB655","color-success-50":"#008533","color-success-60":"#00661E","color-success-70":"#004F1E","color-success-80":"#003514","color-success-90":"#001A0A","color-alert-02":"#FDF7F6","color-alert-05":"#FAEAE9","color-alert-10":"#FCCDCC","color-alert-20":"#F99D99","color-alert-30":"#F76C65","color-alert-40":"#F43C32","color-alert-50":"#CD2C23","color-alert-60":"#A4231C","color-alert-70":"#7B1A15","color-alert-80":"#52110E","color-alert-90":"#290807","color-warning-02":"#FFFBF5","color-warning-05":"#FFF7E5","color-warning-10":"#FFEECC","color-warning-20":"#FFDD99","color-warning-30":"#FFCB66","color-warning-40":"#FFBA33","color-warning-50":"#F5A200","color-warning-60":"#C78500","color-warning-70":"#9E6900","color-warning-80":"#664400","color-warning-90":"#332200","color-informative-02":"#F3F9FD","color-informative-05":"#E0F0F9","color-informative-10":"#C2E2F4","color-informative-20":"#8FCEF0","color-informative-30":"#4EADE1","color-informative-40":"#2286BC","color-informative-50":"#006296","color-informative-60":"#004E78","color-informative-70":"#003A5A","color-informative-80":"#012639","color-informative-90":"#00131E","color-discovery-02":"#F9F7FB","color-discovery-05":"#EFEAF5","color-discovery-10":"#DFD5EC","color-discovery-20":"#CFC1E3","color-discovery-30":"#B097D0","color-discovery-40":"#8059B3","color-discovery-50":"#602FA0","color-discovery-60":"#4D2680","color-discovery-70":"#3A1C60","color-discovery-80":"#261340","color-discovery-90":"#130920","color-decorative-01-05":"#EBE6EB","color-decorative-01-10":"#D7CCD8","color-decorative-01-50":"#38023B","color-decorative-01-70":"#220123","color-decorative-02-05":"#FAF3E7","color-decorative-02-10":"#F6E7D0","color-decorative-02-50":"#CE840C","color-decorative-02-70":"#7D520B","color-decorative-03-05":"#E7F0F1","color-decorative-03-10":"#D0E1E3","color-decorative-03-50":"#126773","color-decorative-03-70":"#0B3E45","color-decorative-04-05":"#F3E6E6","color-decorative-04-10":"#E8CCCC","color-decorative-04-50":"#960000","color-decorative-04-70":"#530000","color-decorative-05-05":"#F2F5E8","color-decorative-05-10":"#E5EBD2","color-decorative-05-50":"#7B9C1D","color-decorative-05-70":"#4A5E11","color-decorative-06-05":"#FAEDE6","color-decorative-06-10":"#F5DBCC","color-decorative-06-50":"#CD4B00","color-decorative-06-70":"#7B2D00","color-decorative-07-05":"#E7EDF5","color-decorative-07-10":"#CFDAEA","color-decorative-07-50":"#104697","color-decorative-07-70":"#0A2A5B","color-decorative-08-05":"#E6EDEB","color-decorative-08-10":"#CDDAD6","color-decorative-08-50":"#064633","color-decorative-08-70":"#042A1F","color-decorative-09-05":"#F2E9EF","color-decorative-09-10":"#E5D3DE","color-decorative-09-50":"#7E235A","color-decorative-09-70":"#4C1536","color-decorative-10-05":"#F1F0F7","color-decorative-10-10":"#E3E2EE","color-decorative-10-50":"#766DAB","color-decorative-10-70":"#444167"}},19597:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTextTokens=void 0,t.defaultTextTokens={"font-family-sans":'"Open Sans", sans-serif',"font-family-brand":'"Open Sans", sans-serif',"font-size-100":"0.25rem","font-size-200":"0.5rem","font-size-275":"0.6875rem","font-size-300":"0.75rem","font-size-350":"0.875rem","font-size-400":"1rem","font-size-500":"1.25rem","font-size-600":"1.5rem","font-size-700":"1.75rem","font-size-800":"2rem","font-size-900":"2.25rem","font-size-1000":"2.5rem","font-size-1100":"2.75rem","font-size-1200":"3rem","font-weight-regular":"400","font-weight-semibold":"600","font-weight-bold":"700","line-height-100":"0.25rem","line-height-200":"0.5rem","line-height-300":"0.75rem","line-height-400":"1rem","line-height-500":"1.25rem","line-height-600":"1.5rem","line-height-700":"1.75rem","line-height-800":"2rem","line-height-900":"2.25rem","line-height-1000":"2.5rem","line-height-1100":"2.75rem","line-height-1200":"3rem","letter-spacing-normal":"0.2px","font-transform-none":"none","font-transform-uppercase":"uppercase"}},48621:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultUtilityTokens=void 0,t.defaultUtilityTokens={"transparent-dark-3":"rgb(0 0 0 / 0.03)","transparent-dark-5":"rgb(0 0 0 / 0.05)","transparent-light-5":"rgb(255 255 255 / 0.05)","transparent-dark-10":"rgb(0 0 0 / 0.1)","transparent-light-10":"rgb(255 255 255 / 0.1)","transparent-dark-15":"rgb(0 0 0 / 0.15)","transparent-light-15":"rgb(255 255 255 / 0.15)","transparent-dark-20":"rgb(0 0 0 / 0.2)","transparent-light-20":"rgb(255 255 255 / 0.2)","transparent-dark-25":"rgb(0 0 0 / 0.25)","transparent-light-25":"rgb(255 255 255 / 0.25)","transparent-dark-30":"rgb(0 0 0 / 0.3)","transparent-light-30":"rgb(255 255 255 / 0.3)","transparent-dark-35":"rgb(0 0 0 / 0.35)","transparent-light-35":"rgb(255 255 255 / 0.35)","transparent-dark-40":"rgb(0 0 0 / 0.4)","transparent-light-40":"rgb(255 255 255 / 0.4)","transparent-dark-45":"rgb(0 0 0 / 0.45)","transparent-light-45":"rgb(255 255 255 / 0.45)","transparent-dark-50":"rgb(0 0 0 / 0.5)","transparent-light-50":"rgb(255 255 255 / 0.5)","transparent-dark-55":"rgb(0 0 0 / 0.55)","transparent-light-55":"rgb(255 255 255 / 0.55)","transparent-dark-60":"rgb(0 0 0 / 0.6)","transparent-light-60":"rgb(255 255 255 / 0.6)","transparent-dark-65":"rgb(0 0 0 / 0.65)","transparent-light-65":"rgb(255 255 255 / 0.65)","transparent-dark-70":"rgb(0 0 0 / 0.7)","transparent-light-70":"rgb(255 255 255 / 0.7)","transparent-dark-75":"rgb(0 0 0 / 0.75)","transparent-light-75":"rgb(255 255 255 / 0.75)","transparent-dark-80":"rgb(0 0 0 / 0.8)","transparent-light-80":"rgb(255 255 255 / 0.8)","transparent-dark-85":"rgb(0 0 0 / 0.85)","transparent-light-85":"rgb(255 255 255 / 0.85)","transparent-dark-90":"rgb(0 0 0 / 0.9)","transparent-light-90":"rgb(255 255 255 / 0.9)","transparent-dark-95":"rgb(0 0 0 / 0.95)","transparent-light-95":"rgb(255 255 255 / 0.95)","transparent-100":"transparent"}},81280:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0})},56865:(e,t)=>{"use strict";function n(e){return e[0]}function a(e,t){return e.find(t)}function r(e){return e[e.length-1]}function i(e,t){return[...e].reverse().find(t)}function o(e,t){const n=e();return void 0!==n?n:null==t?void 0:t()}Object.defineProperty(t,"__esModule",{value:!0}),t.getFirstElement=n,t.findFirstElement=a,t.getLastElement=r,t.findLastElement=i,t.getPreviousElement=function(e,t,{wrapAround:n=!1}={}){return o((()=>e[t-1]),n?()=>r(e):void 0)},t.findPreviousElement=function(e,t,n,{wrapAround:a=!1}={}){return o((()=>e.slice(0,t).reverse().find(n)),a?()=>i(e,n):void 0)},t.getNextElement=function(e,t,{wrapAround:a=!1}={}){return o((()=>e[t+1]),a?()=>n(e):void 0)},t.findNextElement=function(e,t,n,{wrapAround:r=!1}={}){return o((()=>e.slice(t+1).find(n)),r?()=>a(e,n):void 0)},t.unique=function(e){return[...new Set(e)]}},83723:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.focus=void 0;const a=n(88694);t.focus=({theme:e},t={})=>{const{selector:n,focusType:r="focus",inverted:i=!1,insideOnly:o=!1}=t,l=i?"-inverted":"",u=o?e.component[`focus${l}-outside-border-color`]:e.component[`focus${l}-inside-border-color`],s=o?"transparent":e.component[`focus${l}-outside-border-color`],d="-2px",c=o?"0":"2px",m=null!=n?n:"";return a.css`
3759
3759
  ${m} {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/design-elements-react",
3
- "version": "9.2.1-snapshot.20250204141019",
3
+ "version": "9.2.1-snapshot.20250205002952",
4
4
  "description": "React implementation of the Equisoft design system.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/bundle.js",