@everymatrix/general-footer-template 1.0.69
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/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/custom-content-section.cjs.entry.js +9639 -0
- package/dist/cjs/general-footer-template.cjs.entry.js +315 -0
- package/dist/cjs/general-footer-template.cjs.js +25 -0
- package/dist/cjs/image-list.cjs.entry.js +29 -0
- package/dist/cjs/index-4c3922ac.js +1291 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/link-section-list.cjs.entry.js +62 -0
- package/dist/cjs/loader.cjs.js +15 -0
- package/dist/collection/collection-manifest.json +15 -0
- package/dist/collection/components/custom-content-section/custom-content-section.css +13 -0
- package/dist/collection/components/custom-content-section/custom-content-section.js +105 -0
- package/dist/collection/components/general-footer-template/demo-footer.css +160 -0
- package/dist/collection/components/general-footer-template/general-footer-template.css +84 -0
- package/dist/collection/components/general-footer-template/general-footer-template.js +321 -0
- package/dist/collection/components/general-footer-template/index.js +1 -0
- package/dist/collection/components/general-footer-template/pariuri_plus_variant.css +185 -0
- package/dist/collection/components/general-footer-template/variant_style_1.css +146 -0
- package/dist/collection/components/image-list/image-list.css +69 -0
- package/dist/collection/components/image-list/image-list.js +86 -0
- package/dist/collection/components/link-section-list/link-section-list.css +83 -0
- package/dist/collection/components/link-section-list/link-section-list.js +152 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/utils.js +212 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/custom-content-section.entry.js +9635 -0
- package/dist/esm/general-footer-template.entry.js +311 -0
- package/dist/esm/general-footer-template.js +20 -0
- package/dist/esm/image-list.entry.js +25 -0
- package/dist/esm/index-7361445e.js +1265 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/link-section-list.entry.js +58 -0
- package/dist/esm/loader.js +11 -0
- package/dist/general-footer-template/general-footer-template.esm.js +1 -0
- package/dist/general-footer-template/index.esm.js +0 -0
- package/dist/general-footer-template/p-01f3f03f.entry.js +8 -0
- package/dist/general-footer-template/p-26b76a9c.js +2 -0
- package/dist/general-footer-template/p-572b7e03.entry.js +1 -0
- package/dist/general-footer-template/p-7e979c2e.entry.js +1 -0
- package/dist/general-footer-template/p-e1255160.js +1 -0
- package/dist/general-footer-template/p-e98c72d0.entry.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.dev.js +17 -0
- package/dist/stencil.config.js +17 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.d.ts +2 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/custom-content-section/custom-content-section.d.ts +19 -0
- package/dist/types/components/general-footer-template/general-footer-template.d.ts +75 -0
- package/dist/types/components/general-footer-template/index.d.ts +1 -0
- package/dist/types/components/image-list/image-list.d.ts +16 -0
- package/dist/types/components/link-section-list/link-section-list.d.ts +24 -0
- package/dist/types/components.d.ts +268 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1674 -0
- package/dist/types/utils/utils.d.ts +95 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +26 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* custom rules for component types
|
|
3
|
+
*/
|
|
4
|
+
export declare const isMobile: () => boolean;
|
|
5
|
+
export declare const getDevice: () => "Android" | "iPhone" | "iPad" | "PC";
|
|
6
|
+
export declare const getDevicePlatform: () => "dk" | "ios" | "mtWeb";
|
|
7
|
+
export declare const componentRules: {
|
|
8
|
+
downloadApp: {
|
|
9
|
+
component: string;
|
|
10
|
+
};
|
|
11
|
+
"link-section": {
|
|
12
|
+
component: string;
|
|
13
|
+
};
|
|
14
|
+
copyright: {
|
|
15
|
+
component: string;
|
|
16
|
+
};
|
|
17
|
+
download: {
|
|
18
|
+
component: string;
|
|
19
|
+
};
|
|
20
|
+
helpLinks: {
|
|
21
|
+
component: string;
|
|
22
|
+
};
|
|
23
|
+
"license-description": {
|
|
24
|
+
component: string;
|
|
25
|
+
};
|
|
26
|
+
licenses: {
|
|
27
|
+
component: string;
|
|
28
|
+
};
|
|
29
|
+
payment: {
|
|
30
|
+
component: string;
|
|
31
|
+
};
|
|
32
|
+
social: {
|
|
33
|
+
component: string;
|
|
34
|
+
};
|
|
35
|
+
sponsors: {
|
|
36
|
+
component: string;
|
|
37
|
+
};
|
|
38
|
+
vendors: {
|
|
39
|
+
component: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare const normalizeRepeaterContent: (data: any) => {
|
|
43
|
+
repeaters: {
|
|
44
|
+
vendors: {
|
|
45
|
+
categoryTitle: any;
|
|
46
|
+
content: any[];
|
|
47
|
+
};
|
|
48
|
+
"link-section": {
|
|
49
|
+
categoryTitle: any;
|
|
50
|
+
content: any[];
|
|
51
|
+
};
|
|
52
|
+
helpLinks: {
|
|
53
|
+
categoryTitle: any;
|
|
54
|
+
content: any[];
|
|
55
|
+
};
|
|
56
|
+
licenses: {
|
|
57
|
+
categoryTitle: any;
|
|
58
|
+
content: any[];
|
|
59
|
+
};
|
|
60
|
+
sponsors: {
|
|
61
|
+
categoryTitle: any;
|
|
62
|
+
content: any[];
|
|
63
|
+
};
|
|
64
|
+
payment: {
|
|
65
|
+
categoryTitle: any;
|
|
66
|
+
content: any[];
|
|
67
|
+
};
|
|
68
|
+
social: {
|
|
69
|
+
categoryTitle: any;
|
|
70
|
+
content: any[];
|
|
71
|
+
};
|
|
72
|
+
downloadApp: {
|
|
73
|
+
categoryTitle: any;
|
|
74
|
+
content: any[];
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
wysiwyg: {
|
|
78
|
+
copyright: {
|
|
79
|
+
categoryTitle: string;
|
|
80
|
+
content: string;
|
|
81
|
+
};
|
|
82
|
+
download: {
|
|
83
|
+
categoryTitle: string;
|
|
84
|
+
content: string;
|
|
85
|
+
};
|
|
86
|
+
downloadApp: {
|
|
87
|
+
categoryTitle: string;
|
|
88
|
+
content: string;
|
|
89
|
+
};
|
|
90
|
+
"license-description": {
|
|
91
|
+
categoryTitle: string;
|
|
92
|
+
content: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
package/loader/cdn.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cjs/loader.cjs.js');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cjs/loader.cjs.js');
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from '../dist/types/components';
|
|
2
|
+
export interface CustomElementsDefineOptions {
|
|
3
|
+
exclude?: string[];
|
|
4
|
+
resourcesUrl?: string;
|
|
5
|
+
syncQueue?: boolean;
|
|
6
|
+
jmp?: (c: Function) => any;
|
|
7
|
+
raf?: (c: FrameRequestCallback) => number;
|
|
8
|
+
ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
9
|
+
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function defineCustomElements(win?: Window, opts?: CustomElementsDefineOptions): void;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated
|
|
14
|
+
*/
|
|
15
|
+
export declare function applyPolyfills(): Promise<void>;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Used to specify a nonce value that corresponds with an application's CSP.
|
|
19
|
+
* When set, the nonce will be added to all dynamically created script and style tags at runtime.
|
|
20
|
+
* Alternatively, the nonce value can be set on a meta tag in the DOM head
|
|
21
|
+
* (<meta name="csp-nonce" content="{ nonce value here }" />) which
|
|
22
|
+
* will result in the same behavior.
|
|
23
|
+
*/
|
|
24
|
+
export declare function setNonce(nonce: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/esm/loader.js';
|
package/loader/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
(function(){if("undefined"!==typeof window&&void 0!==window.Reflect&&void 0!==window.customElements){var a=HTMLElement;window.HTMLElement=function(){return Reflect.construct(a,[],this.constructor)};HTMLElement.prototype=a.prototype;HTMLElement.prototype.constructor=HTMLElement;Object.setPrototypeOf(HTMLElement,a)}})();
|
|
2
|
+
export * from '../dist/esm/loader.js';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "general-footer-template-loader",
|
|
3
|
+
"private": true,
|
|
4
|
+
"typings": "./index.d.ts",
|
|
5
|
+
"module": "./index.js",
|
|
6
|
+
"main": "./index.cjs.js",
|
|
7
|
+
"jsnext:main": "./index.es2017.js",
|
|
8
|
+
"es2015": "./index.es2017.js",
|
|
9
|
+
"es2017": "./index.es2017.js",
|
|
10
|
+
"unpkg": "./cdn.js"
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@everymatrix/general-footer-template",
|
|
3
|
+
"version": "1.0.69",
|
|
4
|
+
"main": "./dist/index.cjs.js",
|
|
5
|
+
"module": "./dist/index.js",
|
|
6
|
+
"es2015": "./dist/esm/index.mjs",
|
|
7
|
+
"es2017": "./dist/esm/index.mjs",
|
|
8
|
+
"types": "./dist/types/index.d.ts",
|
|
9
|
+
"collection": "./dist/collection/collection-manifest.json",
|
|
10
|
+
"collection:main": "./dist/collection/index.js",
|
|
11
|
+
"unpkg": "./dist/general-footer-template/general-footer-template.esm.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/esm/general-footer-template.js",
|
|
15
|
+
"require": "./dist/cjs/general-footer-template.cjs"
|
|
16
|
+
},
|
|
17
|
+
"./dist/cjs/general-footer-template.cjs.js": "./dist/cjs/general-footer-template.cjs.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/",
|
|
21
|
+
"loader/"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|