@descope/web-components-ui 1.0.399 → 1.0.400-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.
@@ -366,7 +366,14 @@ const themeToStyle = ({ globals, components }, themeName) => ({
366
366
  components: createComponentsTheme(components),
367
367
  });
368
368
 
369
- const useVar = (varName) => `var(${varName})`;
369
+ // allows to generate css variables with nested fallbacks
370
+ const useVar = (...varNames) => {
371
+ return varNames.reduceRight((acc, value) => {
372
+ if (value.startsWith('--')) return `var(${value}${acc ? `, ${acc}` : acc})`;
373
+
374
+ return `${value}${acc ? `, ${acc}` : acc}`;
375
+ }, '');
376
+ };
370
377
 
371
378
  const createHelperVars = (theme, prefix) => {
372
379
  const res = transformTheme(theme, [], (path, value) => {
@@ -5123,6 +5130,12 @@ const ContainerClass = compose(
5123
5130
  flexWrap: {},
5124
5131
 
5125
5132
  backgroundColor: {},
5133
+ backgroundImage: {},
5134
+ backgroundPositionX: {},
5135
+ backgroundPositionY: {},
5136
+ backgroundSize: {},
5137
+ backgroundRepeat: {},
5138
+
5126
5139
  color: {},
5127
5140
  borderRadius: {},
5128
5141
 
@@ -5170,7 +5183,15 @@ const container = {
5170
5183
  [compVars$5.itemsGrow]: '0',
5171
5184
  [compVars$5.hostWidth]: '100%',
5172
5185
  [compVars$5.boxShadow]: 'none',
5186
+
5173
5187
  [compVars$5.backgroundColor]: globalRefs$t.colors.surface.main,
5188
+
5189
+ [compVars$5.backgroundImage]: '', // we need to set a value to avoid inner containers from inheriting the parent's background image
5190
+ [compVars$5.backgroundPositionX]: 'center',
5191
+ [compVars$5.backgroundPositionY]: 'center',
5192
+ [compVars$5.backgroundSize]: 'cover',
5193
+ [compVars$5.backgroundRepeat]: 'no-repeat',
5194
+
5174
5195
  [compVars$5.color]: globalRefs$t.colors.surface.contrast,
5175
5196
  [compVars$5.borderRadius]: '0px',
5176
5197
  [compVars$5.hostDirection]: globalRefs$t.direction,
@@ -8989,9 +9010,9 @@ class RawPolicyValidation extends createBaseClass({ componentName: componentName
8989
9010
  updateLabel(val) {
8990
9011
  if (!val) {
8991
9012
  this.classList.add('hide-label');
8992
- this.label.innerHTML = '';
9013
+ this.label.textContent = '';
8993
9014
  } else {
8994
- this.label.innerHTML = val;
9015
+ this.label.textContent = val;
8995
9016
  this.classList.remove('hide-label');
8996
9017
  }
8997
9018
  }
@@ -9432,15 +9453,15 @@ class RawUploadFile extends BaseInputClass$2 {
9432
9453
  }
9433
9454
 
9434
9455
  updateTitle(val) {
9435
- this.title.innerHTML = val;
9456
+ this.title.textContent = val;
9436
9457
  }
9437
9458
 
9438
9459
  updateDescription(val) {
9439
- this.description.innerHTML = val;
9460
+ this.description.textContent = val;
9440
9461
  }
9441
9462
 
9442
9463
  updateButtonLabel(val) {
9443
- this.button.innerHTML = val;
9464
+ this.button.textContent = val;
9444
9465
  }
9445
9466
 
9446
9467
  updateButtonSize(val) {
@@ -10453,7 +10474,7 @@ const renderCodeSnippet = (value, lang) =>
10453
10474
 
10454
10475
  const renderText = (text) =>
10455
10476
  `<div class="row-details__value text" title="${text}">${text}</div>`;
10456
- const renderJson = (value) => renderCodeSnippet(JSON.stringify(value, null, 2), 'json');
10477
+ const renderJson = (value) => renderCodeSnippet(escapeXML(JSON.stringify(value, null, 2)), 'json');
10457
10478
  const renderXml = (value) => renderCodeSnippet(escapeXML(value), 'xml');
10458
10479
 
10459
10480
  const defaultRowDetailsValueRenderer = (value) => {