From 933349e4c5a447d8688d2af6c565d24e0afab071 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Fri, 15 Mar 2024 06:00:20 -0500 Subject: [PATCH 1/3] m --- src/Constants/Copy/howToSteps.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index 74ee3af..ed0abe4 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -45,12 +45,10 @@ export const Steps = () => ( GENERATE THE RESPONSE: From the Document List View, click the “Generate Responses'' button. Novdraft’s Intellidraft AI will generate the response and automatically navigate to - the interactive Document Editor. Note the Response Novos toggle button - - this controls the amount of logical branching used in forumilting hte - response language. You can edit the responses and save progress any time - by clicking the “Save Changes” button. Novos: A proprietary feature - distinct from the so-called LLM 'temperature' parameter. Controls the - amount of AI inference within a CRAC-type model used for argument logic. + the interactive Document Editor. Novos: A proprietary feature (distinct + from the so-called LLM 'temperature' parameter). Novos controls the + depth of factual inferences AI will make in articulating arguments; + modulated through a CRAC-based CoT prompt sequence.
DOWNLOAD YOUR RESPONSE DOCUMENT: From fc0c60fc080e4daebce5246fa28fa2f0a1989f88 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Sat, 16 Mar 2024 17:14:07 -0500 Subject: [PATCH 2/3] more --- src/Components/Case/CaseDetailsPage.js | 3 +- src/Components/Document/ReqEditPage.js | 10 +++--- src/Components/Modals/UploadModal.js | 2 +- src/Constants/Copy/howToSteps.js | 8 ++--- src/styles/docedit-page.scss | 49 +++++++++++++++++++++++--- 5 files changed, 56 insertions(+), 16 deletions(-) diff --git a/src/Components/Case/CaseDetailsPage.js b/src/Components/Case/CaseDetailsPage.js index 93eceda..b4dc1ee 100644 --- a/src/Components/Case/CaseDetailsPage.js +++ b/src/Components/Case/CaseDetailsPage.js @@ -29,7 +29,6 @@ const CaseDetailsPage = () => { const [isLoading, setIsLoading] = useState(false); const [docsAllowed, setDocsAllowed] = useState(null); const [docsGenerated, setDocsGenerated] = useState(null); - const [docTypeUploaded, setDocTypeUploaded] = useState(); const [document, setDocument] = useState(null); const { appState } = useContext(AppContext); const { group } = appState; @@ -72,7 +71,7 @@ const CaseDetailsPage = () => { } function handleIncomingDiscoveryRequest(docId, isComplaint, clientPosition) { - //ONLY TRIGGER FROM THIS SIDE (next page) IF IT IS COMBINED NUMBERED + //ONLY TRIGGER FROM THIS SIDE IF IT IS COMBINED NUMBERED setTimeout(generateRespIncomingDiscReq, 10000, docId, clientPosition); setTimeout(getDocument, 50000, docId); } diff --git a/src/Components/Document/ReqEditPage.js b/src/Components/Document/ReqEditPage.js index a147466..ca74ad9 100644 --- a/src/Components/Document/ReqEditPage.js +++ b/src/Components/Document/ReqEditPage.js @@ -436,7 +436,7 @@ const RequestEditPage = () => { {outgoingComesNow(state, fetchedCase)}
{/*displayCopy.prelimaryStatement*/} -
+
INSTRUCTIONS
{rogInstructions?.map((req, i) => (
@@ -445,7 +445,7 @@ const RequestEditPage = () => {
))}
-
+
DEFINITIONS
{rogDefinitions?.map((req, i) => (
@@ -454,11 +454,11 @@ const RequestEditPage = () => {
))}
-
+
INTERROGATORIES
{requests?.map((req, i) => (
-
{`${i + 1}.`}
+
{`${i + 1}.`}
{
))}
-
+
REQUESTS FOR PRODUCTION
{prodReq?.map((preq, i) => (
diff --git a/src/Components/Modals/UploadModal.js b/src/Components/Modals/UploadModal.js index 40368e6..c2791c5 100644 --- a/src/Components/Modals/UploadModal.js +++ b/src/Components/Modals/UploadModal.js @@ -259,7 +259,7 @@ const UploadModal = (props) => { marginRight: "8px", }} /> - YOU ARE UPLOADING A {currentType.toUpperCase()} + YOU ARE UPLOADING A {currentType.toUpperCase()}.

If you intended to upload a {otherType} - click "cancel", then select {otherType} diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index ed0abe4..d3ca767 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -45,10 +45,10 @@ export const Steps = () => ( GENERATE THE RESPONSE: From the Document List View, click the “Generate Responses'' button. Novdraft’s Intellidraft AI will generate the response and automatically navigate to - the interactive Document Editor. Novos: A proprietary feature (distinct - from the so-called LLM 'temperature' parameter). Novos controls the - depth of factual inferences AI will make in articulating arguments; - modulated through a CRAC-based CoT prompt sequence. + the interactive Document Editor. Novos: This feature controls the depth + of factual inferences AI will make in articulating arguments; modulated + through a CRAC-based CoT prompt sequence. It is distinct from the + so-called LLM 'temperature' parameter.

DOWNLOAD YOUR RESPONSE DOCUMENT: diff --git a/src/styles/docedit-page.scss b/src/styles/docedit-page.scss index eeea242..2a19871 100644 --- a/src/styles/docedit-page.scss +++ b/src/styles/docedit-page.scss @@ -34,6 +34,14 @@ margin-bottom: 25px; } +.request-editing-sub-wrapper { + display: flex; + flex-direction: column; + justify-content: center; + + margin-bottom: 25px; +} + .req-editing-sub-wrapper { display: flex; flex-direction: column; @@ -63,7 +71,8 @@ } .req-item-inner-div { - min-width: 720px; + min-width: 680px; + margin: 6px 0px; } .doc-editing-button-container { @@ -363,8 +372,15 @@ } .request-text-number-col { - min-width: 24px; - margin-right: 6px; + min-width: 22px; + margin-right: 0px; + margin-top: 3px; +} + +.request-text-number-col-low { + min-width: 22px; + margin-right: 2px; + margin-top: 6px; } .outer-div { @@ -433,7 +449,8 @@ } .reqedit-report-container { - width: 90%; + width: 95%; + margin-top: -16px; margin-left: 16px; } @@ -466,6 +483,30 @@ } } +@media only screen and (max-width: 1080px) and (min-width: 900px) { + .request-editing-sub-wrapper { + max-width: 650px; + } + + .request-text-up-row { + max-width: 650px; + } + + .req-edit-wrapper { + max-width: 650px; + } + + .req-item-inner-div { + min-width: 620px; + max-width: 650px; + } + + .reqedit-report-container { + margin-left: 0px; + margin-top: -16px; + } +} + .prelim-statement-container { margin-bottom: 8px; padding-left: 6px; From e1a712f144364732d953b59a9774b6a67308da42 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Sat, 16 Mar 2024 17:44:14 -0500 Subject: [PATCH 3/3] more --- src/pageElements/EditElement.js | 1 + src/styles/docedit-page.scss | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pageElements/EditElement.js b/src/pageElements/EditElement.js index 1868111..686c471 100644 --- a/src/pageElements/EditElement.js +++ b/src/pageElements/EditElement.js @@ -31,6 +31,7 @@ const EditElement = (props) => { style={{ width: "100%" }} onBlur={(e) => handleBlur(e, i)} tabIndex="0" + className="unshow-ele" >
) : (