@everymatrix/pam-logout 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 (57) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/index-e376310b.js +1241 -0
  3. package/dist/cjs/index.cjs.js +10 -0
  4. package/dist/cjs/loader.cjs.js +15 -0
  5. package/dist/cjs/pam-logout-f179c4f1.js +263 -0
  6. package/dist/cjs/pam-logout.cjs.entry.js +10 -0
  7. package/dist/cjs/pam-logout.cjs.js +25 -0
  8. package/dist/collection/collection-manifest.json +12 -0
  9. package/dist/collection/components/pam_logout/index.js +1 -0
  10. package/dist/collection/components/pam_logout/pam-logout.css +47 -0
  11. package/dist/collection/components/pam_logout/pam-logout.js +249 -0
  12. package/dist/collection/index.js +1 -0
  13. package/dist/collection/utils/locale.utils.js +53 -0
  14. package/dist/collection/utils/utils.js +56 -0
  15. package/dist/esm/app-globals-0f993ce5.js +3 -0
  16. package/dist/esm/index-1abc369e.js +1215 -0
  17. package/dist/esm/index.js +2 -0
  18. package/dist/esm/loader.js +11 -0
  19. package/dist/esm/pam-logout-b28be36e.js +261 -0
  20. package/dist/esm/pam-logout.entry.js +2 -0
  21. package/dist/esm/pam-logout.js +20 -0
  22. package/dist/index.cjs.js +1 -0
  23. package/dist/index.js +1 -0
  24. package/dist/pam-logout/app-globals-0f993ce5.js +1 -0
  25. package/dist/pam-logout/index-1abc369e.js +2 -0
  26. package/dist/pam-logout/index.esm.js +1 -0
  27. package/dist/pam-logout/pam-logout-b28be36e.js +1 -0
  28. package/dist/pam-logout/pam-logout.entry.js +1 -0
  29. package/dist/pam-logout/pam-logout.esm.js +1 -0
  30. package/dist/stencil.config.dev.js +19 -0
  31. package/dist/stencil.config.js +19 -0
  32. package/dist/storybook/main.js +43 -0
  33. package/dist/storybook/preview.js +9 -0
  34. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/libs/common/src/storybook/storybook-utils.d.ts +39 -0
  35. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/packages/stencil/pam-logout/stencil.config.d.ts +2 -0
  36. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/packages/stencil/pam-logout/stencil.config.dev.d.ts +2 -0
  37. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/packages/stencil/pam-logout/storybook/main.d.ts +3 -0
  38. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/packages/stencil/pam-logout/storybook/preview.d.ts +70 -0
  39. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/tools/plugins/index.d.ts +4 -0
  40. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/tools/plugins/lazy-load-chunk-plugin.d.ts +12 -0
  41. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +5 -0
  42. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/tools/plugins/vite-chunk-plugin.d.ts +6 -0
  43. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/pam-logout/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +4 -0
  44. package/dist/types/components/pam_logout/index.d.ts +1 -0
  45. package/dist/types/components/pam_logout/pam-logout.d.ts +27 -0
  46. package/dist/types/components.d.ts +93 -0
  47. package/dist/types/index.d.ts +1 -0
  48. package/dist/types/stencil-public-runtime.d.ts +1674 -0
  49. package/dist/types/utils/locale.utils.d.ts +6 -0
  50. package/dist/types/utils/utils.d.ts +10 -0
  51. package/loader/cdn.js +1 -0
  52. package/loader/index.cjs.js +1 -0
  53. package/loader/index.d.ts +24 -0
  54. package/loader/index.es2017.js +1 -0
  55. package/loader/index.js +2 -0
  56. package/loader/package.json +11 -0
  57. package/package.json +27 -0
@@ -0,0 +1,27 @@
1
+ export declare class PamLogout {
2
+ /** The endpoint URL for logout request */
3
+ endpoint: string;
4
+ /** User session required for logout */
5
+ session: string;
6
+ /** Language code */
7
+ language: string;
8
+ /** mbSource for styling */
9
+ mbSource: string;
10
+ /** Client custom styling via inline style */
11
+ clientStyling: string;
12
+ /** Client custom styling via URL */
13
+ clientStylingUrl: string;
14
+ /** Translation URL */
15
+ translationUrl: string;
16
+ private device;
17
+ private stylingContainer;
18
+ private stylingSubscription;
19
+ handleClientStylingChange(newValue: string, oldValue: string): void;
20
+ handleClientStylingUrlChange(newValue: string, oldValue: string): void;
21
+ handleMbSourceChange(newValue: string, oldValue: string): void;
22
+ componentWillLoad(): Promise<void>;
23
+ componentDidLoad(): void;
24
+ disconnectedCallback(): void;
25
+ private handleLogout;
26
+ render(): any;
27
+ }
@@ -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 PamLogout {
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 URL for logout request
20
+ */
21
+ "endpoint": string;
22
+ /**
23
+ * Language code
24
+ */
25
+ "language": string;
26
+ /**
27
+ * mbSource for styling
28
+ */
29
+ "mbSource": string;
30
+ /**
31
+ * User session required for logout
32
+ */
33
+ "session": string;
34
+ /**
35
+ * Translation URL
36
+ */
37
+ "translationUrl": string;
38
+ }
39
+ }
40
+ declare global {
41
+ interface HTMLPamLogoutElement extends Components.PamLogout, HTMLStencilElement {
42
+ }
43
+ var HTMLPamLogoutElement: {
44
+ prototype: HTMLPamLogoutElement;
45
+ new (): HTMLPamLogoutElement;
46
+ };
47
+ interface HTMLElementTagNameMap {
48
+ "pam-logout": HTMLPamLogoutElement;
49
+ }
50
+ }
51
+ declare namespace LocalJSX {
52
+ interface PamLogout {
53
+ /**
54
+ * Client custom styling via inline style
55
+ */
56
+ "clientStyling"?: string;
57
+ /**
58
+ * Client custom styling via URL
59
+ */
60
+ "clientStylingUrl"?: string;
61
+ /**
62
+ * The endpoint URL for logout request
63
+ */
64
+ "endpoint": string;
65
+ /**
66
+ * Language code
67
+ */
68
+ "language"?: string;
69
+ /**
70
+ * mbSource for styling
71
+ */
72
+ "mbSource"?: string;
73
+ /**
74
+ * User session required for logout
75
+ */
76
+ "session": string;
77
+ /**
78
+ * Translation URL
79
+ */
80
+ "translationUrl"?: string;
81
+ }
82
+ interface IntrinsicElements {
83
+ "pam-logout": PamLogout;
84
+ }
85
+ }
86
+ export { LocalJSX as JSX };
87
+ declare module "@stencil/core" {
88
+ export namespace JSX {
89
+ interface IntrinsicElements {
90
+ "pam-logout": LocalJSX.PamLogout & JSXBase.HTMLAttributes<HTMLPamLogoutElement>;
91
+ }
92
+ }
93
+ }
@@ -0,0 +1 @@
1
+ export * from './components/pam_logout';