@everymatrix/general-registration 1.56.1 → 1.56.3

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.
Files changed (26) hide show
  1. package/dist/cjs/checkbox-group-input_13.cjs.entry.js +1047 -962
  2. package/dist/cjs/general-registration.cjs.js +2 -2
  3. package/dist/cjs/{index-59ba6f69.js → index-4ad59840.js} +132 -277
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/collection/collection-manifest.json +2 -2
  6. package/dist/collection/components/general-registration/general-registration.js +19 -48
  7. package/dist/esm/checkbox-group-input_13.entry.js +1047 -962
  8. package/dist/esm/general-registration.js +3 -3
  9. package/dist/esm/{index-de907516.js → index-14f0c56e.js} +132 -277
  10. package/dist/esm/loader.js +2 -2
  11. package/dist/general-registration/general-registration.esm.js +1 -1
  12. package/dist/general-registration/{p-439f617f.entry.js → p-290ae59c.entry.js} +140 -126
  13. package/dist/general-registration/p-59a2915a.js +2 -0
  14. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.d.ts +2 -0
  15. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.dev.d.ts +2 -0
  16. package/dist/types/components.d.ts +0 -48
  17. package/dist/types/stencil-public-runtime.d.ts +0 -6
  18. package/package.json +1 -1
  19. package/dist/general-registration/p-f0564129.js +0 -2
  20. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.d.ts +0 -2
  21. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.dev.d.ts +0 -2
  22. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-input/src/utils/types.d.ts +0 -0
  23. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/index.d.ts +0 -0
  24. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
  25. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
  26. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-59ba6f69.js');
5
+ const index = require('./index-4ad59840.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  const defineCustomElements = async (win, options) => {
@@ -4,8 +4,8 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.27.0",
8
- "typescriptVersion": "5.5.4"
7
+ "version": "4.19.2",
8
+ "typescriptVersion": "5.4.5"
9
9
  },
10
10
  "collections": [
11
11
  {
@@ -4,36 +4,6 @@ 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;
37
7
  this.listOfInputValues = [];
38
8
  this.listOfInputValidity = [];
39
9
  this.listOfActions = [];
@@ -61,6 +31,25 @@ export class GeneralRegistration {
61
31
  setTimeout(() => { this.host.shadowRoot.prepend(cssFile); }, 1);
62
32
  });
63
33
  };
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;
64
53
  }
65
54
  sendStep() {
66
55
  this.registrationStepUpdated.emit(this.registrationStep);
@@ -634,8 +623,6 @@ export class GeneralRegistration {
634
623
  "tags": [],
635
624
  "text": "NorWAy Endpoint for all the calls."
636
625
  },
637
- "getter": false,
638
- "setter": false,
639
626
  "attribute": "endpoint",
640
627
  "reflect": true
641
628
  },
@@ -653,8 +640,6 @@ export class GeneralRegistration {
653
640
  "tags": [],
654
641
  "text": "Currently selected language"
655
642
  },
656
- "getter": false,
657
- "setter": false,
658
643
  "attribute": "language",
659
644
  "reflect": true,
660
645
  "defaultValue": "'en'"
@@ -673,8 +658,6 @@ export class GeneralRegistration {
673
658
  "tags": [],
674
659
  "text": "Client custom styling via inline styles"
675
660
  },
676
- "getter": false,
677
- "setter": false,
678
661
  "attribute": "client-styling",
679
662
  "reflect": true,
680
663
  "defaultValue": "''"
@@ -693,8 +676,6 @@ export class GeneralRegistration {
693
676
  "tags": [],
694
677
  "text": "Client custom styling via url"
695
678
  },
696
- "getter": false,
697
- "setter": false,
698
679
  "attribute": "client-styling-url",
699
680
  "reflect": true,
700
681
  "defaultValue": "''"
@@ -713,8 +694,6 @@ export class GeneralRegistration {
713
694
  "tags": [],
714
695
  "text": "Translations via URL"
715
696
  },
716
- "getter": false,
717
- "setter": false,
718
697
  "attribute": "translation-url",
719
698
  "reflect": true,
720
699
  "defaultValue": "''"
@@ -733,8 +712,6 @@ export class GeneralRegistration {
733
712
  "tags": [],
734
713
  "text": "Date format for date picker"
735
714
  },
736
- "getter": false,
737
- "setter": false,
738
715
  "attribute": "date-format",
739
716
  "reflect": true
740
717
  },
@@ -752,8 +729,6 @@ export class GeneralRegistration {
752
729
  "tags": [],
753
730
  "text": "Boolean that decides the position of the button. e.g. button inside -- true / outside -- false the form."
754
731
  },
755
- "getter": false,
756
- "setter": false,
757
732
  "attribute": "button-inside-form",
758
733
  "reflect": true
759
734
  },
@@ -771,8 +746,6 @@ export class GeneralRegistration {
771
746
  "tags": [],
772
747
  "text": "Affiliate code to be passed in and sent in the registration."
773
748
  },
774
- "getter": false,
775
- "setter": false,
776
749
  "attribute": "btag",
777
750
  "reflect": true,
778
751
  "defaultValue": "null"
@@ -791,8 +764,6 @@ export class GeneralRegistration {
791
764
  "tags": [],
792
765
  "text": "Boolean flag that tells inputs to emit an event on click."
793
766
  },
794
- "getter": false,
795
- "setter": false,
796
767
  "attribute": "emit-on-click",
797
768
  "reflect": true,
798
769
  "defaultValue": "false"