@bigbinary/neeto-commons-frontend 2.0.88 → 2.0.90
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 +4 -2
- package/cypress-utils.cjs.js +5 -8
- package/cypress-utils.cjs.js.map +1 -1
- package/cypress-utils.js +5 -8
- package/cypress-utils.js.map +1 -1
- package/package.json +1 -1
- package/react-utils.cjs.js +880 -860
- package/react-utils.cjs.js.map +1 -1
- package/react-utils.d.ts +65 -6
- package/react-utils.js +880 -862
- package/react-utils.js.map +1 -1
package/README.md
CHANGED
|
@@ -49,8 +49,10 @@ Category
|
|
|
49
49
|
- [useFieldSubmit](./docs/react/hooks.md#usefieldsubmit)
|
|
50
50
|
- [useDisplayErrorPage](./docs/react/hooks.md#usedisplayerrorpage)
|
|
51
51
|
- [useErrorDisplayStore](./docs/react/hooks.md#useerrordisplaystore)
|
|
52
|
-
- [useHotKeys](./docs/react/hooks.md#
|
|
53
|
-
- [useTimer](./docs/react/hooks.md#
|
|
52
|
+
- [useHotKeys](./docs/react/hooks.md#usehotkeys)
|
|
53
|
+
- [useTimer](./docs/react/hooks.md#usetimer)
|
|
54
|
+
- [useRegisterNavigationCheckpoint](./docs/react/hooks.md#useregisternavigationcheckpoint)
|
|
55
|
+
- [useNavigationCheckpoint](./docs/react/hooks.md#usenavigationcheckpoint)
|
|
54
56
|
- [useStateWithDependency](./docs/react/hooks.md#usestatewithdependency)
|
|
55
57
|
- [withImmutableActions](./docs/react/utils.md#withimmutableactions)
|
|
56
58
|
- [withTitle](./docs/react/utils.md#withtitle)
|
package/cypress-utils.cjs.js
CHANGED
|
@@ -1202,18 +1202,15 @@ var clickOnHelpSubTab = function clickOnHelpSubTab(tabSelector, tabText) {
|
|
|
1202
1202
|
cy.get(tabSelector).should("have.text", tabText).click();
|
|
1203
1203
|
};
|
|
1204
1204
|
var verifyHelpDocumentationLink = function verifyHelpDocumentationLink(_ref2) {
|
|
1205
|
-
var
|
|
1206
|
-
articleTitle = _ref2.articleTitle,
|
|
1205
|
+
var articleTitle = _ref2.articleTitle,
|
|
1207
1206
|
alias = _ref2.alias,
|
|
1208
1207
|
_ref2$requestCount = _ref2.requestCount,
|
|
1209
1208
|
requestCount = _ref2$requestCount === void 0 ? 3 : _ref2$requestCount;
|
|
1210
1209
|
cy.get(helpIconSelectors.helpButton).click();
|
|
1211
|
-
cy.
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
});
|
|
1216
|
-
cy.get(commonSelectors.articlePageTitle).should("have.text", articleTitle);
|
|
1210
|
+
cy.clickByRemoveTargetAttr(helpIconSelectors.documentationButton);
|
|
1211
|
+
cy.get(commonSelectors.articlePageTitle, {
|
|
1212
|
+
timeout: 10000
|
|
1213
|
+
}).should("have.text", articleTitle);
|
|
1217
1214
|
cy.interceptApi(alias, requestCount);
|
|
1218
1215
|
cy.go("back");
|
|
1219
1216
|
cy.waitForMultipleRequest("@".concat(alias), requestCount);
|