@bigbinary/neeto-molecules 4.0.74 → 4.0.76
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/dist/Builder.js +44 -24
- package/dist/Builder.js.map +1 -1
- package/dist/ShareViaLink.js +4 -1
- package/dist/ShareViaLink.js.map +1 -1
- package/dist/cjs/Builder.js +44 -24
- package/dist/cjs/Builder.js.map +1 -1
- package/dist/cjs/ShareViaLink.js +4 -1
- package/dist/cjs/ShareViaLink.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +2 -1
- package/types/Builder.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.76",
|
|
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>",
|
package/src/translations/en.json
CHANGED
|
@@ -442,7 +442,8 @@
|
|
|
442
442
|
"description": "Once this link is changed, the current link will stop working.",
|
|
443
443
|
"submitButtonLabel": "Submit",
|
|
444
444
|
"cancelButtonLabel": "Cancel",
|
|
445
|
-
"validationError": "Please enter a valid path without special characters, except '/', '-' and '_'."
|
|
445
|
+
"validationError": "Please enter a valid path without special characters, except '/', '-' and '_'.",
|
|
446
|
+
"reservedPathError": "This path is reserved and cannot be used."
|
|
446
447
|
},
|
|
447
448
|
"socialMediaShare": {
|
|
448
449
|
"title": "Social share",
|
package/types/Builder.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TooltipProps } from '@bigbinary/neetoui';
|
|
2
|
+
|
|
1
3
|
type Element = {
|
|
2
4
|
label: string;
|
|
3
5
|
value: string;
|
|
@@ -82,6 +84,7 @@ declare const ElementsPanel: React.FC<{
|
|
|
82
84
|
anchoredElementIds?: string[];
|
|
83
85
|
isReorderDisabled?: boolean;
|
|
84
86
|
isDragElementsDisabled?: boolean;
|
|
87
|
+
isSelectedElementActionsDisabled?: boolean;
|
|
85
88
|
handleSelectElement: (index: number) => void;
|
|
86
89
|
selectedElementId: string;
|
|
87
90
|
selectedElementActions: SelectedElementAction[] | ((element: Element) => SelectedElementAction[]);
|
|
@@ -89,6 +92,7 @@ declare const ElementsPanel: React.FC<{
|
|
|
89
92
|
isAddingAllElements?: boolean;
|
|
90
93
|
showElementsFillButton?: boolean;
|
|
91
94
|
isAddingNewElement?: boolean;
|
|
95
|
+
selectedElementActionsTooltipProps?: Partial<TooltipProps>;
|
|
92
96
|
}>;
|
|
93
97
|
declare const PropertiesPanel: React.FC<{
|
|
94
98
|
children: React.ReactNode;
|