@esrf/daiquiri-lib 5.4.0 → 5.5.1

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
@@ -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;
@@ -121,15 +120,21 @@ interface HardwareDesc<H extends Hardware = Hardware> {
121
120
  monitor?: HardwareComponentType<H>;
122
121
  }
123
122
  /**
124
- * TODO: Add a description
123
+ * Props accepted by a hardware widget container
125
124
  */
126
125
  interface HardwareObjectProps {
126
+ /** Hardware id to bind to. */
127
127
  id: string;
128
128
  options: {
129
+ /** Hardware variant used for the widget container. */
129
130
  variant?: string;
131
+ /** Header text shown above the hardware widget. */
130
132
  header?: string;
133
+ /** Width, in pixels, of the widget container. */
131
134
  width?: number;
135
+ /** Bootstrap column width (1-12) of the widget container. */
132
136
  colWidth?: number;
137
+ /** If true, don't render anything when the underlying value is empty/none. */
133
138
  emptyifnone?: boolean;
134
139
  };
135
140
  propertiesSchema?: Record<string, unknown>;
@@ -1464,6 +1469,14 @@ type RegulationSchema = Hardware<{
1464
1469
  }>;
1465
1470
  declare const RegulationHardwareDesc: HardwareDesc<RegulationSchema>;
1466
1471
 
1472
+ /**
1473
+ * Mirrors react-bootstrap's `Placement` (itself re-exported from
1474
+ * `@restart/ui`/`@popperjs/core` via an inline `import()` type), spelled out
1475
+ * as a literal union so widget-options codegen (which walks these
1476
+ * interfaces with the TypeScript compiler API to produce a JSON Schema) can
1477
+ * represent it — codegen can't resolve through the `import()` type node.
1478
+ */
1479
+ 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
1480
  interface RegulationOptions extends HardwareWidgetOptions {
1468
1481
  /** Default step size to use for up / down arrows */
1469
1482
  step?: number;
@@ -1480,7 +1493,7 @@ interface RegulationOptions extends HardwareWidgetOptions {
1480
1493
  /** Popup button title */
1481
1494
  buttonTitle?: string;
1482
1495
  /** Popup placement */
1483
- popupPlacement?: Placement;
1496
+ popupPlacement?: PopupPlacement;
1484
1497
  }
1485
1498
 
1486
1499
  declare function RegulationLoop(props: HardwareWidgetProps<RegulationSchema, RegulationOptions>): react_jsx_runtime.JSX.Element;
@@ -2395,7 +2408,11 @@ interface YamlComponent {
2395
2408
  [option: string]: unknown;
2396
2409
  }
2397
2410
 
2398
- declare function Yaml$1(props: YamlComponent): react_jsx_runtime.JSX.Element;
2411
+ interface YamlTodoOptions {
2412
+ /** Message to display, defaults to "TODO" */
2413
+ message?: string;
2414
+ }
2415
+ declare function Yaml$1(props: YamlComponent & YamlTodoOptions): react_jsx_runtime.JSX.Element;
2399
2416
 
2400
2417
  declare function Yaml(props: YamlComponent): react_jsx_runtime.JSX.Element;
2401
2418
 
@@ -2522,6 +2539,14 @@ declare function registerYamlComponent(name: string, component: ComponentType<an
2522
2539
  * Such components are wrapped inside a `Panel`.
2523
2540
  */
2524
2541
  declare function registerYamlComponents(map: Record<string, ComponentType<any>>): void;
2542
+ /**
2543
+ * Get the current mapping from Yaml `type` to registered component.
2544
+ */
2545
+ declare function getYamlComponents(): Record<string, ComponentType<any>>;
2546
+ /**
2547
+ * Get the current mapping from Yaml `type` to registered container.
2548
+ */
2549
+ declare function getYamlContainers(): Record<string, ComponentType<any>>;
2525
2550
 
2526
2551
  type Defined<T> = T extends undefined ? never : T;
2527
2552
  declare function assertKeyExpected<T>(yamlNode: YamlNode | undefined, key: string, value: T): asserts value is Defined<T>;
@@ -2598,6 +2623,112 @@ declare namespace asserts_d {
2598
2623
  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
2624
  }
2600
2625
 
2626
+ interface YamlRowOptions {
2627
+ /** Inline CSS styles applied to the row */
2628
+ style?: Record<string, any>;
2629
+ }
2630
+
2631
+ interface YamlColOptions {
2632
+ /** Inline CSS styles applied to the column */
2633
+ style?: Record<string, any>;
2634
+ /** Bootstrap column width (1-12) */
2635
+ xs?: number;
2636
+ }
2637
+
2638
+ interface YamlContainerOptions {
2639
+ /** Options spread onto the underlying Container */
2640
+ options?: Record<string, any>;
2641
+ /** Inline CSS styles applied to the row */
2642
+ style?: Record<string, any>;
2643
+ }
2644
+
2645
+ interface YamlGridOptions {
2646
+ /** Grid panel title */
2647
+ title?: string;
2648
+ /** CSS grid-template-columns value */
2649
+ columns?: string;
2650
+ /** CSS grid-template-rows value */
2651
+ rows?: string;
2652
+ /** Inline CSS styles applied to the column */
2653
+ style?: Record<string, any>;
2654
+ }
2655
+ /** Options for an individual cell within a grid. */
2656
+ interface YamlGridCellOptions {
2657
+ /** Number of grid columns this cell spans */
2658
+ columnSpan?: number;
2659
+ /** Number of grid rows this cell spans */
2660
+ rowSpan?: number;
2661
+ }
2662
+
2663
+ interface YamlPanelOptions {
2664
+ /** Options spread onto the underlying Panel */
2665
+ options?: Record<string, any>;
2666
+ /** Panel title */
2667
+ title?: string;
2668
+ /** Center the panel's contents */
2669
+ centerContent?: boolean;
2670
+ /** Inline CSS styles applied to the underlying Panel */
2671
+ style?: Record<string, any>;
2672
+ }
2673
+
2674
+ /** Options for an individual tab within Tabs */
2675
+ interface YamlTabsRowOptions {
2676
+ /** Tab header */
2677
+ title?: string;
2678
+ /** Inline CSS styles applied to the tab's content pane */
2679
+ style?: Record<string, any>;
2680
+ }
2681
+ interface YamlTabsOptions {
2682
+ /** Options spread onto the underlying Panel */
2683
+ options?: Record<string, any>;
2684
+ /** Tabs panel title */
2685
+ title: string;
2686
+ /** Inline CSS styles applied to the underlying Panel */
2687
+ style?: Record<string, any>;
2688
+ }
2689
+
2690
+ /** A section header spanning both columns of the form grid. */
2691
+ interface YamlFormHeaderOptions {
2692
+ type: 'formheader';
2693
+ /** Header text */
2694
+ title?: string;
2695
+ /** Inline CSS styles applied to the form's content grid */
2696
+ style?: Record<string, any>;
2697
+ }
2698
+
2699
+ /** A single labelled row of the form, rendering its content in the second column. */
2700
+ interface YamlFormRowOptions {
2701
+ /** Type of the node rendered in the row's content column (e.g. 'hardware') */
2702
+ type: string;
2703
+ /** Row title shown in the first column; for hardware rows, defaults to the hardware id's name if unset */
2704
+ title: string;
2705
+ /** For hardware rows, show the hardware state under the title */
2706
+ stateinheader?: boolean;
2707
+ /** CSS align-self applied to the title cell */
2708
+ titlealign?: string;
2709
+ /** Hardware id, used for the default title and passed to the rendered content node */
2710
+ id?: string;
2711
+ /** Hardware variant passed to the rendered content node */
2712
+ variant?: string;
2713
+ /** Passed through to the rendered content node */
2714
+ options?: Record<string, any>;
2715
+ /** Passed through to the rendered content node */
2716
+ even: boolean;
2717
+ }
2718
+ interface YamlFormOptions {
2719
+ /** Form panel title */
2720
+ title?: string;
2721
+ /** Options spread onto the underlying Panel */
2722
+ options?: Record<string, any>;
2723
+ /** Inline CSS styles applied to the form's content grid */
2724
+ style?: Record<string, any>;
2725
+ }
2726
+
2727
+ interface YamlLabelOptions {
2728
+ /** Text to display */
2729
+ label: string;
2730
+ }
2731
+
2601
2732
  interface RuntimeHooks {
2602
2733
  useHardware?: (id: string | null) => AnyHardware | null;
2603
2734
  useHardwareChangeActions?: (name: string | null) => HardwareChangeActions;
@@ -2730,4 +2861,4 @@ declare function getHardwareVariantComponent(type: string, variant: string): Har
2730
2861
  */
2731
2862
  declare function getAllHardwareDesc(): Record<string, HardwareDesc<AnyHardware>>;
2732
2863
 
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 };
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$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 };