@sendoutcards/quantum-design-ui 1.8.32 → 1.8.33

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.
@@ -0,0 +1,17 @@
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>>;
@@ -5,6 +5,7 @@ export declare type CheckboxProps = {
5
5
  type?: CheckboxType;
6
6
  label?: string;
7
7
  id?: string;
8
+ inputDisplay?: string;
8
9
  };
9
10
  export declare type CheckboxType = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'dark';
10
11
  export declare const Checkbox: FC<CheckboxProps>;
@@ -1,5 +1,6 @@
1
1
  import React, { FC } from 'react';
2
2
  import { HOCSpacingKeys } from "../../helpers/hoc-types/entityValueTypes";
3
+ import { Overflow } from "../../helpers/hoc-types/cssValueTypes";
3
4
  export declare type AccordionProps = {
4
5
  defaultActiveKeys?: (number | string)[];
5
6
  isExclusive?: boolean;
@@ -15,6 +16,7 @@ export declare type AccordionProps = {
15
16
  };
16
17
  inset?: HOCSpacingKeys;
17
18
  insetBody?: HOCSpacingKeys;
19
+ overflowBody?: Overflow;
18
20
  };
19
21
  export declare type AccordionSection = {
20
22
  key: number | string;
@@ -1,8 +1,10 @@
1
1
  import { FC } from 'react';
2
2
  import { HOCSpacingKeys } from "../../../helpers/hoc-types/entityValueTypes";
3
+ import { Overflow } from "../../../helpers/hoc-types/cssValueTypes";
3
4
  export declare type AccordionBodyProps = {
4
5
  eventKey: number | string;
5
6
  onAnimationComplete?: () => void;
7
+ overflow?: Overflow;
6
8
  insetBody?: HOCSpacingKeys;
7
9
  };
8
10
  export declare const AccordionBody: FC<AccordionBodyProps>;
@@ -1,5 +1,4 @@
1
1
  declare const _default: {
2
2
  accordionContainer: import("@emotion/utils").SerializedStyles;
3
- accordionBody: import("@emotion/utils").SerializedStyles;
4
3
  };
5
4
  export default _default;
@@ -21,7 +21,7 @@ export declare type DropdownLink = {
21
21
  linkColumns: LinkColumnType[];
22
22
  };
23
23
  export declare type StaticNavigationProps = {
24
- logo: LogoProps;
24
+ logo: React.ReactElement | LogoProps;
25
25
  accountSection?: React.ReactNode;
26
26
  links?: (DropdownLink | Link)[];
27
27
  zIndex?: number;
@@ -3,3 +3,4 @@ import { Story } from '@storybook/react/types-6-0';
3
3
  declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
4
4
  export default _default;
5
5
  export declare const StoryName: Story<StaticNavigationProps>;
6
+ export declare const customLogo: Story<StaticNavigationProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendoutcards/quantum-design-ui",
3
- "version": "1.8.32",
3
+ "version": "1.8.33",
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",