@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.
@@ -6530,8 +6530,10 @@ const CheckboxClass = compose$1(
6530
6530
  inputOutlineOffset: { ...checkboxElement, property: 'outline-offset' },
6531
6531
  inputOutlineColor: { ...checkboxElement, property: 'outline-color' },
6532
6532
  inputOutlineStyle: { ...checkboxElement, property: 'outline-style' },
6533
+ inputAlign: { ...checkboxElement, property: 'align-self' },
6533
6534
 
6534
6535
  inputContainerPadding: { ...component$1, property: 'padding' },
6536
+ inputContainerBackgroundColor: { ...component$1, property: 'background-color' },
6535
6537
  inputContainerBorderRadius: { ...component$1, property: 'border-radius' },
6536
6538
  inputContainerBorderWidth: { ...component$1, property: 'border-width' },
6537
6539
  inputContainerBorderColor: { ...component$1, property: 'border-color' },
@@ -6581,6 +6583,10 @@ const CheckboxClass = compose$1(
6581
6583
  height: 100%;
6582
6584
  }
6583
6585
 
6586
+ :host([full-width]) vaadin-checkbox {
6587
+ flex-grow: 1;
6588
+ }
6589
+
6584
6590
  vaadin-checkbox::part(checkbox) {
6585
6591
  margin: 0;
6586
6592
  }
@@ -18400,11 +18406,13 @@ const componentName$l = getComponentName('apps-list');
18400
18406
  const itemRenderer$4 = ({ name, icon, url }, _, ref) => `
18401
18407
  <a ${url ? `href="${url}" title="${url}"` : ''} target="_blank">
18402
18408
  <descope-list-item>
18403
- <descope-avatar
18404
- ${icon ? `img="${icon}"` : ''}
18405
- ${name ? `display-name="${name}" abbr=${limitAbbreviation(name)}` : ''}
18406
- size="${ref.logoSize || ref.size}"
18407
- ></descope-avatar>
18409
+ <div class="avatar-wrapper">
18410
+ <descope-avatar
18411
+ ${icon ? `img="${icon}"` : ''}
18412
+ ${name ? `display-name="${name}" abbr=${limitAbbreviation(name)}` : ''}
18413
+ size="${ref.logoSize || ref.size}"
18414
+ ></descope-avatar>
18415
+ </div>
18408
18416
  <descope-text
18409
18417
  variant="${ref.itemTextVariant}"
18410
18418
  mode="primary"
@@ -18476,7 +18484,7 @@ const AppsListClass = compose(
18476
18484
  property: ListItemClass.cssVarList.horizontalPaddingOverride,
18477
18485
  },
18478
18486
  itemAlignment: [
18479
- { selector: ListItemClass.componentName, property: ListItemClass.cssVarList.alignItemsOverride },
18487
+ { selector: () => '.avatar-wrapper', property: 'text-align' },
18480
18488
  { selector: TextClass.componentName, property: TextClass.cssVarList.textAlign },
18481
18489
  ]
18482
18490
  },
@@ -18504,6 +18512,14 @@ const AppsListClass = compose(
18504
18512
  overflow: hidden;
18505
18513
  }
18506
18514
 
18515
+ descope-list-item[variant="tile"] .avatar-wrapper {
18516
+ width: 100%;
18517
+ }
18518
+
18519
+ .avatar-wrapper {
18520
+ line-height: 0;
18521
+ }
18522
+
18507
18523
  a {
18508
18524
  text-decoration: none;
18509
18525
  }
@@ -18511,6 +18527,7 @@ const AppsListClass = compose(
18511
18527
  descope-text {
18512
18528
  ${TextClass.cssVarList.hostDirection}: var(${AppsListClass.cssVarList.hostDirection});
18513
18529
  max-width: 100%;
18530
+ width: 100%;
18514
18531
  }
18515
18532
  `,
18516
18533
  })