@everymatrix/general-about-us 1.29.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.
Files changed (49) hide show
  1. package/dist/cjs/general-about-us.cjs.entry.js +244 -0
  2. package/dist/cjs/general-about-us.cjs.js +19 -0
  3. package/dist/cjs/index-f09c74e2.js +1223 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/about-us/general-about-us.css +137 -0
  8. package/dist/collection/components/about-us/general-about-us.js +282 -0
  9. package/dist/collection/components/about-us/general-about-us.types.js +2 -0
  10. package/dist/collection/index.js +1 -0
  11. package/dist/collection/utils/locale.utils.js +32 -0
  12. package/dist/collection/utils/utils.js +56 -0
  13. package/dist/components/general-about-us.d.ts +11 -0
  14. package/dist/components/general-about-us.js +269 -0
  15. package/dist/components/index.d.ts +26 -0
  16. package/dist/components/index.js +1 -0
  17. package/dist/esm/general-about-us.entry.js +240 -0
  18. package/dist/esm/general-about-us.js +17 -0
  19. package/dist/esm/index-b262ca21.js +1198 -0
  20. package/dist/esm/index.js +1 -0
  21. package/dist/esm/loader.js +17 -0
  22. package/dist/esm/polyfills/core-js.js +11 -0
  23. package/dist/esm/polyfills/css-shim.js +1 -0
  24. package/dist/esm/polyfills/dom.js +79 -0
  25. package/dist/esm/polyfills/es5-html-element.js +1 -0
  26. package/dist/esm/polyfills/index.js +34 -0
  27. package/dist/esm/polyfills/system.js +6 -0
  28. package/dist/general-about-us/general-about-us.esm.js +1 -0
  29. package/dist/general-about-us/index.esm.js +0 -0
  30. package/dist/general-about-us/p-0c90e5ab.js +1 -0
  31. package/dist/general-about-us/p-4f27291f.entry.js +1 -0
  32. package/dist/index.cjs.js +1 -0
  33. package/dist/index.js +1 -0
  34. package/dist/stencil.config.js +22 -0
  35. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/general-about-us/.stencil/packages/general-about-us/stencil.config.d.ts +2 -0
  36. package/dist/types/components/about-us/general-about-us.d.ts +43 -0
  37. package/dist/types/components/about-us/general-about-us.types.d.ts +17 -0
  38. package/dist/types/components.d.ts +85 -0
  39. package/dist/types/index.d.ts +1 -0
  40. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  41. package/dist/types/utils/locale.utils.d.ts +1 -0
  42. package/dist/types/utils/utils.d.ts +3 -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,43 @@
1
+ import { ImageSort } from './general-about-us.types';
2
+ export declare class GeneralAboutUs {
3
+ /**
4
+ * Endpoint URL for the source of data
5
+ */
6
+ cmsEndpoint: string;
7
+ /**
8
+ * Language of the widget
9
+ */
10
+ language: string;
11
+ /**
12
+ * User roles
13
+ */
14
+ userRoles: string;
15
+ /**
16
+ * CMS Endpoint stage
17
+ */
18
+ cmsEnv: string;
19
+ /**
20
+ * Client custom styling via inline style
21
+ */
22
+ clientStyling: string;
23
+ /**
24
+ * Client custom styling via url
25
+ */
26
+ clientStylingUrl: string;
27
+ private hasErrors;
28
+ private isLoading;
29
+ private limitStylingAppends;
30
+ device: string;
31
+ private stylingContainer;
32
+ private aboutUsData;
33
+ watchEndpoint(newValue: string, oldValue: string): void;
34
+ componentWillLoad(): Promise<any>;
35
+ componentDidLoad(): void;
36
+ getAboutUs(): Promise<any>;
37
+ handleClick: (url: string, target: string, location: string, isExternal: boolean) => void;
38
+ setImage: (image: ImageSort) => string;
39
+ setClientStyling: () => void;
40
+ setClientStylingURL: () => void;
41
+ componentDidRender(): void;
42
+ render(): void;
43
+ }
@@ -0,0 +1,17 @@
1
+ export interface ImageSort {
2
+ imageMobile: string;
3
+ imageTablet: string;
4
+ imageDesktop: string;
5
+ }
6
+ export interface DataFetch {
7
+ title: string;
8
+ description: string;
9
+ images: ImageSort;
10
+ button: {
11
+ buttonText: string;
12
+ buttonUrl: string;
13
+ };
14
+ externalLink: boolean;
15
+ targetType: string;
16
+ locations: string;
17
+ }
@@ -0,0 +1,85 @@
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 GeneralAboutUs {
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
+ * Endpoint URL for the source of data
20
+ */
21
+ "cmsEndpoint": string;
22
+ /**
23
+ * CMS Endpoint stage
24
+ */
25
+ "cmsEnv": string;
26
+ /**
27
+ * Language of the widget
28
+ */
29
+ "language": string;
30
+ /**
31
+ * User roles
32
+ */
33
+ "userRoles": string;
34
+ }
35
+ }
36
+ declare global {
37
+ interface HTMLGeneralAboutUsElement extends Components.GeneralAboutUs, HTMLStencilElement {
38
+ }
39
+ var HTMLGeneralAboutUsElement: {
40
+ prototype: HTMLGeneralAboutUsElement;
41
+ new (): HTMLGeneralAboutUsElement;
42
+ };
43
+ interface HTMLElementTagNameMap {
44
+ "general-about-us": HTMLGeneralAboutUsElement;
45
+ }
46
+ }
47
+ declare namespace LocalJSX {
48
+ interface GeneralAboutUs {
49
+ /**
50
+ * Client custom styling via inline style
51
+ */
52
+ "clientStyling"?: string;
53
+ /**
54
+ * Client custom styling via url
55
+ */
56
+ "clientStylingUrl"?: string;
57
+ /**
58
+ * Endpoint URL for the source of data
59
+ */
60
+ "cmsEndpoint"?: string;
61
+ /**
62
+ * CMS Endpoint stage
63
+ */
64
+ "cmsEnv"?: string;
65
+ /**
66
+ * Language of the widget
67
+ */
68
+ "language"?: string;
69
+ /**
70
+ * User roles
71
+ */
72
+ "userRoles"?: string;
73
+ }
74
+ interface IntrinsicElements {
75
+ "general-about-us": GeneralAboutUs;
76
+ }
77
+ }
78
+ export { LocalJSX as JSX };
79
+ declare module "@stencil/core" {
80
+ export namespace JSX {
81
+ interface IntrinsicElements {
82
+ "general-about-us": LocalJSX.GeneralAboutUs & JSXBase.HTMLAttributes<HTMLGeneralAboutUsElement>;
83
+ }
84
+ }
85
+ }
@@ -0,0 +1 @@
1
+ export * from './components';