@bigbinary/neeto-molecules 1.0.33 → 1.0.35
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 +1 -0
- package/dist/IntegrationWalkthroughModal.cjs.js +42 -0
- package/dist/IntegrationWalkthroughModal.cjs.js.map +1 -0
- package/dist/IntegrationWalkthroughModal.js +36 -0
- package/dist/IntegrationWalkthroughModal.js.map +1 -0
- package/dist/Schedule.cjs.js +2 -3
- package/dist/Schedule.cjs.js.map +1 -1
- package/dist/Schedule.js +2 -3
- package/dist/Schedule.js.map +1 -1
- package/dist/Sidebar.cjs.js +14 -14
- package/dist/Sidebar.cjs.js.map +1 -1
- package/dist/Sidebar.js +15 -15
- package/dist/Sidebar.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +8 -4
- package/types/IntegrationWalkthroughModal.d.ts +29 -0
- package/types/Sidebar.d.ts +2 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
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
|
@@ -74,10 +74,10 @@
|
|
|
74
74
|
"keyboardShortcuts": "Keyboard shortcuts",
|
|
75
75
|
"productSwitcher": "Product switcher",
|
|
76
76
|
"helpLinks": {
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
77
|
+
"liveChat": "Live chat",
|
|
78
|
+
"helpCenter": "Help center",
|
|
79
|
+
"whatsNew": "What's new",
|
|
80
|
+
"keyboardShortcuts": "Keyboard shortcuts"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"appSwitcher": {
|
|
@@ -280,6 +280,10 @@
|
|
|
280
280
|
"currentIpTitle": "Your current IP is",
|
|
281
281
|
"currentIpDescription": "Your current IP will be added to the allowed IP range by default. You will not be able to save the IP settings without your current IP address on the list"
|
|
282
282
|
},
|
|
283
|
+
"integrationWalkthroughModal": {
|
|
284
|
+
"header": "Check how it behaves",
|
|
285
|
+
"continue": "Continue"
|
|
286
|
+
},
|
|
283
287
|
"publishBlock": {
|
|
284
288
|
"viewDraftVersion": "View draft version",
|
|
285
289
|
"deleteDraftVersion": "Delete draft version. It'll not impact the published version",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* A component used to display walkthrough video of integration.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
*
|
|
8
|
+
* import React, { useState } from "react";
|
|
9
|
+
* import IntegrationWalkthroughModal from "@bigbinary/neeto-molecules/IntegrationWalkthroughModal";
|
|
10
|
+
*
|
|
11
|
+
* const Finish = () => {
|
|
12
|
+
* const [isModalOpen, setIsModalOpen] = useState(true);
|
|
13
|
+
*
|
|
14
|
+
* return (
|
|
15
|
+
* <IntegrationWalkthroughModal
|
|
16
|
+
* isOpen={isModalOpen}
|
|
17
|
+
* onClose={() => setIsModalOpen(false)}
|
|
18
|
+
* videoUrl="https://user-images.githubusercontent.com/39831309/232906732-43e139ac-4af8-4a59-9f4f-e96ebf436f75.mov"
|
|
19
|
+
* />
|
|
20
|
+
* );
|
|
21
|
+
* };
|
|
22
|
+
* @endexample
|
|
23
|
+
*/
|
|
24
|
+
const IntegrationWalkthroughModal: React.FC<{
|
|
25
|
+
videoUrl: string;
|
|
26
|
+
isOpen: boolean;
|
|
27
|
+
onClose: Function;
|
|
28
|
+
}>;
|
|
29
|
+
export default IntegrationWalkthroughModal;
|
package/types/Sidebar.d.ts
CHANGED
|
@@ -10,14 +10,12 @@ interface ProfileInfo {
|
|
|
10
10
|
changelogProps?: LinkType;
|
|
11
11
|
helpProps?: LinkType;
|
|
12
12
|
}
|
|
13
|
-
;
|
|
14
13
|
interface HelpLinks {
|
|
15
|
-
documentationProps?: LinkType;
|
|
16
|
-
keyboardShortcutProps?: LinkType;
|
|
17
14
|
liveChatProps?: LinkType;
|
|
15
|
+
helpCenterProps?: LinkType;
|
|
18
16
|
changelogProps?: LinkType;
|
|
17
|
+
keyboardShortcutProps?: LinkType;
|
|
19
18
|
}
|
|
20
|
-
;
|
|
21
19
|
/**
|
|
22
20
|
*
|
|
23
21
|
* Used in neeto products for showing options like: settings, profile, whats new,
|