globuswebcomponents 2.16.2 → 2.16.4

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 (38) hide show
  1. package/dist/cjs/gb-accordion-card_80.cjs.entry.js +40 -12
  2. package/dist/cjs/gb-detail-cell.cjs.entry.js +3 -2
  3. package/dist/cjs/gb-detail-cell.entry.cjs.js.map +1 -1
  4. package/dist/cjs/globuscomponents.cjs.js +1 -1
  5. package/dist/cjs/loader.cjs.js +1 -1
  6. package/dist/collection/components/gb-accordion-card/gb-accordion-card.js +37 -4
  7. package/dist/collection/components/gb-accordion-card/gb-accordion-card.js.map +1 -1
  8. package/dist/collection/components/gb-detail-cell/gb-detail-cell.css +3 -1
  9. package/dist/collection/components/gb-detail-cell/gb-detail-cell.js +22 -1
  10. package/dist/collection/components/gb-detail-cell/gb-detail-cell.js.map +1 -1
  11. package/dist/collection/components/gb-sidebar/gb-sidebar.css +26 -2
  12. package/dist/collection/components/gb-sidebar/gb-sidebar.js +35 -8
  13. package/dist/collection/components/gb-sidebar/gb-sidebar.js.map +1 -1
  14. package/dist/components/gb-accordion-card.js +17 -4
  15. package/dist/components/gb-accordion-card.js.map +1 -1
  16. package/dist/components/gb-detail-cell.js +4 -2
  17. package/dist/components/gb-detail-cell.js.map +1 -1
  18. package/dist/components/gb-sidebar.js +60 -24
  19. package/dist/components/gb-sidebar.js.map +1 -1
  20. package/dist/docs.json +84 -2
  21. package/dist/esm/gb-accordion-card_80.entry.js +40 -12
  22. package/dist/esm/gb-detail-cell.entry.js +3 -2
  23. package/dist/esm/gb-detail-cell.entry.js.map +1 -1
  24. package/dist/esm/globuscomponents.js +1 -1
  25. package/dist/esm/loader.js +1 -1
  26. package/dist/globuscomponents/gb-detail-cell.entry.esm.js.map +1 -1
  27. package/dist/globuscomponents/globuscomponents.esm.js +1 -1
  28. package/dist/globuscomponents/{p-4af8d3b7.entry.js → p-24aa385b.entry.js} +2 -2
  29. package/dist/globuscomponents/p-24aa385b.entry.js.map +1 -0
  30. package/dist/globuscomponents/{p-caad6782.entry.js → p-d5e82f38.entry.js} +2 -2
  31. package/dist/globuscomponents/p-d5e82f38.entry.js.map +1 -0
  32. package/dist/types/components/gb-accordion-card/gb-accordion-card.d.ts +3 -0
  33. package/dist/types/components/gb-detail-cell/gb-detail-cell.d.ts +1 -0
  34. package/dist/types/components/gb-sidebar/gb-sidebar.d.ts +2 -0
  35. package/dist/types/components.d.ts +16 -0
  36. package/package.json +1 -1
  37. package/dist/globuscomponents/p-4af8d3b7.entry.js.map +0 -1
  38. package/dist/globuscomponents/p-caad6782.entry.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"gb-detail-cell.entry.cjs.js","sources":["src/components/gb-detail-cell/gb-detail-cell.css?tag=gb-detail-cell&encapsulation=shadow","src/components/gb-detail-cell/gb-detail-cell.tsx"],"sourcesContent":["@import './../../global/global.css';\r\n\r\n:host {\r\n min-width: 0;\r\n width: 100%;\r\n}\r\n\r\n.detail_cell_div {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n border-bottom: 1px solid var(--color-border-subtler, #e3e8ef);\r\n cursor: pointer;\r\n position: relative;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.detail_cell_div:hover {\r\n background: var(--color-background-gray-subtlest, #f6f8fa);\r\n}\r\n\r\n.detail_cell_div.standard {\r\n height: 5rem;\r\n padding: var(--spacing-none) var(--spacing-6);\r\n}\r\n\r\n.detail_cell_div.compact {\r\n padding: 0;\r\n}\r\n\r\n.info_text_div,\r\n.status_text_div,\r\n.document_text_div,\r\n.button_div {\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n display: flex;\r\n flex-direction: column;\r\n gap: var(--spacing-3);\r\n flex: 1;\r\n}\r\n\r\n.status_text_div,\r\n.button_div {\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.label {\r\n color: var(--color-text-subtle, #697586);\r\n display: block; /* Ensure block or inline-block */\r\n max-width: 100%; /* Set a fixed or max width */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n overflow: hidden; /* Hide overflowing text */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n flex: 1;\r\n min-width: 0; /* Ensure it can shrink properly */\r\n}\r\n\r\n.detail_div {\r\n display: flex;\r\n gap: var(--spacing-2);\r\n justify-content: flex-start;\r\n}\r\n\r\n.detail {\r\n color: var(--color-text, #4b5565);\r\n display: block; /* Ensure block or inline-block */\r\n}\r\n\r\n.detail.no_supporting_text {\r\n max-width: 100%; /* Set a fixed or max width */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n overflow: hidden; /* Hide overflowing text */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n flex: 1;\r\n min-width: 0; /* Ensure it can shrink properly */\r\n}\r\n\r\n.supporting_text {\r\n color: var(--color-text-disabled, #808c9e);\r\n}\r\n\r\n.information_text_tooltip {\r\n position: absolute;\r\n bottom: 90%;\r\n}\r\n\r\n.document_detail_tooltip {\r\n position: absolute;\r\n left: 4rem;\r\n bottom: 90%;\r\n}\r\n\r\n.copied_tooltip {\r\n position: absolute;\r\n right: 6rem;\r\n bottom: 3.5rem;\r\n}\r\n\r\n.downloaded_tooltip {\r\n position: absolute;\r\n right: 8rem;\r\n bottom: 3.5rem;\r\n}\r\n\r\n/* Compact Information Styles */\r\n.compact_info_div {\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n}\r\n\r\n.compact_info_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n /* justify-content: space-between; */\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n flex: 1 0 0;\r\n width: 100%;\r\n}\r\n\r\n.compact_detail {\r\n display: flex;\r\n flex-direction: column-reverse;\r\n flex: 1 0 0;\r\n align-items: flex-end;\r\n position: relative;\r\n flex-wrap: wrap;\r\n word-wrap: break-word; /* Ensures words break if needed */\r\n overflow-wrap: break-word; /* Helps in modern browsers */\r\n white-space: normal; /* Allows text wrapping */\r\n text-align: right; /* Keeps text aligned to the right */\r\n}\r\n\r\n.detail_compact_text {\r\n color: var(--color-text, #4b5565);\r\n word-break: break-word; /* Ensures long words break */\r\n overflow-wrap: anywhere; /* Allows breaking at any point */\r\n white-space: normal; /* Ensures wrapping is allowed */\r\n hyphens: auto;\r\n}\r\n\r\n.compact_copied_tooltip {\r\n position: absolute;\r\n right: 4rem;\r\n bottom: 2rem;\r\n}\r\n\r\n.compact_div {\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n}\r\n\r\n.compact_status_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n justify-content: space-between;\r\n align-items: center;\r\n flex: 1 0 0;\r\n}\r\n\r\n.compact_doc_div {\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.compact_doc_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n align-items: center;\r\n gap: 1.25rem;\r\n flex: 1 0 0;\r\n}\r\n\r\n.compact_doc_textt_div {\r\n display: flex;\r\n flex-direction: column; /* Allows stacking if necessary */\r\n align-items: flex-start; /* Aligns text to the left */\r\n gap: 0.5rem;\r\n flex: 1 1 auto;\r\n word-wrap: break-word; /* Ensures words break properly */\r\n overflow-wrap: break-word;\r\n white-space: normal; /* Allows wrapping */\r\n max-width: 100%; /* Prevents overflow */\r\n}\r\n\r\n.compact_doc_detail {\r\n display: flex;\r\n flex: 1 0 0;\r\n text-align: right;\r\n justify-content: flex-end;\r\n}\r\n\r\n.doc_label {\r\n color: var(--color-text-subtle, #697586);\r\n display: block; /* Ensure block or inline-block */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n}\r\n\r\n.detaill {\r\n max-width: 100%; /* Ensures it doesn’t stretch too far */\r\n word-break: break-word; /* Breaks long words */\r\n white-space: normal; /* Allows text to wrap */\r\n overflow-wrap: break-word;\r\n display: flex;\r\n color: var(--color-text, #4b5565);\r\n}\r\n\r\n.button_container {\r\n display: flex;\r\n align-items: center;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.downloaded_toolip_div {\r\n position: relative;\r\n width: 100%;\r\n}\r\n\r\n.compact_downloaded_tooltip {\r\n position: absolute;\r\n bottom: 3rem;\r\n right: 10rem;\r\n}\r\n","import { Component, Prop, State, h, Fragment, Event, EventEmitter } from '@stencil/core';\r\nimport { BadgeIconTypes, BadgeTypes, DetailCellType, FileIconStyles, FileIconTypes, GeneralColors, GeneralStyles } from '../../models/reusableModels';\r\n\r\n@Component({\r\n tag: 'gb-detail-cell',\r\n styleUrl: 'gb-detail-cell.css',\r\n shadow: true,\r\n})\r\nexport class GbDetailCell {\r\n @Prop() state: 'default' | 'disabled';\r\n @Prop({ mutable: true }) cellStyle: GeneralStyles;\r\n @Prop() type: DetailCellType;\r\n @Prop() label: string = '';\r\n @Prop() detail: string = '';\r\n @Prop() badgeIcon: BadgeIconTypes;\r\n @Prop() badgeIconLeading: string = '';\r\n @Prop() badgeIconTrailing: string = '';\r\n @Prop() badgeColor: GeneralColors;\r\n @Prop() badgeLabel: string = '';\r\n @Prop() badgeType: BadgeTypes;\r\n @Prop() fileType: FileIconTypes;\r\n @Prop() fileStyle: FileIconStyles;\r\n @Prop() showActionButtons: boolean = false;\r\n @Prop() showViewButton: boolean = false;\r\n @Prop() showDownloadButton: boolean = false;\r\n @Prop({ mutable: true }) showCopyButton: boolean = false;\r\n @Prop() buttonText: string = '';\r\n @Prop() showSupportingText: boolean = false;\r\n @Prop() supportingText: string = '';\r\n @State() showStandardCopyButton: boolean = false;\r\n @State() showTooltip: boolean = false;\r\n @State() copied: boolean = false;\r\n @State() isDownloaded: boolean = false;\r\n @State() width: number = window.innerWidth;\r\n @Event() viewButtonClicked: EventEmitter<void>;\r\n @Event() downloadButtonClicked: EventEmitter<void>;\r\n @Event() buttonClicked: EventEmitter<void>;\r\n\r\n componentWillLoad() {\r\n this.updateCellStyle(); // Set initial variant\r\n window.addEventListener('resize', this.handleResize);\r\n }\r\n\r\n private handleResize = () => {\r\n this.width = window.innerWidth;\r\n this.updateCellStyle();\r\n };\r\n\r\n private updateCellStyle() {\r\n this.cellStyle = this.width < 768 ? 'compact' : this.cellStyle;\r\n }\r\n\r\n onViewButtonClicked() {\r\n this.viewButtonClicked.emit();\r\n }\r\n\r\n onDownloadButtonClicked() {\r\n this.isDownloaded = true;\r\n\r\n setTimeout(() => {\r\n this.isDownloaded = false;\r\n }, 2000);\r\n\r\n this.downloadButtonClicked.emit();\r\n }\r\n\r\n onShowCopyButton() {\r\n if (this.cellStyle === 'standard') {\r\n this.showStandardCopyButton = true;\r\n }\r\n if (this.type === 'document') {\r\n this.showActionButtons = true;\r\n }\r\n }\r\n\r\n onHideCopyButton() {\r\n if (this.cellStyle === 'standard') {\r\n this.showStandardCopyButton = false;\r\n }\r\n if (this.type === 'document') {\r\n this.showActionButtons = false;\r\n }\r\n }\r\n\r\n onButtonClicked() {\r\n this.buttonClicked.emit();\r\n }\r\n\r\n async copyToClipboard() { \r\n try {\r\n await navigator.clipboard.writeText(this.detail);\r\n this.copied = true;\r\n\r\n setTimeout(() => {\r\n this.copied = false;\r\n }, 2000); // Reset copied state after 2 seconds\r\n } catch (error) {\r\n // console.error('Failed to copy:', error);\r\n }\r\n }\r\n\r\n componentDidLoad() {\r\n this.showActionButtons = false;\r\n }\r\n\r\n render() {\r\n return (\r\n <div class={`detail_cell_div ${this.type} ${this.cellStyle}`} onMouseEnter={() => this.onShowCopyButton()} onMouseLeave={() => this.onHideCopyButton()}>\r\n {this.type === 'information' && this.cellStyle === 'standard' && (\r\n <>\r\n <div class=\"info_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <div class=\"detail_div\">\r\n <p class={`detail ${this.supportingText ? '' : 'no_supporting_text'} text-md-medium`} onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n {this.showSupportingText && <p class=\"supporting_text text-md-medium\">{this.supportingText}</p>}\r\n </div>\r\n {this.showTooltip && (\r\n <gb-tooltip show-arrow={false} class=\"information_text_tooltip\">\r\n <p slot=\"label\">{this.detail}</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {this.showStandardCopyButton && (\r\n <gb-button size=\"sm\" hierarchy=\"tertiary_gray\" icon=\"only\" icon-leading=\"true\" icon-leading-swap=\"assets/copy.svg\" onClick={() => this.copyToClipboard()}></gb-button>\r\n )}\r\n {this.copied && (\r\n <gb-tooltip show-arrow={false} class=\"copied_tooltip\">\r\n <p slot=\"label\">Copied!</p>\r\n </gb-tooltip>\r\n )}\r\n </>\r\n )}\r\n {this.type === 'document' && this.cellStyle === 'standard' && (\r\n <>\r\n <gb-file-type-icon file-style={this.fileStyle} file-type={this.fileType}></gb-file-type-icon>\r\n <div class=\"document_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <p class=\"detail text-md-medium\" onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n {this.showTooltip && (\r\n <gb-tooltip show-arrow={false} class=\"document_detail_tooltip\">\r\n <p slot=\"label\">{this.detail}</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {!this.isDownloaded ? (\r\n <>\r\n {this.showActionButtons && (\r\n <>\r\n {this.showViewButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/view.svg\"\r\n onClick={() => this.onViewButtonClicked()}\r\n ></gb-button>\r\n )}\r\n {this.showDownloadButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/download-03.svg\"\r\n onClick={() => this.onDownloadButtonClicked()}\r\n ></gb-button>\r\n )}\r\n </>\r\n )}\r\n </>\r\n ) : (\r\n <gb-tooltip show-arrow={false} class=\"downloaded_tooltip\">\r\n <p slot=\"label\">Downloaded!</p>\r\n </gb-tooltip>\r\n )}\r\n </>\r\n )}\r\n {this.type === 'status' && this.cellStyle === 'standard' && (\r\n <div class=\"status_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <gb-badge\r\n size=\"sm\"\r\n type={this.badgeType}\r\n icon={this.badgeIcon}\r\n color={this.badgeColor}\r\n icon-leading-swap={this.badgeIconLeading}\r\n icon-trailing-swap={this.badgeIconTrailing}\r\n >\r\n <p>{this.badgeLabel}</p>\r\n </gb-badge>\r\n </div>\r\n )}\r\n {this.type === 'button' && this.cellStyle === 'standard' && (\r\n <div class=\"button_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <gb-button size=\"sm\" hierarchy=\"link_color\" icon=\"default\">\r\n <p>Button CTA</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.type === 'information' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_info_div\">\r\n <div class=\"compact_info_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <div class=\"compact_detail\">\r\n <p class=\"detail_compact_text text-md-medium\">{this.detail}</p>\r\n {this.copied && (\r\n <gb-tooltip show-arrow={false} class=\"compact_copied_tooltip\">\r\n <p slot=\"label\">Copied!</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {this.showCopyButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/copy.svg\"\r\n onClick={() => this.copyToClipboard()}\r\n ></gb-button>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'document' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <gb-file-type-icon file-style={this.fileStyle} file-type={this.fileType}></gb-file-type-icon>\r\n <div class=\"compact_doc_text_div\">\r\n <p class=\"doc_label text-sm-regular\">{this.label}</p>\r\n <div class=\"compact_doc_detail\">\r\n <p class=\"detaill text-md-medium\" onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n </div>\r\n {this.isDownloaded && (\r\n <gb-tooltip show-arrow={false} class=\"compact_downloaded_tooltip\">\r\n <p slot=\"label\">Downloaded!</p>\r\n </gb-tooltip>\r\n )}\r\n {this.showActionButtons && (\r\n <div class=\"button_container\">\r\n {this.showViewButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/view.svg\"\r\n onClick={() => this.onViewButtonClicked()}\r\n ></gb-button>\r\n )}\r\n {this.showDownloadButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/download-03.svg\"\r\n onClick={() => this.onDownloadButtonClicked()}\r\n ></gb-button>\r\n )}\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'status' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <div class=\"compact_status_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <gb-badge size=\"sm\" type={this.badgeType} icon=\"dot\" color={this.badgeColor}>\r\n <p>{this.badgeLabel}</p>\r\n </gb-badge>\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'button' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <div class=\"compact_status_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <gb-button size=\"sm\" hierarchy=\"link_color\" icon=\"default\" onClick={() => this.onButtonClicked()}>\r\n <p>{this.buttonText}</p>\r\n </gb-button>\r\n </div>\r\n </div>\r\n )}\r\n </div>\r\n );\r\n }\r\n}\r\n"],"names":["h","Fragment"],"mappings":";;;;AAAA,MAAM,eAAe,GAAG,i1iFAAi1iF;;MCQ51iF,YAAY,GAAA,MAAA;AALzB,IAAA,WAAA,CAAA,OAAA,EAAA;;;;;AASU,QAAA,IAAK,CAAA,KAAA,GAAW,EAAE;AAClB,QAAA,IAAM,CAAA,MAAA,GAAW,EAAE;AAEnB,QAAA,IAAgB,CAAA,gBAAA,GAAW,EAAE;AAC7B,QAAA,IAAiB,CAAA,iBAAA,GAAW,EAAE;AAE9B,QAAA,IAAU,CAAA,UAAA,GAAW,EAAE;AAIvB,QAAA,IAAiB,CAAA,iBAAA,GAAY,KAAK;AAClC,QAAA,IAAc,CAAA,cAAA,GAAY,KAAK;AAC/B,QAAA,IAAkB,CAAA,kBAAA,GAAY,KAAK;AAClB,QAAA,IAAc,CAAA,cAAA,GAAY,KAAK;AAChD,QAAA,IAAU,CAAA,UAAA,GAAW,EAAE;AACvB,QAAA,IAAkB,CAAA,kBAAA,GAAY,KAAK;AACnC,QAAA,IAAc,CAAA,cAAA,GAAW,EAAE;AAC1B,QAAA,IAAsB,CAAA,sBAAA,GAAY,KAAK;AACvC,QAAA,IAAW,CAAA,WAAA,GAAY,KAAK;AAC5B,QAAA,IAAM,CAAA,MAAA,GAAY,KAAK;AACvB,QAAA,IAAY,CAAA,YAAA,GAAY,KAAK;AAC7B,QAAA,IAAA,CAAA,KAAK,GAAW,MAAM,CAAC,UAAU;AAUlC,QAAA,IAAY,CAAA,YAAA,GAAG,MAAK;AAC1B,YAAA,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,UAAU;YAC9B,IAAI,CAAC,eAAe,EAAE;AACxB,SAAC;AA+PF;IAvQC,iBAAiB,GAAA;AACf,QAAA,IAAI,CAAC,eAAe,EAAE,CAAC;QACvB,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE,IAAI,CAAC,YAAY,CAAC;;IAQ9C,eAAe,GAAA;AACrB,QAAA,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,KAAK,GAAG,GAAG,GAAG,SAAS,GAAG,IAAI,CAAC,SAAS;;IAGhE,mBAAmB,GAAA;AACjB,QAAA,IAAI,CAAC,iBAAiB,CAAC,IAAI,EAAE;;IAG/B,uBAAuB,GAAA;AACrB,QAAA,IAAI,CAAC,YAAY,GAAG,IAAI;QAExB,UAAU,CAAC,MAAK;AACd,YAAA,IAAI,CAAC,YAAY,GAAG,KAAK;SAC1B,EAAE,IAAI,CAAC;AAER,QAAA,IAAI,CAAC,qBAAqB,CAAC,IAAI,EAAE;;IAGnC,gBAAgB,GAAA;AACd,QAAA,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,EAAE;AACjC,YAAA,IAAI,CAAC,sBAAsB,GAAG,IAAI;;AAEpC,QAAA,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;AAC5B,YAAA,IAAI,CAAC,iBAAiB,GAAG,IAAI;;;IAIjC,gBAAgB,GAAA;AACd,QAAA,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,EAAE;AACjC,YAAA,IAAI,CAAC,sBAAsB,GAAG,KAAK;;AAErC,QAAA,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;AAC5B,YAAA,IAAI,CAAC,iBAAiB,GAAG,KAAK;;;IAIlC,eAAe,GAAA;AACb,QAAA,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE;;AAG3B,IAAA,MAAM,eAAe,GAAA;AACnB,QAAA,IAAI;YACF,MAAM,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC;AAChD,YAAA,IAAI,CAAC,MAAM,GAAG,IAAI;YAElB,UAAU,CAAC,MAAK;AACd,gBAAA,IAAI,CAAC,MAAM,GAAG,KAAK;AACrB,aAAC,EAAE,IAAI,CAAC,CAAC;;QACT,OAAO,KAAK,EAAE;;;;IAKlB,gBAAgB,GAAA;AACd,QAAA,IAAI,CAAC,iBAAiB,GAAG,KAAK;;IAGhC,MAAM,GAAA;QACJ,QACEA,OAAA,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAK,KAAK,EAAE,CAAA,gBAAA,EAAmB,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,CAAE,CAAA,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC,gBAAgB,EAAE,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC,gBAAgB,EAAE,EAAA,EACnJ,IAAI,CAAC,IAAI,KAAK,aAAa,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,KAC3DA,OAAA,CAAAC,cAAA,EAAA,IAAA,EACED,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,eAAe,EAAA,EACxBA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,uBAAuB,IAAE,IAAI,CAAC,KAAK,CAAK,EACjDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,YAAY,EAAA,EACrBA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAE,CAAA,OAAA,EAAU,IAAI,CAAC,cAAc,GAAG,EAAE,GAAG,oBAAoB,CAAA,eAAA,CAAiB,EAAE,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,EAAE,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,EAChL,EAAA,IAAI,CAAC,MAAM,CACV,EACH,IAAI,CAAC,kBAAkB,IAAIA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,gCAAgC,EAAA,EAAE,IAAI,CAAC,cAAc,CAAK,CAC3F,EACL,IAAI,CAAC,WAAW,KACfA,uFAAwB,KAAK,EAAE,KAAK,EAAC,0BAA0B,EAAA,EAC7DA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,OAAO,EAAE,EAAA,IAAI,CAAC,MAAM,CAAK,CACtB,CACd,CACG,EACL,IAAI,CAAC,sBAAsB,KAC1BA,OAAW,CAAA,WAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,IAAI,EAAC,SAAS,EAAC,eAAe,EAAC,IAAI,EAAC,MAAM,EAAA,cAAA,EAAc,MAAM,EAAA,mBAAA,EAAmB,iBAAiB,EAAC,OAAO,EAAE,MAAM,IAAI,CAAC,eAAe,EAAE,GAAc,CACvK,EACA,IAAI,CAAC,MAAM,KACVA,uFAAwB,KAAK,EAAE,KAAK,EAAC,gBAAgB,EAAA,EACnDA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,IAAI,EAAC,OAAO,cAAY,CAChB,CACd,CACA,CACJ,EACA,IAAI,CAAC,IAAI,KAAK,UAAU,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,KACxDA,OAAA,CAAAC,cAAA,EAAA,IAAA,EACED,OAAA,CAAA,mBAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,YAAA,EAA+B,IAAI,CAAC,SAAS,eAAa,IAAI,CAAC,QAAQ,EAAsB,CAAA,EAC7FA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,mBAAmB,EAAA,EAC5BA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,uBAAuB,IAAE,IAAI,CAAC,KAAK,CAAK,EACjDA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,uBAAuB,EAAC,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,EAAE,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,EAAA,EAC3H,IAAI,CAAC,MAAM,CACV,EACH,IAAI,CAAC,WAAW,KACfA,uFAAwB,KAAK,EAAE,KAAK,EAAC,yBAAyB,EAAA,EAC5DA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,OAAO,EAAE,EAAA,IAAI,CAAC,MAAM,CAAK,CACtB,CACd,CACG,EACL,CAAC,IAAI,CAAC,YAAY,IACjBA,OAAA,CAAAC,cAAA,EAAA,IAAA,EACG,IAAI,CAAC,iBAAiB,KACrBD,OAAA,CAAAC,cAAA,EAAA,IAAA,EACG,IAAI,CAAC,cAAc,KAClBD,OACE,CAAA,WAAA,EAAA,EAAA,IAAI,EAAC,IAAI,EACT,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,MAAM,EAAA,cAAA,EACE,MAAM,EAAA,mBAAA,EACD,iBAAiB,EACnC,OAAO,EAAE,MAAM,IAAI,CAAC,mBAAmB,EAAE,GAC9B,CACd,EACA,IAAI,CAAC,kBAAkB,KACtBA,uBACE,IAAI,EAAC,IAAI,EACT,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,MAAM,kBACE,MAAM,EAAA,mBAAA,EACD,wBAAwB,EAC1C,OAAO,EAAE,MAAM,IAAI,CAAC,uBAAuB,EAAE,EAAA,CAClC,CACd,CACA,CACJ,CACA,KAEHA,sCAAwB,KAAK,EAAE,KAAK,EAAC,oBAAoB,EAAA,EACvDA,OAAA,CAAA,GAAA,EAAA,EAAG,IAAI,EAAC,OAAO,kBAAgB,CACpB,CACd,CACA,CACJ,EACA,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,KACtDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,iBAAiB,EAAA,EAC1BA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,uBAAuB,IAAE,IAAI,CAAC,KAAK,CAAK,EACjDA,OAAA,CAAA,UAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EACE,IAAI,EAAC,IAAI,EACT,IAAI,EAAE,IAAI,CAAC,SAAS,EACpB,IAAI,EAAE,IAAI,CAAC,SAAS,EACpB,KAAK,EAAE,IAAI,CAAC,UAAU,EAAA,mBAAA,EACH,IAAI,CAAC,gBAAgB,EAAA,oBAAA,EACpB,IAAI,CAAC,iBAAiB,EAAA,EAE1CA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,EAAI,IAAI,CAAC,UAAU,CAAK,CACf,CACP,CACP,EACA,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,SAAS,KAAK,UAAU,KACtDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,YAAY,EAAA,EACrBA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,uBAAuB,IAAE,IAAI,CAAC,KAAK,CAAK,EACjDA,OAAW,CAAA,WAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,IAAI,EAAC,SAAS,EAAC,YAAY,EAAC,IAAI,EAAC,SAAS,EAAA,EACxDA,OAAiB,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,EAAA,YAAA,CAAA,CACP,CACR,CACP,EACA,IAAI,CAAC,IAAI,KAAK,aAAa,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,KAC1DA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,kBAAkB,EAAA,EAC3BA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,uBAAuB,EAAA,EAChCA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,eAAe,EAAA,EACxBA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,uBAAuB,EAAA,EAAE,IAAI,CAAC,KAAK,CAAK,CAC7C,EACNA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,gBAAgB,EAAA,EACzBA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,oCAAoC,IAAE,IAAI,CAAC,MAAM,CAAK,EAC9D,IAAI,CAAC,MAAM,KACVA,uFAAwB,KAAK,EAAE,KAAK,EAAC,wBAAwB,EAAA,EAC3DA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,IAAI,EAAC,OAAO,EAAY,EAAA,SAAA,CAAA,CAChB,CACd,CACG,EACL,IAAI,CAAC,cAAc,KAClBA,wEACE,IAAI,EAAC,IAAI,EACT,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,MAAM,EAAA,cAAA,EACE,MAAM,EAAA,mBAAA,EACD,iBAAiB,EACnC,OAAO,EAAE,MAAM,IAAI,CAAC,eAAe,EAAE,EAAA,CAC1B,CACd,CACG,CACF,CACP,EACA,IAAI,CAAC,IAAI,KAAK,UAAU,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,KACvDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,aAAa,EAAA,EACtBA,OAAA,CAAA,mBAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,YAAA,EAA+B,IAAI,CAAC,SAAS,eAAa,IAAI,CAAC,QAAQ,EAAsB,CAAA,EAC7FA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,sBAAsB,EAAA,EAC/BA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,2BAA2B,IAAE,IAAI,CAAC,KAAK,CAAK,EACrDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,oBAAoB,EAAA,EAC7BA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,KAAK,EAAC,wBAAwB,EAAC,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,EAAE,YAAY,EAAE,OAAO,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,EAC5H,EAAA,IAAI,CAAC,MAAM,CACV,CACA,EACL,IAAI,CAAC,YAAY,KAChBA,uFAAwB,KAAK,EAAE,KAAK,EAAC,4BAA4B,EAAA,EAC/DA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAG,IAAI,EAAC,OAAO,EAAA,EAAA,aAAA,CAAgB,CACpB,CACd,EACA,IAAI,CAAC,iBAAiB,KACrBA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,kBAAkB,EAAA,EAC1B,IAAI,CAAC,cAAc,KAClBA,OACE,CAAA,WAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,IAAI,EACT,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,MAAM,EAAA,cAAA,EACE,MAAM,EAAA,mBAAA,EACD,iBAAiB,EACnC,OAAO,EAAE,MAAM,IAAI,CAAC,mBAAmB,EAAE,GAC9B,CACd,EACA,IAAI,CAAC,kBAAkB,KACtBA,OAAA,CAAA,WAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EACE,IAAI,EAAC,IAAI,EACT,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,MAAM,EACE,cAAA,EAAA,MAAM,EACD,mBAAA,EAAA,wBAAwB,EAC1C,OAAO,EAAE,MAAM,IAAI,CAAC,uBAAuB,EAAE,GAClC,CACd,CACG,CACP,CACG,CACF,CACP,EACA,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,KACrDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,aAAa,EAAA,EACtBA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,yBAAyB,EAAA,EAClCA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,eAAe,EAAA,EACxBA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,uBAAuB,EAAA,EAAE,IAAI,CAAC,KAAK,CAAK,CAC7C,EACNA,OAAA,CAAA,UAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAU,IAAI,EAAC,IAAI,EAAC,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,EAAC,KAAK,EAAC,KAAK,EAAE,IAAI,CAAC,UAAU,EAAA,EACzEA,OAAA,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,EAAI,IAAI,CAAC,UAAU,CAAK,CACf,CACP,CACF,CACP,EACA,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,KACrDA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,aAAa,EAAA,EACtBA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,yBAAyB,EAAA,EAClCA,OAAK,CAAA,KAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,eAAe,EAAA,EACxBA,OAAG,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,KAAK,EAAC,uBAAuB,EAAA,EAAE,IAAI,CAAC,KAAK,CAAK,CAC7C,EACNA,OAAW,CAAA,WAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,IAAI,EAAC,IAAI,EAAC,SAAS,EAAC,YAAY,EAAC,IAAI,EAAC,SAAS,EAAC,OAAO,EAAE,MAAM,IAAI,CAAC,eAAe,EAAE,EAAA,EAC9FA,OAAI,CAAA,GAAA,EAAA,EAAA,GAAA,EAAA,0CAAA,EAAA,EAAA,IAAI,CAAC,UAAU,CAAK,CACd,CACR,CACF,CACP,CACG;;;;;;;"}
1
+ {"version":3,"file":"gb-detail-cell.entry.cjs.js","sources":["src/components/gb-detail-cell/gb-detail-cell.css?tag=gb-detail-cell&encapsulation=shadow","src/components/gb-detail-cell/gb-detail-cell.tsx"],"sourcesContent":["@import './../../global/global.css';\r\n\r\n:host {\r\n min-width: 0;\r\n width: 100%;\r\n}\r\n\r\n.detail_cell_div {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n cursor: pointer;\r\n position: relative;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.detail_cell_div.border_bottom {\r\n border-bottom: 1px solid var(--color-border-subtler, #e3e8ef);\r\n}\r\n\r\n.detail_cell_div:hover {\r\n background: var(--color-background-gray-subtlest, #f6f8fa);\r\n}\r\n\r\n.detail_cell_div.standard {\r\n height: 5rem;\r\n padding: var(--spacing-none) var(--spacing-6);\r\n}\r\n\r\n.detail_cell_div.compact {\r\n padding: 0;\r\n}\r\n\r\n.info_text_div,\r\n.status_text_div,\r\n.document_text_div,\r\n.button_div {\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n display: flex;\r\n flex-direction: column;\r\n gap: var(--spacing-3);\r\n flex: 1;\r\n}\r\n\r\n.status_text_div,\r\n.button_div {\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.label {\r\n color: var(--color-text-subtle, #697586);\r\n display: block; /* Ensure block or inline-block */\r\n max-width: 100%; /* Set a fixed or max width */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n overflow: hidden; /* Hide overflowing text */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n flex: 1;\r\n min-width: 0; /* Ensure it can shrink properly */\r\n}\r\n\r\n.detail_div {\r\n display: flex;\r\n gap: var(--spacing-2);\r\n justify-content: flex-start;\r\n}\r\n\r\n.detail {\r\n color: var(--color-text, #4b5565);\r\n display: block; /* Ensure block or inline-block */\r\n}\r\n\r\n.detail.no_supporting_text {\r\n max-width: 100%; /* Set a fixed or max width */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n overflow: hidden; /* Hide overflowing text */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n flex: 1;\r\n min-width: 0; /* Ensure it can shrink properly */\r\n}\r\n\r\n.supporting_text {\r\n color: var(--color-text-disabled, #808c9e);\r\n}\r\n\r\n.information_text_tooltip {\r\n position: absolute;\r\n bottom: 90%;\r\n}\r\n\r\n.document_detail_tooltip {\r\n position: absolute;\r\n left: 4rem;\r\n bottom: 90%;\r\n}\r\n\r\n.copied_tooltip {\r\n position: absolute;\r\n right: 6rem;\r\n bottom: 3.5rem;\r\n}\r\n\r\n.downloaded_tooltip {\r\n position: absolute;\r\n right: 8rem;\r\n bottom: 3.5rem;\r\n}\r\n\r\n/* Compact Information Styles */\r\n.compact_info_div {\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n}\r\n\r\n.compact_info_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n /* justify-content: space-between; */\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n flex: 1 0 0;\r\n width: 100%;\r\n}\r\n\r\n.compact_detail {\r\n display: flex;\r\n flex-direction: column-reverse;\r\n flex: 1 0 0;\r\n align-items: flex-end;\r\n position: relative;\r\n flex-wrap: wrap;\r\n word-wrap: break-word; /* Ensures words break if needed */\r\n overflow-wrap: break-word; /* Helps in modern browsers */\r\n white-space: normal; /* Allows text wrapping */\r\n text-align: right; /* Keeps text aligned to the right */\r\n}\r\n\r\n.detail_compact_text {\r\n color: var(--color-text, #4b5565);\r\n word-break: break-word; /* Ensures long words break */\r\n overflow-wrap: anywhere; /* Allows breaking at any point */\r\n white-space: normal; /* Ensures wrapping is allowed */\r\n hyphens: auto;\r\n}\r\n\r\n.compact_copied_tooltip {\r\n position: absolute;\r\n right: 4rem;\r\n bottom: 2rem;\r\n}\r\n\r\n.compact_div {\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n}\r\n\r\n.compact_status_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n justify-content: space-between;\r\n align-items: center;\r\n flex: 1 0 0;\r\n}\r\n\r\n.compact_doc_div {\r\n display: flex;\r\n width: 100%;\r\n justify-content: space-between;\r\n padding: var(--spacing-3) var(--spacing-2);\r\n align-items: center;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.compact_doc_text_div {\r\n display: flex;\r\n min-height: 2.25rem;\r\n align-items: center;\r\n gap: 1.25rem;\r\n flex: 1 0 0;\r\n}\r\n\r\n.compact_doc_textt_div {\r\n display: flex;\r\n flex-direction: column; /* Allows stacking if necessary */\r\n align-items: flex-start; /* Aligns text to the left */\r\n gap: 0.5rem;\r\n flex: 1 1 auto;\r\n word-wrap: break-word; /* Ensures words break properly */\r\n overflow-wrap: break-word;\r\n white-space: normal; /* Allows wrapping */\r\n max-width: 100%; /* Prevents overflow */\r\n}\r\n\r\n.compact_doc_detail {\r\n display: flex;\r\n flex: 1 0 0;\r\n text-align: right;\r\n justify-content: flex-end;\r\n}\r\n\r\n.doc_label {\r\n color: var(--color-text-subtle, #697586);\r\n display: block; /* Ensure block or inline-block */\r\n white-space: nowrap; /* Prevent text from wrapping */\r\n text-overflow: ellipsis; /* Apply ellipsis */\r\n}\r\n\r\n.detaill {\r\n max-width: 100%; /* Ensures it doesn’t stretch too far */\r\n word-break: break-word; /* Breaks long words */\r\n white-space: normal; /* Allows text to wrap */\r\n overflow-wrap: break-word;\r\n display: flex;\r\n color: var(--color-text, #4b5565);\r\n}\r\n\r\n.button_container {\r\n display: flex;\r\n align-items: center;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.downloaded_toolip_div {\r\n position: relative;\r\n width: 100%;\r\n}\r\n\r\n.compact_downloaded_tooltip {\r\n position: absolute;\r\n bottom: 3rem;\r\n right: 10rem;\r\n}\r\n","import { Component, Prop, State, h, Fragment, Event, EventEmitter } from '@stencil/core';\r\nimport { BadgeIconTypes, BadgeTypes, DetailCellType, FileIconStyles, FileIconTypes, GeneralColors, GeneralStyles } from '../../models/reusableModels';\r\n\r\n@Component({\r\n tag: 'gb-detail-cell',\r\n styleUrl: 'gb-detail-cell.css',\r\n shadow: true,\r\n})\r\nexport class GbDetailCell {\r\n @Prop() state: 'default' | 'disabled';\r\n @Prop({ mutable: true }) cellStyle: GeneralStyles;\r\n @Prop() type: DetailCellType;\r\n @Prop() label: string = '';\r\n @Prop() detail: string = '';\r\n @Prop() badgeIcon: BadgeIconTypes;\r\n @Prop() badgeIconLeading: string = '';\r\n @Prop() badgeIconTrailing: string = '';\r\n @Prop() badgeColor: GeneralColors;\r\n @Prop() badgeLabel: string = '';\r\n @Prop() badgeType: BadgeTypes;\r\n @Prop() fileType: FileIconTypes;\r\n @Prop() fileStyle: FileIconStyles;\r\n @Prop() showActionButtons: boolean = false;\r\n @Prop() showViewButton: boolean = false;\r\n @Prop() showDownloadButton: boolean = false;\r\n @Prop({ mutable: true }) showCopyButton: boolean = false;\r\n @Prop() buttonText: string = '';\r\n @Prop() showSupportingText: boolean = false;\r\n @Prop() supportingText: string = '';\r\n @Prop() showBorderBottom: boolean = true;\r\n @State() showStandardCopyButton: boolean = false;\r\n @State() showTooltip: boolean = false;\r\n @State() copied: boolean = false;\r\n @State() isDownloaded: boolean = false;\r\n @State() width: number = window.innerWidth;\r\n @Event() viewButtonClicked: EventEmitter<void>;\r\n @Event() downloadButtonClicked: EventEmitter<void>;\r\n @Event() buttonClicked: EventEmitter<void>;\r\n\r\n componentWillLoad() {\r\n this.updateCellStyle(); // Set initial variant\r\n window.addEventListener('resize', this.handleResize);\r\n }\r\n\r\n private handleResize = () => {\r\n this.width = window.innerWidth;\r\n this.updateCellStyle();\r\n };\r\n\r\n private updateCellStyle() {\r\n this.cellStyle = this.width < 768 ? 'compact' : this.cellStyle;\r\n }\r\n\r\n onViewButtonClicked() {\r\n this.viewButtonClicked.emit();\r\n }\r\n\r\n onDownloadButtonClicked() {\r\n this.isDownloaded = true;\r\n\r\n setTimeout(() => {\r\n this.isDownloaded = false;\r\n }, 2000);\r\n\r\n this.downloadButtonClicked.emit();\r\n }\r\n\r\n onShowCopyButton() {\r\n if (this.cellStyle === 'standard') {\r\n this.showStandardCopyButton = true;\r\n }\r\n if (this.type === 'document') {\r\n this.showActionButtons = true;\r\n }\r\n }\r\n\r\n onHideCopyButton() {\r\n if (this.cellStyle === 'standard') {\r\n this.showStandardCopyButton = false;\r\n }\r\n if (this.type === 'document') {\r\n this.showActionButtons = false;\r\n }\r\n }\r\n\r\n onButtonClicked() {\r\n this.buttonClicked.emit();\r\n }\r\n\r\n async copyToClipboard() { \r\n try {\r\n await navigator.clipboard.writeText(this.detail);\r\n this.copied = true;\r\n\r\n setTimeout(() => {\r\n this.copied = false;\r\n }, 2000); // Reset copied state after 2 seconds\r\n } catch (error) {\r\n // console.error('Failed to copy:', error);\r\n }\r\n }\r\n\r\n componentDidLoad() {\r\n this.showActionButtons = false;\r\n }\r\n\r\n render() {\r\n return (\r\n <div class={`detail_cell_div ${this.type} ${this.cellStyle} ${this.showBorderBottom ? 'border_bottom' : ''}`} onMouseEnter={() => this.onShowCopyButton()} onMouseLeave={() => this.onHideCopyButton()}>\r\n {this.type === 'information' && this.cellStyle === 'standard' && (\r\n <>\r\n <div class=\"info_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <div class=\"detail_div\">\r\n <p class={`detail ${this.supportingText ? '' : 'no_supporting_text'} text-md-medium`} onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n {this.showSupportingText && <p class=\"supporting_text text-md-medium\">{this.supportingText}</p>}\r\n </div>\r\n {this.showTooltip && (\r\n <gb-tooltip show-arrow={false} class=\"information_text_tooltip\">\r\n <p slot=\"label\">{this.detail}</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {this.showStandardCopyButton && (\r\n <gb-button size=\"sm\" hierarchy=\"tertiary_gray\" icon=\"only\" icon-leading=\"true\" icon-leading-swap=\"assets/copy.svg\" onClick={() => this.copyToClipboard()}></gb-button>\r\n )}\r\n {this.copied && (\r\n <gb-tooltip show-arrow={false} class=\"copied_tooltip\">\r\n <p slot=\"label\">Copied!</p>\r\n </gb-tooltip>\r\n )}\r\n </>\r\n )}\r\n {this.type === 'document' && this.cellStyle === 'standard' && (\r\n <>\r\n <gb-file-type-icon file-style={this.fileStyle} file-type={this.fileType}></gb-file-type-icon>\r\n <div class=\"document_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <p class=\"detail text-md-medium\" onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n {this.showTooltip && (\r\n <gb-tooltip show-arrow={false} class=\"document_detail_tooltip\">\r\n <p slot=\"label\">{this.detail}</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {!this.isDownloaded ? (\r\n <>\r\n {this.showActionButtons && (\r\n <>\r\n {this.showViewButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/view.svg\"\r\n onClick={() => this.onViewButtonClicked()}\r\n ></gb-button>\r\n )}\r\n {this.showDownloadButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/download-03.svg\"\r\n onClick={() => this.onDownloadButtonClicked()}\r\n ></gb-button>\r\n )}\r\n </>\r\n )}\r\n </>\r\n ) : (\r\n <gb-tooltip show-arrow={false} class=\"downloaded_tooltip\">\r\n <p slot=\"label\">Downloaded!</p>\r\n </gb-tooltip>\r\n )}\r\n </>\r\n )}\r\n {this.type === 'status' && this.cellStyle === 'standard' && (\r\n <div class=\"status_text_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <gb-badge\r\n size=\"sm\"\r\n type={this.badgeType}\r\n icon={this.badgeIcon}\r\n color={this.badgeColor}\r\n icon-leading-swap={this.badgeIconLeading}\r\n icon-trailing-swap={this.badgeIconTrailing}\r\n >\r\n <p>{this.badgeLabel}</p>\r\n </gb-badge>\r\n </div>\r\n )}\r\n {this.type === 'button' && this.cellStyle === 'standard' && (\r\n <div class=\"button_div\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n <gb-button size=\"sm\" hierarchy=\"link_color\" icon=\"default\">\r\n <p>Button CTA</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.type === 'information' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_info_div\">\r\n <div class=\"compact_info_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <div class=\"compact_detail\">\r\n <p class=\"detail_compact_text text-md-medium\">{this.detail}</p>\r\n {this.copied && (\r\n <gb-tooltip show-arrow={false} class=\"compact_copied_tooltip\">\r\n <p slot=\"label\">Copied!</p>\r\n </gb-tooltip>\r\n )}\r\n </div>\r\n {this.showCopyButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/copy.svg\"\r\n onClick={() => this.copyToClipboard()}\r\n ></gb-button>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'document' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <gb-file-type-icon file-style={this.fileStyle} file-type={this.fileType}></gb-file-type-icon>\r\n <div class=\"compact_doc_text_div\">\r\n <p class=\"doc_label text-sm-regular\">{this.label}</p>\r\n <div class=\"compact_doc_detail\">\r\n <p class=\"detaill text-md-medium\" onMouseEnter={() => (this.showTooltip = true)} onMouseLeave={() => (this.showTooltip = false)}>\r\n {this.detail}\r\n </p>\r\n </div>\r\n {this.isDownloaded && (\r\n <gb-tooltip show-arrow={false} class=\"compact_downloaded_tooltip\">\r\n <p slot=\"label\">Downloaded!</p>\r\n </gb-tooltip>\r\n )}\r\n {this.showActionButtons && (\r\n <div class=\"button_container\">\r\n {this.showViewButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/view.svg\"\r\n onClick={() => this.onViewButtonClicked()}\r\n ></gb-button>\r\n )}\r\n {this.showDownloadButton && (\r\n <gb-button\r\n size=\"sm\"\r\n hierarchy=\"tertiary_gray\"\r\n icon=\"only\"\r\n icon-leading=\"true\"\r\n icon-leading-swap=\"assets/download-03.svg\"\r\n onClick={() => this.onDownloadButtonClicked()}\r\n ></gb-button>\r\n )}\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'status' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <div class=\"compact_status_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <gb-badge size=\"sm\" type={this.badgeType} icon=\"dot\" color={this.badgeColor}>\r\n <p>{this.badgeLabel}</p>\r\n </gb-badge>\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'button' && this.cellStyle === 'compact' && (\r\n <div class=\"compact_div\">\r\n <div class=\"compact_status_text_div\">\r\n <div class=\"compact_label\">\r\n <p class=\"label text-sm-regular\">{this.label}</p>\r\n </div>\r\n <gb-button size=\"sm\" hierarchy=\"link_color\" icon=\"default\" onClick={() => this.onButtonClicked()}>\r\n <p>{this.buttonText}</p>\r\n </gb-button>\r\n </div>\r\n </div>\r\n )}\r\n </div>\r\n );\r\n }\r\n}\r\n"],"names":["h","Fragment"],"mappings":"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"}
@@ -18,7 +18,7 @@ var patchBrowser = () => {
18
18
 
19
19
  patchBrowser().then(async (options) => {
20
20
  await index.globalScripts();
21
- return index.bootstrapLazy(JSON.parse("[[\"gb-accordion-card_80.cjs\",[[257,\"gb-table\",{\"loading\":[4],\"columns\":[16],\"data\":[16],\"gridCardConfig\":[16],\"tableHeaderConfig\":[16],\"paginationConfig\":[16],\"emptyStateConfig\":[16],\"filterConfig\":[16],\"showActionsColumn\":[4,\"show-actions-column\"],\"rowActions\":[16],\"dropdownOptions\":[16],\"stickyFirstColumn\":[4,\"sticky-first-column\"],\"stickyLastColumn\":[4,\"sticky-last-column\"],\"showCheckbox\":[4,\"show-checkbox\"],\"tableHeadColor\":[1,\"table-head-color\"],\"rowKey\":[1,\"row-key\"],\"filterMode\":[1,\"filter-mode\"],\"searchMode\":[1,\"search-mode\"],\"slicedData\":[32],\"internalCurrentPage\":[32],\"internalPageSize\":[32],\"openRowIndex\":[32],\"dropdownPlacement\":[32],\"sortKey\":[32],\"sortDirection\":[32],\"selectedRowIds\":[32],\"breakpoint\":[32],\"isMobile\":[32],\"isScrollable\":[32],\"showColumnsPanel\":[32],\"showFilterModal\":[32],\"internalColumns\":[32],\"modalPosition\":[32],\"showFilterModalInternal\":[32],\"isFilterModalVisible\":[32],\"isGridModalVisible\":[32],\"internalLoading\":[32],\"currentTableLayout\":[32],\"showGridCardModal\":[32],\"appliedFilterValues\":[32],\"searchTerm\":[32],\"showToast\":[32],\"filterMessage\":[32],\"toastVisible\":[32]},[[9,\"resize\",\"checkViewport\"]],{\"data\":[\"onDataChange\"],\"paginationConfig\":[\"handlePaginationConfigChange\"],\"loading\":[\"onLoadingChange\"],\"columns\":[\"validateMobilePositions\"]}],[257,\"gb-header\",{\"state\":[1],\"showIndicator\":[4,\"show-indicator\"],\"text\":[4],\"placeholder\":[4],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"showNotification\":[4,\"show-notification\"],\"showHelp\":[4,\"show-help\"],\"showLogo\":[4,\"show-logo\"],\"showSearch\":[4,\"show-search\"],\"inputPlaceholder\":[1,\"input-placeholder\"],\"inputIcon\":[1,\"input-icon\"],\"avatarDropdownType\":[1,\"avatar-dropdown-type\"],\"listGroupOne\":[16],\"listGroupTwo\":[16],\"showThemeTab\":[4,\"show-theme-tab\"],\"showProfile\":[4,\"show-profile\"],\"showRoles\":[4,\"show-roles\"],\"roles\":[16],\"showLogOut\":[4,\"show-log-out\"],\"showLogError\":[4,\"show-log-error\"],\"notificationState\":[1,\"notification-state\"],\"notifications\":[1040],\"currentTheme\":[1,\"current-theme\"],\"contactHelpDropdown\":[4,\"contact-help-dropdown\"],\"contactHelpDropdownItems\":[16],\"initials\":[32],\"width\":[32],\"activeDropdown\":[32],\"breakpoint\":[32],\"searchBarShown\":[32],\"showSearchButton\":[32]},[[4,\"click\",\"handleClickOutside\"]]],[257,\"gb-sidebar\",{\"state\":[1025],\"category\":[1],\"navItemStyle\":[1,\"nav-item-style\"],\"type\":[1],\"showSecondCategory\":[4,\"show-second-category\"],\"iconInstance\":[1,\"icon-instance\"],\"firstItemIcon\":[1,\"first-item-icon\"],\"secondItemIcon\":[1,\"second-item-icon\"],\"thirdItemIcon\":[1,\"third-item-icon\"],\"fourthItemIcon\":[1,\"fourth-item-icon\"],\"fifthItemIcon\":[1,\"fifth-item-icon\"],\"sixthItemIcon\":[1,\"sixth-item-icon\"],\"seventhItemIcon\":[1,\"seventh-item-icon\"],\"eighthItemIcon\":[1,\"eighth-item-icon\"],\"ninthItemIcon\":[1,\"ninth-item-icon\"],\"tenthItemIcon\":[1,\"tenth-item-icon\"],\"firstItemLabel\":[1,\"first-item-label\"],\"secondItemLabel\":[1,\"second-item-label\"],\"thirdItemLabel\":[1,\"third-item-label\"],\"fourthItemLabel\":[1,\"fourth-item-label\"],\"fifthItemLabel\":[1,\"fifth-item-label\"],\"sixthItemLabel\":[1,\"sixth-item-label\"],\"seventhItemLabel\":[1,\"seventh-item-label\"],\"eighthItemLabel\":[1,\"eighth-item-label\"],\"ninthItemLabel\":[1,\"ninth-item-label\"],\"tenthItemLabel\":[1,\"tenth-item-label\"],\"complexSidebarData\":[8,\"complex-sidebar-data\"],\"subMenuData\":[16],\"activeIndex\":[1026,\"active-index\"],\"activePrimaryItem\":[1025,\"active-primary-item\"],\"activeSecondaryIndex\":[1026,\"active-secondary-index\"],\"hasInfo\":[4,\"has-info\"],\"email\":[1],\"phoneNumber\":[1,\"phone-number\"],\"theme\":[1],\"simpleSidebarWidth\":[1,\"simple-sidebar-width\"],\"applicationName\":[32],\"isDarkTheme\":[32],\"expandedSubMenuIndex\":[32],\"activeSubMenuParentIndex\":[32],\"activeSubMenuChildIndex\":[32],\"leadingIconSvg\":[32],\"sideBarItemClicked\":[64]},null,{\"theme\":[\"changeTheme\"]}],[257,\"gb-horizontal-tabs\",{\"type\":[1],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"badge\":[4],\"activeIndex\":[1026,\"active-index\"],\"tabs\":[16],\"internalTabs\":[32],\"internalActiveIndex\":[32],\"width\":[32],\"showLeftButton\":[32],\"showRightButton\":[32]},[[9,\"resize\",\"updateScrollButtons\"]],{\"activeIndex\":[\"setActiveIndex\"],\"tabs\":[\"onTabsChanged\"]}],[257,\"gb-action-panel\",{\"type\":[1],\"showCloseButton\":[4,\"show-close-button\"],\"showSelectedRows\":[4,\"show-selected-rows\"],\"showCheckbox\":[4,\"show-checkbox\"],\"firstButton\":[4,\"first-button\"],\"firstButtonIconLeading\":[1,\"first-button-icon-leading\"],\"firstButtonIconTrailing\":[1,\"first-button-icon-trailing\"],\"secondButton\":[4,\"second-button\"],\"secondButtonIconLeading\":[1,\"second-button-icon-leading\"],\"secondButtonIconTrailing\":[1,\"second-button-icon-trailing\"],\"thirdButton\":[4,\"third-button\"],\"thirdButtonIconLeading\":[1,\"third-button-icon-leading\"],\"thirdButtonIconTrailing\":[1,\"third-button-icon-trailing\"],\"showSubmitButton\":[4,\"show-submit-button\"],\"submitButtonIconLeadingSwap\":[1,\"submit-button-icon-leading-swap\"],\"submitButtonIconTrailingSwap\":[1,\"submit-button-icon-trailing-swap\"],\"submitButtonState\":[1,\"submit-button-state\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"previousButtonState\":[1,\"previous-button-state\"],\"nextButtonState\":[1,\"next-button-state\"],\"showDraftButton\":[4,\"show-draft-button\"],\"submitButtonText\":[1,\"submit-button-text\"],\"showAmount\":[4,\"show-amount\"],\"showFee\":[4,\"show-fee\"],\"amount\":[1],\"fee\":[1],\"checked\":[32],\"internalNextButtonState\":[32]},null,{\"state\":[\"updateButtonState\"]}],[257,\"gb-avatar-group\",{\"size\":[1],\"moreUsers\":[4,\"more-users\"],\"addMoreButton\":[4,\"add-more-button\"],\"text\":[4],\"state\":[1],\"images\":[16]}],[257,\"gb-prompt-modal\",{\"showCheckBox\":[4,\"show-check-box\"],\"heading\":[1],\"supportingText\":[1,\"supporting-text\"],\"destructive\":[4],\"iconInstance\":[1,\"icon-instance\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"primaryButtonText\":[1,\"primary-button-text\"],\"primaryButtonState\":[1,\"primary-button-state\"],\"secondaryButtonText\":[1,\"secondary-button-text\"],\"checked\":[4],\"checkboxState\":[1,\"checkbox-state\"],\"leadingIconSvg\":[32]}],[257,\"gb-avatar-profile-photo\",{\"placeholder\":[4],\"text\":[4],\"size\":[1],\"verified\":[4],\"icon\":[1]}],[257,\"gb-stepper-horizontal-icons-centered\",{\"size\":[1],\"steps\":[16],\"type\":[1],\"breakpoint\":[32],\"width\":[32]},[[9,\"resize\",\"handleResize\"]]],[257,\"gb-accordion-card\",{\"heading\":[1],\"state\":[32]}],[260,\"gb-btn\",{\"size\":[1],\"hierarchy\":[1],\"icon\":[1],\"destructive\":[4],\"state\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailing\":[4,\"icon-trailing\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"tooltipText\":[1,\"tooltip-text\"],\"arrow\":[1],\"leadingIconSvg\":[32],\"trailingIconSvg\":[32],\"internalButtonState\":[32],\"internalIconLeadingState\":[32],\"internalIconTrailingState\":[32],\"tooltipShown\":[32]}],[257,\"gb-app-name-card\",{\"appName\":[1,\"app-name\"],\"appIcon\":[1,\"app-icon\"],\"category\":[1],\"hasInfo\":[4,\"has-info\"],\"email\":[1],\"phoneNumber\":[1,\"phone-number\"],\"leadingIconSvg\":[32]}],[256,\"gb-carousel-arrow\",{\"size\":[1],\"chevron\":[1]}],[257,\"gb-icon\",{\"iconName\":[1,\"icon-name\"],\"iconStyle\":[1,\"icon-style\"],\"iconType\":[1,\"icon-type\"],\"svgContent\":[32]}],[256,\"gb-pagination-dot-indicator\",{\"current\":[4],\"type\":[1],\"size\":[1]}],[257,\"gb-table-header\",{\"showFilter\":[4,\"show-filter\"],\"showColumnOptions\":[4,\"show-column-options\"],\"tableHeading\":[4,\"table-heading\"],\"tableHeadingLabel\":[1,\"table-heading-label\"],\"showSearch\":[4,\"show-search\"],\"showExport\":[4,\"show-export\"],\"showRefreshButton\":[4,\"show-refresh-button\"],\"showLayoutToggle\":[4,\"show-layout-toggle\"],\"filterState\":[1,\"filter-state\"],\"filterCount\":[2,\"filter-count\"],\"showEntireData\":[4,\"show-entire-data\"],\"exportButtonState\":[1,\"export-button-state\"],\"pdfState\":[1,\"pdf-state\"],\"csvState\":[1,\"csv-state\"],\"showDateFilter\":[4,\"show-date-filter\"],\"mode\":[1],\"format\":[1],\"datePickerDisabled\":[4,\"date-picker-disabled\"],\"datePickerPlaceholder\":[1,\"date-picker-placeholder\"],\"datePickerIconPosition\":[1,\"date-picker-icon-position\"],\"datePickerDropdownPosition\":[1,\"date-picker-dropdown-position\"],\"exportDropdownPosition\":[1,\"export-dropdown-position\"],\"enableTime\":[4,\"enable-time\"],\"noCalendar\":[4,\"no-calendar\"],\"twentyfourHr\":[4,\"twentyfour-hr\"],\"showMonths\":[2,\"show-months\"],\"inputPlaceholder\":[1,\"input-placeholder\"],\"items\":[32],\"width\":[32],\"buttonIcon\":[32],\"showExportDropdown\":[32],\"isDatePickerShown\":[32],\"isDatePickerFullWidth\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"click\",\"handleClickOutside\"]]],[257,\"gb-pagination\",{\"type\":[1],\"shape\":[1],\"breakpoint\":[1025],\"currentPage\":[1026,\"current-page\"],\"totalPages\":[1026,\"total-pages\"],\"entries\":[1040],\"entriesDropdownMenuPosition\":[1,\"entries-dropdown-menu-position\"],\"selectedPageSize\":[32],\"defaultSelected\":[32],\"pages\":[32],\"width\":[32],\"internalTotalPages\":[32]},null,{\"totalPages\":[\"onTotalPagesChange\"]}],[257,\"gb-avatar-dropdown\",{\"type\":[1],\"text\":[4],\"showProfile\":[4,\"show-profile\"],\"showThemeTab\":[4,\"show-theme-tab\"],\"showRoles\":[4,\"show-roles\"],\"roles\":[16],\"showLogOut\":[4,\"show-log-out\"],\"listGroupOne\":[16],\"listGroupTwo\":[16],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"currentTheme\":[1,\"current-theme\"]}],[257,\"gb-textarea-input-field\",{\"type\":[1],\"state\":[1025],\"destructive\":[4],\"placeholderText\":[1,\"placeholder-text\"],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"idOfInput\":[513,\"id-of-input\"],\"isReadOnly\":[516,\"is-read-only\"],\"value\":[1040],\"icon\":[1],\"results\":[1040],\"inputValue\":[1025,\"input-value\"],\"content\":[32],\"selectedStaff\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"show\":[32],\"staffInfo\":[32],\"selectedItems\":[32],\"unselectedItems\":[32]},[[4,\"click\",\"handleClickOutside\"]],{\"value\":[\"updateSelectedItems\"]}],[257,\"gb-empty-state\",{\"size\":[1],\"icon\":[1],\"color\":[1],\"theme\":[1],\"illustrationStyle\":[1,\"illustration-style\"],\"illustrationIcon\":[1,\"illustration-icon\"],\"background\":[4],\"backgroundType\":[1,\"background-type\"],\"primaryButtonText\":[1,\"primary-button-text\"],\"secondaryButtonText\":[1,\"secondary-button-text\"],\"primaryButtonState\":[1,\"primary-button-state\"],\"primaryButtonIconLeadingSwap\":[1,\"primary-button-icon-leading-swap\"],\"primaryButtonIconTrailingSwap\":[1,\"primary-button-icon-trailing-swap\"],\"secondaryButtonIconLeadingSwap\":[1,\"secondary-button-icon-leading-swap\"],\"secondaryButtonIconTrailingSwap\":[1,\"secondary-button-icon-trailing-swap\"],\"mainText\":[1,\"main-text\"],\"supportingText\":[1,\"supporting-text\"],\"fileStyle\":[1,\"file-style\"],\"fileType\":[1,\"file-type\"],\"featuredIconSwap\":[1,\"featured-icon-swap\"],\"buttonFullWidth\":[4,\"button-full-width\"],\"isDarkTheme\":[32],\"patternKey\":[32]},null,{\"theme\":[\"onThemeChanged\"]}],[257,\"gb-simple-side-bar-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"secondaryIcon\":[1,\"secondary-icon\"],\"category\":[1],\"showSecondaryIcon\":[4,\"show-secondary-icon\"],\"showBadge\":[4,\"show-badge\"],\"showTooltip\":[1028,\"show-tooltip\"],\"subMenu\":[4,\"sub-menu\"],\"leadingIconSvg\":[32],\"secondaryIconSvg\":[32],\"internalIcon\":[32]},null,{\"icon\":[\"updateSidebarIcon\"]}],[257,\"gb-filter-modal\",{\"filterConfig\":[16],\"formValues\":[32],\"renderKey\":[32]}],[257,\"gb-toast\",{\"color\":[1025],\"mainText\":[1,\"main-text\"],\"supportingText\":[1,\"supporting-text\"],\"size\":[1],\"breakpoint\":[1025],\"icon\":[1],\"xCloseButton\":[4,\"x-close-button\"],\"actions\":[4],\"showSupportingText\":[4,\"show-supporting-text\"],\"firstActionText\":[1,\"first-action-text\"],\"secondActionText\":[1,\"second-action-text\"],\"internalColor\":[32],\"internalMainText\":[32],\"internalSupportingText\":[32],\"width\":[32]},null,{\"mainText\":[\"onMainTextChange\"],\"supportingText\":[\"onSupportingTextChange\"],\"color\":[\"onColorChange\"]}],[257,\"gb-contact-help-dropdown\",{\"items\":[16]}],[257,\"gb-help-dropdown\",{\"showLogError\":[4,\"show-log-error\"]}],[257,\"gb-notification-pane\",{\"state\":[1],\"notifications\":[1040]}],[257,\"gb-sidebar-sub-dropdown\",{\"type\":[1],\"menuItem\":[16],\"menuIndex\":[2,\"menu-index\"],\"isExpanded\":[4,\"is-expanded\"],\"isParentActive\":[4,\"is-parent-active\"],\"activeChildIndex\":[2,\"active-child-index\"]}],[257,\"gb-avatar-add-button\",{\"size\":[1],\"showToolTip\":[1028,\"show-tool-tip\"],\"state\":[1],\"el\":[16]}],[257,\"gb-complex-primary-side-bar-item\",{\"category\":[1],\"itemStyle\":[1,\"item-style\"],\"state\":[1],\"icon\":[1],\"label\":[1],\"showTooltip\":[1028,\"show-tooltip\"],\"leadingIconSvg\":[32]}],[257,\"gb-complex-secondary-side-bar-item\",{\"state\":[1],\"type\":[1],\"category\":[1],\"label\":[1],\"icon\":[1],\"showTooltip\":[1028,\"show-tooltip\"],\"leadingIconSvg\":[32]}],[257,\"gb-toggle\",{\"size\":[1],\"state\":[1],\"text\":[4],\"supportingText\":[4,\"supporting-text\"],\"pressed\":[4],\"position\":[1]}],[257,\"gb-header-icon\",{\"state\":[1],\"showIndicator\":[4,\"show-indicator\"],\"icon\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-portal\",{\"anchorId\":[1,\"anchor-id\"],\"placement\":[1],\"open\":[4],\"anchorEl\":[16],\"boundaryEl\":[16],\"dropdownHeight\":[2,\"dropdown-height\"]},null,{\"open\":[\"onOpenChange\"]}],[257,\"gb-filter-button\",{\"state\":[1],\"iconOnly\":[4,\"icon-only\"]}],[257,\"gb-avatar-label-group\",{\"size\":[1],\"statusIcon\":[1,\"status-icon\"],\"state\":[1],\"placeholder\":[4],\"text\":[4],\"color\":[1],\"showBorder\":[4,\"show-border\"]}],[321,\"gb-button-group\",{\"items\":[16],\"icon\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"internalItems\":[32],\"selectedValue\":[32]},null,{\"items\":[\"onItemsUpdated\"]}],[257,\"gb-export-dropdown\",{\"state\":[1],\"showEntireData\":[4,\"show-entire-data\"],\"pdfState\":[1,\"pdf-state\"],\"csvState\":[1,\"csv-state\"],\"showFirstSubDropdown\":[32],\"showSecondSubDropdown\":[32]}],[257,\"gb-theme-tab\",{\"theme\":[1025],\"currentActiveTab\":[1025,\"current-active-tab\"]}],[257,\"gb-collapse-button\",{\"color\":[1],\"isCollapsed\":[1028,\"is-collapsed\"],\"action\":[1025],\"isHovered\":[1028,\"is-hovered\"],\"direction\":[1],\"icon\":[1],\"leadingIconSvg\":[32],\"collapseSidebar\":[64],\"expandSidebar\":[64]}],[257,\"gb-illustration\",{\"size\":[1],\"color\":[1],\"illustrationStyle\":[1,\"illustration-style\"],\"illustrationIcon\":[1,\"illustration-icon\"],\"theme\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-notification-content\",{\"icon\":[1],\"label\":[1],\"time\":[1],\"supportingText\":[1,\"supporting-text\"]}],[257,\"gb-pagination-button-group-base\",{\"icon\":[1],\"state\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}],[257,\"gb-pagination-number-base\",{\"shape\":[1],\"state\":[1]}],[257,\"gb-pattern\",{\"type\":[1],\"theme\":[1],\"isDarkTheme\":[32]},null,{\"theme\":[\"changeTheme\"]}],[257,\"gb-sidebar-base-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"selected\":[4],\"showDropdownArrow\":[4,\"show-dropdown-arrow\"],\"leadingIconSvg\":[32]}],[257,\"gb-sidebar-child-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"selected\":[4],\"leadingIconSvg\":[32]}],[257,\"gb-toast-button\",{\"state\":[1],\"color\":[1]}],[257,\"gb-toggle-base\",{\"size\":[1],\"state\":[1],\"pressed\":[1028]}],[257,\"gb-tab-button-base\",{\"current\":[4],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"badge\":[4],\"type\":[1],\"tabName\":[1,\"tab-name\"],\"alignment\":[1]}],[257,\"gb-date-picker\",{\"placeholder\":[1],\"value\":[16],\"format\":[1],\"mode\":[1],\"disabled\":[4],\"iconPosition\":[1,\"icon-position\"],\"dropdownAlignment\":[1,\"dropdown-alignment\"],\"label\":[1],\"formatLabel\":[4,\"format-label\"],\"allowInput\":[4,\"allow-input\"],\"enableTime\":[4,\"enable-time\"],\"noCalendar\":[4,\"no-calendar\"],\"twentyfourHr\":[4,\"twentyfour-hr\"],\"showMonths\":[2,\"show-months\"],\"fullWidth\":[4,\"full-width\"],\"default\":[4],\"disabledDates\":[16],\"destructive\":[4],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"isCalendarShown\":[32],\"breakpoint\":[32],\"width\":[32],\"displayValue\":[32],\"selectionSource\":[32]},null,{\"value\":[\"handleValueChange\"],\"displayValue\":[\"handleDisplayValueChange\"]}],[257,\"gb-button-group-base\",{\"current\":[4],\"icon\":[1],\"state\":[1],\"label\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}],[257,\"gb-step-base\",{\"status\":[1],\"size\":[1],\"type\":[1],\"state\":[1],\"connector\":[4],\"showContent\":[4,\"show-content\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"label\":[1],\"supportingText\":[1,\"supporting-text\"],\"breakpoint\":[1],\"internalState\":[32],\"internalStatus\":[32]},null,{\"status\":[\"onStatusChange\"],\"state\":[\"onStateChange\"]}],[257,\"gb-export-sub-dropdown\",{\"showEntireData\":[4,\"show-entire-data\"]}],[257,\"gb-icon-button-base\",{\"current\":[4],\"icon\":[1],\"label\":[1],\"leadingIconSvg\":[32],\"showTooltip\":[32]}],[257,\"gb-export-dropdown-item\",{\"icon\":[4],\"state\":[1],\"type\":[1]}],[257,\"gb-input-dropdown\",{\"type\":[1],\"state\":[1025],\"size\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"showHelpIcon\":[4,\"show-help-icon\"],\"showLeadingIcon\":[4,\"show-leading-icon\"],\"iconSwap\":[1,\"icon-swap\"],\"text\":[4],\"leadingIcon\":[1,\"leading-icon\"],\"icon\":[1],\"items\":[1040],\"value\":[1040],\"supportingText\":[4,\"supporting-text\"],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"menuPosition\":[1,\"menu-position\"],\"showSearchInput\":[4,\"show-search-input\"],\"inputValue\":[1,\"input-value\"],\"destructive\":[1028],\"errorText\":[1,\"error-text\"],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"leadingIconSvg\":[32],\"dropdownOpen\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"searchItem\":[32],\"searchResults\":[32],\"internalItems\":[32],\"showCloseButton\":[32],\"internalLoading\":[32],\"computedMenuPosition\":[32],\"clearSelection\":[64],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"items\":[\"updateResultsAndShowInDropdown\",\"syncSelectedItems\"],\"loading\":[\"onLoadingChanged\"],\"destructive\":[\"watchDestructive\"],\"value\":[\"syncSelectedItems\"]}],[257,\"gb-date-picker-list-item\",{\"selected\":[4],\"label\":[1]}],[257,\"gb-export-sub-dropdown-item\",{\"icon\":[1],\"state\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-step-icon-base\",{\"size\":[1],\"status\":[1],\"state\":[1],\"internalState\":[32],\"internalStatus\":[32]},null,{\"status\":[\"onStatusChange\"],\"state\":[\"onStateChange\"]}],[257,\"gb-dropdown-items-with-shortcut\",{\"icon\":[4],\"iconSrc\":[1,\"icon-src\"],\"checkbox\":[4],\"shortcut\":[4],\"shortcutIcon\":[1,\"shortcut-icon\"],\"label\":[1],\"state\":[1],\"destructive\":[4],\"leadingIconSvg\":[32]}],[257,\"gb-featured-icon\",{\"size\":[1],\"destructive\":[4],\"icon\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-file-type-icon\",{\"fileStyle\":[1,\"file-style\"],\"fileType\":[1,\"file-type\"]}],[321,\"gb-input-field\",{\"size\":[1],\"type\":[1],\"inputType\":[1,\"input-type\"],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"destructive\":[1028],\"state\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"showPlaceholder\":[4,\"show-placeholder\"],\"placeholder\":[1],\"showHelpIcon\":[4,\"show-help-icon\"],\"showValidation\":[4,\"show-validation\"],\"showCountryIcon\":[4,\"show-country-icon\"],\"iconSwap\":[1025,\"icon-swap\"],\"enableCancelButtonFunction\":[4,\"enable-cancel-button-function\"],\"options\":[1040],\"idOfInput\":[513,\"id-of-input\"],\"isReadOnly\":[516,\"is-read-only\"],\"results\":[1040],\"menuPosition\":[1,\"menu-position\"],\"icon\":[1],\"value\":[1032],\"required\":[516],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"formatNumber\":[4,\"format-number\"],\"inputOnlyDisabled\":[4,\"input-only-disabled\"],\"searchMode\":[1,\"search-mode\"],\"focused\":[4],\"showCloseButton\":[32],\"inputValue\":[32],\"tags\":[32],\"leadingIconSvg\":[32],\"isPasswordVisible\":[32],\"showDropdown\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"dropdownOpen\":[32],\"show\":[32],\"showSpinner\":[32],\"internalLoading\":[32],\"filteredResults\":[32],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"iconSwap\":[\"iconSwapChanged\"],\"results\":[\"resultsChanged\"],\"options\":[\"optionsChanged\"],\"loading\":[\"onLoadingChanged\"],\"value\":[\"updateSelectedItems\"]}],[257,\"gb-password-button\",{\"state\":[1],\"isPasswordVisible\":[32]}],[257,\"gb-help-tooltip\",{\"showArrow\":[4,\"show-arrow\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"showHelpTooltip\":[32]}],[257,\"gb-tag\",{\"size\":[1],\"icon\":[1],\"action\":[1],\"flagSwap\":[1,\"flag-swap\"],\"checkbox\":[4],\"onTagClose\":[64]}],[257,\"gb-input-dropdown-menu-item\",{\"type\":[1],\"supportingText\":[4,\"supporting-text\"],\"selected\":[1028],\"state\":[1],\"color\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"ellipsed\":[4],\"leadingIconSvg\":[32]}],[257,\"gb-button-close\",{\"size\":[1],\"color\":[1]}],[257,\"gb-tag-checkbox\",{\"checked\":[4],\"size\":[1],\"disabled\":[4]}],[257,\"gb-tag-close\",{\"size\":[1]}],[257,\"gb-tag-count\",{\"size\":[1]}],[257,\"gb-badge\",{\"size\":[1],\"icon\":[1],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"flagSwap\":[1,\"flag-swap\"],\"color\":[1],\"type\":[1],\"closeButton\":[4,\"close-button\"],\"leadingIconContent\":[32],\"trailingIconContent\":[32]}],[257,\"gb-badge-close\",{\"color\":[1],\"type\":[1]}],[257,\"gb-checkbox\",{\"checked\":[4],\"indeterminate\":[4],\"size\":[1],\"type\":[1],\"state\":[1],\"text\":[4],\"supportingText\":[4,\"supporting-text\"],\"isChecked\":[32]},null,{\"checked\":[\"onCheckedChanged\"]}],[257,\"gb-button\",{\"size\":[1],\"hierarchy\":[1],\"icon\":[1],\"destructive\":[4],\"state\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailing\":[4,\"icon-trailing\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"tooltipText\":[1,\"tooltip-text\"],\"arrow\":[1],\"event\":[4],\"rounded\":[4],\"iconLeadingStyle\":[1,\"icon-leading-style\"],\"iconLeadingType\":[1,\"icon-leading-type\"],\"iconTrailingStyle\":[1,\"icon-trailing-style\"],\"iconTrailingType\":[1,\"icon-trailing-type\"],\"iconConfig\":[16],\"leadingIconSvg\":[32],\"trailingIconSvg\":[32],\"internalButtonState\":[32],\"internalIconLeadingState\":[32],\"internalIconTrailingState\":[32],\"tooltipShown\":[32],\"getNativeButton\":[64]}],[257,\"gb-checkbox-base\",{\"state\":[1025],\"size\":[1],\"type\":[1],\"checked\":[1028],\"indeterminate\":[1028]}],[257,\"gb-avatar\",{\"size\":[1],\"placeholder\":[4],\"text\":[4],\"statusIcon\":[1,\"status-icon\"],\"state\":[1],\"icon\":[1],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"companyIcon\":[1,\"company-icon\"],\"weight\":[1],\"assignedColorClass\":[32]}],[257,\"gb-avatar-contrast-inner-border\",{\"weight\":[1],\"size\":[1],\"showBorder\":[4,\"show-border\"]}],[257,\"gb-status-indicator\",{\"statusIcon\":[1,\"status-icon\"],\"size\":[1],\"state\":[1],\"indicatorStateClass\":[1,\"indicator-state-class\"],\"companyIcon\":[1,\"company-icon\"]}],[257,\"gb-tooltip\",{\"showArrow\":[4,\"show-arrow\"],\"arrow\":[1],\"showSupportingText\":[4,\"show-supporting-text\"],\"noWrap\":[4,\"no-wrap\"]}]]],[\"gb-rich-text.cjs\",[[256,\"gb-rich-text\",{\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"value\":[8],\"disabled\":[4],\"destructive\":[4],\"errorText\":[1,\"error-text\"],\"isFocused\":[32],\"isBold\":[32],\"isItalic\":[32],\"isH1\":[32],\"isH2\":[32],\"isUnderline\":[32],\"isQuote\":[32],\"isLink\":[32],\"isBulletList\":[32],\"isOrderedList\":[32],\"attachments\":[32],\"getRichTextHTML\":[64],\"clearContent\":[64]},null,{\"value\":[\"handleValueChange\"]}]]],[\"gb-approval-modal.cjs\",[[257,\"gb-approval-modal\",{\"showDecision\":[4,\"show-decision\"],\"badgeColor\":[1,\"badge-color\"],\"badgeType\":[1,\"badge-type\"],\"badgeIcon\":[1,\"badge-icon\"],\"badgeLabel\":[1,\"badge-label\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"headerText\":[1,\"header-text\"],\"textareaLabel\":[1,\"textarea-label\"]}]]],[\"gb-input-dropdown-test.cjs\",[[257,\"gb-input-dropdown-test\",{\"type\":[1],\"state\":[1025],\"size\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"showHelpIcon\":[4,\"show-help-icon\"],\"showLeadingIcon\":[4,\"show-leading-icon\"],\"iconSwap\":[1,\"icon-swap\"],\"text\":[4],\"leadingIcon\":[1,\"leading-icon\"],\"icon\":[1],\"items\":[1040],\"value\":[1040],\"supportingText\":[4,\"supporting-text\"],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"menuPosition\":[1,\"menu-position\"],\"showSearchInput\":[4,\"show-search-input\"],\"inputValue\":[1,\"input-value\"],\"destructive\":[1028],\"errorText\":[1,\"error-text\"],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"leadingIconSvg\":[32],\"dropdownOpen\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"searchItem\":[32],\"searchResults\":[32],\"internalItems\":[32],\"showCloseButton\":[32],\"internalLoading\":[32],\"computedMenuPosition\":[32],\"clearSelection\":[64],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"items\":[\"updateResultsAndShowInDropdown\",\"syncSelectedItems\"],\"loading\":[\"onLoadingChanged\"],\"destructive\":[\"watchDestructive\"],\"value\":[\"syncSelectedItems\"]}]]],[\"test-input-tag.cjs\",[[256,\"test-input-tag\",{\"idOfInput\":[513,\"id-of-input\"],\"type\":[513],\"labelText\":[513,\"label-text\"],\"isReadOnly\":[516,\"is-read-only\"],\"placeholderText\":[513,\"placeholder-text\"],\"show\":[32],\"showSpinner\":[32],\"staffInfo\":[32],\"selectedStaff\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"inputValue\":[32],\"dropdownOpen\":[32]}]]],[\"gb-checkbox-group.cjs\",[[257,\"gb-checkbox-group\",{\"size\":[1],\"breakpoint\":[1],\"icon\":[1],\"selected\":[4],\"type\":[1]}]]],[\"gb-detail-cell.cjs\",[[257,\"gb-detail-cell\",{\"state\":[1],\"cellStyle\":[1025,\"cell-style\"],\"type\":[1],\"label\":[1],\"detail\":[1],\"badgeIcon\":[1,\"badge-icon\"],\"badgeIconLeading\":[1,\"badge-icon-leading\"],\"badgeIconTrailing\":[1,\"badge-icon-trailing\"],\"badgeColor\":[1,\"badge-color\"],\"badgeLabel\":[1,\"badge-label\"],\"badgeType\":[1,\"badge-type\"],\"fileType\":[1,\"file-type\"],\"fileStyle\":[1,\"file-style\"],\"showActionButtons\":[4,\"show-action-buttons\"],\"showViewButton\":[4,\"show-view-button\"],\"showDownloadButton\":[4,\"show-download-button\"],\"showCopyButton\":[1028,\"show-copy-button\"],\"buttonText\":[1,\"button-text\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"supportingText\":[1,\"supporting-text\"],\"showStandardCopyButton\":[32],\"showTooltip\":[32],\"copied\":[32],\"isDownloaded\":[32],\"width\":[32]}]]],[\"gb-modal.cjs\",[[260,\"gb-modal\",{\"width\":[1],\"footer\":[4],\"closeButtonPosition\":[1,\"close-button-position\"],\"heading\":[1],\"actionType\":[1,\"action-type\"],\"fullWidth\":[4,\"full-width\"],\"destructive\":[4],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"firstButtonIconLeadingSwap\":[1,\"first-button-icon-leading-swap\"],\"secondButtonIconLeadingSwap\":[1,\"second-button-icon-leading-swap\"],\"thirdButtonIconLeadingSwap\":[1,\"third-button-icon-leading-swap\"],\"firstButtonIconTrailingSwap\":[1,\"first-button-icon-trailing-swap\"],\"secondButtonIconTrailingSwap\":[1,\"second-button-icon-trailing-swap\"],\"thirdButtonIconTrailingSwap\":[1,\"third-button-icon-trailing-swap\"],\"showSecondaryActions\":[4,\"show-secondary-actions\"],\"showFirstIconButton\":[4,\"show-first-icon-button\"],\"showSecondIconButton\":[4,\"show-second-icon-button\"],\"firstIconButtonSwap\":[1,\"first-icon-button-swap\"],\"secondIconButtonSwap\":[1,\"second-icon-button-swap\"],\"showCheckBox\":[4,\"show-check-box\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"hasFooterSlot\":[32]}]]],[\"gb-nav-bar-sidemenu.cjs\",[[257,\"gb-nav-bar-sidemenu\",{\"applicationName\":[1,\"application-name\"],\"applicationIcon\":[1,\"application-icon\"],\"activeIndex\":[2,\"active-index\"],\"tabs\":[16],\"leadingIconSvg\":[32]}]]],[\"gb-file-upload.cjs\",[[257,\"gb-file-upload\",{\"icon\":[1],\"type\":[1],\"heightSize\":[1,\"height-size\"],\"state\":[1],\"destructive\":[4],\"showLabel\":[4,\"show-label\"],\"progress\":[2],\"fileType\":[16],\"files\":[32],\"fileStates\":[32],\"isDragging\":[32]}]]],[\"gb-metric-card.cjs\",[[257,\"gb-metric-card\",{\"size\":[1],\"radius\":[1],\"label\":[1],\"metric\":[1],\"showBadge\":[4,\"show-badge\"],\"featuredIconStyle\":[1,\"featured-icon-style\"],\"featuredIconColor\":[1,\"featured-icon-color\"],\"icon\":[1],\"percentage\":[1]}]]],[\"gb-nav-bar.cjs\",[[257,\"gb-nav-bar\",{\"category\":[1],\"items\":[1040],\"showBorder\":[4,\"show-border\"],\"activeIndex\":[1026,\"active-index\"],\"internalItems\":[32],\"visibleItems\":[32],\"overflowItems\":[32],\"measured\":[32],\"dropdownOpen\":[32],\"dropdownItemClicked\":[32]},null,{\"items\":[\"onItemsChanged\"]}]]],[\"gb-comment.cjs\",[[257,\"gb-comment\",{\"heading\":[1],\"state\":[1025],\"noCommentText\":[1,\"no-comment-text\"],\"noCommentTextSub\":[1,\"no-comment-text-sub\"],\"comments\":[16],\"theme\":[1],\"isDarkTheme\":[32]}]]],[\"gb-stepper-horizontal-line-with-text.cjs\",[[257,\"gb-stepper-horizontal-line-with-text\",{\"size\":[1],\"breakpoint\":[1],\"showContent\":[4,\"show-content\"],\"showSupportingText\":[1028,\"show-supporting-text\"],\"steps\":[16],\"internalSteps\":[32],\"width\":[32],\"internalState\":[32],\"internalStatus\":[32]},null,{\"steps\":[\"onStepsChanged\"]}]]],[\"gb-stepper-vertical-icons-with-text.cjs\",[[257,\"gb-stepper-vertical-icons-with-text\",{\"size\":[1],\"connector\":[4],\"type\":[1],\"steps\":[16],\"internalSteps\":[32],\"internalState\":[32],\"internalStatus\":[32]},null,{\"steps\":[\"onStepsChanged\"]}]]],[\"gb-slider.cjs\",[[257,\"gb-slider\",{\"min\":[2],\"max\":[2],\"thumbType\":[1,\"thumb-type\"],\"leftControl\":[2,\"left-control\"],\"rightControl\":[2,\"right-control\"],\"label\":[1],\"unit\":[1],\"unitPosition\":[1,\"unit-position\"],\"heading\":[1],\"showHeading\":[4,\"show-heading\"],\"formatHeading\":[4,\"format-heading\"],\"leftValue\":[32],\"rightValue\":[32]}]]],[\"gb-breadcrumbs.cjs\",[[257,\"gb-breadcrumbs\",{\"type\":[1],\"divider\":[1],\"breadcrumbs\":[16],\"icon\":[1],\"visibleBreadcrumbs\":[32]}]]],[\"gb-quick-action-card.cjs\",[[257,\"gb-quick-action-card\",{\"color\":[1],\"icon\":[1],\"label\":[1]}]]],[\"gb-quick-action-icon.cjs\",[[257,\"gb-quick-action-icon\",{\"icon\":[1],\"label\":[1],\"isHovered\":[32]}]]],[\"gb-stepper-horizontal-minimal-icons.cjs\",[[257,\"gb-stepper-horizontal-minimal-icons\",{\"size\":[1],\"text\":[4],\"stepLabel\":[1,\"step-label\"],\"steps\":[16],\"position\":[1]}]]],[\"gb-token-field-compressed.cjs\",[[257,\"gb-token-field-compressed\",{\"size\":[1],\"state\":[1],\"digits\":[2],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"values\":[32],\"focusedIndex\":[32]}]]],[\"gb-wysiwyg-editor-icon.cjs\",[[257,\"gb-wysiwyg-editor-icon\",{\"active\":[4],\"type\":[1],\"state\":[1],\"_active\":[32]},null,{\"active\":[\"onActiveChange\"]}]]],[\"gb-wysiwyg-tooltip.cjs\",[[257,\"gb-wysiwyg-tooltip\",{\"arrow\":[1],\"breakpoint\":[1]}]]],[\"gb-category-card.cjs\",[[257,\"gb-category-card\",{\"label\":[1],\"supportingText\":[1,\"supporting-text\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"cardImage\":[1,\"card-image\"],\"isHovered\":[32]}]]],[\"gb-logo.cjs\",[[257,\"gb-logo\",{\"text\":[4]}]]],[\"gb-pagination-dot-group.cjs\",[[257,\"gb-pagination-dot-group\",{\"size\":[1],\"type\":[1],\"color\":[1],\"framed\":[4]}]]],[\"gb-progress-circle.cjs\",[[257,\"gb-progress-circle\",{\"size\":[1],\"shape\":[1],\"label\":[4],\"progress\":[2]},null,{\"progress\":[\"handleProgressChange\"]}]]],[\"gb-scrollbar.cjs\",[[257,\"gb-scrollbar\",{\"length\":[1]}]]],[\"gb-stepper-horizontal-icons-connected.cjs\",[[257,\"gb-stepper-horizontal-icons-connected\",{\"size\":[1],\"steps\":[16]}]]],[\"gb-token-field-compact.cjs\",[[257,\"gb-token-field-compact\",{\"size\":[1],\"digits\":[2],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showSupportingText\":[4,\"show-supporting-text\"],\"supportingText\":[1,\"supporting-text\"],\"inputValue\":[32]}]]],[\"gb-wysiwyg-toolbar.cjs\",[[257,\"gb-wysiwyg-toolbar\",{\"fontSelector\":[4,\"font-selector\"],\"isBold\":[4,\"is-bold\"],\"isItalic\":[4,\"is-italic\"],\"isUnderline\":[4,\"is-underline\"],\"isH1\":[4,\"is-h-1\"],\"isH2\":[4,\"is-h-2\"],\"isQuote\":[4,\"is-quote\"],\"isLink\":[4,\"is-link\"],\"isBulletList\":[4,\"is-bullet-list\"],\"isOrderedList\":[4,\"is-ordered-list\"],\"isAttachment\":[4,\"is-attachment\"],\"isPhoto\":[4,\"is-photo\"],\"_isBold\":[32],\"_isItalic\":[32],\"_isUnderline\":[32],\"_isH1\":[32],\"_isH2\":[32],\"_isQuote\":[32],\"_isLink\":[32],\"_isBulletList\":[32],\"_isOrderedList\":[32]},null,{\"isBold\":[\"onBoldChange\"],\"isItalic\":[\"onItalicChange\"],\"isUnderline\":[\"onUnderlineChange\"],\"isH1\":[\"onH1Change\"],\"isH2\":[\"onH2Change\"],\"isQuote\":[\"onQuoteChange\"],\"isLink\":[\"onLinkChange\"],\"isBulletList\":[\"onBulletListChange\"],\"isOrderedList\":[\"onOrderedListChange\"]}]]],[\"gb-checkbox-group-item.cjs\",[[257,\"gb-checkbox-group-item\",{\"size\":[1],\"type\":[1],\"state\":[1],\"breakpoint\":[1],\"showCost\":[4,\"show-cost\"],\"selected\":[1028],\"showButton\":[4,\"show-button\"],\"buttonText\":[1,\"button-text\"],\"icon\":[1],\"checkboxType\":[1,\"checkbox-type\"],\"leadingIconSvg\":[32]}]]],[\"gb-vertical-tabs.cjs\",[[257,\"gb-vertical-tabs\",{\"size\":[1],\"type\":[1],\"activeIndex\":[1026,\"active-index\"],\"tabs\":[16],\"internalTabs\":[32]},null,{\"tabs\":[\"onTabsChanged\"]}]]],[\"gb-file-upload-item-base.cjs\",[[257,\"gb-file-upload-item-base\",{\"icon\":[1],\"label\":[1],\"showLabel\":[4,\"show-label\"],\"formatLabel\":[4,\"format-label\"],\"state\":[1],\"heightSize\":[1,\"height-size\"],\"fileType\":[1,\"file-type\"],\"progress\":[2],\"fileSize\":[2,\"file-size\"],\"fileName\":[1,\"file-name\"],\"allowedType\":[1,\"allowed-type\"],\"showFileSize\":[4,\"show-file-size\"],\"required\":[4],\"errorSupportingText\":[1,\"error-supporting-text\"],\"internalState\":[32],\"internalProgress\":[32]},null,{\"state\":[\"onStateChange\"],\"progress\":[\"onProgressChange\"],\"fileName\":[\"handleFileNameChange\"]}]]],[\"gb-nav-bar-item.cjs\",[[257,\"gb-nav-bar-item\",{\"state\":[1],\"iconOnly\":[4,\"icon-only\"],\"category\":[1],\"label\":[1],\"icon\":[1],\"leadingIconSvg\":[32],\"showTooltip\":[32]}]]],[\"gb-slider-control-handle.cjs\",[[257,\"gb-slider-control-handle\",{\"value\":[1],\"type\":[1],\"isHovered\":[32],\"isFocused\":[32]}]]],[\"gb-breadcrumb-button-base.cjs\",[[257,\"gb-breadcrumb-button-base\",{\"current\":[4],\"type\":[1],\"icon\":[4],\"label\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}]]],[\"gb-comment-item.cjs\",[[257,\"gb-comment-item\",{\"name\":[1],\"duty\":[1],\"comment\":[1],\"timeStamp\":[1,\"time-stamp\"],\"connector\":[4]}]]],[\"gb-mega-input-field-base.cjs\",[[257,\"gb-mega-input-field-base\",{\"size\":[1],\"state\":[1],\"value\":[1],\"inputValue\":[32],\"focusInput\":[64]},null,{\"value\":[\"onValueChanged\"]}]]],[\"gb-metric-featured-icon.cjs\",[[257,\"gb-metric-featured-icon\",{\"size\":[1],\"color\":[1],\"featuredIconStyle\":[1,\"featured-icon-style\"],\"icon\":[1],\"leadingIconSvg\":[32]}]]],[\"gb-progress-bar.cjs\",[[257,\"gb-progress-bar\",{\"progress\":[2],\"showLabel\":[4,\"show-label\"],\"labelPosition\":[1,\"label-position\"]}]]],[\"gb-card-icon.cjs\",[[257,\"gb-card-icon\",{\"size\":[1],\"color\":[1],\"icon\":[1],\"leadingIconSvg\":[32]}]]],[\"gb-modal-action_2.cjs\",[[257,\"gb-modal-action\",{\"actionType\":[1,\"action-type\"],\"destructive\":[4],\"fullWidth\":[4,\"full-width\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"firstButtonIconLeadingSwap\":[1,\"first-button-icon-leading-swap\"],\"secondButtonIconLeadingSwap\":[1,\"second-button-icon-leading-swap\"],\"thirdButtonIconLeadingSwap\":[1,\"third-button-icon-leading-swap\"],\"firstButtonIconTrailingSwap\":[1,\"first-button-icon-trailing-swap\"],\"secondButtonIconTrailingSwap\":[1,\"second-button-icon-trailing-swap\"],\"thirdButtonIconTrailingSwap\":[1,\"third-button-icon-trailing-swap\"],\"showSecondaryActions\":[4,\"show-secondary-actions\"],\"showFirstIconButton\":[4,\"show-first-icon-button\"],\"showSecondIconButton\":[4,\"show-second-icon-button\"],\"firstIconButtonSwap\":[1,\"first-icon-button-swap\"],\"secondIconButtonSwap\":[1,\"second-icon-button-swap\"],\"showCheckBox\":[4,\"show-check-box\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"firstIconButtonTooltipShown\":[32],\"secondIconButtonTooltipShown\":[32]}],[257,\"gb-modal-header\",{\"text\":[1],\"closeButtonPosition\":[513,\"close-button-position\"]}]]]]"), options);
21
+ return index.bootstrapLazy(JSON.parse("[[\"gb-accordion-card_80.cjs\",[[257,\"gb-table\",{\"loading\":[4],\"columns\":[16],\"data\":[16],\"gridCardConfig\":[16],\"tableHeaderConfig\":[16],\"paginationConfig\":[16],\"emptyStateConfig\":[16],\"filterConfig\":[16],\"showActionsColumn\":[4,\"show-actions-column\"],\"rowActions\":[16],\"dropdownOptions\":[16],\"stickyFirstColumn\":[4,\"sticky-first-column\"],\"stickyLastColumn\":[4,\"sticky-last-column\"],\"showCheckbox\":[4,\"show-checkbox\"],\"tableHeadColor\":[1,\"table-head-color\"],\"rowKey\":[1,\"row-key\"],\"filterMode\":[1,\"filter-mode\"],\"searchMode\":[1,\"search-mode\"],\"slicedData\":[32],\"internalCurrentPage\":[32],\"internalPageSize\":[32],\"openRowIndex\":[32],\"dropdownPlacement\":[32],\"sortKey\":[32],\"sortDirection\":[32],\"selectedRowIds\":[32],\"breakpoint\":[32],\"isMobile\":[32],\"isScrollable\":[32],\"showColumnsPanel\":[32],\"showFilterModal\":[32],\"internalColumns\":[32],\"modalPosition\":[32],\"showFilterModalInternal\":[32],\"isFilterModalVisible\":[32],\"isGridModalVisible\":[32],\"internalLoading\":[32],\"currentTableLayout\":[32],\"showGridCardModal\":[32],\"appliedFilterValues\":[32],\"searchTerm\":[32],\"showToast\":[32],\"filterMessage\":[32],\"toastVisible\":[32]},[[9,\"resize\",\"checkViewport\"]],{\"data\":[\"onDataChange\"],\"paginationConfig\":[\"handlePaginationConfigChange\"],\"loading\":[\"onLoadingChange\"],\"columns\":[\"validateMobilePositions\"]}],[257,\"gb-header\",{\"state\":[1],\"showIndicator\":[4,\"show-indicator\"],\"text\":[4],\"placeholder\":[4],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"showNotification\":[4,\"show-notification\"],\"showHelp\":[4,\"show-help\"],\"showLogo\":[4,\"show-logo\"],\"showSearch\":[4,\"show-search\"],\"inputPlaceholder\":[1,\"input-placeholder\"],\"inputIcon\":[1,\"input-icon\"],\"avatarDropdownType\":[1,\"avatar-dropdown-type\"],\"listGroupOne\":[16],\"listGroupTwo\":[16],\"showThemeTab\":[4,\"show-theme-tab\"],\"showProfile\":[4,\"show-profile\"],\"showRoles\":[4,\"show-roles\"],\"roles\":[16],\"showLogOut\":[4,\"show-log-out\"],\"showLogError\":[4,\"show-log-error\"],\"notificationState\":[1,\"notification-state\"],\"notifications\":[1040],\"currentTheme\":[1,\"current-theme\"],\"contactHelpDropdown\":[4,\"contact-help-dropdown\"],\"contactHelpDropdownItems\":[16],\"initials\":[32],\"width\":[32],\"activeDropdown\":[32],\"breakpoint\":[32],\"searchBarShown\":[32],\"showSearchButton\":[32]},[[4,\"click\",\"handleClickOutside\"]]],[257,\"gb-sidebar\",{\"state\":[1025],\"category\":[1],\"navItemStyle\":[1,\"nav-item-style\"],\"type\":[1],\"showSecondCategory\":[4,\"show-second-category\"],\"iconInstance\":[1,\"icon-instance\"],\"firstItemIcon\":[1,\"first-item-icon\"],\"secondItemIcon\":[1,\"second-item-icon\"],\"thirdItemIcon\":[1,\"third-item-icon\"],\"fourthItemIcon\":[1,\"fourth-item-icon\"],\"fifthItemIcon\":[1,\"fifth-item-icon\"],\"sixthItemIcon\":[1,\"sixth-item-icon\"],\"seventhItemIcon\":[1,\"seventh-item-icon\"],\"eighthItemIcon\":[1,\"eighth-item-icon\"],\"ninthItemIcon\":[1,\"ninth-item-icon\"],\"tenthItemIcon\":[1,\"tenth-item-icon\"],\"firstItemLabel\":[1,\"first-item-label\"],\"secondItemLabel\":[1,\"second-item-label\"],\"thirdItemLabel\":[1,\"third-item-label\"],\"fourthItemLabel\":[1,\"fourth-item-label\"],\"fifthItemLabel\":[1,\"fifth-item-label\"],\"sixthItemLabel\":[1,\"sixth-item-label\"],\"seventhItemLabel\":[1,\"seventh-item-label\"],\"eighthItemLabel\":[1,\"eighth-item-label\"],\"ninthItemLabel\":[1,\"ninth-item-label\"],\"tenthItemLabel\":[1,\"tenth-item-label\"],\"complexSidebarData\":[8,\"complex-sidebar-data\"],\"subMenuData\":[16],\"activeIndex\":[1026,\"active-index\"],\"activePrimaryItem\":[1025,\"active-primary-item\"],\"activeSecondaryIndex\":[1026,\"active-secondary-index\"],\"hasInfo\":[4,\"has-info\"],\"email\":[1],\"phoneNumber\":[1,\"phone-number\"],\"theme\":[1],\"simpleSidebarWidth\":[1,\"simple-sidebar-width\"],\"applicationName\":[32],\"isDarkTheme\":[32],\"expandedSubMenuIndex\":[32],\"activeSubMenuParentIndex\":[32],\"activeSubMenuChildIndex\":[32],\"leadingIconSvg\":[32],\"sideBarItemClicked\":[64]},[[4,\"click\",\"handleCollapsedDropdownOutsideClick\"]],{\"theme\":[\"changeTheme\"]}],[257,\"gb-horizontal-tabs\",{\"type\":[1],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"badge\":[4],\"activeIndex\":[1026,\"active-index\"],\"tabs\":[16],\"internalTabs\":[32],\"internalActiveIndex\":[32],\"width\":[32],\"showLeftButton\":[32],\"showRightButton\":[32]},[[9,\"resize\",\"updateScrollButtons\"]],{\"activeIndex\":[\"setActiveIndex\"],\"tabs\":[\"onTabsChanged\"]}],[257,\"gb-action-panel\",{\"type\":[1],\"showCloseButton\":[4,\"show-close-button\"],\"showSelectedRows\":[4,\"show-selected-rows\"],\"showCheckbox\":[4,\"show-checkbox\"],\"firstButton\":[4,\"first-button\"],\"firstButtonIconLeading\":[1,\"first-button-icon-leading\"],\"firstButtonIconTrailing\":[1,\"first-button-icon-trailing\"],\"secondButton\":[4,\"second-button\"],\"secondButtonIconLeading\":[1,\"second-button-icon-leading\"],\"secondButtonIconTrailing\":[1,\"second-button-icon-trailing\"],\"thirdButton\":[4,\"third-button\"],\"thirdButtonIconLeading\":[1,\"third-button-icon-leading\"],\"thirdButtonIconTrailing\":[1,\"third-button-icon-trailing\"],\"showSubmitButton\":[4,\"show-submit-button\"],\"submitButtonIconLeadingSwap\":[1,\"submit-button-icon-leading-swap\"],\"submitButtonIconTrailingSwap\":[1,\"submit-button-icon-trailing-swap\"],\"submitButtonState\":[1,\"submit-button-state\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"previousButtonState\":[1,\"previous-button-state\"],\"nextButtonState\":[1,\"next-button-state\"],\"showDraftButton\":[4,\"show-draft-button\"],\"submitButtonText\":[1,\"submit-button-text\"],\"showAmount\":[4,\"show-amount\"],\"showFee\":[4,\"show-fee\"],\"amount\":[1],\"fee\":[1],\"checked\":[32],\"internalNextButtonState\":[32]},null,{\"state\":[\"updateButtonState\"]}],[257,\"gb-avatar-group\",{\"size\":[1],\"moreUsers\":[4,\"more-users\"],\"addMoreButton\":[4,\"add-more-button\"],\"text\":[4],\"state\":[1],\"images\":[16]}],[257,\"gb-prompt-modal\",{\"showCheckBox\":[4,\"show-check-box\"],\"heading\":[1],\"supportingText\":[1,\"supporting-text\"],\"destructive\":[4],\"iconInstance\":[1,\"icon-instance\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"primaryButtonText\":[1,\"primary-button-text\"],\"primaryButtonState\":[1,\"primary-button-state\"],\"secondaryButtonText\":[1,\"secondary-button-text\"],\"checked\":[4],\"checkboxState\":[1,\"checkbox-state\"],\"leadingIconSvg\":[32]}],[257,\"gb-avatar-profile-photo\",{\"placeholder\":[4],\"text\":[4],\"size\":[1],\"verified\":[4],\"icon\":[1]}],[257,\"gb-stepper-horizontal-icons-centered\",{\"size\":[1],\"steps\":[16],\"type\":[1],\"breakpoint\":[32],\"width\":[32]},[[9,\"resize\",\"handleResize\"]]],[257,\"gb-accordion-card\",{\"heading\":[1],\"state\":[1],\"internalState\":[32]},null,{\"state\":[\"onStateChange\"]}],[260,\"gb-btn\",{\"size\":[1],\"hierarchy\":[1],\"icon\":[1],\"destructive\":[4],\"state\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailing\":[4,\"icon-trailing\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"tooltipText\":[1,\"tooltip-text\"],\"arrow\":[1],\"leadingIconSvg\":[32],\"trailingIconSvg\":[32],\"internalButtonState\":[32],\"internalIconLeadingState\":[32],\"internalIconTrailingState\":[32],\"tooltipShown\":[32]}],[257,\"gb-app-name-card\",{\"appName\":[1,\"app-name\"],\"appIcon\":[1,\"app-icon\"],\"category\":[1],\"hasInfo\":[4,\"has-info\"],\"email\":[1],\"phoneNumber\":[1,\"phone-number\"],\"leadingIconSvg\":[32]}],[256,\"gb-carousel-arrow\",{\"size\":[1],\"chevron\":[1]}],[257,\"gb-icon\",{\"iconName\":[1,\"icon-name\"],\"iconStyle\":[1,\"icon-style\"],\"iconType\":[1,\"icon-type\"],\"svgContent\":[32]}],[256,\"gb-pagination-dot-indicator\",{\"current\":[4],\"type\":[1],\"size\":[1]}],[257,\"gb-table-header\",{\"showFilter\":[4,\"show-filter\"],\"showColumnOptions\":[4,\"show-column-options\"],\"tableHeading\":[4,\"table-heading\"],\"tableHeadingLabel\":[1,\"table-heading-label\"],\"showSearch\":[4,\"show-search\"],\"showExport\":[4,\"show-export\"],\"showRefreshButton\":[4,\"show-refresh-button\"],\"showLayoutToggle\":[4,\"show-layout-toggle\"],\"filterState\":[1,\"filter-state\"],\"filterCount\":[2,\"filter-count\"],\"showEntireData\":[4,\"show-entire-data\"],\"exportButtonState\":[1,\"export-button-state\"],\"pdfState\":[1,\"pdf-state\"],\"csvState\":[1,\"csv-state\"],\"showDateFilter\":[4,\"show-date-filter\"],\"mode\":[1],\"format\":[1],\"datePickerDisabled\":[4,\"date-picker-disabled\"],\"datePickerPlaceholder\":[1,\"date-picker-placeholder\"],\"datePickerIconPosition\":[1,\"date-picker-icon-position\"],\"datePickerDropdownPosition\":[1,\"date-picker-dropdown-position\"],\"exportDropdownPosition\":[1,\"export-dropdown-position\"],\"enableTime\":[4,\"enable-time\"],\"noCalendar\":[4,\"no-calendar\"],\"twentyfourHr\":[4,\"twentyfour-hr\"],\"showMonths\":[2,\"show-months\"],\"inputPlaceholder\":[1,\"input-placeholder\"],\"items\":[32],\"width\":[32],\"buttonIcon\":[32],\"showExportDropdown\":[32],\"isDatePickerShown\":[32],\"isDatePickerFullWidth\":[32]},[[9,\"resize\",\"handleResize\"],[4,\"click\",\"handleClickOutside\"]]],[257,\"gb-pagination\",{\"type\":[1],\"shape\":[1],\"breakpoint\":[1025],\"currentPage\":[1026,\"current-page\"],\"totalPages\":[1026,\"total-pages\"],\"entries\":[1040],\"entriesDropdownMenuPosition\":[1,\"entries-dropdown-menu-position\"],\"selectedPageSize\":[32],\"defaultSelected\":[32],\"pages\":[32],\"width\":[32],\"internalTotalPages\":[32]},null,{\"totalPages\":[\"onTotalPagesChange\"]}],[257,\"gb-avatar-dropdown\",{\"type\":[1],\"text\":[4],\"showProfile\":[4,\"show-profile\"],\"showThemeTab\":[4,\"show-theme-tab\"],\"showRoles\":[4,\"show-roles\"],\"roles\":[16],\"showLogOut\":[4,\"show-log-out\"],\"listGroupOne\":[16],\"listGroupTwo\":[16],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"currentTheme\":[1,\"current-theme\"]}],[257,\"gb-textarea-input-field\",{\"type\":[1],\"state\":[1025],\"destructive\":[4],\"placeholderText\":[1,\"placeholder-text\"],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"idOfInput\":[513,\"id-of-input\"],\"isReadOnly\":[516,\"is-read-only\"],\"value\":[1040],\"icon\":[1],\"results\":[1040],\"inputValue\":[1025,\"input-value\"],\"content\":[32],\"selectedStaff\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"show\":[32],\"staffInfo\":[32],\"selectedItems\":[32],\"unselectedItems\":[32]},[[4,\"click\",\"handleClickOutside\"]],{\"value\":[\"updateSelectedItems\"]}],[257,\"gb-empty-state\",{\"size\":[1],\"icon\":[1],\"color\":[1],\"theme\":[1],\"illustrationStyle\":[1,\"illustration-style\"],\"illustrationIcon\":[1,\"illustration-icon\"],\"background\":[4],\"backgroundType\":[1,\"background-type\"],\"primaryButtonText\":[1,\"primary-button-text\"],\"secondaryButtonText\":[1,\"secondary-button-text\"],\"primaryButtonState\":[1,\"primary-button-state\"],\"primaryButtonIconLeadingSwap\":[1,\"primary-button-icon-leading-swap\"],\"primaryButtonIconTrailingSwap\":[1,\"primary-button-icon-trailing-swap\"],\"secondaryButtonIconLeadingSwap\":[1,\"secondary-button-icon-leading-swap\"],\"secondaryButtonIconTrailingSwap\":[1,\"secondary-button-icon-trailing-swap\"],\"mainText\":[1,\"main-text\"],\"supportingText\":[1,\"supporting-text\"],\"fileStyle\":[1,\"file-style\"],\"fileType\":[1,\"file-type\"],\"featuredIconSwap\":[1,\"featured-icon-swap\"],\"buttonFullWidth\":[4,\"button-full-width\"],\"isDarkTheme\":[32],\"patternKey\":[32]},null,{\"theme\":[\"onThemeChanged\"]}],[257,\"gb-simple-side-bar-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"secondaryIcon\":[1,\"secondary-icon\"],\"category\":[1],\"showSecondaryIcon\":[4,\"show-secondary-icon\"],\"showBadge\":[4,\"show-badge\"],\"showTooltip\":[1028,\"show-tooltip\"],\"subMenu\":[4,\"sub-menu\"],\"leadingIconSvg\":[32],\"secondaryIconSvg\":[32],\"internalIcon\":[32]},null,{\"icon\":[\"updateSidebarIcon\"]}],[257,\"gb-filter-modal\",{\"filterConfig\":[16],\"formValues\":[32],\"renderKey\":[32]}],[257,\"gb-toast\",{\"color\":[1025],\"mainText\":[1,\"main-text\"],\"supportingText\":[1,\"supporting-text\"],\"size\":[1],\"breakpoint\":[1025],\"icon\":[1],\"xCloseButton\":[4,\"x-close-button\"],\"actions\":[4],\"showSupportingText\":[4,\"show-supporting-text\"],\"firstActionText\":[1,\"first-action-text\"],\"secondActionText\":[1,\"second-action-text\"],\"internalColor\":[32],\"internalMainText\":[32],\"internalSupportingText\":[32],\"width\":[32]},null,{\"mainText\":[\"onMainTextChange\"],\"supportingText\":[\"onSupportingTextChange\"],\"color\":[\"onColorChange\"]}],[257,\"gb-contact-help-dropdown\",{\"items\":[16]}],[257,\"gb-help-dropdown\",{\"showLogError\":[4,\"show-log-error\"]}],[257,\"gb-notification-pane\",{\"state\":[1],\"notifications\":[1040]}],[257,\"gb-sidebar-sub-dropdown\",{\"type\":[1],\"menuItem\":[16],\"menuIndex\":[2,\"menu-index\"],\"isExpanded\":[4,\"is-expanded\"],\"isParentActive\":[4,\"is-parent-active\"],\"activeChildIndex\":[2,\"active-child-index\"]}],[257,\"gb-avatar-add-button\",{\"size\":[1],\"showToolTip\":[1028,\"show-tool-tip\"],\"state\":[1],\"el\":[16]}],[257,\"gb-complex-primary-side-bar-item\",{\"category\":[1],\"itemStyle\":[1,\"item-style\"],\"state\":[1],\"icon\":[1],\"label\":[1],\"showTooltip\":[1028,\"show-tooltip\"],\"leadingIconSvg\":[32]}],[257,\"gb-complex-secondary-side-bar-item\",{\"state\":[1],\"type\":[1],\"category\":[1],\"label\":[1],\"icon\":[1],\"showTooltip\":[1028,\"show-tooltip\"],\"leadingIconSvg\":[32]}],[257,\"gb-toggle\",{\"size\":[1],\"state\":[1],\"text\":[4],\"supportingText\":[4,\"supporting-text\"],\"pressed\":[4],\"position\":[1]}],[257,\"gb-header-icon\",{\"state\":[1],\"showIndicator\":[4,\"show-indicator\"],\"icon\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-portal\",{\"anchorId\":[1,\"anchor-id\"],\"placement\":[1],\"open\":[4],\"anchorEl\":[16],\"boundaryEl\":[16],\"dropdownHeight\":[2,\"dropdown-height\"]},null,{\"open\":[\"onOpenChange\"]}],[257,\"gb-filter-button\",{\"state\":[1],\"iconOnly\":[4,\"icon-only\"]}],[257,\"gb-avatar-label-group\",{\"size\":[1],\"statusIcon\":[1,\"status-icon\"],\"state\":[1],\"placeholder\":[4],\"text\":[4],\"color\":[1],\"showBorder\":[4,\"show-border\"]}],[321,\"gb-button-group\",{\"items\":[16],\"icon\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"internalItems\":[32],\"selectedValue\":[32]},null,{\"items\":[\"onItemsUpdated\"]}],[257,\"gb-export-dropdown\",{\"state\":[1],\"showEntireData\":[4,\"show-entire-data\"],\"pdfState\":[1,\"pdf-state\"],\"csvState\":[1,\"csv-state\"],\"showFirstSubDropdown\":[32],\"showSecondSubDropdown\":[32]}],[257,\"gb-theme-tab\",{\"theme\":[1025],\"currentActiveTab\":[1025,\"current-active-tab\"]}],[257,\"gb-collapse-button\",{\"color\":[1],\"isCollapsed\":[1028,\"is-collapsed\"],\"action\":[1025],\"isHovered\":[1028,\"is-hovered\"],\"direction\":[1],\"icon\":[1],\"leadingIconSvg\":[32],\"collapseSidebar\":[64],\"expandSidebar\":[64]}],[257,\"gb-illustration\",{\"size\":[1],\"color\":[1],\"illustrationStyle\":[1,\"illustration-style\"],\"illustrationIcon\":[1,\"illustration-icon\"],\"theme\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-notification-content\",{\"icon\":[1],\"label\":[1],\"time\":[1],\"supportingText\":[1,\"supporting-text\"]}],[257,\"gb-pagination-button-group-base\",{\"icon\":[1],\"state\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}],[257,\"gb-pagination-number-base\",{\"shape\":[1],\"state\":[1]}],[257,\"gb-pattern\",{\"type\":[1],\"theme\":[1],\"isDarkTheme\":[32]},null,{\"theme\":[\"changeTheme\"]}],[257,\"gb-sidebar-base-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"selected\":[4],\"showDropdownArrow\":[4,\"show-dropdown-arrow\"],\"leadingIconSvg\":[32]}],[257,\"gb-sidebar-child-item\",{\"state\":[1],\"type\":[1],\"label\":[1],\"icon\":[1],\"selected\":[4],\"leadingIconSvg\":[32]}],[257,\"gb-toast-button\",{\"state\":[1],\"color\":[1]}],[257,\"gb-toggle-base\",{\"size\":[1],\"state\":[1],\"pressed\":[1028]}],[257,\"gb-tab-button-base\",{\"current\":[4],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"badge\":[4],\"type\":[1],\"tabName\":[1,\"tab-name\"],\"alignment\":[1]}],[257,\"gb-date-picker\",{\"placeholder\":[1],\"value\":[16],\"format\":[1],\"mode\":[1],\"disabled\":[4],\"iconPosition\":[1,\"icon-position\"],\"dropdownAlignment\":[1,\"dropdown-alignment\"],\"label\":[1],\"formatLabel\":[4,\"format-label\"],\"allowInput\":[4,\"allow-input\"],\"enableTime\":[4,\"enable-time\"],\"noCalendar\":[4,\"no-calendar\"],\"twentyfourHr\":[4,\"twentyfour-hr\"],\"showMonths\":[2,\"show-months\"],\"fullWidth\":[4,\"full-width\"],\"default\":[4],\"disabledDates\":[16],\"destructive\":[4],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"isCalendarShown\":[32],\"breakpoint\":[32],\"width\":[32],\"displayValue\":[32],\"selectionSource\":[32]},null,{\"value\":[\"handleValueChange\"],\"displayValue\":[\"handleDisplayValueChange\"]}],[257,\"gb-button-group-base\",{\"current\":[4],\"icon\":[1],\"state\":[1],\"label\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}],[257,\"gb-step-base\",{\"status\":[1],\"size\":[1],\"type\":[1],\"state\":[1],\"connector\":[4],\"showContent\":[4,\"show-content\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"label\":[1],\"supportingText\":[1,\"supporting-text\"],\"breakpoint\":[1],\"internalState\":[32],\"internalStatus\":[32]},null,{\"status\":[\"onStatusChange\"],\"state\":[\"onStateChange\"]}],[257,\"gb-export-sub-dropdown\",{\"showEntireData\":[4,\"show-entire-data\"]}],[257,\"gb-icon-button-base\",{\"current\":[4],\"icon\":[1],\"label\":[1],\"leadingIconSvg\":[32],\"showTooltip\":[32]}],[257,\"gb-export-dropdown-item\",{\"icon\":[4],\"state\":[1],\"type\":[1]}],[257,\"gb-input-dropdown\",{\"type\":[1],\"state\":[1025],\"size\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"showHelpIcon\":[4,\"show-help-icon\"],\"showLeadingIcon\":[4,\"show-leading-icon\"],\"iconSwap\":[1,\"icon-swap\"],\"text\":[4],\"leadingIcon\":[1,\"leading-icon\"],\"icon\":[1],\"items\":[1040],\"value\":[1040],\"supportingText\":[4,\"supporting-text\"],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"menuPosition\":[1,\"menu-position\"],\"showSearchInput\":[4,\"show-search-input\"],\"inputValue\":[1,\"input-value\"],\"destructive\":[1028],\"errorText\":[1,\"error-text\"],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"leadingIconSvg\":[32],\"dropdownOpen\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"searchItem\":[32],\"searchResults\":[32],\"internalItems\":[32],\"showCloseButton\":[32],\"internalLoading\":[32],\"computedMenuPosition\":[32],\"clearSelection\":[64],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"items\":[\"updateResultsAndShowInDropdown\",\"syncSelectedItems\"],\"loading\":[\"onLoadingChanged\"],\"destructive\":[\"watchDestructive\"],\"value\":[\"syncSelectedItems\"]}],[257,\"gb-date-picker-list-item\",{\"selected\":[4],\"label\":[1]}],[257,\"gb-export-sub-dropdown-item\",{\"icon\":[1],\"state\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-step-icon-base\",{\"size\":[1],\"status\":[1],\"state\":[1],\"internalState\":[32],\"internalStatus\":[32]},null,{\"status\":[\"onStatusChange\"],\"state\":[\"onStateChange\"]}],[257,\"gb-featured-icon\",{\"size\":[1],\"destructive\":[4],\"icon\":[1],\"leadingIconSvg\":[32]}],[257,\"gb-file-type-icon\",{\"fileStyle\":[1,\"file-style\"],\"fileType\":[1,\"file-type\"]}],[257,\"gb-dropdown-items-with-shortcut\",{\"icon\":[4],\"iconSrc\":[1,\"icon-src\"],\"checkbox\":[4],\"shortcut\":[4],\"shortcutIcon\":[1,\"shortcut-icon\"],\"label\":[1],\"state\":[1],\"destructive\":[4],\"leadingIconSvg\":[32]}],[321,\"gb-input-field\",{\"size\":[1],\"type\":[1],\"inputType\":[1,\"input-type\"],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"destructive\":[1028],\"state\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"errorText\":[1,\"error-text\"],\"showPlaceholder\":[4,\"show-placeholder\"],\"placeholder\":[1],\"showHelpIcon\":[4,\"show-help-icon\"],\"showValidation\":[4,\"show-validation\"],\"showCountryIcon\":[4,\"show-country-icon\"],\"iconSwap\":[1025,\"icon-swap\"],\"enableCancelButtonFunction\":[4,\"enable-cancel-button-function\"],\"options\":[1040],\"idOfInput\":[513,\"id-of-input\"],\"isReadOnly\":[516,\"is-read-only\"],\"results\":[1040],\"menuPosition\":[1,\"menu-position\"],\"icon\":[1],\"value\":[1032],\"required\":[516],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"formatNumber\":[4,\"format-number\"],\"inputOnlyDisabled\":[4,\"input-only-disabled\"],\"searchMode\":[1,\"search-mode\"],\"focused\":[4],\"showCloseButton\":[32],\"inputValue\":[32],\"tags\":[32],\"leadingIconSvg\":[32],\"isPasswordVisible\":[32],\"showDropdown\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"dropdownOpen\":[32],\"show\":[32],\"showSpinner\":[32],\"internalLoading\":[32],\"filteredResults\":[32],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"iconSwap\":[\"iconSwapChanged\"],\"results\":[\"resultsChanged\"],\"options\":[\"optionsChanged\"],\"loading\":[\"onLoadingChanged\"],\"value\":[\"updateSelectedItems\"]}],[257,\"gb-password-button\",{\"state\":[1],\"isPasswordVisible\":[32]}],[257,\"gb-help-tooltip\",{\"showArrow\":[4,\"show-arrow\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"showHelpTooltip\":[32]}],[257,\"gb-tag\",{\"size\":[1],\"icon\":[1],\"action\":[1],\"flagSwap\":[1,\"flag-swap\"],\"checkbox\":[4],\"onTagClose\":[64]}],[257,\"gb-input-dropdown-menu-item\",{\"type\":[1],\"supportingText\":[4,\"supporting-text\"],\"selected\":[1028],\"state\":[1],\"color\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"ellipsed\":[4],\"leadingIconSvg\":[32]}],[257,\"gb-button-close\",{\"size\":[1],\"color\":[1]}],[257,\"gb-tag-checkbox\",{\"checked\":[4],\"size\":[1],\"disabled\":[4]}],[257,\"gb-tag-close\",{\"size\":[1]}],[257,\"gb-tag-count\",{\"size\":[1]}],[257,\"gb-badge\",{\"size\":[1],\"icon\":[1],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"flagSwap\":[1,\"flag-swap\"],\"color\":[1],\"type\":[1],\"closeButton\":[4,\"close-button\"],\"leadingIconContent\":[32],\"trailingIconContent\":[32]}],[257,\"gb-badge-close\",{\"color\":[1],\"type\":[1]}],[257,\"gb-button\",{\"size\":[1],\"hierarchy\":[1],\"icon\":[1],\"destructive\":[4],\"state\":[1],\"iconLeading\":[4,\"icon-leading\"],\"iconLeadingSwap\":[1,\"icon-leading-swap\"],\"iconTrailing\":[4,\"icon-trailing\"],\"iconTrailingSwap\":[1,\"icon-trailing-swap\"],\"tooltipText\":[1,\"tooltip-text\"],\"arrow\":[1],\"event\":[4],\"rounded\":[4],\"iconLeadingStyle\":[1,\"icon-leading-style\"],\"iconLeadingType\":[1,\"icon-leading-type\"],\"iconTrailingStyle\":[1,\"icon-trailing-style\"],\"iconTrailingType\":[1,\"icon-trailing-type\"],\"iconConfig\":[16],\"leadingIconSvg\":[32],\"trailingIconSvg\":[32],\"internalButtonState\":[32],\"internalIconLeadingState\":[32],\"internalIconTrailingState\":[32],\"tooltipShown\":[32],\"getNativeButton\":[64]}],[257,\"gb-checkbox\",{\"checked\":[4],\"indeterminate\":[4],\"size\":[1],\"type\":[1],\"state\":[1],\"text\":[4],\"supportingText\":[4,\"supporting-text\"],\"isChecked\":[32]},null,{\"checked\":[\"onCheckedChanged\"]}],[257,\"gb-checkbox-base\",{\"state\":[1025],\"size\":[1],\"type\":[1],\"checked\":[1028],\"indeterminate\":[1028]}],[257,\"gb-avatar\",{\"size\":[1],\"placeholder\":[4],\"text\":[4],\"statusIcon\":[1,\"status-icon\"],\"state\":[1],\"icon\":[1],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"companyIcon\":[1,\"company-icon\"],\"weight\":[1],\"assignedColorClass\":[32]}],[257,\"gb-avatar-contrast-inner-border\",{\"weight\":[1],\"size\":[1],\"showBorder\":[4,\"show-border\"]}],[257,\"gb-status-indicator\",{\"statusIcon\":[1,\"status-icon\"],\"size\":[1],\"state\":[1],\"indicatorStateClass\":[1,\"indicator-state-class\"],\"companyIcon\":[1,\"company-icon\"]}],[257,\"gb-tooltip\",{\"showArrow\":[4,\"show-arrow\"],\"arrow\":[1],\"showSupportingText\":[4,\"show-supporting-text\"],\"noWrap\":[4,\"no-wrap\"]}]]],[\"gb-rich-text.cjs\",[[256,\"gb-rich-text\",{\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"value\":[8],\"disabled\":[4],\"destructive\":[4],\"errorText\":[1,\"error-text\"],\"isFocused\":[32],\"isBold\":[32],\"isItalic\":[32],\"isH1\":[32],\"isH2\":[32],\"isUnderline\":[32],\"isQuote\":[32],\"isLink\":[32],\"isBulletList\":[32],\"isOrderedList\":[32],\"attachments\":[32],\"getRichTextHTML\":[64],\"clearContent\":[64]},null,{\"value\":[\"handleValueChange\"]}]]],[\"gb-approval-modal.cjs\",[[257,\"gb-approval-modal\",{\"showDecision\":[4,\"show-decision\"],\"badgeColor\":[1,\"badge-color\"],\"badgeType\":[1,\"badge-type\"],\"badgeIcon\":[1,\"badge-icon\"],\"badgeLabel\":[1,\"badge-label\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"headerText\":[1,\"header-text\"],\"textareaLabel\":[1,\"textarea-label\"]}]]],[\"gb-input-dropdown-test.cjs\",[[257,\"gb-input-dropdown-test\",{\"type\":[1],\"state\":[1025],\"size\":[1],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"placeholder\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"showHelpIcon\":[4,\"show-help-icon\"],\"showLeadingIcon\":[4,\"show-leading-icon\"],\"iconSwap\":[1,\"icon-swap\"],\"text\":[4],\"leadingIcon\":[1,\"leading-icon\"],\"icon\":[1],\"items\":[1040],\"value\":[1040],\"supportingText\":[4,\"supporting-text\"],\"color\":[1],\"showBorder\":[4,\"show-border\"],\"menuPosition\":[1,\"menu-position\"],\"showSearchInput\":[4,\"show-search-input\"],\"inputValue\":[1,\"input-value\"],\"destructive\":[1028],\"errorText\":[1,\"error-text\"],\"loading\":[1028],\"formatLabel\":[4,\"format-label\"],\"leadingIconSvg\":[32],\"dropdownOpen\":[32],\"selectedItem\":[32],\"selectedItems\":[32],\"unselectedItems\":[32],\"searchItem\":[32],\"searchResults\":[32],\"internalItems\":[32],\"showCloseButton\":[32],\"internalLoading\":[32],\"computedMenuPosition\":[32],\"clearSelection\":[64],\"isDestructive\":[64],\"isNotDestructive\":[64]},[[4,\"click\",\"handleClickOutside\"]],{\"items\":[\"updateResultsAndShowInDropdown\",\"syncSelectedItems\"],\"loading\":[\"onLoadingChanged\"],\"destructive\":[\"watchDestructive\"],\"value\":[\"syncSelectedItems\"]}]]],[\"test-input-tag.cjs\",[[256,\"test-input-tag\",{\"idOfInput\":[513,\"id-of-input\"],\"type\":[513],\"labelText\":[513,\"label-text\"],\"isReadOnly\":[516,\"is-read-only\"],\"placeholderText\":[513,\"placeholder-text\"],\"show\":[32],\"showSpinner\":[32],\"staffInfo\":[32],\"selectedStaff\":[32],\"paddingLeft\":[32],\"paddingTop\":[32],\"inputValue\":[32],\"dropdownOpen\":[32]}]]],[\"gb-checkbox-group.cjs\",[[257,\"gb-checkbox-group\",{\"size\":[1],\"breakpoint\":[1],\"icon\":[1],\"selected\":[4],\"type\":[1]}]]],[\"gb-detail-cell.cjs\",[[257,\"gb-detail-cell\",{\"state\":[1],\"cellStyle\":[1025,\"cell-style\"],\"type\":[1],\"label\":[1],\"detail\":[1],\"badgeIcon\":[1,\"badge-icon\"],\"badgeIconLeading\":[1,\"badge-icon-leading\"],\"badgeIconTrailing\":[1,\"badge-icon-trailing\"],\"badgeColor\":[1,\"badge-color\"],\"badgeLabel\":[1,\"badge-label\"],\"badgeType\":[1,\"badge-type\"],\"fileType\":[1,\"file-type\"],\"fileStyle\":[1,\"file-style\"],\"showActionButtons\":[4,\"show-action-buttons\"],\"showViewButton\":[4,\"show-view-button\"],\"showDownloadButton\":[4,\"show-download-button\"],\"showCopyButton\":[1028,\"show-copy-button\"],\"buttonText\":[1,\"button-text\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"supportingText\":[1,\"supporting-text\"],\"showBorderBottom\":[4,\"show-border-bottom\"],\"showStandardCopyButton\":[32],\"showTooltip\":[32],\"copied\":[32],\"isDownloaded\":[32],\"width\":[32]}]]],[\"gb-modal.cjs\",[[260,\"gb-modal\",{\"width\":[1],\"footer\":[4],\"closeButtonPosition\":[1,\"close-button-position\"],\"heading\":[1],\"actionType\":[1,\"action-type\"],\"fullWidth\":[4,\"full-width\"],\"destructive\":[4],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"firstButtonIconLeadingSwap\":[1,\"first-button-icon-leading-swap\"],\"secondButtonIconLeadingSwap\":[1,\"second-button-icon-leading-swap\"],\"thirdButtonIconLeadingSwap\":[1,\"third-button-icon-leading-swap\"],\"firstButtonIconTrailingSwap\":[1,\"first-button-icon-trailing-swap\"],\"secondButtonIconTrailingSwap\":[1,\"second-button-icon-trailing-swap\"],\"thirdButtonIconTrailingSwap\":[1,\"third-button-icon-trailing-swap\"],\"showSecondaryActions\":[4,\"show-secondary-actions\"],\"showFirstIconButton\":[4,\"show-first-icon-button\"],\"showSecondIconButton\":[4,\"show-second-icon-button\"],\"firstIconButtonSwap\":[1,\"first-icon-button-swap\"],\"secondIconButtonSwap\":[1,\"second-icon-button-swap\"],\"showCheckBox\":[4,\"show-check-box\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"hasFooterSlot\":[32]}]]],[\"gb-nav-bar-sidemenu.cjs\",[[257,\"gb-nav-bar-sidemenu\",{\"applicationName\":[1,\"application-name\"],\"applicationIcon\":[1,\"application-icon\"],\"activeIndex\":[2,\"active-index\"],\"tabs\":[16],\"leadingIconSvg\":[32]}]]],[\"gb-file-upload.cjs\",[[257,\"gb-file-upload\",{\"icon\":[1],\"type\":[1],\"heightSize\":[1,\"height-size\"],\"state\":[1],\"destructive\":[4],\"showLabel\":[4,\"show-label\"],\"progress\":[2],\"fileType\":[16],\"files\":[32],\"fileStates\":[32],\"isDragging\":[32]}]]],[\"gb-metric-card.cjs\",[[257,\"gb-metric-card\",{\"size\":[1],\"radius\":[1],\"label\":[1],\"metric\":[1],\"showBadge\":[4,\"show-badge\"],\"featuredIconStyle\":[1,\"featured-icon-style\"],\"featuredIconColor\":[1,\"featured-icon-color\"],\"icon\":[1],\"percentage\":[1]}]]],[\"gb-nav-bar.cjs\",[[257,\"gb-nav-bar\",{\"category\":[1],\"items\":[1040],\"showBorder\":[4,\"show-border\"],\"activeIndex\":[1026,\"active-index\"],\"internalItems\":[32],\"visibleItems\":[32],\"overflowItems\":[32],\"measured\":[32],\"dropdownOpen\":[32],\"dropdownItemClicked\":[32]},null,{\"items\":[\"onItemsChanged\"]}]]],[\"gb-comment.cjs\",[[257,\"gb-comment\",{\"heading\":[1],\"state\":[1025],\"noCommentText\":[1,\"no-comment-text\"],\"noCommentTextSub\":[1,\"no-comment-text-sub\"],\"comments\":[16],\"theme\":[1],\"isDarkTheme\":[32]}]]],[\"gb-stepper-horizontal-line-with-text.cjs\",[[257,\"gb-stepper-horizontal-line-with-text\",{\"size\":[1],\"breakpoint\":[1],\"showContent\":[4,\"show-content\"],\"showSupportingText\":[1028,\"show-supporting-text\"],\"steps\":[16],\"internalSteps\":[32],\"width\":[32],\"internalState\":[32],\"internalStatus\":[32]},null,{\"steps\":[\"onStepsChanged\"]}]]],[\"gb-stepper-vertical-icons-with-text.cjs\",[[257,\"gb-stepper-vertical-icons-with-text\",{\"size\":[1],\"connector\":[4],\"type\":[1],\"steps\":[16],\"internalSteps\":[32],\"internalState\":[32],\"internalStatus\":[32]},null,{\"steps\":[\"onStepsChanged\"]}]]],[\"gb-slider.cjs\",[[257,\"gb-slider\",{\"min\":[2],\"max\":[2],\"thumbType\":[1,\"thumb-type\"],\"leftControl\":[2,\"left-control\"],\"rightControl\":[2,\"right-control\"],\"label\":[1],\"unit\":[1],\"unitPosition\":[1,\"unit-position\"],\"heading\":[1],\"showHeading\":[4,\"show-heading\"],\"formatHeading\":[4,\"format-heading\"],\"leftValue\":[32],\"rightValue\":[32]}]]],[\"gb-breadcrumbs.cjs\",[[257,\"gb-breadcrumbs\",{\"type\":[1],\"divider\":[1],\"breadcrumbs\":[16],\"icon\":[1],\"visibleBreadcrumbs\":[32]}]]],[\"gb-quick-action-card.cjs\",[[257,\"gb-quick-action-card\",{\"color\":[1],\"icon\":[1],\"label\":[1]}]]],[\"gb-quick-action-icon.cjs\",[[257,\"gb-quick-action-icon\",{\"icon\":[1],\"label\":[1],\"isHovered\":[32]}]]],[\"gb-stepper-horizontal-minimal-icons.cjs\",[[257,\"gb-stepper-horizontal-minimal-icons\",{\"size\":[1],\"text\":[4],\"stepLabel\":[1,\"step-label\"],\"steps\":[16],\"position\":[1]}]]],[\"gb-token-field-compressed.cjs\",[[257,\"gb-token-field-compressed\",{\"size\":[1],\"state\":[1],\"digits\":[2],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showHintText\":[4,\"show-hint-text\"],\"hintText\":[1,\"hint-text\"],\"values\":[32],\"focusedIndex\":[32]}]]],[\"gb-wysiwyg-editor-icon.cjs\",[[257,\"gb-wysiwyg-editor-icon\",{\"active\":[4],\"type\":[1],\"state\":[1],\"_active\":[32]},null,{\"active\":[\"onActiveChange\"]}]]],[\"gb-wysiwyg-tooltip.cjs\",[[257,\"gb-wysiwyg-tooltip\",{\"arrow\":[1],\"breakpoint\":[1]}]]],[\"gb-category-card.cjs\",[[257,\"gb-category-card\",{\"label\":[1],\"supportingText\":[1,\"supporting-text\"],\"showSupportingText\":[4,\"show-supporting-text\"],\"cardImage\":[1,\"card-image\"],\"isHovered\":[32]}]]],[\"gb-logo.cjs\",[[257,\"gb-logo\",{\"text\":[4]}]]],[\"gb-pagination-dot-group.cjs\",[[257,\"gb-pagination-dot-group\",{\"size\":[1],\"type\":[1],\"color\":[1],\"framed\":[4]}]]],[\"gb-progress-circle.cjs\",[[257,\"gb-progress-circle\",{\"size\":[1],\"shape\":[1],\"label\":[4],\"progress\":[2]},null,{\"progress\":[\"handleProgressChange\"]}]]],[\"gb-scrollbar.cjs\",[[257,\"gb-scrollbar\",{\"length\":[1]}]]],[\"gb-stepper-horizontal-icons-connected.cjs\",[[257,\"gb-stepper-horizontal-icons-connected\",{\"size\":[1],\"steps\":[16]}]]],[\"gb-token-field-compact.cjs\",[[257,\"gb-token-field-compact\",{\"size\":[1],\"digits\":[2],\"showLabel\":[4,\"show-label\"],\"label\":[1],\"showSupportingText\":[4,\"show-supporting-text\"],\"supportingText\":[1,\"supporting-text\"],\"inputValue\":[32]}]]],[\"gb-wysiwyg-toolbar.cjs\",[[257,\"gb-wysiwyg-toolbar\",{\"fontSelector\":[4,\"font-selector\"],\"isBold\":[4,\"is-bold\"],\"isItalic\":[4,\"is-italic\"],\"isUnderline\":[4,\"is-underline\"],\"isH1\":[4,\"is-h-1\"],\"isH2\":[4,\"is-h-2\"],\"isQuote\":[4,\"is-quote\"],\"isLink\":[4,\"is-link\"],\"isBulletList\":[4,\"is-bullet-list\"],\"isOrderedList\":[4,\"is-ordered-list\"],\"isAttachment\":[4,\"is-attachment\"],\"isPhoto\":[4,\"is-photo\"],\"_isBold\":[32],\"_isItalic\":[32],\"_isUnderline\":[32],\"_isH1\":[32],\"_isH2\":[32],\"_isQuote\":[32],\"_isLink\":[32],\"_isBulletList\":[32],\"_isOrderedList\":[32]},null,{\"isBold\":[\"onBoldChange\"],\"isItalic\":[\"onItalicChange\"],\"isUnderline\":[\"onUnderlineChange\"],\"isH1\":[\"onH1Change\"],\"isH2\":[\"onH2Change\"],\"isQuote\":[\"onQuoteChange\"],\"isLink\":[\"onLinkChange\"],\"isBulletList\":[\"onBulletListChange\"],\"isOrderedList\":[\"onOrderedListChange\"]}]]],[\"gb-checkbox-group-item.cjs\",[[257,\"gb-checkbox-group-item\",{\"size\":[1],\"type\":[1],\"state\":[1],\"breakpoint\":[1],\"showCost\":[4,\"show-cost\"],\"selected\":[1028],\"showButton\":[4,\"show-button\"],\"buttonText\":[1,\"button-text\"],\"icon\":[1],\"checkboxType\":[1,\"checkbox-type\"],\"leadingIconSvg\":[32]}]]],[\"gb-vertical-tabs.cjs\",[[257,\"gb-vertical-tabs\",{\"size\":[1],\"type\":[1],\"activeIndex\":[1026,\"active-index\"],\"tabs\":[16],\"internalTabs\":[32]},null,{\"tabs\":[\"onTabsChanged\"]}]]],[\"gb-file-upload-item-base.cjs\",[[257,\"gb-file-upload-item-base\",{\"icon\":[1],\"label\":[1],\"showLabel\":[4,\"show-label\"],\"formatLabel\":[4,\"format-label\"],\"state\":[1],\"heightSize\":[1,\"height-size\"],\"fileType\":[1,\"file-type\"],\"progress\":[2],\"fileSize\":[2,\"file-size\"],\"fileName\":[1,\"file-name\"],\"allowedType\":[1,\"allowed-type\"],\"showFileSize\":[4,\"show-file-size\"],\"required\":[4],\"errorSupportingText\":[1,\"error-supporting-text\"],\"internalState\":[32],\"internalProgress\":[32]},null,{\"state\":[\"onStateChange\"],\"progress\":[\"onProgressChange\"],\"fileName\":[\"handleFileNameChange\"]}]]],[\"gb-nav-bar-item.cjs\",[[257,\"gb-nav-bar-item\",{\"state\":[1],\"iconOnly\":[4,\"icon-only\"],\"category\":[1],\"label\":[1],\"icon\":[1],\"leadingIconSvg\":[32],\"showTooltip\":[32]}]]],[\"gb-slider-control-handle.cjs\",[[257,\"gb-slider-control-handle\",{\"value\":[1],\"type\":[1],\"isHovered\":[32],\"isFocused\":[32]}]]],[\"gb-breadcrumb-button-base.cjs\",[[257,\"gb-breadcrumb-button-base\",{\"current\":[4],\"type\":[1],\"icon\":[4],\"label\":[1],\"iconSrc\":[1,\"icon-src\"],\"leadingIconSvg\":[32]}]]],[\"gb-comment-item.cjs\",[[257,\"gb-comment-item\",{\"name\":[1],\"duty\":[1],\"comment\":[1],\"timeStamp\":[1,\"time-stamp\"],\"connector\":[4]}]]],[\"gb-mega-input-field-base.cjs\",[[257,\"gb-mega-input-field-base\",{\"size\":[1],\"state\":[1],\"value\":[1],\"inputValue\":[32],\"focusInput\":[64]},null,{\"value\":[\"onValueChanged\"]}]]],[\"gb-metric-featured-icon.cjs\",[[257,\"gb-metric-featured-icon\",{\"size\":[1],\"color\":[1],\"featuredIconStyle\":[1,\"featured-icon-style\"],\"icon\":[1],\"leadingIconSvg\":[32]}]]],[\"gb-progress-bar.cjs\",[[257,\"gb-progress-bar\",{\"progress\":[2],\"showLabel\":[4,\"show-label\"],\"labelPosition\":[1,\"label-position\"]}]]],[\"gb-card-icon.cjs\",[[257,\"gb-card-icon\",{\"size\":[1],\"color\":[1],\"icon\":[1],\"leadingIconSvg\":[32]}]]],[\"gb-modal-action_2.cjs\",[[257,\"gb-modal-action\",{\"actionType\":[1,\"action-type\"],\"destructive\":[4],\"fullWidth\":[4,\"full-width\"],\"firstButtonText\":[1,\"first-button-text\"],\"secondButtonText\":[1,\"second-button-text\"],\"thirdButtonText\":[1,\"third-button-text\"],\"firstButtonState\":[1,\"first-button-state\"],\"secondButtonState\":[1,\"second-button-state\"],\"thirdButtonState\":[1,\"third-button-state\"],\"firstButtonIconLeadingSwap\":[1,\"first-button-icon-leading-swap\"],\"secondButtonIconLeadingSwap\":[1,\"second-button-icon-leading-swap\"],\"thirdButtonIconLeadingSwap\":[1,\"third-button-icon-leading-swap\"],\"firstButtonIconTrailingSwap\":[1,\"first-button-icon-trailing-swap\"],\"secondButtonIconTrailingSwap\":[1,\"second-button-icon-trailing-swap\"],\"thirdButtonIconTrailingSwap\":[1,\"third-button-icon-trailing-swap\"],\"showSecondaryActions\":[4,\"show-secondary-actions\"],\"showFirstIconButton\":[4,\"show-first-icon-button\"],\"showSecondIconButton\":[4,\"show-second-icon-button\"],\"firstIconButtonSwap\":[1,\"first-icon-button-swap\"],\"secondIconButtonSwap\":[1,\"second-icon-button-swap\"],\"showCheckBox\":[4,\"show-check-box\"],\"checkboxLabel\":[1,\"checkbox-label\"],\"firstIconButtonTooltipShown\":[32],\"secondIconButtonTooltipShown\":[32]}],[257,\"gb-modal-header\",{\"text\":[1],\"closeButtonPosition\":[513,\"close-button-position\"]}]]]]"), options);
22
22
  });
23
23
 
24
24
  exports.setNonce = index.setNonce;