@descope/web-components-ui 2.2.0 → 2.2.2

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/index.esm.js CHANGED
@@ -4585,8 +4585,10 @@ const CheckboxClass = compose(
4585
4585
  inputOutlineOffset: { ...checkboxElement, property: 'outline-offset' },
4586
4586
  inputOutlineColor: { ...checkboxElement, property: 'outline-color' },
4587
4587
  inputOutlineStyle: { ...checkboxElement, property: 'outline-style' },
4588
+ inputAlign: { ...checkboxElement, property: 'align-self' },
4588
4589
 
4589
4590
  inputContainerPadding: { ...component$1, property: 'padding' },
4591
+ inputContainerBackgroundColor: { ...component$1, property: 'background-color' },
4590
4592
  inputContainerBorderRadius: { ...component$1, property: 'border-radius' },
4591
4593
  inputContainerBorderWidth: { ...component$1, property: 'border-width' },
4592
4594
  inputContainerBorderColor: { ...component$1, property: 'border-color' },
@@ -4636,6 +4638,10 @@ const CheckboxClass = compose(
4636
4638
  height: 100%;
4637
4639
  }
4638
4640
 
4641
+ :host([full-width]) vaadin-checkbox {
4642
+ flex-grow: 1;
4643
+ }
4644
+
4639
4645
  vaadin-checkbox::part(checkbox) {
4640
4646
  margin: 0;
4641
4647
  }
@@ -22373,11 +22379,13 @@ const componentName$c = getComponentName$1('apps-list');
22373
22379
  const itemRenderer$3 = ({ name, icon, url }, _, ref) => `
22374
22380
  <a ${url ? `href="${url}" title="${url}"` : ''} target="_blank">
22375
22381
  <descope-list-item>
22376
- <descope-avatar
22377
- ${icon ? `img="${icon}"` : ''}
22378
- ${name ? `display-name="${name}" abbr=${limitAbbreviation(name)}` : ''}
22379
- size="${ref.logoSize || ref.size}"
22380
- ></descope-avatar>
22382
+ <div class="avatar-wrapper">
22383
+ <descope-avatar
22384
+ ${icon ? `img="${icon}"` : ''}
22385
+ ${name ? `display-name="${name}" abbr=${limitAbbreviation(name)}` : ''}
22386
+ size="${ref.logoSize || ref.size}"
22387
+ ></descope-avatar>
22388
+ </div>
22381
22389
  <descope-text
22382
22390
  variant="${ref.itemTextVariant}"
22383
22391
  mode="primary"
@@ -22449,7 +22457,7 @@ const AppsListClass = compose$1(
22449
22457
  property: ListItemClass.cssVarList.horizontalPaddingOverride,
22450
22458
  },
22451
22459
  itemAlignment: [
22452
- { selector: ListItemClass.componentName, property: ListItemClass.cssVarList.alignItemsOverride },
22460
+ { selector: () => '.avatar-wrapper', property: 'text-align' },
22453
22461
  { selector: TextClass.componentName, property: TextClass.cssVarList.textAlign },
22454
22462
  ]
22455
22463
  },
@@ -22477,6 +22485,14 @@ const AppsListClass = compose$1(
22477
22485
  overflow: hidden;
22478
22486
  }
22479
22487
 
22488
+ descope-list-item[variant="tile"] .avatar-wrapper {
22489
+ width: 100%;
22490
+ }
22491
+
22492
+ .avatar-wrapper {
22493
+ line-height: 0;
22494
+ }
22495
+
22480
22496
  a {
22481
22497
  text-decoration: none;
22482
22498
  }
@@ -22484,6 +22500,7 @@ const AppsListClass = compose$1(
22484
22500
  descope-text {
22485
22501
  ${TextClass.cssVarList.hostDirection}: var(${AppsListClass.cssVarList.hostDirection});
22486
22502
  max-width: 100%;
22503
+ width: 100%;
22487
22504
  }
22488
22505
  `,
22489
22506
  })