cronapp-lib-js 2.9.6-SP.11 → 2.9.6-SP.13
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.
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
//FIX_030 - CRONAPP-6933 Caixa de Seleção dinâmica trava e recarrega em loop quando são acessado pelas tecla Tab+seta para baixo. Componente não fica em foco quando acessado com a tecla Tab
|
|
32
32
|
//FIX_031 - CRONAPP-7237 Problemas ao usar a coluna "checkbox" na Grade
|
|
33
33
|
//FIX_032 - CRONAPP-10755 Caixa de seleção permanece aberta sobrepondo outros componentes ao mover o scroll para baixo
|
|
34
|
+
//FIX_033 - CRONAPP-10922 Caixa de seleção permanece aberta sobrepondo outros componentes ao voltar a pagina anterior
|
|
34
35
|
|
|
35
36
|
/**
|
|
36
37
|
* Kendo UI v2019.1.220 (http://www.telerik.com/kendo-ui)
|
|
@@ -23087,6 +23088,12 @@
|
|
|
23087
23088
|
that._showDirClass(animation);
|
|
23088
23089
|
}
|
|
23089
23090
|
element.data(EFFECTS, animation.effects).kendoStop(true).kendoAnimate(animation).attr('aria-hidden', false);
|
|
23091
|
+
//BEGIN FIX_033
|
|
23092
|
+
//NEW FIX_033
|
|
23093
|
+
window.addEventListener('popstate', () => {
|
|
23094
|
+
that.close(true);
|
|
23095
|
+
});
|
|
23096
|
+
//END FIX
|
|
23090
23097
|
}
|
|
23091
23098
|
},
|
|
23092
23099
|
_location: function (isFixed) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cronapp-lib-js",
|
|
3
|
-
"version": "2.9.6-SP.
|
|
3
|
+
"version": "2.9.6-SP.13",
|
|
4
4
|
"description": "Javascript library for CronApp's projects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
-
"minify": "node minify.js"
|
|
8
|
+
"minify": "node minify.js",
|
|
9
|
+
"build": "node minify.js"
|
|
9
10
|
},
|
|
10
11
|
"repository": {
|
|
11
12
|
"type": "git",
|