@leapdevuk/component-toolbox 0.0.112 → 0.0.114

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 { GridRowParams } from '@mui/x-data-grid-pro';
1
+ import { GridRowParams, GridSlotsComponentsProps } from '@mui/x-data-grid-pro';
2
2
  import { GridInitialStatePro } from '@mui/x-data-grid-pro/models/gridStatePro';
3
3
  interface IAccordionTableProps {
4
4
  maxHeight: any;
@@ -9,6 +9,7 @@ interface IAccordionTableProps {
9
9
  id: (row: any) => any;
10
10
  rowHeight?: number;
11
11
  headerHeight?: number;
12
+ componentsProps?: GridSlotsComponentsProps | undefined;
12
13
  }
13
14
  declare const LCTAccordionTable: import('@emotion/styled').StyledComponent<IAccordionTableProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
14
15
  export default LCTAccordionTable;
@@ -15,6 +15,6 @@ export declare const formatDate: (date?: Date | null, startOfDate?: boolean, end
15
15
  export declare const parseDate: (date: any, formatString: string | undefined, localDateformat: string, parseKeyboardVal?: boolean) => string | null;
16
16
  export declare const getLocale: (leapContext?: LeapContext) => Locale | undefined;
17
17
  export declare const getLocalDisplayFormattedDate: (value?: string | Date, locale?: Locale) => string;
18
- export declare const getLocalDisplayFormattedDateTime: (value?: string | Date, locale?: Locale) => string;
18
+ export declare const getLocalDisplayFormattedDateTime: (value?: string | Date, locale?: Locale, adjustTimezone?: boolean) => string;
19
19
  export declare const getDateTimeWithOffset: (date: string) => Date;
20
20
  export declare const isStringNullOrUndefined: (value?: string | null) => boolean;