@descope/web-components-ui 2.2.3 → 2.2.4

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
@@ -15713,9 +15713,13 @@ const customMixin$7 = (superclass) =>
15713
15713
  const ModalClass = compose(
15714
15714
  createStyleMixin({
15715
15715
  mappings: {
15716
+ overlayBackdropColor: { property: () => ModalClass.cssVarList.overlay.backdropColor },
15716
15717
  overlayBackgroundColor: { property: () => ModalClass.cssVarList.overlay.backgroundColor },
15717
15718
  overlayShadow: { property: () => ModalClass.cssVarList.overlay.shadow },
15718
15719
  overlayWidth: { property: () => ModalClass.cssVarList.overlay.width },
15720
+ overlayBorderWidth: { property: () => ModalClass.cssVarList.overlay.borderWidth },
15721
+ overlayBorderStyle: { property: () => ModalClass.cssVarList.overlay.borderStyle },
15722
+ overlayBorderColor: { property: () => ModalClass.cssVarList.overlay.borderColor },
15719
15723
  },
15720
15724
  }),
15721
15725
  portalMixin({
@@ -15731,6 +15735,22 @@ const ModalClass = compose(
15731
15735
  { selector: () => '::part(content)', property: 'background-color' },
15732
15736
  { selector: () => '::part(overlay)', property: 'background-color' },
15733
15737
  ],
15738
+ backdropColor: {
15739
+ selector: () => '::part(backdrop)',
15740
+ property: 'background-color',
15741
+ },
15742
+ borderStyle: {
15743
+ selector: () => '::part(content)',
15744
+ property: 'border-style',
15745
+ },
15746
+ borderWidth: {
15747
+ selector: () => '::part(content)',
15748
+ property: 'border-width',
15749
+ },
15750
+ borderColor: {
15751
+ selector: () => '::part(content)',
15752
+ property: 'border-color',
15753
+ },
15734
15754
  width: { selector: () => '::part(overlay)', property: 'width' },
15735
15755
  shadow: { selector: () => '::part(overlay)', property: 'box-shadow' },
15736
15756
  },
@@ -21434,6 +21454,7 @@ const modal = {
21434
21454
  [compVars$5.overlayBackgroundColor]: globalRefs$p.colors.surface.main,
21435
21455
  [compVars$5.overlayShadow]: globalRefs$p.shadow.wide['2xl'],
21436
21456
  [compVars$5.overlayWidth]: '540px',
21457
+ [compVars$5.overlayBackdropColor]: 'hsla(214, 53%, 23%, 0.16)',
21437
21458
  };
21438
21459
 
21439
21460
  const vars$C = {