@everymatrix/user-action-controller 1.32.4 → 1.33.0
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/index-87049e21.js +1300 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/player-user-consents_2.cjs.entry.js +455 -0
- package/dist/cjs/user-action-controller.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +19 -0
- package/dist/collection/components/user-action-controller/user-action-controller.css +89 -0
- package/dist/collection/components/user-action-controller/user-action-controller.js +440 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +60 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/player-user-consents.js +6 -0
- package/dist/components/player-user-consents2.js +199 -0
- package/dist/components/user-action-controller.d.ts +11 -0
- package/dist/components/user-action-controller.js +323 -0
- package/dist/esm/index-71f14530.js +1274 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/player-user-consents_2.entry.js +450 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/user-action-controller.js +17 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/user-action-controller/.stencil/packages/user-action-controller/stencil.config.d.ts +2 -0
- package/dist/types/components/user-action-controller/user-action-controller.d.ts +78 -0
- package/dist/types/components.d.ts +125 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +2 -0
- package/dist/types/utils/utils.d.ts +1 -0
- package/dist/user-action-controller/index.esm.js +0 -0
- package/dist/user-action-controller/p-ba444709.js +1 -0
- package/dist/user-action-controller/p-d1fdbddb.entry.js +1 -0
- package/dist/user-action-controller/user-action-controller.esm.js +1 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +2 -3
- package/LICENSE +0 -21
|
@@ -0,0 +1,125 @@
|
|
|
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
|
+
* Client custom styling via inline style
|
|
12
|
+
*/
|
|
13
|
+
"clientStyling": string;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via url
|
|
16
|
+
*/
|
|
17
|
+
"clientStylingUrl": string;
|
|
18
|
+
/**
|
|
19
|
+
* the endpoint required for the update call
|
|
20
|
+
*/
|
|
21
|
+
"endpoint": string;
|
|
22
|
+
/**
|
|
23
|
+
* Select GM version
|
|
24
|
+
*/
|
|
25
|
+
"gmVersion": string;
|
|
26
|
+
/**
|
|
27
|
+
* whether or not to include the submit button (in case we want to compose a different )
|
|
28
|
+
*/
|
|
29
|
+
"includeSubmitButton": boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Language
|
|
32
|
+
*/
|
|
33
|
+
"lang": string;
|
|
34
|
+
/**
|
|
35
|
+
* the text of the button, if button is enabled
|
|
36
|
+
*/
|
|
37
|
+
"submitButtonText": string;
|
|
38
|
+
/**
|
|
39
|
+
* Translation url
|
|
40
|
+
*/
|
|
41
|
+
"translationUrl": string;
|
|
42
|
+
/**
|
|
43
|
+
* user id required for the update call
|
|
44
|
+
*/
|
|
45
|
+
"userId": string;
|
|
46
|
+
/**
|
|
47
|
+
* the title of the action group
|
|
48
|
+
*/
|
|
49
|
+
"userNoticeText": string;
|
|
50
|
+
/**
|
|
51
|
+
* user session required for the update call
|
|
52
|
+
*/
|
|
53
|
+
"userSession": string;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
declare global {
|
|
57
|
+
interface HTMLUserActionControllerElement extends Components.UserActionController, HTMLStencilElement {
|
|
58
|
+
}
|
|
59
|
+
var HTMLUserActionControllerElement: {
|
|
60
|
+
prototype: HTMLUserActionControllerElement;
|
|
61
|
+
new (): HTMLUserActionControllerElement;
|
|
62
|
+
};
|
|
63
|
+
interface HTMLElementTagNameMap {
|
|
64
|
+
"user-action-controller": HTMLUserActionControllerElement;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
declare namespace LocalJSX {
|
|
68
|
+
interface UserActionController {
|
|
69
|
+
/**
|
|
70
|
+
* Client custom styling via inline style
|
|
71
|
+
*/
|
|
72
|
+
"clientStyling"?: string;
|
|
73
|
+
/**
|
|
74
|
+
* Client custom styling via url
|
|
75
|
+
*/
|
|
76
|
+
"clientStylingUrl"?: string;
|
|
77
|
+
/**
|
|
78
|
+
* the endpoint required for the update call
|
|
79
|
+
*/
|
|
80
|
+
"endpoint": string;
|
|
81
|
+
/**
|
|
82
|
+
* Select GM version
|
|
83
|
+
*/
|
|
84
|
+
"gmVersion"?: string;
|
|
85
|
+
/**
|
|
86
|
+
* whether or not to include the submit button (in case we want to compose a different )
|
|
87
|
+
*/
|
|
88
|
+
"includeSubmitButton": boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Language
|
|
91
|
+
*/
|
|
92
|
+
"lang"?: string;
|
|
93
|
+
/**
|
|
94
|
+
* the text of the button, if button is enabled
|
|
95
|
+
*/
|
|
96
|
+
"submitButtonText"?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Translation url
|
|
99
|
+
*/
|
|
100
|
+
"translationUrl"?: string;
|
|
101
|
+
/**
|
|
102
|
+
* user id required for the update call
|
|
103
|
+
*/
|
|
104
|
+
"userId": string;
|
|
105
|
+
/**
|
|
106
|
+
* the title of the action group
|
|
107
|
+
*/
|
|
108
|
+
"userNoticeText"?: string;
|
|
109
|
+
/**
|
|
110
|
+
* user session required for the update call
|
|
111
|
+
*/
|
|
112
|
+
"userSession": string;
|
|
113
|
+
}
|
|
114
|
+
interface IntrinsicElements {
|
|
115
|
+
"user-action-controller": UserActionController;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
export { LocalJSX as JSX };
|
|
119
|
+
declare module "@stencil/core" {
|
|
120
|
+
export namespace JSX {
|
|
121
|
+
interface IntrinsicElements {
|
|
122
|
+
"user-action-controller": LocalJSX.UserActionController & JSXBase.HTMLAttributes<HTMLUserActionControllerElement>;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|