@everymatrix/general-footer-template 1.56.0 → 1.56.3
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-clock.cjs.entry.js +7 -19
- package/dist/cjs/custom-content-section.cjs.entry.js +1482 -1678
- package/dist/cjs/general-footer-template.cjs.entry.js +11 -31
- package/dist/cjs/general-footer-template.cjs.js +2 -2
- package/dist/cjs/image-list.cjs.entry.js +4 -9
- package/dist/cjs/{index-c1afe75b.js → index-a7f717fa.js} +91 -227
- package/dist/cjs/link-section-list.cjs.entry.js +4 -7
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/custom-clock/custom-clock.js +5 -25
- package/dist/collection/components/custom-content-section/custom-content-section.js +2 -14
- package/dist/collection/components/general-footer-template/general-footer-template.js +10 -62
- package/dist/collection/components/image-list/image-list.js +3 -14
- package/dist/collection/components/link-section-list/link-section-list.js +3 -16
- package/dist/esm/custom-clock.entry.js +7 -19
- package/dist/esm/custom-content-section.entry.js +1482 -1678
- package/dist/esm/general-footer-template.entry.js +11 -31
- package/dist/esm/general-footer-template.js +3 -3
- package/dist/esm/image-list.entry.js +4 -9
- package/dist/esm/{index-732f640c.js → index-e6e68604.js} +91 -227
- package/dist/esm/link-section-list.entry.js +4 -7
- package/dist/esm/loader.js +2 -2
- package/dist/general-footer-template/general-footer-template.esm.js +1 -1
- package/dist/general-footer-template/p-076550c8.entry.js +1 -0
- package/dist/general-footer-template/p-16bd4237.js +2 -0
- package/dist/general-footer-template/p-2879096a.entry.js +1 -0
- package/dist/general-footer-template/{p-a8c0f5a0.entry.js → p-5f13c34b.entry.js} +2 -2
- package/dist/general-footer-template/p-d7132f51.entry.js +1 -0
- package/dist/general-footer-template/{p-3eda45d5.entry.js → p-f12f5263.entry.js} +1 -1
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.dev.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/package.json +1 -1
- package/dist/general-footer-template/p-1fc2e24a.js +0 -2
- package/dist/general-footer-template/p-55524eed.entry.js +0 -1
- package/dist/general-footer-template/p-a4b44512.entry.js +0 -1
- package/dist/general-footer-template/p-dd7ffd49.entry.js +0 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-footer-template/.stencil/packages/stencil/general-footer-template/stencil.config.dev.d.ts +0 -2
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-a7f717fa.js');
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* custom rules for component types
|
|
@@ -276,48 +276,28 @@ const GeneralFooterTemplateStyle0 = demoFooterCss;
|
|
|
276
276
|
const GeneralFooterTemplate = class {
|
|
277
277
|
constructor(hostRef) {
|
|
278
278
|
index.registerInstance(this, hostRef);
|
|
279
|
+
this.platform = getDevicePlatform();
|
|
279
280
|
/**
|
|
280
|
-
*
|
|
281
|
+
* Host element
|
|
281
282
|
*/
|
|
283
|
+
this.MANDATORY_FIELDS = ['endpoint', 'language', 'sections'];
|
|
284
|
+
this.language = undefined;
|
|
285
|
+
this.sections = undefined;
|
|
286
|
+
this.endpoint = undefined;
|
|
282
287
|
this.env = 'stage';
|
|
283
|
-
/**
|
|
284
|
-
* User roles
|
|
285
|
-
*/
|
|
286
288
|
this.userRoles = 'everyone';
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
289
|
+
this.userid = undefined;
|
|
290
|
+
this.session = undefined;
|
|
291
|
+
this.baseUrl = undefined;
|
|
290
292
|
this.navigateViaEvent = 'false';
|
|
291
|
-
/**
|
|
292
|
-
* Post Message event to be sent on navigation via Event
|
|
293
|
-
*/
|
|
294
293
|
this.postMessageEvent = 'NavigateTo';
|
|
295
|
-
/**
|
|
296
|
-
* custom styling by string content
|
|
297
|
-
*/
|
|
298
294
|
this.clientStyling = '';
|
|
299
|
-
/**
|
|
300
|
-
* custom styling by href
|
|
301
|
-
*/
|
|
302
295
|
this.clientStylingUrl = '';
|
|
303
|
-
/**
|
|
304
|
-
* custom translation by href
|
|
305
|
-
*/
|
|
306
296
|
this.translationUrl = '';
|
|
307
|
-
/**
|
|
308
|
-
* clockformat
|
|
309
|
-
*/
|
|
310
297
|
this.clockFormat = 'HH:MM:ss';
|
|
311
|
-
/**
|
|
312
|
-
* configurable time zone
|
|
313
|
-
*/
|
|
314
298
|
this.timeZone = '';
|
|
299
|
+
this.mbSource = undefined;
|
|
315
300
|
this.hasErrors = false;
|
|
316
|
-
this.platform = getDevicePlatform();
|
|
317
|
-
/**
|
|
318
|
-
* Host element
|
|
319
|
-
*/
|
|
320
|
-
this.MANDATORY_FIELDS = ['endpoint', 'language', 'sections'];
|
|
321
301
|
}
|
|
322
302
|
validateMandatoryFields() {
|
|
323
303
|
this.MANDATORY_FIELDS.forEach((field) => {
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-a7f717fa.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
/*
|
|
9
|
-
Stencil Client Patch Browser v4.
|
|
9
|
+
Stencil Client Patch Browser v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
10
10
|
*/
|
|
11
11
|
var patchBrowser = () => {
|
|
12
12
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('general-footer-template.cjs.js', document.baseURI).href));
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-a7f717fa.js');
|
|
6
6
|
|
|
7
7
|
const imageListCss = ".sc-image-list-h {\n display: block;\n margin: 0;\n padding: 0;\n}\n\n.ImageListContainer.sc-image-list {\n height: 100%;\n}\n.ImageListWrapper.sc-image-list {\n box-sizing: border-box;\n height: 100%;\n display: flex;\n flex-direction: column;\n max-width: 90%;\n margin: auto;\n padding: var(--emw--spacing-large, 20px) 0;\n}\n.ImageListSectionTitle.sc-image-list {\n width: 100%;\n display: flex;\n justify-content: left;\n align-content: center;\n padding: var(--emw--spacing-large, 20px) var(--emw--spacing-medium, 14px) var(--emw--spacing-x-large, 30px);\n color: var(--emw--footer-typography, var(--emw--color-thpography, #fff));\n text-transform: uppercase;\n font-size: 24px;\n font-weight: 100;\n}\n.ImageListLineup.sc-image-list {\n box-sizing: border-box;\n display: flex;\n flex-wrap: wrap;\n gap: var(--emw--spacing-x-large, 30px);\n justify-content: left;\n align-items: flex-start;\n padding-left: var(--emw--spacing-large, 20px);\n}\n.ImageListIcon.sc-image-list img.sc-image-list {\n max-height: var(--emw--size-medium-2x-minus, 40px);\n}\n\na.sc-image-list {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: flex-end;\n text-decoration: none;\n}\n\na.sc-image-list p.sc-image-list {\n text-decoration: none;\n color: var(--emw--color-gray-100, #666);\n margin: 0;\n}\n\n@container (max-width: 750px) {\n .ImageListSectionTitle.sc-image-list {\n justify-content: center;\n font-size: var(--emw--font-size-medium, 16px);\n color: var(--emw--footer-typography, var(--emw--color-thpography, #fff));\n padding: var(--emw--spacing-large, 20px) 0 var(--emw--spacing-x-large, 30px);\n justify-content: center;\n }\n .ImageListLineup.sc-image-list {\n justify-content: center;\n padding: 0;\n }\n}";
|
|
8
8
|
const ImageListStyle0 = imageListCss;
|
|
@@ -10,17 +10,12 @@ const ImageListStyle0 = imageListCss;
|
|
|
10
10
|
const ImageList = class {
|
|
11
11
|
constructor(hostRef) {
|
|
12
12
|
index.registerInstance(this, hostRef);
|
|
13
|
-
/**
|
|
14
|
-
* If this is true it will emit an event at the moment the content with url its clicked
|
|
15
|
-
*/
|
|
16
|
-
this.navigateViaEvent = false;
|
|
17
|
-
/**
|
|
18
|
-
* Post Message event to be sent on navigation via event
|
|
19
|
-
*/
|
|
20
|
-
this.postMessageEvent = '';
|
|
21
13
|
this.navigateLink = (url, target, externalLink) => {
|
|
22
14
|
window.postMessage({ type: this.postMessageEvent, path: url, url, target, externalLink }, window.location.href);
|
|
23
15
|
};
|
|
16
|
+
this.repeaterContent = undefined;
|
|
17
|
+
this.navigateViaEvent = false;
|
|
18
|
+
this.postMessageEvent = '';
|
|
24
19
|
}
|
|
25
20
|
render() {
|
|
26
21
|
var _a, _b, _c;
|