globuswebcomponents 2.6.18 → 2.6.19
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_76.cjs.entry.js +2 -2
- package/dist/collection/components/gb-collapse-button/gb-collapse-button.js +3 -3
- package/dist/collection/components/gb-collapse-button/gb-collapse-button.js.map +1 -1
- package/dist/components/gb-collapse-button.js +1 -1
- package/dist/components/gb-sidebar.js +1 -1
- package/dist/components/{p-VdUJB_sI.js → p-Doq2rc0z.js} +4 -4
- package/dist/components/{p-VdUJB_sI.js.map → p-Doq2rc0z.js.map} +1 -1
- package/dist/docs.json +3 -3
- package/dist/esm/gb-action-panel_76.entry.js +2 -2
- package/dist/globuscomponents/globuscomponents.esm.js +1 -1
- package/dist/globuscomponents/{p-8119ed8c.entry.js → p-c9768b49.entry.js} +2 -2
- package/dist/globuscomponents/{p-8119ed8c.entry.js.map → p-c9768b49.entry.js.map} +1 -1
- package/dist/types/components.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1179,7 +1179,7 @@ const GbCollapseButton = class {
|
|
|
1179
1179
|
index.registerInstance(this, hostRef);
|
|
1180
1180
|
this.isCollapsed = false;
|
|
1181
1181
|
this.action = 'collapse';
|
|
1182
|
-
this.isHovered =
|
|
1182
|
+
this.isHovered = false;
|
|
1183
1183
|
this.direction = 'horizontal';
|
|
1184
1184
|
this.icon = '';
|
|
1185
1185
|
this.leadingIconSvg = '';
|
|
@@ -1211,7 +1211,7 @@ const GbCollapseButton = class {
|
|
|
1211
1211
|
}
|
|
1212
1212
|
render() {
|
|
1213
1213
|
return [
|
|
1214
|
-
index.h(index.Fragment, null, index.h("div", { key: '
|
|
1214
|
+
index.h(index.Fragment, null, index.h("div", { key: 'bd6567f822763b320bc5165050d5182849c9e831', class: `collapse_btn ${this.color}`, onClick: this.toggleIcon.bind(this), onMouseOver: () => (this.isHovered = true), onMouseOut: () => (this.isHovered = false) }, index.h("div", { key: '8c3a604d6dc9b174bd3ea7c3fc6dff116eeae5eb', class: `icon ${this.color} ${this.direction} ${this.action}`, innerHTML: this.leadingIconSvg })), this.isHovered && this.action === 'collapse' ? (index.h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, index.h("p", { slot: "label", class: "text-xs-semi-bold" }, "Collapse"))) : this.isHovered && this.action === 'expand' ? (index.h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, index.h("p", { slot: "label", class: "text-xs-semi-bold" }, "Expand"))) : null),
|
|
1215
1215
|
];
|
|
1216
1216
|
}
|
|
1217
1217
|
};
|
|
@@ -3,7 +3,7 @@ export class GbCollapseButton {
|
|
|
3
3
|
constructor() {
|
|
4
4
|
this.isCollapsed = false;
|
|
5
5
|
this.action = 'collapse';
|
|
6
|
-
this.isHovered =
|
|
6
|
+
this.isHovered = false;
|
|
7
7
|
this.direction = 'horizontal';
|
|
8
8
|
this.icon = '';
|
|
9
9
|
this.leadingIconSvg = '';
|
|
@@ -35,7 +35,7 @@ export class GbCollapseButton {
|
|
|
35
35
|
}
|
|
36
36
|
render() {
|
|
37
37
|
return [
|
|
38
|
-
h(Fragment, null, h("div", { key: '
|
|
38
|
+
h(Fragment, null, h("div", { key: 'bd6567f822763b320bc5165050d5182849c9e831', class: `collapse_btn ${this.color}`, onClick: this.toggleIcon.bind(this), onMouseOver: () => (this.isHovered = true), onMouseOut: () => (this.isHovered = false) }, h("div", { key: '8c3a604d6dc9b174bd3ea7c3fc6dff116eeae5eb', class: `icon ${this.color} ${this.direction} ${this.action}`, innerHTML: this.leadingIconSvg })), this.isHovered && this.action === 'collapse' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Collapse"))) : this.isHovered && this.action === 'expand' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Expand"))) : null),
|
|
39
39
|
];
|
|
40
40
|
}
|
|
41
41
|
static get is() { return "gb-collapse-button"; }
|
|
@@ -129,7 +129,7 @@ export class GbCollapseButton {
|
|
|
129
129
|
"setter": false,
|
|
130
130
|
"reflect": false,
|
|
131
131
|
"attribute": "is-hovered",
|
|
132
|
-
"defaultValue": "
|
|
132
|
+
"defaultValue": "false"
|
|
133
133
|
},
|
|
134
134
|
"direction": {
|
|
135
135
|
"type": "string",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gb-collapse-button.js","sourceRoot":"","sources":["../../../src/components/gb-collapse-button/gb-collapse-button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,YAAY,EAAE,CAAC,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAO1F,MAAM,OAAO,gBAAgB;IAL7B;QAO2B,gBAAW,GAAY,KAAK,CAAC;QAC7B,WAAM,GAAW,UAAU,CAAC;QAC5B,cAAS,GAAY,
|
|
1
|
+
{"version":3,"file":"gb-collapse-button.js","sourceRoot":"","sources":["../../../src/components/gb-collapse-button/gb-collapse-button.tsx"],"names":[],"mappings":"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","sourcesContent":["import { Component, Method, Prop, State, getAssetPath, h, Fragment } from '@stencil/core';\r\n\r\n@Component({\r\n tag: 'gb-collapse-button',\r\n styleUrl: 'gb-collapse-button.css',\r\n shadow: true,\r\n})\r\nexport class GbCollapseButton {\r\n @Prop() color: 'gray' | 'white';\r\n @Prop({ mutable: true }) isCollapsed: boolean = false;\r\n @Prop({ mutable: true }) action: string = 'collapse';\r\n @Prop({ mutable: true }) isHovered: boolean = false;\r\n @Prop() direction: 'horizontal' | 'vertical' = 'horizontal';\r\n @Prop() icon: string = '';\r\n @State() leadingIconSvg: string = '';\r\n\r\n async loadIcon(iconName: string) {\r\n const iconPath = getAssetPath(`${iconName}`);\r\n const response = await fetch(iconPath);\r\n const svg = await response.text();\r\n this.leadingIconSvg = svg;\r\n }\r\n\r\n componentWillLoad() {\r\n this.loadIcon(this.icon);\r\n }\r\n\r\n toggleIcon() {\r\n if (this.action === 'collapse') {\r\n this.action = 'expand';\r\n this.isHovered = false;\r\n } else if (this.action === 'expand') {\r\n this.action = 'collapse';\r\n this.isHovered = false;\r\n }\r\n }\r\n\r\n @Method()\r\n async collapseSidebar() {\r\n this.isCollapsed = true;\r\n }\r\n\r\n @Method()\r\n async expandSidebar() {\r\n this.isCollapsed = false;\r\n }\r\n\r\n render() {\r\n return [\r\n <>\r\n <div class={`collapse_btn ${this.color}`} onClick={this.toggleIcon.bind(this)} onMouseOver={() => (this.isHovered = true)} onMouseOut={() => (this.isHovered = false)}>\r\n {/* {this.action === 'collapse' && [\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" class={`icon ${this.color}`}>\r\n <path\r\n d=\"M9.58321 15C9.58321 15 4.58326 11.3176 4.58325 9.99996C4.58324 8.68237 9.58325 5 9.58325 5M15.4165 15C15.4165 15 10.4166 11.3176 10.4166 9.99996C10.4166 8.68237 15.4166 5 15.4166 5\"\r\n stroke=\"#4B5565\"\r\n stroke-width=\"1.5\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>,\r\n ]}\r\n {this.action === 'expand' && (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" class={`icon ${this.color}`}>\r\n <path\r\n d=\"M10.4166 15C10.4166 15 15.4166 11.3176 15.4166 9.99996C15.4166 8.68237 10.4166 5 10.4166 5M4.58329 15C4.58329 15 9.58324 11.3176 9.58325 9.99996C9.58326 8.68237 4.58325 5 4.58325 5\"\r\n stroke=\"#4B5565\"\r\n stroke-width=\"1.5\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>\r\n )} */}\r\n <div class={`icon ${this.color} ${this.direction} ${this.action}`} innerHTML={this.leadingIconSvg}></div>\r\n </div>\r\n {this.isHovered && this.action === 'collapse' ? (\r\n <gb-tooltip class={`tooltip ${this.direction}`} show-arrow={true} arrow={this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null}>\r\n <p slot=\"label\" class=\"text-xs-semi-bold\">\r\n Collapse\r\n </p>\r\n </gb-tooltip>\r\n ) : this.isHovered && this.action === 'expand' ? (\r\n <gb-tooltip class={`tooltip ${this.direction}`} show-arrow={true} arrow={this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null}>\r\n <p slot=\"label\" class=\"text-xs-semi-bold\">\r\n Expand\r\n </p>\r\n </gb-tooltip>\r\n ) : null}\r\n </>,\r\n ];\r\n }\r\n}\r\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GbCollapseButton$1, d as defineCustomElement$1 } from './p-
|
|
1
|
+
import { G as GbCollapseButton$1, d as defineCustomElement$1 } from './p-Doq2rc0z.js';
|
|
2
2
|
|
|
3
3
|
const GbCollapseButton = GbCollapseButton$1;
|
|
4
4
|
const defineCustomElement = defineCustomElement$1;
|
|
@@ -3,7 +3,7 @@ import { d as defineCustomElement$b } from './p-Dv-1bzYh.js';
|
|
|
3
3
|
import { d as defineCustomElement$a } from './p-Dpfhn3mW.js';
|
|
4
4
|
import { d as defineCustomElement$9 } from './p-CKC2-r_V.js';
|
|
5
5
|
import { d as defineCustomElement$8 } from './p-DUZw8PGP.js';
|
|
6
|
-
import { d as defineCustomElement$7 } from './p-
|
|
6
|
+
import { d as defineCustomElement$7 } from './p-Doq2rc0z.js';
|
|
7
7
|
import { d as defineCustomElement$6 } from './p-DuJgqcA2.js';
|
|
8
8
|
import { d as defineCustomElement$5 } from './p-BczNUnOv.js';
|
|
9
9
|
import { d as defineCustomElement$4 } from './p-CEc1GpcO.js';
|
|
@@ -12,7 +12,7 @@ const GbCollapseButton = /*@__PURE__*/ proxyCustomElement(class GbCollapseButton
|
|
|
12
12
|
this.__attachShadow();
|
|
13
13
|
this.isCollapsed = false;
|
|
14
14
|
this.action = 'collapse';
|
|
15
|
-
this.isHovered =
|
|
15
|
+
this.isHovered = false;
|
|
16
16
|
this.direction = 'horizontal';
|
|
17
17
|
this.icon = '';
|
|
18
18
|
this.leadingIconSvg = '';
|
|
@@ -44,7 +44,7 @@ const GbCollapseButton = /*@__PURE__*/ proxyCustomElement(class GbCollapseButton
|
|
|
44
44
|
}
|
|
45
45
|
render() {
|
|
46
46
|
return [
|
|
47
|
-
h(Fragment, null, h("div", { key: '
|
|
47
|
+
h(Fragment, null, h("div", { key: 'bd6567f822763b320bc5165050d5182849c9e831', class: `collapse_btn ${this.color}`, onClick: this.toggleIcon.bind(this), onMouseOver: () => (this.isHovered = true), onMouseOut: () => (this.isHovered = false) }, h("div", { key: '8c3a604d6dc9b174bd3ea7c3fc6dff116eeae5eb', class: `icon ${this.color} ${this.direction} ${this.action}`, innerHTML: this.leadingIconSvg })), this.isHovered && this.action === 'collapse' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Collapse"))) : this.isHovered && this.action === 'expand' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Expand"))) : null),
|
|
48
48
|
];
|
|
49
49
|
}
|
|
50
50
|
static get style() { return gbCollapseButtonCss; }
|
|
@@ -80,6 +80,6 @@ function defineCustomElement() {
|
|
|
80
80
|
defineCustomElement();
|
|
81
81
|
|
|
82
82
|
export { GbCollapseButton as G, defineCustomElement as d };
|
|
83
|
-
//# sourceMappingURL=p-
|
|
83
|
+
//# sourceMappingURL=p-Doq2rc0z.js.map
|
|
84
84
|
|
|
85
|
-
//# sourceMappingURL=p-
|
|
85
|
+
//# sourceMappingURL=p-Doq2rc0z.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":"p-
|
|
1
|
+
{"file":"p-Doq2rc0z.js","mappings":"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","names":["__stencil_proxyCustomElement","HTMLElement"],"sources":["src/components/gb-collapse-button/gb-collapse-button.css?tag=gb-collapse-button&encapsulation=shadow","src/components/gb-collapse-button/gb-collapse-button.tsx"],"sourcesContent":["@import './../../global/global.css';\r\n\r\n:host{\r\n position: relative;\r\n}\r\n\r\n.collapse_btn{\r\n background-color: transparent;\r\n border-radius: var(--rounded-full);\r\n display: flex;\r\n width: fit-content;\r\n height: fit-content;\r\n padding: var(--spacing-2);\r\n justify-content: center;\r\n align-items: center;\r\n gap: var(--spacing-2);\r\n cursor: pointer;\r\n}\r\n\r\n.collapse_btn.gray:hover{\r\n background-color: var(--color-background-gray-subtler, #EEF2F6);\r\n cursor: pointer;\r\n}\r\n\r\n.collapse_btn.gray:active{\r\n background-color: var(--color-background-gray-subtle, #E3E8EF);\r\n}\r\n\r\n.collapse_btn.white:hover{\r\n background-color: var(--color-blanket-subtle, rgba(33, 44, 101, 0.3));\r\n cursor: pointer;\r\n}\r\n\r\n.collapse_btn.white:active{\r\n background-color: var(--color-blanket, rgba(33, 44, 101, 0.4));\r\n}\r\n\r\n.icon{\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n}\r\n\r\n.icon.horizontal.expand svg{\r\n transform: rotate(180deg);\r\n}\r\n\r\n/* .icon.vertical.collapse svg{\r\n transform: rotate(90deg);\r\n} */\r\n\r\n.icon.vertical.expand svg{\r\n transform: rotate(180deg);\r\n}\r\n\r\n.icon.gray path{\r\n stroke: var(--color-icon, #4B5565);\r\n}\r\n\r\n.icon.white path{\r\n stroke: var(--base-white, #FFFFFF);\r\n}\r\n\r\n.tooltip.horizontal{\r\n position: absolute;\r\n left: 2.5rem;\r\n bottom: 2.3rem;\r\n}\r\n\r\n.tooltip.vertical{\r\n position: absolute;\r\n left: 0.1rem;\r\n bottom: 210%;\r\n}\r\n\r\n.text-xs-semi-bold{\r\n font-family: var(--font-family-body);\r\n font-size: var(--font-size-t-xs);\r\n font-weight: var(--font-weight-semi-bold);\r\n line-height: var(--font-line-height-t-xs);\r\n margin: var(--spacing-none);\r\n padding: var(--spacing-none);\r\n display: inline-block;\r\n position: relative;\r\n}\r\n\r\n.text-xs-semi-bold::before,\r\n.text-xs-semi-bold::after{\r\n content: \"\";\r\n display: table;\r\n}\r\n\r\n.text-xs-semi-bold::before{\r\n margin-bottom: -0.321em;\r\n}\r\n\r\n.text-xs-semi-bold::after{\r\n margin-top: -0.416em;\r\n}","import { Component, Method, Prop, State, getAssetPath, h, Fragment } from '@stencil/core';\r\n\r\n@Component({\r\n tag: 'gb-collapse-button',\r\n styleUrl: 'gb-collapse-button.css',\r\n shadow: true,\r\n})\r\nexport class GbCollapseButton {\r\n @Prop() color: 'gray' | 'white';\r\n @Prop({ mutable: true }) isCollapsed: boolean = false;\r\n @Prop({ mutable: true }) action: string = 'collapse';\r\n @Prop({ mutable: true }) isHovered: boolean = false;\r\n @Prop() direction: 'horizontal' | 'vertical' = 'horizontal';\r\n @Prop() icon: string = '';\r\n @State() leadingIconSvg: string = '';\r\n\r\n async loadIcon(iconName: string) {\r\n const iconPath = getAssetPath(`${iconName}`);\r\n const response = await fetch(iconPath);\r\n const svg = await response.text();\r\n this.leadingIconSvg = svg;\r\n }\r\n\r\n componentWillLoad() {\r\n this.loadIcon(this.icon);\r\n }\r\n\r\n toggleIcon() {\r\n if (this.action === 'collapse') {\r\n this.action = 'expand';\r\n this.isHovered = false;\r\n } else if (this.action === 'expand') {\r\n this.action = 'collapse';\r\n this.isHovered = false;\r\n }\r\n }\r\n\r\n @Method()\r\n async collapseSidebar() {\r\n this.isCollapsed = true;\r\n }\r\n\r\n @Method()\r\n async expandSidebar() {\r\n this.isCollapsed = false;\r\n }\r\n\r\n render() {\r\n return [\r\n <>\r\n <div class={`collapse_btn ${this.color}`} onClick={this.toggleIcon.bind(this)} onMouseOver={() => (this.isHovered = true)} onMouseOut={() => (this.isHovered = false)}>\r\n {/* {this.action === 'collapse' && [\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" class={`icon ${this.color}`}>\r\n <path\r\n d=\"M9.58321 15C9.58321 15 4.58326 11.3176 4.58325 9.99996C4.58324 8.68237 9.58325 5 9.58325 5M15.4165 15C15.4165 15 10.4166 11.3176 10.4166 9.99996C10.4166 8.68237 15.4166 5 15.4166 5\"\r\n stroke=\"#4B5565\"\r\n stroke-width=\"1.5\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>,\r\n ]}\r\n {this.action === 'expand' && (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" class={`icon ${this.color}`}>\r\n <path\r\n d=\"M10.4166 15C10.4166 15 15.4166 11.3176 15.4166 9.99996C15.4166 8.68237 10.4166 5 10.4166 5M4.58329 15C4.58329 15 9.58324 11.3176 9.58325 9.99996C9.58326 8.68237 4.58325 5 4.58325 5\"\r\n stroke=\"#4B5565\"\r\n stroke-width=\"1.5\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>\r\n )} */}\r\n <div class={`icon ${this.color} ${this.direction} ${this.action}`} innerHTML={this.leadingIconSvg}></div>\r\n </div>\r\n {this.isHovered && this.action === 'collapse' ? (\r\n <gb-tooltip class={`tooltip ${this.direction}`} show-arrow={true} arrow={this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null}>\r\n <p slot=\"label\" class=\"text-xs-semi-bold\">\r\n Collapse\r\n </p>\r\n </gb-tooltip>\r\n ) : this.isHovered && this.action === 'expand' ? (\r\n <gb-tooltip class={`tooltip ${this.direction}`} show-arrow={true} arrow={this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null}>\r\n <p slot=\"label\" class=\"text-xs-semi-bold\">\r\n Expand\r\n </p>\r\n </gb-tooltip>\r\n ) : null}\r\n </>,\r\n ];\r\n }\r\n}\r\n"],"version":3}
|
package/dist/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-11-27T13:10
|
|
2
|
+
"timestamp": "2025-11-27T13:15:10",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.38.3",
|
|
@@ -8079,10 +8079,10 @@
|
|
|
8079
8079
|
"docsTags": [
|
|
8080
8080
|
{
|
|
8081
8081
|
"name": "default",
|
|
8082
|
-
"text": "
|
|
8082
|
+
"text": "false"
|
|
8083
8083
|
}
|
|
8084
8084
|
],
|
|
8085
|
-
"default": "
|
|
8085
|
+
"default": "false",
|
|
8086
8086
|
"values": [
|
|
8087
8087
|
{
|
|
8088
8088
|
"type": "boolean"
|
|
@@ -1177,7 +1177,7 @@ const GbCollapseButton = class {
|
|
|
1177
1177
|
registerInstance(this, hostRef);
|
|
1178
1178
|
this.isCollapsed = false;
|
|
1179
1179
|
this.action = 'collapse';
|
|
1180
|
-
this.isHovered =
|
|
1180
|
+
this.isHovered = false;
|
|
1181
1181
|
this.direction = 'horizontal';
|
|
1182
1182
|
this.icon = '';
|
|
1183
1183
|
this.leadingIconSvg = '';
|
|
@@ -1209,7 +1209,7 @@ const GbCollapseButton = class {
|
|
|
1209
1209
|
}
|
|
1210
1210
|
render() {
|
|
1211
1211
|
return [
|
|
1212
|
-
h(Fragment, null, h("div", { key: '
|
|
1212
|
+
h(Fragment, null, h("div", { key: 'bd6567f822763b320bc5165050d5182849c9e831', class: `collapse_btn ${this.color}`, onClick: this.toggleIcon.bind(this), onMouseOver: () => (this.isHovered = true), onMouseOut: () => (this.isHovered = false) }, h("div", { key: '8c3a604d6dc9b174bd3ea7c3fc6dff116eeae5eb', class: `icon ${this.color} ${this.direction} ${this.action}`, innerHTML: this.leadingIconSvg })), this.isHovered && this.action === 'collapse' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Collapse"))) : this.isHovered && this.action === 'expand' ? (h("gb-tooltip", { class: `tooltip ${this.direction}`, "show-arrow": true, arrow: this.direction === 'horizontal' ? 'left' : this.direction === 'vertical' ? 'bottom_left' : null }, h("p", { slot: "label", class: "text-xs-semi-bold" }, "Expand"))) : null),
|
|
1213
1213
|
];
|
|
1214
1214
|
}
|
|
1215
1215
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as t,g as e,b as o}from"./p-qKDhDYPI.js";export{s as setNonce}from"./p-qKDhDYPI.js";var n=()=>{const e=import.meta.url;const o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return t(o)};n().then((async t=>{await e();return o(JSON.parse('[["p-8119ed8c",[[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"],"logo":[1],"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"],"avatarDropdownShown":[32],"notificationDropdownShown":[32],"helpDropdownShown":[32],"initials":[32]},[[4,"click","handleClickOutside"]]],[257,"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"],"exportButtonState":[1,"export-button-state"],"pdfState":[1,"pdf-state"],"csvState":[1,"csv-state"],"showDateFilter":[4,"show-date-filter"],"dateItems":[16],"mode":[1],"datePickerPlaceholder":[1,"date-picker-placeholder"],"exportDropdownPosition":[1,"export-dropdown-position"],"items":[32],"width":[32],"buttonIcon":[32],"showExportDropdown":[32],"isDatePickerShown":[32]},[[4,"click","handleClickOutside"]]],[257,"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"]}],[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"],"thirdButtonText":[1,"third-button-text"],"firstIconButtonSwap":[1,"first-icon-button-swap"],"secondIconButtonSwap":[1,"second-icon-button-swap"],"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"]}],[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"],"activeIndex":[1026,"active-index"],"activePrimaryItem":[1025,"active-primary-item"],"activeSecondaryItem":[1025,"active-secondary-item"],"hasInfo":[4,"has-info"],"email":[1],"phoneNumber":[1,"phone-number"],"theme":[1],"isDarkTheme":[32],"leadingIconSvg":[32],"sideBarItemClicked":[64]}],[257,"gb-nav-bar-sidemenu",{"applicationName":[1,"application-name"],"applicationIcon":[1,"application-icon"],"activeIndex":[2,"active-index"],"tabs":[16],"leadingIconSvg":[32]}],[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"],"isDarkTheme":[4,"is-dark-theme"],"mainText":[1,"main-text"],"supportingText":[1,"supporting-text"],"fileStyle":[1,"file-style"],"fileType":[1,"file-type"],"featuredIconSwap":[1,"featured-icon-swap"],"patternKey":[32]},null,{"theme":["onThemeChanged"]}],[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]}],[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-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"]}],[257,"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"]}],[257,"gb-avatar-profile-photo",{"placeholder":[4],"text":[4],"size":[1],"verified":[4],"icon":[1]}],[257,"gb-comment",{"heading":[1],"state":[1025],"noCommentText":[1,"no-comment-text"],"noCommentTextSub":[1,"no-comment-text-sub"],"comments":[16],"theme":[1],"isDarkTheme":[32]}],[257,"gb-stepper-horizontal-minimal-icons",{"size":[1],"text":[4],"stepLabel":[1,"step-label"],"steps":[16],"position":[1]}],[257,"gb-toggle",{"size":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"],"pressed":[4],"position":[1]}],[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":[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"]}],[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]}],[257,"gb-filter-button",{"state":[1],"iconOnly":[4,"icon-only"]}],[257,"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],"internalIcon":[32]},null,{"icon":["updateSidebarIcon"]}],[257,"gb-vertical-tabs",{"size":[1],"type":[1],"activeIndex":[1026,"active-index"],"tabs":[16],"internalTabs":[32]},null,{"tabs":["onTabsChanged"]}],[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"],"internalState":[32],"internalProgress":[32]},null,{"state":["onStateChange"],"progress":["onProgressChange"]}],[257,"gb-modal-action",{"actionType":[1,"action-type"],"destructive":[4],"fullWidth":[4,"full-width"],"showSecondaryAction":[4,"show-secondary-action"],"showFirstButton":[4,"show-first-button"],"showSecondButton":[4,"show-second-button"],"showThirdButton":[4,"show-third-button"],"firstButtonText":[1,"first-button-text"],"secondButtonText":[1,"second-button-text"],"thirdButtonText":[1,"third-button-text"],"firstIconButtonSwap":[1,"first-icon-button-swap"],"secondIconButtonSwap":[1,"second-icon-button-swap"],"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"],"showFirstIconButton":[4,"show-first-icon-button"],"showSecondIconButton":[4,"show-second-icon-button"],"showCheckBox":[4,"show-check-box"],"checkboxLabel":[1,"checkbox-label"],"firstIconButtonTooltipShown":[32],"secondIconButtonTooltipShown":[32]}],[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-help-dropdown",{"showLogError":[4,"show-log-error"]}],[257,"gb-notification-pane",{"state":[1],"notifications":[1040]}],[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-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-modal-header",{"text":[1],"closeButtonPosition":[513,"close-button-position"]}],[257,"gb-nav-bar-item",{"state":[1],"iconOnly":[4,"icon-only"],"category":[1],"label":[1],"icon":[1],"leadingIconSvg":[32],"showTooltip":[32]}],[257,"gb-comment-item",{"name":[1],"duty":[1],"comment":[1],"timeStamp":[1,"time-stamp"],"connector":[4]}],[257,"gb-date-picker",{"placeholder":[1],"value":[1025],"format":[1],"mode":[1],"disabled":[4],"iconPosition":[1,"icon-position"],"dropdownAlignment":[1,"dropdown-alignment"],"isCalendarShown":[32]}],[257,"gb-header-icon",{"state":[1],"showIndicator":[4,"show-indicator"],"icon":[1],"leadingIconSvg":[32]}],[257,"gb-illustration",{"size":[1],"color":[1],"illustrationStyle":[1,"illustration-style"],"illustrationIcon":[1,"illustration-icon"],"theme":[1],"leadingIconSvg":[32]}],[257,"gb-metric-featured-icon",{"size":[1],"color":[1],"featuredIconStyle":[1,"featured-icon-style"],"icon":[1],"leadingIconSvg":[32]}],[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":[4,"is-dark-theme"]},null,{"theme":["changeTheme"]}],[257,"gb-toast-button",{"state":[1],"color":[1]}],[257,"gb-toggle-base",{"size":[1],"state":[1],"pressed":[1028]}],[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],"clearSelection":[64],"isDestructive":[64],"isNotDestructive":[64]},[[4,"click","handleClickOutside"]],{"items":["updateResultsAndShowInDropdown"],"loading":["onLoadingChanged"],"destructive":["watchDestructive"]}],[257,"gb-avatar-label-group",{"size":[1],"statusIcon":[1,"status-icon"],"state":[1],"placeholder":[4],"text":[4],"color":[1],"showBorder":[4,"show-border"]}],[257,"gb-button-group-base",{"current":[4],"icon":[1],"state":[1],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[257,"gb-theme-tab",{"theme":[1025],"currentActiveTab":[1025,"current-active-tab"]}],[257,"gb-export-sub-dropdown",{"showEntireData":[4,"show-entire-data"]}],[257,"gb-progress-bar",{"progress":[2],"showLabel":[4,"show-label"],"labelPosition":[1,"label-position"]}],[257,"gb-export-dropdown-item",{"icon":[4],"state":[1],"type":[1]}],[257,"gb-notification-content",{"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}],[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-icon-button-base",{"current":[4],"icon":[1],"label":[1],"leadingIconSvg":[32],"showTooltip":[32]}],[257,"gb-export-sub-dropdown-item",{"icon":[1],"state":[1],"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":[1,"icon-swap"],"enableCancelButtonFunction":[4,"enable-cancel-button-function"],"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],"loading":[1028],"formatLabel":[4,"format-label"],"formatNumber":[4,"format-number"],"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],"isDestructive":[64],"isNotDestructive":[64]},[[4,"click","handleClickOutside"]],{"options":["optionsChanged"],"loading":["onLoadingChanged"],"value":["updateSelectedItems"]}],[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-file-type-icon",{"fileStyle":[1,"file-style"],"fileType":[1,"file-type"]}],[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-featured-icon",{"size":[1],"destructive":[4],"icon":[1],"leadingIconSvg":[32]}],[257,"gb-step-icon-base",{"size":[1],"status":[1],"state":[1],"internalState":[32],"internalStatus":[32]},null,{"status":["onStatusChange"],"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"],"leadingIconSvg":[32],"trailingIconSvg":[32]}],[257,"gb-button-close",{"size":[1],"color":[1]}],[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"],"leadingIconSvg":[32]}],[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],"leadingIconSvg":[32],"trailingIconSvg":[32],"internalButtonState":[32],"internalIconLeadingState":[32],"internalIconTrailingState":[32],"tooltipShown":[32]}],[257,"gb-checkbox",{"checked":[4],"indeterminate":[4],"size":[1],"type":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"]}],[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"],"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"]}],[257,"gb-tooltip",{"showArrow":[4,"show-arrow"],"arrow":[1],"showSupportingText":[4,"show-supporting-text"],"noWrap":[4,"no-wrap"]}]]],["p-50a87191",[[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]}]]],["p-179f582e",[[257,"gb-checkbox-group",{"size":[1],"breakpoint":[1],"icon":[1],"selected":[4],"type":[1]}]]],["p-854feeb5",[[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]}]]],["p-92a34e84",[[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]}]]],["p-6aaf58b7",[[257,"gb-horizontal-tabs",{"type":[1],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"activeIndex":[1026,"active-index"],"tabs":[16],"internalTabs":[32],"internalActiveIndex":[32],"showLeftButton":[32],"showRightButton":[32]},null,{"activeIndex":["setActiveIndex"],"tabs":["onTabsChanged"]}]]],["p-36a7c270",[[257,"gb-avatar-group",{"size":[1],"moreUsers":[4,"more-users"],"addMoreButton":[4,"add-more-button"],"text":[4],"state":[1],"images":[16]}]]],["p-6d7af68b",[[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"],"secondaryButtonText":[1,"secondary-button-text"],"checked":[4],"checkboxState":[1,"checkbox-state"],"leadingIconSvg":[32]}]]],["p-72a2c945",[[257,"gb-stepper-horizontal-icons-centered",{"size":[1],"steps":[16],"type":[1],"breakpoint":[1]}]]],["p-94ad87ff",[[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"]}]]],["p-38d04d52",[[257,"gb-stepper-vertical-icons-with-text",{"size":[1],"connector":[4],"type":[1],"steps":[16],"internalSteps":[32],"internalState":[32],"internalStatus":[32]},null,{"steps":["onStepsChanged"]}]]],["p-4ae06252",[[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"],"leftValue":[32],"rightValue":[32]}]]],["p-26150a25",[[257,"gb-breadcrumbs",{"type":[1],"divider":[1],"breadcrumbs":[16],"icon":[1],"visibleBreadcrumbs":[32]}]]],["p-57fa8bdf",[[257,"gb-quick-action-card",{"color":[1],"icon":[1],"label":[1]}]]],["p-2022b858",[[257,"gb-quick-action-icon",{"icon":[1],"label":[1],"isHovered":[32]}]]],["p-44a2c501",[[257,"gb-token-field-compressed",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showHintText":[4,"show-hint-text"],"hintText":[1,"hint-text"]}]]],["p-371fb472",[[257,"gb-wysiwyg-tooltip",{"arrow":[1],"breakpoint":[1]}]]],["p-47a2a2f1",[[256,"gb-carousel-arrow",{"size":[1],"chevron":[1]}]]],["p-3a04541f",[[257,"gb-category-card",{"label":[1],"supportingText":[1,"supporting-text"],"showSupportingText":[4,"show-supporting-text"],"cardImage":[1,"card-image"],"isHovered":[32]}]]],["p-96396203",[[257,"gb-logo",{"text":[4]}]]],["p-91be6976",[[257,"gb-pagination-dot-group",{"size":[1],"type":[1],"color":[1],"framed":[4]}]]],["p-e638fefd",[[256,"gb-pagination-dot-indicator",{"current":[4],"type":[1],"size":[1]}]]],["p-19440f9b",[[257,"gb-progress-circle",{"size":[1],"shape":[1],"label":[4],"progress":[2]},null,{"progress":["handleProgressChange"]}]]],["p-2df0ce05",[[257,"gb-scrollbar",{"length":[1]}]]],["p-765e4586",[[257,"gb-stepper-horizontal-icons-connected",{"size":[1],"steps":[16]}]]],["p-23a53695",[[257,"gb-table-cell",{"type":[1]}]]],["p-b86467c3",[[257,"gb-token-field-compact",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showSupportingText":[4,"show-supporting-text"],"supportingText":[1,"supporting-text"]}]]],["p-9faa3250",[[257,"gb-avatar-add-button",{"size":[1],"showToolTip":[1028,"show-tool-tip"],"state":[1],"el":[16]}]]],["p-69adf551",[[257,"gb-slider-control-handle",{"value":[1],"type":[1],"isHovered":[32],"isFocused":[32]}]]],["p-a6b6f26a",[[257,"gb-breadcrumb-button-base",{"current":[4],"type":[1],"icon":[4],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}]]],["p-04374479",[[257,"gb-mega-input-field-base",{"size":[1],"state":[1],"inputValue":[32]}]]],["p-0bb03f74",[[257,"gb-wysiwyg-editor-icon",{"active":[4],"type":[1],"state":[1]}]]],["p-2b2556fb",[[257,"gb-card-icon",{"size":[1],"color":[1],"icon":[1],"leadingIconSvg":[32]}]]],["p-980f103b",[[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"]}]]]]'),t)}));
|
|
1
|
+
import{p as t,g as e,b as o}from"./p-qKDhDYPI.js";export{s as setNonce}from"./p-qKDhDYPI.js";var n=()=>{const e=import.meta.url;const o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return t(o)};n().then((async t=>{await e();return o(JSON.parse('[["p-c9768b49",[[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"],"logo":[1],"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"],"avatarDropdownShown":[32],"notificationDropdownShown":[32],"helpDropdownShown":[32],"initials":[32]},[[4,"click","handleClickOutside"]]],[257,"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"],"exportButtonState":[1,"export-button-state"],"pdfState":[1,"pdf-state"],"csvState":[1,"csv-state"],"showDateFilter":[4,"show-date-filter"],"dateItems":[16],"mode":[1],"datePickerPlaceholder":[1,"date-picker-placeholder"],"exportDropdownPosition":[1,"export-dropdown-position"],"items":[32],"width":[32],"buttonIcon":[32],"showExportDropdown":[32],"isDatePickerShown":[32]},[[4,"click","handleClickOutside"]]],[257,"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"]}],[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"],"thirdButtonText":[1,"third-button-text"],"firstIconButtonSwap":[1,"first-icon-button-swap"],"secondIconButtonSwap":[1,"second-icon-button-swap"],"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"]}],[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"],"activeIndex":[1026,"active-index"],"activePrimaryItem":[1025,"active-primary-item"],"activeSecondaryItem":[1025,"active-secondary-item"],"hasInfo":[4,"has-info"],"email":[1],"phoneNumber":[1,"phone-number"],"theme":[1],"isDarkTheme":[32],"leadingIconSvg":[32],"sideBarItemClicked":[64]}],[257,"gb-nav-bar-sidemenu",{"applicationName":[1,"application-name"],"applicationIcon":[1,"application-icon"],"activeIndex":[2,"active-index"],"tabs":[16],"leadingIconSvg":[32]}],[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"],"isDarkTheme":[4,"is-dark-theme"],"mainText":[1,"main-text"],"supportingText":[1,"supporting-text"],"fileStyle":[1,"file-style"],"fileType":[1,"file-type"],"featuredIconSwap":[1,"featured-icon-swap"],"patternKey":[32]},null,{"theme":["onThemeChanged"]}],[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]}],[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-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"]}],[257,"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"]}],[257,"gb-avatar-profile-photo",{"placeholder":[4],"text":[4],"size":[1],"verified":[4],"icon":[1]}],[257,"gb-comment",{"heading":[1],"state":[1025],"noCommentText":[1,"no-comment-text"],"noCommentTextSub":[1,"no-comment-text-sub"],"comments":[16],"theme":[1],"isDarkTheme":[32]}],[257,"gb-stepper-horizontal-minimal-icons",{"size":[1],"text":[4],"stepLabel":[1,"step-label"],"steps":[16],"position":[1]}],[257,"gb-toggle",{"size":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"],"pressed":[4],"position":[1]}],[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":[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"]}],[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]}],[257,"gb-filter-button",{"state":[1],"iconOnly":[4,"icon-only"]}],[257,"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],"internalIcon":[32]},null,{"icon":["updateSidebarIcon"]}],[257,"gb-vertical-tabs",{"size":[1],"type":[1],"activeIndex":[1026,"active-index"],"tabs":[16],"internalTabs":[32]},null,{"tabs":["onTabsChanged"]}],[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"],"internalState":[32],"internalProgress":[32]},null,{"state":["onStateChange"],"progress":["onProgressChange"]}],[257,"gb-modal-action",{"actionType":[1,"action-type"],"destructive":[4],"fullWidth":[4,"full-width"],"showSecondaryAction":[4,"show-secondary-action"],"showFirstButton":[4,"show-first-button"],"showSecondButton":[4,"show-second-button"],"showThirdButton":[4,"show-third-button"],"firstButtonText":[1,"first-button-text"],"secondButtonText":[1,"second-button-text"],"thirdButtonText":[1,"third-button-text"],"firstIconButtonSwap":[1,"first-icon-button-swap"],"secondIconButtonSwap":[1,"second-icon-button-swap"],"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"],"showFirstIconButton":[4,"show-first-icon-button"],"showSecondIconButton":[4,"show-second-icon-button"],"showCheckBox":[4,"show-check-box"],"checkboxLabel":[1,"checkbox-label"],"firstIconButtonTooltipShown":[32],"secondIconButtonTooltipShown":[32]}],[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-help-dropdown",{"showLogError":[4,"show-log-error"]}],[257,"gb-notification-pane",{"state":[1],"notifications":[1040]}],[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-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-modal-header",{"text":[1],"closeButtonPosition":[513,"close-button-position"]}],[257,"gb-nav-bar-item",{"state":[1],"iconOnly":[4,"icon-only"],"category":[1],"label":[1],"icon":[1],"leadingIconSvg":[32],"showTooltip":[32]}],[257,"gb-comment-item",{"name":[1],"duty":[1],"comment":[1],"timeStamp":[1,"time-stamp"],"connector":[4]}],[257,"gb-date-picker",{"placeholder":[1],"value":[1025],"format":[1],"mode":[1],"disabled":[4],"iconPosition":[1,"icon-position"],"dropdownAlignment":[1,"dropdown-alignment"],"isCalendarShown":[32]}],[257,"gb-header-icon",{"state":[1],"showIndicator":[4,"show-indicator"],"icon":[1],"leadingIconSvg":[32]}],[257,"gb-illustration",{"size":[1],"color":[1],"illustrationStyle":[1,"illustration-style"],"illustrationIcon":[1,"illustration-icon"],"theme":[1],"leadingIconSvg":[32]}],[257,"gb-metric-featured-icon",{"size":[1],"color":[1],"featuredIconStyle":[1,"featured-icon-style"],"icon":[1],"leadingIconSvg":[32]}],[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":[4,"is-dark-theme"]},null,{"theme":["changeTheme"]}],[257,"gb-toast-button",{"state":[1],"color":[1]}],[257,"gb-toggle-base",{"size":[1],"state":[1],"pressed":[1028]}],[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],"clearSelection":[64],"isDestructive":[64],"isNotDestructive":[64]},[[4,"click","handleClickOutside"]],{"items":["updateResultsAndShowInDropdown"],"loading":["onLoadingChanged"],"destructive":["watchDestructive"]}],[257,"gb-avatar-label-group",{"size":[1],"statusIcon":[1,"status-icon"],"state":[1],"placeholder":[4],"text":[4],"color":[1],"showBorder":[4,"show-border"]}],[257,"gb-button-group-base",{"current":[4],"icon":[1],"state":[1],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}],[257,"gb-theme-tab",{"theme":[1025],"currentActiveTab":[1025,"current-active-tab"]}],[257,"gb-export-sub-dropdown",{"showEntireData":[4,"show-entire-data"]}],[257,"gb-progress-bar",{"progress":[2],"showLabel":[4,"show-label"],"labelPosition":[1,"label-position"]}],[257,"gb-export-dropdown-item",{"icon":[4],"state":[1],"type":[1]}],[257,"gb-notification-content",{"icon":[1],"label":[1],"time":[1],"supportingText":[1,"supporting-text"]}],[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-icon-button-base",{"current":[4],"icon":[1],"label":[1],"leadingIconSvg":[32],"showTooltip":[32]}],[257,"gb-export-sub-dropdown-item",{"icon":[1],"state":[1],"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":[1,"icon-swap"],"enableCancelButtonFunction":[4,"enable-cancel-button-function"],"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],"loading":[1028],"formatLabel":[4,"format-label"],"formatNumber":[4,"format-number"],"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],"isDestructive":[64],"isNotDestructive":[64]},[[4,"click","handleClickOutside"]],{"options":["optionsChanged"],"loading":["onLoadingChanged"],"value":["updateSelectedItems"]}],[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-file-type-icon",{"fileStyle":[1,"file-style"],"fileType":[1,"file-type"]}],[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-featured-icon",{"size":[1],"destructive":[4],"icon":[1],"leadingIconSvg":[32]}],[257,"gb-step-icon-base",{"size":[1],"status":[1],"state":[1],"internalState":[32],"internalStatus":[32]},null,{"status":["onStatusChange"],"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"],"leadingIconSvg":[32],"trailingIconSvg":[32]}],[257,"gb-button-close",{"size":[1],"color":[1]}],[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"],"leadingIconSvg":[32]}],[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],"leadingIconSvg":[32],"trailingIconSvg":[32],"internalButtonState":[32],"internalIconLeadingState":[32],"internalIconTrailingState":[32],"tooltipShown":[32]}],[257,"gb-checkbox",{"checked":[4],"indeterminate":[4],"size":[1],"type":[1],"state":[1],"text":[4],"supportingText":[4,"supporting-text"]}],[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"],"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"]}],[257,"gb-tooltip",{"showArrow":[4,"show-arrow"],"arrow":[1],"showSupportingText":[4,"show-supporting-text"],"noWrap":[4,"no-wrap"]}]]],["p-50a87191",[[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]}]]],["p-179f582e",[[257,"gb-checkbox-group",{"size":[1],"breakpoint":[1],"icon":[1],"selected":[4],"type":[1]}]]],["p-854feeb5",[[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]}]]],["p-92a34e84",[[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]}]]],["p-6aaf58b7",[[257,"gb-horizontal-tabs",{"type":[1],"size":[1],"fullWidth":[4,"full-width"],"badge":[4],"activeIndex":[1026,"active-index"],"tabs":[16],"internalTabs":[32],"internalActiveIndex":[32],"showLeftButton":[32],"showRightButton":[32]},null,{"activeIndex":["setActiveIndex"],"tabs":["onTabsChanged"]}]]],["p-36a7c270",[[257,"gb-avatar-group",{"size":[1],"moreUsers":[4,"more-users"],"addMoreButton":[4,"add-more-button"],"text":[4],"state":[1],"images":[16]}]]],["p-6d7af68b",[[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"],"secondaryButtonText":[1,"secondary-button-text"],"checked":[4],"checkboxState":[1,"checkbox-state"],"leadingIconSvg":[32]}]]],["p-72a2c945",[[257,"gb-stepper-horizontal-icons-centered",{"size":[1],"steps":[16],"type":[1],"breakpoint":[1]}]]],["p-94ad87ff",[[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"]}]]],["p-38d04d52",[[257,"gb-stepper-vertical-icons-with-text",{"size":[1],"connector":[4],"type":[1],"steps":[16],"internalSteps":[32],"internalState":[32],"internalStatus":[32]},null,{"steps":["onStepsChanged"]}]]],["p-4ae06252",[[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"],"leftValue":[32],"rightValue":[32]}]]],["p-26150a25",[[257,"gb-breadcrumbs",{"type":[1],"divider":[1],"breadcrumbs":[16],"icon":[1],"visibleBreadcrumbs":[32]}]]],["p-57fa8bdf",[[257,"gb-quick-action-card",{"color":[1],"icon":[1],"label":[1]}]]],["p-2022b858",[[257,"gb-quick-action-icon",{"icon":[1],"label":[1],"isHovered":[32]}]]],["p-44a2c501",[[257,"gb-token-field-compressed",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showHintText":[4,"show-hint-text"],"hintText":[1,"hint-text"]}]]],["p-371fb472",[[257,"gb-wysiwyg-tooltip",{"arrow":[1],"breakpoint":[1]}]]],["p-47a2a2f1",[[256,"gb-carousel-arrow",{"size":[1],"chevron":[1]}]]],["p-3a04541f",[[257,"gb-category-card",{"label":[1],"supportingText":[1,"supporting-text"],"showSupportingText":[4,"show-supporting-text"],"cardImage":[1,"card-image"],"isHovered":[32]}]]],["p-96396203",[[257,"gb-logo",{"text":[4]}]]],["p-91be6976",[[257,"gb-pagination-dot-group",{"size":[1],"type":[1],"color":[1],"framed":[4]}]]],["p-e638fefd",[[256,"gb-pagination-dot-indicator",{"current":[4],"type":[1],"size":[1]}]]],["p-19440f9b",[[257,"gb-progress-circle",{"size":[1],"shape":[1],"label":[4],"progress":[2]},null,{"progress":["handleProgressChange"]}]]],["p-2df0ce05",[[257,"gb-scrollbar",{"length":[1]}]]],["p-765e4586",[[257,"gb-stepper-horizontal-icons-connected",{"size":[1],"steps":[16]}]]],["p-23a53695",[[257,"gb-table-cell",{"type":[1]}]]],["p-b86467c3",[[257,"gb-token-field-compact",{"size":[1],"digits":[2],"showLabel":[4,"show-label"],"label":[1],"showSupportingText":[4,"show-supporting-text"],"supportingText":[1,"supporting-text"]}]]],["p-9faa3250",[[257,"gb-avatar-add-button",{"size":[1],"showToolTip":[1028,"show-tool-tip"],"state":[1],"el":[16]}]]],["p-69adf551",[[257,"gb-slider-control-handle",{"value":[1],"type":[1],"isHovered":[32],"isFocused":[32]}]]],["p-a6b6f26a",[[257,"gb-breadcrumb-button-base",{"current":[4],"type":[1],"icon":[4],"label":[1],"iconSrc":[1,"icon-src"],"leadingIconSvg":[32]}]]],["p-04374479",[[257,"gb-mega-input-field-base",{"size":[1],"state":[1],"inputValue":[32]}]]],["p-0bb03f74",[[257,"gb-wysiwyg-editor-icon",{"active":[4],"type":[1],"state":[1]}]]],["p-2b2556fb",[[257,"gb-card-icon",{"size":[1],"color":[1],"icon":[1],"leadingIconSvg":[32]}]]],["p-980f103b",[[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"]}]]]]'),t)}));
|
|
2
2
|
//# sourceMappingURL=globuscomponents.esm.js.map
|