@jield/solodb-react-components 1.0.9 → 1.0.11
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 +24 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +7722 -7559
- package/dist/index.js.map +1 -1
- package/dist/modules/run/components/shared/qr-scanner/selectRunWithQrScanner.d.ts +5 -0
- package/dist/modules/run/components/step/view/element/parts/runPartsResearchRun.d.ts +1 -2
- package/dist/modules/run/components/step/view/element/runStepChecklist.d.ts +1 -2
- package/dist/modules/run/components/step/view/element/runStepChecklistExecute.d.ts +6 -0
- package/dist/modules/run/components/step/view/element/stepRemark.d.ts +5 -2
- package/dist/modules/run/components/step/{execute → view}/runStepExecuteMinimal.d.ts +1 -1
- package/dist/utils/run/getRunStepPartActions.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Run, RunStep, RunStepPart
|
|
1
|
+
import { Run, RunStep, RunStepPart } from '@jield/solodb-typescript-core';
|
|
2
2
|
declare const RunPartsResearchRun: ({ run, runStep, runStepParts, editable, refetchFn, }: {
|
|
3
3
|
run: Run;
|
|
4
4
|
runStep: RunStep;
|
|
@@ -6,5 +6,4 @@ declare const RunPartsResearchRun: ({ run, runStep, runStepParts, editable, refe
|
|
|
6
6
|
editable?: boolean;
|
|
7
7
|
refetchFn?: () => void;
|
|
8
8
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
-
export declare const getAvailableRunStepPartActions: (runStepPart: RunStepPart) => RunStepPartActionEnum[];
|
|
10
9
|
export default RunPartsResearchRun;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Run, RunStep } from '@jield/solodb-typescript-core';
|
|
2
|
-
export default function RunStepChecklist({ run, runStep, reloadRunStep,
|
|
2
|
+
export default function RunStepChecklist({ run, runStep, reloadRunStep, }: {
|
|
3
3
|
run?: Run;
|
|
4
4
|
runStep?: RunStep;
|
|
5
5
|
reloadRunStep?: () => void;
|
|
6
|
-
movePage?: boolean;
|
|
7
6
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
export default StepRemark
|
|
1
|
+
import { RunStep } from '@jield/solodb-typescript-core';
|
|
2
|
+
export default function StepRemark({ runStep, reloadRunStep }: {
|
|
3
|
+
runStep?: RunStep;
|
|
4
|
+
reloadRunStep?: () => void;
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Run, RunStep } from '@jield/solodb-typescript-core';
|
|
2
|
-
export default function RunStepExecuteMinimal({ run, runStep, showOnlyEmphasizedParameters, reloadRunStepFn }: {
|
|
2
|
+
export default function RunStepExecuteMinimal({ run, runStep, showOnlyEmphasizedParameters, reloadRunStepFn, }: {
|
|
3
3
|
run: Run;
|
|
4
4
|
runStep: RunStep;
|
|
5
5
|
showOnlyEmphasizedParameters: boolean;
|