@bigbinary/neeto-team-members-frontend 2.11.5 → 2.12.1
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/README.md +31 -3
- package/app/javascript/src/translations/en.json +33 -1
- package/dist/index.cjs.js +459 -78
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +443 -64
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-team-members-frontend",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.1",
|
|
4
4
|
"description": "A repo acts as the source of truth for the new nano's structure, configs, data etc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-team-members-nano",
|
package/types.d.ts
CHANGED
|
@@ -187,6 +187,14 @@ export function RolesRadioGroup(props: {
|
|
|
187
187
|
roles: Role[];
|
|
188
188
|
}): JSX.Element;
|
|
189
189
|
|
|
190
|
+
export const Profile: {
|
|
191
|
+
Pane: JSXElementConstructor<{}>;
|
|
192
|
+
usePaneState: () => [
|
|
193
|
+
boolean,
|
|
194
|
+
(arg: boolean | ((prev: boolean) => boolean)) => void
|
|
195
|
+
];
|
|
196
|
+
};
|
|
197
|
+
|
|
190
198
|
export const MANAGE_MEMBERS_PERMISSION: string;
|
|
191
199
|
export const MANAGE_ROLES_PERMISSION: string;
|
|
192
200
|
export const VIEW_MEMBERS_PERMISSION: string;
|