@bigbinary/neeto-molecules 4.1.2 → 4.1.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import { LabelProps } from '@bigbinary/neetoui';
3
+ import { HelpPopoverProps } from './HelpPopover.js';
3
4
 
4
5
  interface SwitchOption {
5
6
  value: boolean;
@@ -132,6 +133,8 @@ type CodeSampleType = "html" | "react";
132
133
  */
133
134
  declare const ProductEmbed: React.FC<{
134
135
  title?: string;
136
+ titleHelpPopoverProps?: HelpPopoverProps;
137
+ subTitleHelpPopoverProps?: HelpPopoverProps;
135
138
  className?: string;
136
139
  goBackLink?: string;
137
140
  customEmbedScriptPath?: string;