@descope/web-components-ui 2.2.3 → 2.2.5

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,14 @@ 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 },
15723
+ overlayBorderRadius: { property: () => ModalClass.cssVarList.overlay.borderRadius },
15719
15724
  },
15720
15725
  }),
15721
15726
  portalMixin({
@@ -15731,6 +15736,26 @@ const ModalClass = compose(
15731
15736
  { selector: () => '::part(content)', property: 'background-color' },
15732
15737
  { selector: () => '::part(overlay)', property: 'background-color' },
15733
15738
  ],
15739
+ backdropColor: {
15740
+ selector: () => '::part(backdrop)',
15741
+ property: 'background-color',
15742
+ },
15743
+ borderStyle: {
15744
+ selector: () => '::part(content)',
15745
+ property: 'border-style',
15746
+ },
15747
+ borderWidth: {
15748
+ selector: () => '::part(content)',
15749
+ property: 'border-width',
15750
+ },
15751
+ borderColor: {
15752
+ selector: () => '::part(content)',
15753
+ property: 'border-color',
15754
+ },
15755
+ borderRadius: {
15756
+ selector: () => '::part(content)',
15757
+ property: 'border-radius ',
15758
+ },
15734
15759
  width: { selector: () => '::part(overlay)', property: 'width' },
15735
15760
  shadow: { selector: () => '::part(overlay)', property: 'box-shadow' },
15736
15761
  },
@@ -21434,6 +21459,7 @@ const modal = {
21434
21459
  [compVars$5.overlayBackgroundColor]: globalRefs$p.colors.surface.main,
21435
21460
  [compVars$5.overlayShadow]: globalRefs$p.shadow.wide['2xl'],
21436
21461
  [compVars$5.overlayWidth]: '540px',
21462
+ [compVars$5.overlayBackdropColor]: 'hsla(214, 53%, 23%, 0.16)',
21437
21463
  };
21438
21464
 
21439
21465
  const vars$C = {