@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.
- package/dist/cjs/general-about-us.cjs.entry.js +244 -0
- package/dist/cjs/general-about-us.cjs.js +19 -0
- package/dist/cjs/index-f09c74e2.js +1223 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/about-us/general-about-us.css +137 -0
- package/dist/collection/components/about-us/general-about-us.js +282 -0
- package/dist/collection/components/about-us/general-about-us.types.js +2 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +32 -0
- package/dist/collection/utils/utils.js +56 -0
- package/dist/components/general-about-us.d.ts +11 -0
- package/dist/components/general-about-us.js +269 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/general-about-us.entry.js +240 -0
- package/dist/esm/general-about-us.js +17 -0
- package/dist/esm/index-b262ca21.js +1198 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -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/general-about-us/general-about-us.esm.js +1 -0
- package/dist/general-about-us/index.esm.js +0 -0
- package/dist/general-about-us/p-0c90e5ab.js +1 -0
- package/dist/general-about-us/p-4f27291f.entry.js +1 -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/general-about-us/.stencil/packages/general-about-us/stencil.config.d.ts +2 -0
- package/dist/types/components/about-us/general-about-us.d.ts +43 -0
- package/dist/types/components/about-us/general-about-us.types.d.ts +17 -0
- package/dist/types/components.d.ts +85 -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 +1 -0
- package/dist/types/utils/utils.d.ts +3 -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 +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';
|