@everymatrix/general-footer-template 1.55.0 → 1.56.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/custom-clock.cjs.entry.js +18 -6
- package/dist/cjs/custom-content-section.cjs.entry.js +189 -139
- package/dist/cjs/general-footer-template.cjs.entry.js +31 -11
- package/dist/cjs/general-footer-template.cjs.js +2 -2
- package/dist/cjs/image-list.cjs.entry.js +9 -4
- package/dist/cjs/{index-d85e54c5.js → index-c1afe75b.js} +194 -92
- package/dist/cjs/link-section-list.cjs.entry.js +7 -4
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/custom-clock/custom-clock.js +25 -5
- package/dist/collection/components/custom-content-section/custom-content-section.js +14 -2
- package/dist/collection/components/general-footer-template/general-footer-template.js +62 -10
- package/dist/collection/components/image-list/image-list.js +14 -3
- package/dist/collection/components/link-section-list/link-section-list.js +16 -3
- package/dist/esm/custom-clock.entry.js +18 -6
- package/dist/esm/custom-content-section.entry.js +189 -139
- package/dist/esm/general-footer-template.entry.js +31 -11
- package/dist/esm/general-footer-template.js +3 -3
- package/dist/esm/image-list.entry.js +9 -4
- package/dist/esm/{index-7f32a4a7.js → index-732f640c.js} +194 -92
- package/dist/esm/link-section-list.entry.js +7 -4
- 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-1fc2e24a.js +2 -0
- package/dist/general-footer-template/{p-f5a17365.entry.js → p-3eda45d5.entry.js} +1 -1
- package/dist/general-footer-template/p-55524eed.entry.js +1 -0
- package/dist/general-footer-template/p-a4b44512.entry.js +1 -0
- package/dist/general-footer-template/{p-cd14a119.entry.js → p-a8c0f5a0.entry.js} +2 -2
- package/dist/general-footer-template/p-dd7ffd49.entry.js +1 -0
- 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 +2 -0
- 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 +2 -0
- package/package.json +1 -1
- package/dist/general-footer-template/p-122e0353.entry.js +0 -1
- package/dist/general-footer-template/p-905acd21.js +0 -2
- package/dist/general-footer-template/p-9aeab1ea.entry.js +0 -1
- package/dist/general-footer-template/p-a6279430.entry.js +0 -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 +0 -2
- 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 +0 -2
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-footer-template/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
1
|
+
import { r as registerInstance, h } from './index-732f640c.js';
|
|
2
2
|
import { c as commonjsGlobal, g as getAugmentedNamespace } from './_commonjsHelpers-57e89916.js';
|
|
3
3
|
|
|
4
4
|
var decode = {};
|
|
@@ -3327,7 +3327,7 @@ function filter$1(test, node, recurse = true, limit = Infinity) {
|
|
|
3327
3327
|
function find(test, nodes, recurse, limit) {
|
|
3328
3328
|
const result = [];
|
|
3329
3329
|
/** Stack of the arrays we are looking at. */
|
|
3330
|
-
const nodeStack = [nodes];
|
|
3330
|
+
const nodeStack = [Array.isArray(nodes) ? nodes : [nodes]];
|
|
3331
3331
|
/** Stack of the indices within the arrays. */
|
|
3332
3332
|
const indexStack = [0];
|
|
3333
3333
|
for (;;) {
|
|
@@ -3381,20 +3381,19 @@ function findOneChild(test, nodes) {
|
|
|
3381
3381
|
* @returns The first node that passes `test`.
|
|
3382
3382
|
*/
|
|
3383
3383
|
function findOne(test, nodes, recurse = true) {
|
|
3384
|
-
|
|
3385
|
-
for (let i = 0; i <
|
|
3386
|
-
const node =
|
|
3387
|
-
if (
|
|
3388
|
-
|
|
3389
|
-
}
|
|
3390
|
-
else if (test(node)) {
|
|
3391
|
-
elem = node;
|
|
3384
|
+
const searchedNodes = Array.isArray(nodes) ? nodes : [nodes];
|
|
3385
|
+
for (let i = 0; i < searchedNodes.length; i++) {
|
|
3386
|
+
const node = searchedNodes[i];
|
|
3387
|
+
if (isTag(node) && test(node)) {
|
|
3388
|
+
return node;
|
|
3392
3389
|
}
|
|
3393
|
-
|
|
3394
|
-
|
|
3390
|
+
if (recurse && hasChildren(node) && node.children.length > 0) {
|
|
3391
|
+
const found = findOne(test, node.children, true);
|
|
3392
|
+
if (found)
|
|
3393
|
+
return found;
|
|
3395
3394
|
}
|
|
3396
3395
|
}
|
|
3397
|
-
return
|
|
3396
|
+
return null;
|
|
3398
3397
|
}
|
|
3399
3398
|
/**
|
|
3400
3399
|
* Checks if a tree of nodes contains at least one node passing a test.
|
|
@@ -3405,8 +3404,8 @@ function findOne(test, nodes, recurse = true) {
|
|
|
3405
3404
|
* @returns Whether a tree of nodes contains at least one node passing the test.
|
|
3406
3405
|
*/
|
|
3407
3406
|
function existsOne(test, nodes) {
|
|
3408
|
-
return nodes.some((
|
|
3409
|
-
(
|
|
3407
|
+
return (Array.isArray(nodes) ? nodes : [nodes]).some((node) => (isTag(node) && test(node)) ||
|
|
3408
|
+
(hasChildren(node) && existsOne(test, node.children)));
|
|
3410
3409
|
}
|
|
3411
3410
|
/**
|
|
3412
3411
|
* Search an array of nodes and their children for elements passing a test function.
|
|
@@ -3420,7 +3419,7 @@ function existsOne(test, nodes) {
|
|
|
3420
3419
|
*/
|
|
3421
3420
|
function findAll(test, nodes) {
|
|
3422
3421
|
const result = [];
|
|
3423
|
-
const nodeStack = [nodes];
|
|
3422
|
+
const nodeStack = [Array.isArray(nodes) ? nodes : [nodes]];
|
|
3424
3423
|
const indexStack = [0];
|
|
3425
3424
|
for (;;) {
|
|
3426
3425
|
if (indexStack[0] >= nodeStack[0].length) {
|
|
@@ -3434,11 +3433,9 @@ function findAll(test, nodes) {
|
|
|
3434
3433
|
continue;
|
|
3435
3434
|
}
|
|
3436
3435
|
const elem = nodeStack[0][indexStack[0]++];
|
|
3437
|
-
if (
|
|
3438
|
-
continue;
|
|
3439
|
-
if (test(elem))
|
|
3436
|
+
if (isTag(elem) && test(elem))
|
|
3440
3437
|
result.push(elem);
|
|
3441
|
-
if (elem.children.length > 0) {
|
|
3438
|
+
if (hasChildren(elem) && elem.children.length > 0) {
|
|
3442
3439
|
indexStack.unshift(0);
|
|
3443
3440
|
nodeStack.unshift(elem.children);
|
|
3444
3441
|
}
|
|
@@ -3568,6 +3565,19 @@ function getElementById(id, nodes, recurse = true) {
|
|
|
3568
3565
|
function getElementsByTagName(tagName, nodes, recurse = true, limit = Infinity) {
|
|
3569
3566
|
return filter$1(Checks["tag_name"](tagName), nodes, recurse, limit);
|
|
3570
3567
|
}
|
|
3568
|
+
/**
|
|
3569
|
+
* Returns all nodes with the supplied `className`.
|
|
3570
|
+
*
|
|
3571
|
+
* @category Legacy Query Functions
|
|
3572
|
+
* @param className Class name to search for.
|
|
3573
|
+
* @param nodes Nodes to search through.
|
|
3574
|
+
* @param recurse Also consider child nodes.
|
|
3575
|
+
* @param limit Maximum number of nodes to return.
|
|
3576
|
+
* @returns All nodes with the supplied `className`.
|
|
3577
|
+
*/
|
|
3578
|
+
function getElementsByClassName(className, nodes, recurse = true, limit = Infinity) {
|
|
3579
|
+
return filter$1(getAttribCheck("class", className), nodes, recurse, limit);
|
|
3580
|
+
}
|
|
3571
3581
|
/**
|
|
3572
3582
|
* Returns all nodes with the supplied `type`.
|
|
3573
3583
|
*
|
|
@@ -3935,6 +3945,7 @@ const index = /*#__PURE__*/Object.freeze({
|
|
|
3935
3945
|
getElements: getElements,
|
|
3936
3946
|
getElementById: getElementById,
|
|
3937
3947
|
getElementsByTagName: getElementsByTagName,
|
|
3948
|
+
getElementsByClassName: getElementsByClassName,
|
|
3938
3949
|
getElementsByTagType: getElementsByTagType,
|
|
3939
3950
|
removeSubsets: removeSubsets,
|
|
3940
3951
|
get DocumentPosition () { return DocumentPosition; },
|
|
@@ -5099,6 +5110,10 @@ function sourceOffset(inputCSS, position) {
|
|
|
5099
5110
|
}
|
|
5100
5111
|
|
|
5101
5112
|
class Node$4 {
|
|
5113
|
+
get proxyOf() {
|
|
5114
|
+
return this
|
|
5115
|
+
}
|
|
5116
|
+
|
|
5102
5117
|
constructor(defaults = {}) {
|
|
5103
5118
|
this.raws = {};
|
|
5104
5119
|
this[isClean$2] = false;
|
|
@@ -5245,9 +5260,12 @@ class Node$4 {
|
|
|
5245
5260
|
if (opts.index) {
|
|
5246
5261
|
pos = this.positionInside(opts.index);
|
|
5247
5262
|
} else if (opts.word) {
|
|
5248
|
-
let
|
|
5249
|
-
|
|
5250
|
-
|
|
5263
|
+
let inputString = ('document' in this.source.input)
|
|
5264
|
+
? this.source.input.document
|
|
5265
|
+
: this.source.input.css;
|
|
5266
|
+
let stringRepresentation = inputString.slice(
|
|
5267
|
+
sourceOffset(inputString, this.source.start),
|
|
5268
|
+
sourceOffset(inputString, this.source.end)
|
|
5251
5269
|
);
|
|
5252
5270
|
let index = stringRepresentation.indexOf(opts.word);
|
|
5253
5271
|
if (index !== -1) pos = this.positionInside(index);
|
|
@@ -5258,11 +5276,14 @@ class Node$4 {
|
|
|
5258
5276
|
positionInside(index) {
|
|
5259
5277
|
let column = this.source.start.column;
|
|
5260
5278
|
let line = this.source.start.line;
|
|
5261
|
-
let
|
|
5279
|
+
let inputString = ('document' in this.source.input)
|
|
5280
|
+
? this.source.input.document
|
|
5281
|
+
: this.source.input.css;
|
|
5282
|
+
let offset = sourceOffset(inputString, this.source.start);
|
|
5262
5283
|
let end = offset + index;
|
|
5263
5284
|
|
|
5264
5285
|
for (let i = offset; i < end; i++) {
|
|
5265
|
-
if (
|
|
5286
|
+
if (inputString[i] === '\n') {
|
|
5266
5287
|
column = 1;
|
|
5267
5288
|
line += 1;
|
|
5268
5289
|
} else {
|
|
@@ -5295,9 +5316,12 @@ class Node$4 {
|
|
|
5295
5316
|
};
|
|
5296
5317
|
|
|
5297
5318
|
if (opts.word) {
|
|
5298
|
-
let
|
|
5299
|
-
|
|
5300
|
-
|
|
5319
|
+
let inputString = ('document' in this.source.input)
|
|
5320
|
+
? this.source.input.document
|
|
5321
|
+
: this.source.input.css;
|
|
5322
|
+
let stringRepresentation = inputString.slice(
|
|
5323
|
+
sourceOffset(inputString, this.source.start),
|
|
5324
|
+
sourceOffset(inputString, this.source.end)
|
|
5301
5325
|
);
|
|
5302
5326
|
let index = stringRepresentation.indexOf(opts.word);
|
|
5303
5327
|
if (index !== -1) {
|
|
@@ -5451,10 +5475,6 @@ class Node$4 {
|
|
|
5451
5475
|
for (let i in opts) data[i] = opts[i];
|
|
5452
5476
|
return result.warn(text, data)
|
|
5453
5477
|
}
|
|
5454
|
-
|
|
5455
|
-
get proxyOf() {
|
|
5456
|
-
return this
|
|
5457
|
-
}
|
|
5458
5478
|
}
|
|
5459
5479
|
|
|
5460
5480
|
var node_1 = Node$4;
|
|
@@ -5475,6 +5495,10 @@ Comment$4.default = Comment$4;
|
|
|
5475
5495
|
let Node$2 = node_1;
|
|
5476
5496
|
|
|
5477
5497
|
class Declaration$4 extends Node$2 {
|
|
5498
|
+
get variable() {
|
|
5499
|
+
return this.prop.startsWith('--') || this.prop[0] === '$'
|
|
5500
|
+
}
|
|
5501
|
+
|
|
5478
5502
|
constructor(defaults) {
|
|
5479
5503
|
if (
|
|
5480
5504
|
defaults &&
|
|
@@ -5486,10 +5510,6 @@ class Declaration$4 extends Node$2 {
|
|
|
5486
5510
|
super(defaults);
|
|
5487
5511
|
this.type = 'decl';
|
|
5488
5512
|
}
|
|
5489
|
-
|
|
5490
|
-
get variable() {
|
|
5491
|
-
return this.prop.startsWith('--') || this.prop[0] === '$'
|
|
5492
|
-
}
|
|
5493
5513
|
}
|
|
5494
5514
|
|
|
5495
5515
|
var declaration = Declaration$4;
|
|
@@ -5520,6 +5540,16 @@ function markTreeDirty(node) {
|
|
|
5520
5540
|
}
|
|
5521
5541
|
|
|
5522
5542
|
class Container$7 extends Node$1 {
|
|
5543
|
+
get first() {
|
|
5544
|
+
if (!this.proxyOf.nodes) return undefined
|
|
5545
|
+
return this.proxyOf.nodes[0]
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
get last() {
|
|
5549
|
+
if (!this.proxyOf.nodes) return undefined
|
|
5550
|
+
return this.proxyOf.nodes[this.proxyOf.nodes.length - 1]
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5523
5553
|
append(...children) {
|
|
5524
5554
|
for (let child of children) {
|
|
5525
5555
|
let nodes = this.normalize(child, this.last);
|
|
@@ -5886,16 +5916,6 @@ class Container$7 extends Node$1 {
|
|
|
5886
5916
|
}
|
|
5887
5917
|
})
|
|
5888
5918
|
}
|
|
5889
|
-
|
|
5890
|
-
get first() {
|
|
5891
|
-
if (!this.proxyOf.nodes) return undefined
|
|
5892
|
-
return this.proxyOf.nodes[0]
|
|
5893
|
-
}
|
|
5894
|
-
|
|
5895
|
-
get last() {
|
|
5896
|
-
if (!this.proxyOf.nodes) return undefined
|
|
5897
|
-
return this.proxyOf.nodes[this.proxyOf.nodes.length - 1]
|
|
5898
|
-
}
|
|
5899
5919
|
}
|
|
5900
5920
|
|
|
5901
5921
|
Container$7.registerParse = dependant => {
|
|
@@ -5996,22 +6016,34 @@ Document$3.registerProcessor = dependant => {
|
|
|
5996
6016
|
var document = Document$3;
|
|
5997
6017
|
Document$3.default = Document$3;
|
|
5998
6018
|
|
|
6019
|
+
// This alphabet uses `A-Za-z0-9_-` symbols.
|
|
6020
|
+
// The order of characters is optimized for better gzip and brotli compression.
|
|
6021
|
+
// References to the same file (works both for gzip and brotli):
|
|
6022
|
+
// `'use`, `andom`, and `rict'`
|
|
6023
|
+
// References to the brotli default dictionary:
|
|
6024
|
+
// `-26T`, `1983`, `40px`, `75px`, `bush`, `jack`, `mind`, `very`, and `wolf`
|
|
5999
6025
|
let urlAlphabet =
|
|
6000
6026
|
'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict';
|
|
6027
|
+
|
|
6001
6028
|
let customAlphabet = (alphabet, defaultSize = 21) => {
|
|
6002
6029
|
return (size = defaultSize) => {
|
|
6003
6030
|
let id = '';
|
|
6004
|
-
|
|
6031
|
+
// A compact alternative for `for (var i = 0; i < step; i++)`.
|
|
6032
|
+
let i = size | 0;
|
|
6005
6033
|
while (i--) {
|
|
6034
|
+
// `| 0` is more compact and faster than `Math.floor()`.
|
|
6006
6035
|
id += alphabet[(Math.random() * alphabet.length) | 0];
|
|
6007
6036
|
}
|
|
6008
6037
|
return id
|
|
6009
6038
|
}
|
|
6010
6039
|
};
|
|
6040
|
+
|
|
6011
6041
|
let nanoid$1 = (size = 21) => {
|
|
6012
6042
|
let id = '';
|
|
6013
|
-
|
|
6043
|
+
// A compact alternative for `for (var i = 0; i < step; i++)`.
|
|
6044
|
+
let i = size | 0;
|
|
6014
6045
|
while (i--) {
|
|
6046
|
+
// `| 0` is more compact and faster than `Math.floor()`.
|
|
6015
6047
|
id += urlAlphabet[(Math.random() * 64) | 0];
|
|
6016
6048
|
}
|
|
6017
6049
|
return id
|
|
@@ -6183,6 +6215,10 @@ let sourceMapAvailable$1 = Boolean(SourceMapConsumer$1 && SourceMapGenerator$1);
|
|
|
6183
6215
|
let pathAvailable$1 = Boolean(resolve$1 && isAbsolute);
|
|
6184
6216
|
|
|
6185
6217
|
class Input$4 {
|
|
6218
|
+
get from() {
|
|
6219
|
+
return this.file || this.id
|
|
6220
|
+
}
|
|
6221
|
+
|
|
6186
6222
|
constructor(css, opts = {}) {
|
|
6187
6223
|
if (
|
|
6188
6224
|
css === null ||
|
|
@@ -6201,6 +6237,9 @@ class Input$4 {
|
|
|
6201
6237
|
this.hasBOM = false;
|
|
6202
6238
|
}
|
|
6203
6239
|
|
|
6240
|
+
this.document = this.css;
|
|
6241
|
+
if (opts.document) this.document = opts.document.toString();
|
|
6242
|
+
|
|
6204
6243
|
if (opts.from) {
|
|
6205
6244
|
if (
|
|
6206
6245
|
!pathAvailable$1 ||
|
|
@@ -6402,10 +6441,6 @@ class Input$4 {
|
|
|
6402
6441
|
}
|
|
6403
6442
|
return json
|
|
6404
6443
|
}
|
|
6405
|
-
|
|
6406
|
-
get from() {
|
|
6407
|
-
return this.file || this.id
|
|
6408
|
-
}
|
|
6409
6444
|
}
|
|
6410
6445
|
|
|
6411
6446
|
var input = Input$4;
|
|
@@ -6536,12 +6571,6 @@ let Container$3 = container;
|
|
|
6536
6571
|
let list$1 = list_1;
|
|
6537
6572
|
|
|
6538
6573
|
class Rule$3 extends Container$3 {
|
|
6539
|
-
constructor(defaults) {
|
|
6540
|
-
super(defaults);
|
|
6541
|
-
this.type = 'rule';
|
|
6542
|
-
if (!this.nodes) this.nodes = [];
|
|
6543
|
-
}
|
|
6544
|
-
|
|
6545
6574
|
get selectors() {
|
|
6546
6575
|
return list$1.comma(this.selector)
|
|
6547
6576
|
}
|
|
@@ -6551,6 +6580,12 @@ class Rule$3 extends Container$3 {
|
|
|
6551
6580
|
let sep = match ? match[0] : ',' + this.raw('between', 'beforeOpen');
|
|
6552
6581
|
this.selector = values.join(sep);
|
|
6553
6582
|
}
|
|
6583
|
+
|
|
6584
|
+
constructor(defaults) {
|
|
6585
|
+
super(defaults);
|
|
6586
|
+
this.type = 'rule';
|
|
6587
|
+
if (!this.nodes) this.nodes = [];
|
|
6588
|
+
}
|
|
6554
6589
|
}
|
|
6555
6590
|
|
|
6556
6591
|
var rule = Rule$3;
|
|
@@ -7590,6 +7625,8 @@ class Parser$1 {
|
|
|
7590
7625
|
if (prev && prev.type === 'rule' && !prev.raws.ownSemicolon) {
|
|
7591
7626
|
prev.raws.ownSemicolon = this.spaces;
|
|
7592
7627
|
this.spaces = '';
|
|
7628
|
+
prev.source.end = this.getPosition(token[2]);
|
|
7629
|
+
prev.source.end.offset += prev.raws.ownSemicolon.length;
|
|
7593
7630
|
}
|
|
7594
7631
|
}
|
|
7595
7632
|
}
|
|
@@ -7834,7 +7871,7 @@ class Parser$1 {
|
|
|
7834
7871
|
|
|
7835
7872
|
unknownWord(tokens) {
|
|
7836
7873
|
throw this.input.error(
|
|
7837
|
-
'Unknown word',
|
|
7874
|
+
'Unknown word ' + tokens[0][1],
|
|
7838
7875
|
{ offset: tokens[0][2] },
|
|
7839
7876
|
{ offset: tokens[0][2] + tokens[0][1].length }
|
|
7840
7877
|
)
|
|
@@ -7911,6 +7948,10 @@ Warning$2.default = Warning$2;
|
|
|
7911
7948
|
let Warning$1 = warning;
|
|
7912
7949
|
|
|
7913
7950
|
class Result$3 {
|
|
7951
|
+
get content() {
|
|
7952
|
+
return this.css
|
|
7953
|
+
}
|
|
7954
|
+
|
|
7914
7955
|
constructor(processor, root, opts) {
|
|
7915
7956
|
this.processor = processor;
|
|
7916
7957
|
this.messages = [];
|
|
@@ -7940,10 +7981,6 @@ class Result$3 {
|
|
|
7940
7981
|
warnings() {
|
|
7941
7982
|
return this.messages.filter(i => i.type === 'warning')
|
|
7942
7983
|
}
|
|
7943
|
-
|
|
7944
|
-
get content() {
|
|
7945
|
-
return this.css
|
|
7946
|
-
}
|
|
7947
7984
|
}
|
|
7948
7985
|
|
|
7949
7986
|
var result = Result$3;
|
|
@@ -8053,6 +8090,38 @@ function cleanMarks(node) {
|
|
|
8053
8090
|
let postcss$1 = {};
|
|
8054
8091
|
|
|
8055
8092
|
class LazyResult$2 {
|
|
8093
|
+
get content() {
|
|
8094
|
+
return this.stringify().content
|
|
8095
|
+
}
|
|
8096
|
+
|
|
8097
|
+
get css() {
|
|
8098
|
+
return this.stringify().css
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
get map() {
|
|
8102
|
+
return this.stringify().map
|
|
8103
|
+
}
|
|
8104
|
+
|
|
8105
|
+
get messages() {
|
|
8106
|
+
return this.sync().messages
|
|
8107
|
+
}
|
|
8108
|
+
|
|
8109
|
+
get opts() {
|
|
8110
|
+
return this.result.opts
|
|
8111
|
+
}
|
|
8112
|
+
|
|
8113
|
+
get processor() {
|
|
8114
|
+
return this.result.processor
|
|
8115
|
+
}
|
|
8116
|
+
|
|
8117
|
+
get root() {
|
|
8118
|
+
return this.sync().root
|
|
8119
|
+
}
|
|
8120
|
+
|
|
8121
|
+
get [Symbol.toStringTag]() {
|
|
8122
|
+
return 'LazyResult'
|
|
8123
|
+
}
|
|
8124
|
+
|
|
8056
8125
|
constructor(processor, css, opts) {
|
|
8057
8126
|
this.stringified = false;
|
|
8058
8127
|
this.processed = false;
|
|
@@ -8422,21 +8491,38 @@ class LazyResult$2 {
|
|
|
8422
8491
|
warnings() {
|
|
8423
8492
|
return this.sync().warnings()
|
|
8424
8493
|
}
|
|
8494
|
+
}
|
|
8495
|
+
|
|
8496
|
+
LazyResult$2.registerPostcss = dependant => {
|
|
8497
|
+
postcss$1 = dependant;
|
|
8498
|
+
};
|
|
8425
8499
|
|
|
8500
|
+
var lazyResult = LazyResult$2;
|
|
8501
|
+
LazyResult$2.default = LazyResult$2;
|
|
8502
|
+
|
|
8503
|
+
Root$2.registerLazyResult(LazyResult$2);
|
|
8504
|
+
Document$2.registerLazyResult(LazyResult$2);
|
|
8505
|
+
|
|
8506
|
+
let MapGenerator = mapGenerator;
|
|
8507
|
+
let parse$1 = parse_1;
|
|
8508
|
+
const Result$1 = result;
|
|
8509
|
+
let stringify$1 = stringify_1;
|
|
8510
|
+
|
|
8511
|
+
class NoWorkResult$1 {
|
|
8426
8512
|
get content() {
|
|
8427
|
-
return this.
|
|
8513
|
+
return this.result.css
|
|
8428
8514
|
}
|
|
8429
8515
|
|
|
8430
8516
|
get css() {
|
|
8431
|
-
return this.
|
|
8517
|
+
return this.result.css
|
|
8432
8518
|
}
|
|
8433
8519
|
|
|
8434
8520
|
get map() {
|
|
8435
|
-
return this.
|
|
8521
|
+
return this.result.map
|
|
8436
8522
|
}
|
|
8437
8523
|
|
|
8438
8524
|
get messages() {
|
|
8439
|
-
return
|
|
8525
|
+
return []
|
|
8440
8526
|
}
|
|
8441
8527
|
|
|
8442
8528
|
get opts() {
|
|
@@ -8448,30 +8534,31 @@ class LazyResult$2 {
|
|
|
8448
8534
|
}
|
|
8449
8535
|
|
|
8450
8536
|
get root() {
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
get [Symbol.toStringTag]() {
|
|
8455
|
-
return 'LazyResult'
|
|
8456
|
-
}
|
|
8457
|
-
}
|
|
8537
|
+
if (this._root) {
|
|
8538
|
+
return this._root
|
|
8539
|
+
}
|
|
8458
8540
|
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
};
|
|
8541
|
+
let root;
|
|
8542
|
+
let parser = parse$1;
|
|
8462
8543
|
|
|
8463
|
-
|
|
8464
|
-
|
|
8544
|
+
try {
|
|
8545
|
+
root = parser(this._css, this._opts);
|
|
8546
|
+
} catch (error) {
|
|
8547
|
+
this.error = error;
|
|
8548
|
+
}
|
|
8465
8549
|
|
|
8466
|
-
|
|
8467
|
-
|
|
8550
|
+
if (this.error) {
|
|
8551
|
+
throw this.error
|
|
8552
|
+
} else {
|
|
8553
|
+
this._root = root;
|
|
8554
|
+
return root
|
|
8555
|
+
}
|
|
8556
|
+
}
|
|
8468
8557
|
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
let stringify$1 = stringify_1;
|
|
8558
|
+
get [Symbol.toStringTag]() {
|
|
8559
|
+
return 'NoWorkResult'
|
|
8560
|
+
}
|
|
8473
8561
|
|
|
8474
|
-
class NoWorkResult$1 {
|
|
8475
8562
|
constructor(processor, css, opts) {
|
|
8476
8563
|
css = css.toString();
|
|
8477
8564
|
this.stringified = false;
|
|
@@ -8538,56 +8625,6 @@ class NoWorkResult$1 {
|
|
|
8538
8625
|
warnings() {
|
|
8539
8626
|
return []
|
|
8540
8627
|
}
|
|
8541
|
-
|
|
8542
|
-
get content() {
|
|
8543
|
-
return this.result.css
|
|
8544
|
-
}
|
|
8545
|
-
|
|
8546
|
-
get css() {
|
|
8547
|
-
return this.result.css
|
|
8548
|
-
}
|
|
8549
|
-
|
|
8550
|
-
get map() {
|
|
8551
|
-
return this.result.map
|
|
8552
|
-
}
|
|
8553
|
-
|
|
8554
|
-
get messages() {
|
|
8555
|
-
return []
|
|
8556
|
-
}
|
|
8557
|
-
|
|
8558
|
-
get opts() {
|
|
8559
|
-
return this.result.opts
|
|
8560
|
-
}
|
|
8561
|
-
|
|
8562
|
-
get processor() {
|
|
8563
|
-
return this.result.processor
|
|
8564
|
-
}
|
|
8565
|
-
|
|
8566
|
-
get root() {
|
|
8567
|
-
if (this._root) {
|
|
8568
|
-
return this._root
|
|
8569
|
-
}
|
|
8570
|
-
|
|
8571
|
-
let root;
|
|
8572
|
-
let parser = parse$1;
|
|
8573
|
-
|
|
8574
|
-
try {
|
|
8575
|
-
root = parser(this._css, this._opts);
|
|
8576
|
-
} catch (error) {
|
|
8577
|
-
this.error = error;
|
|
8578
|
-
}
|
|
8579
|
-
|
|
8580
|
-
if (this.error) {
|
|
8581
|
-
throw this.error
|
|
8582
|
-
} else {
|
|
8583
|
-
this._root = root;
|
|
8584
|
-
return root
|
|
8585
|
-
}
|
|
8586
|
-
}
|
|
8587
|
-
|
|
8588
|
-
get [Symbol.toStringTag]() {
|
|
8589
|
-
return 'NoWorkResult'
|
|
8590
|
-
}
|
|
8591
8628
|
}
|
|
8592
8629
|
|
|
8593
8630
|
var noWorkResult = NoWorkResult$1;
|
|
@@ -8600,7 +8637,7 @@ let Root$1 = root;
|
|
|
8600
8637
|
|
|
8601
8638
|
class Processor$1 {
|
|
8602
8639
|
constructor(plugins = []) {
|
|
8603
|
-
this.version = '8.
|
|
8640
|
+
this.version = '8.5.3';
|
|
8604
8641
|
this.plugins = this.normalize(plugins);
|
|
8605
8642
|
}
|
|
8606
8643
|
|
|
@@ -9027,6 +9064,15 @@ function sanitizeHtml(html, options, _recursing) {
|
|
|
9027
9064
|
if (skip) {
|
|
9028
9065
|
if (options.disallowedTagsMode === 'discard' || options.disallowedTagsMode === 'completelyDiscard') {
|
|
9029
9066
|
// We want the contents but not this tag
|
|
9067
|
+
if (frame.innerText && !hasText) {
|
|
9068
|
+
const escaped = escapeHtml(frame.innerText);
|
|
9069
|
+
if (options.textFilter) {
|
|
9070
|
+
result += options.textFilter(escaped, name);
|
|
9071
|
+
} else {
|
|
9072
|
+
result += escapeHtml(frame.innerText);
|
|
9073
|
+
}
|
|
9074
|
+
addedText = true;
|
|
9075
|
+
}
|
|
9030
9076
|
return;
|
|
9031
9077
|
}
|
|
9032
9078
|
tempResult = result;
|
|
@@ -9679,9 +9725,13 @@ const CustomContentSectionStyle0 = customContentSectionCss;
|
|
|
9679
9725
|
const CustomContentSection = class {
|
|
9680
9726
|
constructor(hostRef) {
|
|
9681
9727
|
registerInstance(this, hostRef);
|
|
9682
|
-
|
|
9683
|
-
|
|
9728
|
+
/**
|
|
9729
|
+
* If this is true it will emit an event at the moment the content with url its clicked
|
|
9730
|
+
*/
|
|
9684
9731
|
this.navigateViaEvent = false;
|
|
9732
|
+
/**
|
|
9733
|
+
* Post Message event to be sent on navigation via Event
|
|
9734
|
+
*/
|
|
9685
9735
|
this.postMessageEvent = '';
|
|
9686
9736
|
}
|
|
9687
9737
|
render() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
1
|
+
import { r as registerInstance, h } from './index-732f640c.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* custom rules for component types
|
|
@@ -272,28 +272,48 @@ const GeneralFooterTemplateStyle0 = demoFooterCss;
|
|
|
272
272
|
const GeneralFooterTemplate = class {
|
|
273
273
|
constructor(hostRef) {
|
|
274
274
|
registerInstance(this, hostRef);
|
|
275
|
-
this.platform = getDevicePlatform();
|
|
276
275
|
/**
|
|
277
|
-
*
|
|
276
|
+
* Environment segregation
|
|
278
277
|
*/
|
|
279
|
-
this.MANDATORY_FIELDS = ['endpoint', 'language', 'sections'];
|
|
280
|
-
this.language = undefined;
|
|
281
|
-
this.sections = undefined;
|
|
282
|
-
this.endpoint = undefined;
|
|
283
278
|
this.env = 'stage';
|
|
279
|
+
/**
|
|
280
|
+
* User roles
|
|
281
|
+
*/
|
|
284
282
|
this.userRoles = 'everyone';
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
283
|
+
/**
|
|
284
|
+
* If this is true it will emit an event at the moment the content with url its clicked
|
|
285
|
+
*/
|
|
288
286
|
this.navigateViaEvent = 'false';
|
|
287
|
+
/**
|
|
288
|
+
* Post Message event to be sent on navigation via Event
|
|
289
|
+
*/
|
|
289
290
|
this.postMessageEvent = 'NavigateTo';
|
|
291
|
+
/**
|
|
292
|
+
* custom styling by string content
|
|
293
|
+
*/
|
|
290
294
|
this.clientStyling = '';
|
|
295
|
+
/**
|
|
296
|
+
* custom styling by href
|
|
297
|
+
*/
|
|
291
298
|
this.clientStylingUrl = '';
|
|
299
|
+
/**
|
|
300
|
+
* custom translation by href
|
|
301
|
+
*/
|
|
292
302
|
this.translationUrl = '';
|
|
303
|
+
/**
|
|
304
|
+
* clockformat
|
|
305
|
+
*/
|
|
293
306
|
this.clockFormat = 'HH:MM:ss';
|
|
307
|
+
/**
|
|
308
|
+
* configurable time zone
|
|
309
|
+
*/
|
|
294
310
|
this.timeZone = '';
|
|
295
|
-
this.mbSource = undefined;
|
|
296
311
|
this.hasErrors = false;
|
|
312
|
+
this.platform = getDevicePlatform();
|
|
313
|
+
/**
|
|
314
|
+
* Host element
|
|
315
|
+
*/
|
|
316
|
+
this.MANDATORY_FIELDS = ['endpoint', 'language', 'sections'];
|
|
297
317
|
}
|
|
298
318
|
validateMandatoryFields() {
|
|
299
319
|
this.MANDATORY_FIELDS.forEach((field) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-732f640c.js';
|
|
2
|
+
export { s as setNonce } from './index-732f640c.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.26.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
1
|
+
import { r as registerInstance, h } from './index-732f640c.js';
|
|
2
2
|
|
|
3
3
|
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}";
|
|
4
4
|
const ImageListStyle0 = imageListCss;
|
|
@@ -6,12 +6,17 @@ const ImageListStyle0 = imageListCss;
|
|
|
6
6
|
const ImageList = class {
|
|
7
7
|
constructor(hostRef) {
|
|
8
8
|
registerInstance(this, hostRef);
|
|
9
|
+
/**
|
|
10
|
+
* If this is true it will emit an event at the moment the content with url its clicked
|
|
11
|
+
*/
|
|
12
|
+
this.navigateViaEvent = false;
|
|
13
|
+
/**
|
|
14
|
+
* Post Message event to be sent on navigation via event
|
|
15
|
+
*/
|
|
16
|
+
this.postMessageEvent = '';
|
|
9
17
|
this.navigateLink = (url, target, externalLink) => {
|
|
10
18
|
window.postMessage({ type: this.postMessageEvent, path: url, url, target, externalLink }, window.location.href);
|
|
11
19
|
};
|
|
12
|
-
this.repeaterContent = undefined;
|
|
13
|
-
this.navigateViaEvent = false;
|
|
14
|
-
this.postMessageEvent = '';
|
|
15
20
|
}
|
|
16
21
|
render() {
|
|
17
22
|
var _a, _b, _c;
|