@esrf/daiquiri-lib 5.5.0 → 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 +79 -38
- 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
|
@@ -120,15 +120,21 @@ interface HardwareDesc<H extends Hardware = Hardware> {
|
|
|
120
120
|
monitor?: HardwareComponentType<H>;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Props accepted by a hardware widget container
|
|
124
124
|
*/
|
|
125
125
|
interface HardwareObjectProps {
|
|
126
|
+
/** Hardware id to bind to. */
|
|
126
127
|
id: string;
|
|
127
128
|
options: {
|
|
129
|
+
/** Hardware variant used for the widget container. */
|
|
128
130
|
variant?: string;
|
|
131
|
+
/** Header text shown above the hardware widget. */
|
|
129
132
|
header?: string;
|
|
133
|
+
/** Width, in pixels, of the widget container. */
|
|
130
134
|
width?: number;
|
|
135
|
+
/** Bootstrap column width (1-12) of the widget container. */
|
|
131
136
|
colWidth?: number;
|
|
137
|
+
/** If true, don't render anything when the underlying value is empty/none. */
|
|
132
138
|
emptyifnone?: boolean;
|
|
133
139
|
};
|
|
134
140
|
propertiesSchema?: Record<string, unknown>;
|
|
@@ -1147,7 +1153,7 @@ declare function createMotorMock(name: string, position: number): {
|
|
|
1147
1153
|
online: boolean;
|
|
1148
1154
|
};
|
|
1149
1155
|
|
|
1150
|
-
interface Props$
|
|
1156
|
+
interface Props$c {
|
|
1151
1157
|
name?: string;
|
|
1152
1158
|
minLimit?: number;
|
|
1153
1159
|
maxLimit?: number;
|
|
@@ -1160,7 +1166,7 @@ interface Props$a {
|
|
|
1160
1166
|
};
|
|
1161
1167
|
};
|
|
1162
1168
|
}
|
|
1163
|
-
declare function MotorSimulator(props: Props$
|
|
1169
|
+
declare function MotorSimulator(props: Props$c): react_jsx_runtime.JSX.Element;
|
|
1164
1170
|
|
|
1165
1171
|
type MultipositionSchema = Hardware<{
|
|
1166
1172
|
/**
|
|
@@ -1330,10 +1336,10 @@ declare const Mocks$c: {
|
|
|
1330
1336
|
};
|
|
1331
1337
|
};
|
|
1332
1338
|
|
|
1333
|
-
interface Props$
|
|
1339
|
+
interface Props$b {
|
|
1334
1340
|
kind: 'fixed' | 'range' | 'multi';
|
|
1335
1341
|
}
|
|
1336
|
-
declare function OpticSimulator(props: PropsWithSimulator<Props$
|
|
1342
|
+
declare function OpticSimulator(props: PropsWithSimulator<Props$b>): react_jsx_runtime.JSX.Element;
|
|
1337
1343
|
|
|
1338
1344
|
type ProcedureSchema = Hardware<{
|
|
1339
1345
|
state: string;
|
|
@@ -2111,7 +2117,7 @@ declare const Mocks: {
|
|
|
2111
2117
|
};
|
|
2112
2118
|
};
|
|
2113
2119
|
|
|
2114
|
-
interface Props$
|
|
2120
|
+
interface Props$a {
|
|
2115
2121
|
online: boolean;
|
|
2116
2122
|
activeMessage?: string;
|
|
2117
2123
|
inactiveMessage?: string;
|
|
@@ -2119,9 +2125,9 @@ interface Props$8 {
|
|
|
2119
2125
|
icon: string;
|
|
2120
2126
|
name: string;
|
|
2121
2127
|
}
|
|
2122
|
-
declare function TypeIcon(props: Props$
|
|
2128
|
+
declare function TypeIcon(props: Props$a): react_jsx_runtime.JSX.Element;
|
|
2123
2129
|
|
|
2124
|
-
interface Props$
|
|
2130
|
+
interface Props$9 {
|
|
2125
2131
|
hardware: Hardware;
|
|
2126
2132
|
headerMode?: string;
|
|
2127
2133
|
widgetIcon: ReactElement;
|
|
@@ -2132,7 +2138,7 @@ interface Props$7 {
|
|
|
2132
2138
|
* Normalized way to compose hardware component in order to provide the same
|
|
2133
2139
|
* kind of layout
|
|
2134
2140
|
*/
|
|
2135
|
-
declare function HardwareTemplate(props: Props$
|
|
2141
|
+
declare function HardwareTemplate(props: Props$9): react_jsx_runtime.JSX.Element;
|
|
2136
2142
|
|
|
2137
2143
|
/**
|
|
2138
2144
|
* Input number synchronized with a hardware.
|
|
@@ -2305,12 +2311,12 @@ interface NoObjectProps {
|
|
|
2305
2311
|
}
|
|
2306
2312
|
declare function NoObject(props: NoObjectProps): react_jsx_runtime.JSX.Element;
|
|
2307
2313
|
|
|
2308
|
-
interface Props$
|
|
2314
|
+
interface Props$8 {
|
|
2309
2315
|
className?: string;
|
|
2310
2316
|
}
|
|
2311
|
-
declare function FullSizer(props: PropsWithChildren<Props$
|
|
2317
|
+
declare function FullSizer(props: PropsWithChildren<Props$8>): react_jsx_runtime.JSX.Element;
|
|
2312
2318
|
|
|
2313
|
-
interface Props$
|
|
2319
|
+
interface Props$7 {
|
|
2314
2320
|
size: number;
|
|
2315
2321
|
value?: number | null;
|
|
2316
2322
|
target?: number | null;
|
|
@@ -2327,7 +2333,7 @@ interface Props$5 {
|
|
|
2327
2333
|
/**
|
|
2328
2334
|
* Widget to handle cyclic angle value in degree displayed as an infinite knob
|
|
2329
2335
|
*/
|
|
2330
|
-
declare function InfiniteKnob360(props: Props$
|
|
2336
|
+
declare function InfiniteKnob360(props: Props$7): react_jsx_runtime.JSX.Element;
|
|
2331
2337
|
|
|
2332
2338
|
declare function Gauge(props: {
|
|
2333
2339
|
size: number;
|
|
@@ -2340,7 +2346,7 @@ declare function Gauge(props: {
|
|
|
2340
2346
|
hiDanger?: number;
|
|
2341
2347
|
}): react_jsx_runtime.JSX.Element;
|
|
2342
2348
|
|
|
2343
|
-
interface Props$
|
|
2349
|
+
interface Props$6 {
|
|
2344
2350
|
step?: number | string;
|
|
2345
2351
|
steps?: (number | string)[];
|
|
2346
2352
|
disabled: boolean;
|
|
@@ -2363,7 +2369,7 @@ interface Props$4 {
|
|
|
2363
2369
|
}) => void;
|
|
2364
2370
|
onKeyDown?: (e: KeyboardEvent<HTMLInputElement>) => void;
|
|
2365
2371
|
}
|
|
2366
|
-
declare const NumericStep: react.ForwardRefExoticComponent<Props$
|
|
2372
|
+
declare const NumericStep: react.ForwardRefExoticComponent<Props$6 & react.RefAttributes<HTMLInputElement>>;
|
|
2367
2373
|
|
|
2368
2374
|
declare function PanelHeader(props: PropsWithChildren<{
|
|
2369
2375
|
style?: Record<string, any>;
|
|
@@ -2372,12 +2378,12 @@ declare function PanelContents(props: PropsWithChildren<{
|
|
|
2372
2378
|
style?: Record<string, any>;
|
|
2373
2379
|
className?: string;
|
|
2374
2380
|
}>): react_jsx_runtime.JSX.Element;
|
|
2375
|
-
interface Props$
|
|
2381
|
+
interface Props$5 {
|
|
2376
2382
|
style?: Record<string, any>;
|
|
2377
2383
|
scroll?: boolean;
|
|
2378
2384
|
className?: string;
|
|
2379
2385
|
}
|
|
2380
|
-
declare function Panel(props: PropsWithChildren<Props$
|
|
2386
|
+
declare function Panel(props: PropsWithChildren<Props$5>): react_jsx_runtime.JSX.Element;
|
|
2381
2387
|
declare namespace Panel {
|
|
2382
2388
|
var Header: typeof PanelHeader;
|
|
2383
2389
|
var Contents: typeof PanelContents;
|
|
@@ -2453,7 +2459,7 @@ interface SynopticType {
|
|
|
2453
2459
|
/** Whether to enable daiquiri `colorisation` of icons */
|
|
2454
2460
|
color_icons: boolean;
|
|
2455
2461
|
}
|
|
2456
|
-
interface Props$
|
|
2462
|
+
interface Props$4 {
|
|
2457
2463
|
fetchSVG: (image: string) => Promise<{
|
|
2458
2464
|
data: any;
|
|
2459
2465
|
}>;
|
|
@@ -2461,35 +2467,35 @@ interface Props$2 {
|
|
|
2461
2467
|
hardwareObjects: Record<string, AnyHardware>;
|
|
2462
2468
|
synoptic: SynopticType;
|
|
2463
2469
|
}
|
|
2464
|
-
declare function Synoptic(props: Props$
|
|
2470
|
+
declare function Synoptic(props: Props$4): react_jsx_runtime.JSX.Element;
|
|
2465
2471
|
|
|
2466
|
-
interface Props$
|
|
2472
|
+
interface Props$3 {
|
|
2467
2473
|
testid: string;
|
|
2468
2474
|
layout: YamlRoot;
|
|
2469
2475
|
className?: string;
|
|
2470
2476
|
unhandledComponentDidCatch?: (error: Error, setStateCallback: (data: Record<string, any>) => void) => void;
|
|
2471
2477
|
UnhandledErrorComponent?: React.ComponentType<any>;
|
|
2472
2478
|
}
|
|
2473
|
-
declare function Main(props: Props$
|
|
2479
|
+
declare function Main(props: Props$3): react_jsx_runtime.JSX.Element;
|
|
2474
2480
|
|
|
2475
2481
|
interface State {
|
|
2476
2482
|
hasError: boolean;
|
|
2477
2483
|
message: string;
|
|
2478
2484
|
error?: Error;
|
|
2479
2485
|
}
|
|
2480
|
-
interface Props {
|
|
2486
|
+
interface Props$2 {
|
|
2481
2487
|
resetKey?: any;
|
|
2482
2488
|
unhandledComponentDidCatch?: (error: Error, setStateCallback: (data: Record<string, any>) => void) => void;
|
|
2483
2489
|
UnhandledErrorComponent?: react__default.ComponentType<any>;
|
|
2484
2490
|
}
|
|
2485
|
-
declare class ErrorBoundary extends Component<PropsWithChildren<Props>, State> {
|
|
2486
|
-
constructor(props: Props);
|
|
2491
|
+
declare class ErrorBoundary extends Component<PropsWithChildren<Props$2>, State> {
|
|
2492
|
+
constructor(props: Props$2);
|
|
2487
2493
|
static getDerivedStateFromError(): {
|
|
2488
2494
|
hasError: boolean;
|
|
2489
2495
|
};
|
|
2490
2496
|
private readonly reload;
|
|
2491
2497
|
componentDidCatch(error: Error): void;
|
|
2492
|
-
componentDidUpdate(prevProps: Props, prevState: State): void;
|
|
2498
|
+
componentDidUpdate(prevProps: Props$2, prevState: State): void;
|
|
2493
2499
|
render(): string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<react__default.ReactNode> | null | undefined;
|
|
2494
2500
|
}
|
|
2495
2501
|
|
|
@@ -2772,7 +2778,7 @@ declare function useScanRunning(): boolean;
|
|
|
2772
2778
|
|
|
2773
2779
|
interface Monitor {
|
|
2774
2780
|
/**
|
|
2775
|
-
*
|
|
2781
|
+
* Title shown above the value.
|
|
2776
2782
|
*/
|
|
2777
2783
|
name: string;
|
|
2778
2784
|
/**
|
|
@@ -2781,34 +2787,61 @@ interface Monitor {
|
|
|
2781
2787
|
* NOTE: New components can be registered with `registerMonitorComponent`
|
|
2782
2788
|
*/
|
|
2783
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 {
|
|
2784
2796
|
/**
|
|
2785
|
-
*
|
|
2797
|
+
* The value to display, a path, for example `omega.position`
|
|
2786
2798
|
*/
|
|
2787
2799
|
value: string;
|
|
2800
|
+
/**
|
|
2801
|
+
* An optional second value shown in a tooltip on
|
|
2802
|
+
* hover. Again a path.
|
|
2803
|
+
*/
|
|
2788
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
|
+
*/
|
|
2789
2809
|
comparator?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* The value `comparator` compares the
|
|
2812
|
+
* live `value` against.schema
|
|
2813
|
+
*/
|
|
2790
2814
|
comparison?: any;
|
|
2815
|
+
/**
|
|
2816
|
+
* A fixed unit string (e.g. `mA`)
|
|
2817
|
+
*/
|
|
2791
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 {
|
|
2792
2826
|
/**
|
|
2793
|
-
*
|
|
2827
|
+
* The hardware id to render
|
|
2794
2828
|
*/
|
|
2795
2829
|
id?: string;
|
|
2796
2830
|
}
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
monitor: Monitor;
|
|
2801
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2802
|
-
|
|
2831
|
+
interface Props {
|
|
2832
|
+
monitor: MonitorHardwareOptions & Monitor;
|
|
2833
|
+
}
|
|
2803
2834
|
/**
|
|
2804
2835
|
* HardwareMonitor which provide callback to get the
|
|
2805
2836
|
* component from the hardware type.
|
|
2806
2837
|
*/
|
|
2807
|
-
declare function MonitorHardware(props:
|
|
2808
|
-
monitor: Monitor;
|
|
2809
|
-
}): react_jsx_runtime.JSX.Element;
|
|
2838
|
+
declare function MonitorHardware(props: Props): react_jsx_runtime.JSX.Element;
|
|
2810
2839
|
|
|
2840
|
+
interface MonitorMapping {
|
|
2841
|
+
[name: string]: ComponentType<any>;
|
|
2842
|
+
}
|
|
2811
2843
|
declare function registerMonitorComponent(name: string, component: React.ComponentType<any>): void;
|
|
2844
|
+
declare function getAllMonitors(): MonitorMapping;
|
|
2812
2845
|
interface MonitorPanelProps {
|
|
2813
2846
|
monitors: Monitor[];
|
|
2814
2847
|
margin?: 'start' | null;
|
|
@@ -2833,6 +2866,14 @@ declare const MonitorPanelItem: react.ForwardRefExoticComponent<MonitorPanelItem
|
|
|
2833
2866
|
children?: react.ReactNode;
|
|
2834
2867
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
2835
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
|
+
|
|
2836
2877
|
/**
|
|
2837
2878
|
* Register an hardware variant.
|
|
2838
2879
|
*/
|
|
@@ -2855,4 +2896,4 @@ declare function getHardwareVariantComponent(type: string, variant: string): Har
|
|
|
2855
2896
|
*/
|
|
2856
2897
|
declare function getAllHardwareDesc(): Record<string, HardwareDesc<AnyHardware>>;
|
|
2857
2898
|
|
|
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$
|
|
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 };
|