@esrf/daiquiri-lib 5.5.1 → 5.6.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 +72 -37
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1436 -1433
- package/dist/index.mjs.map +1 -1
- package/dist/node-schema.json +94 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1153,7 +1153,7 @@ declare function createMotorMock(name: string, position: number): {
|
|
|
1153
1153
|
online: boolean;
|
|
1154
1154
|
};
|
|
1155
1155
|
|
|
1156
|
-
interface Props$
|
|
1156
|
+
interface Props$c {
|
|
1157
1157
|
name?: string;
|
|
1158
1158
|
minLimit?: number;
|
|
1159
1159
|
maxLimit?: number;
|
|
@@ -1166,7 +1166,7 @@ interface Props$a {
|
|
|
1166
1166
|
};
|
|
1167
1167
|
};
|
|
1168
1168
|
}
|
|
1169
|
-
declare function MotorSimulator(props: Props$
|
|
1169
|
+
declare function MotorSimulator(props: Props$c): react_jsx_runtime.JSX.Element;
|
|
1170
1170
|
|
|
1171
1171
|
type MultipositionSchema = Hardware<{
|
|
1172
1172
|
/**
|
|
@@ -1336,10 +1336,10 @@ declare const Mocks$c: {
|
|
|
1336
1336
|
};
|
|
1337
1337
|
};
|
|
1338
1338
|
|
|
1339
|
-
interface Props$
|
|
1339
|
+
interface Props$b {
|
|
1340
1340
|
kind: 'fixed' | 'range' | 'multi';
|
|
1341
1341
|
}
|
|
1342
|
-
declare function OpticSimulator(props: PropsWithSimulator<Props$
|
|
1342
|
+
declare function OpticSimulator(props: PropsWithSimulator<Props$b>): react_jsx_runtime.JSX.Element;
|
|
1343
1343
|
|
|
1344
1344
|
type ProcedureSchema = Hardware<{
|
|
1345
1345
|
state: string;
|
|
@@ -2117,7 +2117,7 @@ declare const Mocks: {
|
|
|
2117
2117
|
};
|
|
2118
2118
|
};
|
|
2119
2119
|
|
|
2120
|
-
interface Props$
|
|
2120
|
+
interface Props$a {
|
|
2121
2121
|
online: boolean;
|
|
2122
2122
|
activeMessage?: string;
|
|
2123
2123
|
inactiveMessage?: string;
|
|
@@ -2125,9 +2125,9 @@ interface Props$8 {
|
|
|
2125
2125
|
icon: string;
|
|
2126
2126
|
name: string;
|
|
2127
2127
|
}
|
|
2128
|
-
declare function TypeIcon(props: Props$
|
|
2128
|
+
declare function TypeIcon(props: Props$a): react_jsx_runtime.JSX.Element;
|
|
2129
2129
|
|
|
2130
|
-
interface Props$
|
|
2130
|
+
interface Props$9 {
|
|
2131
2131
|
hardware: Hardware;
|
|
2132
2132
|
headerMode?: string;
|
|
2133
2133
|
widgetIcon: ReactElement;
|
|
@@ -2138,7 +2138,7 @@ interface Props$7 {
|
|
|
2138
2138
|
* Normalized way to compose hardware component in order to provide the same
|
|
2139
2139
|
* kind of layout
|
|
2140
2140
|
*/
|
|
2141
|
-
declare function HardwareTemplate(props: Props$
|
|
2141
|
+
declare function HardwareTemplate(props: Props$9): react_jsx_runtime.JSX.Element;
|
|
2142
2142
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* Input number synchronized with a hardware.
|
|
@@ -2311,12 +2311,12 @@ interface NoObjectProps {
|
|
|
2311
2311
|
}
|
|
2312
2312
|
declare function NoObject(props: NoObjectProps): react_jsx_runtime.JSX.Element;
|
|
2313
2313
|
|
|
2314
|
-
interface Props$
|
|
2314
|
+
interface Props$8 {
|
|
2315
2315
|
className?: string;
|
|
2316
2316
|
}
|
|
2317
|
-
declare function FullSizer(props: PropsWithChildren<Props$
|
|
2317
|
+
declare function FullSizer(props: PropsWithChildren<Props$8>): react_jsx_runtime.JSX.Element;
|
|
2318
2318
|
|
|
2319
|
-
interface Props$
|
|
2319
|
+
interface Props$7 {
|
|
2320
2320
|
size: number;
|
|
2321
2321
|
value?: number | null;
|
|
2322
2322
|
target?: number | null;
|
|
@@ -2333,7 +2333,7 @@ interface Props$5 {
|
|
|
2333
2333
|
/**
|
|
2334
2334
|
* Widget to handle cyclic angle value in degree displayed as an infinite knob
|
|
2335
2335
|
*/
|
|
2336
|
-
declare function InfiniteKnob360(props: Props$
|
|
2336
|
+
declare function InfiniteKnob360(props: Props$7): react_jsx_runtime.JSX.Element;
|
|
2337
2337
|
|
|
2338
2338
|
declare function Gauge(props: {
|
|
2339
2339
|
size: number;
|
|
@@ -2346,7 +2346,7 @@ declare function Gauge(props: {
|
|
|
2346
2346
|
hiDanger?: number;
|
|
2347
2347
|
}): react_jsx_runtime.JSX.Element;
|
|
2348
2348
|
|
|
2349
|
-
interface Props$
|
|
2349
|
+
interface Props$6 {
|
|
2350
2350
|
step?: number | string;
|
|
2351
2351
|
steps?: (number | string)[];
|
|
2352
2352
|
disabled: boolean;
|
|
@@ -2369,7 +2369,7 @@ interface Props$4 {
|
|
|
2369
2369
|
}) => void;
|
|
2370
2370
|
onKeyDown?: (e: KeyboardEvent<HTMLInputElement>) => void;
|
|
2371
2371
|
}
|
|
2372
|
-
declare const NumericStep: react.ForwardRefExoticComponent<Props$
|
|
2372
|
+
declare const NumericStep: react.ForwardRefExoticComponent<Props$6 & react.RefAttributes<HTMLInputElement>>;
|
|
2373
2373
|
|
|
2374
2374
|
declare function PanelHeader(props: PropsWithChildren<{
|
|
2375
2375
|
style?: Record<string, any>;
|
|
@@ -2378,12 +2378,12 @@ declare function PanelContents(props: PropsWithChildren<{
|
|
|
2378
2378
|
style?: Record<string, any>;
|
|
2379
2379
|
className?: string;
|
|
2380
2380
|
}>): react_jsx_runtime.JSX.Element;
|
|
2381
|
-
interface Props$
|
|
2381
|
+
interface Props$5 {
|
|
2382
2382
|
style?: Record<string, any>;
|
|
2383
2383
|
scroll?: boolean;
|
|
2384
2384
|
className?: string;
|
|
2385
2385
|
}
|
|
2386
|
-
declare function Panel(props: PropsWithChildren<Props$
|
|
2386
|
+
declare function Panel(props: PropsWithChildren<Props$5>): react_jsx_runtime.JSX.Element;
|
|
2387
2387
|
declare namespace Panel {
|
|
2388
2388
|
var Header: typeof PanelHeader;
|
|
2389
2389
|
var Contents: typeof PanelContents;
|
|
@@ -2459,7 +2459,7 @@ interface SynopticType {
|
|
|
2459
2459
|
/** Whether to enable daiquiri `colorisation` of icons */
|
|
2460
2460
|
color_icons: boolean;
|
|
2461
2461
|
}
|
|
2462
|
-
interface Props$
|
|
2462
|
+
interface Props$4 {
|
|
2463
2463
|
fetchSVG: (image: string) => Promise<{
|
|
2464
2464
|
data: any;
|
|
2465
2465
|
}>;
|
|
@@ -2467,35 +2467,35 @@ interface Props$2 {
|
|
|
2467
2467
|
hardwareObjects: Record<string, AnyHardware>;
|
|
2468
2468
|
synoptic: SynopticType;
|
|
2469
2469
|
}
|
|
2470
|
-
declare function Synoptic(props: Props$
|
|
2470
|
+
declare function Synoptic(props: Props$4): react_jsx_runtime.JSX.Element;
|
|
2471
2471
|
|
|
2472
|
-
interface Props$
|
|
2472
|
+
interface Props$3 {
|
|
2473
2473
|
testid: string;
|
|
2474
2474
|
layout: YamlRoot;
|
|
2475
2475
|
className?: string;
|
|
2476
2476
|
unhandledComponentDidCatch?: (error: Error, setStateCallback: (data: Record<string, any>) => void) => void;
|
|
2477
2477
|
UnhandledErrorComponent?: React.ComponentType<any>;
|
|
2478
2478
|
}
|
|
2479
|
-
declare function Main(props: Props$
|
|
2479
|
+
declare function Main(props: Props$3): react_jsx_runtime.JSX.Element;
|
|
2480
2480
|
|
|
2481
2481
|
interface State {
|
|
2482
2482
|
hasError: boolean;
|
|
2483
2483
|
message: string;
|
|
2484
2484
|
error?: Error;
|
|
2485
2485
|
}
|
|
2486
|
-
interface Props {
|
|
2486
|
+
interface Props$2 {
|
|
2487
2487
|
resetKey?: any;
|
|
2488
2488
|
unhandledComponentDidCatch?: (error: Error, setStateCallback: (data: Record<string, any>) => void) => void;
|
|
2489
2489
|
UnhandledErrorComponent?: react__default.ComponentType<any>;
|
|
2490
2490
|
}
|
|
2491
|
-
declare class ErrorBoundary extends Component<PropsWithChildren<Props>, State> {
|
|
2492
|
-
constructor(props: Props);
|
|
2491
|
+
declare class ErrorBoundary extends Component<PropsWithChildren<Props$2>, State> {
|
|
2492
|
+
constructor(props: Props$2);
|
|
2493
2493
|
static getDerivedStateFromError(): {
|
|
2494
2494
|
hasError: boolean;
|
|
2495
2495
|
};
|
|
2496
2496
|
private readonly reload;
|
|
2497
2497
|
componentDidCatch(error: Error): void;
|
|
2498
|
-
componentDidUpdate(prevProps: Props, prevState: State): void;
|
|
2498
|
+
componentDidUpdate(prevProps: Props$2, prevState: State): void;
|
|
2499
2499
|
render(): string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<react__default.ReactNode> | null | undefined;
|
|
2500
2500
|
}
|
|
2501
2501
|
|
|
@@ -2778,7 +2778,7 @@ declare function useScanRunning(): boolean;
|
|
|
2778
2778
|
|
|
2779
2779
|
interface Monitor {
|
|
2780
2780
|
/**
|
|
2781
|
-
*
|
|
2781
|
+
* Title shown above the value.
|
|
2782
2782
|
*/
|
|
2783
2783
|
name: string;
|
|
2784
2784
|
/**
|
|
@@ -2787,34 +2787,61 @@ interface Monitor {
|
|
|
2787
2787
|
* NOTE: New components can be registered with `registerMonitorComponent`
|
|
2788
2788
|
*/
|
|
2789
2789
|
type?: string;
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
/** Valid `comparator` values for a Monitor's `comparator`/`comparison` pair — see `dynamicOp`. */
|
|
2793
|
+
declare const COMPARATORS: string[];
|
|
2794
|
+
declare const dynamicOp: (op: string, a1: any, b1: any) => boolean | undefined;
|
|
2795
|
+
interface MonitorHardwarePropertyOptions {
|
|
2790
2796
|
/**
|
|
2791
|
-
*
|
|
2797
|
+
* The value to display, a path, for example `omega.position`
|
|
2792
2798
|
*/
|
|
2793
2799
|
value: string;
|
|
2800
|
+
/**
|
|
2801
|
+
* An optional second value shown in a tooltip on
|
|
2802
|
+
* hover. Again a path.
|
|
2803
|
+
*/
|
|
2794
2804
|
overlay?: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* One of `COMPARATORS`, green if the comparison holds,
|
|
2807
|
+
* red otherwise, grey if either `comparator` or `comparison` is unset.
|
|
2808
|
+
*/
|
|
2795
2809
|
comparator?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* The value `comparator` compares the
|
|
2812
|
+
* live `value` against.schema
|
|
2813
|
+
*/
|
|
2796
2814
|
comparison?: any;
|
|
2815
|
+
/**
|
|
2816
|
+
* A fixed unit string (e.g. `mA`)
|
|
2817
|
+
*/
|
|
2797
2818
|
unit?: string;
|
|
2819
|
+
}
|
|
2820
|
+
interface Props$1 {
|
|
2821
|
+
monitor: MonitorHardwarePropertyOptions & Monitor;
|
|
2822
|
+
}
|
|
2823
|
+
declare function MonitorHardwareProperty(props: Props$1): react_jsx_runtime.JSX.Element;
|
|
2824
|
+
|
|
2825
|
+
interface MonitorHardwareOptions {
|
|
2798
2826
|
/**
|
|
2799
|
-
*
|
|
2827
|
+
* The hardware id to render
|
|
2800
2828
|
*/
|
|
2801
2829
|
id?: string;
|
|
2802
2830
|
}
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
monitor: Monitor;
|
|
2807
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2808
|
-
|
|
2831
|
+
interface Props {
|
|
2832
|
+
monitor: MonitorHardwareOptions & Monitor;
|
|
2833
|
+
}
|
|
2809
2834
|
/**
|
|
2810
2835
|
* HardwareMonitor which provide callback to get the
|
|
2811
2836
|
* component from the hardware type.
|
|
2812
2837
|
*/
|
|
2813
|
-
declare function MonitorHardware(props:
|
|
2814
|
-
monitor: Monitor;
|
|
2815
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2838
|
+
declare function MonitorHardware(props: Props): react_jsx_runtime.JSX.Element;
|
|
2816
2839
|
|
|
2840
|
+
interface MonitorMapping {
|
|
2841
|
+
[name: string]: ComponentType<any>;
|
|
2842
|
+
}
|
|
2817
2843
|
declare function registerMonitorComponent(name: string, component: React.ComponentType<any>): void;
|
|
2844
|
+
declare function getAllMonitors(): MonitorMapping;
|
|
2818
2845
|
interface MonitorPanelProps {
|
|
2819
2846
|
monitors: Monitor[];
|
|
2820
2847
|
margin?: 'start' | null;
|
|
@@ -2839,6 +2866,14 @@ declare const MonitorPanelItem: react.ForwardRefExoticComponent<MonitorPanelItem
|
|
|
2839
2866
|
children?: react.ReactNode;
|
|
2840
2867
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
2841
2868
|
|
|
2869
|
+
/**
|
|
2870
|
+
* Drop the leading `$` from a hardware id reference (e.g. `$sampz`).
|
|
2871
|
+
*
|
|
2872
|
+
* @todo: In the future this should be done earlier and
|
|
2873
|
+
* should raise a parsing error
|
|
2874
|
+
*/
|
|
2875
|
+
declare function normalizeId(id: unknown): string | null;
|
|
2876
|
+
|
|
2842
2877
|
/**
|
|
2843
2878
|
* Register an hardware variant.
|
|
2844
2879
|
*/
|
|
@@ -2861,4 +2896,4 @@ declare function getHardwareVariantComponent(type: string, variant: string): Har
|
|
|
2861
2896
|
*/
|
|
2862
2897
|
declare function getAllHardwareDesc(): Record<string, HardwareDesc<AnyHardware>>;
|
|
2863
2898
|
|
|
2864
|
-
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$
|
|
2899
|
+
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, COMPARATORS, 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$a 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, getAllMonitors, getHardwareVariantComponent, getYamlComponents, getYamlContainers, isLimaHardware, isMotorClockWise, isMotorHardware, isOpticHardware, isProcedureHardware, isTomoConfigHardware, isTomoDetectorHardware, isTomoDetectorsHardware, isTomoFlatMotionHardware, isTomoHoloHardware, isTomoReferencePositionHardware, isTomoSampleStageHardware, limaGuessSubframes, motorLimits, normalizeId, registerHardwareVariant, registerMonitorComponent, registerRuntimeHook, registerYamlComponent, registerYamlComponents, registerYamlContainer, renderYamlNode, useHardware, useHardwareChangeActions, useHardwareSchema, useLimaHardware, useMotorHardware, useMotorStates, useOperator, useProcedureHardware, useScanRunning, useTomoConfigHardware, useTomoDetectorHardware, useTomoDetectorsHardware, useTomoFlatMotionHardware, useTomoHoloHardware, useTomoSampleStageHardware, yamlComponents, yamlContainers };
|