@campxdev/react-blueprint 2.0.10 → 2.0.11

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.
@@ -1,4 +1,4 @@
1
- import { AccordionProps as MuiAccordionProps } from '@mui/material';
1
+ import { AccordionProps as MuiAccordionProps, SxProps } from '@mui/material';
2
2
  import { ReactNode } from 'react';
3
3
  export type AccordionProps = {
4
4
  title: ReactNode;
@@ -6,6 +6,7 @@ export type AccordionProps = {
6
6
  actions?: ReactNode;
7
7
  index?: number;
8
8
  errorKeys?: string[];
9
+ contentSx?: SxProps;
9
10
  expanded?: boolean | number;
10
11
  } & Omit<MuiAccordionProps, 'children' | 'content' | 'title' | 'index' | 'expanded' | 'actions'>;
11
12
  export declare const Accordion: (props: AccordionProps) => import("react/jsx-runtime").JSX.Element;
package/dist/index.d.ts CHANGED
@@ -454,6 +454,7 @@ type AccordionProps = {
454
454
  actions?: ReactNode;
455
455
  index?: number;
456
456
  errorKeys?: string[];
457
+ contentSx?: SxProps;
457
458
  expanded?: boolean | number;
458
459
  } & Omit<AccordionProps$1, 'children' | 'content' | 'title' | 'index' | 'expanded' | 'actions'>;
459
460
  declare const Accordion: (props: AccordionProps) => react_jsx_runtime.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/react-blueprint",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "React UI component library for CampX applications",
5
5
  "author": "CampX",
6
6
  "license": "MIT",