@everymatrix/general-registration 1.0.90 → 1.0.94
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_13.cjs.entry.js +149 -203
- package/dist/cjs/general-registration.cjs.js +2 -2
- package/dist/cjs/{index-4ad59840.js → index-a50e3624.js} +314 -151
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/general-registration/general-registration.js +48 -19
- package/dist/collection/components/general-registration/general-registration.stories.js +1 -1
- package/dist/esm/checkbox-group-input_13.entry.js +149 -203
- package/dist/esm/general-registration.js +3 -3
- package/dist/esm/{index-14f0c56e.js → index-4e81c54a.js} +314 -151
- package/dist/esm/loader.js +2 -2
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/p-4e9b071b.js +2 -0
- package/dist/general-registration/{p-7cdd3034.entry.js → p-b8606ea6.entry.js} +116 -116
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-registration/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -1
- package/dist/types/components/general-registration/general-registration.stories.d.ts +1 -1
- package/dist/types/stencil-public-runtime.d.ts +6 -0
- package/package.json +1 -1
- package/dist/general-registration/p-59a2915a.js +0 -2
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-a50e3624.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|
|
@@ -4,6 +4,36 @@ import "../../../../../general-input/dist/types/index";
|
|
|
4
4
|
import "../../../../../../svelte/player-consents/esnext/player-consents";
|
|
5
5
|
export class GeneralRegistration {
|
|
6
6
|
constructor() {
|
|
7
|
+
/**
|
|
8
|
+
* Currently selected language
|
|
9
|
+
*/
|
|
10
|
+
this.language = 'en';
|
|
11
|
+
/**
|
|
12
|
+
* Client custom styling via inline styles
|
|
13
|
+
*/
|
|
14
|
+
this.clientStyling = '';
|
|
15
|
+
/**
|
|
16
|
+
* Client custom styling via url
|
|
17
|
+
*/
|
|
18
|
+
this.clientStylingUrl = '';
|
|
19
|
+
/**
|
|
20
|
+
* Translations via URL
|
|
21
|
+
*/
|
|
22
|
+
this.translationUrl = '';
|
|
23
|
+
/**
|
|
24
|
+
* Affiliate code to be passed in and sent in the registration.
|
|
25
|
+
*/
|
|
26
|
+
this.btag = null;
|
|
27
|
+
/**
|
|
28
|
+
* Boolean flag that tells inputs to emit an event on click.
|
|
29
|
+
*/
|
|
30
|
+
this.emitOnClick = false;
|
|
31
|
+
this.isConsentValid = false;
|
|
32
|
+
this.isConsentReady = false;
|
|
33
|
+
this.isLoading = true;
|
|
34
|
+
this.forms = [];
|
|
35
|
+
this.limitStylingAppends = false;
|
|
36
|
+
this.autofilled = false;
|
|
7
37
|
this.listOfInputValues = [];
|
|
8
38
|
this.listOfInputValidity = [];
|
|
9
39
|
this.listOfActions = [];
|
|
@@ -31,25 +61,6 @@ export class GeneralRegistration {
|
|
|
31
61
|
setTimeout(() => { this.host.shadowRoot.prepend(cssFile); }, 1);
|
|
32
62
|
});
|
|
33
63
|
};
|
|
34
|
-
this.endpoint = undefined;
|
|
35
|
-
this.language = 'en';
|
|
36
|
-
this.clientStyling = '';
|
|
37
|
-
this.clientStylingUrl = '';
|
|
38
|
-
this.translationUrl = '';
|
|
39
|
-
this.dateFormat = undefined;
|
|
40
|
-
this.buttonInsideForm = undefined;
|
|
41
|
-
this.btag = null;
|
|
42
|
-
this.emitOnClick = false;
|
|
43
|
-
this.errorMessage = undefined;
|
|
44
|
-
this.isFormValid = undefined;
|
|
45
|
-
this.isConsentValid = false;
|
|
46
|
-
this.isConsentReady = false;
|
|
47
|
-
this.isLoading = true;
|
|
48
|
-
this.isLoadingPOST = undefined;
|
|
49
|
-
this.registrationStep = undefined;
|
|
50
|
-
this.forms = [];
|
|
51
|
-
this.limitStylingAppends = false;
|
|
52
|
-
this.autofilled = false;
|
|
53
64
|
}
|
|
54
65
|
sendStep() {
|
|
55
66
|
this.registrationStepUpdated.emit(this.registrationStep);
|
|
@@ -623,6 +634,8 @@ export class GeneralRegistration {
|
|
|
623
634
|
"tags": [],
|
|
624
635
|
"text": "NorWAy Endpoint for all the calls."
|
|
625
636
|
},
|
|
637
|
+
"getter": false,
|
|
638
|
+
"setter": false,
|
|
626
639
|
"attribute": "endpoint",
|
|
627
640
|
"reflect": true
|
|
628
641
|
},
|
|
@@ -640,6 +653,8 @@ export class GeneralRegistration {
|
|
|
640
653
|
"tags": [],
|
|
641
654
|
"text": "Currently selected language"
|
|
642
655
|
},
|
|
656
|
+
"getter": false,
|
|
657
|
+
"setter": false,
|
|
643
658
|
"attribute": "language",
|
|
644
659
|
"reflect": true,
|
|
645
660
|
"defaultValue": "'en'"
|
|
@@ -658,6 +673,8 @@ export class GeneralRegistration {
|
|
|
658
673
|
"tags": [],
|
|
659
674
|
"text": "Client custom styling via inline styles"
|
|
660
675
|
},
|
|
676
|
+
"getter": false,
|
|
677
|
+
"setter": false,
|
|
661
678
|
"attribute": "client-styling",
|
|
662
679
|
"reflect": true,
|
|
663
680
|
"defaultValue": "''"
|
|
@@ -676,6 +693,8 @@ export class GeneralRegistration {
|
|
|
676
693
|
"tags": [],
|
|
677
694
|
"text": "Client custom styling via url"
|
|
678
695
|
},
|
|
696
|
+
"getter": false,
|
|
697
|
+
"setter": false,
|
|
679
698
|
"attribute": "client-styling-url",
|
|
680
699
|
"reflect": true,
|
|
681
700
|
"defaultValue": "''"
|
|
@@ -694,6 +713,8 @@ export class GeneralRegistration {
|
|
|
694
713
|
"tags": [],
|
|
695
714
|
"text": "Translations via URL"
|
|
696
715
|
},
|
|
716
|
+
"getter": false,
|
|
717
|
+
"setter": false,
|
|
697
718
|
"attribute": "translation-url",
|
|
698
719
|
"reflect": true,
|
|
699
720
|
"defaultValue": "''"
|
|
@@ -712,6 +733,8 @@ export class GeneralRegistration {
|
|
|
712
733
|
"tags": [],
|
|
713
734
|
"text": "Date format for date picker"
|
|
714
735
|
},
|
|
736
|
+
"getter": false,
|
|
737
|
+
"setter": false,
|
|
715
738
|
"attribute": "date-format",
|
|
716
739
|
"reflect": true
|
|
717
740
|
},
|
|
@@ -729,6 +752,8 @@ export class GeneralRegistration {
|
|
|
729
752
|
"tags": [],
|
|
730
753
|
"text": "Boolean that decides the position of the button. e.g. button inside -- true / outside -- false the form."
|
|
731
754
|
},
|
|
755
|
+
"getter": false,
|
|
756
|
+
"setter": false,
|
|
732
757
|
"attribute": "button-inside-form",
|
|
733
758
|
"reflect": true
|
|
734
759
|
},
|
|
@@ -746,6 +771,8 @@ export class GeneralRegistration {
|
|
|
746
771
|
"tags": [],
|
|
747
772
|
"text": "Affiliate code to be passed in and sent in the registration."
|
|
748
773
|
},
|
|
774
|
+
"getter": false,
|
|
775
|
+
"setter": false,
|
|
749
776
|
"attribute": "btag",
|
|
750
777
|
"reflect": true,
|
|
751
778
|
"defaultValue": "null"
|
|
@@ -764,6 +791,8 @@ export class GeneralRegistration {
|
|
|
764
791
|
"tags": [],
|
|
765
792
|
"text": "Boolean flag that tells inputs to emit an event on click."
|
|
766
793
|
},
|
|
794
|
+
"getter": false,
|
|
795
|
+
"setter": false,
|
|
767
796
|
"attribute": "emit-on-click",
|
|
768
797
|
"reflect": true,
|
|
769
798
|
"defaultValue": "false"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, c as createEvent, h as h$3, g as getElement, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, c as createEvent, h as h$3, g as getElement, H as Host } from './index-4e81c54a.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE$1 = 'en';
|
|
4
4
|
const TRANSLATIONS$1 = {
|
|
@@ -15142,27 +15142,23 @@ const CheckboxGroupInput = class {
|
|
|
15142
15142
|
registerInstance(this, hostRef);
|
|
15143
15143
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
15144
15144
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
15145
|
+
/**
|
|
15146
|
+
* Default value for the input.
|
|
15147
|
+
*/
|
|
15148
|
+
this.defaultValue = '';
|
|
15149
|
+
/**
|
|
15150
|
+
* Client custom styling via inline style
|
|
15151
|
+
*/
|
|
15152
|
+
this.clientStyling = '';
|
|
15153
|
+
this.limitStylingAppends = false;
|
|
15154
|
+
this.showTooltip = false;
|
|
15155
|
+
this.selectedValues = [];
|
|
15145
15156
|
this.value = null;
|
|
15146
15157
|
this.setClientStyling = () => {
|
|
15147
15158
|
let sheet = document.createElement('style');
|
|
15148
15159
|
sheet.innerHTML = this.clientStyling;
|
|
15149
15160
|
this.stylingContainer.prepend(sheet);
|
|
15150
15161
|
};
|
|
15151
|
-
this.name = undefined;
|
|
15152
|
-
this.displayName = undefined;
|
|
15153
|
-
this.defaultValue = '';
|
|
15154
|
-
this.autofilled = undefined;
|
|
15155
|
-
this.tooltip = undefined;
|
|
15156
|
-
this.options = undefined;
|
|
15157
|
-
this.validation = undefined;
|
|
15158
|
-
this.language = undefined;
|
|
15159
|
-
this.emitValue = undefined;
|
|
15160
|
-
this.clientStyling = '';
|
|
15161
|
-
this.errorMessage = undefined;
|
|
15162
|
-
this.isValid = undefined;
|
|
15163
|
-
this.limitStylingAppends = false;
|
|
15164
|
-
this.showTooltip = false;
|
|
15165
|
-
this.selectedValues = [];
|
|
15166
15162
|
}
|
|
15167
15163
|
handleStylingChange(newValue, oldValue) {
|
|
15168
15164
|
if (newValue !== oldValue)
|
|
@@ -15265,25 +15261,22 @@ const CheckboxInput = class {
|
|
|
15265
15261
|
registerInstance(this, hostRef);
|
|
15266
15262
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
15267
15263
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
15264
|
+
/**
|
|
15265
|
+
* Default value for the input.
|
|
15266
|
+
*/
|
|
15267
|
+
this.defaultValue = '';
|
|
15268
|
+
/**
|
|
15269
|
+
* Client custom styling via inline style
|
|
15270
|
+
*/
|
|
15271
|
+
this.clientStyling = '';
|
|
15272
|
+
this.limitStylingAppends = false;
|
|
15273
|
+
this.showTooltip = false;
|
|
15268
15274
|
this.value = '';
|
|
15269
15275
|
this.setClientStyling = () => {
|
|
15270
15276
|
let sheet = document.createElement('style');
|
|
15271
15277
|
sheet.innerHTML = this.clientStyling;
|
|
15272
15278
|
this.stylingContainer.prepend(sheet);
|
|
15273
15279
|
};
|
|
15274
|
-
this.name = undefined;
|
|
15275
|
-
this.displayName = undefined;
|
|
15276
|
-
this.defaultValue = '';
|
|
15277
|
-
this.autofilled = undefined;
|
|
15278
|
-
this.tooltip = undefined;
|
|
15279
|
-
this.validation = undefined;
|
|
15280
|
-
this.language = undefined;
|
|
15281
|
-
this.emitValue = undefined;
|
|
15282
|
-
this.clientStyling = '';
|
|
15283
|
-
this.errorMessage = undefined;
|
|
15284
|
-
this.isValid = undefined;
|
|
15285
|
-
this.limitStylingAppends = false;
|
|
15286
|
-
this.showTooltip = false;
|
|
15287
15280
|
}
|
|
15288
15281
|
handleStylingChange(newValue, oldValue) {
|
|
15289
15282
|
if (newValue !== oldValue)
|
|
@@ -30849,6 +30842,16 @@ const DateInput = class {
|
|
|
30849
30842
|
registerInstance(this, hostRef);
|
|
30850
30843
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
30851
30844
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
30845
|
+
/**
|
|
30846
|
+
* Client custom styling via inline style
|
|
30847
|
+
*/
|
|
30848
|
+
this.clientStyling = '';
|
|
30849
|
+
/**
|
|
30850
|
+
* Emit event on click
|
|
30851
|
+
*/
|
|
30852
|
+
this.emitOnClick = false;
|
|
30853
|
+
this.limitStylingAppends = false;
|
|
30854
|
+
this.showTooltip = false;
|
|
30852
30855
|
this.touched = false;
|
|
30853
30856
|
this.formatDate = (dateParts) => {
|
|
30854
30857
|
const { year, month, day } = dateParts;
|
|
@@ -30869,22 +30872,6 @@ const DateInput = class {
|
|
|
30869
30872
|
sheet.innerHTML = this.clientStyling;
|
|
30870
30873
|
this.stylingContainer.prepend(sheet);
|
|
30871
30874
|
};
|
|
30872
|
-
this.name = undefined;
|
|
30873
|
-
this.displayName = undefined;
|
|
30874
|
-
this.placeholder = undefined;
|
|
30875
|
-
this.validation = undefined;
|
|
30876
|
-
this.defaultValue = undefined;
|
|
30877
|
-
this.autofilled = undefined;
|
|
30878
|
-
this.tooltip = undefined;
|
|
30879
|
-
this.language = undefined;
|
|
30880
|
-
this.emitValue = undefined;
|
|
30881
|
-
this.clientStyling = '';
|
|
30882
|
-
this.dateFormat = undefined;
|
|
30883
|
-
this.emitOnClick = false;
|
|
30884
|
-
this.errorMessage = undefined;
|
|
30885
|
-
this.isValid = undefined;
|
|
30886
|
-
this.limitStylingAppends = false;
|
|
30887
|
-
this.showTooltip = false;
|
|
30888
30875
|
}
|
|
30889
30876
|
handleStylingChange(newValue, oldValue) {
|
|
30890
30877
|
if (newValue !== oldValue)
|
|
@@ -31006,6 +30993,12 @@ const EmailInput = class {
|
|
|
31006
30993
|
registerInstance(this, hostRef);
|
|
31007
30994
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
31008
30995
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
30996
|
+
/**
|
|
30997
|
+
* Client custom styling via inline style
|
|
30998
|
+
*/
|
|
30999
|
+
this.clientStyling = '';
|
|
31000
|
+
this.limitStylingAppends = false;
|
|
31001
|
+
this.showTooltip = false;
|
|
31009
31002
|
this.validationPattern = '';
|
|
31010
31003
|
this.touched = false;
|
|
31011
31004
|
this.handleInput = (event) => {
|
|
@@ -31030,21 +31023,6 @@ const EmailInput = class {
|
|
|
31030
31023
|
sheet.innerHTML = this.clientStyling;
|
|
31031
31024
|
this.stylingContainer.prepend(sheet);
|
|
31032
31025
|
};
|
|
31033
|
-
this.name = undefined;
|
|
31034
|
-
this.displayName = undefined;
|
|
31035
|
-
this.placeholder = undefined;
|
|
31036
|
-
this.validation = undefined;
|
|
31037
|
-
this.defaultValue = undefined;
|
|
31038
|
-
this.autofilled = undefined;
|
|
31039
|
-
this.tooltip = undefined;
|
|
31040
|
-
this.language = undefined;
|
|
31041
|
-
this.emitValue = undefined;
|
|
31042
|
-
this.isDuplicateInput = undefined;
|
|
31043
|
-
this.clientStyling = '';
|
|
31044
|
-
this.errorMessage = undefined;
|
|
31045
|
-
this.isValid = undefined;
|
|
31046
|
-
this.limitStylingAppends = false;
|
|
31047
|
-
this.showTooltip = false;
|
|
31048
31026
|
}
|
|
31049
31027
|
handleStylingChange(newValue, oldValue) {
|
|
31050
31028
|
if (newValue !== oldValue)
|
|
@@ -31155,29 +31133,28 @@ const GeneralInputStyle0 = generalInputCss;
|
|
|
31155
31133
|
const GeneralInput = class {
|
|
31156
31134
|
constructor(hostRef) {
|
|
31157
31135
|
registerInstance(this, hostRef);
|
|
31136
|
+
/**
|
|
31137
|
+
* Type the general-input should take. Can take the default HTML input values.
|
|
31138
|
+
*/
|
|
31139
|
+
this.type = 'text';
|
|
31140
|
+
/**
|
|
31141
|
+
* Client custom styling via inline style
|
|
31142
|
+
*/
|
|
31143
|
+
this.clientStyling = '';
|
|
31144
|
+
/**
|
|
31145
|
+
* Translations via URL
|
|
31146
|
+
*/
|
|
31147
|
+
this.translationUrl = '';
|
|
31148
|
+
/**
|
|
31149
|
+
* Emit event on click
|
|
31150
|
+
*/
|
|
31151
|
+
this.emitOnClick = false;
|
|
31158
31152
|
this.handleClick = (event) => {
|
|
31159
31153
|
if (this.emitOnClick) {
|
|
31160
31154
|
event.stopPropagation();
|
|
31161
31155
|
window.postMessage({ type: `registration${this.name}Clicked` }, window.location.href);
|
|
31162
31156
|
}
|
|
31163
31157
|
};
|
|
31164
|
-
this.type = 'text';
|
|
31165
|
-
this.name = undefined;
|
|
31166
|
-
this.displayName = undefined;
|
|
31167
|
-
this.placeholder = undefined;
|
|
31168
|
-
this.action = undefined;
|
|
31169
|
-
this.validation = undefined;
|
|
31170
|
-
this.options = undefined;
|
|
31171
|
-
this.language = undefined;
|
|
31172
|
-
this.autofilled = undefined;
|
|
31173
|
-
this.tooltip = undefined;
|
|
31174
|
-
this.defaultValue = undefined;
|
|
31175
|
-
this.emitValue = undefined;
|
|
31176
|
-
this.isDuplicateInput = undefined;
|
|
31177
|
-
this.clientStyling = '';
|
|
31178
|
-
this.dateFormat = undefined;
|
|
31179
|
-
this.translationUrl = '';
|
|
31180
|
-
this.emitOnClick = false;
|
|
31181
31158
|
}
|
|
31182
31159
|
connectedCallback() {
|
|
31183
31160
|
if (this.translationUrl) {
|
|
@@ -37803,6 +37780,36 @@ const GeneralRegistration = class {
|
|
|
37803
37780
|
registerInstance(this, hostRef);
|
|
37804
37781
|
this.registrationWidgetLoaded = createEvent(this, "registrationWidgetLoaded", 7);
|
|
37805
37782
|
this.registrationStepUpdated = createEvent(this, "registrationStepUpdated", 7);
|
|
37783
|
+
/**
|
|
37784
|
+
* Currently selected language
|
|
37785
|
+
*/
|
|
37786
|
+
this.language = 'en';
|
|
37787
|
+
/**
|
|
37788
|
+
* Client custom styling via inline styles
|
|
37789
|
+
*/
|
|
37790
|
+
this.clientStyling = '';
|
|
37791
|
+
/**
|
|
37792
|
+
* Client custom styling via url
|
|
37793
|
+
*/
|
|
37794
|
+
this.clientStylingUrl = '';
|
|
37795
|
+
/**
|
|
37796
|
+
* Translations via URL
|
|
37797
|
+
*/
|
|
37798
|
+
this.translationUrl = '';
|
|
37799
|
+
/**
|
|
37800
|
+
* Affiliate code to be passed in and sent in the registration.
|
|
37801
|
+
*/
|
|
37802
|
+
this.btag = null;
|
|
37803
|
+
/**
|
|
37804
|
+
* Boolean flag that tells inputs to emit an event on click.
|
|
37805
|
+
*/
|
|
37806
|
+
this.emitOnClick = false;
|
|
37807
|
+
this.isConsentValid = false;
|
|
37808
|
+
this.isConsentReady = false;
|
|
37809
|
+
this.isLoading = true;
|
|
37810
|
+
this.forms = [];
|
|
37811
|
+
this.limitStylingAppends = false;
|
|
37812
|
+
this.autofilled = false;
|
|
37806
37813
|
this.listOfInputValues = [];
|
|
37807
37814
|
this.listOfInputValidity = [];
|
|
37808
37815
|
this.listOfActions = [];
|
|
@@ -37830,25 +37837,6 @@ const GeneralRegistration = class {
|
|
|
37830
37837
|
setTimeout(() => { this.host.shadowRoot.prepend(cssFile); }, 1);
|
|
37831
37838
|
});
|
|
37832
37839
|
};
|
|
37833
|
-
this.endpoint = undefined;
|
|
37834
|
-
this.language = 'en';
|
|
37835
|
-
this.clientStyling = '';
|
|
37836
|
-
this.clientStylingUrl = '';
|
|
37837
|
-
this.translationUrl = '';
|
|
37838
|
-
this.dateFormat = undefined;
|
|
37839
|
-
this.buttonInsideForm = undefined;
|
|
37840
|
-
this.btag = null;
|
|
37841
|
-
this.emitOnClick = false;
|
|
37842
|
-
this.errorMessage = undefined;
|
|
37843
|
-
this.isFormValid = undefined;
|
|
37844
|
-
this.isConsentValid = false;
|
|
37845
|
-
this.isConsentReady = false;
|
|
37846
|
-
this.isLoading = true;
|
|
37847
|
-
this.isLoadingPOST = undefined;
|
|
37848
|
-
this.registrationStep = undefined;
|
|
37849
|
-
this.forms = [];
|
|
37850
|
-
this.limitStylingAppends = false;
|
|
37851
|
-
this.autofilled = false;
|
|
37852
37840
|
}
|
|
37853
37841
|
sendStep() {
|
|
37854
37842
|
this.registrationStepUpdated.emit(this.registrationStep);
|
|
@@ -38412,6 +38400,12 @@ const NumberInput = class {
|
|
|
38412
38400
|
registerInstance(this, hostRef);
|
|
38413
38401
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
38414
38402
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
38403
|
+
/**
|
|
38404
|
+
* Client custom styling via inline style
|
|
38405
|
+
*/
|
|
38406
|
+
this.clientStyling = '';
|
|
38407
|
+
this.limitStylingAppends = false;
|
|
38408
|
+
this.showTooltip = false;
|
|
38415
38409
|
this.validationPattern = '';
|
|
38416
38410
|
this.touched = false;
|
|
38417
38411
|
this.handleInput = (event) => {
|
|
@@ -38436,20 +38430,6 @@ const NumberInput = class {
|
|
|
38436
38430
|
sheet.innerHTML = this.clientStyling;
|
|
38437
38431
|
this.stylingContainer.prepend(sheet);
|
|
38438
38432
|
};
|
|
38439
|
-
this.name = undefined;
|
|
38440
|
-
this.displayName = undefined;
|
|
38441
|
-
this.placeholder = undefined;
|
|
38442
|
-
this.validation = undefined;
|
|
38443
|
-
this.defaultValue = undefined;
|
|
38444
|
-
this.autofilled = undefined;
|
|
38445
|
-
this.tooltip = undefined;
|
|
38446
|
-
this.language = undefined;
|
|
38447
|
-
this.emitValue = undefined;
|
|
38448
|
-
this.clientStyling = '';
|
|
38449
|
-
this.errorMessage = undefined;
|
|
38450
|
-
this.isValid = undefined;
|
|
38451
|
-
this.limitStylingAppends = false;
|
|
38452
|
-
this.showTooltip = false;
|
|
38453
38433
|
}
|
|
38454
38434
|
handleStylingChange(newValue, oldValue) {
|
|
38455
38435
|
if (newValue !== oldValue)
|
|
@@ -39338,6 +39318,17 @@ const PasswordInput = class {
|
|
|
39338
39318
|
this.sendOriginalValidityState = createEvent(this, "sendOriginalValidityState", 7);
|
|
39339
39319
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
39340
39320
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
39321
|
+
/**
|
|
39322
|
+
* Default value for the input.
|
|
39323
|
+
*/
|
|
39324
|
+
this.defaultValue = '';
|
|
39325
|
+
/**
|
|
39326
|
+
* Client custom styling via inline style
|
|
39327
|
+
*/
|
|
39328
|
+
this.clientStyling = '';
|
|
39329
|
+
this.limitStylingAppends = false;
|
|
39330
|
+
this.showTooltip = false;
|
|
39331
|
+
this.value = '';
|
|
39341
39332
|
this.touched = false;
|
|
39342
39333
|
this.originalValid = false;
|
|
39343
39334
|
this.validationPattern = '';
|
|
@@ -39376,24 +39367,6 @@ const PasswordInput = class {
|
|
|
39376
39367
|
sheet.innerHTML = this.clientStyling;
|
|
39377
39368
|
this.stylingContainer.prepend(sheet);
|
|
39378
39369
|
};
|
|
39379
|
-
this.name = undefined;
|
|
39380
|
-
this.displayName = undefined;
|
|
39381
|
-
this.placeholder = undefined;
|
|
39382
|
-
this.defaultValue = '';
|
|
39383
|
-
this.autofilled = undefined;
|
|
39384
|
-
this.tooltip = undefined;
|
|
39385
|
-
this.validation = undefined;
|
|
39386
|
-
this.language = undefined;
|
|
39387
|
-
this.emitValue = undefined;
|
|
39388
|
-
this.isDuplicateInput = undefined;
|
|
39389
|
-
this.clientStyling = '';
|
|
39390
|
-
this.isValid = undefined;
|
|
39391
|
-
this.errorMessage = undefined;
|
|
39392
|
-
this.limitStylingAppends = false;
|
|
39393
|
-
this.showTooltip = false;
|
|
39394
|
-
this.passwordComplexity = undefined;
|
|
39395
|
-
this.showPopup = undefined;
|
|
39396
|
-
this.value = '';
|
|
39397
39370
|
}
|
|
39398
39371
|
handleStylingChange(newValue, oldValue) {
|
|
39399
39372
|
if (newValue !== oldValue)
|
|
@@ -39578,23 +39551,17 @@ const RadioInput = class {
|
|
|
39578
39551
|
registerInstance(this, hostRef);
|
|
39579
39552
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
39580
39553
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
39554
|
+
/**
|
|
39555
|
+
* Client custom styling via inline style
|
|
39556
|
+
*/
|
|
39557
|
+
this.clientStyling = '';
|
|
39558
|
+
this.limitStylingAppends = false;
|
|
39559
|
+
this.showTooltip = false;
|
|
39581
39560
|
this.setClientStyling = () => {
|
|
39582
39561
|
let sheet = document.createElement('style');
|
|
39583
39562
|
sheet.innerHTML = this.clientStyling;
|
|
39584
39563
|
this.stylingContainer.prepend(sheet);
|
|
39585
39564
|
};
|
|
39586
|
-
this.name = undefined;
|
|
39587
|
-
this.displayName = undefined;
|
|
39588
|
-
this.optionsGroup = undefined;
|
|
39589
|
-
this.validation = undefined;
|
|
39590
|
-
this.tooltip = undefined;
|
|
39591
|
-
this.language = undefined;
|
|
39592
|
-
this.emitValue = undefined;
|
|
39593
|
-
this.clientStyling = '';
|
|
39594
|
-
this.errorMessage = undefined;
|
|
39595
|
-
this.isValid = undefined;
|
|
39596
|
-
this.limitStylingAppends = false;
|
|
39597
|
-
this.showTooltip = false;
|
|
39598
39565
|
}
|
|
39599
39566
|
handleStylingChange(newValue, oldValue) {
|
|
39600
39567
|
if (newValue !== oldValue)
|
|
@@ -45214,6 +45181,20 @@ const SelectInput = class {
|
|
|
45214
45181
|
registerInstance(this, hostRef);
|
|
45215
45182
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
45216
45183
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
45184
|
+
/**
|
|
45185
|
+
* Default value for the input.
|
|
45186
|
+
*/
|
|
45187
|
+
this.defaultValue = '';
|
|
45188
|
+
/**
|
|
45189
|
+
* Options of the input.
|
|
45190
|
+
*/
|
|
45191
|
+
this.options = [];
|
|
45192
|
+
/**
|
|
45193
|
+
* Client custom styling via inline style
|
|
45194
|
+
*/
|
|
45195
|
+
this.clientStyling = '';
|
|
45196
|
+
this.limitStylingAppends = false;
|
|
45197
|
+
this.showTooltip = false;
|
|
45217
45198
|
this.touched = false;
|
|
45218
45199
|
this.handleChange = (event) => {
|
|
45219
45200
|
this.touched = true;
|
|
@@ -45242,22 +45223,6 @@ const SelectInput = class {
|
|
|
45242
45223
|
sheet.innerHTML = this.clientStyling;
|
|
45243
45224
|
this.stylingContainer.prepend(sheet);
|
|
45244
45225
|
};
|
|
45245
|
-
this.name = undefined;
|
|
45246
|
-
this.displayName = undefined;
|
|
45247
|
-
this.placeholder = undefined;
|
|
45248
|
-
this.action = undefined;
|
|
45249
|
-
this.defaultValue = '';
|
|
45250
|
-
this.autofilled = undefined;
|
|
45251
|
-
this.tooltip = undefined;
|
|
45252
|
-
this.options = [];
|
|
45253
|
-
this.validation = undefined;
|
|
45254
|
-
this.language = undefined;
|
|
45255
|
-
this.emitValue = undefined;
|
|
45256
|
-
this.clientStyling = '';
|
|
45257
|
-
this.errorMessage = undefined;
|
|
45258
|
-
this.isValid = undefined;
|
|
45259
|
-
this.limitStylingAppends = false;
|
|
45260
|
-
this.showTooltip = false;
|
|
45261
45226
|
}
|
|
45262
45227
|
handleStylingChange(newValue, oldValue) {
|
|
45263
45228
|
if (newValue !== oldValue)
|
|
@@ -45374,6 +45339,12 @@ const TelInput = class {
|
|
|
45374
45339
|
registerInstance(this, hostRef);
|
|
45375
45340
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
45376
45341
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
45342
|
+
/**
|
|
45343
|
+
* Client custom styling via inline style
|
|
45344
|
+
*/
|
|
45345
|
+
this.clientStyling = '';
|
|
45346
|
+
this.limitStylingAppends = false;
|
|
45347
|
+
this.showTooltip = false;
|
|
45377
45348
|
this.validationPattern = '';
|
|
45378
45349
|
this.touched = false;
|
|
45379
45350
|
this.handleInput = (event) => {
|
|
@@ -45399,22 +45370,6 @@ const TelInput = class {
|
|
|
45399
45370
|
sheet.innerHTML = this.clientStyling;
|
|
45400
45371
|
this.stylingContainer.prepend(sheet);
|
|
45401
45372
|
};
|
|
45402
|
-
this.name = undefined;
|
|
45403
|
-
this.displayName = undefined;
|
|
45404
|
-
this.placeholder = undefined;
|
|
45405
|
-
this.showLabels = undefined;
|
|
45406
|
-
this.action = undefined;
|
|
45407
|
-
this.validation = undefined;
|
|
45408
|
-
this.defaultValue = undefined;
|
|
45409
|
-
this.autofilled = undefined;
|
|
45410
|
-
this.tooltip = undefined;
|
|
45411
|
-
this.language = undefined;
|
|
45412
|
-
this.emitValue = undefined;
|
|
45413
|
-
this.clientStyling = '';
|
|
45414
|
-
this.isValid = undefined;
|
|
45415
|
-
this.errorMessage = undefined;
|
|
45416
|
-
this.limitStylingAppends = false;
|
|
45417
|
-
this.showTooltip = false;
|
|
45418
45373
|
}
|
|
45419
45374
|
handleStylingChange(newValue, oldValue) {
|
|
45420
45375
|
if (newValue !== oldValue)
|
|
@@ -45551,6 +45506,17 @@ const TextInput = class {
|
|
|
45551
45506
|
registerInstance(this, hostRef);
|
|
45552
45507
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
45553
45508
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
45509
|
+
/**
|
|
45510
|
+
* Default value for the input.
|
|
45511
|
+
*/
|
|
45512
|
+
this.defaultValue = '';
|
|
45513
|
+
/**
|
|
45514
|
+
* Client custom styling via inline style
|
|
45515
|
+
*/
|
|
45516
|
+
this.clientStyling = '';
|
|
45517
|
+
this.errorMessage = '';
|
|
45518
|
+
this.limitStylingAppends = false;
|
|
45519
|
+
this.showTooltip = false;
|
|
45554
45520
|
this.value = '';
|
|
45555
45521
|
this.validationPattern = '';
|
|
45556
45522
|
this.duplicateInputValue = null;
|
|
@@ -45580,22 +45546,6 @@ const TextInput = class {
|
|
|
45580
45546
|
sheet.innerHTML = this.clientStyling;
|
|
45581
45547
|
this.stylingContainer.prepend(sheet);
|
|
45582
45548
|
};
|
|
45583
|
-
this.name = undefined;
|
|
45584
|
-
this.displayName = undefined;
|
|
45585
|
-
this.placeholder = undefined;
|
|
45586
|
-
this.validation = undefined;
|
|
45587
|
-
this.defaultValue = '';
|
|
45588
|
-
this.autofilled = undefined;
|
|
45589
|
-
this.tooltip = undefined;
|
|
45590
|
-
this.language = undefined;
|
|
45591
|
-
this.checkValidity = undefined;
|
|
45592
|
-
this.emitValue = undefined;
|
|
45593
|
-
this.isDuplicateInput = undefined;
|
|
45594
|
-
this.clientStyling = '';
|
|
45595
|
-
this.isValid = undefined;
|
|
45596
|
-
this.errorMessage = '';
|
|
45597
|
-
this.limitStylingAppends = false;
|
|
45598
|
-
this.showTooltip = false;
|
|
45599
45549
|
}
|
|
45600
45550
|
handleStylingChange(newValue, oldValue) {
|
|
45601
45551
|
if (newValue !== oldValue)
|
|
@@ -45725,27 +45675,23 @@ const ToggleCheckboxInput = class {
|
|
|
45725
45675
|
registerInstance(this, hostRef);
|
|
45726
45676
|
this.sendValidityState = createEvent(this, "sendValidityState", 7);
|
|
45727
45677
|
this.sendInputValue = createEvent(this, "sendInputValue", 7);
|
|
45678
|
+
/**
|
|
45679
|
+
* Default value for the input.
|
|
45680
|
+
*/
|
|
45681
|
+
this.defaultValue = '';
|
|
45682
|
+
/**
|
|
45683
|
+
* Client custom styling via inline style
|
|
45684
|
+
*/
|
|
45685
|
+
this.clientStyling = '';
|
|
45686
|
+
this.limitStylingAppends = false;
|
|
45687
|
+
this.showTooltip = false;
|
|
45688
|
+
this.showFields = this.defaultValue === 'true';
|
|
45728
45689
|
this.value = '';
|
|
45729
45690
|
this.setClientStyling = () => {
|
|
45730
45691
|
let sheet = document.createElement('style');
|
|
45731
45692
|
sheet.innerHTML = this.clientStyling;
|
|
45732
45693
|
this.stylingContainer.prepend(sheet);
|
|
45733
45694
|
};
|
|
45734
|
-
this.name = undefined;
|
|
45735
|
-
this.displayName = undefined;
|
|
45736
|
-
this.defaultValue = '';
|
|
45737
|
-
this.options = undefined;
|
|
45738
|
-
this.autofilled = undefined;
|
|
45739
|
-
this.tooltip = undefined;
|
|
45740
|
-
this.validation = undefined;
|
|
45741
|
-
this.language = undefined;
|
|
45742
|
-
this.emitValue = undefined;
|
|
45743
|
-
this.clientStyling = '';
|
|
45744
|
-
this.errorMessage = undefined;
|
|
45745
|
-
this.isValid = undefined;
|
|
45746
|
-
this.limitStylingAppends = false;
|
|
45747
|
-
this.showTooltip = false;
|
|
45748
|
-
this.showFields = this.defaultValue === 'true';
|
|
45749
45695
|
}
|
|
45750
45696
|
handleStylingChange(newValue, oldValue) {
|
|
45751
45697
|
if (newValue !== oldValue)
|