@everymatrix/general-input 1.53.0 → 1.53.10
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_10.cjs.entry.js +1707 -584
- package/dist/cjs/general-input.cjs.entry.js +17 -18
- package/dist/cjs/general-input.cjs.js +2 -2
- package/dist/cjs/{index-01420a64.js → index-1277658a.js} +171 -76
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/toggle-checkbox-input.cjs.entry.js +12 -16
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/checkbox-group-input/checkbox-group-input.js +33 -17
- package/dist/collection/components/checkbox-input/checkbox-input.js +29 -14
- package/dist/collection/components/date-input/date-input.js +35 -17
- package/dist/collection/components/email-input/email-input.js +29 -16
- package/dist/collection/components/general-input/general-input.js +51 -18
- package/dist/collection/components/number-input/number-input.js +27 -15
- package/dist/collection/components/password-input/password-input.js +34 -19
- package/dist/collection/components/radio-input/radio-input.js +24 -14
- package/dist/collection/components/select-input/select-input.js +39 -17
- package/dist/collection/components/tel-input/tel-input.js +31 -17
- package/dist/collection/components/text-input/text-input.js +36 -17
- package/dist/collection/components/toggle-checkbox-input/toggle-checkbox-input.js +33 -17
- package/dist/esm/checkbox-group-input_10.entry.js +1742 -619
- package/dist/esm/general-input.entry.js +17 -18
- package/dist/esm/general-input.js +3 -3
- package/dist/esm/{index-542cff81.js → index-b1fc8a5f.js} +171 -76
- package/dist/esm/loader.js +2 -2
- package/dist/esm/toggle-checkbox-input.entry.js +12 -16
- package/dist/general-input/general-input.esm.js +1 -1
- package/dist/general-input/p-09c73744.js +2 -0
- package/dist/general-input/p-1922ef4e.entry.js +1 -0
- package/dist/general-input/{p-cc4fcb3f.entry.js → p-5b3e1098.entry.js} +1912 -926
- package/dist/general-input/p-ab0375f4.entry.js +1 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.d.ts +2 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.dev.d.ts +2 -0
- package/package.json +1 -1
- package/dist/general-input/p-3cab3b95.entry.js +0 -1
- package/dist/general-input/p-3ce1e382.js +0 -2
- package/dist/general-input/p-e5532cb1.entry.js +0 -1
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.d.ts +0 -2
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.dev.d.ts +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host } from './index-b1fc8a5f.js';
|
|
2
2
|
import { g as getTranslations } from './locale.utils-0883d9a6.js';
|
|
3
3
|
|
|
4
4
|
const generalInputCss = ":host{display:block;height:100%}";
|
|
@@ -7,29 +7,28 @@ const GeneralInputStyle0 = generalInputCss;
|
|
|
7
7
|
const GeneralInput = class {
|
|
8
8
|
constructor(hostRef) {
|
|
9
9
|
registerInstance(this, hostRef);
|
|
10
|
+
/**
|
|
11
|
+
* Type the general-input should take. Can take the default HTML input values.
|
|
12
|
+
*/
|
|
13
|
+
this.type = 'text';
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via inline style
|
|
16
|
+
*/
|
|
17
|
+
this.clientStyling = '';
|
|
18
|
+
/**
|
|
19
|
+
* Translations via URL
|
|
20
|
+
*/
|
|
21
|
+
this.translationUrl = '';
|
|
22
|
+
/**
|
|
23
|
+
* Emit event on click
|
|
24
|
+
*/
|
|
25
|
+
this.emitOnClick = false;
|
|
10
26
|
this.handleClick = (event) => {
|
|
11
27
|
if (this.emitOnClick) {
|
|
12
28
|
event.stopPropagation();
|
|
13
29
|
window.postMessage({ type: `registration${this.name}Clicked` }, window.location.href);
|
|
14
30
|
}
|
|
15
31
|
};
|
|
16
|
-
this.type = 'text';
|
|
17
|
-
this.name = undefined;
|
|
18
|
-
this.displayName = undefined;
|
|
19
|
-
this.placeholder = undefined;
|
|
20
|
-
this.action = undefined;
|
|
21
|
-
this.validation = undefined;
|
|
22
|
-
this.options = undefined;
|
|
23
|
-
this.language = undefined;
|
|
24
|
-
this.autofilled = undefined;
|
|
25
|
-
this.tooltip = undefined;
|
|
26
|
-
this.defaultValue = undefined;
|
|
27
|
-
this.emitValue = undefined;
|
|
28
|
-
this.isDuplicateInput = undefined;
|
|
29
|
-
this.clientStyling = '';
|
|
30
|
-
this.dateFormat = undefined;
|
|
31
|
-
this.translationUrl = '';
|
|
32
|
-
this.emitOnClick = false;
|
|
33
32
|
}
|
|
34
33
|
connectedCallback() {
|
|
35
34
|
if (this.translationUrl) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-b1fc8a5f.js';
|
|
2
|
+
export { s as setNonce } from './index-b1fc8a5f.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.25.1 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
const NAMESPACE = 'general-input';
|
|
2
|
-
const BUILD = /* general-input */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: true, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: true, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: true, hostListenerTargetDocument: true, hostListenerTargetParent: false, hostListenerTargetWindow: false, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: false, propNumber: false, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: false, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: false, watchCallback: true };
|
|
2
|
+
const BUILD = /* general-input */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: true, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: true, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: true, hostListenerTargetDocument: true, hostListenerTargetParent: false, hostListenerTargetWindow: false, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, modernPropertyDecls: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: false, propNumber: false, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: false, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: false, watchCallback: true };
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Platform v4.
|
|
5
|
+
Stencil Client Platform v4.25.1 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __export = (target, all) => {
|
|
9
9
|
for (var name in all)
|
|
10
10
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
11
|
};
|
|
12
|
+
|
|
13
|
+
// src/client/client-host-ref.ts
|
|
12
14
|
var hostRefs = /* @__PURE__ */ new WeakMap();
|
|
13
15
|
var getHostRef = (ref) => hostRefs.get(ref);
|
|
14
|
-
var registerInstance = (lazyInstance, hostRef) =>
|
|
16
|
+
var registerInstance = (lazyInstance, hostRef) => {
|
|
17
|
+
hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
|
|
18
|
+
};
|
|
15
19
|
var registerHost = (hostElement, cmpMeta) => {
|
|
16
20
|
const hostRef = {
|
|
17
21
|
$flags$: 0,
|
|
@@ -24,7 +28,8 @@ var registerHost = (hostElement, cmpMeta) => {
|
|
|
24
28
|
hostElement["s-p"] = [];
|
|
25
29
|
hostElement["s-rc"] = [];
|
|
26
30
|
}
|
|
27
|
-
|
|
31
|
+
const ref = hostRefs.set(hostElement, hostRef);
|
|
32
|
+
return ref;
|
|
28
33
|
};
|
|
29
34
|
var isMemberInElement = (elm, memberName) => memberName in elm;
|
|
30
35
|
var consoleError = (e, el) => (0, console.error)(e, el);
|
|
@@ -69,16 +74,22 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
69
74
|
/* webpackExclude: /\.system\.entry\.js$/ */
|
|
70
75
|
/* webpackMode: "lazy" */
|
|
71
76
|
`./${bundleId}.entry.js${""}`
|
|
72
|
-
).then(
|
|
73
|
-
{
|
|
74
|
-
|
|
77
|
+
).then(
|
|
78
|
+
(importedModule) => {
|
|
79
|
+
{
|
|
80
|
+
cmpModules.set(bundleId, importedModule);
|
|
81
|
+
}
|
|
82
|
+
return importedModule[exportName];
|
|
83
|
+
},
|
|
84
|
+
(e) => {
|
|
85
|
+
consoleError(e, hostRef.$hostElement$);
|
|
75
86
|
}
|
|
76
|
-
|
|
77
|
-
}, consoleError);
|
|
87
|
+
);
|
|
78
88
|
};
|
|
79
89
|
|
|
80
90
|
// src/client/client-style.ts
|
|
81
91
|
var styles = /* @__PURE__ */ new Map();
|
|
92
|
+
var HYDRATED_STYLE_ID = "sty-id";
|
|
82
93
|
var HYDRATED_CSS = "{visibility:hidden}.hydrated{visibility:inherit}";
|
|
83
94
|
var SLOT_FB_CSS = "slot-fb{display:contents}slot-fb[hidden]{display:none}";
|
|
84
95
|
var win = typeof window !== "undefined" ? window : {};
|
|
@@ -152,12 +163,6 @@ var flush = () => {
|
|
|
152
163
|
};
|
|
153
164
|
var nextTick = (cb) => promiseResolve().then(cb);
|
|
154
165
|
var writeTask = /* @__PURE__ */ queueTask(queueDomWrites, true);
|
|
155
|
-
|
|
156
|
-
// src/utils/constants.ts
|
|
157
|
-
var EMPTY_OBJ = {};
|
|
158
|
-
|
|
159
|
-
// src/utils/helpers.ts
|
|
160
|
-
var isDef = (v) => v != null;
|
|
161
166
|
var isComplexType = (o) => {
|
|
162
167
|
o = typeof o;
|
|
163
168
|
return o === "object" || o === "function";
|
|
@@ -358,7 +363,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
358
363
|
}
|
|
359
364
|
if (!appliedStyles.has(scopeId2)) {
|
|
360
365
|
{
|
|
361
|
-
styleElm = doc.createElement("style");
|
|
366
|
+
styleElm = document.querySelector(`[${HYDRATED_STYLE_ID}="${scopeId2}"]`) || doc.createElement("style");
|
|
362
367
|
styleElm.innerHTML = style;
|
|
363
368
|
const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(doc);
|
|
364
369
|
if (nonce != null) {
|
|
@@ -368,7 +373,10 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
368
373
|
if (styleContainerNode.nodeName === "HEAD") {
|
|
369
374
|
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
370
375
|
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
371
|
-
styleContainerNode.insertBefore(
|
|
376
|
+
styleContainerNode.insertBefore(
|
|
377
|
+
styleElm,
|
|
378
|
+
(referenceNode2 == null ? void 0 : referenceNode2.parentNode) === styleContainerNode ? referenceNode2 : null
|
|
379
|
+
);
|
|
372
380
|
} else if ("host" in styleContainerNode) {
|
|
373
381
|
if (supportsConstructableStylesheets) {
|
|
374
382
|
const stylesheet = new CSSStyleSheet();
|
|
@@ -418,16 +426,18 @@ var attachStyles = (hostRef) => {
|
|
|
418
426
|
endAttachStyles();
|
|
419
427
|
};
|
|
420
428
|
var getScopeId = (cmp, mode) => "sc-" + (cmp.$tagName$);
|
|
421
|
-
var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
429
|
+
var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
|
|
422
430
|
if (oldValue !== newValue) {
|
|
423
431
|
let isProp = isMemberInElement(elm, memberName);
|
|
424
432
|
let ln = memberName.toLowerCase();
|
|
425
433
|
if (memberName === "class") {
|
|
426
434
|
const classList = elm.classList;
|
|
427
435
|
const oldClasses = parseClassList(oldValue);
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
436
|
+
let newClasses = parseClassList(newValue);
|
|
437
|
+
{
|
|
438
|
+
classList.remove(...oldClasses.filter((c) => c && !newClasses.includes(c)));
|
|
439
|
+
classList.add(...newClasses.filter((c) => c && !oldClasses.includes(c)));
|
|
440
|
+
}
|
|
431
441
|
} else if (memberName === "key") ; else if (memberName === "ref") {
|
|
432
442
|
if (newValue) {
|
|
433
443
|
newValue(elm);
|
|
@@ -465,7 +475,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
465
475
|
elm.setAttribute(memberName, n);
|
|
466
476
|
}
|
|
467
477
|
}
|
|
468
|
-
} else {
|
|
478
|
+
} else if (elm[memberName] !== newValue) {
|
|
469
479
|
elm[memberName] = newValue;
|
|
470
480
|
}
|
|
471
481
|
} catch (e) {
|
|
@@ -487,24 +497,44 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
487
497
|
}
|
|
488
498
|
};
|
|
489
499
|
var parseClassListRegex = /\s/;
|
|
490
|
-
var parseClassList = (value) =>
|
|
500
|
+
var parseClassList = (value) => {
|
|
501
|
+
if (typeof value === "object" && value && "baseVal" in value) {
|
|
502
|
+
value = value.baseVal;
|
|
503
|
+
}
|
|
504
|
+
if (!value || typeof value !== "string") {
|
|
505
|
+
return [];
|
|
506
|
+
}
|
|
507
|
+
return value.split(parseClassListRegex);
|
|
508
|
+
};
|
|
491
509
|
var CAPTURE_EVENT_SUFFIX = "Capture";
|
|
492
510
|
var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
|
|
493
511
|
|
|
494
512
|
// src/runtime/vdom/update-element.ts
|
|
495
|
-
var updateElement = (oldVnode, newVnode, isSvgMode2) => {
|
|
513
|
+
var updateElement = (oldVnode, newVnode, isSvgMode2, isInitialRender) => {
|
|
496
514
|
const elm = newVnode.$elm$.nodeType === 11 /* DocumentFragment */ && newVnode.$elm$.host ? newVnode.$elm$.host : newVnode.$elm$;
|
|
497
|
-
const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ ||
|
|
498
|
-
const newVnodeAttrs = newVnode.$attrs$ ||
|
|
515
|
+
const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || {};
|
|
516
|
+
const newVnodeAttrs = newVnode.$attrs$ || {};
|
|
499
517
|
{
|
|
500
518
|
for (const memberName of sortedAttrNames(Object.keys(oldVnodeAttrs))) {
|
|
501
519
|
if (!(memberName in newVnodeAttrs)) {
|
|
502
|
-
setAccessor(
|
|
520
|
+
setAccessor(
|
|
521
|
+
elm,
|
|
522
|
+
memberName,
|
|
523
|
+
oldVnodeAttrs[memberName],
|
|
524
|
+
void 0,
|
|
525
|
+
isSvgMode2,
|
|
526
|
+
newVnode.$flags$);
|
|
503
527
|
}
|
|
504
528
|
}
|
|
505
529
|
}
|
|
506
530
|
for (const memberName of sortedAttrNames(Object.keys(newVnodeAttrs))) {
|
|
507
|
-
setAccessor(
|
|
531
|
+
setAccessor(
|
|
532
|
+
elm,
|
|
533
|
+
memberName,
|
|
534
|
+
oldVnodeAttrs[memberName],
|
|
535
|
+
newVnodeAttrs[memberName],
|
|
536
|
+
isSvgMode2,
|
|
537
|
+
newVnode.$flags$);
|
|
508
538
|
}
|
|
509
539
|
};
|
|
510
540
|
function sortedAttrNames(attrNames) {
|
|
@@ -516,13 +546,10 @@ function sortedAttrNames(attrNames) {
|
|
|
516
546
|
attrNames
|
|
517
547
|
);
|
|
518
548
|
}
|
|
519
|
-
|
|
520
|
-
// src/runtime/vdom/vdom-render.ts
|
|
521
|
-
var scopeId;
|
|
522
549
|
var hostTagName;
|
|
523
550
|
var useNativeShadowDom = false;
|
|
524
551
|
var isSvgMode = false;
|
|
525
|
-
var createElm = (oldParentVNode, newParentVNode, childIndex
|
|
552
|
+
var createElm = (oldParentVNode, newParentVNode, childIndex) => {
|
|
526
553
|
const newVNode2 = newParentVNode.$children$[childIndex];
|
|
527
554
|
let i2 = 0;
|
|
528
555
|
let elm;
|
|
@@ -536,11 +563,6 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
536
563
|
{
|
|
537
564
|
updateElement(null, newVNode2, isSvgMode);
|
|
538
565
|
}
|
|
539
|
-
const rootNode = elm.getRootNode();
|
|
540
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
541
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
542
|
-
elm.classList.add(elm["s-si"] = scopeId);
|
|
543
|
-
}
|
|
544
566
|
if (newVNode2.$children$) {
|
|
545
567
|
for (i2 = 0; i2 < newVNode2.$children$.length; ++i2) {
|
|
546
568
|
childNode = createElm(oldParentVNode, newVNode2, i2);
|
|
@@ -670,6 +692,9 @@ var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
|
|
|
670
692
|
if (!isInitialRender) {
|
|
671
693
|
return leftVNode.$key$ === rightVNode.$key$;
|
|
672
694
|
}
|
|
695
|
+
if (isInitialRender && !leftVNode.$key$ && rightVNode.$key$) {
|
|
696
|
+
leftVNode.$key$ = rightVNode.$key$;
|
|
697
|
+
}
|
|
673
698
|
return true;
|
|
674
699
|
}
|
|
675
700
|
return false;
|
|
@@ -709,8 +734,9 @@ var nullifyVNodeRefs = (vNode) => {
|
|
|
709
734
|
}
|
|
710
735
|
};
|
|
711
736
|
var insertBefore = (parent, newNode, reference) => {
|
|
712
|
-
|
|
713
|
-
|
|
737
|
+
{
|
|
738
|
+
return parent == null ? void 0 : parent.insertBefore(newNode, reference);
|
|
739
|
+
}
|
|
714
740
|
};
|
|
715
741
|
var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
716
742
|
const hostElm = hostRef.$hostElement$;
|
|
@@ -735,9 +761,6 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
|
735
761
|
rootVnode.$flags$ |= 4 /* isHost */;
|
|
736
762
|
hostRef.$vnode$ = rootVnode;
|
|
737
763
|
rootVnode.$elm$ = oldVNode.$elm$ = hostElm.shadowRoot || hostElm ;
|
|
738
|
-
{
|
|
739
|
-
scopeId = hostElm["s-sc"];
|
|
740
|
-
}
|
|
741
764
|
useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
|
|
742
765
|
patch(oldVNode, rootVnode, isInitialLoad);
|
|
743
766
|
};
|
|
@@ -745,7 +768,14 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
|
745
768
|
// src/runtime/update-component.ts
|
|
746
769
|
var attachToAncestor = (hostRef, ancestorComponent) => {
|
|
747
770
|
if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent["s-p"]) {
|
|
748
|
-
ancestorComponent["s-p"].push(
|
|
771
|
+
const index = ancestorComponent["s-p"].push(
|
|
772
|
+
new Promise(
|
|
773
|
+
(r) => hostRef.$onRenderResolve$ = () => {
|
|
774
|
+
ancestorComponent["s-p"].splice(index - 1, 1);
|
|
775
|
+
r();
|
|
776
|
+
}
|
|
777
|
+
)
|
|
778
|
+
);
|
|
749
779
|
}
|
|
750
780
|
};
|
|
751
781
|
var scheduleUpdate = (hostRef, isInitialLoad) => {
|
|
@@ -774,12 +804,12 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
|
|
|
774
804
|
{
|
|
775
805
|
hostRef.$flags$ |= 256 /* isListenReady */;
|
|
776
806
|
if (hostRef.$queuedListeners$) {
|
|
777
|
-
hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event));
|
|
807
|
+
hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event, elm));
|
|
778
808
|
hostRef.$queuedListeners$ = void 0;
|
|
779
809
|
}
|
|
780
810
|
}
|
|
781
811
|
{
|
|
782
|
-
maybePromise = safeCall(instance, "componentWillLoad");
|
|
812
|
+
maybePromise = safeCall(instance, "componentWillLoad", void 0, elm);
|
|
783
813
|
}
|
|
784
814
|
}
|
|
785
815
|
endSchedule();
|
|
@@ -848,7 +878,7 @@ var postUpdateComponent = (hostRef) => {
|
|
|
848
878
|
const instance = hostRef.$lazyInstance$ ;
|
|
849
879
|
const ancestorComponent = hostRef.$ancestorComponent$;
|
|
850
880
|
{
|
|
851
|
-
safeCall(instance, "componentDidRender");
|
|
881
|
+
safeCall(instance, "componentDidRender", void 0, elm);
|
|
852
882
|
}
|
|
853
883
|
if (!(hostRef.$flags$ & 64 /* hasLoadedComponent */)) {
|
|
854
884
|
hostRef.$flags$ |= 64 /* hasLoadedComponent */;
|
|
@@ -856,7 +886,7 @@ var postUpdateComponent = (hostRef) => {
|
|
|
856
886
|
addHydratedFlag(elm);
|
|
857
887
|
}
|
|
858
888
|
{
|
|
859
|
-
safeCall(instance, "componentDidLoad");
|
|
889
|
+
safeCall(instance, "componentDidLoad", void 0, elm);
|
|
860
890
|
}
|
|
861
891
|
endPostUpdate();
|
|
862
892
|
{
|
|
@@ -885,12 +915,12 @@ var appDidLoad = (who) => {
|
|
|
885
915
|
}
|
|
886
916
|
nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
|
|
887
917
|
};
|
|
888
|
-
var safeCall = (instance, method, arg) => {
|
|
918
|
+
var safeCall = (instance, method, arg, elm) => {
|
|
889
919
|
if (instance && instance[method]) {
|
|
890
920
|
try {
|
|
891
921
|
return instance[method](arg);
|
|
892
922
|
} catch (e) {
|
|
893
|
-
consoleError(e);
|
|
923
|
+
consoleError(e, elm);
|
|
894
924
|
}
|
|
895
925
|
}
|
|
896
926
|
return void 0;
|
|
@@ -949,15 +979,68 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
949
979
|
const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
|
|
950
980
|
members.map(([memberName, [memberFlags]]) => {
|
|
951
981
|
if ((memberFlags & 31 /* Prop */ || (flags & 2 /* proxyState */) && memberFlags & 32 /* State */)) {
|
|
982
|
+
const { get: origGetter, set: origSetter } = Object.getOwnPropertyDescriptor(prototype, memberName) || {};
|
|
983
|
+
if (origGetter) cmpMeta.$members$[memberName][0] |= 2048 /* Getter */;
|
|
984
|
+
if (origSetter) cmpMeta.$members$[memberName][0] |= 4096 /* Setter */;
|
|
985
|
+
if (flags & 1 /* isElementConstructor */ || !origGetter) {
|
|
986
|
+
Object.defineProperty(prototype, memberName, {
|
|
987
|
+
get() {
|
|
988
|
+
{
|
|
989
|
+
if ((cmpMeta.$members$[memberName][0] & 2048 /* Getter */) === 0) {
|
|
990
|
+
return getValue(this, memberName);
|
|
991
|
+
}
|
|
992
|
+
const ref = getHostRef(this);
|
|
993
|
+
const instance = ref ? ref.$lazyInstance$ : prototype;
|
|
994
|
+
if (!instance) return;
|
|
995
|
+
return instance[memberName];
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
configurable: true,
|
|
999
|
+
enumerable: true
|
|
1000
|
+
});
|
|
1001
|
+
}
|
|
952
1002
|
Object.defineProperty(prototype, memberName, {
|
|
953
|
-
get() {
|
|
954
|
-
return getValue(this, memberName);
|
|
955
|
-
},
|
|
956
1003
|
set(newValue) {
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
1004
|
+
const ref = getHostRef(this);
|
|
1005
|
+
if (origSetter) {
|
|
1006
|
+
const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
|
|
1007
|
+
if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
|
|
1008
|
+
newValue = ref.$instanceValues$.get(memberName);
|
|
1009
|
+
} else if (!ref.$instanceValues$.get(memberName) && currentValue) {
|
|
1010
|
+
ref.$instanceValues$.set(memberName, currentValue);
|
|
1011
|
+
}
|
|
1012
|
+
origSetter.apply(this, [parsePropertyValue(newValue, memberFlags)]);
|
|
1013
|
+
newValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
|
|
1014
|
+
setValue(this, memberName, newValue, cmpMeta);
|
|
1015
|
+
return;
|
|
1016
|
+
}
|
|
1017
|
+
{
|
|
1018
|
+
if ((flags & 1 /* isElementConstructor */) === 0 || (cmpMeta.$members$[memberName][0] & 4096 /* Setter */) === 0) {
|
|
1019
|
+
setValue(this, memberName, newValue, cmpMeta);
|
|
1020
|
+
if (flags & 1 /* isElementConstructor */ && !ref.$lazyInstance$) {
|
|
1021
|
+
ref.$onReadyPromise$.then(() => {
|
|
1022
|
+
if (cmpMeta.$members$[memberName][0] & 4096 /* Setter */ && ref.$lazyInstance$[memberName] !== ref.$instanceValues$.get(memberName)) {
|
|
1023
|
+
ref.$lazyInstance$[memberName] = newValue;
|
|
1024
|
+
}
|
|
1025
|
+
});
|
|
1026
|
+
}
|
|
1027
|
+
return;
|
|
1028
|
+
}
|
|
1029
|
+
const setterSetVal = () => {
|
|
1030
|
+
const currentValue = ref.$lazyInstance$[memberName];
|
|
1031
|
+
if (!ref.$instanceValues$.get(memberName) && currentValue) {
|
|
1032
|
+
ref.$instanceValues$.set(memberName, currentValue);
|
|
1033
|
+
}
|
|
1034
|
+
ref.$lazyInstance$[memberName] = parsePropertyValue(newValue, memberFlags);
|
|
1035
|
+
setValue(this, memberName, ref.$lazyInstance$[memberName], cmpMeta);
|
|
1036
|
+
};
|
|
1037
|
+
if (ref.$lazyInstance$) {
|
|
1038
|
+
setterSetVal();
|
|
1039
|
+
} else {
|
|
1040
|
+
ref.$onReadyPromise$.then(() => setterSetVal());
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
961
1044
|
});
|
|
962
1045
|
}
|
|
963
1046
|
});
|
|
@@ -967,7 +1050,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
967
1050
|
plt.jmp(() => {
|
|
968
1051
|
var _a2;
|
|
969
1052
|
const propName = attrNameToPropName.get(attrName);
|
|
970
|
-
if (this.hasOwnProperty(propName)) {
|
|
1053
|
+
if (this.hasOwnProperty(propName) && BUILD.lazyLoad) {
|
|
971
1054
|
newValue = this[propName];
|
|
972
1055
|
delete this[propName];
|
|
973
1056
|
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
|
|
@@ -987,7 +1070,11 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
987
1070
|
}
|
|
988
1071
|
return;
|
|
989
1072
|
}
|
|
990
|
-
|
|
1073
|
+
const propDesc = Object.getOwnPropertyDescriptor(prototype, propName);
|
|
1074
|
+
newValue = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
|
|
1075
|
+
if (newValue !== this[propName] && (!propDesc.get || !!propDesc.set)) {
|
|
1076
|
+
this[propName] = newValue;
|
|
1077
|
+
}
|
|
991
1078
|
});
|
|
992
1079
|
};
|
|
993
1080
|
Cstr.observedAttributes = Array.from(
|
|
@@ -1014,9 +1101,8 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1014
1101
|
let Cstr;
|
|
1015
1102
|
if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
|
|
1016
1103
|
hostRef.$flags$ |= 32 /* hasInitializedComponent */;
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
const CstrImport = loadModule(cmpMeta);
|
|
1104
|
+
{
|
|
1105
|
+
const CstrImport = loadModule(cmpMeta, hostRef);
|
|
1020
1106
|
if (CstrImport && "then" in CstrImport) {
|
|
1021
1107
|
const endLoad = uniqueTime();
|
|
1022
1108
|
Cstr = await CstrImport;
|
|
@@ -1041,7 +1127,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1041
1127
|
try {
|
|
1042
1128
|
new Cstr(hostRef);
|
|
1043
1129
|
} catch (e) {
|
|
1044
|
-
consoleError(e);
|
|
1130
|
+
consoleError(e, elm);
|
|
1045
1131
|
}
|
|
1046
1132
|
{
|
|
1047
1133
|
hostRef.$flags$ &= ~8 /* isConstructingInstance */;
|
|
@@ -1050,11 +1136,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1050
1136
|
hostRef.$flags$ |= 128 /* isWatchReady */;
|
|
1051
1137
|
}
|
|
1052
1138
|
endNewInstance();
|
|
1053
|
-
fireConnectedCallback(hostRef.$lazyInstance
|
|
1054
|
-
} else {
|
|
1055
|
-
Cstr = elm.constructor;
|
|
1056
|
-
const cmpTag = elm.localName;
|
|
1057
|
-
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
1139
|
+
fireConnectedCallback(hostRef.$lazyInstance$, elm);
|
|
1058
1140
|
}
|
|
1059
1141
|
if (Cstr && Cstr.style) {
|
|
1060
1142
|
let style;
|
|
@@ -1077,9 +1159,9 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1077
1159
|
schedule();
|
|
1078
1160
|
}
|
|
1079
1161
|
};
|
|
1080
|
-
var fireConnectedCallback = (instance) => {
|
|
1162
|
+
var fireConnectedCallback = (instance, elm) => {
|
|
1081
1163
|
{
|
|
1082
|
-
safeCall(instance, "connectedCallback");
|
|
1164
|
+
safeCall(instance, "connectedCallback", void 0, elm);
|
|
1083
1165
|
}
|
|
1084
1166
|
};
|
|
1085
1167
|
|
|
@@ -1115,17 +1197,17 @@ var connectedCallback = (elm) => {
|
|
|
1115
1197
|
} else {
|
|
1116
1198
|
addHostEventListeners(elm, hostRef, cmpMeta.$listeners$);
|
|
1117
1199
|
if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
|
|
1118
|
-
fireConnectedCallback(hostRef.$lazyInstance
|
|
1200
|
+
fireConnectedCallback(hostRef.$lazyInstance$, elm);
|
|
1119
1201
|
} else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
|
|
1120
|
-
hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance
|
|
1202
|
+
hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$, elm));
|
|
1121
1203
|
}
|
|
1122
1204
|
}
|
|
1123
1205
|
endConnected();
|
|
1124
1206
|
}
|
|
1125
1207
|
};
|
|
1126
|
-
var disconnectInstance = (instance) => {
|
|
1208
|
+
var disconnectInstance = (instance, elm) => {
|
|
1127
1209
|
{
|
|
1128
|
-
safeCall(instance, "disconnectedCallback");
|
|
1210
|
+
safeCall(instance, "disconnectedCallback", void 0, elm || instance);
|
|
1129
1211
|
}
|
|
1130
1212
|
};
|
|
1131
1213
|
var disconnectedCallback = async (elm) => {
|
|
@@ -1138,11 +1220,17 @@ var disconnectedCallback = async (elm) => {
|
|
|
1138
1220
|
}
|
|
1139
1221
|
}
|
|
1140
1222
|
if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
|
|
1141
|
-
disconnectInstance(hostRef.$lazyInstance
|
|
1223
|
+
disconnectInstance(hostRef.$lazyInstance$, elm);
|
|
1142
1224
|
} else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
|
|
1143
|
-
hostRef.$onReadyPromise$.then(() => disconnectInstance(hostRef.$lazyInstance
|
|
1225
|
+
hostRef.$onReadyPromise$.then(() => disconnectInstance(hostRef.$lazyInstance$, elm));
|
|
1144
1226
|
}
|
|
1145
1227
|
}
|
|
1228
|
+
if (rootAppliedStyles.has(elm)) {
|
|
1229
|
+
rootAppliedStyles.delete(elm);
|
|
1230
|
+
}
|
|
1231
|
+
if (elm.shadowRoot && rootAppliedStyles.has(elm.shadowRoot)) {
|
|
1232
|
+
rootAppliedStyles.delete(elm.shadowRoot);
|
|
1233
|
+
}
|
|
1146
1234
|
};
|
|
1147
1235
|
|
|
1148
1236
|
// src/runtime/bootstrap-lazy.ts
|
|
@@ -1227,6 +1315,13 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
1227
1315
|
}
|
|
1228
1316
|
disconnectedCallback() {
|
|
1229
1317
|
plt.jmp(() => disconnectedCallback(this));
|
|
1318
|
+
plt.raf(() => {
|
|
1319
|
+
var _a3;
|
|
1320
|
+
const hostRef = getHostRef(this);
|
|
1321
|
+
if (((_a3 = hostRef == null ? void 0 : hostRef.$vnode$) == null ? void 0 : _a3.$elm$) instanceof Node && !hostRef.$vnode$.$elm$.isConnected) {
|
|
1322
|
+
delete hostRef.$vnode$.$elm$;
|
|
1323
|
+
}
|
|
1324
|
+
});
|
|
1230
1325
|
}
|
|
1231
1326
|
componentOnReady() {
|
|
1232
1327
|
return getHostRef(this).$onReadyPromise$;
|
|
@@ -1290,7 +1385,7 @@ var hostListenerProxy = (hostRef, methodName) => (ev) => {
|
|
|
1290
1385
|
}
|
|
1291
1386
|
}
|
|
1292
1387
|
} catch (e) {
|
|
1293
|
-
consoleError(e);
|
|
1388
|
+
consoleError(e, hostRef.$hostElement$);
|
|
1294
1389
|
}
|
|
1295
1390
|
};
|
|
1296
1391
|
var getHostListenerTarget = (elm, flags) => {
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-b1fc8a5f.js';
|
|
2
|
+
export { s as setNonce } from './index-b1fc8a5f.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, c as createEvent, h } from './index-
|
|
1
|
+
import { r as registerInstance, c as createEvent, h } from './index-b1fc8a5f.js';
|
|
2
2
|
import { t as translate } from './locale.utils-0883d9a6.js';
|
|
3
3
|
import { t as tooltipIconSvg } from './tooltipIcon-0a5a06a2.js';
|
|
4
4
|
|
|
@@ -10,27 +10,23 @@ const ToggleCheckboxInput = class {
|
|
|
10
10
|
registerInstance(this, hostRef);
|
|
11
11
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
12
12
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
13
|
+
/**
|
|
14
|
+
* Default value for the input.
|
|
15
|
+
*/
|
|
16
|
+
this.defaultValue = '';
|
|
17
|
+
/**
|
|
18
|
+
* Client custom styling via inline style
|
|
19
|
+
*/
|
|
20
|
+
this.clientStyling = '';
|
|
21
|
+
this.limitStylingAppends = false;
|
|
22
|
+
this.showTooltip = false;
|
|
23
|
+
this.showFields = this.defaultValue === 'true';
|
|
13
24
|
this.value = '';
|
|
14
25
|
this.setClientStyling = () => {
|
|
15
26
|
let sheet = document.createElement('style');
|
|
16
27
|
sheet.innerHTML = this.clientStyling;
|
|
17
28
|
this.stylingContainer.prepend(sheet);
|
|
18
29
|
};
|
|
19
|
-
this.name = undefined;
|
|
20
|
-
this.displayName = undefined;
|
|
21
|
-
this.defaultValue = '';
|
|
22
|
-
this.options = undefined;
|
|
23
|
-
this.autofilled = undefined;
|
|
24
|
-
this.tooltip = undefined;
|
|
25
|
-
this.validation = undefined;
|
|
26
|
-
this.language = undefined;
|
|
27
|
-
this.emitValue = undefined;
|
|
28
|
-
this.clientStyling = '';
|
|
29
|
-
this.errorMessage = undefined;
|
|
30
|
-
this.isValid = undefined;
|
|
31
|
-
this.limitStylingAppends = false;
|
|
32
|
-
this.showTooltip = false;
|
|
33
|
-
this.showFields = this.defaultValue === 'true';
|
|
34
30
|
}
|
|
35
31
|
validityStateHandler(inputStateEvent) {
|
|
36
32
|
this.sendValidityState.emit(inputStateEvent);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-
|
|
1
|
+
import{p as e,b as l}from"./p-09c73744.js";export{s as setNonce}from"./p-09c73744.js";import{g as i}from"./p-e1255160.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((async e=>(await i(),l([["p-5b3e1098",[[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]},[[4,"click","handleClickOutside"]],{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"]],{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"]],{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"]],{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"]],{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"],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"]],{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"]],{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"]],{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"]],{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"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}]]],["p-ab0375f4",[[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"],clientStyling:[520,"client-styling"],dateFormat:[513,"date-format"],translationUrl:[513,"translation-url"],emitOnClick:[516,"emit-on-click"]}]]],["p-1922ef4e",[[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"]]]]]],e))));
|