@everymatrix/general-footer-template 1.16.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.
- package/dist/cjs/custom-content-section.cjs.entry.js +9516 -0
- package/dist/cjs/general-footer-template.cjs.entry.js +308 -0
- package/dist/cjs/general-footer-template.cjs.js +19 -0
- package/dist/cjs/image-list.cjs.entry.js +21 -0
- package/dist/cjs/index-6cf0989a.js +1175 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/link-section-list.cjs.entry.js +44 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +15 -0
- package/dist/collection/components/custom-content-section/custom-content-section.css +16 -0
- package/dist/collection/components/custom-content-section/custom-content-section.js +60 -0
- package/dist/collection/components/general-footer-template/general-footer-template.js +267 -0
- package/dist/collection/components/general-footer-template/pariuri_plus_variant.css +185 -0
- package/dist/collection/components/image-list/image-list.css +53 -0
- package/dist/collection/components/image-list/image-list.js +42 -0
- package/dist/collection/components/link-section-list/link-section-list.css +54 -0
- package/dist/collection/components/link-section-list/link-section-list.js +58 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/utils.js +209 -0
- package/dist/components/custom-content-section.d.ts +11 -0
- package/dist/components/custom-content-section.js +9538 -0
- package/dist/components/general-footer-template.d.ts +11 -0
- package/dist/components/general-footer-template.js +334 -0
- package/dist/components/image-list.d.ts +11 -0
- package/dist/components/image-list.js +6 -0
- package/dist/components/image-list2.js +33 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/link-section-list.d.ts +11 -0
- package/dist/components/link-section-list.js +59 -0
- package/dist/esm/custom-content-section.entry.js +9512 -0
- package/dist/esm/general-footer-template.entry.js +304 -0
- package/dist/esm/general-footer-template.js +17 -0
- package/dist/esm/image-list.entry.js +17 -0
- package/dist/esm/index-82b1d163.js +1149 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/link-section-list.entry.js +40 -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-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-0468caec.entry.js +1 -0
- package/dist/general-footer-template/p-212a82d9.entry.js +1 -0
- package/dist/general-footer-template/p-7998a5ba.entry.js +7 -0
- package/dist/general-footer-template/p-7aafd945.js +1 -0
- package/dist/general-footer-template/p-81253ed9.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-footer-template/.stencil/packages/general-footer-template/stencil.config.d.ts +2 -0
- package/dist/types/components/custom-content-section/custom-content-section.d.ts +11 -0
- package/dist/types/components/general-footer-template/general-footer-template.d.ts +63 -0
- package/dist/types/components/image-list/image-list.d.ts +7 -0
- package/dist/types/components/link-section-list/link-section-list.d.ts +7 -0
- package/dist/types/components.d.ts +180 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/utils.d.ts +95 -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,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 mockDataContract: (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,12 @@
|
|
|
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): Promise<void>;
|
|
12
|
+
export declare function applyPolyfills(): Promise<void>;
|
package/loader/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
|
|
2
|
+
(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)}})();
|
|
3
|
+
export * from '../dist/esm/polyfills/index.js';
|
|
4
|
+
export * from '../dist/esm/loader.js';
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@everymatrix/general-footer-template",
|
|
3
|
+
"version": "1.16.1",
|
|
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
|
+
"files": [
|
|
13
|
+
"dist/",
|
|
14
|
+
"loader/"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
}
|
|
19
|
+
}
|