react-luminus-components 1.3.175 → 1.3.176

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.
@@ -5,6 +5,7 @@ type ShortcutLinksSetupModalProps = {
5
5
  icon: string;
6
6
  }>;
7
7
  IconTypeArray: readonly string[];
8
+ pageTitlePrefix: string | undefined;
8
9
  };
9
- declare const ShortcutLinksSetupModal: ({ isOpen, closeModal, IconComponent, IconTypeArray, }: ShortcutLinksSetupModalProps) => import("react").JSX.Element;
10
+ declare const ShortcutLinksSetupModal: ({ isOpen, closeModal, IconComponent, IconTypeArray, pageTitlePrefix, }: ShortcutLinksSetupModalProps) => import("react").JSX.Element;
10
11
  export default ShortcutLinksSetupModal;
@@ -7,6 +7,7 @@ type ShortcutLinkSetupItemProps = {
7
7
  icon: string;
8
8
  }>;
9
9
  IconTypeArray: readonly string[];
10
+ pageTitlePrefix: string | undefined;
10
11
  };
11
- declare const ShortcutLinkSetupItem: ({ shortcutLink, setShortcutLink, IconComponent, IconTypeArray, }: ShortcutLinkSetupItemProps) => import("react").JSX.Element;
12
+ declare const ShortcutLinkSetupItem: ({ shortcutLink, setShortcutLink, IconComponent, IconTypeArray, pageTitlePrefix, }: ShortcutLinkSetupItemProps) => import("react").JSX.Element;
12
13
  export default ShortcutLinkSetupItem;