@esrf/daiquiri-lib 5.4.0 → 5.5.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.d.ts +129 -4
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1473 -1455
- package/dist/index.mjs.map +1 -1
- package/dist/node-schema.json +812 -0
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { JSONSchema7 } from 'json-schema';
|
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import react__default, { ComponentType, ReactElement, PropsWithChildren, ReactNode, ChangeEvent, KeyboardEvent, Component } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
-
import { Placement } from 'react-bootstrap/esm/types';
|
|
7
6
|
|
|
8
7
|
interface HardwareError {
|
|
9
8
|
property: string;
|
|
@@ -1464,6 +1463,14 @@ type RegulationSchema = Hardware<{
|
|
|
1464
1463
|
}>;
|
|
1465
1464
|
declare const RegulationHardwareDesc: HardwareDesc<RegulationSchema>;
|
|
1466
1465
|
|
|
1466
|
+
/**
|
|
1467
|
+
* Mirrors react-bootstrap's `Placement` (itself re-exported from
|
|
1468
|
+
* `@restart/ui`/`@popperjs/core` via an inline `import()` type), spelled out
|
|
1469
|
+
* as a literal union so widget-options codegen (which walks these
|
|
1470
|
+
* interfaces with the TypeScript compiler API to produce a JSON Schema) can
|
|
1471
|
+
* represent it — codegen can't resolve through the `import()` type node.
|
|
1472
|
+
*/
|
|
1473
|
+
type PopupPlacement = 'auto' | 'auto-start' | 'auto-end' | 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' | 'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end';
|
|
1467
1474
|
interface RegulationOptions extends HardwareWidgetOptions {
|
|
1468
1475
|
/** Default step size to use for up / down arrows */
|
|
1469
1476
|
step?: number;
|
|
@@ -1480,7 +1487,7 @@ interface RegulationOptions extends HardwareWidgetOptions {
|
|
|
1480
1487
|
/** Popup button title */
|
|
1481
1488
|
buttonTitle?: string;
|
|
1482
1489
|
/** Popup placement */
|
|
1483
|
-
popupPlacement?:
|
|
1490
|
+
popupPlacement?: PopupPlacement;
|
|
1484
1491
|
}
|
|
1485
1492
|
|
|
1486
1493
|
declare function RegulationLoop(props: HardwareWidgetProps<RegulationSchema, RegulationOptions>): react_jsx_runtime.JSX.Element;
|
|
@@ -2395,7 +2402,11 @@ interface YamlComponent {
|
|
|
2395
2402
|
[option: string]: unknown;
|
|
2396
2403
|
}
|
|
2397
2404
|
|
|
2398
|
-
|
|
2405
|
+
interface YamlTodoOptions {
|
|
2406
|
+
/** Message to display, defaults to "TODO" */
|
|
2407
|
+
message?: string;
|
|
2408
|
+
}
|
|
2409
|
+
declare function Yaml$1(props: YamlComponent & YamlTodoOptions): react_jsx_runtime.JSX.Element;
|
|
2399
2410
|
|
|
2400
2411
|
declare function Yaml(props: YamlComponent): react_jsx_runtime.JSX.Element;
|
|
2401
2412
|
|
|
@@ -2522,6 +2533,14 @@ declare function registerYamlComponent(name: string, component: ComponentType<an
|
|
|
2522
2533
|
* Such components are wrapped inside a `Panel`.
|
|
2523
2534
|
*/
|
|
2524
2535
|
declare function registerYamlComponents(map: Record<string, ComponentType<any>>): void;
|
|
2536
|
+
/**
|
|
2537
|
+
* Get the current mapping from Yaml `type` to registered component.
|
|
2538
|
+
*/
|
|
2539
|
+
declare function getYamlComponents(): Record<string, ComponentType<any>>;
|
|
2540
|
+
/**
|
|
2541
|
+
* Get the current mapping from Yaml `type` to registered container.
|
|
2542
|
+
*/
|
|
2543
|
+
declare function getYamlContainers(): Record<string, ComponentType<any>>;
|
|
2525
2544
|
|
|
2526
2545
|
type Defined<T> = T extends undefined ? never : T;
|
|
2527
2546
|
declare function assertKeyExpected<T>(yamlNode: YamlNode | undefined, key: string, value: T): asserts value is Defined<T>;
|
|
@@ -2598,6 +2617,112 @@ declare namespace asserts_d {
|
|
|
2598
2617
|
export { type asserts_d_Schema as Schema, asserts_d_assertBoolean as assertBoolean, asserts_d_assertDataCollectionId as assertDataCollectionId, asserts_d_assertKeyExpected as assertKeyExpected, asserts_d_assertNoUnknownKeys as assertNoUnknownKeys, asserts_d_assertNumber as assertNumber, asserts_d_assertOptionalArgs as assertOptionalArgs, asserts_d_assertOptionalBackend as assertOptionalBackend, asserts_d_assertOptionalBoolean as assertOptionalBoolean, asserts_d_assertOptionalKwargs as assertOptionalKwargs, asserts_d_assertOptionalListOfType as assertOptionalListOfType, asserts_d_assertOptionalNumber as assertOptionalNumber, asserts_d_assertOptionalNumberList as assertOptionalNumberList, asserts_d_assertOptionalString as assertOptionalString, asserts_d_assertOptionalStringList as assertOptionalStringList, asserts_d_assertOptionalStringOrStringList as assertOptionalStringOrStringList, asserts_d_assertString as assertString, asserts_d_assertStringList as assertStringList, asserts_d_assertStringMappingRecord as assertStringMappingRecord };
|
|
2599
2618
|
}
|
|
2600
2619
|
|
|
2620
|
+
interface YamlRowOptions {
|
|
2621
|
+
/** Inline CSS styles applied to the row */
|
|
2622
|
+
style?: Record<string, any>;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
interface YamlColOptions {
|
|
2626
|
+
/** Inline CSS styles applied to the column */
|
|
2627
|
+
style?: Record<string, any>;
|
|
2628
|
+
/** Bootstrap column width (1-12) */
|
|
2629
|
+
xs?: number;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
interface YamlContainerOptions {
|
|
2633
|
+
/** Options spread onto the underlying Container */
|
|
2634
|
+
options?: Record<string, any>;
|
|
2635
|
+
/** Inline CSS styles applied to the row */
|
|
2636
|
+
style?: Record<string, any>;
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
interface YamlGridOptions {
|
|
2640
|
+
/** Grid panel title */
|
|
2641
|
+
title?: string;
|
|
2642
|
+
/** CSS grid-template-columns value */
|
|
2643
|
+
columns?: string;
|
|
2644
|
+
/** CSS grid-template-rows value */
|
|
2645
|
+
rows?: string;
|
|
2646
|
+
/** Inline CSS styles applied to the column */
|
|
2647
|
+
style?: Record<string, any>;
|
|
2648
|
+
}
|
|
2649
|
+
/** Options for an individual cell within a grid. */
|
|
2650
|
+
interface YamlGridCellOptions {
|
|
2651
|
+
/** Number of grid columns this cell spans */
|
|
2652
|
+
columnSpan?: number;
|
|
2653
|
+
/** Number of grid rows this cell spans */
|
|
2654
|
+
rowSpan?: number;
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
interface YamlPanelOptions {
|
|
2658
|
+
/** Options spread onto the underlying Panel */
|
|
2659
|
+
options?: Record<string, any>;
|
|
2660
|
+
/** Panel title */
|
|
2661
|
+
title?: string;
|
|
2662
|
+
/** Center the panel's contents */
|
|
2663
|
+
centerContent?: boolean;
|
|
2664
|
+
/** Inline CSS styles applied to the underlying Panel */
|
|
2665
|
+
style?: Record<string, any>;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
/** Options for an individual tab within Tabs */
|
|
2669
|
+
interface YamlTabsRowOptions {
|
|
2670
|
+
/** Tab header */
|
|
2671
|
+
title?: string;
|
|
2672
|
+
/** Inline CSS styles applied to the tab's content pane */
|
|
2673
|
+
style?: Record<string, any>;
|
|
2674
|
+
}
|
|
2675
|
+
interface YamlTabsOptions {
|
|
2676
|
+
/** Options spread onto the underlying Panel */
|
|
2677
|
+
options?: Record<string, any>;
|
|
2678
|
+
/** Tabs panel title */
|
|
2679
|
+
title: string;
|
|
2680
|
+
/** Inline CSS styles applied to the underlying Panel */
|
|
2681
|
+
style?: Record<string, any>;
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
/** A section header spanning both columns of the form grid. */
|
|
2685
|
+
interface YamlFormHeaderOptions {
|
|
2686
|
+
type: 'formheader';
|
|
2687
|
+
/** Header text */
|
|
2688
|
+
title?: string;
|
|
2689
|
+
/** Inline CSS styles applied to the form's content grid */
|
|
2690
|
+
style?: Record<string, any>;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
/** A single labelled row of the form, rendering its content in the second column. */
|
|
2694
|
+
interface YamlFormRowOptions {
|
|
2695
|
+
/** Type of the node rendered in the row's content column (e.g. 'hardware') */
|
|
2696
|
+
type: string;
|
|
2697
|
+
/** Row title shown in the first column; for hardware rows, defaults to the hardware id's name if unset */
|
|
2698
|
+
title: string;
|
|
2699
|
+
/** For hardware rows, show the hardware state under the title */
|
|
2700
|
+
stateinheader?: boolean;
|
|
2701
|
+
/** CSS align-self applied to the title cell */
|
|
2702
|
+
titlealign?: string;
|
|
2703
|
+
/** Hardware id, used for the default title and passed to the rendered content node */
|
|
2704
|
+
id?: string;
|
|
2705
|
+
/** Hardware variant passed to the rendered content node */
|
|
2706
|
+
variant?: string;
|
|
2707
|
+
/** Passed through to the rendered content node */
|
|
2708
|
+
options?: Record<string, any>;
|
|
2709
|
+
/** Passed through to the rendered content node */
|
|
2710
|
+
even: boolean;
|
|
2711
|
+
}
|
|
2712
|
+
interface YamlFormOptions {
|
|
2713
|
+
/** Form panel title */
|
|
2714
|
+
title?: string;
|
|
2715
|
+
/** Options spread onto the underlying Panel */
|
|
2716
|
+
options?: Record<string, any>;
|
|
2717
|
+
/** Inline CSS styles applied to the form's content grid */
|
|
2718
|
+
style?: Record<string, any>;
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
interface YamlLabelOptions {
|
|
2722
|
+
/** Text to display */
|
|
2723
|
+
label: string;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2601
2726
|
interface RuntimeHooks {
|
|
2602
2727
|
useHardware?: (id: string | null) => AnyHardware | null;
|
|
2603
2728
|
useHardwareChangeActions?: (name: string | null) => HardwareChangeActions;
|
|
@@ -2730,4 +2855,4 @@ declare function getHardwareVariantComponent(type: string, variant: string): Har
|
|
|
2730
2855
|
*/
|
|
2731
2856
|
declare function getAllHardwareDesc(): Record<string, HardwareDesc<AnyHardware>>;
|
|
2732
2857
|
|
|
2733
|
-
export { type ActuatorSchema, AirBearing, AirBearingHardwareDesc, Mocks$o as AirBearingMocks, AirBearingProtected, type AirBearingSchema, AirBearingSimulator, AirBearingState, type AnyHardware, type AnySchema, type BaseHardware, BaseHardwareDesc, Info as BaseInfo, type BaseInfoWidgetOptions, Mocks$p as BaseMocks, Name as BaseName, type BaseNameWidgetOptions, Property as BaseProperty, type BasePropertyWidgetOptions, DefaultState as BaseState, Beamviewer, BeamviewerHardwareDesc, Mocks$n as BeamviewerMocks, type BeamviewerSchema, BeamviewerSimulator, EnergyManagerDefault, EnergyManagerHardwareDesc, Mocks$m as EnergyManagerMocks, type EnergyManagerSchema, EnergyManagerSimulator, EnergyManagerState, ErrorObject, type ExceptionFromProcedure, formatting_d as Formatting, Frontend, FrontendHardwareDesc, Mocks$l as FrontendMocks, type FrontendSchema, FullSizer, Gauge$1 as Gauge, GaugeHardwareDesc, Gauge as GaugeIndicator, Mocks$k as GaugeMocks, type GaugeSchema, type GaugeWidgetOptions, type GenericSchema, type Hardware, type HardwareComponentType, type HardwareDesc, type HardwareFromProcedure, HardwareInputNumber, HardwareNumericStep, type HardwareObjectProps, schema_d as HardwareSchema, HardwareState, HardwareTemplate, types_d as HardwareTypes, type HardwareVariant, InfiniteKnob360, KeyError, Laser, LaserHardwareDesc, LaserHeating, LaserHeatingHardwareDesc, Mocks$i as LaserHeatingMocks, type LaserHeatingSchema, type LaserHeatingWidgetOptions, Mocks$j as LaserMocks, type LaserSchema, type LaserWidgetOptions, Light, LightHardwareDesc, Mocks$h as LightMocks, type LightSchema, LimaBinning, LimaDefault, TomoDetectorSize$2 as LimaDescription, LimaHardwareDesc, TomoDetectorSize$1 as LimaImageRoi, Mocks$g as LimaMocks, type LimaSchema, LimaRoiShape as LimaShape, LimaSimulator, TomoDetectorSize as LimaSize, LimaState, LimaTransformation, LoadingObject, MeasurementGroup as MeasurementGroupDefault, MeasurementGroupHardwareDesc, Mocks$f as MeasurementGroupMocks, type MeasurementGroupSchema, MeasurementGroupSimulator, MissingComponentObject, MissingKeysError, MissingObject, type Monitor, MonitorHardware, MonitorHardwareProperty, MonitorPanel, MonitorPanelItem, type MonitorPanelProps, MotorDefault, type MotorDefaultOptions, MotorHardwareDesc, Mocks$e as MotorMocks, MotorRotation, type MotorSchema, MotorSimulator, MotorState, MotorText, MultiState, Multiposition$1 as Multiposition, Multiposition as MultipositionDefault2, type MultipositionDefault2Options, MultipositionHardwareDesc, Mocks$d as MultipositionMocks, type MultipositionSchema, MultipositionSimulator, NoObject$1 as NoObject, Yaml as None, NoObject as NullObject, NumericStep, Optic as OpticDefault, OpticHardwareDesc, Mocks$c as OpticMocks, type OpticSchema, OpticSimulator, OpticState, type OpticWidgetOptions, Panel, ProcedureExecution, ProcedureHardwareDesc, ProcedureManage, Mocks$b as ProcedureMocks, type ProcedureSchema, ProcedureState, ProcedureValidate, Pump as PumpDefault, PumpHardwareDesc, Mocks$7 as PumpMocks, type PumpSchema, Pusher as PusherDefault, PusherHardwareDesc, Mocks$6 as PusherMocks, type PusherOptions, type PusherSchema, PusherSimulator, PusherState, RegulationLoop as RegulationDefault, RegulationHardwareDesc, Mocks$a as RegulationMocks, type RegulationOptions, RegulationPlot, type RegulationSchema, RegulationSimulator, type ScanFromProcedure, ServiceDefault, ServiceHardwareDesc, Mocks$5 as ServiceMocks, ServiceProtected, type ServiceSchema, ServiceState, ShutterDefault, ShutterHardwareDesc, Mocks$9 as ShutterMocks, ShutterProtected, type ShutterSchema, ShutterSimulator, ShutterState, SlitDefault, SlitHardwareDesc, Mocks$8 as SlitMocks, type SlitSchema, SlitState, State$1 as State, Synoptic, type SynopticElementType, type SynopticType, Yaml$1 as Todo, TomoConfigHardwareDesc, TomoConfigLatencyTime, type TomoConfigSchema, TomoDetectorAcquisitionMode, type TomoDetectorFieldOfViewOptions, TomoDetectorHardwareDesc, Mocks$3 as TomoDetectorMocks, TomoDetectorSamplePixelSize, type TomoDetectorSchema, TomoDetectorState, TomoDetectors as TomoDetectorsDefault, TomoDetectorsHardwareDesc, Mocks$2 as TomoDetectorsMocks, type TomoDetectorsSchema, TomoDetectorsState, TomoFlatMotionDefault, TomoFlatMotionHardwareDesc, Mocks$4 as TomoFlatMotionMocks, type TomoFlatMotionSchema, TomoFlatMotionSimulator, TomoFlatMotionSmall, TomoFlatMotionState, type TomoFlatMotionStep, type TomoHoloDistance, TomoHoloHardwareDesc, type TomoHoloSchema, TomoHoloState, TomoImagingActions, TomoImagingDefault, TomoImagingExposureTime, TomoImagingHardwareDesc, Mocks$1 as TomoImagingMocks, type TomoImagingOptions, type TomoImagingSchema, TomoImagingSettleTime, TomoImagingSimulator, TomoImagingState, TomoImagingUpdateMode, TomoReferencePositionDefault, TomoReferencePositionHardwareDesc, type TomoReferencePositionSchema, TomoSampleStageHardwareDesc, type TomoSampleStageSchema, TypeIcon, type Props$8 as TypeIconOptions, Valve as ValveDefault, ValveHardwareDesc, Mocks as ValveMocks, type ValveSchema, ErrorBoundary as YAMLErrorBoundary, Main as YAMLLayout, asserts_d as YamlAsserts, type YamlComponent, type YamlNode, createMotorMock, dynamicOp, getAllHardwareDesc, getHardwareVariantComponent, isLimaHardware, isMotorClockWise, isMotorHardware, isOpticHardware, isProcedureHardware, isTomoConfigHardware, isTomoDetectorHardware, isTomoDetectorsHardware, isTomoFlatMotionHardware, isTomoHoloHardware, isTomoReferencePositionHardware, isTomoSampleStageHardware, limaGuessSubframes, motorLimits, registerHardwareVariant, registerMonitorComponent, registerRuntimeHook, registerYamlComponent, registerYamlComponents, registerYamlContainer, renderYamlNode, useHardware, useHardwareChangeActions, useHardwareSchema, useLimaHardware, useMotorHardware, useMotorStates, useOperator, useProcedureHardware, useScanRunning, useTomoConfigHardware, useTomoDetectorHardware, useTomoDetectorsHardware, useTomoFlatMotionHardware, useTomoHoloHardware, useTomoSampleStageHardware, yamlComponents, yamlContainers };
|
|
2858
|
+
export { type ActuatorSchema, AirBearing, AirBearingHardwareDesc, Mocks$o as AirBearingMocks, AirBearingProtected, type AirBearingSchema, AirBearingSimulator, AirBearingState, type AnyHardware, type AnySchema, type BaseHardware, BaseHardwareDesc, Info as BaseInfo, type BaseInfoWidgetOptions, Mocks$p as BaseMocks, Name as BaseName, type BaseNameWidgetOptions, Property as BaseProperty, type BasePropertyWidgetOptions, DefaultState as BaseState, Beamviewer, BeamviewerHardwareDesc, Mocks$n as BeamviewerMocks, type BeamviewerSchema, BeamviewerSimulator, EnergyManagerDefault, EnergyManagerHardwareDesc, Mocks$m as EnergyManagerMocks, type EnergyManagerSchema, EnergyManagerSimulator, EnergyManagerState, ErrorObject, type ExceptionFromProcedure, formatting_d as Formatting, Frontend, FrontendHardwareDesc, Mocks$l as FrontendMocks, type FrontendSchema, FullSizer, Gauge$1 as Gauge, GaugeHardwareDesc, Gauge as GaugeIndicator, Mocks$k as GaugeMocks, type GaugeSchema, type GaugeWidgetOptions, type GenericSchema, type Hardware, type HardwareComponentType, type HardwareDesc, type HardwareFromProcedure, HardwareInputNumber, HardwareNumericStep, type HardwareObjectProps, schema_d as HardwareSchema, HardwareState, HardwareTemplate, types_d as HardwareTypes, type HardwareVariant, InfiniteKnob360, KeyError, Laser, LaserHardwareDesc, LaserHeating, LaserHeatingHardwareDesc, Mocks$i as LaserHeatingMocks, type LaserHeatingSchema, type LaserHeatingWidgetOptions, Mocks$j as LaserMocks, type LaserSchema, type LaserWidgetOptions, Light, LightHardwareDesc, Mocks$h as LightMocks, type LightSchema, LimaBinning, LimaDefault, TomoDetectorSize$2 as LimaDescription, LimaHardwareDesc, TomoDetectorSize$1 as LimaImageRoi, Mocks$g as LimaMocks, type LimaSchema, LimaRoiShape as LimaShape, LimaSimulator, TomoDetectorSize as LimaSize, LimaState, LimaTransformation, LoadingObject, MeasurementGroup as MeasurementGroupDefault, MeasurementGroupHardwareDesc, Mocks$f as MeasurementGroupMocks, type MeasurementGroupSchema, MeasurementGroupSimulator, MissingComponentObject, MissingKeysError, MissingObject, type Monitor, MonitorHardware, MonitorHardwareProperty, MonitorPanel, MonitorPanelItem, type MonitorPanelProps, MotorDefault, type MotorDefaultOptions, MotorHardwareDesc, Mocks$e as MotorMocks, MotorRotation, type MotorSchema, MotorSimulator, MotorState, MotorText, MultiState, Multiposition$1 as Multiposition, Multiposition as MultipositionDefault2, type MultipositionDefault2Options, MultipositionHardwareDesc, Mocks$d as MultipositionMocks, type MultipositionSchema, MultipositionSimulator, NoObject$1 as NoObject, Yaml as None, NoObject as NullObject, NumericStep, Optic as OpticDefault, OpticHardwareDesc, Mocks$c as OpticMocks, type OpticSchema, OpticSimulator, OpticState, type OpticWidgetOptions, Panel, ProcedureExecution, ProcedureHardwareDesc, ProcedureManage, Mocks$b as ProcedureMocks, type ProcedureSchema, ProcedureState, ProcedureValidate, Pump as PumpDefault, PumpHardwareDesc, Mocks$7 as PumpMocks, type PumpSchema, Pusher as PusherDefault, PusherHardwareDesc, Mocks$6 as PusherMocks, type PusherOptions, type PusherSchema, PusherSimulator, PusherState, RegulationLoop as RegulationDefault, RegulationHardwareDesc, Mocks$a as RegulationMocks, type RegulationOptions, RegulationPlot, type RegulationSchema, RegulationSimulator, type ScanFromProcedure, ServiceDefault, ServiceHardwareDesc, Mocks$5 as ServiceMocks, ServiceProtected, type ServiceSchema, ServiceState, ShutterDefault, ShutterHardwareDesc, Mocks$9 as ShutterMocks, ShutterProtected, type ShutterSchema, ShutterSimulator, ShutterState, SlitDefault, SlitHardwareDesc, Mocks$8 as SlitMocks, type SlitSchema, SlitState, State$1 as State, Synoptic, type SynopticElementType, type SynopticType, Yaml$1 as Todo, TomoConfigHardwareDesc, TomoConfigLatencyTime, type TomoConfigSchema, TomoDetectorAcquisitionMode, type TomoDetectorFieldOfViewOptions, TomoDetectorHardwareDesc, Mocks$3 as TomoDetectorMocks, TomoDetectorSamplePixelSize, type TomoDetectorSchema, TomoDetectorState, TomoDetectors as TomoDetectorsDefault, TomoDetectorsHardwareDesc, Mocks$2 as TomoDetectorsMocks, type TomoDetectorsSchema, TomoDetectorsState, TomoFlatMotionDefault, TomoFlatMotionHardwareDesc, Mocks$4 as TomoFlatMotionMocks, type TomoFlatMotionSchema, TomoFlatMotionSimulator, TomoFlatMotionSmall, TomoFlatMotionState, type TomoFlatMotionStep, type TomoHoloDistance, TomoHoloHardwareDesc, type TomoHoloSchema, TomoHoloState, TomoImagingActions, TomoImagingDefault, TomoImagingExposureTime, TomoImagingHardwareDesc, Mocks$1 as TomoImagingMocks, type TomoImagingOptions, type TomoImagingSchema, TomoImagingSettleTime, TomoImagingSimulator, TomoImagingState, TomoImagingUpdateMode, TomoReferencePositionDefault, TomoReferencePositionHardwareDesc, type TomoReferencePositionSchema, TomoSampleStageHardwareDesc, type TomoSampleStageSchema, TypeIcon, type Props$8 as TypeIconOptions, Valve as ValveDefault, ValveHardwareDesc, Mocks as ValveMocks, type ValveSchema, ErrorBoundary as YAMLErrorBoundary, Main as YAMLLayout, asserts_d as YamlAsserts, type YamlColOptions, type YamlComponent, type YamlContainerOptions, type YamlFormHeaderOptions, type YamlFormOptions, type YamlFormRowOptions, type YamlGridCellOptions, type YamlGridOptions, type YamlLabelOptions, type YamlNode, type YamlPanelOptions, type YamlRowOptions, type YamlTabsOptions, type YamlTabsRowOptions, type YamlTodoOptions, createMotorMock, dynamicOp, getAllHardwareDesc, getHardwareVariantComponent, getYamlComponents, getYamlContainers, isLimaHardware, isMotorClockWise, isMotorHardware, isOpticHardware, isProcedureHardware, isTomoConfigHardware, isTomoDetectorHardware, isTomoDetectorsHardware, isTomoFlatMotionHardware, isTomoHoloHardware, isTomoReferencePositionHardware, isTomoSampleStageHardware, limaGuessSubframes, motorLimits, registerHardwareVariant, registerMonitorComponent, registerRuntimeHook, registerYamlComponent, registerYamlComponents, registerYamlContainer, renderYamlNode, useHardware, useHardwareChangeActions, useHardwareSchema, useLimaHardware, useMotorHardware, useMotorStates, useOperator, useProcedureHardware, useScanRunning, useTomoConfigHardware, useTomoDetectorHardware, useTomoDetectorsHardware, useTomoFlatMotionHardware, useTomoHoloHardware, useTomoSampleStageHardware, yamlComponents, yamlContainers };
|