cob-cli 2.16.1 → 2.17.0

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.
Files changed (24) hide show
  1. package/customizations/keywords.js +1 -0
  2. package/customizations/keywords.styleResults.js +17 -0
  3. package/lib/task_lists/rsyncFilter.txt +1 -0
  4. package/package.json +1 -1
  5. package/templates/dashboards/dash/dist/dashboard.html +2 -2
  6. package/templates/dashboards/dash/dist/js/{app.e7f52f45.js → app.197de6fa.js} +3 -3
  7. package/templates/dashboards/dash/dist/js/app.197de6fa.js.map +1 -0
  8. package/templates/dashboards/dash/package-lock.json +2 -0
  9. package/templates/dashboards/dash/src/collector.js +4 -3
  10. package/templates/dashboards/dash/src/components/Board.vue +3 -3
  11. package/templates/dashboards/dash/src/components/Calendar.vue +24 -9
  12. package/templates/dashboards/dash/src/components/Kibana.vue +1 -0
  13. package/templates/dashboards/dash/src/components/Menu.vue +7 -4
  14. package/templates/dashboards/dash/src/components/TotalsValue.vue +2 -2
  15. package/templates/dashboards/dash/src/components/shared/Instance.vue +8 -2
  16. package/templates/dashboards/dash/src/{definition_dashboard.json → definition_dashboard_v0.json} +0 -0
  17. package/templates/dashboards/dash/src/definition_dashboard_v1.json +1 -0
  18. package/templates/keywords/audit/backend/scripts/_audit.groovy +9 -7
  19. package/templates/keywords/calc/backend/scripts/_calc.groovy +1 -1
  20. package/templates/keywords/styleResults/frontend/css/_styleResults.css +86 -0
  21. package/templates/keywords/styleResults/frontend/css/customizations.__MERGE__.css +1 -0
  22. package/templates/keywords/styleResults/frontend/js/cob/_styleResults.js +34 -0
  23. package/templates/keywords/styleResults/frontend/js/customizations2.__MERGE__.js +1 -0
  24. package/templates/dashboards/dash/dist/js/app.e7f52f45.js.map +0 -1
@@ -8,6 +8,7 @@ exports.option = {
8
8
  choices: [
9
9
  require("./keywords.calc").option,
10
10
  require("./keywords.audit").option,
11
+ require("./keywords.styleResults").option,
11
12
  require("./keywords.log").option
12
13
  ]}
13
14
  ]
@@ -0,0 +1,17 @@
1
+ exports.option = {
2
+ name: 'StyleResult - Allows for $styleResults in definitions (https://learning.cultofbits.com/docs/cob-platform/admins/managing-information/available-customizations/styleResults/)',
3
+ short: "StyleResults",
4
+ questions: [
5
+ ],
6
+ customization: async function (answers) {
7
+ console.log("\nApplying StyleResults keyword customizations ...")
8
+
9
+ const { copy } = require("../lib/task_lists/customize_copy");
10
+ const { mergeFiles } = require("../lib/task_lists/customize_mergeFiles");
11
+ const fe_target = "./recordm/customUI/"
12
+ await copy("../../templates/keywords/styleResults/frontend",fe_target)
13
+ const be_target = "./integrationm/"
14
+ await copy("../../templates/keywords/styleResults/backend",be_target)
15
+ await mergeFiles("Keyword.StyleResults")
16
+ }
17
+ }
@@ -1,4 +1,5 @@
1
1
  + /services/com.cultofbits.web.integration.properties
2
+ + /services/com.cultofbits.genesis.comm.properties
2
3
  + /services/com.cultofbits.confm.interact.properties
3
4
  + /services/com.cultofbits.integrationm.service.properties
4
5
  - /services/**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cob-cli",
3
- "version": "2.16.1",
3
+ "version": "2.17.0",
4
4
  "description": "A command line utility to help Cult of Bits partners develop with higher speed and reusing common code and best practices.",
5
5
  "preferGlobal": true,
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  <link href="localresource/dash/dist/css/app.40fc4e43.css" rel="stylesheet">
5
5
 
6
6
 
7
- <link href="localresource/dash/dist/js/app.e7f52f45.js" rel="preload" as="script">
7
+ <link href="localresource/dash/dist/js/app.197de6fa.js" rel="preload" as="script">
8
8
 
9
9
 
10
10
  <style>section.custom-resource{visibility: hidden;opacity:0;top:63px;left:0;right:0;bottom:0;padding:0;}</style>
@@ -20,6 +20,6 @@
20
20
  }
21
21
  </script>
22
22
 
23
- <script type="text/javascript" src="localresource/dash/dist/js/app.e7f52f45.js"></script>
23
+ <script type="text/javascript" src="localresource/dash/dist/js/app.197de6fa.js"></script>
24
24
 
25
25