@esrf/daiquiri-lib 5.3.1 → 5.4.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 CHANGED
@@ -106,6 +106,20 @@ type HardwareComponentType<H extends Hardware = Hardware> = ComponentType<Hardwa
106
106
  interface HardwareVariant<H extends Hardware = Hardware> {
107
107
  [name: string]: HardwareComponentType<H>;
108
108
  }
109
+ /**
110
+ * Bundles everything a hardware module exposes: its widget
111
+ * variants, plus optional mocks/simulator/monitor.
112
+ */
113
+ interface HardwareDesc<H extends Hardware = Hardware> {
114
+ /** Widget variants, keyed by variant name */
115
+ variants: HardwareVariant<H>;
116
+ /** Static mock data samples used for documentation */
117
+ mocks?: Record<string, unknown>;
118
+ /** Component emulating live hardware, for tests/demo */
119
+ simulator?: ComponentType<any>;
120
+ /** Monitor panel widget override */
121
+ monitor?: HardwareComponentType<H>;
122
+ }
109
123
  /**
110
124
  * TODO: Add a description
111
125
  */
@@ -129,6 +143,7 @@ type types_d_EditableHardwareWidgetOptions = EditableHardwareWidgetOptions;
129
143
  type types_d_Hardware<P extends Record<string, unknown> = Record<string, any>> = Hardware<P>;
130
144
  type types_d_HardwareChangeActions = HardwareChangeActions;
131
145
  type types_d_HardwareComponentType<H extends Hardware = Hardware> = HardwareComponentType<H>;
146
+ type types_d_HardwareDesc<H extends Hardware = Hardware> = HardwareDesc<H>;
132
147
  type types_d_HardwareMonitorOptions = HardwareMonitorOptions;
133
148
  type types_d_HardwareObjectProps = HardwareObjectProps;
134
149
  type types_d_HardwareSchemaDescription = HardwareSchemaDescription;
@@ -139,7 +154,7 @@ type types_d_LockDescription = LockDescription;
139
154
  type types_d_OfflineHardware = OfflineHardware;
140
155
  type types_d_OnlineHardware<P extends Record<string, any> = Record<string, never>> = OnlineHardware<P>;
141
156
  declare namespace types_d {
142
- export type { types_d_AnyHardware as AnyHardware, types_d_BaseHardware as BaseHardware, types_d_EditableHardware as EditableHardware, types_d_EditableHardwareWidgetOptions as EditableHardwareWidgetOptions, types_d_Hardware as Hardware, types_d_HardwareChangeActions as HardwareChangeActions, types_d_HardwareComponentType as HardwareComponentType, types_d_HardwareMonitorOptions as HardwareMonitorOptions, types_d_HardwareObjectProps as HardwareObjectProps, types_d_HardwareSchemaDescription as HardwareSchemaDescription, types_d_HardwareVariant as HardwareVariant, types_d_HardwareWidgetOptions as HardwareWidgetOptions, types_d_HardwareWidgetProps as HardwareWidgetProps, types_d_LockDescription as LockDescription, types_d_OfflineHardware as OfflineHardware, types_d_OnlineHardware as OnlineHardware };
157
+ export type { types_d_AnyHardware as AnyHardware, types_d_BaseHardware as BaseHardware, types_d_EditableHardware as EditableHardware, types_d_EditableHardwareWidgetOptions as EditableHardwareWidgetOptions, types_d_Hardware as Hardware, types_d_HardwareChangeActions as HardwareChangeActions, types_d_HardwareComponentType as HardwareComponentType, types_d_HardwareDesc as HardwareDesc, types_d_HardwareMonitorOptions as HardwareMonitorOptions, types_d_HardwareObjectProps as HardwareObjectProps, types_d_HardwareSchemaDescription as HardwareSchemaDescription, types_d_HardwareVariant as HardwareVariant, types_d_HardwareWidgetOptions as HardwareWidgetOptions, types_d_HardwareWidgetProps as HardwareWidgetProps, types_d_LockDescription as LockDescription, types_d_OfflineHardware as OfflineHardware, types_d_OnlineHardware as OnlineHardware };
143
158
  }
144
159
 
145
160
  /**
@@ -158,7 +173,7 @@ declare namespace schema_d {
158
173
  export type { schema_d_AnySchema as AnySchema, schema_d_GenericSchema as GenericSchema };
159
174
  }
160
175
 
161
- declare const Variants$t: HardwareVariant<AnySchema>;
176
+ declare const BaseHardwareDesc: HardwareDesc<AnySchema>;
162
177
 
163
178
  declare const Mocks$p: {
164
179
  default: {
@@ -298,7 +313,7 @@ type ActuatorSchema = Hardware<{
298
313
  type AirBearingSchema = Hardware<{
299
314
  state: string;
300
315
  }>;
301
- declare const Variants$s: HardwareVariant<AirBearingSchema>;
316
+ declare const AirBearingHardwareDesc: HardwareDesc<AirBearingSchema>;
302
317
 
303
318
  declare function AirBearing(props: HardwareWidgetProps<AirBearingSchema, HardwareWidgetOptions>): react_jsx_runtime.JSX.Element;
304
319
 
@@ -350,7 +365,7 @@ type BeamviewerSchema = Hardware<{
350
365
  diode_ranges: string[];
351
366
  diode_range: string;
352
367
  }>;
353
- declare const Variants$r: HardwareVariant<BeamviewerSchema>;
368
+ declare const BeamviewerHardwareDesc: HardwareDesc<BeamviewerSchema>;
354
369
 
355
370
  declare function Beamviewer(props: HardwareWidgetProps<BeamviewerSchema>): react_jsx_runtime.JSX.Element;
356
371
 
@@ -382,7 +397,7 @@ type EnergyManagerSchema = Hardware<{
382
397
  available_source_names: string[];
383
398
  source: string;
384
399
  }>;
385
- declare const Variants$q: HardwareVariant<EnergyManagerSchema>;
400
+ declare const EnergyManagerHardwareDesc: HardwareDesc<EnergyManagerSchema>;
386
401
 
387
402
  declare function EnergyManagerDefault(props: HardwareWidgetProps<EnergyManagerSchema>): react_jsx_runtime.JSX.Element;
388
403
 
@@ -423,7 +438,7 @@ type FrontendSchema = Hardware<{
423
438
  pssitlk: string;
424
439
  expitlk: string;
425
440
  }>;
426
- declare const Variants$p: HardwareVariant<FrontendSchema>;
441
+ declare const FrontendHardwareDesc: HardwareDesc<FrontendSchema>;
427
442
 
428
443
  declare function Frontend(props: HardwareWidgetProps<FrontendSchema>): react_jsx_runtime.JSX.Element;
429
444
 
@@ -460,7 +475,7 @@ type GaugeSchema = Hardware<{
460
475
  pressure: number;
461
476
  unit?: string;
462
477
  }>;
463
- declare const Variants$o: HardwareVariant<GaugeSchema>;
478
+ declare const GaugeHardwareDesc: HardwareDesc<GaugeSchema>;
464
479
 
465
480
  interface GaugeWidgetOptions extends HardwareWidgetOptions {
466
481
  /** Unit of pressure */
@@ -508,7 +523,7 @@ type LaserSchema = Hardware<{
508
523
  state: string;
509
524
  power: number;
510
525
  }>;
511
- declare const Variants$n: HardwareVariant<LaserSchema>;
526
+ declare const LaserHardwareDesc: HardwareDesc<LaserSchema>;
512
527
 
513
528
  interface LaserWidgetOptions extends HardwareWidgetOptions {
514
529
  /** Default step size to use for up / down arrows */
@@ -544,7 +559,7 @@ type LaserHeatingSchema = Hardware<{
544
559
  fit_wavelength: number[];
545
560
  current_calibration: string;
546
561
  }>;
547
- declare const Variants$m: HardwareVariant<LaserHeatingSchema>;
562
+ declare const LaserHeatingHardwareDesc: HardwareDesc<LaserHeatingSchema>;
548
563
 
549
564
  interface LaserHeatingWidgetOptions extends HardwareWidgetOptions {
550
565
  /** Default step size to use for up / down arrows */
@@ -581,7 +596,7 @@ type LightSchema = Hardware<{
581
596
  temperature: number;
582
597
  intensity: number;
583
598
  }>;
584
- declare const Variants$l: HardwareVariant<LightSchema>;
599
+ declare const LightHardwareDesc: HardwareDesc<LightSchema>;
585
600
 
586
601
  declare function Light(props: HardwareWidgetProps<LightSchema>): react_jsx_runtime.JSX.Element;
587
602
 
@@ -671,7 +686,7 @@ declare function useLimaHardware(name: string | null): LimaSchema | null;
671
686
  * Compute the nb sub frames which will be used for a specific exposure time
672
687
  */
673
688
  declare function limaGuessSubframes(exposureTime: number, accMaxExpoTime: number): [number, number];
674
- declare const Variants$k: HardwareVariant<LimaSchema>;
689
+ declare const LimaHardwareDesc: HardwareDesc<LimaSchema>;
675
690
 
676
691
  declare function LimaBinning(props: HardwareWidgetProps<LimaSchema, EditableHardwareWidgetOptions>): react_jsx_runtime.JSX.Element;
677
692
 
@@ -844,7 +859,7 @@ interface MeasurementGroupProperties extends Record<string, unknown> {
844
859
  * Hardware as exposed by Redux
845
860
  */
846
861
  type MeasurementGroupSchema = Hardware<MeasurementGroupProperties>;
847
- declare const Variants$j: HardwareVariant<MeasurementGroupSchema>;
862
+ declare const MeasurementGroupHardwareDesc: HardwareDesc<MeasurementGroupSchema>;
848
863
 
849
864
  declare function MeasurementGroup(props: HardwareWidgetProps<MeasurementGroupSchema>): react_jsx_runtime.JSX.Element;
850
865
 
@@ -926,7 +941,6 @@ declare function isMotorHardware(entity: Hardware): entity is MotorSchema;
926
941
  * @param name: An hardware identifier
927
942
  */
928
943
  declare function useMotorHardware(name: string | null): MotorSchema | null;
929
- declare const Variants$i: HardwareVariant<MotorSchema>;
930
944
  /**
931
945
  * True if the motor positon is clock wise.
932
946
  *
@@ -939,6 +953,7 @@ declare function isMotorClockWise(hardware: MotorSchema, options?: {
939
953
  * Normalize the limits as finite values or `undefined`.
940
954
  */
941
955
  declare function motorLimits(hardware: MotorSchema): [number | undefined, number | undefined];
956
+ declare const MotorHardwareDesc: HardwareDesc<MotorSchema>;
942
957
 
943
958
  interface MotorDefaultOptions extends HardwareWidgetOptions {
944
959
  /** Default step size to use for up / down arrows */
@@ -1181,7 +1196,7 @@ type MultipositionSchema = Hardware<{
1181
1196
  }[];
1182
1197
  }[];
1183
1198
  }>;
1184
- declare const Variants$h: HardwareVariant<MultipositionSchema>;
1199
+ declare const MultipositionHardwareDesc: HardwareDesc<MultipositionSchema>;
1185
1200
 
1186
1201
  declare function Multiposition$1(props: HardwareWidgetProps<MultipositionSchema>): react_jsx_runtime.JSX.Element;
1187
1202
 
@@ -1236,7 +1251,7 @@ interface OpticProperties extends Record<string, unknown> {
1236
1251
  */
1237
1252
  type OpticSchema = Hardware<OpticProperties>;
1238
1253
  declare function isOpticHardware(entity: Hardware): entity is OpticSchema;
1239
- declare const Variants$g: HardwareVariant<OpticSchema>;
1254
+ declare const OpticHardwareDesc: HardwareDesc<OpticSchema>;
1240
1255
 
1241
1256
  interface OpticWidgetOptions extends HardwareWidgetOptions {
1242
1257
  readonly?: boolean;
@@ -1327,7 +1342,7 @@ type ProcedureSchema = Hardware<{
1327
1342
  previous_run_exception: string | null;
1328
1343
  parameters: Record<string, any>;
1329
1344
  }>;
1330
- declare const Variants$f: HardwareVariant<ProcedureSchema>;
1345
+ declare const ProcedureHardwareDesc: HardwareDesc<ProcedureSchema>;
1331
1346
 
1332
1347
  interface HardwareFromProcedure {
1333
1348
  __type__: 'hardware';
@@ -1447,7 +1462,7 @@ type RegulationSchema = Hardware<{
1447
1462
  output_unit: string;
1448
1463
  deadband?: number;
1449
1464
  }>;
1450
- declare const Variants$e: HardwareVariant<RegulationSchema>;
1465
+ declare const RegulationHardwareDesc: HardwareDesc<RegulationSchema>;
1451
1466
 
1452
1467
  interface RegulationOptions extends HardwareWidgetOptions {
1453
1468
  /** Default step size to use for up / down arrows */
@@ -1503,7 +1518,7 @@ type ShutterSchema = Hardware<{
1503
1518
  open_text: string;
1504
1519
  closed_text: string;
1505
1520
  }>;
1506
- declare const Variants$d: HardwareVariant<ShutterSchema>;
1521
+ declare const ShutterHardwareDesc: HardwareDesc<ShutterSchema>;
1507
1522
 
1508
1523
  declare function ShutterDefault(props: HardwareWidgetProps<ShutterSchema, HardwareWidgetOptions>): react_jsx_runtime.JSX.Element;
1509
1524
 
@@ -1568,7 +1583,7 @@ interface SlitDefaultOptions extends HardwareWidgetOptions {
1568
1583
  /** Setup the widget to be read only */
1569
1584
  readonly?: boolean;
1570
1585
  }
1571
- declare const Variants$c: HardwareVariant<SlitSchema>;
1586
+ declare const SlitHardwareDesc: HardwareDesc<SlitSchema>;
1572
1587
 
1573
1588
  declare function SlitDefault(props: HardwareWidgetProps<SlitSchema, SlitDefaultOptions>): react_jsx_runtime.JSX.Element;
1574
1589
 
@@ -1626,7 +1641,7 @@ type PumpSchema = Hardware<{
1626
1641
  current: number;
1627
1642
  unit?: string;
1628
1643
  }>;
1629
- declare const Variants$b: HardwareVariant<PumpSchema>;
1644
+ declare const PumpHardwareDesc: HardwareDesc<PumpSchema>;
1630
1645
 
1631
1646
  interface PumpWidgetOptions extends HardwareWidgetOptions {
1632
1647
  unit?: string;
@@ -1659,7 +1674,7 @@ declare const Mocks$7: {
1659
1674
  type PusherSchema = Hardware<{
1660
1675
  state: string;
1661
1676
  }>;
1662
- declare const Variants$a: HardwareVariant<PusherSchema>;
1677
+ declare const PusherHardwareDesc: HardwareDesc<PusherSchema>;
1663
1678
 
1664
1679
  interface PusherOptions extends HardwareWidgetOptions {
1665
1680
  /**
@@ -1703,7 +1718,7 @@ declare function PusherSimulator(props: PropsWithSimulator): react_jsx_runtime.J
1703
1718
  type ServiceSchema = Hardware<{
1704
1719
  state: 'STOPPED' | 'STARTING' | 'RUNNING' | 'BACKOFF' | 'STOPPING' | 'EXITED' | 'FATAL' | 'UNKNOWN';
1705
1720
  }>;
1706
- declare const Variants$9: HardwareVariant<ServiceSchema>;
1721
+ declare const ServiceHardwareDesc: HardwareDesc<ServiceSchema>;
1707
1722
 
1708
1723
  declare function ServiceDefault(props: HardwareWidgetProps<ServiceSchema, HardwareWidgetOptions>): react_jsx_runtime.JSX.Element;
1709
1724
 
@@ -1750,7 +1765,7 @@ interface TomoFlatMotionProperties extends Record<string, unknown> {
1750
1765
  * Hardware as exposed by Redux
1751
1766
  */
1752
1767
  type TomoFlatMotionSchema = Hardware<TomoFlatMotionProperties>;
1753
- declare const Variants$8: HardwareVariant<TomoFlatMotionSchema>;
1768
+ declare const TomoFlatMotionHardwareDesc: HardwareDesc<TomoFlatMotionSchema>;
1754
1769
 
1755
1770
  declare function isTomoFlatMotionHardware(entity: Hardware): entity is TomoFlatMotionSchema;
1756
1771
  declare function useTomoFlatMotionHardware(name: string | null): TomoFlatMotionSchema | null;
@@ -1837,7 +1852,7 @@ declare function TomoFlatMotionSimulator(props: PropsWithSimulator): react_jsx_r
1837
1852
  */
1838
1853
  type TomoReferencePositionSchema = Hardware<Record<string, never>>;
1839
1854
  declare function isTomoReferencePositionHardware(entity: Hardware): entity is TomoReferencePositionSchema;
1840
- declare const Variants$7: HardwareVariant<TomoReferencePositionSchema>;
1855
+ declare const TomoReferencePositionHardwareDesc: HardwareDesc<TomoReferencePositionSchema>;
1841
1856
 
1842
1857
  interface TomoReferencePositionDefaultOptions extends HardwareWidgetOptions {
1843
1858
  /**
@@ -1861,7 +1876,7 @@ type TomoDetectorSchema = Hardware<{
1861
1876
  source_distance: number | null;
1862
1877
  acq_mode: 'MANUAL' | 'SINGLE' | 'ACCUMULATION';
1863
1878
  }>;
1864
- declare const Variants$6: HardwareVariant<TomoDetectorSchema>;
1879
+ declare const TomoDetectorHardwareDesc: HardwareDesc<TomoDetectorSchema>;
1865
1880
 
1866
1881
  declare function isTomoDetectorHardware(entity: Hardware): entity is TomoDetectorSchema;
1867
1882
  declare function useTomoDetectorHardware(name: string | null): TomoDetectorSchema | null;
@@ -1918,7 +1933,7 @@ type TomoDetectorsSchema = Hardware<{
1918
1933
  active_detector: string;
1919
1934
  target_detector?: string;
1920
1935
  }>;
1921
- declare const Variants$5: HardwareVariant<TomoDetectorsSchema>;
1936
+ declare const TomoDetectorsHardwareDesc: HardwareDesc<TomoDetectorsSchema>;
1922
1937
 
1923
1938
  declare function isTomoDetectorsHardware(entity: Hardware): entity is TomoDetectorsSchema;
1924
1939
  declare function useTomoDetectorsHardware(name: string | null): TomoDetectorsSchema | null;
@@ -1954,7 +1969,7 @@ type TomoImagingSchema = Hardware<{
1954
1969
  exposure_time: number;
1955
1970
  settle_time: number;
1956
1971
  }>;
1957
- declare const Variants$4: HardwareVariant<TomoImagingSchema>;
1972
+ declare const TomoImagingHardwareDesc: HardwareDesc<TomoImagingSchema>;
1958
1973
 
1959
1974
  interface TomoImagingActionsOptions extends HardwareWidgetOptions {
1960
1975
  /**
@@ -2016,7 +2031,7 @@ type TomoSampleStageSchema = Hardware<{
2016
2031
  x_axis_focal_pos: number | null;
2017
2032
  detector_center: [number | null, number | null];
2018
2033
  }>;
2019
- declare const Variants$3: HardwareVariant<TomoSampleStageSchema>;
2034
+ declare const TomoSampleStageHardwareDesc: HardwareDesc<TomoSampleStageSchema>;
2020
2035
 
2021
2036
  declare function isTomoSampleStageHardware(entity: Hardware): entity is TomoSampleStageSchema;
2022
2037
  declare function useTomoSampleStageHardware(name: string | null): TomoSampleStageSchema | null;
@@ -2031,7 +2046,7 @@ type TomoConfigSchema = Hardware<{
2031
2046
  holotomo: string;
2032
2047
  latency_time: number;
2033
2048
  }>;
2034
- declare const Variants$2: HardwareVariant<TomoConfigSchema>;
2049
+ declare const TomoConfigHardwareDesc: HardwareDesc<TomoConfigSchema>;
2035
2050
 
2036
2051
  declare function isTomoConfigHardware(entity: Hardware): entity is TomoConfigSchema;
2037
2052
  declare function useTomoConfigHardware(name: string | null): TomoConfigSchema | null;
@@ -2053,7 +2068,7 @@ type TomoHoloSchema = Hardware<{
2053
2068
  nb_distances: number;
2054
2069
  distances: TomoHoloDistance[];
2055
2070
  }>;
2056
- declare const Variants$1: HardwareVariant<TomoHoloSchema>;
2071
+ declare const TomoHoloHardwareDesc: HardwareDesc<TomoHoloSchema>;
2057
2072
 
2058
2073
  declare function isTomoHoloHardware(entity: Hardware): entity is TomoHoloSchema;
2059
2074
  declare function useTomoHoloHardware(name: string | null): TomoHoloSchema | null;
@@ -2069,7 +2084,7 @@ type ValveSchema = Hardware<{
2069
2084
  state: string;
2070
2085
  status: string;
2071
2086
  }>;
2072
- declare const Variants: HardwareVariant<ValveSchema>;
2087
+ declare const ValveHardwareDesc: HardwareDesc<ValveSchema>;
2073
2088
 
2074
2089
  declare function Valve(props: HardwareWidgetProps<ValveSchema>): react_jsx_runtime.JSX.Element;
2075
2090
 
@@ -2710,5 +2725,9 @@ declare function registerHardwareVariant(type: string, variant: string, componen
2710
2725
  * @param variant: Variant requested
2711
2726
  */
2712
2727
  declare function getHardwareVariantComponent(type: string, variant: string): HardwareComponentType | null;
2728
+ /**
2729
+ * Get the full list of hardware descriptions.
2730
+ */
2731
+ declare function getAllHardwareDesc(): Record<string, HardwareDesc<AnyHardware>>;
2713
2732
 
2714
- export { type ActuatorSchema, AirBearing, Mocks$o as AirBearingMocks, AirBearingProtected, type AirBearingSchema, AirBearingSimulator, AirBearingState, Variants$s as AirBearingVariants, type AnyHardware, type AnySchema, type BaseHardware, Info as BaseInfo, type BaseInfoWidgetOptions, Mocks$p as BaseMocks, Name as BaseName, type BaseNameWidgetOptions, Property as BaseProperty, type BasePropertyWidgetOptions, DefaultState as BaseState, Variants$t as BaseVariants, Beamviewer, Mocks$n as BeamviewerMocks, type BeamviewerSchema, BeamviewerSimulator, Variants$r as BeamviewerVariants, EnergyManagerDefault, Mocks$m as EnergyManagerMocks, type EnergyManagerSchema, EnergyManagerSimulator, EnergyManagerState, Variants$q as EnergyManagerVariants, ErrorObject, type ExceptionFromProcedure, formatting_d as Formatting, Frontend, Mocks$l as FrontendMocks, type FrontendSchema, Variants$p as FrontendVariants, FullSizer, Gauge$1 as Gauge, Gauge as GaugeIndicator, Mocks$k as GaugeMocks, type GaugeSchema, Variants$o as GaugeVariants, type GaugeWidgetOptions, type GenericSchema, type Hardware, type HardwareComponentType, type HardwareFromProcedure, HardwareInputNumber, HardwareNumericStep, type HardwareObjectProps, schema_d as HardwareSchema, HardwareState, HardwareTemplate, types_d as HardwareTypes, type HardwareVariant, InfiniteKnob360, KeyError, Laser, LaserHeating, Mocks$i as LaserHeatingMocks, type LaserHeatingSchema, Variants$m as LaserHeatingVariants, type LaserHeatingWidgetOptions, Mocks$j as LaserMocks, type LaserSchema, Variants$n as LaserVariants, type LaserWidgetOptions, Light, Mocks$h as LightMocks, type LightSchema, Variants$l as LightVariants, LimaBinning, LimaDefault, TomoDetectorSize$2 as LimaDescription, TomoDetectorSize$1 as LimaImageRoi, Mocks$g as LimaMocks, type LimaSchema, LimaRoiShape as LimaShape, LimaSimulator, TomoDetectorSize as LimaSize, LimaState, LimaTransformation, Variants$k as LimaVariants, LoadingObject, MeasurementGroup as MeasurementGroupDefault, Mocks$f as MeasurementGroupMocks, type MeasurementGroupSchema, MeasurementGroupSimulator, Variants$j as MeasurementGroupVariants, MissingComponentObject, MissingKeysError, MissingObject, type Monitor, MonitorHardware, MonitorHardwareProperty, MonitorPanel, MonitorPanelItem, type MonitorPanelProps, MotorDefault, type MotorDefaultOptions, Mocks$e as MotorMocks, MotorRotation, type MotorSchema, MotorSimulator, MotorState, MotorText, Variants$i as MotorVariants, MultiState, Multiposition$1 as Multiposition, Multiposition as MultipositionDefault2, type MultipositionDefault2Options, Mocks$d as MultipositionMocks, type MultipositionSchema, MultipositionSimulator, Variants$h as MultipositionVariants, NoObject$1 as NoObject, Yaml as None, NoObject as NullObject, NumericStep, Optic as OpticDefault, Mocks$c as OpticMocks, type OpticSchema, OpticSimulator, OpticState, Variants$g as OpticVariants, type OpticWidgetOptions, Panel, ProcedureExecution, ProcedureManage, Mocks$b as ProcedureMocks, type ProcedureSchema, ProcedureState, ProcedureValidate, Variants$f as ProcedureVariants, Pump as PumpDefault, Mocks$7 as PumpMocks, type PumpSchema, Variants$b as PumpVariants, Pusher as PusherDefault, Mocks$6 as PusherMocks, type PusherOptions, type PusherSchema, PusherSimulator, PusherState, Variants$a as PusherVariants, RegulationLoop as RegulationDefault, Mocks$a as RegulationMocks, type RegulationOptions, RegulationPlot, type RegulationSchema, RegulationSimulator, Variants$e as RegulationVariants, type ScanFromProcedure, ServiceDefault, Mocks$5 as ServiceMocks, ServiceProtected, type ServiceSchema, ServiceState, Variants$9 as ServiceVariants, ShutterDefault, Mocks$9 as ShutterMocks, ShutterProtected, type ShutterSchema, ShutterSimulator, ShutterState, Variants$d as ShutterVariants, SlitDefault, Mocks$8 as SlitMocks, type SlitSchema, SlitState, Variants$c as SlitVariants, State$1 as State, Synoptic, type SynopticElementType, type SynopticType, Yaml$1 as Todo, TomoConfigLatencyTime, type TomoConfigSchema, Variants$2 as TomoConfigVariants, TomoDetectorAcquisitionMode, type TomoDetectorFieldOfViewOptions, Mocks$3 as TomoDetectorMocks, TomoDetectorSamplePixelSize, type TomoDetectorSchema, TomoDetectorState, Variants$6 as TomoDetectorVariants, TomoDetectors as TomoDetectorsDefault, Mocks$2 as TomoDetectorsMocks, type TomoDetectorsSchema, TomoDetectorsState, Variants$5 as TomoDetectorsVariants, TomoFlatMotionDefault, Mocks$4 as TomoFlatMotionMocks, type TomoFlatMotionSchema, TomoFlatMotionSimulator, TomoFlatMotionSmall, TomoFlatMotionState, type TomoFlatMotionStep, Variants$8 as TomoFlatMotionVariants, type TomoHoloDistance, type TomoHoloSchema, TomoHoloState, Variants$1 as TomoHoloVariants, TomoImagingActions, TomoImagingDefault, TomoImagingExposureTime, Mocks$1 as TomoImagingMocks, type TomoImagingOptions, type TomoImagingSchema, TomoImagingSettleTime, TomoImagingSimulator, TomoImagingState, TomoImagingUpdateMode, Variants$4 as TomoImagingVariants, TomoReferencePositionDefault, type TomoReferencePositionSchema, Variants$7 as TomoReferencePositionVariants, type TomoSampleStageSchema, Variants$3 as TomoSampleStageVariants, TypeIcon, type Props$8 as TypeIconOptions, Valve as ValveDefault, Mocks as ValveMocks, type ValveSchema, Variants as ValveVariants, ErrorBoundary as YAMLErrorBoundary, Main as YAMLLayout, asserts_d as YamlAsserts, type YamlComponent, type YamlNode, createMotorMock, dynamicOp, 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 };
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 };