@everymatrix/pam-forgot-password 1.68.0 → 1.68.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/checkbox-group-input_14.cjs.entry.js +82 -54
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/pam-forgot-password.cjs.js +1 -1
- package/dist/esm/checkbox-group-input_14.entry.js +82 -54
- package/dist/esm/loader.js +1 -1
- package/dist/esm/pam-forgot-password.js +1 -1
- package/dist/pam-forgot-password/checkbox-group-input_14.entry.js +25 -25
- package/dist/pam-forgot-password/pam-forgot-password.esm.js +1 -1
- package/package.json +1 -1
|
@@ -12650,26 +12650,54 @@ const UiSkeletonStyle0 = uiSkeletonCss;
|
|
|
12650
12650
|
const UiSkeleton = class {
|
|
12651
12651
|
constructor(hostRef) {
|
|
12652
12652
|
index.registerInstance(this, hostRef);
|
|
12653
|
+
this.stylingValue = {
|
|
12654
|
+
width: this.handleStylingProps(this.width),
|
|
12655
|
+
height: this.handleStylingProps(this.height),
|
|
12656
|
+
borderRadius: this.handleStylingProps(this.borderRadius),
|
|
12657
|
+
marginBottom: this.handleStylingProps(this.marginBottom),
|
|
12658
|
+
marginTop: this.handleStylingProps(this.marginTop),
|
|
12659
|
+
marginLeft: this.handleStylingProps(this.marginLeft),
|
|
12660
|
+
marginRight: this.handleStylingProps(this.marginRight)
|
|
12661
|
+
};
|
|
12653
12662
|
this.structure = undefined;
|
|
12654
|
-
this.width =
|
|
12655
|
-
this.height =
|
|
12656
|
-
this.borderRadius =
|
|
12657
|
-
this.marginBottom =
|
|
12658
|
-
this.marginTop =
|
|
12659
|
-
this.marginLeft =
|
|
12660
|
-
this.marginRight =
|
|
12663
|
+
this.width = 'unset';
|
|
12664
|
+
this.height = 'unset';
|
|
12665
|
+
this.borderRadius = 'unset';
|
|
12666
|
+
this.marginBottom = 'unset';
|
|
12667
|
+
this.marginTop = 'unset';
|
|
12668
|
+
this.marginLeft = 'unset';
|
|
12669
|
+
this.marginRight = 'unset';
|
|
12661
12670
|
this.animation = true;
|
|
12662
|
-
this.rows =
|
|
12663
|
-
this.size =
|
|
12664
|
-
this.color =
|
|
12665
|
-
this.primaryColor =
|
|
12666
|
-
this.secondaryColor =
|
|
12671
|
+
this.rows = 0;
|
|
12672
|
+
this.size = '100%';
|
|
12673
|
+
this.color = '#c2c2c2';
|
|
12674
|
+
this.primaryColor = '#c2c2c2';
|
|
12675
|
+
this.secondaryColor = '#ffffff';
|
|
12667
12676
|
}
|
|
12668
12677
|
handleStructureChange(newValue, oldValue) {
|
|
12669
12678
|
if (oldValue !== newValue) {
|
|
12670
12679
|
this.handleStructure(newValue);
|
|
12671
12680
|
}
|
|
12672
12681
|
}
|
|
12682
|
+
handleStylingProps(value) {
|
|
12683
|
+
switch (typeof value) {
|
|
12684
|
+
case 'number':
|
|
12685
|
+
return value === 0 ? 0 : `${value}px`;
|
|
12686
|
+
case 'undefined':
|
|
12687
|
+
return 'unset';
|
|
12688
|
+
case 'string':
|
|
12689
|
+
if (['auto', 'unset', 'none', 'inherit', 'initial'].includes(value) ||
|
|
12690
|
+
value.endsWith('px') ||
|
|
12691
|
+
value.endsWith('%')) {
|
|
12692
|
+
return value;
|
|
12693
|
+
}
|
|
12694
|
+
else {
|
|
12695
|
+
return 'unset';
|
|
12696
|
+
}
|
|
12697
|
+
default:
|
|
12698
|
+
return 'unset';
|
|
12699
|
+
}
|
|
12700
|
+
}
|
|
12673
12701
|
handleStructure(structure) {
|
|
12674
12702
|
switch (structure) {
|
|
12675
12703
|
case 'logo':
|
|
@@ -12689,22 +12717,22 @@ const UiSkeleton = class {
|
|
|
12689
12717
|
}
|
|
12690
12718
|
}
|
|
12691
12719
|
renderLogo() {
|
|
12692
|
-
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class:
|
|
12720
|
+
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class: 'Logo ' + (this.animation ? 'Skeleton' : '') })));
|
|
12693
12721
|
}
|
|
12694
12722
|
renderImage() {
|
|
12695
|
-
return
|
|
12723
|
+
return index.h("div", { class: 'Image ' + (this.animation ? 'Skeleton' : '') });
|
|
12696
12724
|
}
|
|
12697
12725
|
renderTitle() {
|
|
12698
|
-
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class:
|
|
12726
|
+
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class: 'Title ' + (this.animation ? 'Skeleton' : '') })));
|
|
12699
12727
|
}
|
|
12700
12728
|
renderText() {
|
|
12701
|
-
return (index.h("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((_, index$1) => (index.h("div", { key: index$1, class:
|
|
12729
|
+
return (index.h("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((_, index$1) => (index.h("div", { key: index$1, class: 'Text ' + (this.animation ? 'Skeleton' : '') })))));
|
|
12702
12730
|
}
|
|
12703
12731
|
renderRectangle() {
|
|
12704
|
-
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class:
|
|
12732
|
+
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class: 'Rectangle ' + (this.animation ? 'Skeleton' : '') })));
|
|
12705
12733
|
}
|
|
12706
12734
|
renderCircle() {
|
|
12707
|
-
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class:
|
|
12735
|
+
return (index.h("div", { class: "SkeletonContainer" }, index.h("div", { class: 'Circle ' + (this.animation ? 'Skeleton' : '') })));
|
|
12708
12736
|
}
|
|
12709
12737
|
render() {
|
|
12710
12738
|
let styleBlock = '';
|
|
@@ -12712,13 +12740,13 @@ const UiSkeleton = class {
|
|
|
12712
12740
|
case 'logo':
|
|
12713
12741
|
styleBlock = `
|
|
12714
12742
|
:host {
|
|
12715
|
-
--emw-skeleton-logo-width: ${this.width};
|
|
12716
|
-
--emw-skeleton-logo-height: ${this.height};
|
|
12717
|
-
--emw-skeleton-logo-border-radius: ${this.borderRadius}
|
|
12718
|
-
--emw-skeleton-logo-margin-bottom: ${this.marginBottom}
|
|
12719
|
-
--emw-skeleton-logo-margin-top: ${this.marginTop}
|
|
12720
|
-
--emw-skeleton-logo-margin-left: ${this.marginLeft}
|
|
12721
|
-
--emw-skeleton-logo-margin-right: ${this.marginRight}
|
|
12743
|
+
--emw-skeleton-logo-width: ${this.stylingValue.width};
|
|
12744
|
+
--emw-skeleton-logo-height: ${this.stylingValue.height};
|
|
12745
|
+
--emw-skeleton-logo-border-radius: ${this.stylingValue.borderRadius};
|
|
12746
|
+
--emw-skeleton-logo-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12747
|
+
--emw-skeleton-logo-margin-top: ${this.stylingValue.marginTop};
|
|
12748
|
+
--emw-skeleton-logo-margin-left: ${this.stylingValue.marginLeft};
|
|
12749
|
+
--emw-skeleton-logo-margin-right: ${this.stylingValue.marginRight};
|
|
12722
12750
|
--emw-skeleton-logo-background: ${this.color};
|
|
12723
12751
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12724
12752
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12728,13 +12756,13 @@ const UiSkeleton = class {
|
|
|
12728
12756
|
case 'image':
|
|
12729
12757
|
styleBlock = `
|
|
12730
12758
|
:host {
|
|
12731
|
-
--emw-skeleton-image-width: ${this.width};
|
|
12732
|
-
--emw-skeleton-image-height: ${this.height};
|
|
12733
|
-
--emw-skeleton-image-border-radius: ${this.borderRadius}
|
|
12734
|
-
--emw-skeleton-image-margin-bottom: ${this.marginBottom}
|
|
12735
|
-
--emw-skeleton-image-margin-top: ${this.marginTop}
|
|
12736
|
-
--emw-skeleton-image-margin-left: ${this.marginLeft}
|
|
12737
|
-
--emw-skeleton-image-margin-right: ${this.marginRight}
|
|
12759
|
+
--emw-skeleton-image-width: ${this.stylingValue.width};
|
|
12760
|
+
--emw-skeleton-image-height: ${this.stylingValue.height};
|
|
12761
|
+
--emw-skeleton-image-border-radius: ${this.stylingValue.borderRadius};
|
|
12762
|
+
--emw-skeleton-image-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12763
|
+
--emw-skeleton-image-margin-top: ${this.stylingValue.marginTop};
|
|
12764
|
+
--emw-skeleton-image-margin-left: ${this.stylingValue.marginLeft};
|
|
12765
|
+
--emw-skeleton-image-margin-right: ${this.stylingValue.marginRight};
|
|
12738
12766
|
--emw-skeleton-image-background: ${this.color};
|
|
12739
12767
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12740
12768
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12744,13 +12772,13 @@ const UiSkeleton = class {
|
|
|
12744
12772
|
case 'title':
|
|
12745
12773
|
styleBlock = `
|
|
12746
12774
|
:host {
|
|
12747
|
-
--emw-skeleton-title-width: ${this.width};
|
|
12748
|
-
--emw-skeleton-title-height: ${this.height};
|
|
12749
|
-
--emw-skeleton-title-border-radius: ${this.borderRadius}
|
|
12750
|
-
--emw-skeleton-title-margin-bottom: ${this.marginBottom}
|
|
12751
|
-
--emw-skeleton-title-margin-top: ${this.marginTop}
|
|
12752
|
-
--emw-skeleton-title-margin-left: ${this.marginLeft}
|
|
12753
|
-
--emw-skeleton-title-margin-right: ${this.marginRight}
|
|
12775
|
+
--emw-skeleton-title-width: ${this.stylingValue.width};
|
|
12776
|
+
--emw-skeleton-title-height: ${this.stylingValue.height};
|
|
12777
|
+
--emw-skeleton-title-border-radius: ${this.stylingValue.borderRadius};
|
|
12778
|
+
--emw-skeleton-title-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12779
|
+
--emw-skeleton-title-margin-top: ${this.stylingValue.marginTop};
|
|
12780
|
+
--emw-skeleton-title-margin-left: ${this.stylingValue.marginLeft};
|
|
12781
|
+
--emw-skeleton-title-margin-right: ${this.stylingValue.marginRight};
|
|
12754
12782
|
--emw-skeleton-title-background: ${this.color};
|
|
12755
12783
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12756
12784
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12760,13 +12788,13 @@ const UiSkeleton = class {
|
|
|
12760
12788
|
case 'text':
|
|
12761
12789
|
styleBlock = `
|
|
12762
12790
|
:host {
|
|
12763
|
-
--emw-skeleton-text-width: ${this.width};
|
|
12764
|
-
--emw-skeleton-text-height: ${this.height};
|
|
12765
|
-
--emw-skeleton-text-border-radius: ${this.borderRadius}
|
|
12766
|
-
--emw-skeleton-text-margin-bottom: ${this.marginBottom}
|
|
12767
|
-
--emw-skeleton-text-margin-top: ${this.marginTop}
|
|
12768
|
-
--emw-skeleton-text-margin-left: ${this.marginLeft}
|
|
12769
|
-
--emw-skeleton-text-margin-right: ${this.marginRight}
|
|
12791
|
+
--emw-skeleton-text-width: ${this.stylingValue.width};
|
|
12792
|
+
--emw-skeleton-text-height: ${this.stylingValue.height};
|
|
12793
|
+
--emw-skeleton-text-border-radius: ${this.stylingValue.borderRadius};
|
|
12794
|
+
--emw-skeleton-text-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12795
|
+
--emw-skeleton-text-margin-top: ${this.stylingValue.marginTop};
|
|
12796
|
+
--emw-skeleton-text-margin-left: ${this.stylingValue.marginLeft};
|
|
12797
|
+
--emw-skeleton-text-margin-right: ${this.stylingValue.marginRight};
|
|
12770
12798
|
--emw-skeleton-text-background: ${this.color};
|
|
12771
12799
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12772
12800
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12776,13 +12804,13 @@ const UiSkeleton = class {
|
|
|
12776
12804
|
case 'rectangle':
|
|
12777
12805
|
styleBlock = `
|
|
12778
12806
|
:host {
|
|
12779
|
-
--emw-skeleton-rectangle-width: ${this.width};
|
|
12780
|
-
--emw-skeleton-rectangle-height: ${this.height};
|
|
12781
|
-
--emw-skeleton-rectangle-border-radius: ${this.borderRadius}
|
|
12782
|
-
--emw-skeleton-rectangle-margin-bottom: ${this.marginBottom}
|
|
12783
|
-
--emw-skeleton-rectangle-margin-top: ${this.marginTop}
|
|
12784
|
-
--emw-skeleton-rectangle-margin-left: ${this.marginLeft}
|
|
12785
|
-
--emw-skeleton-rectangle-margin-right: ${this.marginRight}
|
|
12807
|
+
--emw-skeleton-rectangle-width: ${this.stylingValue.width};
|
|
12808
|
+
--emw-skeleton-rectangle-height: ${this.stylingValue.height};
|
|
12809
|
+
--emw-skeleton-rectangle-border-radius: ${this.stylingValue.borderRadius};
|
|
12810
|
+
--emw-skeleton-rectangle-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12811
|
+
--emw-skeleton-rectangle-margin-top: ${this.stylingValue.marginTop};
|
|
12812
|
+
--emw-skeleton-rectangle-margin-left: ${this.stylingValue.marginLeft};
|
|
12813
|
+
--emw-skeleton-rectangle-margin-right: ${this.stylingValue.marginRight};
|
|
12786
12814
|
--emw-skeleton-rectangle-background: ${this.color};
|
|
12787
12815
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12788
12816
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12802,7 +12830,7 @@ const UiSkeleton = class {
|
|
|
12802
12830
|
default:
|
|
12803
12831
|
styleBlock = '';
|
|
12804
12832
|
}
|
|
12805
|
-
return (index.h(index.Host, { key: '
|
|
12833
|
+
return (index.h(index.Host, { key: '5c185b76c438d20d4ad88bc48d94ff5628410bb7' }, index.h("style", { key: 'de95e60a5955d5b2af83710423fe40329c187f7e' }, styleBlock), this.handleStructure(this.structure)));
|
|
12806
12834
|
}
|
|
12807
12835
|
static get watchers() { return {
|
|
12808
12836
|
"structure": ["handleStructureChange"]
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -8,7 +8,7 @@ const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|
|
9
9
|
if (typeof window === 'undefined') return undefined;
|
|
10
10
|
await appGlobals.globalScripts();
|
|
11
|
-
return index.bootstrapLazy([["checkbox-group-input_14.cjs",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[
|
|
11
|
+
return index.bootstrapLazy([["checkbox-group-input_14.cjs",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1],"color":[1],"primaryColor":[1,"primary-color"],"secondaryColor":[1,"secondary-color"]},null,{"structure":["handleStructureChange"]}],[1,"general-input",{"type":[513],"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"validation":[16],"options":[520],"language":[513],"autofilled":[516],"tooltip":[513],"defaultValue":[520,"default-value"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[520,"client-styling"],"dateFormat":[513,"date-format"],"translationUrl":[513,"translation-url"],"emitOnClick":[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"options":[16],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"showFields":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"]}],[1,"checkbox-group-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"selectedValues":[32],"showCheckboxes":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"selectedValues":["setValue"],"emitValue":["emitValueHandler"]}],[1,"checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"date-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"dateFormat":[513,"date-format"],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"email-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"number-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"password-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32],"passwordComplexity":[32],"showPopup":[32],"value":[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"value":["valueChanged"],"emitValue":["emitValueHandler"]}],[1,"radio-input",{"name":[513],"displayName":[513,"display-name"],"optionsGroup":[16],"validation":[16],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"select-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"tel-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"showLabels":[516,"show-labels"],"action":[513],"validation":[16],"defaultValue":[520,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"text-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"checkValidity":[516,"check-validity"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"],[16,"validationChange","handleValidationChange"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}]]]], options);
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
exports.setNonce = index.setNonce;
|
|
@@ -19,7 +19,7 @@ var patchBrowser = () => {
|
|
|
19
19
|
|
|
20
20
|
patchBrowser().then(async (options) => {
|
|
21
21
|
await appGlobals.globalScripts();
|
|
22
|
-
return index.bootstrapLazy([["checkbox-group-input_14.cjs",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[
|
|
22
|
+
return index.bootstrapLazy([["checkbox-group-input_14.cjs",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1],"color":[1],"primaryColor":[1,"primary-color"],"secondaryColor":[1,"secondary-color"]},null,{"structure":["handleStructureChange"]}],[1,"general-input",{"type":[513],"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"validation":[16],"options":[520],"language":[513],"autofilled":[516],"tooltip":[513],"defaultValue":[520,"default-value"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[520,"client-styling"],"dateFormat":[513,"date-format"],"translationUrl":[513,"translation-url"],"emitOnClick":[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"options":[16],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"showFields":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"]}],[1,"checkbox-group-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"selectedValues":[32],"showCheckboxes":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"selectedValues":["setValue"],"emitValue":["emitValueHandler"]}],[1,"checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"date-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"dateFormat":[513,"date-format"],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"email-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"number-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"password-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32],"passwordComplexity":[32],"showPopup":[32],"value":[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"value":["valueChanged"],"emitValue":["emitValueHandler"]}],[1,"radio-input",{"name":[513],"displayName":[513,"display-name"],"optionsGroup":[16],"validation":[16],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"select-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"tel-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"showLabels":[516,"show-labels"],"action":[513],"validation":[16],"defaultValue":[520,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"text-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"checkValidity":[516,"check-validity"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"],[16,"validationChange","handleValidationChange"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}]]]], options);
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
exports.setNonce = index.setNonce;
|
|
@@ -12646,26 +12646,54 @@ const UiSkeletonStyle0 = uiSkeletonCss;
|
|
|
12646
12646
|
const UiSkeleton = class {
|
|
12647
12647
|
constructor(hostRef) {
|
|
12648
12648
|
registerInstance(this, hostRef);
|
|
12649
|
+
this.stylingValue = {
|
|
12650
|
+
width: this.handleStylingProps(this.width),
|
|
12651
|
+
height: this.handleStylingProps(this.height),
|
|
12652
|
+
borderRadius: this.handleStylingProps(this.borderRadius),
|
|
12653
|
+
marginBottom: this.handleStylingProps(this.marginBottom),
|
|
12654
|
+
marginTop: this.handleStylingProps(this.marginTop),
|
|
12655
|
+
marginLeft: this.handleStylingProps(this.marginLeft),
|
|
12656
|
+
marginRight: this.handleStylingProps(this.marginRight)
|
|
12657
|
+
};
|
|
12649
12658
|
this.structure = undefined;
|
|
12650
|
-
this.width =
|
|
12651
|
-
this.height =
|
|
12652
|
-
this.borderRadius =
|
|
12653
|
-
this.marginBottom =
|
|
12654
|
-
this.marginTop =
|
|
12655
|
-
this.marginLeft =
|
|
12656
|
-
this.marginRight =
|
|
12659
|
+
this.width = 'unset';
|
|
12660
|
+
this.height = 'unset';
|
|
12661
|
+
this.borderRadius = 'unset';
|
|
12662
|
+
this.marginBottom = 'unset';
|
|
12663
|
+
this.marginTop = 'unset';
|
|
12664
|
+
this.marginLeft = 'unset';
|
|
12665
|
+
this.marginRight = 'unset';
|
|
12657
12666
|
this.animation = true;
|
|
12658
|
-
this.rows =
|
|
12659
|
-
this.size =
|
|
12660
|
-
this.color =
|
|
12661
|
-
this.primaryColor =
|
|
12662
|
-
this.secondaryColor =
|
|
12667
|
+
this.rows = 0;
|
|
12668
|
+
this.size = '100%';
|
|
12669
|
+
this.color = '#c2c2c2';
|
|
12670
|
+
this.primaryColor = '#c2c2c2';
|
|
12671
|
+
this.secondaryColor = '#ffffff';
|
|
12663
12672
|
}
|
|
12664
12673
|
handleStructureChange(newValue, oldValue) {
|
|
12665
12674
|
if (oldValue !== newValue) {
|
|
12666
12675
|
this.handleStructure(newValue);
|
|
12667
12676
|
}
|
|
12668
12677
|
}
|
|
12678
|
+
handleStylingProps(value) {
|
|
12679
|
+
switch (typeof value) {
|
|
12680
|
+
case 'number':
|
|
12681
|
+
return value === 0 ? 0 : `${value}px`;
|
|
12682
|
+
case 'undefined':
|
|
12683
|
+
return 'unset';
|
|
12684
|
+
case 'string':
|
|
12685
|
+
if (['auto', 'unset', 'none', 'inherit', 'initial'].includes(value) ||
|
|
12686
|
+
value.endsWith('px') ||
|
|
12687
|
+
value.endsWith('%')) {
|
|
12688
|
+
return value;
|
|
12689
|
+
}
|
|
12690
|
+
else {
|
|
12691
|
+
return 'unset';
|
|
12692
|
+
}
|
|
12693
|
+
default:
|
|
12694
|
+
return 'unset';
|
|
12695
|
+
}
|
|
12696
|
+
}
|
|
12669
12697
|
handleStructure(structure) {
|
|
12670
12698
|
switch (structure) {
|
|
12671
12699
|
case 'logo':
|
|
@@ -12685,22 +12713,22 @@ const UiSkeleton = class {
|
|
|
12685
12713
|
}
|
|
12686
12714
|
}
|
|
12687
12715
|
renderLogo() {
|
|
12688
|
-
return (h("div", { class: "SkeletonContainer" }, h("div", { class:
|
|
12716
|
+
return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'Logo ' + (this.animation ? 'Skeleton' : '') })));
|
|
12689
12717
|
}
|
|
12690
12718
|
renderImage() {
|
|
12691
|
-
return
|
|
12719
|
+
return h("div", { class: 'Image ' + (this.animation ? 'Skeleton' : '') });
|
|
12692
12720
|
}
|
|
12693
12721
|
renderTitle() {
|
|
12694
|
-
return (h("div", { class: "SkeletonContainer" }, h("div", { class:
|
|
12722
|
+
return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'Title ' + (this.animation ? 'Skeleton' : '') })));
|
|
12695
12723
|
}
|
|
12696
12724
|
renderText() {
|
|
12697
|
-
return (h("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((_, index) => (h("div", { key: index, class:
|
|
12725
|
+
return (h("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((_, index) => (h("div", { key: index, class: 'Text ' + (this.animation ? 'Skeleton' : '') })))));
|
|
12698
12726
|
}
|
|
12699
12727
|
renderRectangle() {
|
|
12700
|
-
return (h("div", { class: "SkeletonContainer" }, h("div", { class:
|
|
12728
|
+
return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'Rectangle ' + (this.animation ? 'Skeleton' : '') })));
|
|
12701
12729
|
}
|
|
12702
12730
|
renderCircle() {
|
|
12703
|
-
return (h("div", { class: "SkeletonContainer" }, h("div", { class:
|
|
12731
|
+
return (h("div", { class: "SkeletonContainer" }, h("div", { class: 'Circle ' + (this.animation ? 'Skeleton' : '') })));
|
|
12704
12732
|
}
|
|
12705
12733
|
render() {
|
|
12706
12734
|
let styleBlock = '';
|
|
@@ -12708,13 +12736,13 @@ const UiSkeleton = class {
|
|
|
12708
12736
|
case 'logo':
|
|
12709
12737
|
styleBlock = `
|
|
12710
12738
|
:host {
|
|
12711
|
-
--emw-skeleton-logo-width: ${this.width};
|
|
12712
|
-
--emw-skeleton-logo-height: ${this.height};
|
|
12713
|
-
--emw-skeleton-logo-border-radius: ${this.borderRadius}
|
|
12714
|
-
--emw-skeleton-logo-margin-bottom: ${this.marginBottom}
|
|
12715
|
-
--emw-skeleton-logo-margin-top: ${this.marginTop}
|
|
12716
|
-
--emw-skeleton-logo-margin-left: ${this.marginLeft}
|
|
12717
|
-
--emw-skeleton-logo-margin-right: ${this.marginRight}
|
|
12739
|
+
--emw-skeleton-logo-width: ${this.stylingValue.width};
|
|
12740
|
+
--emw-skeleton-logo-height: ${this.stylingValue.height};
|
|
12741
|
+
--emw-skeleton-logo-border-radius: ${this.stylingValue.borderRadius};
|
|
12742
|
+
--emw-skeleton-logo-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12743
|
+
--emw-skeleton-logo-margin-top: ${this.stylingValue.marginTop};
|
|
12744
|
+
--emw-skeleton-logo-margin-left: ${this.stylingValue.marginLeft};
|
|
12745
|
+
--emw-skeleton-logo-margin-right: ${this.stylingValue.marginRight};
|
|
12718
12746
|
--emw-skeleton-logo-background: ${this.color};
|
|
12719
12747
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12720
12748
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12724,13 +12752,13 @@ const UiSkeleton = class {
|
|
|
12724
12752
|
case 'image':
|
|
12725
12753
|
styleBlock = `
|
|
12726
12754
|
:host {
|
|
12727
|
-
--emw-skeleton-image-width: ${this.width};
|
|
12728
|
-
--emw-skeleton-image-height: ${this.height};
|
|
12729
|
-
--emw-skeleton-image-border-radius: ${this.borderRadius}
|
|
12730
|
-
--emw-skeleton-image-margin-bottom: ${this.marginBottom}
|
|
12731
|
-
--emw-skeleton-image-margin-top: ${this.marginTop}
|
|
12732
|
-
--emw-skeleton-image-margin-left: ${this.marginLeft}
|
|
12733
|
-
--emw-skeleton-image-margin-right: ${this.marginRight}
|
|
12755
|
+
--emw-skeleton-image-width: ${this.stylingValue.width};
|
|
12756
|
+
--emw-skeleton-image-height: ${this.stylingValue.height};
|
|
12757
|
+
--emw-skeleton-image-border-radius: ${this.stylingValue.borderRadius};
|
|
12758
|
+
--emw-skeleton-image-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12759
|
+
--emw-skeleton-image-margin-top: ${this.stylingValue.marginTop};
|
|
12760
|
+
--emw-skeleton-image-margin-left: ${this.stylingValue.marginLeft};
|
|
12761
|
+
--emw-skeleton-image-margin-right: ${this.stylingValue.marginRight};
|
|
12734
12762
|
--emw-skeleton-image-background: ${this.color};
|
|
12735
12763
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12736
12764
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12740,13 +12768,13 @@ const UiSkeleton = class {
|
|
|
12740
12768
|
case 'title':
|
|
12741
12769
|
styleBlock = `
|
|
12742
12770
|
:host {
|
|
12743
|
-
--emw-skeleton-title-width: ${this.width};
|
|
12744
|
-
--emw-skeleton-title-height: ${this.height};
|
|
12745
|
-
--emw-skeleton-title-border-radius: ${this.borderRadius}
|
|
12746
|
-
--emw-skeleton-title-margin-bottom: ${this.marginBottom}
|
|
12747
|
-
--emw-skeleton-title-margin-top: ${this.marginTop}
|
|
12748
|
-
--emw-skeleton-title-margin-left: ${this.marginLeft}
|
|
12749
|
-
--emw-skeleton-title-margin-right: ${this.marginRight}
|
|
12771
|
+
--emw-skeleton-title-width: ${this.stylingValue.width};
|
|
12772
|
+
--emw-skeleton-title-height: ${this.stylingValue.height};
|
|
12773
|
+
--emw-skeleton-title-border-radius: ${this.stylingValue.borderRadius};
|
|
12774
|
+
--emw-skeleton-title-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12775
|
+
--emw-skeleton-title-margin-top: ${this.stylingValue.marginTop};
|
|
12776
|
+
--emw-skeleton-title-margin-left: ${this.stylingValue.marginLeft};
|
|
12777
|
+
--emw-skeleton-title-margin-right: ${this.stylingValue.marginRight};
|
|
12750
12778
|
--emw-skeleton-title-background: ${this.color};
|
|
12751
12779
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12752
12780
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12756,13 +12784,13 @@ const UiSkeleton = class {
|
|
|
12756
12784
|
case 'text':
|
|
12757
12785
|
styleBlock = `
|
|
12758
12786
|
:host {
|
|
12759
|
-
--emw-skeleton-text-width: ${this.width};
|
|
12760
|
-
--emw-skeleton-text-height: ${this.height};
|
|
12761
|
-
--emw-skeleton-text-border-radius: ${this.borderRadius}
|
|
12762
|
-
--emw-skeleton-text-margin-bottom: ${this.marginBottom}
|
|
12763
|
-
--emw-skeleton-text-margin-top: ${this.marginTop}
|
|
12764
|
-
--emw-skeleton-text-margin-left: ${this.marginLeft}
|
|
12765
|
-
--emw-skeleton-text-margin-right: ${this.marginRight}
|
|
12787
|
+
--emw-skeleton-text-width: ${this.stylingValue.width};
|
|
12788
|
+
--emw-skeleton-text-height: ${this.stylingValue.height};
|
|
12789
|
+
--emw-skeleton-text-border-radius: ${this.stylingValue.borderRadius};
|
|
12790
|
+
--emw-skeleton-text-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12791
|
+
--emw-skeleton-text-margin-top: ${this.stylingValue.marginTop};
|
|
12792
|
+
--emw-skeleton-text-margin-left: ${this.stylingValue.marginLeft};
|
|
12793
|
+
--emw-skeleton-text-margin-right: ${this.stylingValue.marginRight};
|
|
12766
12794
|
--emw-skeleton-text-background: ${this.color};
|
|
12767
12795
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12768
12796
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12772,13 +12800,13 @@ const UiSkeleton = class {
|
|
|
12772
12800
|
case 'rectangle':
|
|
12773
12801
|
styleBlock = `
|
|
12774
12802
|
:host {
|
|
12775
|
-
--emw-skeleton-rectangle-width: ${this.width};
|
|
12776
|
-
--emw-skeleton-rectangle-height: ${this.height};
|
|
12777
|
-
--emw-skeleton-rectangle-border-radius: ${this.borderRadius}
|
|
12778
|
-
--emw-skeleton-rectangle-margin-bottom: ${this.marginBottom}
|
|
12779
|
-
--emw-skeleton-rectangle-margin-top: ${this.marginTop}
|
|
12780
|
-
--emw-skeleton-rectangle-margin-left: ${this.marginLeft}
|
|
12781
|
-
--emw-skeleton-rectangle-margin-right: ${this.marginRight}
|
|
12803
|
+
--emw-skeleton-rectangle-width: ${this.stylingValue.width};
|
|
12804
|
+
--emw-skeleton-rectangle-height: ${this.stylingValue.height};
|
|
12805
|
+
--emw-skeleton-rectangle-border-radius: ${this.stylingValue.borderRadius};
|
|
12806
|
+
--emw-skeleton-rectangle-margin-bottom: ${this.stylingValue.marginBottom};
|
|
12807
|
+
--emw-skeleton-rectangle-margin-top: ${this.stylingValue.marginTop};
|
|
12808
|
+
--emw-skeleton-rectangle-margin-left: ${this.stylingValue.marginLeft};
|
|
12809
|
+
--emw-skeleton-rectangle-margin-right: ${this.stylingValue.marginRight};
|
|
12782
12810
|
--emw-skeleton-rectangle-background: ${this.color};
|
|
12783
12811
|
--emw-skeleton-primary-color: ${this.primaryColor};
|
|
12784
12812
|
--emw-skeleton-secondary-color: ${this.secondaryColor};
|
|
@@ -12798,7 +12826,7 @@ const UiSkeleton = class {
|
|
|
12798
12826
|
default:
|
|
12799
12827
|
styleBlock = '';
|
|
12800
12828
|
}
|
|
12801
|
-
return (h(Host, { key: '
|
|
12829
|
+
return (h(Host, { key: '5c185b76c438d20d4ad88bc48d94ff5628410bb7' }, h("style", { key: 'de95e60a5955d5b2af83710423fe40329c187f7e' }, styleBlock), this.handleStructure(this.structure)));
|
|
12802
12830
|
}
|
|
12803
12831
|
static get watchers() { return {
|
|
12804
12832
|
"structure": ["handleStructureChange"]
|
package/dist/esm/loader.js
CHANGED
|
@@ -5,7 +5,7 @@ import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
6
6
|
if (typeof window === 'undefined') return undefined;
|
|
7
7
|
await globalScripts();
|
|
8
|
-
return bootstrapLazy([["checkbox-group-input_14",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[
|
|
8
|
+
return bootstrapLazy([["checkbox-group-input_14",[[1,"pam-forgot-password",{"endpoint":[513],"language":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[1,"mb-source"],"translationUrl":[513,"translation-url"],"contactType":[32],"isBtnSubmitEnabled":[32],"skeletonLoading":[32],"hasError":[32],"isMobile":[32],"captchaData":[32],"errorMessage":[32]},[[0,"sendValidityState","sendValidityStateHandler"],[0,"sendInputValue","sendInputValueHandler"]],{"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}],[0,"ui-skeleton",{"structure":[1],"width":[1],"height":[1],"borderRadius":[8,"border-radius"],"marginBottom":[8,"margin-bottom"],"marginTop":[8,"margin-top"],"marginLeft":[8,"margin-left"],"marginRight":[8,"margin-right"],"animation":[4],"rows":[2],"size":[1],"color":[1],"primaryColor":[1,"primary-color"],"secondaryColor":[1,"secondary-color"]},null,{"structure":["handleStructureChange"]}],[1,"general-input",{"type":[513],"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"validation":[16],"options":[520],"language":[513],"autofilled":[516],"tooltip":[513],"defaultValue":[520,"default-value"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[520,"client-styling"],"dateFormat":[513,"date-format"],"translationUrl":[513,"translation-url"],"emitOnClick":[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"options":[16],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"showFields":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"]}],[1,"checkbox-group-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"selectedValues":[32],"showCheckboxes":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"selectedValues":["setValue"],"emitValue":["emitValueHandler"]}],[1,"checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"date-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"dateFormat":[513,"date-format"],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"email-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"number-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"password-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"hidePasswordComplexity":[516,"hide-password-complexity"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32],"passwordComplexity":[32],"showPopup":[32],"value":[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"value":["valueChanged"],"emitValue":["emitValueHandler"]}],[1,"radio-input",{"name":[513],"displayName":[513,"display-name"],"optionsGroup":[16],"validation":[16],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"select-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"tel-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"showLabels":[516,"show-labels"],"action":[513],"validation":[16],"defaultValue":[520,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"text-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"checkValidity":[516,"check-validity"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"],[16,"validationChange","handleValidationChange"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}]]]], options);
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
export { defineCustomElements };
|