ru.coon 2.7.65 → 2.7.66

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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # Version 2.7.66, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/61028d8dc3e2af4282c533b5fd1368dce548e624)
2
+ * remove getCircularReplacer ([9fea84], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9fea8459fda6fd3fcaa5889828cf4cd0b6f509a7))
3
+ * HT-9879 fix: Исправление OpenURLButtonPlugin в части проверки наличия в url знака вопроса ([56a5db], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/56a5db0b7084db2439e67f3c1eb9b6c0dab8539b))
4
+ * update: CHANGELOG.md ([107df2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/107df2d447bec0a2698a306cbb1ac3b5093bed74))
5
+
1
6
  # Version 2.7.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/575aaa8ea4982726ce21f98300e95aa55ecbb906)
2
7
  * update: CHANGELOG.md ([72d780], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/72d7808927b07eb6ce33080c2b2e808b9b9a4a55))
3
8
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "2.7.65",
7
+ "version": "2.7.66",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -28,7 +28,7 @@ Ext.define('Coon.report.plugin.grid.OpenURLButtonPlugin', {
28
28
  if (!Ext.isEmpty(this.dynamicContextField) && !Ext.isEmpty(context.record)) {
29
29
  url += context.record.get(this.dynamicContextField);
30
30
  }
31
- let paramsURL = this.url && this.url.indexOf('?') == -1 ? '?' : '';
31
+ let paramsURL = Ext.isString(url) && url.includes('?') ? '': '?';
32
32
  for (const paramName in params) {
33
33
  if (params.hasOwnProperty(paramName)) {
34
34
  if (!Ext.isEmpty(params)) {
@@ -297,7 +297,6 @@ Ext.define('Coon.uielement.component.settings.UiAceEditor', {
297
297
  str = JSON5.stringify(json, {
298
298
  space: 4,
299
299
  quote: '\'',
300
- replacer: Coon.util.getCircularReplacer(),
301
300
  });
302
301
  this.setValue(str);
303
302
  } catch (ex) {
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '2.7.65',
3
+ number: '2.7.66',
4
4
  });