fluent-cerner-js 1.1.0-4 → 1.1.1-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.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
- package/src/openApplicationAsync.spec.ts +4 -4
- package/src/openApplicationAsync.ts +2 -3
- package/src/openOrganizerTabAsync.spec.ts +1 -1
- package/src/openPatientTabAsync.spec.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -399,8 +399,8 @@ function generateOpenApplicationArgumentString(args) {
|
|
|
399
399
|
const quickOpen = qo;
|
|
400
400
|
const quickOpenStr = quickOpen && isTab && !isOrgLevel ? "+" : "";
|
|
401
401
|
const surroundStr = isTab ? "^" : "";
|
|
402
|
-
return `/${arg}=${surroundStr}${value}${quickOpenStr}${surroundStr}`;
|
|
403
|
-
}).join(" ")
|
|
402
|
+
return `/${arg.toUpperCase()}=${surroundStr}${value}${quickOpenStr}${surroundStr}`;
|
|
403
|
+
}).join(" ");
|
|
404
404
|
}
|
|
405
405
|
var modeMap = /* @__PURE__ */ new Map();
|
|
406
406
|
modeMap.set("by solution name", 0);
|