@sendoutcards/quantum-design-ui 1.8.31 → 1.8.32

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.es.js CHANGED
@@ -15964,8 +15964,8 @@ var Drawer = function (_a) {
15964
15964
  }
15965
15965
  };
15966
15966
  var backgroundStyle = {
15967
- backgroundColor: backgroundColor === 'blurredGlass' ? 'rgba(255, 255, 255, 0.2)' : backgroundColor,
15968
- backdropFilter: backgroundColor === 'blurredGlass' ? 'blur(10px)' : 'none'
15967
+ backgroundColor: backgroundColor === 'blurredGlass' ? 'rgba(255, 255, 255, 0.7)' : backgroundColor,
15968
+ backdropFilter: backgroundColor === 'blurredGlass' ? 'blur(70px)' : 'none'
15969
15969
  };
15970
15970
  return jsx(Div, {
15971
15971
  css: styles$p.drawerContainer(location),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendoutcards/quantum-design-ui",
3
- "version": "1.8.31",
3
+ "version": "1.8.32",
4
4
  "description": "UI component library for Quantum Design System",
5
5
  "module": "dist/index.es.js",
6
6
  "jsnext:main": "dist/index.es.js",
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import { HOCBaseProps } from "../../helpers/hoc-types/hocBasePropTypes";
3
- import { HOCMotionProps } from "../../helpers/hoc-types/hocMotionTypes";
4
- export declare type DivProps = {
5
- children?: React.ReactNode;
6
- outsideClick?: () => void;
7
- clickElementBypass?: string;
8
- } & HOCBaseProps & HOCMotionProps;
9
- export declare const Companion: React.ForwardRefExoticComponent<{
10
- children?: React.ReactNode;
11
- outsideClick?: (() => void) | undefined;
12
- clickElementBypass?: string | undefined;
13
- } & HOCBaseProps & {
14
- className?: string | undefined;
15
- motionKey?: string | number | undefined;
16
- id?: string | undefined;
17
- } & import("framer-motion").MotionProps & React.RefAttributes<HTMLDivElement>>;