Socket
Socket
Sign inDemoInstall

@intelligentgrowthsolutions/eco

Package Overview
Dependencies
Maintainers
0
Versions
1048
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intelligentgrowthsolutions/eco - npm Package Compare versions

Comparing version 17.3.1 to 17.3.2-experimental-07ecb09

dist/eco/p-76ec4838.entry.js

63

dist/cjs/eco-input-time.cjs.entry.js

@@ -17,3 +17,2 @@ 'use strict';

this.handleWeekChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -23,13 +22,7 @@ const weekInput = ev.target;

if (helpers.exists(weekInput)) {
this.weeksValue = (_a = weekInput.value) !== null && _a !== void 0 ? _a : 0;
if (weekInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.weeksValue = weekInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleDayChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -39,13 +32,7 @@ const dayInput = ev.target;

if (helpers.exists(dayInput)) {
this.daysValue = (_a = dayInput.value) !== null && _a !== void 0 ? _a : 0;
if (dayInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.daysValue = dayInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleHourChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -55,13 +42,7 @@ const hourInput = ev.target;

if (helpers.exists(hourInput)) {
this.hoursValue = (_a = hourInput.value) !== null && _a !== void 0 ? _a : 0;
if (hourInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.hoursValue = hourInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleMinuteChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -71,13 +52,7 @@ const minuteInput = ev.target;

if (helpers.exists(minuteInput)) {
this.minutesValue = (_a = minuteInput.value) !== null && _a !== void 0 ? _a : 0;
if (minuteInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.minutesValue = minuteInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleSecondChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -87,9 +62,4 @@ const secondInput = ev.target;

if (helpers.exists(secondInput)) {
this.secondsValue = (_a = secondInput.value) !== null && _a !== void 0 ? _a : 0;
if (secondInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.secondsValue = secondInput.value;
this.setValue(this.getTotalValueMs().toString());
}

@@ -151,7 +121,8 @@ };

getTotalValueMs() {
return (this.weeksValue * 7 * 24 * 60 * 60 * 1000 +
this.daysValue * 24 * 60 * 60 * 1000 +
this.hoursValue * 60 * 60 * 1000 +
this.minutesValue * 60 * 1000 +
this.secondsValue * 1000);
var _a, _b, _c, _d, _e;
return (((_a = this.weeksValue) !== null && _a !== void 0 ? _a : 0) * 7 * 24 * 60 * 60 * 1000 +
((_b = this.daysValue) !== null && _b !== void 0 ? _b : 0) * 24 * 60 * 60 * 1000 +
((_c = this.hoursValue) !== null && _c !== void 0 ? _c : 0) * 60 * 60 * 1000 +
((_d = this.minutesValue) !== null && _d !== void 0 ? _d : 0) * 60 * 1000 +
((_e = this.secondsValue) !== null && _e !== void 0 ? _e : 0) * 1000);
}

@@ -192,3 +163,3 @@ componentWillLoad() {

render() {
return (index.h(index.Host, { key: '5a829261b2ecb530241683e016a4db85167c21ec', "qa-id": this.qaIdElement }, index.h("eco-input-wrapper", { key: 'a6848804cfd0c74157d3aed6ef597167357f187c' }, this.label && (index.h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (index.h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (index.h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), index.h("span", { key: '8f51de37e1670b7c50109a913a41d5ab603f0a80', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (index.h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (index.h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (index.h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (index.h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (index.h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
return (index.h(index.Host, { key: 'a82cbcbdc30e0d50c04d3d725a304209c38cf7c1', "qa-id": this.qaIdElement }, index.h("eco-input-wrapper", { key: 'ee9494c782cfaebb52bdd903aa6ab45a92810191' }, this.label && (index.h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (index.h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (index.h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), index.h("span", { key: 'ba21dccc9fd0a0cd079aa20dc65d698e893e3de5', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (index.h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (index.h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (index.h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (index.h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (index.h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
}

@@ -195,0 +166,0 @@ get hostElement() { return index.getElement(this); }

@@ -9,2 +9,3 @@ import { h, Host, } from "@stencil/core";

if (input !== null) {
this.valid = input.validity.valid;
if (input.value === '') {

@@ -16,3 +17,2 @@ this.setValue(null);

}
this.valid = input.validity.valid;
}

@@ -30,6 +30,2 @@ };

};
this.onKeydown = (ev) => {
this.onInput(ev);
this.ecoInput.emit(ev);
};
this.clearInput = false;

@@ -109,3 +105,3 @@ this.clearOnEdit = undefined;

const classMap = this.getCssClassMap();
return (h(Host, { key: 'da17d06910ef7fb1e62e60295ed971aaeffb099c', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'c774a6c243848255daec81b72dca002538348cdf', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'be669b02b6776704011aee444ee17e1474996224', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, onKeyDown: this.onKeydown, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
return (h(Host, { key: '795afe216dc2f746c6c125f023f2830665c49967', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: '82cc449c4ac11e45896b062727e05c3118dfb92e', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'fece07979a63147a9f3f0238261fad4ab6ba7b17', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
}

@@ -112,0 +108,0 @@ getCssClassMap() {

@@ -6,3 +6,2 @@ import { h, Host } from "@stencil/core";

this.handleWeekChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -12,13 +11,7 @@ const weekInput = ev.target;

if (exists(weekInput)) {
this.weeksValue = (_a = weekInput.value) !== null && _a !== void 0 ? _a : 0;
if (weekInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.weeksValue = weekInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleDayChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -28,13 +21,7 @@ const dayInput = ev.target;

if (exists(dayInput)) {
this.daysValue = (_a = dayInput.value) !== null && _a !== void 0 ? _a : 0;
if (dayInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.daysValue = dayInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleHourChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -44,13 +31,7 @@ const hourInput = ev.target;

if (exists(hourInput)) {
this.hoursValue = (_a = hourInput.value) !== null && _a !== void 0 ? _a : 0;
if (hourInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.hoursValue = hourInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleMinuteChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -60,13 +41,7 @@ const minuteInput = ev.target;

if (exists(minuteInput)) {
this.minutesValue = (_a = minuteInput.value) !== null && _a !== void 0 ? _a : 0;
if (minuteInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.minutesValue = minuteInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleSecondChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -76,9 +51,4 @@ const secondInput = ev.target;

if (exists(secondInput)) {
this.secondsValue = (_a = secondInput.value) !== null && _a !== void 0 ? _a : 0;
if (secondInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.secondsValue = secondInput.value;
this.setValue(this.getTotalValueMs().toString());
}

@@ -140,7 +110,8 @@ };

getTotalValueMs() {
return (this.weeksValue * 7 * 24 * 60 * 60 * 1000 +
this.daysValue * 24 * 60 * 60 * 1000 +
this.hoursValue * 60 * 60 * 1000 +
this.minutesValue * 60 * 1000 +
this.secondsValue * 1000);
var _a, _b, _c, _d, _e;
return (((_a = this.weeksValue) !== null && _a !== void 0 ? _a : 0) * 7 * 24 * 60 * 60 * 1000 +
((_b = this.daysValue) !== null && _b !== void 0 ? _b : 0) * 24 * 60 * 60 * 1000 +
((_c = this.hoursValue) !== null && _c !== void 0 ? _c : 0) * 60 * 60 * 1000 +
((_d = this.minutesValue) !== null && _d !== void 0 ? _d : 0) * 60 * 1000 +
((_e = this.secondsValue) !== null && _e !== void 0 ? _e : 0) * 1000);
}

@@ -181,3 +152,3 @@ componentWillLoad() {

render() {
return (h(Host, { key: '5a829261b2ecb530241683e016a4db85167c21ec', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'a6848804cfd0c74157d3aed6ef597167357f187c' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: '8f51de37e1670b7c50109a913a41d5ab603f0a80', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
return (h(Host, { key: 'a82cbcbdc30e0d50c04d3d725a304209c38cf7c1', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'ee9494c782cfaebb52bdd903aa6ab45a92810191' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: 'ba21dccc9fd0a0cd079aa20dc65d698e893e3de5', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
}

@@ -184,0 +155,0 @@ static get is() { return "eco-input-time"; }

@@ -27,2 +27,3 @@ import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';

if (input !== null) {
this.valid = input.validity.valid;
if (input.value === '') {

@@ -34,3 +35,2 @@ this.setValue(null);

}
this.valid = input.validity.valid;
}

@@ -48,6 +48,2 @@ };

};
this.onKeydown = (ev) => {
this.onInput(ev);
this.ecoInput.emit(ev);
};
this.clearInput = false;

@@ -127,3 +123,3 @@ this.clearOnEdit = undefined;

const classMap = this.getCssClassMap();
return (h(Host, { key: 'da17d06910ef7fb1e62e60295ed971aaeffb099c', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'c774a6c243848255daec81b72dca002538348cdf', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'be669b02b6776704011aee444ee17e1474996224', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, onKeyDown: this.onKeydown, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
return (h(Host, { key: '795afe216dc2f746c6c125f023f2830665c49967', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: '82cc449c4ac11e45896b062727e05c3118dfb92e', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'fece07979a63147a9f3f0238261fad4ab6ba7b17', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
}

@@ -130,0 +126,0 @@ getCssClassMap() {

@@ -21,3 +21,2 @@ import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';

this.handleWeekChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -27,13 +26,7 @@ const weekInput = ev.target;

if (exists(weekInput)) {
this.weeksValue = (_a = weekInput.value) !== null && _a !== void 0 ? _a : 0;
if (weekInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.weeksValue = weekInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleDayChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -43,13 +36,7 @@ const dayInput = ev.target;

if (exists(dayInput)) {
this.daysValue = (_a = dayInput.value) !== null && _a !== void 0 ? _a : 0;
if (dayInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.daysValue = dayInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleHourChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -59,13 +46,7 @@ const hourInput = ev.target;

if (exists(hourInput)) {
this.hoursValue = (_a = hourInput.value) !== null && _a !== void 0 ? _a : 0;
if (hourInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.hoursValue = hourInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleMinuteChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -75,13 +56,7 @@ const minuteInput = ev.target;

if (exists(minuteInput)) {
this.minutesValue = (_a = minuteInput.value) !== null && _a !== void 0 ? _a : 0;
if (minuteInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.minutesValue = minuteInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleSecondChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -91,9 +66,4 @@ const secondInput = ev.target;

if (exists(secondInput)) {
this.secondsValue = (_a = secondInput.value) !== null && _a !== void 0 ? _a : 0;
if (secondInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.secondsValue = secondInput.value;
this.setValue(this.getTotalValueMs().toString());
}

@@ -155,7 +125,8 @@ };

getTotalValueMs() {
return (this.weeksValue * 7 * 24 * 60 * 60 * 1000 +
this.daysValue * 24 * 60 * 60 * 1000 +
this.hoursValue * 60 * 60 * 1000 +
this.minutesValue * 60 * 1000 +
this.secondsValue * 1000);
var _a, _b, _c, _d, _e;
return (((_a = this.weeksValue) !== null && _a !== void 0 ? _a : 0) * 7 * 24 * 60 * 60 * 1000 +
((_b = this.daysValue) !== null && _b !== void 0 ? _b : 0) * 24 * 60 * 60 * 1000 +
((_c = this.hoursValue) !== null && _c !== void 0 ? _c : 0) * 60 * 60 * 1000 +
((_d = this.minutesValue) !== null && _d !== void 0 ? _d : 0) * 60 * 1000 +
((_e = this.secondsValue) !== null && _e !== void 0 ? _e : 0) * 1000);
}

@@ -196,3 +167,3 @@ componentWillLoad() {

render() {
return (h(Host, { key: '5a829261b2ecb530241683e016a4db85167c21ec', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'a6848804cfd0c74157d3aed6ef597167357f187c' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: '8f51de37e1670b7c50109a913a41d5ab603f0a80', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
return (h(Host, { key: 'a82cbcbdc30e0d50c04d3d725a304209c38cf7c1', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'ee9494c782cfaebb52bdd903aa6ab45a92810191' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: 'ba21dccc9fd0a0cd079aa20dc65d698e893e3de5', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
}

@@ -199,0 +170,0 @@ get hostElement() { return this; }

@@ -1,2 +0,2 @@

import{p as e,b as a}from"./p-4323c41c.js";export{s as setNonce}from"./p-4323c41c.js";import{g as t}from"./p-e1255160.js";const d=()=>{const a=import.meta.url;const t={};if(a!==""){t.resourcesUrl=new URL(".",a).href}return e(t)};d().then((async e=>{await t();return a(JSON.parse('[["p-4c8a2826",[[1,"eco-multi-select",{"value":[1040],"label":[1],"help":[1],"name":[1],"optional":[1],"placeholder":[1],"maxBlockSize":[1,"max-block-size"],"status":[1],"disabled":[4],"required":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdLabel":[1,"qa-id-label"],"qaIdInput":[1,"qa-id-input"],"qaIdOptional":[1,"qa-id-optional"],"setFocus":[64]}]]],["p-e1c80fde",[[1,"eco-chat-message",{"timestamp":[1],"author":[1],"message":[1],"authorIsUser":[4,"author-is-user"],"canDelete":[4,"can-delete"],"canEdit":[4,"can-edit"],"qaIdElement":[1,"qa-id-element"],"qaIdTimestamp":[1,"qa-id-timestamp"],"qaIdAuthor":[1,"qa-id-author"],"qaIdMessage":[1,"qa-id-message"],"qaIdActionCancel":[1,"qa-id-action-cancel"],"qaIdActionDelete":[1,"qa-id-action-delete"],"qaIdActionDeleteConfirm":[1,"qa-id-action-delete-confirm"],"qaIdActionEdit":[1,"qa-id-action-edit"],"qaIdActionEditConfirm":[1,"qa-id-action-edit-confirm"],"updatedMessage":[32]},[[0,"messageEdited","onEdited"],[0,"messageDeleted","onDeleted"]]]]],["p-360542fc",[[2,"eco-input-filter",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"placeholder":[1],"optional":[1],"inputId":[1025,"input-id"],"required":[4],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdOptional":[1,"qa-id-optional"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"resetFilter":[64]}]]],["p-51aa13c8",[[4,"eco-table",{"responsive":[4],"resizable":[4],"equalcolumns":[4],"containsDocs":[4,"contains-docs"],"stickyOffset":[1,"sticky-offset"],"stickyTableHeight":[1,"sticky-table-height"],"searchable":[4],"searchableNoResults":[1028,"searchable-no-results"],"searchableNoResultsText":[1,"searchable-no-results-text"],"searchableLabel":[1,"searchable-label"],"searchableHelp":[1,"searchable-help"],"searchablePlaceholder":[1,"searchable-placeholder"],"qaIdElement":[1,"qa-id-element"],"qaIdResetButton":[1,"qa-id-reset-button"],"qaIdActions":[1,"qa-id-actions"],"qaIdTable":[1,"qa-id-table"],"qaIdSearchableElement":[1,"qa-id-searchable-element"],"qaIdSearchableInput":[1,"qa-id-searchable-input"],"qaIdSearchableLabel":[1,"qa-id-searchable-label"],"qaIdSearchableHelp":[1,"qa-id-searchable-help"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"customSortEnabled":[4,"custom-sort-enabled"],"resetColumns":[64],"searchClear":[64]}]]],["p-f2a608cc",[[1,"eco-docs-code",{"codeTitle":[1,"code-title"],"code":[1],"showLines":[4,"show-lines"],"allowCopy":[4,"allow-copy"],"copyLabel":[1025,"copy-label"],"qaIdElement":[1,"qa-id-element"],"qaIdCode":[1,"qa-id-code"],"qaIdCopy":[1,"qa-id-copy"],"qaIdCopyLabel":[1,"qa-id-copy-label"],"qaIdCodeTitle":[1,"qa-id-code-title"],"qaIdLineNumbers":[1,"qa-id-line-numbers"],"hasCopied":[32],"copyIcon":[32]}]]],["p-2ff6c15d",[[6,"eco-modal",{"modaltitle":[1],"visible":[1028],"fill":[4],"showBody":[4,"show-body"],"qaIdElement":[1,"qa-id-element"],"qaIdModal":[1,"qa-id-modal"],"qaIdTitle":[1,"qa-id-title"],"qaIdClose":[1,"qa-id-close"],"qaIdCancel":[1,"qa-id-cancel"],"handleClose":[64],"handleTrigger":[64]}]]],["p-f8104634",[[1,"eco-filter-list",{"label":[1],"help":[1],"placeholder":[1],"hideInputIfLessThan":[2,"hide-input-if-less-than"],"noResultsText":[1,"no-results-text"],"inputId":[1,"input-id"],"maxBlockSize":[1,"max-block-size"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"noResults":[32],"showInput":[32],"filterSlot":[64],"filterClear":[64]}]]],["p-4bd197dd",[[2,"eco-input-range",{"value":[1026],"inputId":[1025,"input-id"],"min":[2],"step":[2],"max":[2],"rangeFlow":[1,"range-flow"],"inputFlow":[1,"input-flow"],"thumbSize":[1,"thumb-size"],"showInput":[4,"show-input"],"showOutput":[4,"show-output"],"showError":[1028,"show-error"],"showStepMismatchError":[1028,"show-step-mismatch-error"],"valuePrefix":[1,"value-prefix"],"valueSuffix":[1,"value-suffix"],"help":[1],"helpStatus":[1,"help-status"],"label":[1],"disabled":[4],"readonly":[4],"required":[4],"optional":[1],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdHelp":[1,"qa-id-help"],"qaIdRange":[1,"qa-id-range"],"qaIdInput":[1,"qa-id-input"],"qaIdOutput":[1,"qa-id-output"],"qaIdMessagebox":[1,"qa-id-messagebox"]},null,{"value":["valueChanged"]}]]],["p-0901fefe",[[1,"eco-radios",{"searchable":[4],"searchPlaceholder":[1,"search-placeholder"],"help":[1],"helpStatus":[1,"help-status"],"name":[1],"label":[1],"noResults":[1028,"no-results"],"noResultsText":[1,"no-results-text"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"radioData":[16],"value":[1032],"maxBlockSize":[1,"max-block-size"],"searchClear":[64]},[[4,"keydown","onKeydown"]],{"value":["valueChanged"]}]]],["p-e90127fd",[[6,"eco-input-datalist",{"disabled":[4],"help":[1],"helpStatus":[1,"help-status"],"inputId":[1,"input-id"],"listId":[1,"list-id"],"label":[1],"optional":[1],"qaIdDataList":[1,"qa-id-data-list"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdNotListedMessage":[1,"qa-id-not-listed-message"],"readonly":[4],"required":[4],"value":[1025],"placeholder":[1],"notListedMessage":[1,"not-listed-message"],"notListedOption":[32],"optionsList":[32]}]]],["p-97eb9bdf",[[1,"eco-input-tags",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"optional":[1],"inputId":[1025,"input-id"],"value":[1040],"options":[16],"required":[4],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdOptional":[1,"qa-id-optional"],"qaIdValues":[1,"qa-id-values"],"qaIdInput":[1,"qa-id-input"],"qaIdOptions":[1,"qa-id-options"],"currentInput":[32],"setOptions":[64]},[[0,"focusout","handleFocusOut"],[0,"tagRemoved","removeTagHandler"],[0,"tagAdded","addTagHandler"]]]]],["p-2a6203fe",[[2,"eco-input-time",{"disabled":[4],"help":[1],"helpStatus":[1,"help-status"],"label":[1],"optional":[1],"qaIdDays":[1,"qa-id-days"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdHours":[1,"qa-id-hours"],"qaIdInputs":[1,"qa-id-inputs"],"qaIdLabel":[1,"qa-id-label"],"qaIdMinutes":[1,"qa-id-minutes"],"qaIdOptional":[1,"qa-id-optional"],"qaIdSeconds":[1,"qa-id-seconds"],"qaIdWeeks":[1,"qa-id-weeks"],"readonly":[4],"required":[4],"value":[1025],"weeks":[4],"weeksMax":[2,"weeks-max"],"weeksMin":[2,"weeks-min"],"weeksValue":[1026,"weeks-value"],"days":[4],"daysMax":[2,"days-max"],"daysMin":[2,"days-min"],"daysValue":[1026,"days-value"],"hours":[4],"hoursMax":[2,"hours-max"],"hoursMin":[2,"hours-min"],"hoursValue":[1026,"hours-value"],"minutes":[4],"minutesMax":[2,"minutes-max"],"minutesMin":[2,"minutes-min"],"minutesValue":[1026,"minutes-value"],"seconds":[4],"secondsMax":[2,"seconds-max"],"secondsMin":[2,"seconds-min"],"secondsValue":[1026,"seconds-value"]}]]],["p-5b529643",[[6,"eco-layout-nav",{"logoTitle":[1,"logo-title"],"homeLink":[1,"home-link"],"appName":[1,"app-name"],"accountName":[1,"account-name"],"allowHiding":[4,"allow-hiding"],"hideNav":[4,"hide-nav"],"qaIdElement":[1,"qa-id-element"],"qaIdLogo":[1,"qa-id-logo"],"qaIdAppName":[1,"qa-id-app-name"],"qaIdNav":[1,"qa-id-nav"],"accentHue":[2,"accent-hue"],"accentSaturation":[2,"accent-saturation"],"accentLightness":[2,"accent-lightness"],"accentAlpha":[2,"accent-alpha"],"followActive":[64],"navHide":[64],"navShow":[64],"navToggle":[64]}]]],["p-e41760b2",[[1,"eco-tetrigs",{"board":[32],"score":[32],"currentPiece":[32],"nextPiece":[32],"isGameOver":[32]}]]],["p-0bcefc8a",[[2,"eco-input-file",{"accept":[1],"disabled":[4],"files":[16],"help":[1],"inputId":[1,"input-id"],"label":[1],"optional":[1],"qaIdButton":[1,"qa-id-button"],"qaIdElement":[1,"qa-id-element"],"qaIdFilename":[1,"qa-id-filename"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"text":[1],"value":[1],"width":[1],"reset":[64]}]]],["p-734cd492",[[1,"eco-input-phone",{"disabled":[4],"help":[1],"label":[1],"name":[1],"optional":[1],"pattern":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}]]],["p-7a5b1ddd",[[6,"eco-select",{"value":[1025],"label":[1],"help":[1],"name":[1],"optional":[1],"status":[1],"width":[1],"disabled":[4],"required":[4],"multiple":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdLabel":[1,"qa-id-label"],"qaIdSelect":[1,"qa-id-select"]}]]],["p-96cf021e",[[1,"eco-stacked-bar",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"showLegend":[4,"show-legend"],"showPercent":[4,"show-percent"],"showCount":[4,"show-count"],"gap":[1],"barThickness":[1,"bar-thickness"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdBar":[1,"qa-id-bar"],"qaIdLegend":[1,"qa-id-legend"],"qaIdPercent":[1,"qa-id-percent"],"qaIdCount":[1,"qa-id-count"],"data":[16]}]]],["p-66714369",[[1,"eco-docs-responses",{"responsesTitle":[1,"responses-title"],"responses":[16],"qaIdElement":[1,"qa-id-element"],"qaIdResponsesTitle":[1,"qa-id-responses-title"]}]]],["p-a8ddc1f4",[[1,"eco-qr-scanner",{"label":[1],"icon":[1],"type":[1],"styletype":[1],"qaIdElement":[1,"qa-id-element"],"value":[32],"scanningInProgress":[32],"start":[64],"reset":[64]}]]],["p-114be3ea",[[1,"eco-lightbox",{"visible":[1028],"loaded":[4],"disabled":[4],"qaIdElement":[1,"qa-id-element"],"handleTrigger":[64]}]]],["p-d6457237",[[1,"eco-split-button",{"showOptions":[32],"toggleIconSize":[32],"toggleIcon":[32],"open":[64],"close":[64]}]]],["p-0baf5a15",[[1,"eco-split-option",{"disabled":[4],"icon":[1],"isBusy":[4,"is-busy"],"label":[1],"size":[1],"styletype":[1],"type":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"],"focusButton":[64]}]]],["p-fb07545f",[[1,"eco-slide-over",{"qaIdElement":[1,"qa-id-element"],"qaIdClose":[1,"qa-id-close"],"visible":[1028],"handleClose":[64],"handleTrigger":[64]}]]],["p-e2e4e044",[[1,"eco-accordion-item",{"align":[1025],"clickAnywhere":[4,"click-anywhere"],"sticky":[4],"collapsible":[4],"collapsed":[1028],"disabled":[1028],"qaIdContent":[1,"qa-id-content"],"qaIdElement":[1,"qa-id-element"],"qaIdHeader":[1,"qa-id-header"],"qaIdIcon":[1,"qa-id-icon"],"qaIdToggle":[1,"qa-id-toggle"],"disable":[64]}]]],["p-cbee9a1e",[[2,"eco-ani-add-gtl-orientation",{"location":[1]}]]],["p-96567d1b",[[1,"eco-badge",{"type":[1],"icon":[1],"dot":[4],"label":[1],"rotateIcon":[4,"rotate-icon"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdIcon":[1,"qa-id-icon"],"qaIdDot":[1,"qa-id-dot"]}]]],["p-58c5f753",[[1,"eco-chart-sparkline",{"label":[1],"showCount":[4,"show-count"],"data":[16],"lineColour":[1,"line-colour"],"strokeWidth":[2,"stroke-width"],"fillColour":[1,"fill-colour"],"fillOpacity":[1,"fill-opacity"],"yAxisMax":[2,"y-axis-max"],"flow":[1],"lineXPos":[32],"count":[32]}]]],["p-e63d3092",[[1,"eco-input-radio",{"value":[1032],"disabled":[4],"label":[1],"name":[1],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"checked":[32],"buttonTabindex":[32],"setButtonTabindex":[64]}]]],["p-cde0a916",[[6,"eco-layout-aside",{"collapsible":[4],"collapsed":[1028],"localStorageName":[1,"local-storage-name"],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"asideMaxBlockSize":[1,"aside-max-block-size"],"asidePosition":[1,"aside-position"],"qaIdElement":[1,"qa-id-element"],"qaIdAside":[1,"qa-id-aside"],"qaIdAsideContent":[1,"qa-id-aside-content"],"qaIdToggle":[1,"qa-id-toggle"],"qaIdContent":[1,"qa-id-content"],"handleCollapse":[64]}]]],["p-3ad84cb2",[[1,"eco-layout-blocks",{"qaIdElement":[1,"qa-id-element"],"qaIdContent":[1,"qa-id-content"]}]]],["p-e128f582",[[6,"eco-layout-filter",{"collapsible":[4],"collapsed":[1028],"filtersApplied":[4,"filters-applied"],"localStorageName":[1,"local-storage-name"],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"filterMaxBlockSize":[1,"filter-max-block-size"],"qaIdElement":[1,"qa-id-element"],"qaIdFilter":[1,"qa-id-filter"],"qaIdToggle":[1,"qa-id-toggle"],"qaIdContent":[1,"qa-id-content"],"handleCollapse":[64]}]]],["p-088297d2",[[1,"eco-layout-header",{"level":[2],"displayAs":[2,"display-as"],"qaIdElement":[1,"qa-id-element"],"qaIdActionsBefore":[1,"qa-id-actions-before"],"qaIdActionsAfter":[1,"qa-id-actions-after"],"qaIdHeadingElement":[1,"qa-id-heading-element"],"qaIdHeading":[1,"qa-id-heading"]}]]],["p-0957790d",[[1,"eco-nav-link",{"href":[1],"label":[1],"target":[1],"rel":[1],"active":[4],"icon":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]},[[0,"keydown","handleKeyDown"]]]]],["p-d04f192e",[[2,"eco-status-icon",{"icon":[1],"type":[1],"iconsize":[1],"label":[1],"labelLocation":[1,"label-location"],"wrapLabel":[4,"wrap-label"],"width":[2],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"]}]]],["p-3f792fa1",[[1,"eco-subnav-item",{"disabled":[4],"href":[1],"target":[1],"label":[1],"icon":[1],"iconPosition":[1,"icon-position"],"iconSize":[1,"icon-size"],"active":[4],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}]]],["p-c5a20c47",[[1,"eco-text-clamp",{"linesToShow":[2,"lines-to-show"],"suppressExpand":[4,"suppress-expand"]}]]],["p-712c2c4f",[[1,"eco-user-badge",{"userId":[1,"user-id"],"userName":[1,"user-name"],"initials":[4],"qaIdElement":[1,"qa-id-element"]}]]],["p-4853f941",[[1,"eco-accordion",{"qaIdElement":[1,"qa-id-element"],"align":[1],"clickAnywhere":[4,"click-anywhere"],"sticky":[4]}]]],["p-f22317c2",[[1,"eco-fieldset",{"legend":[1],"disabled":[4],"qaIdElement":[1,"qa-id-element"],"qaIdLegend":[1,"qa-id-legend"]},null,{"disabled":["onDisabledChange"]}]]],["p-dffb8995",[[1,"eco-generated-pattern-dots",{"text":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-bdb76b1d",[[1,"eco-generated-pattern-stripes",{"text":[1],"stripeWidth":[2,"stripe-width"],"qaIdElement":[1,"qa-id-element"]}]]],["p-b8cfb9ef",[[6,"eco-layout-body",{"qaIdElement":[1,"qa-id-element"],"qaIdMain":[1,"qa-id-main"]}]]],["p-b2b2d09e",[[0,"eco-level",{"tooltip":[1],"steps":[2],"amount":[2],"emptyLabel":[1,"empty-label"],"overfullLabel":[1,"overfull-label"],"showAmount":[4,"show-amount"],"approximate":[4],"levelGap":[4,"level-gap"],"type":[1],"elementFlow":[1,"element-flow"],"levelFlow":[1,"level-flow"],"qaIdElement":[1,"qa-id-element"],"qaIdAmount":[1,"qa-id-amount"],"renderAmount":[4,"render-amount"]}]]],["p-ed54ed21",[[1,"eco-logo",{"colour":[1]}]]],["p-59e77797",[[1,"eco-nav-flyout",{"qaIdElement":[1,"qa-id-element"],"visible":[1028],"handleClose":[64],"handleTrigger":[64]},[[8,"click","handleClick"],[8,"keyup","handleKeyup"]]]]],["p-3d0c3e76",[[2,"eco-progress",{"variant":[1],"type":[1],"width":[1],"improving":[4],"max":[2],"value":[2],"roundTo":[2,"round-to"],"showPercentage":[4,"show-percentage"],"of":[4],"ofString":[1,"of-string"],"qaIdElement":[1,"qa-id-element"],"qaIdText":[1,"qa-id-text"],"qaIdProgress":[1,"qa-id-progress"]}]]],["p-684387d0",[[1,"eco-segment",{"value":[1032],"disabled":[4],"name":[1],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"checked":[32],"buttonTabindex":[32],"setButtonTabindex":[64]}]]],["p-f41d1ed6",[[1,"eco-segments",{"qaIdElement":[1,"qa-id-element"],"value":[1032]},[[4,"keydown","onKeydown"]]]]],["p-accae429",[[1,"eco-subnav",{"flow":[1],"qaIdElement":[1,"qa-id-element"],"followActive":[64]}]]],["p-c7509dea",[[1,"eco-tab",{"bind":[1],"active":[4],"qaIdElement":[1,"qa-id-element"]}]]],["p-96be4713",[[1,"eco-tab-content",{"bind":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-18589c9c",[[1,"eco-tabs",{"tabLocation":[1,"tab-location"],"alignTabs":[1,"align-tabs"],"wrap":[4],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"changeUrl":[1,"change-url"],"urlSearchQuery":[1,"url-search-query"],"autoPlay":[4,"auto-play"],"autoPlaySpeed":[2,"auto-play-speed"],"qaIdElement":[1,"qa-id-element"],"setActiveTab":[64]},[[0,"click","handleClick"],[0,"keyup","handleKeyup"]]]]],["p-4c98af76",[[1,"eco-checkboxes",{"help":[1],"helpStatus":[1,"help-status"],"label":[1],"noResults":[1028,"no-results"],"noResultsText":[1,"no-results-text"],"searchable":[4],"searchPlaceholder":[1,"search-placeholder"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"checkAll":[4,"check-all"],"allowCheckAll":[4,"allow-check-all"],"maxBlockSize":[1,"max-block-size"],"searchClear":[64]},[[0,"ecoChange","handleEcoChange"]]]]],["p-fdb80b4a",[[1,"eco-input-tag",{"label":[1],"action":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"addTag":[64],"removeTag":[64]}]]],["p-6a943517",[[1,"eco-popover",{"showOn":[1,"show-on"],"popoverFlow":[1,"popover-flow"],"popoverAlignment":[1,"popover-alignment"],"qaIdElement":[1,"qa-id-element"],"qaIdPopover":[1,"qa-id-popover"],"visible":[32],"open":[64],"close":[64],"handleMouseEnter":[64],"handleFocusIn":[64],"handleFocusOut":[64],"handleMouseLeave":[64],"handleClickOnElement":[64]}]]],["p-8da442e2",[[1,"eco-split-options"]]],["p-d304de35",[[1,"eco-toast",{"type":[1],"icon":[1],"autoDismiss":[4,"auto-dismiss"],"dismissAfter":[2,"dismiss-after"],"qaIdElement":[1,"qa-id-element"],"qaIdContent":[1,"qa-id-content"],"qaIdClose":[1,"qa-id-close"],"qaIdTimer":[1,"qa-id-timer"]}],[1,"eco-toast-rack",{"qaIdElement":[1,"qa-id-element"],"stack":[4]},[[0,"present","toastPresent"],[0,"dismiss","toastDismiss"]]]]],["p-1d3c29dd",[[2,"eco-input-textarea",{"disabled":[4],"height":[1],"help":[1],"label":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"name":[1],"optional":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"resize":[4],"status":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025]}]]],["p-c09b6d4a",[[1,"eco-input-checkbox",{"label":[1],"checked":[1028],"indeterminate":[1028],"disabled":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"name":[1],"value":[1],"labelPosition":[1,"label-position"],"showAsToggle":[4,"show-as-toggle"],"setChecked":[64]}]]],["p-b97fc631",[[1,"eco-nav-action",{"notice":[1028],"icon":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"isNoticed":[32],"noticeStart":[64],"noticeStop":[64]}],[1,"eco-igs-logo",{"theme":[1],"colour":[1]}]]],["p-ae02c0e9",[[1,"eco-description-group",{"vertical":[4],"flow":[1],"qaIdElement":[1,"qa-id-element"],"colWidth":[1,"col-width"],"termWidth":[1,"term-width"],"gap":[1],"inverted":[4]}],[1,"eco-docs-parameter",{"name":[1],"required":[4],"schemaType":[1,"schema-type"],"in":[1],"qaIdElement":[1,"qa-id-element"],"qaIdName":[1,"qa-id-name"],"qaIdRequired":[1,"qa-id-required"],"qaIdSchemaType":[1,"qa-id-schema-type"],"qaIdIn":[1,"qa-id-in"]}]]],["p-eb4587e9",[[1,"eco-description",{"term":[1],"description":[8],"flow":[1025],"inverted":[4],"qaIdElement":[1,"qa-id-element"],"qaIdTerm":[1,"qa-id-term"],"qaIdDesc":[1,"qa-id-desc"]}]]],["p-24be6c25",[[1,"eco-popover-content",{"popoverFlow":[1,"popover-flow"],"popoverAlignment":[1,"popover-alignment"],"qaIdPopover":[1,"qa-id-popover"]}]]],["p-edf82562",[[2,"eco-input-date",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"optional":[1],"readonly":[4],"required":[4],"disabled":[4],"status":[1025],"withTime":[4,"with-time"],"daysPast":[2,"days-past"],"daysFuture":[2,"days-future"],"dayMin":[2,"day-min"],"dayMax":[2,"day-max"],"monthMin":[2,"month-min"],"monthMax":[2,"month-max"],"yearMin":[2,"year-min"],"yearMax":[2,"year-max"],"minuteMin":[2,"minute-min"],"minuteMax":[2,"minute-max"],"hourMin":[2,"hour-min"],"hourMax":[2,"hour-max"],"qaIdInputs":[1,"qa-id-inputs"],"qaIdDd":[1,"qa-id-dd"],"qaIdMm":[1,"qa-id-mm"],"qaIdYyyy":[1,"qa-id-yyyy"],"qaIdMinute":[1,"qa-id-minute"],"qaIdHour":[1,"qa-id-hour"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdHelp":[1,"qa-id-help"],"qaIdMessagebox":[1,"qa-id-messagebox"],"value":[1025],"dateExists":[32],"inputsEmpty":[32],"sinceDate":[32],"sinceDateError":[32],"untilDate":[32],"untilDateError":[32],"validateDate":[64],"getDate":[64],"setDate":[64]}],[2,"eco-input-number",{"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"disabled":[4],"help":[1],"label":[1],"max":[2],"min":[2],"name":[1],"optional":[1],"pattern":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"step":[2],"width":[1],"inputId":[1025,"input-id"],"valid":[1028],"value":[1026],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}],[6,"eco-messagebox",{"type":[1],"icon":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}],[1,"eco-text-input-optional",{"qaIdElement":[1,"qa-id-element"]}],[1,"eco-text-input-help",{"status":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}],[6,"eco-input-wrapper",{"width":[1],"status":[1],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-text-label",{"for":[1],"wrap":[4],"qaIdLabel":[1,"qa-id-label"],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-spacer",{"gap":[1],"flow":[1],"wrap":[4],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-icon",{"icon":[1],"icontype":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"rotate":[4]}]]],["p-dd0bddb1",[[2,"eco-button",{"disabled":[4],"href":[1],"target":[1],"icon":[1],"isBusy":[4,"is-busy"],"label":[1],"link":[4],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"],"size":[1],"styletype":[1],"type":[1],"iconsize":[1025],"toggleLabel":[4,"toggle-label"],"iconPosition":[1,"icon-position"]},[[0,"keydown","handleKeyDown"]]],[2,"eco-spinner",{"text":[1],"fullscreen":[4],"size":[1],"theme":[1],"qaIdElement":[1,"qa-id-element"],"qaIdText":[1,"qa-id-text"]}],[1,"eco-backdrop",{"visible":[1028],"showBackdrop":[64],"hideBackdrop":[64]}]]],["p-8264d657",[[1,"eco-chat-bubble",{"message":[1],"authorIsUser":[4,"author-is-user"],"canDelete":[4,"can-delete"],"canEdit":[4,"can-edit"],"qaIdElement":[1,"qa-id-element"],"qaIdActionCancel":[1,"qa-id-action-cancel"],"qaIdActionDelete":[1,"qa-id-action-delete"],"qaIdActionDeleteConfirm":[1,"qa-id-action-delete-confirm"],"qaIdActionEdit":[1,"qa-id-action-edit"],"qaIdActionEditConfirm":[1,"qa-id-action-edit-confirm"],"isUpdating":[32],"isEditing":[32],"isDeleting":[32],"updatedMessage":[32]},[[0,"ecoChange","updateMessage"]],{"message":["valueChanged"]}],[1,"eco-chat-author",{"author":[1],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-chat-timestamp",{"timestamp":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-d2785c4f",[[6,"eco-text-heading",{"level":[2],"displayAs":[1026,"display-as"],"headingId":[1,"heading-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHeading":[1,"qa-id-heading"]}]]],["p-b983dd94",[[2,"eco-input-text",{"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"disabled":[4],"help":[1],"hidden":[4],"label":[1],"name":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"optional":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"type":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}]]],["p-c3f8b679",[[1,"eco-card",{"border":[1],"collapsible":[4],"collapsed":[1028],"elevation":[1],"showBody":[4,"show-body"],"qaIdBody":[1,"qa-id-body"],"qaIdElement":[1,"qa-id-element"],"qaIdExpand":[1,"qa-id-expand"],"qaIdFooter":[1,"qa-id-footer"],"qaIdHeader":[1,"qa-id-header"],"qaIdToggle":[1,"qa-id-toggle"],"sticky":[4],"stickyOffset":[1,"sticky-offset"]}],[1,"eco-card-body"],[1,"eco-card-footer"],[1,"eco-card-header"]]]]'),e)}));
import{p as e,b as a}from"./p-4323c41c.js";export{s as setNonce}from"./p-4323c41c.js";import{g as t}from"./p-e1255160.js";const d=()=>{const a=import.meta.url;const t={};if(a!==""){t.resourcesUrl=new URL(".",a).href}return e(t)};d().then((async e=>{await t();return a(JSON.parse('[["p-4c8a2826",[[1,"eco-multi-select",{"value":[1040],"label":[1],"help":[1],"name":[1],"optional":[1],"placeholder":[1],"maxBlockSize":[1,"max-block-size"],"status":[1],"disabled":[4],"required":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdLabel":[1,"qa-id-label"],"qaIdInput":[1,"qa-id-input"],"qaIdOptional":[1,"qa-id-optional"],"setFocus":[64]}]]],["p-e1c80fde",[[1,"eco-chat-message",{"timestamp":[1],"author":[1],"message":[1],"authorIsUser":[4,"author-is-user"],"canDelete":[4,"can-delete"],"canEdit":[4,"can-edit"],"qaIdElement":[1,"qa-id-element"],"qaIdTimestamp":[1,"qa-id-timestamp"],"qaIdAuthor":[1,"qa-id-author"],"qaIdMessage":[1,"qa-id-message"],"qaIdActionCancel":[1,"qa-id-action-cancel"],"qaIdActionDelete":[1,"qa-id-action-delete"],"qaIdActionDeleteConfirm":[1,"qa-id-action-delete-confirm"],"qaIdActionEdit":[1,"qa-id-action-edit"],"qaIdActionEditConfirm":[1,"qa-id-action-edit-confirm"],"updatedMessage":[32]},[[0,"messageEdited","onEdited"],[0,"messageDeleted","onDeleted"]]]]],["p-360542fc",[[2,"eco-input-filter",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"placeholder":[1],"optional":[1],"inputId":[1025,"input-id"],"required":[4],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdOptional":[1,"qa-id-optional"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"resetFilter":[64]}]]],["p-51aa13c8",[[4,"eco-table",{"responsive":[4],"resizable":[4],"equalcolumns":[4],"containsDocs":[4,"contains-docs"],"stickyOffset":[1,"sticky-offset"],"stickyTableHeight":[1,"sticky-table-height"],"searchable":[4],"searchableNoResults":[1028,"searchable-no-results"],"searchableNoResultsText":[1,"searchable-no-results-text"],"searchableLabel":[1,"searchable-label"],"searchableHelp":[1,"searchable-help"],"searchablePlaceholder":[1,"searchable-placeholder"],"qaIdElement":[1,"qa-id-element"],"qaIdResetButton":[1,"qa-id-reset-button"],"qaIdActions":[1,"qa-id-actions"],"qaIdTable":[1,"qa-id-table"],"qaIdSearchableElement":[1,"qa-id-searchable-element"],"qaIdSearchableInput":[1,"qa-id-searchable-input"],"qaIdSearchableLabel":[1,"qa-id-searchable-label"],"qaIdSearchableHelp":[1,"qa-id-searchable-help"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"customSortEnabled":[4,"custom-sort-enabled"],"resetColumns":[64],"searchClear":[64]}]]],["p-f2a608cc",[[1,"eco-docs-code",{"codeTitle":[1,"code-title"],"code":[1],"showLines":[4,"show-lines"],"allowCopy":[4,"allow-copy"],"copyLabel":[1025,"copy-label"],"qaIdElement":[1,"qa-id-element"],"qaIdCode":[1,"qa-id-code"],"qaIdCopy":[1,"qa-id-copy"],"qaIdCopyLabel":[1,"qa-id-copy-label"],"qaIdCodeTitle":[1,"qa-id-code-title"],"qaIdLineNumbers":[1,"qa-id-line-numbers"],"hasCopied":[32],"copyIcon":[32]}]]],["p-2ff6c15d",[[6,"eco-modal",{"modaltitle":[1],"visible":[1028],"fill":[4],"showBody":[4,"show-body"],"qaIdElement":[1,"qa-id-element"],"qaIdModal":[1,"qa-id-modal"],"qaIdTitle":[1,"qa-id-title"],"qaIdClose":[1,"qa-id-close"],"qaIdCancel":[1,"qa-id-cancel"],"handleClose":[64],"handleTrigger":[64]}]]],["p-f8104634",[[1,"eco-filter-list",{"label":[1],"help":[1],"placeholder":[1],"hideInputIfLessThan":[2,"hide-input-if-less-than"],"noResultsText":[1,"no-results-text"],"inputId":[1,"input-id"],"maxBlockSize":[1,"max-block-size"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"noResults":[32],"showInput":[32],"filterSlot":[64],"filterClear":[64]}]]],["p-4bd197dd",[[2,"eco-input-range",{"value":[1026],"inputId":[1025,"input-id"],"min":[2],"step":[2],"max":[2],"rangeFlow":[1,"range-flow"],"inputFlow":[1,"input-flow"],"thumbSize":[1,"thumb-size"],"showInput":[4,"show-input"],"showOutput":[4,"show-output"],"showError":[1028,"show-error"],"showStepMismatchError":[1028,"show-step-mismatch-error"],"valuePrefix":[1,"value-prefix"],"valueSuffix":[1,"value-suffix"],"help":[1],"helpStatus":[1,"help-status"],"label":[1],"disabled":[4],"readonly":[4],"required":[4],"optional":[1],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdHelp":[1,"qa-id-help"],"qaIdRange":[1,"qa-id-range"],"qaIdInput":[1,"qa-id-input"],"qaIdOutput":[1,"qa-id-output"],"qaIdMessagebox":[1,"qa-id-messagebox"]},null,{"value":["valueChanged"]}]]],["p-0901fefe",[[1,"eco-radios",{"searchable":[4],"searchPlaceholder":[1,"search-placeholder"],"help":[1],"helpStatus":[1,"help-status"],"name":[1],"label":[1],"noResults":[1028,"no-results"],"noResultsText":[1,"no-results-text"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"radioData":[16],"value":[1032],"maxBlockSize":[1,"max-block-size"],"searchClear":[64]},[[4,"keydown","onKeydown"]],{"value":["valueChanged"]}]]],["p-e90127fd",[[6,"eco-input-datalist",{"disabled":[4],"help":[1],"helpStatus":[1,"help-status"],"inputId":[1,"input-id"],"listId":[1,"list-id"],"label":[1],"optional":[1],"qaIdDataList":[1,"qa-id-data-list"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdNotListedMessage":[1,"qa-id-not-listed-message"],"readonly":[4],"required":[4],"value":[1025],"placeholder":[1],"notListedMessage":[1,"not-listed-message"],"notListedOption":[32],"optionsList":[32]}]]],["p-97eb9bdf",[[1,"eco-input-tags",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"optional":[1],"inputId":[1025,"input-id"],"value":[1040],"options":[16],"required":[4],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdOptional":[1,"qa-id-optional"],"qaIdValues":[1,"qa-id-values"],"qaIdInput":[1,"qa-id-input"],"qaIdOptions":[1,"qa-id-options"],"currentInput":[32],"setOptions":[64]},[[0,"focusout","handleFocusOut"],[0,"tagRemoved","removeTagHandler"],[0,"tagAdded","addTagHandler"]]]]],["p-76ec4838",[[2,"eco-input-time",{"disabled":[4],"help":[1],"helpStatus":[1,"help-status"],"label":[1],"optional":[1],"qaIdDays":[1,"qa-id-days"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdHours":[1,"qa-id-hours"],"qaIdInputs":[1,"qa-id-inputs"],"qaIdLabel":[1,"qa-id-label"],"qaIdMinutes":[1,"qa-id-minutes"],"qaIdOptional":[1,"qa-id-optional"],"qaIdSeconds":[1,"qa-id-seconds"],"qaIdWeeks":[1,"qa-id-weeks"],"readonly":[4],"required":[4],"value":[1025],"weeks":[4],"weeksMax":[2,"weeks-max"],"weeksMin":[2,"weeks-min"],"weeksValue":[1026,"weeks-value"],"days":[4],"daysMax":[2,"days-max"],"daysMin":[2,"days-min"],"daysValue":[1026,"days-value"],"hours":[4],"hoursMax":[2,"hours-max"],"hoursMin":[2,"hours-min"],"hoursValue":[1026,"hours-value"],"minutes":[4],"minutesMax":[2,"minutes-max"],"minutesMin":[2,"minutes-min"],"minutesValue":[1026,"minutes-value"],"seconds":[4],"secondsMax":[2,"seconds-max"],"secondsMin":[2,"seconds-min"],"secondsValue":[1026,"seconds-value"]}]]],["p-5b529643",[[6,"eco-layout-nav",{"logoTitle":[1,"logo-title"],"homeLink":[1,"home-link"],"appName":[1,"app-name"],"accountName":[1,"account-name"],"allowHiding":[4,"allow-hiding"],"hideNav":[4,"hide-nav"],"qaIdElement":[1,"qa-id-element"],"qaIdLogo":[1,"qa-id-logo"],"qaIdAppName":[1,"qa-id-app-name"],"qaIdNav":[1,"qa-id-nav"],"accentHue":[2,"accent-hue"],"accentSaturation":[2,"accent-saturation"],"accentLightness":[2,"accent-lightness"],"accentAlpha":[2,"accent-alpha"],"followActive":[64],"navHide":[64],"navShow":[64],"navToggle":[64]}]]],["p-e41760b2",[[1,"eco-tetrigs",{"board":[32],"score":[32],"currentPiece":[32],"nextPiece":[32],"isGameOver":[32]}]]],["p-0bcefc8a",[[2,"eco-input-file",{"accept":[1],"disabled":[4],"files":[16],"help":[1],"inputId":[1,"input-id"],"label":[1],"optional":[1],"qaIdButton":[1,"qa-id-button"],"qaIdElement":[1,"qa-id-element"],"qaIdFilename":[1,"qa-id-filename"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"text":[1],"value":[1],"width":[1],"reset":[64]}]]],["p-734cd492",[[1,"eco-input-phone",{"disabled":[4],"help":[1],"label":[1],"name":[1],"optional":[1],"pattern":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}]]],["p-7a5b1ddd",[[6,"eco-select",{"value":[1025],"label":[1],"help":[1],"name":[1],"optional":[1],"status":[1],"width":[1],"disabled":[4],"required":[4],"multiple":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdLabel":[1,"qa-id-label"],"qaIdSelect":[1,"qa-id-select"]}]]],["p-96cf021e",[[1,"eco-stacked-bar",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"showLegend":[4,"show-legend"],"showPercent":[4,"show-percent"],"showCount":[4,"show-count"],"gap":[1],"barThickness":[1,"bar-thickness"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdHelp":[1,"qa-id-help"],"qaIdBar":[1,"qa-id-bar"],"qaIdLegend":[1,"qa-id-legend"],"qaIdPercent":[1,"qa-id-percent"],"qaIdCount":[1,"qa-id-count"],"data":[16]}]]],["p-66714369",[[1,"eco-docs-responses",{"responsesTitle":[1,"responses-title"],"responses":[16],"qaIdElement":[1,"qa-id-element"],"qaIdResponsesTitle":[1,"qa-id-responses-title"]}]]],["p-a8ddc1f4",[[1,"eco-qr-scanner",{"label":[1],"icon":[1],"type":[1],"styletype":[1],"qaIdElement":[1,"qa-id-element"],"value":[32],"scanningInProgress":[32],"start":[64],"reset":[64]}]]],["p-114be3ea",[[1,"eco-lightbox",{"visible":[1028],"loaded":[4],"disabled":[4],"qaIdElement":[1,"qa-id-element"],"handleTrigger":[64]}]]],["p-d6457237",[[1,"eco-split-button",{"showOptions":[32],"toggleIconSize":[32],"toggleIcon":[32],"open":[64],"close":[64]}]]],["p-0baf5a15",[[1,"eco-split-option",{"disabled":[4],"icon":[1],"isBusy":[4,"is-busy"],"label":[1],"size":[1],"styletype":[1],"type":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"],"focusButton":[64]}]]],["p-fb07545f",[[1,"eco-slide-over",{"qaIdElement":[1,"qa-id-element"],"qaIdClose":[1,"qa-id-close"],"visible":[1028],"handleClose":[64],"handleTrigger":[64]}]]],["p-e2e4e044",[[1,"eco-accordion-item",{"align":[1025],"clickAnywhere":[4,"click-anywhere"],"sticky":[4],"collapsible":[4],"collapsed":[1028],"disabled":[1028],"qaIdContent":[1,"qa-id-content"],"qaIdElement":[1,"qa-id-element"],"qaIdHeader":[1,"qa-id-header"],"qaIdIcon":[1,"qa-id-icon"],"qaIdToggle":[1,"qa-id-toggle"],"disable":[64]}]]],["p-cbee9a1e",[[2,"eco-ani-add-gtl-orientation",{"location":[1]}]]],["p-96567d1b",[[1,"eco-badge",{"type":[1],"icon":[1],"dot":[4],"label":[1],"rotateIcon":[4,"rotate-icon"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdIcon":[1,"qa-id-icon"],"qaIdDot":[1,"qa-id-dot"]}]]],["p-58c5f753",[[1,"eco-chart-sparkline",{"label":[1],"showCount":[4,"show-count"],"data":[16],"lineColour":[1,"line-colour"],"strokeWidth":[2,"stroke-width"],"fillColour":[1,"fill-colour"],"fillOpacity":[1,"fill-opacity"],"yAxisMax":[2,"y-axis-max"],"flow":[1],"lineXPos":[32],"count":[32]}]]],["p-e63d3092",[[1,"eco-input-radio",{"value":[1032],"disabled":[4],"label":[1],"name":[1],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"checked":[32],"buttonTabindex":[32],"setButtonTabindex":[64]}]]],["p-cde0a916",[[6,"eco-layout-aside",{"collapsible":[4],"collapsed":[1028],"localStorageName":[1,"local-storage-name"],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"asideMaxBlockSize":[1,"aside-max-block-size"],"asidePosition":[1,"aside-position"],"qaIdElement":[1,"qa-id-element"],"qaIdAside":[1,"qa-id-aside"],"qaIdAsideContent":[1,"qa-id-aside-content"],"qaIdToggle":[1,"qa-id-toggle"],"qaIdContent":[1,"qa-id-content"],"handleCollapse":[64]}]]],["p-3ad84cb2",[[1,"eco-layout-blocks",{"qaIdElement":[1,"qa-id-element"],"qaIdContent":[1,"qa-id-content"]}]]],["p-e128f582",[[6,"eco-layout-filter",{"collapsible":[4],"collapsed":[1028],"filtersApplied":[4,"filters-applied"],"localStorageName":[1,"local-storage-name"],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"filterMaxBlockSize":[1,"filter-max-block-size"],"qaIdElement":[1,"qa-id-element"],"qaIdFilter":[1,"qa-id-filter"],"qaIdToggle":[1,"qa-id-toggle"],"qaIdContent":[1,"qa-id-content"],"handleCollapse":[64]}]]],["p-088297d2",[[1,"eco-layout-header",{"level":[2],"displayAs":[2,"display-as"],"qaIdElement":[1,"qa-id-element"],"qaIdActionsBefore":[1,"qa-id-actions-before"],"qaIdActionsAfter":[1,"qa-id-actions-after"],"qaIdHeadingElement":[1,"qa-id-heading-element"],"qaIdHeading":[1,"qa-id-heading"]}]]],["p-0957790d",[[1,"eco-nav-link",{"href":[1],"label":[1],"target":[1],"rel":[1],"active":[4],"icon":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]},[[0,"keydown","handleKeyDown"]]]]],["p-d04f192e",[[2,"eco-status-icon",{"icon":[1],"type":[1],"iconsize":[1],"label":[1],"labelLocation":[1,"label-location"],"wrapLabel":[4,"wrap-label"],"width":[2],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"]}]]],["p-3f792fa1",[[1,"eco-subnav-item",{"disabled":[4],"href":[1],"target":[1],"label":[1],"icon":[1],"iconPosition":[1,"icon-position"],"iconSize":[1,"icon-size"],"active":[4],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}]]],["p-c5a20c47",[[1,"eco-text-clamp",{"linesToShow":[2,"lines-to-show"],"suppressExpand":[4,"suppress-expand"]}]]],["p-712c2c4f",[[1,"eco-user-badge",{"userId":[1,"user-id"],"userName":[1,"user-name"],"initials":[4],"qaIdElement":[1,"qa-id-element"]}]]],["p-4853f941",[[1,"eco-accordion",{"qaIdElement":[1,"qa-id-element"],"align":[1],"clickAnywhere":[4,"click-anywhere"],"sticky":[4]}]]],["p-f22317c2",[[1,"eco-fieldset",{"legend":[1],"disabled":[4],"qaIdElement":[1,"qa-id-element"],"qaIdLegend":[1,"qa-id-legend"]},null,{"disabled":["onDisabledChange"]}]]],["p-dffb8995",[[1,"eco-generated-pattern-dots",{"text":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-bdb76b1d",[[1,"eco-generated-pattern-stripes",{"text":[1],"stripeWidth":[2,"stripe-width"],"qaIdElement":[1,"qa-id-element"]}]]],["p-b8cfb9ef",[[6,"eco-layout-body",{"qaIdElement":[1,"qa-id-element"],"qaIdMain":[1,"qa-id-main"]}]]],["p-b2b2d09e",[[0,"eco-level",{"tooltip":[1],"steps":[2],"amount":[2],"emptyLabel":[1,"empty-label"],"overfullLabel":[1,"overfull-label"],"showAmount":[4,"show-amount"],"approximate":[4],"levelGap":[4,"level-gap"],"type":[1],"elementFlow":[1,"element-flow"],"levelFlow":[1,"level-flow"],"qaIdElement":[1,"qa-id-element"],"qaIdAmount":[1,"qa-id-amount"],"renderAmount":[4,"render-amount"]}]]],["p-ed54ed21",[[1,"eco-logo",{"colour":[1]}]]],["p-59e77797",[[1,"eco-nav-flyout",{"qaIdElement":[1,"qa-id-element"],"visible":[1028],"handleClose":[64],"handleTrigger":[64]},[[8,"click","handleClick"],[8,"keyup","handleKeyup"]]]]],["p-3d0c3e76",[[2,"eco-progress",{"variant":[1],"type":[1],"width":[1],"improving":[4],"max":[2],"value":[2],"roundTo":[2,"round-to"],"showPercentage":[4,"show-percentage"],"of":[4],"ofString":[1,"of-string"],"qaIdElement":[1,"qa-id-element"],"qaIdText":[1,"qa-id-text"],"qaIdProgress":[1,"qa-id-progress"]}]]],["p-684387d0",[[1,"eco-segment",{"value":[1032],"disabled":[4],"name":[1],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"checked":[32],"buttonTabindex":[32],"setButtonTabindex":[64]}]]],["p-f41d1ed6",[[1,"eco-segments",{"qaIdElement":[1,"qa-id-element"],"value":[1032]},[[4,"keydown","onKeydown"]]]]],["p-accae429",[[1,"eco-subnav",{"flow":[1],"qaIdElement":[1,"qa-id-element"],"followActive":[64]}]]],["p-c7509dea",[[1,"eco-tab",{"bind":[1],"active":[4],"qaIdElement":[1,"qa-id-element"]}]]],["p-96be4713",[[1,"eco-tab-content",{"bind":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-18589c9c",[[1,"eco-tabs",{"tabLocation":[1,"tab-location"],"alignTabs":[1,"align-tabs"],"wrap":[4],"sticky":[4],"stickyOffset":[1,"sticky-offset"],"changeUrl":[1,"change-url"],"urlSearchQuery":[1,"url-search-query"],"autoPlay":[4,"auto-play"],"autoPlaySpeed":[2,"auto-play-speed"],"qaIdElement":[1,"qa-id-element"],"setActiveTab":[64]},[[0,"click","handleClick"],[0,"keyup","handleKeyup"]]]]],["p-4c98af76",[[1,"eco-checkboxes",{"help":[1],"helpStatus":[1,"help-status"],"label":[1],"noResults":[1028,"no-results"],"noResultsText":[1,"no-results-text"],"searchable":[4],"searchPlaceholder":[1,"search-placeholder"],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdNoResultsText":[1,"qa-id-no-results-text"],"checkAll":[4,"check-all"],"allowCheckAll":[4,"allow-check-all"],"maxBlockSize":[1,"max-block-size"],"searchClear":[64]},[[0,"ecoChange","handleEcoChange"]]]]],["p-fdb80b4a",[[1,"eco-input-tag",{"label":[1],"action":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"addTag":[64],"removeTag":[64]}]]],["p-6a943517",[[1,"eco-popover",{"showOn":[1,"show-on"],"popoverFlow":[1,"popover-flow"],"popoverAlignment":[1,"popover-alignment"],"qaIdElement":[1,"qa-id-element"],"qaIdPopover":[1,"qa-id-popover"],"visible":[32],"open":[64],"close":[64],"handleMouseEnter":[64],"handleFocusIn":[64],"handleFocusOut":[64],"handleMouseLeave":[64],"handleClickOnElement":[64]}]]],["p-8da442e2",[[1,"eco-split-options"]]],["p-d304de35",[[1,"eco-toast",{"type":[1],"icon":[1],"autoDismiss":[4,"auto-dismiss"],"dismissAfter":[2,"dismiss-after"],"qaIdElement":[1,"qa-id-element"],"qaIdContent":[1,"qa-id-content"],"qaIdClose":[1,"qa-id-close"],"qaIdTimer":[1,"qa-id-timer"]}],[1,"eco-toast-rack",{"qaIdElement":[1,"qa-id-element"],"stack":[4]},[[0,"present","toastPresent"],[0,"dismiss","toastDismiss"]]]]],["p-1d3c29dd",[[2,"eco-input-textarea",{"disabled":[4],"height":[1],"help":[1],"label":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"name":[1],"optional":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"resize":[4],"status":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025]}]]],["p-c09b6d4a",[[1,"eco-input-checkbox",{"label":[1],"checked":[1028],"indeterminate":[1028],"disabled":[4],"inputId":[1025,"input-id"],"qaIdElement":[1,"qa-id-element"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"name":[1],"value":[1],"labelPosition":[1,"label-position"],"showAsToggle":[4,"show-as-toggle"],"setChecked":[64]}]]],["p-b97fc631",[[1,"eco-nav-action",{"notice":[1028],"icon":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"isNoticed":[32],"noticeStart":[64],"noticeStop":[64]}],[1,"eco-igs-logo",{"theme":[1],"colour":[1]}]]],["p-ae02c0e9",[[1,"eco-description-group",{"vertical":[4],"flow":[1],"qaIdElement":[1,"qa-id-element"],"colWidth":[1,"col-width"],"termWidth":[1,"term-width"],"gap":[1],"inverted":[4]}],[1,"eco-docs-parameter",{"name":[1],"required":[4],"schemaType":[1,"schema-type"],"in":[1],"qaIdElement":[1,"qa-id-element"],"qaIdName":[1,"qa-id-name"],"qaIdRequired":[1,"qa-id-required"],"qaIdSchemaType":[1,"qa-id-schema-type"],"qaIdIn":[1,"qa-id-in"]}]]],["p-eb4587e9",[[1,"eco-description",{"term":[1],"description":[8],"flow":[1025],"inverted":[4],"qaIdElement":[1,"qa-id-element"],"qaIdTerm":[1,"qa-id-term"],"qaIdDesc":[1,"qa-id-desc"]}]]],["p-24be6c25",[[1,"eco-popover-content",{"popoverFlow":[1,"popover-flow"],"popoverAlignment":[1,"popover-alignment"],"qaIdPopover":[1,"qa-id-popover"]}]]],["p-cff70e52",[[2,"eco-input-date",{"label":[1],"help":[1],"helpStatus":[1,"help-status"],"optional":[1],"readonly":[4],"required":[4],"disabled":[4],"status":[1025],"withTime":[4,"with-time"],"daysPast":[2,"days-past"],"daysFuture":[2,"days-future"],"dayMin":[2,"day-min"],"dayMax":[2,"day-max"],"monthMin":[2,"month-min"],"monthMax":[2,"month-max"],"yearMin":[2,"year-min"],"yearMax":[2,"year-max"],"minuteMin":[2,"minute-min"],"minuteMax":[2,"minute-max"],"hourMin":[2,"hour-min"],"hourMax":[2,"hour-max"],"qaIdInputs":[1,"qa-id-inputs"],"qaIdDd":[1,"qa-id-dd"],"qaIdMm":[1,"qa-id-mm"],"qaIdYyyy":[1,"qa-id-yyyy"],"qaIdMinute":[1,"qa-id-minute"],"qaIdHour":[1,"qa-id-hour"],"qaIdElement":[1,"qa-id-element"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"qaIdHelp":[1,"qa-id-help"],"qaIdMessagebox":[1,"qa-id-messagebox"],"value":[1025],"dateExists":[32],"inputsEmpty":[32],"sinceDate":[32],"sinceDateError":[32],"untilDate":[32],"untilDateError":[32],"validateDate":[64],"getDate":[64],"setDate":[64]}],[2,"eco-input-number",{"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"disabled":[4],"help":[1],"label":[1],"max":[2],"min":[2],"name":[1],"optional":[1],"pattern":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"step":[2],"width":[1],"inputId":[1025,"input-id"],"valid":[1028],"value":[1026],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}],[6,"eco-messagebox",{"type":[1],"icon":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}],[1,"eco-text-input-optional",{"qaIdElement":[1,"qa-id-element"]}],[1,"eco-text-input-help",{"status":[1],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"]}],[6,"eco-input-wrapper",{"width":[1],"status":[1],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-text-label",{"for":[1],"wrap":[4],"qaIdLabel":[1,"qa-id-label"],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-spacer",{"gap":[1],"flow":[1],"wrap":[4],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-icon",{"icon":[1],"icontype":[1],"iconsize":[1],"qaIdElement":[1,"qa-id-element"],"rotate":[4]}]]],["p-dd0bddb1",[[2,"eco-button",{"disabled":[4],"href":[1],"target":[1],"icon":[1],"isBusy":[4,"is-busy"],"label":[1],"link":[4],"qaIdElement":[1,"qa-id-element"],"qaIdIcon":[1,"qa-id-icon"],"qaIdLabel":[1,"qa-id-label"],"size":[1],"styletype":[1],"type":[1],"iconsize":[1025],"toggleLabel":[4,"toggle-label"],"iconPosition":[1,"icon-position"]},[[0,"keydown","handleKeyDown"]]],[2,"eco-spinner",{"text":[1],"fullscreen":[4],"size":[1],"theme":[1],"qaIdElement":[1,"qa-id-element"],"qaIdText":[1,"qa-id-text"]}],[1,"eco-backdrop",{"visible":[1028],"showBackdrop":[64],"hideBackdrop":[64]}]]],["p-8264d657",[[1,"eco-chat-bubble",{"message":[1],"authorIsUser":[4,"author-is-user"],"canDelete":[4,"can-delete"],"canEdit":[4,"can-edit"],"qaIdElement":[1,"qa-id-element"],"qaIdActionCancel":[1,"qa-id-action-cancel"],"qaIdActionDelete":[1,"qa-id-action-delete"],"qaIdActionDeleteConfirm":[1,"qa-id-action-delete-confirm"],"qaIdActionEdit":[1,"qa-id-action-edit"],"qaIdActionEditConfirm":[1,"qa-id-action-edit-confirm"],"isUpdating":[32],"isEditing":[32],"isDeleting":[32],"updatedMessage":[32]},[[0,"ecoChange","updateMessage"]],{"message":["valueChanged"]}],[1,"eco-chat-author",{"author":[1],"qaIdElement":[1,"qa-id-element"]}],[1,"eco-chat-timestamp",{"timestamp":[1],"qaIdElement":[1,"qa-id-element"]}]]],["p-d2785c4f",[[6,"eco-text-heading",{"level":[2],"displayAs":[1026,"display-as"],"headingId":[1,"heading-id"],"qaIdElement":[1,"qa-id-element"],"qaIdHeading":[1,"qa-id-heading"]}]]],["p-b983dd94",[[2,"eco-input-text",{"clearInput":[4,"clear-input"],"clearOnEdit":[4,"clear-on-edit"],"disabled":[4],"help":[1],"hidden":[4],"label":[1],"name":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"optional":[1],"placeholder":[1],"qaIdElement":[1,"qa-id-element"],"qaIdHelp":[1,"qa-id-help"],"qaIdInput":[1,"qa-id-input"],"qaIdLabel":[1,"qa-id-label"],"qaIdOptional":[1,"qa-id-optional"],"readonly":[4],"required":[4],"status":[1],"type":[1],"width":[1],"inputId":[1025,"input-id"],"value":[1025],"hasFocus":[32],"setFocus":[64],"getInputElement":[64]}]]],["p-c3f8b679",[[1,"eco-card",{"border":[1],"collapsible":[4],"collapsed":[1028],"elevation":[1],"showBody":[4,"show-body"],"qaIdBody":[1,"qa-id-body"],"qaIdElement":[1,"qa-id-element"],"qaIdExpand":[1,"qa-id-expand"],"qaIdFooter":[1,"qa-id-footer"],"qaIdHeader":[1,"qa-id-header"],"qaIdToggle":[1,"qa-id-toggle"],"sticky":[4],"stickyOffset":[1,"sticky-offset"]}],[1,"eco-card-body"],[1,"eco-card-footer"],[1,"eco-card-header"]]]]'),e)}));
//# sourceMappingURL=eco.esm.js.map

@@ -436,2 +436,3 @@ import { r as registerInstance, h, H as Host, g as getElement, c as createEvent } from './index-090afabe.js';

if (input !== null) {
this.valid = input.validity.valid;
if (input.value === '') {

@@ -443,3 +444,2 @@ this.setValue(null);

}
this.valid = input.validity.valid;
}

@@ -457,6 +457,2 @@ };

};
this.onKeydown = (ev) => {
this.onInput(ev);
this.ecoInput.emit(ev);
};
this.clearInput = false;

@@ -536,3 +532,3 @@ this.clearOnEdit = undefined;

const classMap = this.getCssClassMap();
return (h(Host, { key: 'da17d06910ef7fb1e62e60295ed971aaeffb099c', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'c774a6c243848255daec81b72dca002538348cdf', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'be669b02b6776704011aee444ee17e1474996224', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, onKeyDown: this.onKeydown, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
return (h(Host, { key: '795afe216dc2f746c6c125f023f2830665c49967', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: '82cc449c4ac11e45896b062727e05c3118dfb92e', class: classMap }, this.label && (h("eco-text-label", { for: this.inputId, "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.status, qaIdElement: this.qaIdHelp }, this.help)), h("input", { key: 'fece07979a63147a9f3f0238261fad4ab6ba7b17', disabled: this.disabled, id: this.inputId, max: this.max, min: this.min, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, pattern: this.pattern, "qa-id": this.qaIdInput, readonly: this.readonly, ref: (input) => (this.nativeInput = input), required: this.required, step: this.step, tabindex: this.tabindex, type: "number", value: this.value }))));
}

@@ -539,0 +535,0 @@ getCssClassMap() {

@@ -13,3 +13,2 @@ import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-090afabe.js';

this.handleWeekChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -19,13 +18,7 @@ const weekInput = ev.target;

if (exists(weekInput)) {
this.weeksValue = (_a = weekInput.value) !== null && _a !== void 0 ? _a : 0;
if (weekInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.weeksValue = weekInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleDayChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -35,13 +28,7 @@ const dayInput = ev.target;

if (exists(dayInput)) {
this.daysValue = (_a = dayInput.value) !== null && _a !== void 0 ? _a : 0;
if (dayInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.daysValue = dayInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleHourChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -51,13 +38,7 @@ const hourInput = ev.target;

if (exists(hourInput)) {
this.hoursValue = (_a = hourInput.value) !== null && _a !== void 0 ? _a : 0;
if (hourInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.hoursValue = hourInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleMinuteChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -67,13 +48,7 @@ const minuteInput = ev.target;

if (exists(minuteInput)) {
this.minutesValue = (_a = minuteInput.value) !== null && _a !== void 0 ? _a : 0;
if (minuteInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.minutesValue = minuteInput.value;
this.setValue(this.getTotalValueMs().toString());
}
};
this.handleSecondChanged = (ev) => {
var _a;
ev.stopPropagation();

@@ -83,9 +58,4 @@ const secondInput = ev.target;

if (exists(secondInput)) {
this.secondsValue = (_a = secondInput.value) !== null && _a !== void 0 ? _a : 0;
if (secondInput.valid) {
this.setValue(this.getTotalValueMs().toString());
}
else {
this.setValue(undefined);
}
this.secondsValue = secondInput.value;
this.setValue(this.getTotalValueMs().toString());
}

@@ -147,7 +117,8 @@ };

getTotalValueMs() {
return (this.weeksValue * 7 * 24 * 60 * 60 * 1000 +
this.daysValue * 24 * 60 * 60 * 1000 +
this.hoursValue * 60 * 60 * 1000 +
this.minutesValue * 60 * 1000 +
this.secondsValue * 1000);
var _a, _b, _c, _d, _e;
return (((_a = this.weeksValue) !== null && _a !== void 0 ? _a : 0) * 7 * 24 * 60 * 60 * 1000 +
((_b = this.daysValue) !== null && _b !== void 0 ? _b : 0) * 24 * 60 * 60 * 1000 +
((_c = this.hoursValue) !== null && _c !== void 0 ? _c : 0) * 60 * 60 * 1000 +
((_d = this.minutesValue) !== null && _d !== void 0 ? _d : 0) * 60 * 1000 +
((_e = this.secondsValue) !== null && _e !== void 0 ? _e : 0) * 1000);
}

@@ -188,3 +159,3 @@ componentWillLoad() {

render() {
return (h(Host, { key: '5a829261b2ecb530241683e016a4db85167c21ec', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'a6848804cfd0c74157d3aed6ef597167357f187c' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: '8f51de37e1670b7c50109a913a41d5ab603f0a80', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
return (h(Host, { key: 'a82cbcbdc30e0d50c04d3d725a304209c38cf7c1', "qa-id": this.qaIdElement }, h("eco-input-wrapper", { key: 'ee9494c782cfaebb52bdd903aa6ab45a92810191' }, this.label && (h("eco-text-label", { "qa-id": this.qaIdLabel }, this.label, !this.required && (h("eco-text-input-optional", { "qa-id": this.qaIdOptional }, this.optional)))), this.help && (h("eco-text-input-help", { status: this.helpStatus, qaIdElement: this.qaIdHelp }, this.help)), h("span", { key: 'ba21dccc9fd0a0cd079aa20dc65d698e893e3de5', class: "inputs", "qa-id": this.qaIdInputs }, this.weeks && (h("eco-input-number", { class: "weeks", "qa-id-input": this.qaIdWeeks, label: "Weeks", value: this.weeksValue, min: this.weeksMin, max: this.weeksMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleWeekChanged })), this.days && (h("eco-input-number", { class: "days", "qa-id-input": this.qaIdDays, label: "Days", value: this.daysValue, min: this.daysMin, max: this.daysMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleDayChanged })), this.hours && (h("eco-input-number", { class: "hours", "qa-id-input": this.qaIdHours, label: "Hours", value: this.hoursValue, min: this.hoursMin, max: this.hoursMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleHourChanged })), this.minutes && (h("eco-input-number", { class: "minutes", "qa-id-input": this.qaIdMinutes, label: "Minutes", value: this.minutesValue, min: this.minutesMin, max: this.minutesMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleMinuteChanged })), this.seconds && (h("eco-input-number", { class: "seconds", "qa-id-input": this.qaIdSeconds, label: "Seconds", value: this.secondsValue, min: this.secondsMin, max: this.secondsMax, readonly: this.readonly, disabled: this.disabled, onEcoChange: this.handleSecondChanged }))))));
}

@@ -191,0 +162,0 @@ get hostElement() { return getElement(this); }

@@ -59,3 +59,2 @@ import type { EventEmitter } from '../../stencil-public-runtime';

private onFocus;
private onKeydown;
private focusChanged;

@@ -62,0 +61,0 @@ private hasValue;

{
"name": "@intelligentgrowthsolutions/eco",
"version": "17.3.1",
"license": "MIT",
"description": "Eco Design System for Intelligent Growth Solutions",
"engines": {
"npm": "^10.2.4",
"node": "^18.19.1"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"esnext": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"transformAliasedImportPathsInCollection": true,
"unpkg": "dist/eco/eco.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"tokens": "cd ./style-dictionary && node ./build.js && chokidar \"tokens/**/*\" -c \"node ./build.js\""
},
"bugs": {
"url": "https://github.com/intelligent-growth-solutions/eco/issues"
},
"homepage": "https://eco.app.igs.farm/"
"name": "@intelligentgrowthsolutions/eco",
"version": "17.3.2-experimental-07ecb09",
"license": "MIT",
"description": "Eco Design System for Intelligent Growth Solutions",
"engines": {
"npm": "^10.2.4",
"node": "^18.19.1"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"esnext": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"transformAliasedImportPathsInCollection": true,
"unpkg": "dist/eco/eco.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"tokens": "cd ./style-dictionary && node ./build.js && chokidar \"tokens/**/*\" -c \"node ./build.js\""
},
"bugs": {
"url": "https://github.com/intelligent-growth-solutions/eco/issues"
},
"homepage": "https://eco.app.igs.farm/"
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc