@bigbinary/neeto-molecules 1.6.3 → 1.6.5

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": "1.6.3",
3
+ "version": "1.6.5",
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>",
@@ -97,7 +97,6 @@
97
97
  "@storybook/react-webpack5": "^7.5.3",
98
98
  "@svgr/rollup": "^6.2.1",
99
99
  "@svgr/webpack": "^6.5.1",
100
- "@tailwindcss/line-clamp": "^0.4.4",
101
100
  "@testing-library/jest-dom": "5.16.2",
102
101
  "@testing-library/react": "^14.0.0",
103
102
  "@testing-library/react-hooks": "^8.0.0",
@@ -170,7 +169,7 @@
170
169
  "sass-loader": "10.0.2",
171
170
  "storybook": "^7.5.3",
172
171
  "storybook-dark-mode": "^3.0.1",
173
- "tailwindcss": "npm:@tailwindcss/postcss7-compat",
172
+ "tailwindcss": "^3.4.1",
174
173
  "yup": "^0.32.11",
175
174
  "zustand": "^4.1.2"
176
175
  },
@@ -206,7 +205,7 @@
206
205
  "react-router-dom": "^5.3.3",
207
206
  "react-syntax-highlighter": "^15.5.0",
208
207
  "react-toastify": "^9.0.8",
209
- "tailwindcss": "npm:@tailwindcss/postcss7-compat",
208
+ "tailwindcss": "^3.4.1",
210
209
  "webpack": "^5.75.0",
211
210
  "yup": "^0.32.11",
212
211
  "zustand": "^4.1.2"
@@ -564,7 +564,11 @@
564
564
  "daily": "Daily"
565
565
  },
566
566
  "settingsPage": {
567
- "noData": "No settings found"
567
+ "title": "Settings",
568
+ "noData": "No settings found",
569
+ "placeholder": {
570
+ "search": "Search settings"
571
+ }
568
572
  },
569
573
  "security": {
570
574
  "labels": {
@@ -651,6 +655,30 @@
651
655
  },
652
656
  "moreDropdown": {
653
657
  "tooltip": "Actions"
658
+ },
659
+ "productEmbed": {
660
+ "embedOptions": {
661
+ "title": "Embed options",
662
+ "description": "Configure embed options"
663
+ },
664
+ "backToShare": "Back to share",
665
+ "customization": {
666
+ "inline": {
667
+ "title": "Embed window customization",
668
+ "width": "Width",
669
+ "height": "Height",
670
+ "elementId": "Element id",
671
+ "sizeOfEmbedWindow": "Size of embed window"
672
+ }
673
+ },
674
+ "tab": {
675
+ "html": "HTML",
676
+ "preview": "Preview"
677
+ },
678
+ "position": {
679
+ "bottomRight": "Bottom Right",
680
+ "bottomLeft": "Bottom Left"
681
+ }
654
682
  }
655
683
  }
656
684
  }
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+
3
+ interface InlineCustomizationProps {
4
+ width?: number;
5
+ height?: number;
6
+ elementSelector?: string;
7
+ }
8
+
9
+ const ProductEmbed: React.FC<{
10
+ className?: string;
11
+ defaultCustomizations?: { inline?: InlineCustomizationProps };
12
+ goBackLink?: string;
13
+ id: string;
14
+ options: { inline?: { label: string; description: string } };
15
+ }>;
16
+
17
+ export default ProductEmbed;
@@ -89,7 +89,7 @@ type SettingCategory = {
89
89
  * @endexample
90
90
  */
91
91
  const Settings: React.FC<{
92
+ isTitleHidden?: boolean;
92
93
  categories: SettingCategory[];
93
- className?: string;
94
94
  }>;
95
95
  export default Settings;