@ceed/cds 1.36.0 → 1.37.0-next.1

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.
@@ -14,7 +14,7 @@ export interface CustomAlertProps {
14
14
  size?: AlertSize;
15
15
  }
16
16
  export type AlertProps = CustomAlertProps & Omit<JoyAlertProps, 'content' | 'actions' | 'title' | 'size'> & Omit<MotionProps, 'children'>;
17
- declare function Alert(props: AlertProps): React.JSX.Element;
17
+ declare function Alert(inProps: AlertProps): React.JSX.Element;
18
18
  declare namespace Alert {
19
19
  var displayName: string;
20
20
  }
@@ -16,7 +16,7 @@ export type FilterableCheckboxGroupProps = {
16
16
  maxHeight?: string | number;
17
17
  disabled?: boolean;
18
18
  };
19
- declare function FilterableCheckboxGroup(props: FilterableCheckboxGroupProps): React.JSX.Element;
19
+ declare function FilterableCheckboxGroup(inProps: FilterableCheckboxGroupProps): React.JSX.Element;
20
20
  declare namespace FilterableCheckboxGroup {
21
21
  var displayName: string;
22
22
  }
@@ -23,7 +23,7 @@ export interface PaginationProps extends React.ComponentProps<typeof PaginationR
23
23
  size?: 'sm' | 'md' | 'lg';
24
24
  variant?: 'standard' | 'compact';
25
25
  }
26
- declare function Pagination(props: PaginationProps): React.JSX.Element;
26
+ declare function Pagination(inProps: PaginationProps): React.JSX.Element;
27
27
  declare namespace Pagination {
28
28
  var displayName: string;
29
29
  }
@@ -8,6 +8,9 @@ import { MonthPickerProps } from '../MonthPicker';
8
8
  import { MonthRangePickerProps } from '../MonthRangePicker';
9
9
  import { PercentageInputProps } from '../PercentageInput';
10
10
  import type { SearchBarOwnerState, SearchBarProps, SearchBarSlot } from '../SearchBar/SearchBar';
11
+ import type { AlertProps } from '../Alert/Alert';
12
+ import type { PaginationProps } from '../Pagination/Pagination';
13
+ import type { FilterableCheckboxGroupProps } from '../FilterableCheckboxGroup/FilterableCheckboxGroup';
11
14
  declare module '@mui/joy/styles' {
12
15
  interface TypographySystemOverrides {
13
16
  'marketing-lg': true;
@@ -47,6 +50,18 @@ declare module '@mui/joy/styles' {
47
50
  defaultProps?: Partial<SearchBarProps>;
48
51
  styleOverrides?: StyleOverrides<SearchBarSlot, SearchBarOwnerState, Theme>;
49
52
  };
53
+ Alert?: {
54
+ defaultProps?: Partial<AlertProps>;
55
+ styleOverrides?: StyleOverrides<'root', {}, Theme>;
56
+ };
57
+ Pagination?: {
58
+ defaultProps?: Partial<PaginationProps>;
59
+ styleOverrides?: StyleOverrides<'root' | 'button' | 'container', {}, Theme>;
60
+ };
61
+ FilterableCheckboxGroup?: {
62
+ defaultProps?: Partial<FilterableCheckboxGroupProps>;
63
+ styleOverrides?: StyleOverrides<'root', {}, Theme>;
64
+ };
50
65
  }
51
66
  }
52
67
  declare module '@mui/joy/Avatar' {