@bigbinary/neeto-molecules 1.10.6 → 1.11.0
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 +10 -24
- package/dist/Builder.js.map +1 -1
- package/dist/FloatingActionMenu.js +45 -41
- package/dist/FloatingActionMenu.js.map +1 -1
- package/dist/cjs/Builder.js +10 -24
- package/dist/cjs/Builder.js.map +1 -1
- package/dist/cjs/FloatingActionMenu.js +45 -41
- package/dist/cjs/FloatingActionMenu.js.map +1 -1
- package/package.json +3 -1
- package/types/Builder.d.ts +1 -3
- package/types/Currency.d.ts +1 -1
- package/types/EmojiPicker.d.ts +1 -1
- package/types/EmojiReactions.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
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>",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"@bigbinary/neeto-hotkeys": "^1.0.1",
|
|
76
76
|
"@bigbinary/neeto-icons": "^1.14.0",
|
|
77
77
|
"@bigbinary/neeto-molecules": "^1.0.5",
|
|
78
|
+
"@bigbinary/neeto-team-members-frontend": "2.13.1",
|
|
78
79
|
"@bigbinary/neeto-time-zones": "^0.5.0",
|
|
79
80
|
"@bigbinary/neetoui": "^5.2.32",
|
|
80
81
|
"@emoji-mart/data": "^1.1.2",
|
|
@@ -186,6 +187,7 @@
|
|
|
186
187
|
"@bigbinary/neeto-hotkeys": "^1.0.1",
|
|
187
188
|
"@bigbinary/neeto-icons": "latest",
|
|
188
189
|
"@bigbinary/neeto-molecules": "latest",
|
|
190
|
+
"@bigbinary/neeto-team-members-frontend": "latest",
|
|
189
191
|
"@bigbinary/neeto-time-zones": "latest",
|
|
190
192
|
"@bigbinary/neetoui": "latest",
|
|
191
193
|
"@emoji-mart/data": "^1.1.2",
|
package/types/Builder.d.ts
CHANGED
|
@@ -84,14 +84,12 @@ const ElementsPanel: React.FC<{
|
|
|
84
84
|
}) => void;
|
|
85
85
|
isDragDisabled?: boolean;
|
|
86
86
|
handleSelectElement: (index: number) => void;
|
|
87
|
-
|
|
88
|
-
fixedLastElementIndex: number;
|
|
87
|
+
selectedElementId: string;
|
|
89
88
|
selectedElementActions: SelectedElementAction[] | ((element: Element) => SelectedElementAction[]);
|
|
90
89
|
addAllElements: () => void;
|
|
91
90
|
isAddingAllElements?: boolean;
|
|
92
91
|
showElementsFillButton?: boolean;
|
|
93
92
|
isAddingNewElement?: boolean;
|
|
94
|
-
returnElementOnSelect?: boolean;
|
|
95
93
|
}>;
|
|
96
94
|
export const PropertiesPanel: React.FC<{
|
|
97
95
|
children: React.ReactNode;
|
package/types/Currency.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { SelectProps } from "@bigbinary/neetoui";
|
|
3
3
|
/**
|
|
4
4
|
*
|
|
5
|
-
*
|
|
5
|
+
* A component that allows you to select a currency.
|
|
6
6
|
*
|
|
7
7
|
* 
|
|
8
8
|
*
|
package/types/EmojiPicker.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ type Reaction = {
|
|
|
10
10
|
};
|
|
11
11
|
/**
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* A component to group user selected emojis and display them.
|
|
14
14
|
*
|
|
15
15
|
* 
|
|
16
16
|
*
|