@mxenabled/mxui 1.0.0-alpha.bb1 → 1.0.0-alpha.v3

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.
@@ -4,5 +4,5 @@ type CategoryIconType = {
4
4
  icon: string;
5
5
  };
6
6
  export declare const UncategorizedCategoryIcon: CategoryIconType;
7
- export declare const IconList: CategoryIconType[];
7
+ export declare const CategoryIconList: CategoryIconType[];
8
8
  export {};
@@ -1,2 +1,3 @@
1
1
  export { CategoryIcon } from './CategoryIcon';
2
+ export { CategoryIconList } from './CategoryIconList';
2
3
  export { CategoryGuids, CategoryIconVariants } from './Constants';
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { ToolbarProps } from '@mui/material/Toolbar';
3
3
  type FooterProps = {
4
+ hasSecondaryAction?: boolean;
4
5
  isPrimaryDisabled?: boolean;
5
6
  onPrimaryAction?: (formData: any) => void;
6
7
  onSecondaryAction: () => void;