globuswebcomponents 2.1.6 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/gb-action-panel.cjs.entry.js +10 -1
- package/dist/cjs/gb-action-panel.cjs.entry.js.map +1 -1
- package/dist/cjs/gb-action-panel.entry.cjs.js.map +1 -1
- package/dist/cjs/globuscomponents.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/gb-action-panel/gb-action-panel.js +40 -2
- package/dist/collection/components/gb-action-panel/gb-action-panel.js.map +1 -1
- package/dist/components/gb-action-panel.js +15 -2
- package/dist/components/gb-action-panel.js.map +1 -1
- package/dist/docs.json +39 -1
- package/dist/esm/gb-action-panel.entry.js +10 -1
- package/dist/esm/gb-action-panel.entry.js.map +1 -1
- package/dist/esm/globuscomponents.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/globuscomponents/gb-action-panel.entry.esm.js.map +1 -1
- package/dist/globuscomponents/globuscomponents.esm.js +1 -1
- package/dist/globuscomponents/{p-6b677148.entry.js → p-8f79c081.entry.js} +2 -2
- package/dist/globuscomponents/p-8f79c081.entry.js.map +1 -0
- package/dist/types/components/gb-action-panel/gb-action-panel.d.ts +4 -0
- package/dist/types/components.d.ts +2 -0
- package/package.json +4 -3
- package/dist/globuscomponents/p-6b677148.entry.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gb-action-panel.entry.esm.js","sources":["src/components/gb-action-panel/gb-action-panel.css?tag=gb-action-panel&encapsulation=shadow","src/components/gb-action-panel/gb-action-panel.tsx"],"sourcesContent":["@import './../../global/global.css';\r\n\r\n.action_panel_div{\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-none) 0rem 0rem 0rem;\r\n flex-direction: column;\r\n justify-content: center;\r\n align-items: flex-start;\r\n border-top: 1px solid var(--color-border-subtler, #E3E8EF);\r\n background: #FFFFFF;\r\n}\r\n\r\n.panel_content{\r\n display: flex;\r\n flex-wrap: wrap;\r\n padding: var(--spacing-4) var(--spacing-7);\r\n justify-content: space-between;\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n align-self: stretch;\r\n}\r\n\r\n.left_action{\r\n display: flex;\r\n gap: var(--spacing-5);\r\n align-items: center;\r\n flex-wrap: wrap;\r\n}\r\n\r\n.rows_and_close_button{\r\n display: flex;\r\n align-items: center;\r\n gap: var(--spacing-5)\r\n}\r\n\r\n.amount{\r\n display: flex;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.amount_heading{\r\n color: var(--color-text-subtle, #697586);\r\n}\r\n\r\n.amount_text{\r\n color: var(--color-text, #4B5565);\r\n}\r\n\r\n.right_action{\r\n display: flex;\r\n flex-direction: row-reverse;\r\n /* justify-content: flex-end; */\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n width: 100%;\r\n flex: 1 0 0;\r\n}\r\n\r\n::slotted([slot=\"selected_rows\"]) {\r\n color: var(--color-text, #4B5565);\r\n}\r\n\r\n/**/\r\n.actions{\r\n display: flex;\r\njustify-content: space-between;\r\nalign-items: center;\r\nflex: 1 0 0;\r\n}\r\n\r\n.right{\r\n display: flex;\r\njustify-content: flex-end;\r\nalign-items: center;\r\ngap: var(--spacing-6);\r\n}\r\n\r\n@media (max-width: 940px) {\r\n .right_action{\r\n flex-wrap: wrap;\r\n }\r\n}\r\n\r\n@media (max-width: 468px) {\r\n .panel_content{\r\n padding: var(--spacing-4) var(--spacing-5);\r\n }\r\n \r\n .three_buttons .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .actions{\r\n flex-direction: column;\r\n gap: var(--spacing-4);\r\n }\r\n\r\n .actions .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .right{\r\n width: 100%;\r\n gap: var(--spacing-4);\r\n }\r\n\r\n .actions .right .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .right{\r\n flex-direction: column;\r\n }\r\n}\r\n\r\n@media (max-width: 420px) {\r\n\r\n .right_action{\r\n justify-content: space-between;\r\n }\r\n\r\n .right_action .button_divs{\r\n flex: 1 0 0;\r\n }\r\n}","import { Component, Element, Event, EventEmitter, Prop, State, h } from '@stencil/core';\r\nimport { StateEnum, StateType } from '../../models/reusableModels';\r\n\r\n@Component({\r\n tag: 'gb-action-panel',\r\n styleUrl: 'gb-action-panel.css',\r\n shadow: true,\r\n})\r\nexport class GbActionPanel {\r\n @Prop() type!: 'decision_panel' | 'form_control';\r\n @Prop() showCloseButton: boolean = false;\r\n @Prop() showSelectedRows: boolean = false;\r\n @Prop() showCheckbox: boolean = false;\r\n @Prop() firstButton: boolean = false;\r\n @Prop() firstButtonIconLeading: string = '';\r\n @Prop() firstButtonIconTrailing: string = '';\r\n @Prop() secondButton: boolean = false;\r\n @Prop() secondButtonIconLeading: string = '';\r\n @Prop() secondButtonIconTrailing: string = '';\r\n @Prop() thirdButton: boolean = false;\r\n @Prop() thirdButtonIconLeading: string = '';\r\n @Prop() thirdButtonIconTrailing: string = '';\r\n @Prop() showSubmitButton: boolean = false;\r\n @Prop() firstButtonText: string = '';\r\n @Prop() secondButtonText: string = '';\r\n @Prop() thirdButtonText: string = '';\r\n @Prop() firstButtonState: StateType;\r\n @Prop() secondButtonState: StateType;\r\n @Prop() thirdButtonState: StateType;\r\n @Prop() previousButtonState: StateType;\r\n @Prop() showDraftButton: boolean = false;\r\n @Prop() submitButtonText: string = '';\r\n @Prop() showAmount: boolean = false;\r\n @Prop() showFee: boolean = false;\r\n @Prop() amount: string = '';\r\n @Prop() fee: string = '';\r\n @State() checked: any = false;\r\n @Event() firstButtonClicked: EventEmitter<void>;\r\n @Event() secondButtonClicked: EventEmitter<void>;\r\n @Event() thirdButtonClicked: EventEmitter<void>;\r\n @Event() previousButtonClicked: EventEmitter<void>;\r\n @Event() saveAsDraft: EventEmitter<void>;\r\n @Event() submitButtonClicked: EventEmitter<void>;\r\n @Event() nextButtonClicked: EventEmitter<void>;\r\n @Event() checkboxClicked: EventEmitter<void>;\r\n @Element() el: HTMLElement;\r\n\r\n componentDidLoad() {\r\n const selectedRows = this.el.querySelector('[slot=\"selected_rows\"]');\r\n const label = this.el.querySelector('[slot=\"label\"]');\r\n\r\n if (selectedRows) {\r\n selectedRows.classList.add('text-md-medium');\r\n }\r\n\r\n if (label) {\r\n label.classList.add('text-md-medium');\r\n }\r\n }\r\n\r\n onCheckboxClicked(event) {\r\n this.checked = event.detail;\r\n this.checkboxClicked.emit(this.checked);\r\n }\r\n\r\n onFirstButtonClicked() {\r\n if (this.firstButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.firstButtonClicked.emit(this.checked);\r\n } else {\r\n this.firstButtonClicked.emit();\r\n }\r\n } else {\r\n return;\r\n }\r\n }\r\n\r\n onSecondButtonClicked() {\r\n if (this.secondButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.secondButtonClicked.emit(this.checked);\r\n } else {\r\n this.secondButtonClicked.emit();\r\n }\r\n }\r\n }\r\n\r\n onThirdButtonClicked() {\r\n if (this.thirdButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.thirdButtonClicked.emit(this.checked);\r\n } else {\r\n this.thirdButtonClicked.emit();\r\n }\r\n }\r\n }\r\n\r\n onPreviousButtonClicked() {\r\n this.previousButtonClicked.emit();\r\n }\r\n\r\n onSaveAsDraft() {\r\n this.saveAsDraft.emit();\r\n }\r\n\r\n onSubmitClicked() {\r\n this.submitButtonClicked.emit();\r\n }\r\n\r\n onNextButtonClicked() {\r\n this.nextButtonClicked.emit();\r\n }\r\n\r\n render() {\r\n return (\r\n <div class=\"action_panel_div\">\r\n {this.type === 'decision_panel' && (\r\n <div class=\"panel_content\">\r\n <div class=\"left_action\">\r\n <div class=\"rows_and_close_button\">\r\n {this.showCloseButton && <gb-button-close size=\"md\" color=\"primary\"></gb-button-close>}\r\n {this.showSelectedRows && <slot name=\"selected_rows\"></slot>}\r\n </div>\r\n {this.showCheckbox && (\r\n <gb-checkbox size=\"md\" state={StateEnum.Default} type=\"checkbox\" text={true} supporting-text={false} onCheckboxClicked={this.onCheckboxClicked.bind(this)}>\r\n <slot name=\"label\" slot=\"label\"></slot>\r\n </gb-checkbox>\r\n )}\r\n {this.showAmount && (\r\n <div class=\"amount\">\r\n <p class=\"amount_heading text-sm-medium\">Total amount:</p>\r\n <p class=\"amount_text text-lg-semi-bold\">{this.amount}</p>\r\n </div>\r\n )}\r\n {this.showFee && (\r\n <div class=\"amount\">\r\n <p class=\"amount_heading text-sm-medium\">Total fee:</p>\r\n <p class=\"amount_text text-lg-semi-bold\">{this.fee}</p>\r\n </div>\r\n )}\r\n </div>\r\n <div class={`right_action ${this.firstButton && this.secondButton && this.thirdButton && 'three_buttons'}`}>\r\n {this.firstButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.firstButtonState}\r\n hierarchy=\"primary\"\r\n icon=\"default\"\r\n icon-leading={this.firstButtonIconLeading ? true : false}\r\n icon-trailing={this.firstButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.firstButtonIconLeading}\r\n icon-trailing-swap={this.firstButtonIconTrailing}\r\n onClick={() => this.onFirstButtonClicked()}\r\n >\r\n <p>{this.firstButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.secondButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.secondButtonState}\r\n hierarchy=\"secondary_color\"\r\n icon=\"default\"\r\n icon-leading={this.secondButtonIconLeading ? true : false}\r\n icon-trailing={this.secondButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.secondButtonIconLeading}\r\n icon-trailing-swap={this.secondButtonIconTrailing}\r\n onClick={() => this.onSecondButtonClicked()}\r\n >\r\n <p>{this.secondButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.thirdButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.thirdButtonState}\r\n hierarchy=\"secondary_gray\"\r\n icon=\"default\"\r\n icon-leading={this.thirdButtonIconLeading ? true : false}\r\n icon-trailing={this.thirdButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.thirdButtonIconLeading}\r\n icon-trailing-swap={this.thirdButtonIconTrailing}\r\n onClick={() => this.onThirdButtonClicked()}\r\n >\r\n <p>{this.thirdButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'form_control' && (\r\n <div class=\"panel_content\">\r\n <div class={`actions ${this.showDraftButton ? 'draft_shown' : ''}`}>\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.previousButtonState}\r\n hierarchy=\"secondary_gray\"\r\n icon=\"default\"\r\n icon-leading={true}\r\n icon-leading-swap=\"assets/arrow-left-02.svg\"\r\n onClick={() => this.onPreviousButtonClicked()}\r\n >\r\n <p>Previous</p>\r\n </gb-button>\r\n </div>\r\n <div class=\"right\">\r\n {this.showDraftButton && (\r\n <div class=\"button_divs\">\r\n <gb-button size=\"xl\" hierarchy=\"secondary_color\" icon=\"default\" onClick={() => this.onSaveAsDraft()}>\r\n <p>Save as draft</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.showSubmitButton ? (\r\n <div class=\"button_divs\">\r\n <gb-button size=\"xl\" hierarchy=\"primary\" icon=\"default\" onClick={() => this.onSubmitClicked()}>\r\n <p>{this.submitButtonText}</p>\r\n </gb-button>\r\n </div>\r\n ) : (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n hierarchy=\"primary\"\r\n icon=\"default\"\r\n icon-trailing={true}\r\n icon-trailing-swap=\"assets/arrow-right-02.svg\"\r\n onClick={() => this.onNextButtonClicked()}\r\n >\r\n <p>Next</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n </div>\r\n )}\r\n </div>\r\n );\r\n }\r\n}\r\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"gb-action-panel.entry.esm.js","sources":["src/components/gb-action-panel/gb-action-panel.css?tag=gb-action-panel&encapsulation=shadow","src/components/gb-action-panel/gb-action-panel.tsx"],"sourcesContent":["@import './../../global/global.css';\r\n\r\n.action_panel_div{\r\n display: flex;\r\n width: 100%;\r\n padding: var(--spacing-none) 0rem 0rem 0rem;\r\n flex-direction: column;\r\n justify-content: center;\r\n align-items: flex-start;\r\n border-top: 1px solid var(--color-border-subtler, #E3E8EF);\r\n background: #FFFFFF;\r\n}\r\n\r\n.panel_content{\r\n display: flex;\r\n flex-wrap: wrap;\r\n padding: var(--spacing-4) var(--spacing-7);\r\n justify-content: space-between;\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n align-self: stretch;\r\n}\r\n\r\n.left_action{\r\n display: flex;\r\n gap: var(--spacing-5);\r\n align-items: center;\r\n flex-wrap: wrap;\r\n}\r\n\r\n.rows_and_close_button{\r\n display: flex;\r\n align-items: center;\r\n gap: var(--spacing-5)\r\n}\r\n\r\n.amount{\r\n display: flex;\r\n gap: var(--spacing-2);\r\n}\r\n\r\n.amount_heading{\r\n color: var(--color-text-subtle, #697586);\r\n}\r\n\r\n.amount_text{\r\n color: var(--color-text, #4B5565);\r\n}\r\n\r\n.right_action{\r\n display: flex;\r\n flex-direction: row-reverse;\r\n /* justify-content: flex-end; */\r\n align-items: center;\r\n gap: var(--spacing-5);\r\n width: 100%;\r\n flex: 1 0 0;\r\n}\r\n\r\n::slotted([slot=\"selected_rows\"]) {\r\n color: var(--color-text, #4B5565);\r\n}\r\n\r\n/**/\r\n.actions{\r\n display: flex;\r\njustify-content: space-between;\r\nalign-items: center;\r\nflex: 1 0 0;\r\n}\r\n\r\n.right{\r\n display: flex;\r\njustify-content: flex-end;\r\nalign-items: center;\r\ngap: var(--spacing-6);\r\n}\r\n\r\n@media (max-width: 940px) {\r\n .right_action{\r\n flex-wrap: wrap;\r\n }\r\n}\r\n\r\n@media (max-width: 468px) {\r\n .panel_content{\r\n padding: var(--spacing-4) var(--spacing-5);\r\n }\r\n \r\n .three_buttons .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .actions{\r\n flex-direction: column;\r\n gap: var(--spacing-4);\r\n }\r\n\r\n .actions .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .right{\r\n width: 100%;\r\n gap: var(--spacing-4);\r\n }\r\n\r\n .actions .right .button_divs{\r\n width: 100%;\r\n }\r\n\r\n .right{\r\n flex-direction: column;\r\n }\r\n}\r\n\r\n@media (max-width: 420px) {\r\n\r\n .right_action{\r\n justify-content: space-between;\r\n }\r\n\r\n .right_action .button_divs{\r\n flex: 1 0 0;\r\n }\r\n}","import { Component, Element, Event, EventEmitter, Prop, State, Watch, h } from '@stencil/core';\r\nimport { StateEnum, StateType } from '../../models/reusableModels';\r\n\r\n@Component({\r\n tag: 'gb-action-panel',\r\n styleUrl: 'gb-action-panel.css',\r\n shadow: true,\r\n})\r\nexport class GbActionPanel {\r\n @Prop() type!: 'decision_panel' | 'form_control';\r\n @Prop() showCloseButton: boolean = false;\r\n @Prop() showSelectedRows: boolean = false;\r\n @Prop() showCheckbox: boolean = false;\r\n @Prop() firstButton: boolean = false;\r\n @Prop() firstButtonIconLeading: string = '';\r\n @Prop() firstButtonIconTrailing: string = '';\r\n @Prop() secondButton: boolean = false;\r\n @Prop() secondButtonIconLeading: string = '';\r\n @Prop() secondButtonIconTrailing: string = '';\r\n @Prop() thirdButton: boolean = false;\r\n @Prop() thirdButtonIconLeading: string = '';\r\n @Prop() thirdButtonIconTrailing: string = '';\r\n @Prop() showSubmitButton: boolean = false;\r\n @Prop() firstButtonText: string = '';\r\n @Prop() secondButtonText: string = '';\r\n @Prop() thirdButtonText: string = '';\r\n @Prop() firstButtonState: StateType;\r\n @Prop() secondButtonState: StateType;\r\n @Prop() thirdButtonState: StateType;\r\n @Prop() previousButtonState: StateType;\r\n @Prop() nextButtonState: StateType;\r\n @Prop() showDraftButton: boolean = false;\r\n @Prop() submitButtonText: string = '';\r\n @Prop() showAmount: boolean = false;\r\n @Prop() showFee: boolean = false;\r\n @Prop() amount: string = '';\r\n @Prop() fee: string = '';\r\n @State() checked: any = false;\r\n @State() internalNextButtonState: StateType;\r\n @Event() firstButtonClicked: EventEmitter<void>;\r\n @Event() secondButtonClicked: EventEmitter<void>;\r\n @Event() thirdButtonClicked: EventEmitter<void>;\r\n @Event() previousButtonClicked: EventEmitter<void>;\r\n @Event() saveAsDraft: EventEmitter<void>;\r\n @Event() submitButtonClicked: EventEmitter<void>;\r\n @Event() nextButtonClicked: EventEmitter<void>;\r\n @Event() checkboxClicked: EventEmitter<void>;\r\n @Element() el: HTMLElement;\r\n\r\n componentDidLoad() {\r\n const selectedRows = this.el.querySelector('[slot=\"selected_rows\"]');\r\n const label = this.el.querySelector('[slot=\"label\"]');\r\n\r\n if (selectedRows) {\r\n selectedRows.classList.add('text-md-medium');\r\n }\r\n\r\n if (label) {\r\n label.classList.add('text-md-medium');\r\n }\r\n }\r\n\r\n @Watch('state')\r\n updateButtonState(newValue: StateType) {\r\n this.internalNextButtonState = newValue;\r\n }\r\n\r\n componentWillRender() {\r\n this.internalNextButtonState = this.nextButtonState;\r\n }\r\n\r\n onCheckboxClicked(event) {\r\n this.checked = event.detail;\r\n this.checkboxClicked.emit(this.checked);\r\n }\r\n\r\n onFirstButtonClicked() {\r\n if (this.firstButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.firstButtonClicked.emit(this.checked);\r\n } else {\r\n this.firstButtonClicked.emit();\r\n }\r\n } else {\r\n return;\r\n }\r\n }\r\n\r\n onSecondButtonClicked() {\r\n if (this.secondButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.secondButtonClicked.emit(this.checked);\r\n } else {\r\n this.secondButtonClicked.emit();\r\n }\r\n }\r\n }\r\n\r\n onThirdButtonClicked() {\r\n if (this.thirdButtonState === 'default') {\r\n if (this.showCheckbox) {\r\n this.thirdButtonClicked.emit(this.checked);\r\n } else {\r\n this.thirdButtonClicked.emit();\r\n }\r\n }\r\n }\r\n\r\n onPreviousButtonClicked() {\r\n this.previousButtonClicked.emit();\r\n }\r\n\r\n onSaveAsDraft() {\r\n this.saveAsDraft.emit();\r\n }\r\n\r\n onSubmitClicked() {\r\n this.submitButtonClicked.emit();\r\n }\r\n\r\n onNextButtonClicked() {\r\n this.nextButtonClicked.emit();\r\n }\r\n\r\n render() {\r\n return (\r\n <div class=\"action_panel_div\">\r\n {this.type === 'decision_panel' && (\r\n <div class=\"panel_content\">\r\n <div class=\"left_action\">\r\n <div class=\"rows_and_close_button\">\r\n {this.showCloseButton && <gb-button-close size=\"md\" color=\"primary\"></gb-button-close>}\r\n {this.showSelectedRows && <slot name=\"selected_rows\"></slot>}\r\n </div>\r\n {this.showCheckbox && (\r\n <gb-checkbox size=\"md\" state={StateEnum.Default} type=\"checkbox\" text={true} supporting-text={false} onCheckboxClicked={this.onCheckboxClicked.bind(this)}>\r\n <slot name=\"label\" slot=\"label\"></slot>\r\n </gb-checkbox>\r\n )}\r\n {this.showAmount && (\r\n <div class=\"amount\">\r\n <p class=\"amount_heading text-sm-medium\">Total amount:</p>\r\n <p class=\"amount_text text-lg-semi-bold\">{this.amount}</p>\r\n </div>\r\n )}\r\n {this.showFee && (\r\n <div class=\"amount\">\r\n <p class=\"amount_heading text-sm-medium\">Total fee:</p>\r\n <p class=\"amount_text text-lg-semi-bold\">{this.fee}</p>\r\n </div>\r\n )}\r\n </div>\r\n <div class={`right_action ${this.firstButton && this.secondButton && this.thirdButton && 'three_buttons'}`}>\r\n {this.firstButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.firstButtonState}\r\n hierarchy=\"primary\"\r\n icon=\"default\"\r\n icon-leading={this.firstButtonIconLeading ? true : false}\r\n icon-trailing={this.firstButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.firstButtonIconLeading}\r\n icon-trailing-swap={this.firstButtonIconTrailing}\r\n onClick={() => this.onFirstButtonClicked()}\r\n >\r\n <p>{this.firstButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.secondButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.secondButtonState}\r\n hierarchy=\"secondary_color\"\r\n icon=\"default\"\r\n icon-leading={this.secondButtonIconLeading ? true : false}\r\n icon-trailing={this.secondButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.secondButtonIconLeading}\r\n icon-trailing-swap={this.secondButtonIconTrailing}\r\n onClick={() => this.onSecondButtonClicked()}\r\n >\r\n <p>{this.secondButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.thirdButton && (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.thirdButtonState}\r\n hierarchy=\"secondary_gray\"\r\n icon=\"default\"\r\n icon-leading={this.thirdButtonIconLeading ? true : false}\r\n icon-trailing={this.thirdButtonIconTrailing ? true : false}\r\n icon-leading-swap={this.thirdButtonIconLeading}\r\n icon-trailing-swap={this.thirdButtonIconTrailing}\r\n onClick={() => this.onThirdButtonClicked()}\r\n >\r\n <p>{this.thirdButtonText}</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n )}\r\n {this.type === 'form_control' && (\r\n <div class=\"panel_content\">\r\n <div class={`actions ${this.showDraftButton ? 'draft_shown' : ''}`}>\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.previousButtonState}\r\n hierarchy=\"secondary_gray\"\r\n icon=\"default\"\r\n icon-leading={true}\r\n icon-leading-swap=\"assets/arrow-left-02.svg\"\r\n onClick={() => this.onPreviousButtonClicked()}\r\n >\r\n <p>Previous</p>\r\n </gb-button>\r\n </div>\r\n <div class=\"right\">\r\n {this.showDraftButton && (\r\n <div class=\"button_divs\">\r\n <gb-button size=\"xl\" hierarchy=\"secondary_color\" icon=\"default\" onClick={() => this.onSaveAsDraft()}>\r\n <p>Save as draft</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n {this.showSubmitButton ? (\r\n <div class=\"button_divs\">\r\n <gb-button size=\"xl\" hierarchy=\"primary\" icon=\"default\" onClick={() => this.onSubmitClicked()}>\r\n <p>{this.submitButtonText}</p>\r\n </gb-button>\r\n </div>\r\n ) : (\r\n <div class=\"button_divs\">\r\n <gb-button\r\n size=\"xl\"\r\n state={this.internalNextButtonState}\r\n hierarchy=\"primary\"\r\n icon=\"default\"\r\n icon-trailing={true}\r\n icon-trailing-swap=\"assets/arrow-right-02.svg\"\r\n onClick={() => this.onNextButtonClicked()}\r\n >\r\n <p>Next</p>\r\n </gb-button>\r\n </div>\r\n )}\r\n </div>\r\n </div>\r\n </div>\r\n )}\r\n </div>\r\n );\r\n }\r\n}\r\n"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as t,b as e}from"./p-Dlqa7tPI.js";export{s as setNonce}from"./p-Dlqa7tPI.js";import{g as o}from"./p-DQuL1Twl.js";var a=()=>{const e=import.meta.url;const o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return t(o)};a().then((async t=>{await o();return e(JSON.parse('[["p-0c80c28c",[[1,"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"],"leadingIconSvg":[32],"dropdownOpen":[32],"selectedItem":[32],"selectedItems":[32],"unselectedItems":[32],"searchItem":[32],"searchResults":[32],"internalItems":[32],"showCloseButton":[32],"clearSelection":[64]},[[4,"click","handleClickOutside"]],{"items":["updateResultsAndShowInDropdown"],"destructive":["watchDestructive"]}],[65,"gb-button-group",{"items":[16],"icon":[1],"label":[1],"internalItems":[32],"selectedValue":[32]}],[1,"gb-button-group-base",{"current":[4],"icon":[1],"state":[1],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[65,"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":[1,"icon-swap"],"showCloseButton":[1028,"show-close-button"],"options":[1040],"idOfInput":[513,"id-of-input"],"labelText":[513,"label-text"],"isReadOnly":[516,"is-read-only"],"results":[1040],"menuPosition":[1,"menu-position"],"icon":[1],"value":[1032],"required":[516],"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]},[[4,"click","handleClickOutside"]],{"options":["optionsChanged"],"value":["updateSelectedItems"]}],[1,"gb-password-button",{"state":[1],"isPasswordVisible":[32]}],[1,"gb-help-tooltip",{"showArrow":[4,"show-arrow"],"showSupportingText":[4,"show-supporting-text"],"showHelpTooltip":[32]}],[4,"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"],"leadingIconSvg":[32],"trailingIconSvg":[32]}],[1,"gb-tag",{"size":[1],"icon":[1],"action":[1],"flagSwap":[1,"flag-swap"],"checkbox":[4],"onTagClose":[64]}],[1,"gb-input-dropdown-menu-item",{"type":[1],"supportingText":[4,"supporting-text"],"selected":[1028],"state":[1],"color":[1]}],[1,"gb-tag-checkbox",{"checked":[4],"size":[1],"disabled":[4]}],[1,"gb-tag-close",{"size":[1]}],[1,"gb-tag-count",{"size":[1]}],[1,"gb-checkbox",{"checked":[4],"indeterminate":[4],"size":[1],"type":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"]}],[1,"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"],"leadingIconSvg":[32],"trailingIconSvg":[32],"internalButtonState":[32]},null,{"state":["updateButtonState"]}],[1,"gb-checkbox-base",{"state":[1025],"size":[1],"type":[1],"checked":[1028],"indeterminate":[1028]}],[1,"gb-tooltip",{"showArrow":[4,"show-arrow"],"arrow":[1],"showSupportingText":[4,"show-supporting-text"],"noWrap":[4,"no-wrap"]}],[1,"gb-avatar",{"size":[1],"placeholder":[4],"text":[4],"statusIcon":[1,"status-icon"],"state":[1],"icon":[1],"color":[1],"showBorder":[4,"show-border"],"weight":[1],"assignedColorClass":[32]}],[1,"gb-avatar-contrast-inner-border",{"weight":[1],"size":[1],"showBorder":[4,"show-border"]}],[1,"gb-status-indicator",{"statusIcon":[1,"status-icon"],"size":[1],"state":[1],"indicatorStateClass":[1,"indicator-state-class"]}]]],["p-429fda4b",[[1,"gb-table-header",{"showFilter":[4,"show-filter"],"showColumnOptions":[4,"show-column-options"],"tableHeading":[4,"table-heading"],"showSearch":[4,"show-search"],"showExport":[4,"show-export"],"showRefreshButton":[4,"show-refresh-button"],"tableHeadingLabel":[1,"table-heading-label"],"showLayoutToggle":[4,"show-layout-toggle"],"filterState":[1,"filter-state"],"filterCount":[2,"filter-count"],"showEntireData":[4,"show-entire-data"],"items":[32],"width":[32],"buttonIcon":[32],"showExportDropdown":[32]}]]],["p-653c5adc",[[1,"gb-pagination",{"type":[1],"shape":[1],"breakpoint":[1025],"currentPage":[1026,"current-page"],"totalPages":[1026,"total-pages"],"entries":[1040],"selectedPageSize":[32],"defaultSelected":[32],"pages":[32],"width":[32],"internalTotalPages":[32]},null,{"totalPages":["onTotalPagesChange"]}]]],["p-faff9abd",[[1,"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":[4,"list-group-one"],"listGroupTwo":[4,"list-group-two"],"listGroupThree":[4,"list-group-three"],"color":[1],"showBorder":[4,"show-border"],"currentTheme":[1,"current-theme"]}]]],["p-aaf9bd86",[[1,"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"],"activeIndex":[1026,"active-index"],"activePrimaryItem":[1025,"active-primary-item"],"activeSecondaryItem":[1025,"active-secondary-item"],"leadingIconSvg":[32],"sideBarItemClicked":[64]}]]],["p-e6ec7ef3",[[1,"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"],"idOfInput":[513,"id-of-input"],"isReadOnly":[516,"is-read-only"],"value":[1032],"icon":[1],"results":[1040],"content":[32],"inputValue":[32],"selectedStaff":[32],"paddingLeft":[32],"paddingTop":[32],"show":[32],"staffInfo":[32],"selectedItems":[32],"unselectedItems":[32]},[[4,"click","handleClickOutside"]],{"value":["updateSelectedItems"]}]]],["p-fe614d73",[[0,"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]}]]],["p-25006cba",[[1,"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"],"showStandardCopyButton":[32],"showTooltip":[32],"copied":[32],"isDownloaded":[32],"width":[32]}]]],["p-d49bd602",[[1,"gb-checkbox-group",{"size":[1],"breakpoint":[1],"icon":[1],"selected":[4],"type":[1]}]]],["p-33500c4a",[[1,"gb-top-bar-sidemenu",{"applicationName":[1,"application-name"],"applicationIcon":[1,"application-icon"],"activeIndex":[2,"active-index"],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"leadingIconSvg":[32]}]]],["p-c9a6c666",[[1,"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]}]]],["p-e9ca342d",[[1,"gb-horizontal-tabs",{"type":[1],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"sixthTabName":[1,"sixth-tab-name"],"seventhTabName":[1,"seventh-tab-name"],"eighthTabName":[1,"eighth-tab-name"],"ninthTabName":[1,"ninth-tab-name"],"tenthTabName":[1,"tenth-tab-name"],"eleventhTabName":[1,"eleventh-tab-name"],"twelfthTabName":[1,"twelfth-tab-name"],"thirteenthTabName":[1,"thirteenth-tab-name"],"fourteenthTabName":[1,"fourteenth-tab-name"],"fifteenthTabName":[1,"fifteenth-tab-name"],"sixteenthTabName":[1,"sixteenth-tab-name"],"seventeenthTabName":[1,"seventeenth-tab-name"],"eighteenthTabName":[1,"eighteenth-tab-name"],"nineteenthTabName":[1,"nineteenth-tab-name"],"twentiethTabName":[1,"twentieth-tab-name"],"activeIndex":[1026,"active-index"],"internalActiveIndex":[32]},null,{"activeIndex":["setActiveIndex"]}]]],["p-663dec9f",[[1,"gb-avatar-group",{"size":[1],"moreUsers":[4,"more-users"],"addMoreButton":[4,"add-more-button"],"text":[4],"state":[1],"images":[16]}]]],["p-6b677148",[[1,"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"],"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"],"showDraftButton":[4,"show-draft-button"],"submitButtonText":[1,"submit-button-text"],"showAmount":[4,"show-amount"],"showFee":[4,"show-fee"],"amount":[1],"fee":[1],"checked":[32]}]]],["p-0fab63c2",[[1,"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"],"onNavBarItemClicked":[64]}]]],["p-10e59c76",[[1,"gb-avatar-profile-photo",{"placeholder":[4],"text":[4],"size":[1],"verified":[4],"icon":[1]}]]],["p-12983581",[[1,"gb-help-dropdown",{"showLogError":[4,"show-log-error"],"onHelpItemClicked":[64]}]]],["p-0cb13263",[[1,"gb-toast",{"color":[1025],"mainText":[1,"main-text"],"supportingText":[1,"supporting-text"],"size":[1],"breakpoint":[1],"icon":[1],"xCloseButton":[4,"x-close-button"],"actions":[4],"showSupportingText":[4,"show-supporting-text"],"internalColor":[32]},null,{"color":["onColorChange"]}]]],["p-c7b733f4",[[1,"gb-comment",{"heading":[1],"state":[1025],"noCommentText":[1,"no-comment-text"],"noCommentTextSub":[1,"no-comment-text-sub"],"comments":[16]}]]],["p-239e2791",[[1,"gb-notification-pane",{"state":[1],"notifications":[1040],"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}]]],["p-4f81d591",[[1,"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"],"leftValue":[32],"rightValue":[32]}]]],["p-a5151a5d",[[1,"gb-stepper-horizontal-icons-centered",{"size":[1],"steps":[2],"type":[1],"breakpoint":[1],"firstStepState":[1,"first-step-state"],"secondStepState":[1,"second-step-state"],"thirdStepState":[1,"third-step-state"],"fourthStepState":[1,"fourth-step-state"],"fifthStepState":[1,"fifth-step-state"],"sixthStepState":[1,"sixth-step-state"],"seventhStepState":[1,"seventh-step-state"],"firstStepStatus":[1,"first-step-status"],"secondStepStatus":[1,"second-step-status"],"thirdStepStatus":[1,"third-step-status"],"fourthStepStatus":[1,"fourth-step-status"],"fifthStepStatus":[1,"fifth-step-status"],"sixthStepStatus":[1,"sixth-step-status"],"seventhStepStatus":[1,"seventh-step-status"],"firstStepLabel":[1,"first-step-label"],"secondStepLabel":[1,"second-step-label"],"thirdStepLabel":[1,"third-step-label"],"fourthStepLabel":[1,"fourth-step-label"],"fifthStepLabel":[1,"fifth-step-label"],"sixthStepLabel":[1,"sixth-step-label"],"seventhStepLabel":[1,"seventh-step-label"],"firstStepSupportingText":[1,"first-step-supporting-text"],"secondStepSupportingText":[1,"second-step-supporting-text"],"thirdStepSupportingText":[1,"third-step-supporting-text"],"fourthStepSupportingText":[1,"fourth-step-supporting-text"],"fifthStepSupportingText":[1,"fifth-step-supporting-text"],"sixthStepSupportingText":[1,"sixth-step-supporting-text"],"seventhStepSupportingText":[1,"seventh-step-supporting-text"]}]]],["p-74f9ff8c",[[1,"gb-stepper-horizontal-line-with-text",{"size":[1],"breakpoint":[1],"showContent":[4,"show-content"],"showSupportingText":[1028,"show-supporting-text"],"firstStepState":[1,"first-step-state"],"secondStepState":[1,"second-step-state"],"thirdStepState":[1,"third-step-state"],"fourthStepState":[1,"fourth-step-state"],"fifthStepState":[1,"fifth-step-state"],"sixthStepState":[1,"sixth-step-state"],"seventhStepState":[1,"seventh-step-state"],"firstStepStatus":[1,"first-step-status"],"secondStepStatus":[1,"second-step-status"],"thirdStepStatus":[1,"third-step-status"],"fourthStepStatus":[1,"fourth-step-status"],"fifthStepStatus":[1,"fifth-step-status"],"sixthStepStatus":[1,"sixth-step-status"],"seventhStepStatus":[1,"seventh-step-status"],"firstStepLabel":[1,"first-step-label"],"secondStepLabel":[1,"second-step-label"],"thirdStepLabel":[1,"third-step-label"],"fourthStepLabel":[1,"fourth-step-label"],"fifthStepLabel":[1,"fifth-step-label"],"sixthStepLabel":[1,"sixth-step-label"],"seventhStepLabel":[1,"seventh-step-label"],"firstStepSupportingText":[1,"first-step-supporting-text"],"secondStepSupportingText":[1,"second-step-supporting-text"],"thirdStepSupportingText":[1,"third-step-supporting-text"],"fourthStepSupportingText":[1,"fourth-step-supporting-text"],"fifthStepSupportingText":[1,"fifth-step-supporting-text"],"sixthStepSupportingText":[1,"sixth-step-supporting-text"],"seventhStepSupportingText":[1,"seventh-step-supporting-text"],"width":[32]}]]],["p-1fa05507",[[1,"gb-stepper-vertical-icons-with-text",{"size":[1],"connector":[4],"type":[1],"steps":[16],"internalSteps":[32],"internalState":[32],"internalStatus":[32]},null,{"steps":["onStepsChanged"]}]]],["p-0a292bce",[[1,"gb-top-bar",{"category":[1],"firstTabIcon":[1,"first-tab-icon"],"secondTabIcon":[1,"second-tab-icon"],"thirdTabIcon":[1,"third-tab-icon"],"fourthTabIcon":[1,"fourth-tab-icon"],"fifthTabIcon":[1,"fifth-tab-icon"],"sixthTabIcon":[1,"sixth-tab-icon"],"seventhTabIcon":[1,"seventh-tab-icon"],"firstTabLabel":[1,"first-tab-label"],"secondTabLabel":[1,"second-tab-label"],"thirdTabLabel":[1,"third-tab-label"],"fourthTabLabel":[1,"fourth-tab-label"],"fifthTabLabel":[1,"fifth-tab-label"],"sixthTabLabel":[1,"sixth-tab-label"],"seventhTabLabel":[1,"seventh-tab-label"],"firstTabIconOnly":[4,"first-tab-icon-only"],"secondTabIconOnly":[4,"second-tab-icon-only"],"thirdTabIconOnly":[4,"third-tab-icon-only"],"fourthTabIconOnly":[4,"fourth-tab-icon-only"],"fifthTabIconOnly":[4,"fifth-tab-icon-only"],"sixthTabIconOnly":[4,"sixth-tab-icon-only"],"seventhTabIconOnly":[4,"seventh-tab-icon-only"],"activeIndex":[1026,"active-index"]}]]],["p-865ad97c",[[1,"gb-breadcrumbs",{"type":[1],"divider":[1],"breadcrumbs":[16],"icon":[1],"visibleBreadcrumbs":[32]}]]],["p-8b05028f",[[1,"gb-empty-state",{"size":[1],"icon":[1],"message":[1],"description":[1],"cta":[4],"width":[32]}]]],["p-6f7e87e5",[[1,"gb-quick-action-card",{"color":[1],"icon":[1],"label":[1]}]]],["p-cabc2976",[[1,"gb-quick-action-icon",{"icon":[1],"label":[1],"isHovered":[32]}]]],["p-14acad66",[[1,"gb-toggle",{"size":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"],"pressed":[4]}]]],["p-50452901",[[1,"gb-token-field-compact",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showSupportingText":[4,"show-supporting-text"],"supportingText":[1,"supporting-text"]}]]],["p-faec4074",[[1,"gb-token-field-compressed",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showHintText":[4,"show-hint-text"],"hintText":[1,"hint-text"]}]]],["p-e5934152",[[1,"gb-wysiwyg-tooltip",{"arrow":[1],"breakpoint":[1]}]]],["p-7a9f994d",[[0,"gb-carousel-arrow",{"size":[1],"chevron":[1]}]]],["p-7d62171a",[[1,"gb-pagination-dot-group",{"size":[1],"type":[1],"color":[1],"framed":[4]}]]],["p-25536e7a",[[0,"gb-pagination-dot-indicator",{"current":[4],"type":[1],"size":[1]}]]],["p-96cbd5e7",[[1,"gb-progress-circle",{"size":[1],"shape":[1],"label":[4],"progress":[2]},null,{"progress":["handleProgressChange"]}]]],["p-a3395a1b",[[1,"gb-scrollbar",{"length":[1]}]]],["p-4fd494d9",[[1,"gb-table-cell",{"type":[1]}]]],["p-0534d0bf",[[1,"gb-checkbox-group-item",{"size":[1],"type":[1],"state":[1],"breakpoint":[1],"showCost":[4,"show-cost"],"selected":[1028]}]]],["p-5de5fcd7",[[1,"gb-vertical-tabs",{"size":[1],"type":[1],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"sixthTabName":[1,"sixth-tab-name"],"seventhTabName":[1,"seventh-tab-name"],"eighthTabName":[1,"eighth-tab-name"],"ninthTabName":[1,"ninth-tab-name"],"tenthTabName":[1,"tenth-tab-name"],"eleventhTabName":[1,"eleventh-tab-name"],"twelfthTabName":[1,"twelfth-tab-name"],"thirteenthTabName":[1,"thirteenth-tab-name"],"fourteenthTabName":[1,"fourteenth-tab-name"],"fifteenthTabName":[1,"fifteenth-tab-name"],"sixteenthTabName":[1,"sixteenth-tab-name"],"seventeenthTabName":[1,"seventeenth-tab-name"],"eighteenthTabName":[1,"eighteenth-tab-name"],"nineteenthTabName":[1,"nineteenth-tab-name"],"twentiethTabName":[1,"twentieth-tab-name"],"activeIndex":[1026,"active-index"]}]]],["p-dbd605b9",[[1,"gb-file-upload-item-base",{"icon":[1],"label":[1],"showLabel":[4,"show-label"],"state":[1],"heightSize":[1,"height-size"],"fileType":[1,"file-type"],"progress":[2],"fileSize":[2,"file-size"],"fileName":[1,"file-name"],"internalState":[32],"internalProgress":[32]},null,{"state":["onStateChange"],"progress":["onProgressChange"]}]]],["p-2cfd38a1",[[1,"gb-avatar-add-button",{"size":[1],"showToolTip":[1028,"show-tool-tip"],"state":[1],"el":[16]}]]],["p-a66c3127",[[1,"gb-slider-control-handle",{"value":[1],"type":[1],"isHovered":[32],"isFocused":[32]}]]],["p-f04013f2",[[1,"gb-top-bar-item",{"state":[1],"iconOnly":[4,"icon-only"],"category":[1],"label":[1],"icon":[1],"leadingIconSvg":[32],"showTooltip":[32]}]]],["p-50628cf3",[[1,"gb-breadcrumb-button-base",{"current":[4],"type":[1],"icon":[4],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}]]],["p-51c88d16",[[1,"gb-comment-item",{"name":[1],"duty":[1],"comment":[1],"timeStamp":[1,"time-stamp"],"connector":[4]}]]],["p-742e4cda",[[1,"gb-header-icon",{"state":[1],"showIndicator":[4,"show-indicator"],"icon":[1]}]]],["p-d8429943",[[1,"gb-notification-content",{"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}]]],["p-51889dd0",[[1,"gb-toast-button",{"state":[1],"color":[1]}]]],["p-1a286635",[[1,"gb-toggle-base",{"size":[1],"state":[1],"pressed":[1028]}]]],["p-da0c9bd5",[[1,"gb-wysiwyg-editor-icon",{"active":[4],"type":[1],"state":[1]}]]],["p-c914b51c",[[1,"gb-export-sub-dropdown",{"showEntireData":[4,"show-entire-data"]}],[1,"gb-export-dropdown-item",{"icon":[4],"state":[1],"type":[1]}],[1,"gb-export-sub-dropdown-item",{"icon":[1],"state":[1],"leadingIconSvg":[32]}]]],["p-9c05ca59",[[1,"gb-filter-button",{"state":[1],"iconOnly":[4,"icon-only"]}],[1,"gb-export-dropdown",{"state":[1],"showEntireData":[4,"show-entire-data"],"showFirstSubDropdown":[32],"showSecondSubDropdown":[32]}]]],["p-bc40b66d",[[1,"gb-avatar-label-group",{"size":[1],"statusIcon":[1,"status-icon"],"state":[1],"placeholder":[4],"text":[4],"color":[1],"showBorder":[4,"show-border"]}],[1,"gb-theme-tab",{"theme":[1025],"currentActiveTab":[1025,"current-active-tab"]}]]],["p-c7ed2194",[[1,"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]}]]],["p-bee5141c",[[1,"gb-icon-button-base",{"current":[4],"icon":[1],"label":[1],"leadingIconSvg":[32],"showTooltip":[32]}]]],["p-e01d6201",[[1,"gb-pagination-button-group-base",{"icon":[1],"state":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[1,"gb-pagination-number-base",{"shape":[1],"state":[1]}]]],["p-c6d238bb",[[1,"gb-card-icon",{"color":[1],"icon":[1],"leadingIconSvg":[32]}]]],["p-7a40ef38",[[1,"gb-mega-input-field-base",{"size":[1],"state":[1],"inputValue":[32]}]]],["p-3250b358",[[1,"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]}],[1,"gb-badge-close",{"color":[1],"type":[1]}]]],["p-ff8ca78a",[[1,"gb-tab-button-base",{"current":[4],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"type":[1],"tabName":[1,"tab-name"],"alignment":[1]}]]],["p-96dc6fcd",[[1,"gb-simple-side-bar-item",{"state":[1],"type":[1],"label":[1],"icon":[1],"category":[1],"showArrow":[4,"show-arrow"],"showBadge":[4,"show-badge"],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}],[1,"gb-collapse-button",{"color":[1],"isCollapsed":[1028,"is-collapsed"],"action":[1025],"isHovered":[1028,"is-hovered"],"collapseSidebar":[64],"expandSidebar":[64]}],[1,"gb-complex-primary-side-bar-item",{"category":[1],"itemStyle":[1,"item-style"],"state":[1],"icon":[1],"label":[1],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}],[1,"gb-complex-secondary-side-bar-item",{"state":[1],"type":[1],"category":[1],"label":[1],"icon":[1],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}]]],["p-97bc1e88",[[1,"gb-button-close",{"size":[1],"color":[1]}]]],["p-94b09042",[[1,"gb-progress-bar",{"progress":[2],"showLabel":[4,"show-label"],"labelPosition":[1,"label-position"]}],[1,"gb-file-type-icon",{"fileStyle":[1,"file-style"],"fileType":[1,"file-type"]}]]],["p-87fc3e2d",[[1,"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"],"internalState":[32],"internalStatus":[32]},null,{"status":["onStatusChange"],"state":["onStateChange"]}],[1,"gb-featured-icon",{"size":[1],"destructive":[4],"icon":[1],"leadingIconSvg":[32]}]]]]'),t)}));
|
|
1
|
+
import{p as t,b as e}from"./p-Dlqa7tPI.js";export{s as setNonce}from"./p-Dlqa7tPI.js";import{g as o}from"./p-DQuL1Twl.js";var a=()=>{const e=import.meta.url;const o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return t(o)};a().then((async t=>{await o();return e(JSON.parse('[["p-0c80c28c",[[1,"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"],"leadingIconSvg":[32],"dropdownOpen":[32],"selectedItem":[32],"selectedItems":[32],"unselectedItems":[32],"searchItem":[32],"searchResults":[32],"internalItems":[32],"showCloseButton":[32],"clearSelection":[64]},[[4,"click","handleClickOutside"]],{"items":["updateResultsAndShowInDropdown"],"destructive":["watchDestructive"]}],[65,"gb-button-group",{"items":[16],"icon":[1],"label":[1],"internalItems":[32],"selectedValue":[32]}],[1,"gb-button-group-base",{"current":[4],"icon":[1],"state":[1],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[65,"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":[1,"icon-swap"],"showCloseButton":[1028,"show-close-button"],"options":[1040],"idOfInput":[513,"id-of-input"],"labelText":[513,"label-text"],"isReadOnly":[516,"is-read-only"],"results":[1040],"menuPosition":[1,"menu-position"],"icon":[1],"value":[1032],"required":[516],"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]},[[4,"click","handleClickOutside"]],{"options":["optionsChanged"],"value":["updateSelectedItems"]}],[1,"gb-password-button",{"state":[1],"isPasswordVisible":[32]}],[1,"gb-help-tooltip",{"showArrow":[4,"show-arrow"],"showSupportingText":[4,"show-supporting-text"],"showHelpTooltip":[32]}],[4,"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"],"leadingIconSvg":[32],"trailingIconSvg":[32]}],[1,"gb-tag",{"size":[1],"icon":[1],"action":[1],"flagSwap":[1,"flag-swap"],"checkbox":[4],"onTagClose":[64]}],[1,"gb-input-dropdown-menu-item",{"type":[1],"supportingText":[4,"supporting-text"],"selected":[1028],"state":[1],"color":[1]}],[1,"gb-tag-checkbox",{"checked":[4],"size":[1],"disabled":[4]}],[1,"gb-tag-close",{"size":[1]}],[1,"gb-tag-count",{"size":[1]}],[1,"gb-checkbox",{"checked":[4],"indeterminate":[4],"size":[1],"type":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"]}],[1,"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"],"leadingIconSvg":[32],"trailingIconSvg":[32],"internalButtonState":[32]},null,{"state":["updateButtonState"]}],[1,"gb-checkbox-base",{"state":[1025],"size":[1],"type":[1],"checked":[1028],"indeterminate":[1028]}],[1,"gb-tooltip",{"showArrow":[4,"show-arrow"],"arrow":[1],"showSupportingText":[4,"show-supporting-text"],"noWrap":[4,"no-wrap"]}],[1,"gb-avatar",{"size":[1],"placeholder":[4],"text":[4],"statusIcon":[1,"status-icon"],"state":[1],"icon":[1],"color":[1],"showBorder":[4,"show-border"],"weight":[1],"assignedColorClass":[32]}],[1,"gb-avatar-contrast-inner-border",{"weight":[1],"size":[1],"showBorder":[4,"show-border"]}],[1,"gb-status-indicator",{"statusIcon":[1,"status-icon"],"size":[1],"state":[1],"indicatorStateClass":[1,"indicator-state-class"]}]]],["p-429fda4b",[[1,"gb-table-header",{"showFilter":[4,"show-filter"],"showColumnOptions":[4,"show-column-options"],"tableHeading":[4,"table-heading"],"showSearch":[4,"show-search"],"showExport":[4,"show-export"],"showRefreshButton":[4,"show-refresh-button"],"tableHeadingLabel":[1,"table-heading-label"],"showLayoutToggle":[4,"show-layout-toggle"],"filterState":[1,"filter-state"],"filterCount":[2,"filter-count"],"showEntireData":[4,"show-entire-data"],"items":[32],"width":[32],"buttonIcon":[32],"showExportDropdown":[32]}]]],["p-653c5adc",[[1,"gb-pagination",{"type":[1],"shape":[1],"breakpoint":[1025],"currentPage":[1026,"current-page"],"totalPages":[1026,"total-pages"],"entries":[1040],"selectedPageSize":[32],"defaultSelected":[32],"pages":[32],"width":[32],"internalTotalPages":[32]},null,{"totalPages":["onTotalPagesChange"]}]]],["p-faff9abd",[[1,"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":[4,"list-group-one"],"listGroupTwo":[4,"list-group-two"],"listGroupThree":[4,"list-group-three"],"color":[1],"showBorder":[4,"show-border"],"currentTheme":[1,"current-theme"]}]]],["p-aaf9bd86",[[1,"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"],"activeIndex":[1026,"active-index"],"activePrimaryItem":[1025,"active-primary-item"],"activeSecondaryItem":[1025,"active-secondary-item"],"leadingIconSvg":[32],"sideBarItemClicked":[64]}]]],["p-e6ec7ef3",[[1,"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"],"idOfInput":[513,"id-of-input"],"isReadOnly":[516,"is-read-only"],"value":[1032],"icon":[1],"results":[1040],"content":[32],"inputValue":[32],"selectedStaff":[32],"paddingLeft":[32],"paddingTop":[32],"show":[32],"staffInfo":[32],"selectedItems":[32],"unselectedItems":[32]},[[4,"click","handleClickOutside"]],{"value":["updateSelectedItems"]}]]],["p-fe614d73",[[0,"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]}]]],["p-25006cba",[[1,"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"],"showStandardCopyButton":[32],"showTooltip":[32],"copied":[32],"isDownloaded":[32],"width":[32]}]]],["p-d49bd602",[[1,"gb-checkbox-group",{"size":[1],"breakpoint":[1],"icon":[1],"selected":[4],"type":[1]}]]],["p-33500c4a",[[1,"gb-top-bar-sidemenu",{"applicationName":[1,"application-name"],"applicationIcon":[1,"application-icon"],"activeIndex":[2,"active-index"],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"leadingIconSvg":[32]}]]],["p-c9a6c666",[[1,"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]}]]],["p-e9ca342d",[[1,"gb-horizontal-tabs",{"type":[1],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"sixthTabName":[1,"sixth-tab-name"],"seventhTabName":[1,"seventh-tab-name"],"eighthTabName":[1,"eighth-tab-name"],"ninthTabName":[1,"ninth-tab-name"],"tenthTabName":[1,"tenth-tab-name"],"eleventhTabName":[1,"eleventh-tab-name"],"twelfthTabName":[1,"twelfth-tab-name"],"thirteenthTabName":[1,"thirteenth-tab-name"],"fourteenthTabName":[1,"fourteenth-tab-name"],"fifteenthTabName":[1,"fifteenth-tab-name"],"sixteenthTabName":[1,"sixteenth-tab-name"],"seventeenthTabName":[1,"seventeenth-tab-name"],"eighteenthTabName":[1,"eighteenth-tab-name"],"nineteenthTabName":[1,"nineteenth-tab-name"],"twentiethTabName":[1,"twentieth-tab-name"],"activeIndex":[1026,"active-index"],"internalActiveIndex":[32]},null,{"activeIndex":["setActiveIndex"]}]]],["p-663dec9f",[[1,"gb-avatar-group",{"size":[1],"moreUsers":[4,"more-users"],"addMoreButton":[4,"add-more-button"],"text":[4],"state":[1],"images":[16]}]]],["p-8f79c081",[[1,"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"],"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"]}]]],["p-0fab63c2",[[1,"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"],"onNavBarItemClicked":[64]}]]],["p-10e59c76",[[1,"gb-avatar-profile-photo",{"placeholder":[4],"text":[4],"size":[1],"verified":[4],"icon":[1]}]]],["p-12983581",[[1,"gb-help-dropdown",{"showLogError":[4,"show-log-error"],"onHelpItemClicked":[64]}]]],["p-0cb13263",[[1,"gb-toast",{"color":[1025],"mainText":[1,"main-text"],"supportingText":[1,"supporting-text"],"size":[1],"breakpoint":[1],"icon":[1],"xCloseButton":[4,"x-close-button"],"actions":[4],"showSupportingText":[4,"show-supporting-text"],"internalColor":[32]},null,{"color":["onColorChange"]}]]],["p-c7b733f4",[[1,"gb-comment",{"heading":[1],"state":[1025],"noCommentText":[1,"no-comment-text"],"noCommentTextSub":[1,"no-comment-text-sub"],"comments":[16]}]]],["p-239e2791",[[1,"gb-notification-pane",{"state":[1],"notifications":[1040],"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}]]],["p-4f81d591",[[1,"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"],"leftValue":[32],"rightValue":[32]}]]],["p-a5151a5d",[[1,"gb-stepper-horizontal-icons-centered",{"size":[1],"steps":[2],"type":[1],"breakpoint":[1],"firstStepState":[1,"first-step-state"],"secondStepState":[1,"second-step-state"],"thirdStepState":[1,"third-step-state"],"fourthStepState":[1,"fourth-step-state"],"fifthStepState":[1,"fifth-step-state"],"sixthStepState":[1,"sixth-step-state"],"seventhStepState":[1,"seventh-step-state"],"firstStepStatus":[1,"first-step-status"],"secondStepStatus":[1,"second-step-status"],"thirdStepStatus":[1,"third-step-status"],"fourthStepStatus":[1,"fourth-step-status"],"fifthStepStatus":[1,"fifth-step-status"],"sixthStepStatus":[1,"sixth-step-status"],"seventhStepStatus":[1,"seventh-step-status"],"firstStepLabel":[1,"first-step-label"],"secondStepLabel":[1,"second-step-label"],"thirdStepLabel":[1,"third-step-label"],"fourthStepLabel":[1,"fourth-step-label"],"fifthStepLabel":[1,"fifth-step-label"],"sixthStepLabel":[1,"sixth-step-label"],"seventhStepLabel":[1,"seventh-step-label"],"firstStepSupportingText":[1,"first-step-supporting-text"],"secondStepSupportingText":[1,"second-step-supporting-text"],"thirdStepSupportingText":[1,"third-step-supporting-text"],"fourthStepSupportingText":[1,"fourth-step-supporting-text"],"fifthStepSupportingText":[1,"fifth-step-supporting-text"],"sixthStepSupportingText":[1,"sixth-step-supporting-text"],"seventhStepSupportingText":[1,"seventh-step-supporting-text"]}]]],["p-74f9ff8c",[[1,"gb-stepper-horizontal-line-with-text",{"size":[1],"breakpoint":[1],"showContent":[4,"show-content"],"showSupportingText":[1028,"show-supporting-text"],"firstStepState":[1,"first-step-state"],"secondStepState":[1,"second-step-state"],"thirdStepState":[1,"third-step-state"],"fourthStepState":[1,"fourth-step-state"],"fifthStepState":[1,"fifth-step-state"],"sixthStepState":[1,"sixth-step-state"],"seventhStepState":[1,"seventh-step-state"],"firstStepStatus":[1,"first-step-status"],"secondStepStatus":[1,"second-step-status"],"thirdStepStatus":[1,"third-step-status"],"fourthStepStatus":[1,"fourth-step-status"],"fifthStepStatus":[1,"fifth-step-status"],"sixthStepStatus":[1,"sixth-step-status"],"seventhStepStatus":[1,"seventh-step-status"],"firstStepLabel":[1,"first-step-label"],"secondStepLabel":[1,"second-step-label"],"thirdStepLabel":[1,"third-step-label"],"fourthStepLabel":[1,"fourth-step-label"],"fifthStepLabel":[1,"fifth-step-label"],"sixthStepLabel":[1,"sixth-step-label"],"seventhStepLabel":[1,"seventh-step-label"],"firstStepSupportingText":[1,"first-step-supporting-text"],"secondStepSupportingText":[1,"second-step-supporting-text"],"thirdStepSupportingText":[1,"third-step-supporting-text"],"fourthStepSupportingText":[1,"fourth-step-supporting-text"],"fifthStepSupportingText":[1,"fifth-step-supporting-text"],"sixthStepSupportingText":[1,"sixth-step-supporting-text"],"seventhStepSupportingText":[1,"seventh-step-supporting-text"],"width":[32]}]]],["p-1fa05507",[[1,"gb-stepper-vertical-icons-with-text",{"size":[1],"connector":[4],"type":[1],"steps":[16],"internalSteps":[32],"internalState":[32],"internalStatus":[32]},null,{"steps":["onStepsChanged"]}]]],["p-0a292bce",[[1,"gb-top-bar",{"category":[1],"firstTabIcon":[1,"first-tab-icon"],"secondTabIcon":[1,"second-tab-icon"],"thirdTabIcon":[1,"third-tab-icon"],"fourthTabIcon":[1,"fourth-tab-icon"],"fifthTabIcon":[1,"fifth-tab-icon"],"sixthTabIcon":[1,"sixth-tab-icon"],"seventhTabIcon":[1,"seventh-tab-icon"],"firstTabLabel":[1,"first-tab-label"],"secondTabLabel":[1,"second-tab-label"],"thirdTabLabel":[1,"third-tab-label"],"fourthTabLabel":[1,"fourth-tab-label"],"fifthTabLabel":[1,"fifth-tab-label"],"sixthTabLabel":[1,"sixth-tab-label"],"seventhTabLabel":[1,"seventh-tab-label"],"firstTabIconOnly":[4,"first-tab-icon-only"],"secondTabIconOnly":[4,"second-tab-icon-only"],"thirdTabIconOnly":[4,"third-tab-icon-only"],"fourthTabIconOnly":[4,"fourth-tab-icon-only"],"fifthTabIconOnly":[4,"fifth-tab-icon-only"],"sixthTabIconOnly":[4,"sixth-tab-icon-only"],"seventhTabIconOnly":[4,"seventh-tab-icon-only"],"activeIndex":[1026,"active-index"]}]]],["p-865ad97c",[[1,"gb-breadcrumbs",{"type":[1],"divider":[1],"breadcrumbs":[16],"icon":[1],"visibleBreadcrumbs":[32]}]]],["p-8b05028f",[[1,"gb-empty-state",{"size":[1],"icon":[1],"message":[1],"description":[1],"cta":[4],"width":[32]}]]],["p-6f7e87e5",[[1,"gb-quick-action-card",{"color":[1],"icon":[1],"label":[1]}]]],["p-cabc2976",[[1,"gb-quick-action-icon",{"icon":[1],"label":[1],"isHovered":[32]}]]],["p-14acad66",[[1,"gb-toggle",{"size":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"],"pressed":[4]}]]],["p-50452901",[[1,"gb-token-field-compact",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showSupportingText":[4,"show-supporting-text"],"supportingText":[1,"supporting-text"]}]]],["p-faec4074",[[1,"gb-token-field-compressed",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showHintText":[4,"show-hint-text"],"hintText":[1,"hint-text"]}]]],["p-e5934152",[[1,"gb-wysiwyg-tooltip",{"arrow":[1],"breakpoint":[1]}]]],["p-7a9f994d",[[0,"gb-carousel-arrow",{"size":[1],"chevron":[1]}]]],["p-7d62171a",[[1,"gb-pagination-dot-group",{"size":[1],"type":[1],"color":[1],"framed":[4]}]]],["p-25536e7a",[[0,"gb-pagination-dot-indicator",{"current":[4],"type":[1],"size":[1]}]]],["p-96cbd5e7",[[1,"gb-progress-circle",{"size":[1],"shape":[1],"label":[4],"progress":[2]},null,{"progress":["handleProgressChange"]}]]],["p-a3395a1b",[[1,"gb-scrollbar",{"length":[1]}]]],["p-4fd494d9",[[1,"gb-table-cell",{"type":[1]}]]],["p-0534d0bf",[[1,"gb-checkbox-group-item",{"size":[1],"type":[1],"state":[1],"breakpoint":[1],"showCost":[4,"show-cost"],"selected":[1028]}]]],["p-5de5fcd7",[[1,"gb-vertical-tabs",{"size":[1],"type":[1],"firstTabName":[1,"first-tab-name"],"secondTabName":[1,"second-tab-name"],"thirdTabName":[1,"third-tab-name"],"fourthTabName":[1,"fourth-tab-name"],"fifthTabName":[1,"fifth-tab-name"],"sixthTabName":[1,"sixth-tab-name"],"seventhTabName":[1,"seventh-tab-name"],"eighthTabName":[1,"eighth-tab-name"],"ninthTabName":[1,"ninth-tab-name"],"tenthTabName":[1,"tenth-tab-name"],"eleventhTabName":[1,"eleventh-tab-name"],"twelfthTabName":[1,"twelfth-tab-name"],"thirteenthTabName":[1,"thirteenth-tab-name"],"fourteenthTabName":[1,"fourteenth-tab-name"],"fifteenthTabName":[1,"fifteenth-tab-name"],"sixteenthTabName":[1,"sixteenth-tab-name"],"seventeenthTabName":[1,"seventeenth-tab-name"],"eighteenthTabName":[1,"eighteenth-tab-name"],"nineteenthTabName":[1,"nineteenth-tab-name"],"twentiethTabName":[1,"twentieth-tab-name"],"activeIndex":[1026,"active-index"]}]]],["p-dbd605b9",[[1,"gb-file-upload-item-base",{"icon":[1],"label":[1],"showLabel":[4,"show-label"],"state":[1],"heightSize":[1,"height-size"],"fileType":[1,"file-type"],"progress":[2],"fileSize":[2,"file-size"],"fileName":[1,"file-name"],"internalState":[32],"internalProgress":[32]},null,{"state":["onStateChange"],"progress":["onProgressChange"]}]]],["p-2cfd38a1",[[1,"gb-avatar-add-button",{"size":[1],"showToolTip":[1028,"show-tool-tip"],"state":[1],"el":[16]}]]],["p-a66c3127",[[1,"gb-slider-control-handle",{"value":[1],"type":[1],"isHovered":[32],"isFocused":[32]}]]],["p-f04013f2",[[1,"gb-top-bar-item",{"state":[1],"iconOnly":[4,"icon-only"],"category":[1],"label":[1],"icon":[1],"leadingIconSvg":[32],"showTooltip":[32]}]]],["p-50628cf3",[[1,"gb-breadcrumb-button-base",{"current":[4],"type":[1],"icon":[4],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}]]],["p-51c88d16",[[1,"gb-comment-item",{"name":[1],"duty":[1],"comment":[1],"timeStamp":[1,"time-stamp"],"connector":[4]}]]],["p-742e4cda",[[1,"gb-header-icon",{"state":[1],"showIndicator":[4,"show-indicator"],"icon":[1]}]]],["p-d8429943",[[1,"gb-notification-content",{"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}]]],["p-51889dd0",[[1,"gb-toast-button",{"state":[1],"color":[1]}]]],["p-1a286635",[[1,"gb-toggle-base",{"size":[1],"state":[1],"pressed":[1028]}]]],["p-da0c9bd5",[[1,"gb-wysiwyg-editor-icon",{"active":[4],"type":[1],"state":[1]}]]],["p-c914b51c",[[1,"gb-export-sub-dropdown",{"showEntireData":[4,"show-entire-data"]}],[1,"gb-export-dropdown-item",{"icon":[4],"state":[1],"type":[1]}],[1,"gb-export-sub-dropdown-item",{"icon":[1],"state":[1],"leadingIconSvg":[32]}]]],["p-9c05ca59",[[1,"gb-filter-button",{"state":[1],"iconOnly":[4,"icon-only"]}],[1,"gb-export-dropdown",{"state":[1],"showEntireData":[4,"show-entire-data"],"showFirstSubDropdown":[32],"showSecondSubDropdown":[32]}]]],["p-bc40b66d",[[1,"gb-avatar-label-group",{"size":[1],"statusIcon":[1,"status-icon"],"state":[1],"placeholder":[4],"text":[4],"color":[1],"showBorder":[4,"show-border"]}],[1,"gb-theme-tab",{"theme":[1025],"currentActiveTab":[1025,"current-active-tab"]}]]],["p-c7ed2194",[[1,"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]}]]],["p-bee5141c",[[1,"gb-icon-button-base",{"current":[4],"icon":[1],"label":[1],"leadingIconSvg":[32],"showTooltip":[32]}]]],["p-e01d6201",[[1,"gb-pagination-button-group-base",{"icon":[1],"state":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[1,"gb-pagination-number-base",{"shape":[1],"state":[1]}]]],["p-c6d238bb",[[1,"gb-card-icon",{"color":[1],"icon":[1],"leadingIconSvg":[32]}]]],["p-7a40ef38",[[1,"gb-mega-input-field-base",{"size":[1],"state":[1],"inputValue":[32]}]]],["p-3250b358",[[1,"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]}],[1,"gb-badge-close",{"color":[1],"type":[1]}]]],["p-ff8ca78a",[[1,"gb-tab-button-base",{"current":[4],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"type":[1],"tabName":[1,"tab-name"],"alignment":[1]}]]],["p-96dc6fcd",[[1,"gb-simple-side-bar-item",{"state":[1],"type":[1],"label":[1],"icon":[1],"category":[1],"showArrow":[4,"show-arrow"],"showBadge":[4,"show-badge"],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}],[1,"gb-collapse-button",{"color":[1],"isCollapsed":[1028,"is-collapsed"],"action":[1025],"isHovered":[1028,"is-hovered"],"collapseSidebar":[64],"expandSidebar":[64]}],[1,"gb-complex-primary-side-bar-item",{"category":[1],"itemStyle":[1,"item-style"],"state":[1],"icon":[1],"label":[1],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}],[1,"gb-complex-secondary-side-bar-item",{"state":[1],"type":[1],"category":[1],"label":[1],"icon":[1],"showTooltip":[1028,"show-tooltip"],"leadingIconSvg":[32]}]]],["p-97bc1e88",[[1,"gb-button-close",{"size":[1],"color":[1]}]]],["p-94b09042",[[1,"gb-progress-bar",{"progress":[2],"showLabel":[4,"show-label"],"labelPosition":[1,"label-position"]}],[1,"gb-file-type-icon",{"fileStyle":[1,"file-style"],"fileType":[1,"file-type"]}]]],["p-87fc3e2d",[[1,"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"],"internalState":[32],"internalStatus":[32]},null,{"status":["onStatusChange"],"state":["onStateChange"]}],[1,"gb-featured-icon",{"size":[1],"destructive":[4],"icon":[1],"leadingIconSvg":[32]}]]]]'),t)}));
|
|
2
2
|
//# sourceMappingURL=globuscomponents.esm.js.map
|