@everymatrix/user-action-controller 0.0.1

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 (49) hide show
  1. package/dist/cjs/generic-user-consent_3.cjs.entry.js +182 -0
  2. package/dist/cjs/index-4a3038bd.js +1255 -0
  3. package/dist/cjs/index.cjs.js +2 -0
  4. package/dist/cjs/loader.cjs.js +21 -0
  5. package/dist/cjs/user-action-controller.cjs.js +19 -0
  6. package/dist/collection/collection-manifest.json +25 -0
  7. package/dist/collection/components/user-action-controller/user-action-controller.css +48 -0
  8. package/dist/collection/components/user-action-controller/user-action-controller.js +237 -0
  9. package/dist/collection/index.js +1 -0
  10. package/dist/collection/utils/utils.js +3 -0
  11. package/dist/components/generic-user-consent.js +6 -0
  12. package/dist/components/generic-user-consent2.js +93 -0
  13. package/dist/components/index.d.ts +26 -0
  14. package/dist/components/index.js +1 -0
  15. package/dist/components/legislation-wrapper.js +6 -0
  16. package/dist/components/legislation-wrapper2.js +33 -0
  17. package/dist/components/user-action-controller.d.ts +11 -0
  18. package/dist/components/user-action-controller.js +137 -0
  19. package/dist/esm/generic-user-consent_3.entry.js +176 -0
  20. package/dist/esm/index-9eef5ef8.js +1229 -0
  21. package/dist/esm/index.js +1 -0
  22. package/dist/esm/loader.js +17 -0
  23. package/dist/esm/polyfills/core-js.js +11 -0
  24. package/dist/esm/polyfills/css-shim.js +1 -0
  25. package/dist/esm/polyfills/dom.js +79 -0
  26. package/dist/esm/polyfills/es5-html-element.js +1 -0
  27. package/dist/esm/polyfills/index.js +34 -0
  28. package/dist/esm/polyfills/system.js +6 -0
  29. package/dist/esm/user-action-controller.js +17 -0
  30. package/dist/index.cjs.js +1 -0
  31. package/dist/index.js +1 -0
  32. package/dist/stencil.config.js +22 -0
  33. package/dist/types/Users/user/workspace/everymatrix/widgets-stencil/packages/user-action-controller/.stencil/packages/user-action-controller/stencil.config.d.ts +2 -0
  34. package/dist/types/components/user-action-controller/user-action-controller.d.ts +55 -0
  35. package/dist/types/components.d.ts +93 -0
  36. package/dist/types/index.d.ts +1 -0
  37. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  38. package/dist/types/utils/utils.d.ts +1 -0
  39. package/dist/user-action-controller/index.esm.js +0 -0
  40. package/dist/user-action-controller/p-013051ff.entry.js +1 -0
  41. package/dist/user-action-controller/p-54386d36.js +1 -0
  42. package/dist/user-action-controller/user-action-controller.esm.js +1 -0
  43. package/loader/cdn.js +3 -0
  44. package/loader/index.cjs.js +3 -0
  45. package/loader/index.d.ts +12 -0
  46. package/loader/index.es2017.js +3 -0
  47. package/loader/index.js +4 -0
  48. package/loader/package.json +10 -0
  49. package/package.json +19 -0
@@ -0,0 +1,93 @@
1
+ /* eslint-disable */
2
+ /* tslint:disable */
3
+ /**
4
+ * This is an autogenerated file created by the Stencil compiler.
5
+ * It contains typing information for all components that exist in this project.
6
+ */
7
+ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
+ export namespace Components {
9
+ interface UserActionController {
10
+ /**
11
+ * which user action widgets are included
12
+ */
13
+ "activeUserActions": string;
14
+ /**
15
+ * the endpoint required for the update call
16
+ */
17
+ "endpoint": string;
18
+ /**
19
+ * wether or not to include the submit button (in case we want to compose a different )
20
+ */
21
+ "includeSubmitButton": boolean;
22
+ /**
23
+ * the text of the button, if button is enabled
24
+ */
25
+ "submitButtonText": string;
26
+ /**
27
+ * user id required for the update call
28
+ */
29
+ "userId": string;
30
+ /**
31
+ * the title of the action group
32
+ */
33
+ "userNoticeText": string;
34
+ /**
35
+ * user session required for the update call
36
+ */
37
+ "userSession": string;
38
+ }
39
+ }
40
+ declare global {
41
+ interface HTMLUserActionControllerElement extends Components.UserActionController, HTMLStencilElement {
42
+ }
43
+ var HTMLUserActionControllerElement: {
44
+ prototype: HTMLUserActionControllerElement;
45
+ new (): HTMLUserActionControllerElement;
46
+ };
47
+ interface HTMLElementTagNameMap {
48
+ "user-action-controller": HTMLUserActionControllerElement;
49
+ }
50
+ }
51
+ declare namespace LocalJSX {
52
+ interface UserActionController {
53
+ /**
54
+ * which user action widgets are included
55
+ */
56
+ "activeUserActions": string;
57
+ /**
58
+ * the endpoint required for the update call
59
+ */
60
+ "endpoint": string;
61
+ /**
62
+ * wether or not to include the submit button (in case we want to compose a different )
63
+ */
64
+ "includeSubmitButton": boolean;
65
+ /**
66
+ * the text of the button, if button is enabled
67
+ */
68
+ "submitButtonText"?: string;
69
+ /**
70
+ * user id required for the update call
71
+ */
72
+ "userId": string;
73
+ /**
74
+ * the title of the action group
75
+ */
76
+ "userNoticeText"?: string;
77
+ /**
78
+ * user session required for the update call
79
+ */
80
+ "userSession": string;
81
+ }
82
+ interface IntrinsicElements {
83
+ "user-action-controller": UserActionController;
84
+ }
85
+ }
86
+ export { LocalJSX as JSX };
87
+ declare module "@stencil/core" {
88
+ export namespace JSX {
89
+ interface IntrinsicElements {
90
+ "user-action-controller": LocalJSX.UserActionController & JSXBase.HTMLAttributes<HTMLUserActionControllerElement>;
91
+ }
92
+ }
93
+ }
@@ -0,0 +1 @@
1
+ export * from './components';