@bigbinary/neeto-molecules 1.0.60 → 1.0.61
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/BrowserSupport.cjs.js +83 -38
- package/dist/BrowserSupport.cjs.js.map +1 -1
- package/dist/BrowserSupport.js +85 -40
- package/dist/BrowserSupport.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +3 -3
- package/types/KeyboardShortcuts.d.ts +10 -6
- package/types/themeSidebar.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.61",
|
|
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
|
@@ -244,18 +244,18 @@
|
|
|
244
244
|
},
|
|
245
245
|
"browserSupport": {
|
|
246
246
|
"unsupportedBrowserVersion": {
|
|
247
|
-
"title": "Unsupported
|
|
247
|
+
"title": "Unsupported version",
|
|
248
248
|
"description": "You are using {{browserName}} {{browserVersion}}. neeto requires {{browserName}} {{requiredMinBrowserVersion}} or later to perform reliably. <downloadLink></downloadLink><contactUs></contactUs>"
|
|
249
249
|
},
|
|
250
250
|
"unsupportedBrowser": {
|
|
251
|
-
"title": "Unsupported
|
|
251
|
+
"title": "Unsupported browser",
|
|
252
252
|
"description": "You are using {{browserName}} {{browserVersion}}. neeto requires a modern browser to perform reliably.<contactUs></contactUs>"
|
|
253
253
|
},
|
|
254
254
|
"downloadLink": {
|
|
255
255
|
"main": "Please <button>download and install</button> the latest browser."
|
|
256
256
|
},
|
|
257
257
|
"contactUs": {
|
|
258
|
-
"main": "<button>Contact us</button> if you need any help."
|
|
258
|
+
"main": " <button>Contact us</button> if you need any help."
|
|
259
259
|
},
|
|
260
260
|
"unknownBrowserMsg": "an unknown browser"
|
|
261
261
|
},
|
|
@@ -96,7 +96,9 @@ interface ShortcutsObject {
|
|
|
96
96
|
* </>
|
|
97
97
|
* );
|
|
98
98
|
* @endexample
|
|
99
|
-
* This constant exposes the list of global shortcuts displayed by the pane to the
|
|
99
|
+
* This constant exposes the list of global shortcuts displayed by the pane to the
|
|
100
|
+
*
|
|
101
|
+
* product.
|
|
100
102
|
*
|
|
101
103
|
* It will give the following shortcuts:
|
|
102
104
|
*
|
|
@@ -119,7 +121,9 @@ interface ShortcutsObject {
|
|
|
119
121
|
* },
|
|
120
122
|
* }
|
|
121
123
|
* @endexample
|
|
122
|
-
* It can be used by the product to implement the shortcuts without needing to
|
|
124
|
+
* It can be used by the product to implement the shortcuts without needing to
|
|
125
|
+
*
|
|
126
|
+
* define the shortcut constant again.
|
|
123
127
|
*
|
|
124
128
|
* @example
|
|
125
129
|
*
|
|
@@ -127,10 +131,10 @@ interface ShortcutsObject {
|
|
|
127
131
|
* import { useHotKeys } from "neetocommons/react-utils";
|
|
128
132
|
*
|
|
129
133
|
* useHotKeys(
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
+
* KeyboardShortcuts.GLOBAL_SHORTCUTS.GLOBAL.submitForm.sequence,
|
|
135
|
+
* keyboardShortCutHandlers.SUBMIT_FORM,
|
|
136
|
+
* { mode: "global" }
|
|
137
|
+
* );
|
|
134
138
|
* @endexample
|
|
135
139
|
*/
|
|
136
140
|
const KeyboardShortcuts: {
|
package/types/themeSidebar.d.ts
CHANGED
|
@@ -43,7 +43,9 @@ interface Theme {
|
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
*
|
|
46
|
+
* ThemeSidebar allows us to configure the themes of entities like forms, quizzes
|
|
47
|
+
*
|
|
48
|
+
* and knowledge bases.
|
|
47
49
|
*
|
|
48
50
|
* @example
|
|
49
51
|
*
|