ru.coon 3.0.84 → 3.0.85

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/AGENTS.md ADDED
@@ -0,0 +1,26 @@
1
+ # Project Name
2
+
3
+ core of ExtJS 7 extensive expandable components
4
+
5
+ ## Code Style
6
+
7
+ - Follow ESLint configuration
8
+ - Use 2 spaces for indentation
9
+ - one file for one class
10
+
11
+ ## Architecture
12
+
13
+ - Follow DRY pattern
14
+ - Keep components under 200 lines
15
+ - Use dependency injection
16
+
17
+ ## Testing
18
+
19
+ - Write unit tests for all business logic
20
+ - Maintain >80% code coverage
21
+ - Use Jest for testing
22
+
23
+ ## Security
24
+
25
+ - Never commit API keys or secrets
26
+ - Validate all user inputs
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Version 3.0.85, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/d03e2cb1d340c80862f949a561196d650d1b720a)
2
+ * ## Fixes
3
+ * <span style='color:red'>fix</span> ([0c1ddd], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/0c1dddad599b412a7c363398f70bcecdb295ca32))
4
+
5
+ * update: CHANGELOG.md ([fc05a1], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/fc05a1851af51392f08e490b29524ca96249ec89))
6
+
1
7
  # Version 3.0.84, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/c37ea9fb9f014a9538fc9a30e6a6f95cc4a6d0cb)
2
8
  * ## Fixes
3
9
  * <span style='color:red'> OpenPanelPlugin, validation config on init</span> ([dcec0c], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/dcec0c0a8187b11ea4c107d8603e752273e72d4d))
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.84",
7
+ "version": "3.0.85",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
@@ -29,8 +29,12 @@ Ext.define('Coon.uielement.plugin.OpenPanelPlugin', {
29
29
  Coon.log.error('OpenPanelPlugin.init: viewModel is required');
30
30
  return;
31
31
  }
32
- if (!this.config.uiElementCd || !this.config.panelXType) {
33
- Coon.log.error('OpenPanelPlugin.init: uiElementCd||panelXType is required');
32
+ if (!this.config.uiElementCd) {
33
+ Coon.log.error('OpenPanelPlugin.init: uiElementCd is required');
34
+ return;
35
+ }
36
+ if (!this.config.panelXType) {
37
+ Coon.log.error('OpenPanelPlugin.init: panelXType is required');
34
38
  return;
35
39
  }
36
40
  this.initialized = true;
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.84',
3
+ number: '3.0.85',
4
4
  });