Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lu-development/ux-patterns

Package Overview
Dependencies
Maintainers
6
Versions
501
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lu-development/ux-patterns - npm Package Compare versions

Comparing version 1.7.0-dev.202003171410.df1186d to 1.7.0-dev.202003191714.829775f

dist/uxpatterns/p-cd702357.system.entry.js

17

dist/cjs/lu-spinner.cjs.entry.js

@@ -14,7 +14,2 @@ 'use strict';

/**
* The color to use from the Liberty color palette.
* Default options are: `'primary', 'primary_darkest', 'primary_darker', 'primary_dark', 'primary_light', 'primary_lighter', 'primary_lightest', 'neutral', 'neutral_darker', 'neutral_darkest', 'neutral_light', 'neutral_lighter', 'neutral_lightest', 'ruby', 'official', 'warning', 'error', 'success', 'success_light', 'mustard'`.
*/
this.dataColor = 'primary';
/**
* Size of the spinner as a multiple of its own dimensions (32px x 32px).

@@ -38,3 +33,3 @@ */

*/
this.dataMessage = 'Please wait while the next step loads.';
this.dataMessage = "Please wait while the next step loads.";
}

@@ -46,7 +41,7 @@ hostData() {

height: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`
},
role: 'progressbar',
role: "progressbar",
// Pause when visually hidden.
'data-paused': this.dataHidden || this.dataPaused,
"data-paused": this.dataHidden || this.dataPaused
};

@@ -56,4 +51,4 @@ }

return (index.h("svg", { role: "img", style: {
'animation-duration': `${this.dataDuration * 1.2}ms`,
}, viewBox: "22 22 44 44" }, index.h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), index.h("circle", { style: { 'animation-duration': `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
"animation-duration": `${this.dataDuration * 1.2}ms`
}, viewBox: "22 22 44 44" }, index.h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), index.h("circle", { style: { "animation-duration": `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
}

@@ -60,0 +55,0 @@ render() { return index.h(index.Host, this.hostData(), this.__stencil_render()); }

@@ -1,11 +0,6 @@

import { Component, Prop, h } from '@stencil/core';
import { createColorClasses } from '../../utils/theme';
import { Component, h, Prop } from "@stencil/core";
import { createColorClasses } from "../../utils/theme";
export class Spinner {
constructor() {
/**
* The color to use from the Liberty color palette.
* Default options are: `'primary', 'primary_darkest', 'primary_darker', 'primary_dark', 'primary_light', 'primary_lighter', 'primary_lightest', 'neutral', 'neutral_darker', 'neutral_darkest', 'neutral_light', 'neutral_lighter', 'neutral_lightest', 'ruby', 'official', 'warning', 'error', 'success', 'success_light', 'mustard'`.
*/
this.dataColor = 'primary';
/**
* Size of the spinner as a multiple of its own dimensions (32px x 32px).

@@ -29,3 +24,3 @@ */

*/
this.dataMessage = 'Please wait while the next step loads.';
this.dataMessage = "Please wait while the next step loads.";
}

@@ -37,7 +32,7 @@ hostData() {

height: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`
},
role: 'progressbar',
role: "progressbar",
// Pause when visually hidden.
'data-paused': this.dataHidden || this.dataPaused,
"data-paused": this.dataHidden || this.dataPaused
};

@@ -47,6 +42,6 @@ }

return (h("svg", { role: "img", style: {
'animation-duration': `${this.dataDuration * 1.2}ms`,
"animation-duration": `${this.dataDuration * 1.2}ms`
}, viewBox: "22 22 44 44" },
h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage),
h("circle", { style: { 'animation-duration': `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
h("circle", { style: { "animation-duration": `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
}

@@ -76,3 +71,3 @@ static get is() { return "lu-spinner"; }

"required": false,
"optional": false,
"optional": true,
"docs": {

@@ -83,4 +78,3 @@ "tags": [],

"attribute": "data-color",
"reflect": false,
"defaultValue": "'primary'"
"reflect": false
},

@@ -175,5 +169,5 @@ "dataScale": {

"reflect": false,
"defaultValue": "'Please wait while the next step loads.'"
"defaultValue": "\"Please wait while the next step loads.\""
}
}; }
}

@@ -8,7 +8,2 @@ import { r as registerInstance, h, H as Host } from './index-389b9c3d.js';

/**
* The color to use from the Liberty color palette.
* Default options are: `'primary', 'primary_darkest', 'primary_darker', 'primary_dark', 'primary_light', 'primary_lighter', 'primary_lightest', 'neutral', 'neutral_darker', 'neutral_darkest', 'neutral_light', 'neutral_lighter', 'neutral_lightest', 'ruby', 'official', 'warning', 'error', 'success', 'success_light', 'mustard'`.
*/
this.dataColor = 'primary';
/**
* Size of the spinner as a multiple of its own dimensions (32px x 32px).

@@ -32,3 +27,3 @@ */

*/
this.dataMessage = 'Please wait while the next step loads.';
this.dataMessage = "Please wait while the next step loads.";
}

@@ -40,7 +35,7 @@ Spinner.prototype.hostData = function () {

height: this.dataScale * 28 + "px",
width: this.dataScale * 28 + "px",
width: this.dataScale * 28 + "px"
},
role: 'progressbar',
role: "progressbar",
// Pause when visually hidden.
'data-paused': this.dataHidden || this.dataPaused,
"data-paused": this.dataHidden || this.dataPaused
};

@@ -50,4 +45,4 @@ };

return (h("svg", { role: "img", style: {
'animation-duration': this.dataDuration * 1.2 + "ms",
}, viewBox: "22 22 44 44" }, h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), h("circle", { style: { 'animation-duration': this.dataDuration * 1.4 + "ms" }, cx: "44", cy: "44", r: "20.2" })));
"animation-duration": this.dataDuration * 1.2 + "ms"
}, viewBox: "22 22 44 44" }, h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), h("circle", { style: { "animation-duration": this.dataDuration * 1.4 + "ms" }, cx: "44", cy: "44", r: "20.2" })));
};

@@ -54,0 +49,0 @@ Spinner.prototype.render = function () { return h(Host, this.hostData(), this.__stencil_render()); };

@@ -10,7 +10,2 @@ import { r as registerInstance, h, H as Host } from './index-389b9c3d.js';

/**
* The color to use from the Liberty color palette.
* Default options are: `'primary', 'primary_darkest', 'primary_darker', 'primary_dark', 'primary_light', 'primary_lighter', 'primary_lightest', 'neutral', 'neutral_darker', 'neutral_darkest', 'neutral_light', 'neutral_lighter', 'neutral_lightest', 'ruby', 'official', 'warning', 'error', 'success', 'success_light', 'mustard'`.
*/
this.dataColor = 'primary';
/**
* Size of the spinner as a multiple of its own dimensions (32px x 32px).

@@ -34,3 +29,3 @@ */

*/
this.dataMessage = 'Please wait while the next step loads.';
this.dataMessage = "Please wait while the next step loads.";
}

@@ -42,7 +37,7 @@ hostData() {

height: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`,
width: `${this.dataScale * 28}px`
},
role: 'progressbar',
role: "progressbar",
// Pause when visually hidden.
'data-paused': this.dataHidden || this.dataPaused,
"data-paused": this.dataHidden || this.dataPaused
};

@@ -52,4 +47,4 @@ }

return (h("svg", { role: "img", style: {
'animation-duration': `${this.dataDuration * 1.2}ms`,
}, viewBox: "22 22 44 44" }, h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), h("circle", { style: { 'animation-duration': `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
"animation-duration": `${this.dataDuration * 1.2}ms`
}, viewBox: "22 22 44 44" }, h("title", { role: "alert", "aria-live": "assertive" }, this.dataHidden ? null : this.dataMessage), h("circle", { style: { "animation-duration": `${this.dataDuration * 1.4}ms` }, cx: "44", cy: "44", r: "20.2" })));
}

@@ -56,0 +51,0 @@ render() { return h(Host, this.hostData(), this.__stencil_render()); }

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

import { Color } from '../../interface';
import { Color } from "../../interface";
export declare class Spinner {

@@ -7,3 +7,3 @@ /**

*/
dataColor: Color;
dataColor?: Color;
/**

@@ -38,5 +38,5 @@ * Size of the spinner as a multiple of its own dimensions (32px x 32px).

role: string;
'data-paused': boolean;
"data-paused": boolean;
};
render(): any;
}

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

System.register(["./p-bfedd691.system.js"],(function(){"use strict";var e,a;return{setters:[function(s){e=s.p;a=s.b}],execute:function(){e().then((function(e){return a(JSON.parse('[["p-b03e7cf7.system",[[1,"lu-combo-box",{"hasFormGroup":[4,"has-form-group"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"disabled":[4],"type":[1],"multipleSelections":[4,"multiple-selections"],"autoSuggestEnabled":[4,"auto-suggest-enabled"],"value":[1040],"apiErrorCount":[2,"api-error-count"],"forEmail":[4,"for-email"],"searchResults":[1040],"invalid":[4],"name":[1],"nativeInputsId":[1,"native-inputs-id"],"purpose":[1],"valid":[4],"required":[4],"hasFocus":[32],"activeIndex":[32],"currentSearch":[32],"displayedSearchResults":[32],"isLoading":[32],"isResetting":[32],"text":[32],"shouldPreventDefaultBlurActions":[32],"setFocus":[64],"updateValue":[64]},[[8,"luUpdatedComboBoxSearchResults","onLuUpdatedComboBoxSearchResults"],[0,"keydown","handleKeyDown"]]]]],["p-593dbd6c.system",[[1,"lu-card-image",{"altText":[1,"alt-text"],"iconColor":[1,"icon-color"],"iconName":[1,"icon-name"],"iconSize":[1,"icon-size"],"isIcon":[4,"is-icon"],"src":[1]}]]],["p-a7c3dca0.system",[[1,"lu-fab-button",{"color":[1],"activated":[4],"disabled":[4],"href":[1],"isExternallyManaged":[4,"is-externally-managed"],"show":[1028],"selected":[1028],"toggleButton":[4,"toggle-button"],"translucent":[4],"type":[1],"size":[1],"value":[8],"keyFocus":[32]}]]],["p-5e85751f.system",[[1,"lu-form-group",{"clearErrorStateOnClearInput":[4,"clear-error-state-on-clear-input"],"clearInput":[4,"clear-input"],"color":[1],"cssClass":[1,"css-class"],"clearOnEdit":[1028,"clear-on-edit"],"errorMessage":[1025,"error-message"],"externallyDeemedValid":[1028,"externally-deemed-valid"],"externallyDeemedInvalid":[1028,"externally-deemed-invalid"],"forId":[1025,"for-id"],"helperText":[1,"helper-text"],"useId":[1025,"use-id"],"isExternallyValidated":[4,"is-externally-validated"],"isValidatedOnSubmission":[4,"is-validated-on-submission"],"labelText":[1,"label-text"],"updateTrigger":[1,"update-trigger"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"],"value":[32],"isValid":[32],"isInvalid":[32],"isRequired":[32],"needsEmailValidation":[32],"needsPatternValidation":[32],"needsPasswordValidation":[32],"pattern":[32],"generatedErrorMessage":[32],"validate":[64],"updateValue":[64],"getValidationValues":[64]}]]],["p-5f912bc8.system",[[1,"lu-icon-finder"]]],["p-9490cc59.system",[[2,"lu-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-5e43db31.system",[[1,"lu-side-menu",{"color":[1],"isVisible":[1028,"is-visible"],"isCollapsible":[1540,"is-collapsible"],"isCollapsed":[1540,"is-collapsed"],"hasBoxShadow":[4,"has-box-shadow"],"externallyManaged":[4,"externally-managed"],"makeVisible":[64],"isHidden":[64],"collapsedHandler":[64]},[[0,"keydown","handleEscape"]]]]],["p-f19b236b.system",[[1,"lu-toggle",{"startSelected":[1028,"start-selected"],"startText":[1,"start-text"],"startValue":[8,"start-value"],"endText":[1,"end-text"],"endValue":[8,"end-value"],"value":[1032]}]]],["p-3410ef68.system",[[1,"lu-breakpoints",{"sm":[2],"md":[2],"lg":[2],"xl":[2],"currentBreakpoint":[32],"currentWidth":[32],"currentHeight":[32]},[[9,"resize","onResize"]]]]],["p-0eea7acb.system",[[1,"lu-card",{"color":[1]}]]],["p-47ebb6a8.system",[[1,"lu-card-buttons"]]],["p-8465d2c3.system",[[0,"lu-card-content"]]],["p-b9c2a503.system",[[1,"lu-card-footer",{"color":[1],"translucent":[4]}]]],["p-212ecd69.system",[[1,"lu-card-header",{"color":[1],"translucent":[4]}]]],["p-05f1bd11.system",[[1,"lu-card-title",{"color":[1]}]]],["p-bbf4b6a1.system",[[1,"lu-checkbox",{"color":[1],"name":[1],"labeledById":[1,"labeled-by-id"],"checked":[1028],"disabled":[4],"isExternallyManaged":[4,"is-externally-managed"],"value":[8],"keyFocus":[32],"hasFocus":[32]}]]],["p-7c051419.system",[[4,"lu-checkbox-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"direction":[1],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1040],"hasFormGroup":[4,"has-form-group"],"isResetting":[32],"componentLoaded":[32],"setFocus":[64],"updateValue":[64]}]]],["p-0b3659b7.system",[[1,"lu-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]]]],["p-31cb7c26.system",[[1,"lu-combo-box-connector",{"purpose":[1],"searchResults":[16]},[[8,"luNewSearchResultRequested","onLuNewSearchResultRequested"]]]]],["p-a7765132.system",[[1,"lu-dropdown-listbox",{"isExpanded":[1028,"is-expanded"],"label":[1],"labelRef":[1,"label-ref"],"value":[1032],"options":[32],"activeDescendant":[32],"firstItem":[32],"lastItem":[32]},[[0,"keydown","handleKeyDown"],[3,"slotHasChanged","handleSlotChange"],[11,"click","handleWindowClick"]]]]],["p-568ea7f4.system",[[1,"lu-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]},[[0,"click","onClick"]]]]],["p-37c67a11.system",[[1,"lu-fab-list",{"activated":[4],"side":[1]}]]],["p-27c0c94b.system",[[0,"lu-form-validation",{"wrappingValidation":[16],"value":[1040],"useId":[1,"use-id"],"primaryCompoundId":[1,"primary-compound-id"],"isValid":[1540,"is-valid"],"isInvalid":[1540,"is-invalid"],"formGroups":[32],"wrappingValidationIsValid":[32],"wrappingValidationIsInvalid":[32],"failedWrappingValidatorsData":[32],"updateValues":[64],"forceValidation":[64]}]]],["p-615bc55b.system",[[1,"lu-gdpr-consent",{"hidden":[32],"grantConsentCookie":[64],"revokeConsentCookie":[64],"resetConsentCookie":[64]},[[4,"gdpr-consent-revoke","handleRevoke"],[4,"gdpr-consent-reset","handleReset"]]]]],["p-5e6a4298.system",[[1,"lu-grid",{"fixed":[4]}]]],["p-ea91e74f.system",[[1,"lu-header",{"color":[1],"preHeader":[4,"pre-header"]}]]],["p-57ca8be0.system",[[1,"lu-img",{"alt":[1],"src":[1],"loadSrc":[32]}]]],["p-1ea1eded.system",[[1,"lu-listbox-option",{"role":[513],"selected":[516],"value":[520]}]]],["p-bccfd33b.system",[[1,"lu-radio",{"color":[1],"canDeselect":[4,"can-deselect"],"labeledById":[1,"labeled-by-id"],"name":[1],"disabled":[4],"checked":[1028],"value":[1032],"hasFocus":[32]},[[0,"click","onClick"]]]]],["p-b4c2607c.system",[[0,"lu-radio-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"allowEmptySelection":[4,"allow-empty-selection"],"direction":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1032],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-f9a7e724.system",[[1,"lu-row"]]],["p-b3061cbe.system",[[1,"lu-select",{"useId":[1025,"use-id"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"invalid":[4],"name":[1],"ariaLabel":[1,"aria-label"],"disabled":[4],"placeholder":[1],"helpText":[1,"help-text"],"hasFormGroup":[4,"has-form-group"],"value":[1032],"selectedValueName":[1032,"selected-value-name"],"showPlaceholderOption":[4,"show-placeholder-option"],"required":[4],"options":[1040],"valid":[4],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-582c905c.system",[[1,"lu-spinner",{"dataColor":[1,"data-color"],"dataScale":[2,"data-scale"],"dataDuration":[2,"data-duration"],"dataPaused":[4,"data-paused"],"dataHidden":[4,"data-hidden"],"dataMessage":[1,"data-message"]}]]],["p-fc7448ff.system",[[1,"lu-tab",{"active":[1540],"name":[8],"noSlide":[8,"no-slide"],"isFocused":[32]},[[0,"click","onClick"],[0,"keydown","handleKeyDown"],[18,"luTabFocused","handleLuTabFocused"],[18,"luTabBlurred","handleLuTabBlurred"]]]]],["p-cad6ff82.system",[[1,"lu-tabs",{"value":[1025],"label":[1],"noSlide":[4,"no-slide"],"tabs":[32],"tabIncrement":[32],"selectionBar":[32],"currentOrderedTabsArray":[32],"pos":[32],"left":[32],"width":[32],"focusedNode":[32],"elementResized":[64]},[[0,"luTabDidLoad","onTabDidLoad"],[0,"luTabDidDisconnect","onTabDidDisconnect"],[0,"luTabSelect","onTabSelect"],[0,"keydown","handleKeyDown"],[0,"tabFocus","onFocus"],[0,"tabBlur","onBlur"]]]]],["p-14646723.system",[[1,"lu-text-area",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"invalid":[4],"valid":[4],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"color":[1],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"getInputElement":[64],"updateValue":[64]}]]],["p-da9edbae.system",[[1,"lu-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"touchstart","onTouchStart"],[2,"click","onMouseDown"],[2,"mousedown","onMouseDown"]]]]],["p-c467403e.system",[[1,"lu-label",{"color":[1],"labelText":[1,"label-text"],"required":[4],"optional":[4],"forId":[513,"for-id"],"useId":[1025,"use-id"],"invalid":[4],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"]}]]],["p-267276a3.system",[[1,"lu-button",{"color":[1],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1],"keyFocus":[32]}]]],["p-3d386b59.system",[[1,"lu-icon",{"color":[1],"mode":[1],"ariaLabel":[1537,"aria-label"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[1],"size":[1],"hexColor":[1,"hex-color"],"buttonRole":[4,"button-role"],"svgContent":[32],"isVisible":[32]}]]],["p-f994db73.system",[[1,"lu-combo-box-selection",{"isEditing":[4,"is-editing"],"selection":[16],"isEmail":[4,"is-email"]}],[1,"lu-input",{"accept":[1],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"autocomplete":[1],"autocapitalize":[1],"autocorrect":[1],"autofocus":[4],"ariaAutoComplete":[1,"aria-auto-complete"],"ariaControls":[1,"aria-controls"],"ariaActiveDescendant":[1,"aria-active-descendant"],"clearInput":[4,"clear-input"],"clearOnEdit":[1028,"clear-on-edit"],"capture":[1],"checked":[4],"color":[1],"debounce":[2],"disabled":[4],"form":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"inputmode":[1],"invalid":[4],"list":[1],"max":[8],"min":[8],"minLength":[2,"min-length"],"maxLength":[2,"max-length"],"multiple":[4],"name":[1],"noBorder":[4,"no-border"],"pattern":[1],"placeholder":[1],"prefixIcon":[1,"prefix-icon"],"prefixIconClickable":[4,"prefix-icon-clickable"],"suffixIcon":[1025,"suffix-icon"],"suffixIconClickable":[1028,"suffix-icon-clickable"],"readOnly":[4,"read-only"],"required":[4],"size":[2],"spellcheck":[4],"step":[8],"tabIndexWanted":[2,"tab-index-wanted"],"type":[1],"valid":[4],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"updateValue":[64]}],[1,"lu-skeleton-text",{"width":[1],"shouldAnimate":[4,"should-animate"]}]]]]'),e)}))}}}));
System.register(["./p-bfedd691.system.js"],(function(){"use strict";var e,a;return{setters:[function(s){e=s.p;a=s.b}],execute:function(){e().then((function(e){return a(JSON.parse('[["p-b03e7cf7.system",[[1,"lu-combo-box",{"hasFormGroup":[4,"has-form-group"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"disabled":[4],"type":[1],"multipleSelections":[4,"multiple-selections"],"autoSuggestEnabled":[4,"auto-suggest-enabled"],"value":[1040],"apiErrorCount":[2,"api-error-count"],"forEmail":[4,"for-email"],"searchResults":[1040],"invalid":[4],"name":[1],"nativeInputsId":[1,"native-inputs-id"],"purpose":[1],"valid":[4],"required":[4],"hasFocus":[32],"activeIndex":[32],"currentSearch":[32],"displayedSearchResults":[32],"isLoading":[32],"isResetting":[32],"text":[32],"shouldPreventDefaultBlurActions":[32],"setFocus":[64],"updateValue":[64]},[[8,"luUpdatedComboBoxSearchResults","onLuUpdatedComboBoxSearchResults"],[0,"keydown","handleKeyDown"]]]]],["p-593dbd6c.system",[[1,"lu-card-image",{"altText":[1,"alt-text"],"iconColor":[1,"icon-color"],"iconName":[1,"icon-name"],"iconSize":[1,"icon-size"],"isIcon":[4,"is-icon"],"src":[1]}]]],["p-a7c3dca0.system",[[1,"lu-fab-button",{"color":[1],"activated":[4],"disabled":[4],"href":[1],"isExternallyManaged":[4,"is-externally-managed"],"show":[1028],"selected":[1028],"toggleButton":[4,"toggle-button"],"translucent":[4],"type":[1],"size":[1],"value":[8],"keyFocus":[32]}]]],["p-5e85751f.system",[[1,"lu-form-group",{"clearErrorStateOnClearInput":[4,"clear-error-state-on-clear-input"],"clearInput":[4,"clear-input"],"color":[1],"cssClass":[1,"css-class"],"clearOnEdit":[1028,"clear-on-edit"],"errorMessage":[1025,"error-message"],"externallyDeemedValid":[1028,"externally-deemed-valid"],"externallyDeemedInvalid":[1028,"externally-deemed-invalid"],"forId":[1025,"for-id"],"helperText":[1,"helper-text"],"useId":[1025,"use-id"],"isExternallyValidated":[4,"is-externally-validated"],"isValidatedOnSubmission":[4,"is-validated-on-submission"],"labelText":[1,"label-text"],"updateTrigger":[1,"update-trigger"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"],"value":[32],"isValid":[32],"isInvalid":[32],"isRequired":[32],"needsEmailValidation":[32],"needsPatternValidation":[32],"needsPasswordValidation":[32],"pattern":[32],"generatedErrorMessage":[32],"validate":[64],"updateValue":[64],"getValidationValues":[64]}]]],["p-5f912bc8.system",[[1,"lu-icon-finder"]]],["p-9490cc59.system",[[2,"lu-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-5e43db31.system",[[1,"lu-side-menu",{"color":[1],"isVisible":[1028,"is-visible"],"isCollapsible":[1540,"is-collapsible"],"isCollapsed":[1540,"is-collapsed"],"hasBoxShadow":[4,"has-box-shadow"],"externallyManaged":[4,"externally-managed"],"makeVisible":[64],"isHidden":[64],"collapsedHandler":[64]},[[0,"keydown","handleEscape"]]]]],["p-f19b236b.system",[[1,"lu-toggle",{"startSelected":[1028,"start-selected"],"startText":[1,"start-text"],"startValue":[8,"start-value"],"endText":[1,"end-text"],"endValue":[8,"end-value"],"value":[1032]}]]],["p-3410ef68.system",[[1,"lu-breakpoints",{"sm":[2],"md":[2],"lg":[2],"xl":[2],"currentBreakpoint":[32],"currentWidth":[32],"currentHeight":[32]},[[9,"resize","onResize"]]]]],["p-0eea7acb.system",[[1,"lu-card",{"color":[1]}]]],["p-47ebb6a8.system",[[1,"lu-card-buttons"]]],["p-8465d2c3.system",[[0,"lu-card-content"]]],["p-b9c2a503.system",[[1,"lu-card-footer",{"color":[1],"translucent":[4]}]]],["p-212ecd69.system",[[1,"lu-card-header",{"color":[1],"translucent":[4]}]]],["p-05f1bd11.system",[[1,"lu-card-title",{"color":[1]}]]],["p-bbf4b6a1.system",[[1,"lu-checkbox",{"color":[1],"name":[1],"labeledById":[1,"labeled-by-id"],"checked":[1028],"disabled":[4],"isExternallyManaged":[4,"is-externally-managed"],"value":[8],"keyFocus":[32],"hasFocus":[32]}]]],["p-7c051419.system",[[4,"lu-checkbox-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"direction":[1],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1040],"hasFormGroup":[4,"has-form-group"],"isResetting":[32],"componentLoaded":[32],"setFocus":[64],"updateValue":[64]}]]],["p-0b3659b7.system",[[1,"lu-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]]]],["p-31cb7c26.system",[[1,"lu-combo-box-connector",{"purpose":[1],"searchResults":[16]},[[8,"luNewSearchResultRequested","onLuNewSearchResultRequested"]]]]],["p-a7765132.system",[[1,"lu-dropdown-listbox",{"isExpanded":[1028,"is-expanded"],"label":[1],"labelRef":[1,"label-ref"],"value":[1032],"options":[32],"activeDescendant":[32],"firstItem":[32],"lastItem":[32]},[[0,"keydown","handleKeyDown"],[3,"slotHasChanged","handleSlotChange"],[11,"click","handleWindowClick"]]]]],["p-568ea7f4.system",[[1,"lu-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]},[[0,"click","onClick"]]]]],["p-37c67a11.system",[[1,"lu-fab-list",{"activated":[4],"side":[1]}]]],["p-27c0c94b.system",[[0,"lu-form-validation",{"wrappingValidation":[16],"value":[1040],"useId":[1,"use-id"],"primaryCompoundId":[1,"primary-compound-id"],"isValid":[1540,"is-valid"],"isInvalid":[1540,"is-invalid"],"formGroups":[32],"wrappingValidationIsValid":[32],"wrappingValidationIsInvalid":[32],"failedWrappingValidatorsData":[32],"updateValues":[64],"forceValidation":[64]}]]],["p-615bc55b.system",[[1,"lu-gdpr-consent",{"hidden":[32],"grantConsentCookie":[64],"revokeConsentCookie":[64],"resetConsentCookie":[64]},[[4,"gdpr-consent-revoke","handleRevoke"],[4,"gdpr-consent-reset","handleReset"]]]]],["p-5e6a4298.system",[[1,"lu-grid",{"fixed":[4]}]]],["p-ea91e74f.system",[[1,"lu-header",{"color":[1],"preHeader":[4,"pre-header"]}]]],["p-57ca8be0.system",[[1,"lu-img",{"alt":[1],"src":[1],"loadSrc":[32]}]]],["p-1ea1eded.system",[[1,"lu-listbox-option",{"role":[513],"selected":[516],"value":[520]}]]],["p-bccfd33b.system",[[1,"lu-radio",{"color":[1],"canDeselect":[4,"can-deselect"],"labeledById":[1,"labeled-by-id"],"name":[1],"disabled":[4],"checked":[1028],"value":[1032],"hasFocus":[32]},[[0,"click","onClick"]]]]],["p-b4c2607c.system",[[0,"lu-radio-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"allowEmptySelection":[4,"allow-empty-selection"],"direction":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1032],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-f9a7e724.system",[[1,"lu-row"]]],["p-b3061cbe.system",[[1,"lu-select",{"useId":[1025,"use-id"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"invalid":[4],"name":[1],"ariaLabel":[1,"aria-label"],"disabled":[4],"placeholder":[1],"helpText":[1,"help-text"],"hasFormGroup":[4,"has-form-group"],"value":[1032],"selectedValueName":[1032,"selected-value-name"],"showPlaceholderOption":[4,"show-placeholder-option"],"required":[4],"options":[1040],"valid":[4],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-cd702357.system",[[1,"lu-spinner",{"dataColor":[1,"data-color"],"dataScale":[2,"data-scale"],"dataDuration":[2,"data-duration"],"dataPaused":[4,"data-paused"],"dataHidden":[4,"data-hidden"],"dataMessage":[1,"data-message"]}]]],["p-fc7448ff.system",[[1,"lu-tab",{"active":[1540],"name":[8],"noSlide":[8,"no-slide"],"isFocused":[32]},[[0,"click","onClick"],[0,"keydown","handleKeyDown"],[18,"luTabFocused","handleLuTabFocused"],[18,"luTabBlurred","handleLuTabBlurred"]]]]],["p-cad6ff82.system",[[1,"lu-tabs",{"value":[1025],"label":[1],"noSlide":[4,"no-slide"],"tabs":[32],"tabIncrement":[32],"selectionBar":[32],"currentOrderedTabsArray":[32],"pos":[32],"left":[32],"width":[32],"focusedNode":[32],"elementResized":[64]},[[0,"luTabDidLoad","onTabDidLoad"],[0,"luTabDidDisconnect","onTabDidDisconnect"],[0,"luTabSelect","onTabSelect"],[0,"keydown","handleKeyDown"],[0,"tabFocus","onFocus"],[0,"tabBlur","onBlur"]]]]],["p-14646723.system",[[1,"lu-text-area",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"invalid":[4],"valid":[4],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"color":[1],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"getInputElement":[64],"updateValue":[64]}]]],["p-da9edbae.system",[[1,"lu-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"touchstart","onTouchStart"],[2,"click","onMouseDown"],[2,"mousedown","onMouseDown"]]]]],["p-c467403e.system",[[1,"lu-label",{"color":[1],"labelText":[1,"label-text"],"required":[4],"optional":[4],"forId":[513,"for-id"],"useId":[1025,"use-id"],"invalid":[4],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"]}]]],["p-267276a3.system",[[1,"lu-button",{"color":[1],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1],"keyFocus":[32]}]]],["p-3d386b59.system",[[1,"lu-icon",{"color":[1],"mode":[1],"ariaLabel":[1537,"aria-label"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[1],"size":[1],"hexColor":[1,"hex-color"],"buttonRole":[4,"button-role"],"svgContent":[32],"isVisible":[32]}]]],["p-f994db73.system",[[1,"lu-combo-box-selection",{"isEditing":[4,"is-editing"],"selection":[16],"isEmail":[4,"is-email"]}],[1,"lu-input",{"accept":[1],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"autocomplete":[1],"autocapitalize":[1],"autocorrect":[1],"autofocus":[4],"ariaAutoComplete":[1,"aria-auto-complete"],"ariaControls":[1,"aria-controls"],"ariaActiveDescendant":[1,"aria-active-descendant"],"clearInput":[4,"clear-input"],"clearOnEdit":[1028,"clear-on-edit"],"capture":[1],"checked":[4],"color":[1],"debounce":[2],"disabled":[4],"form":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"inputmode":[1],"invalid":[4],"list":[1],"max":[8],"min":[8],"minLength":[2,"min-length"],"maxLength":[2,"max-length"],"multiple":[4],"name":[1],"noBorder":[4,"no-border"],"pattern":[1],"placeholder":[1],"prefixIcon":[1,"prefix-icon"],"prefixIconClickable":[4,"prefix-icon-clickable"],"suffixIcon":[1025,"suffix-icon"],"suffixIconClickable":[1028,"suffix-icon-clickable"],"readOnly":[4,"read-only"],"required":[4],"size":[2],"spellcheck":[4],"step":[8],"tabIndexWanted":[2,"tab-index-wanted"],"type":[1],"valid":[4],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"updateValue":[64]}],[1,"lu-skeleton-text",{"width":[1],"shouldAnimate":[4,"should-animate"]}]]]]'),e)}))}}}));

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

import{p as e,b as a}from"./p-cac69d68.js";e().then(e=>a(JSON.parse('[["p-4679ebba",[[1,"lu-combo-box",{"hasFormGroup":[4,"has-form-group"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"disabled":[4],"type":[1],"multipleSelections":[4,"multiple-selections"],"autoSuggestEnabled":[4,"auto-suggest-enabled"],"value":[1040],"apiErrorCount":[2,"api-error-count"],"forEmail":[4,"for-email"],"searchResults":[1040],"invalid":[4],"name":[1],"nativeInputsId":[1,"native-inputs-id"],"purpose":[1],"valid":[4],"required":[4],"hasFocus":[32],"activeIndex":[32],"currentSearch":[32],"displayedSearchResults":[32],"isLoading":[32],"isResetting":[32],"text":[32],"shouldPreventDefaultBlurActions":[32],"setFocus":[64],"updateValue":[64]},[[8,"luUpdatedComboBoxSearchResults","onLuUpdatedComboBoxSearchResults"],[0,"keydown","handleKeyDown"]]]]],["p-fee7f1fb",[[1,"lu-card-image",{"altText":[1,"alt-text"],"iconColor":[1,"icon-color"],"iconName":[1,"icon-name"],"iconSize":[1,"icon-size"],"isIcon":[4,"is-icon"],"src":[1]}]]],["p-dbe3488f",[[1,"lu-fab-button",{"color":[1],"activated":[4],"disabled":[4],"href":[1],"isExternallyManaged":[4,"is-externally-managed"],"show":[1028],"selected":[1028],"toggleButton":[4,"toggle-button"],"translucent":[4],"type":[1],"size":[1],"value":[8],"keyFocus":[32]}]]],["p-5afde949",[[1,"lu-form-group",{"clearErrorStateOnClearInput":[4,"clear-error-state-on-clear-input"],"clearInput":[4,"clear-input"],"color":[1],"cssClass":[1,"css-class"],"clearOnEdit":[1028,"clear-on-edit"],"errorMessage":[1025,"error-message"],"externallyDeemedValid":[1028,"externally-deemed-valid"],"externallyDeemedInvalid":[1028,"externally-deemed-invalid"],"forId":[1025,"for-id"],"helperText":[1,"helper-text"],"useId":[1025,"use-id"],"isExternallyValidated":[4,"is-externally-validated"],"isValidatedOnSubmission":[4,"is-validated-on-submission"],"labelText":[1,"label-text"],"updateTrigger":[1,"update-trigger"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"],"value":[32],"isValid":[32],"isInvalid":[32],"isRequired":[32],"needsEmailValidation":[32],"needsPatternValidation":[32],"needsPasswordValidation":[32],"pattern":[32],"generatedErrorMessage":[32],"validate":[64],"updateValue":[64],"getValidationValues":[64]}]]],["p-c24588e7",[[1,"lu-icon-finder"]]],["p-62970784",[[2,"lu-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-05b109ee",[[1,"lu-side-menu",{"color":[1],"isVisible":[1028,"is-visible"],"isCollapsible":[1540,"is-collapsible"],"isCollapsed":[1540,"is-collapsed"],"hasBoxShadow":[4,"has-box-shadow"],"externallyManaged":[4,"externally-managed"],"makeVisible":[64],"isHidden":[64],"collapsedHandler":[64]},[[0,"keydown","handleEscape"]]]]],["p-ec73574b",[[1,"lu-toggle",{"startSelected":[1028,"start-selected"],"startText":[1,"start-text"],"startValue":[8,"start-value"],"endText":[1,"end-text"],"endValue":[8,"end-value"],"value":[1032]}]]],["p-a910a0f3",[[1,"lu-breakpoints",{"sm":[2],"md":[2],"lg":[2],"xl":[2],"currentBreakpoint":[32],"currentWidth":[32],"currentHeight":[32]},[[9,"resize","onResize"]]]]],["p-4d74b6a3",[[1,"lu-card",{"color":[1]}]]],["p-345dae3a",[[1,"lu-card-buttons"]]],["p-31b1679e",[[0,"lu-card-content"]]],["p-8902a3ac",[[1,"lu-card-footer",{"color":[1],"translucent":[4]}]]],["p-263843e1",[[1,"lu-card-header",{"color":[1],"translucent":[4]}]]],["p-080b2885",[[1,"lu-card-title",{"color":[1]}]]],["p-b4dba8bb",[[1,"lu-checkbox",{"color":[1],"name":[1],"labeledById":[1,"labeled-by-id"],"checked":[1028],"disabled":[4],"isExternallyManaged":[4,"is-externally-managed"],"value":[8],"keyFocus":[32],"hasFocus":[32]}]]],["p-fced3013",[[4,"lu-checkbox-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"direction":[1],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1040],"hasFormGroup":[4,"has-form-group"],"isResetting":[32],"componentLoaded":[32],"setFocus":[64],"updateValue":[64]}]]],["p-aaaa817b",[[1,"lu-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]]]],["p-6cfd5146",[[1,"lu-combo-box-connector",{"purpose":[1],"searchResults":[16]},[[8,"luNewSearchResultRequested","onLuNewSearchResultRequested"]]]]],["p-063a9335",[[1,"lu-dropdown-listbox",{"isExpanded":[1028,"is-expanded"],"label":[1],"labelRef":[1,"label-ref"],"value":[1032],"options":[32],"activeDescendant":[32],"firstItem":[32],"lastItem":[32]},[[0,"keydown","handleKeyDown"],[3,"slotHasChanged","handleSlotChange"],[11,"click","handleWindowClick"]]]]],["p-78acfb01",[[1,"lu-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]},[[0,"click","onClick"]]]]],["p-aada99ba",[[1,"lu-fab-list",{"activated":[4],"side":[1]}]]],["p-bb8b0227",[[0,"lu-form-validation",{"wrappingValidation":[16],"value":[1040],"useId":[1,"use-id"],"primaryCompoundId":[1,"primary-compound-id"],"isValid":[1540,"is-valid"],"isInvalid":[1540,"is-invalid"],"formGroups":[32],"wrappingValidationIsValid":[32],"wrappingValidationIsInvalid":[32],"failedWrappingValidatorsData":[32],"updateValues":[64],"forceValidation":[64]}]]],["p-f069a8fa",[[1,"lu-gdpr-consent",{"hidden":[32],"grantConsentCookie":[64],"revokeConsentCookie":[64],"resetConsentCookie":[64]},[[4,"gdpr-consent-revoke","handleRevoke"],[4,"gdpr-consent-reset","handleReset"]]]]],["p-4dabb25e",[[1,"lu-grid",{"fixed":[4]}]]],["p-57442c78",[[1,"lu-header",{"color":[1],"preHeader":[4,"pre-header"]}]]],["p-ca7c6be5",[[1,"lu-img",{"alt":[1],"src":[1],"loadSrc":[32]}]]],["p-5063512c",[[1,"lu-listbox-option",{"role":[513],"selected":[516],"value":[520]}]]],["p-a5f564d5",[[1,"lu-radio",{"color":[1],"canDeselect":[4,"can-deselect"],"labeledById":[1,"labeled-by-id"],"name":[1],"disabled":[4],"checked":[1028],"value":[1032],"hasFocus":[32]},[[0,"click","onClick"]]]]],["p-35014163",[[0,"lu-radio-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"allowEmptySelection":[4,"allow-empty-selection"],"direction":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1032],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-60d612a6",[[1,"lu-row"]]],["p-6261fb9d",[[1,"lu-select",{"useId":[1025,"use-id"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"invalid":[4],"name":[1],"ariaLabel":[1,"aria-label"],"disabled":[4],"placeholder":[1],"helpText":[1,"help-text"],"hasFormGroup":[4,"has-form-group"],"value":[1032],"selectedValueName":[1032,"selected-value-name"],"showPlaceholderOption":[4,"show-placeholder-option"],"required":[4],"options":[1040],"valid":[4],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-8acc3ee5",[[1,"lu-spinner",{"dataColor":[1,"data-color"],"dataScale":[2,"data-scale"],"dataDuration":[2,"data-duration"],"dataPaused":[4,"data-paused"],"dataHidden":[4,"data-hidden"],"dataMessage":[1,"data-message"]}]]],["p-ed0a4549",[[1,"lu-tab",{"active":[1540],"name":[8],"noSlide":[8,"no-slide"],"isFocused":[32]},[[0,"click","onClick"],[0,"keydown","handleKeyDown"],[18,"luTabFocused","handleLuTabFocused"],[18,"luTabBlurred","handleLuTabBlurred"]]]]],["p-ed4dd407",[[1,"lu-tabs",{"value":[1025],"label":[1],"noSlide":[4,"no-slide"],"tabs":[32],"tabIncrement":[32],"selectionBar":[32],"currentOrderedTabsArray":[32],"pos":[32],"left":[32],"width":[32],"focusedNode":[32],"elementResized":[64]},[[0,"luTabDidLoad","onTabDidLoad"],[0,"luTabDidDisconnect","onTabDidDisconnect"],[0,"luTabSelect","onTabSelect"],[0,"keydown","handleKeyDown"],[0,"tabFocus","onFocus"],[0,"tabBlur","onBlur"]]]]],["p-68ee2631",[[1,"lu-text-area",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"invalid":[4],"valid":[4],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"color":[1],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"getInputElement":[64],"updateValue":[64]}]]],["p-6fecc226",[[1,"lu-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"touchstart","onTouchStart"],[2,"click","onMouseDown"],[2,"mousedown","onMouseDown"]]]]],["p-c172dc73",[[1,"lu-label",{"color":[1],"labelText":[1,"label-text"],"required":[4],"optional":[4],"forId":[513,"for-id"],"useId":[1025,"use-id"],"invalid":[4],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"]}]]],["p-3bc05ac1",[[1,"lu-button",{"color":[1],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1],"keyFocus":[32]}]]],["p-6dfe8e7d",[[1,"lu-icon",{"color":[1],"mode":[1],"ariaLabel":[1537,"aria-label"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[1],"size":[1],"hexColor":[1,"hex-color"],"buttonRole":[4,"button-role"],"svgContent":[32],"isVisible":[32]}]]],["p-dd8a51ba",[[1,"lu-combo-box-selection",{"isEditing":[4,"is-editing"],"selection":[16],"isEmail":[4,"is-email"]}],[1,"lu-input",{"accept":[1],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"autocomplete":[1],"autocapitalize":[1],"autocorrect":[1],"autofocus":[4],"ariaAutoComplete":[1,"aria-auto-complete"],"ariaControls":[1,"aria-controls"],"ariaActiveDescendant":[1,"aria-active-descendant"],"clearInput":[4,"clear-input"],"clearOnEdit":[1028,"clear-on-edit"],"capture":[1],"checked":[4],"color":[1],"debounce":[2],"disabled":[4],"form":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"inputmode":[1],"invalid":[4],"list":[1],"max":[8],"min":[8],"minLength":[2,"min-length"],"maxLength":[2,"max-length"],"multiple":[4],"name":[1],"noBorder":[4,"no-border"],"pattern":[1],"placeholder":[1],"prefixIcon":[1,"prefix-icon"],"prefixIconClickable":[4,"prefix-icon-clickable"],"suffixIcon":[1025,"suffix-icon"],"suffixIconClickable":[1028,"suffix-icon-clickable"],"readOnly":[4,"read-only"],"required":[4],"size":[2],"spellcheck":[4],"step":[8],"tabIndexWanted":[2,"tab-index-wanted"],"type":[1],"valid":[4],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"updateValue":[64]}],[1,"lu-skeleton-text",{"width":[1],"shouldAnimate":[4,"should-animate"]}]]]]'),e));
import{p as e,b as a}from"./p-cac69d68.js";e().then(e=>a(JSON.parse('[["p-4679ebba",[[1,"lu-combo-box",{"hasFormGroup":[4,"has-form-group"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"disabled":[4],"type":[1],"multipleSelections":[4,"multiple-selections"],"autoSuggestEnabled":[4,"auto-suggest-enabled"],"value":[1040],"apiErrorCount":[2,"api-error-count"],"forEmail":[4,"for-email"],"searchResults":[1040],"invalid":[4],"name":[1],"nativeInputsId":[1,"native-inputs-id"],"purpose":[1],"valid":[4],"required":[4],"hasFocus":[32],"activeIndex":[32],"currentSearch":[32],"displayedSearchResults":[32],"isLoading":[32],"isResetting":[32],"text":[32],"shouldPreventDefaultBlurActions":[32],"setFocus":[64],"updateValue":[64]},[[8,"luUpdatedComboBoxSearchResults","onLuUpdatedComboBoxSearchResults"],[0,"keydown","handleKeyDown"]]]]],["p-fee7f1fb",[[1,"lu-card-image",{"altText":[1,"alt-text"],"iconColor":[1,"icon-color"],"iconName":[1,"icon-name"],"iconSize":[1,"icon-size"],"isIcon":[4,"is-icon"],"src":[1]}]]],["p-dbe3488f",[[1,"lu-fab-button",{"color":[1],"activated":[4],"disabled":[4],"href":[1],"isExternallyManaged":[4,"is-externally-managed"],"show":[1028],"selected":[1028],"toggleButton":[4,"toggle-button"],"translucent":[4],"type":[1],"size":[1],"value":[8],"keyFocus":[32]}]]],["p-5afde949",[[1,"lu-form-group",{"clearErrorStateOnClearInput":[4,"clear-error-state-on-clear-input"],"clearInput":[4,"clear-input"],"color":[1],"cssClass":[1,"css-class"],"clearOnEdit":[1028,"clear-on-edit"],"errorMessage":[1025,"error-message"],"externallyDeemedValid":[1028,"externally-deemed-valid"],"externallyDeemedInvalid":[1028,"externally-deemed-invalid"],"forId":[1025,"for-id"],"helperText":[1,"helper-text"],"useId":[1025,"use-id"],"isExternallyValidated":[4,"is-externally-validated"],"isValidatedOnSubmission":[4,"is-validated-on-submission"],"labelText":[1,"label-text"],"updateTrigger":[1,"update-trigger"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"],"value":[32],"isValid":[32],"isInvalid":[32],"isRequired":[32],"needsEmailValidation":[32],"needsPatternValidation":[32],"needsPasswordValidation":[32],"pattern":[32],"generatedErrorMessage":[32],"validate":[64],"updateValue":[64],"getValidationValues":[64]}]]],["p-c24588e7",[[1,"lu-icon-finder"]]],["p-62970784",[[2,"lu-modal",{"overlayIndex":[2,"overlay-index"],"delegate":[16],"keyboardClose":[4,"keyboard-close"],"enterAnimation":[16],"leaveAnimation":[16],"component":[1],"componentProps":[16],"cssClass":[1,"css-class"],"backdropDismiss":[4,"backdrop-dismiss"],"showBackdrop":[4,"show-backdrop"],"animated":[4],"present":[64],"dismiss":[64],"onDidDismiss":[64],"onWillDismiss":[64]}]]],["p-05b109ee",[[1,"lu-side-menu",{"color":[1],"isVisible":[1028,"is-visible"],"isCollapsible":[1540,"is-collapsible"],"isCollapsed":[1540,"is-collapsed"],"hasBoxShadow":[4,"has-box-shadow"],"externallyManaged":[4,"externally-managed"],"makeVisible":[64],"isHidden":[64],"collapsedHandler":[64]},[[0,"keydown","handleEscape"]]]]],["p-ec73574b",[[1,"lu-toggle",{"startSelected":[1028,"start-selected"],"startText":[1,"start-text"],"startValue":[8,"start-value"],"endText":[1,"end-text"],"endValue":[8,"end-value"],"value":[1032]}]]],["p-a910a0f3",[[1,"lu-breakpoints",{"sm":[2],"md":[2],"lg":[2],"xl":[2],"currentBreakpoint":[32],"currentWidth":[32],"currentHeight":[32]},[[9,"resize","onResize"]]]]],["p-4d74b6a3",[[1,"lu-card",{"color":[1]}]]],["p-345dae3a",[[1,"lu-card-buttons"]]],["p-31b1679e",[[0,"lu-card-content"]]],["p-8902a3ac",[[1,"lu-card-footer",{"color":[1],"translucent":[4]}]]],["p-263843e1",[[1,"lu-card-header",{"color":[1],"translucent":[4]}]]],["p-080b2885",[[1,"lu-card-title",{"color":[1]}]]],["p-b4dba8bb",[[1,"lu-checkbox",{"color":[1],"name":[1],"labeledById":[1,"labeled-by-id"],"checked":[1028],"disabled":[4],"isExternallyManaged":[4,"is-externally-managed"],"value":[8],"keyFocus":[32],"hasFocus":[32]}]]],["p-fced3013",[[4,"lu-checkbox-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"direction":[1],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1040],"hasFormGroup":[4,"has-form-group"],"isResetting":[32],"componentLoaded":[32],"setFocus":[64],"updateValue":[64]}]]],["p-aaaa817b",[[1,"lu-col",{"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"]},[[9,"resize","onResize"]]]]],["p-6cfd5146",[[1,"lu-combo-box-connector",{"purpose":[1],"searchResults":[16]},[[8,"luNewSearchResultRequested","onLuNewSearchResultRequested"]]]]],["p-063a9335",[[1,"lu-dropdown-listbox",{"isExpanded":[1028,"is-expanded"],"label":[1],"labelRef":[1,"label-ref"],"value":[1032],"options":[32],"activeDescendant":[32],"firstItem":[32],"lastItem":[32]},[[0,"keydown","handleKeyDown"],[3,"slotHasChanged","handleSlotChange"],[11,"click","handleWindowClick"]]]]],["p-78acfb01",[[1,"lu-fab",{"horizontal":[1],"vertical":[1],"edge":[4],"activated":[1028],"close":[64]},[[0,"click","onClick"]]]]],["p-aada99ba",[[1,"lu-fab-list",{"activated":[4],"side":[1]}]]],["p-bb8b0227",[[0,"lu-form-validation",{"wrappingValidation":[16],"value":[1040],"useId":[1,"use-id"],"primaryCompoundId":[1,"primary-compound-id"],"isValid":[1540,"is-valid"],"isInvalid":[1540,"is-invalid"],"formGroups":[32],"wrappingValidationIsValid":[32],"wrappingValidationIsInvalid":[32],"failedWrappingValidatorsData":[32],"updateValues":[64],"forceValidation":[64]}]]],["p-f069a8fa",[[1,"lu-gdpr-consent",{"hidden":[32],"grantConsentCookie":[64],"revokeConsentCookie":[64],"resetConsentCookie":[64]},[[4,"gdpr-consent-revoke","handleRevoke"],[4,"gdpr-consent-reset","handleReset"]]]]],["p-4dabb25e",[[1,"lu-grid",{"fixed":[4]}]]],["p-57442c78",[[1,"lu-header",{"color":[1],"preHeader":[4,"pre-header"]}]]],["p-ca7c6be5",[[1,"lu-img",{"alt":[1],"src":[1],"loadSrc":[32]}]]],["p-5063512c",[[1,"lu-listbox-option",{"role":[513],"selected":[516],"value":[520]}]]],["p-a5f564d5",[[1,"lu-radio",{"color":[1],"canDeselect":[4,"can-deselect"],"labeledById":[1,"labeled-by-id"],"name":[1],"disabled":[4],"checked":[1028],"value":[1032],"hasFocus":[32]},[[0,"click","onClick"]]]]],["p-35014163",[[0,"lu-radio-group",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"allowEmptySelection":[4,"allow-empty-selection"],"direction":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"name":[1],"required":[4],"valid":[4],"invalid":[4],"value":[1032],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-60d612a6",[[1,"lu-row"]]],["p-6261fb9d",[[1,"lu-select",{"useId":[1025,"use-id"],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"color":[1],"invalid":[4],"name":[1],"ariaLabel":[1,"aria-label"],"disabled":[4],"placeholder":[1],"helpText":[1,"help-text"],"hasFormGroup":[4,"has-form-group"],"value":[1032],"selectedValueName":[1032,"selected-value-name"],"showPlaceholderOption":[4,"show-placeholder-option"],"required":[4],"options":[1040],"valid":[4],"isResetting":[32],"setFocus":[64],"updateValue":[64]}]]],["p-eeb9eac0",[[1,"lu-spinner",{"dataColor":[1,"data-color"],"dataScale":[2,"data-scale"],"dataDuration":[2,"data-duration"],"dataPaused":[4,"data-paused"],"dataHidden":[4,"data-hidden"],"dataMessage":[1,"data-message"]}]]],["p-ed0a4549",[[1,"lu-tab",{"active":[1540],"name":[8],"noSlide":[8,"no-slide"],"isFocused":[32]},[[0,"click","onClick"],[0,"keydown","handleKeyDown"],[18,"luTabFocused","handleLuTabFocused"],[18,"luTabBlurred","handleLuTabBlurred"]]]]],["p-ed4dd407",[[1,"lu-tabs",{"value":[1025],"label":[1],"noSlide":[4,"no-slide"],"tabs":[32],"tabIncrement":[32],"selectionBar":[32],"currentOrderedTabsArray":[32],"pos":[32],"left":[32],"width":[32],"focusedNode":[32],"elementResized":[64]},[[0,"luTabDidLoad","onTabDidLoad"],[0,"luTabDidDisconnect","onTabDidDisconnect"],[0,"luTabSelect","onTabSelect"],[0,"keydown","handleKeyDown"],[0,"tabFocus","onFocus"],[0,"tabBlur","onBlur"]]]]],["p-68ee2631",[[1,"lu-text-area",{"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"invalid":[4],"valid":[4],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"color":[1],"autocapitalize":[1],"autofocus":[4],"clearOnEdit":[1028,"clear-on-edit"],"debounce":[2],"disabled":[4],"maxlength":[2],"minlength":[2],"name":[1],"placeholder":[1],"readonly":[4],"required":[4],"spellcheck":[4],"cols":[2],"rows":[2],"wrap":[1],"autoGrow":[4,"auto-grow"],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"getInputElement":[64],"updateValue":[64]}]]],["p-6fecc226",[[1,"lu-backdrop",{"visible":[4],"tappable":[4],"stopPropagation":[4,"stop-propagation"]},[[2,"touchstart","onTouchStart"],[2,"click","onMouseDown"],[2,"mousedown","onMouseDown"]]]]],["p-c172dc73",[[1,"lu-label",{"color":[1],"labelText":[1,"label-text"],"required":[4],"optional":[4],"forId":[513,"for-id"],"useId":[1025,"use-id"],"invalid":[4],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"useAsteriskAsRequiredIndicator":[4,"use-asterisk-as-required-indicator"]}]]],["p-3bc05ac1",[[1,"lu-button",{"color":[1],"buttonType":[1025,"button-type"],"disabled":[516],"expand":[513],"fill":[1537],"href":[1],"rel":[1],"shape":[513],"size":[513],"strong":[4],"target":[1],"type":[1],"keyFocus":[32]}]]],["p-6dfe8e7d",[[1,"lu-icon",{"color":[1],"mode":[1],"ariaLabel":[1537,"aria-label"],"ios":[1],"md":[1],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[1],"size":[1],"hexColor":[1,"hex-color"],"buttonRole":[4,"button-role"],"svgContent":[32],"isVisible":[32]}]]],["p-dd8a51ba",[[1,"lu-combo-box-selection",{"isEditing":[4,"is-editing"],"selection":[16],"isEmail":[4,"is-email"]}],[1,"lu-input",{"accept":[1],"ariaLabeledByAddition":[1,"aria-labeled-by-addition"],"autocomplete":[1],"autocapitalize":[1],"autocorrect":[1],"autofocus":[4],"ariaAutoComplete":[1,"aria-auto-complete"],"ariaControls":[1,"aria-controls"],"ariaActiveDescendant":[1,"aria-active-descendant"],"clearInput":[4,"clear-input"],"clearOnEdit":[1028,"clear-on-edit"],"capture":[1],"checked":[4],"color":[1],"debounce":[2],"disabled":[4],"form":[1],"hasFormGroup":[4,"has-form-group"],"useId":[1025,"use-id"],"inputmode":[1],"invalid":[4],"list":[1],"max":[8],"min":[8],"minLength":[2,"min-length"],"maxLength":[2,"max-length"],"multiple":[4],"name":[1],"noBorder":[4,"no-border"],"pattern":[1],"placeholder":[1],"prefixIcon":[1,"prefix-icon"],"prefixIconClickable":[4,"prefix-icon-clickable"],"suffixIcon":[1025,"suffix-icon"],"suffixIconClickable":[1028,"suffix-icon-clickable"],"readOnly":[4,"read-only"],"required":[4],"size":[2],"spellcheck":[4],"step":[8],"tabIndexWanted":[2,"tab-index-wanted"],"type":[1],"valid":[4],"value":[1025],"hasFocus":[32],"isResetting":[32],"setFocus":[64],"updateValue":[64]}],[1,"lu-skeleton-text",{"width":[1],"shouldAnimate":[4,"should-animate"]}]]]]'),e));
{
"name": "@lu-development/ux-patterns",
"version": "1.7.0-dev.202003171410.df1186d",
"version": "1.7.0-dev.202003191714.829775f",
"description": "Stencil Component Starter",

@@ -5,0 +5,0 @@ "module": "dist/index.mjs",

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

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

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