fix: updating editors/stagedata to address issues in particular viya configurations as described in issue #33
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 25s

This commit is contained in:
Mihajlo Medjedovic 2023-09-25 16:24:50 +02:00
parent 9eb2451c2f
commit 94ab949df8
5 changed files with 14 additions and 19 deletions

View File

@ -21,7 +21,7 @@
"@clr/icons": "^13.0.2",
"@clr/ui": "^13.17.0",
"@handsontable/angular": "^13.1.0",
"@sasjs/adapter": "4.9.2",
"@sasjs/adapter": "4.10.1",
"@sasjs/utils": "^3.4.0",
"@sheet/crypto": "1.20211122.1",
"@types/d3-graphviz": "^2.6.7",
@ -3816,9 +3816,9 @@
}
},
"node_modules/@sasjs/adapter": {
"version": "4.9.2",
"resolved": "https://registry.npmjs.org/@sasjs/adapter/-/adapter-4.9.2.tgz",
"integrity": "sha512-WAWhJAbhsOwChbRB6N+dcgj9Tods2Hq/ygsCASALbjKvqxtYlUDVBoEhdedur0VdsWyUaTAqcwioCiCpWtcRZA==",
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/@sasjs/adapter/-/adapter-4.10.1.tgz",
"integrity": "sha512-/z6eR+3nNaLPyycK8YmpF+GAWNy0zgdl8n4cv4r45hjVBulPHVop7oj57JM/0uIPVOTT2V9IwrMCT/sFPq++vw==",
"hasInstallScript": true,
"dependencies": {
"@sasjs/utils": "2.52.0",
@ -22086,9 +22086,9 @@
"optional": true
},
"@sasjs/adapter": {
"version": "4.9.2",
"resolved": "https://registry.npmjs.org/@sasjs/adapter/-/adapter-4.9.2.tgz",
"integrity": "sha512-WAWhJAbhsOwChbRB6N+dcgj9Tods2Hq/ygsCASALbjKvqxtYlUDVBoEhdedur0VdsWyUaTAqcwioCiCpWtcRZA==",
"version": "4.10.1",
"resolved": "https://registry.npmjs.org/@sasjs/adapter/-/adapter-4.10.1.tgz",
"integrity": "sha512-/z6eR+3nNaLPyycK8YmpF+GAWNy0zgdl8n4cv4r45hjVBulPHVop7oj57JM/0uIPVOTT2V9IwrMCT/sFPq++vw==",
"requires": {
"@sasjs/utils": "2.52.0",
"axios": "0.27.2",

View File

@ -49,7 +49,7 @@
"@clr/icons": "^13.0.2",
"@clr/ui": "^13.17.0",
"@handsontable/angular": "^13.1.0",
"@sasjs/adapter": "4.9.2",
"@sasjs/adapter": "4.10.1",
"@sasjs/utils": "^3.4.0",
"@sheet/crypto": "1.20211122.1",
"@types/d3-graphviz": "^2.6.7",

View File

@ -27,7 +27,7 @@
},
"private": true,
"dependencies": {
"@sasjs/cli": "^4.10.1",
"@sasjs/core": "^4.46.6"
"@sasjs/cli": "^4.11.1",
"@sasjs/core": "^4.47.0"
}
}

View File

@ -186,20 +186,15 @@ options notes mprint;
libname approve "&dir";
/* take copy of webin file */
data _null_;
if symexist('_WEBIN_FILEREF1')
then ref=symget('_WEBIN_FILEREF1');
else if symexist('sasjs_tables') then do;
rc=filename('ref',"%sysfunc(pathname(work))/&dsn.csv");
ref='ref';
end;
if symexist('_WEBIN_FILEREF1') then ref=symget('_WEBIN_FILEREF1');
else if symexist('sasjs_tables') then ref='0ref'; /* no fileref created */
else ref='indata1';
call symputx('ref',ref);
putlog ref=;
run;
%mp_binarycopy(inref=&ref, outloc="&dir/_WEBIN_FILEREF1.txt")
%mp_binarycopy(inref=&ref,outloc="&dir/_WEBIN_FILEREF1.txt",iftrue=&ref ne 0ref)
/* take copy of macvars */