@esrf/daiquiri-lib 5.0.1 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +129 -40
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3801 -3164
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/scss/_synoptic.scss +118 -0
- package/src/scss/main.scss +1 -0
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 { YamlComponent as YamlComponent$1 } from '@esrf/daiquiri-lib';
|
|
7
6
|
|
|
8
7
|
interface HardwareError {
|
|
9
8
|
property: string;
|
|
@@ -1093,7 +1092,7 @@ declare function createMotorMock(name: string, position: number): {
|
|
|
1093
1092
|
online: boolean;
|
|
1094
1093
|
};
|
|
1095
1094
|
|
|
1096
|
-
interface Props$
|
|
1095
|
+
interface Props$a {
|
|
1097
1096
|
name?: string;
|
|
1098
1097
|
minLimit?: number;
|
|
1099
1098
|
maxLimit?: number;
|
|
@@ -1106,24 +1105,52 @@ interface Props$9 {
|
|
|
1106
1105
|
};
|
|
1107
1106
|
};
|
|
1108
1107
|
}
|
|
1109
|
-
declare function MotorSimulator(props: Props$
|
|
1108
|
+
declare function MotorSimulator(props: Props$a): react_jsx_runtime.JSX.Element;
|
|
1110
1109
|
|
|
1111
1110
|
type MultipositionSchema = Hardware<{
|
|
1112
|
-
|
|
1111
|
+
/**
|
|
1112
|
+
* Actual position
|
|
1113
|
+
*/
|
|
1114
|
+
position: string | 'unknown' | null;
|
|
1115
|
+
/**
|
|
1116
|
+
* Actual state of the device.
|
|
1117
|
+
*
|
|
1118
|
+
* Can be any state of a motor.
|
|
1119
|
+
*/
|
|
1120
|
+
state: 'MOVING' | 'OFF' | 'READY' | 'FAULT' | 'DISABLED' | 'UNKNOWN';
|
|
1121
|
+
/**
|
|
1122
|
+
* Described positions
|
|
1123
|
+
*/
|
|
1113
1124
|
positions: {
|
|
1125
|
+
/**
|
|
1126
|
+
* Identifier of the position
|
|
1127
|
+
*/
|
|
1114
1128
|
position: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* Human readable description
|
|
1131
|
+
*/
|
|
1115
1132
|
description?: string;
|
|
1133
|
+
/**
|
|
1134
|
+
* Location of this position represented by a set of motor/position
|
|
1135
|
+
*/
|
|
1116
1136
|
target: {
|
|
1117
1137
|
object: string;
|
|
1118
1138
|
destination: number | string;
|
|
1119
1139
|
tolerance?: number;
|
|
1120
1140
|
}[];
|
|
1121
1141
|
}[];
|
|
1122
|
-
state: string;
|
|
1123
1142
|
}>;
|
|
1124
1143
|
declare const Variants$g: HardwareVariant<MultipositionSchema>;
|
|
1125
1144
|
|
|
1126
|
-
declare function Multiposition(props: HardwareWidgetProps<MultipositionSchema>): react_jsx_runtime.JSX.Element;
|
|
1145
|
+
declare function Multiposition$1(props: HardwareWidgetProps<MultipositionSchema>): react_jsx_runtime.JSX.Element;
|
|
1146
|
+
|
|
1147
|
+
interface MultipositionDefault2Options extends HardwareWidgetOptions {
|
|
1148
|
+
/**
|
|
1149
|
+
* Display a search input
|
|
1150
|
+
*/
|
|
1151
|
+
search?: boolean;
|
|
1152
|
+
}
|
|
1153
|
+
declare function Multiposition(props: HardwareWidgetProps<MultipositionSchema, MultipositionDefault2Options>): react_jsx_runtime.JSX.Element;
|
|
1127
1154
|
|
|
1128
1155
|
declare const Mocks$c: {
|
|
1129
1156
|
default: {
|
|
@@ -1248,10 +1275,10 @@ declare const Mocks$b: {
|
|
|
1248
1275
|
};
|
|
1249
1276
|
};
|
|
1250
1277
|
|
|
1251
|
-
interface Props$
|
|
1278
|
+
interface Props$9 {
|
|
1252
1279
|
kind: 'fixed' | 'range' | 'multi';
|
|
1253
1280
|
}
|
|
1254
|
-
declare function OpticSimulator(props: PropsWithSimulator<Props$
|
|
1281
|
+
declare function OpticSimulator(props: PropsWithSimulator<Props$9>): react_jsx_runtime.JSX.Element;
|
|
1255
1282
|
|
|
1256
1283
|
type ProcedureSchema = Hardware<{
|
|
1257
1284
|
state: string;
|
|
@@ -1530,7 +1557,20 @@ type PusherSchema = Hardware<{
|
|
|
1530
1557
|
}>;
|
|
1531
1558
|
declare const Variants$a: HardwareVariant<PusherSchema>;
|
|
1532
1559
|
|
|
1533
|
-
|
|
1560
|
+
interface PusherOptions extends HardwareWidgetOptions {
|
|
1561
|
+
/**
|
|
1562
|
+
* Orientation of the push action.
|
|
1563
|
+
*
|
|
1564
|
+
* This changes the way the widget is displayed.
|
|
1565
|
+
*
|
|
1566
|
+
* One of:
|
|
1567
|
+
* - `right-left`: Push the sample from the right to the left (default)
|
|
1568
|
+
* - `left-right`: Push the sample from the left to the right
|
|
1569
|
+
*/
|
|
1570
|
+
orientation?: 'right-left' | 'left-right';
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
declare function Pusher(props: HardwareWidgetProps<PusherSchema, PusherOptions>): react_jsx_runtime.JSX.Element;
|
|
1534
1574
|
|
|
1535
1575
|
declare function PusherState(props: {
|
|
1536
1576
|
hardware: PusherSchema;
|
|
@@ -1595,7 +1635,7 @@ interface TomoFlatMotionStep {
|
|
|
1595
1635
|
relative_position: number | null;
|
|
1596
1636
|
}
|
|
1597
1637
|
interface TomoFlatMotionProperties extends Record<string, unknown> {
|
|
1598
|
-
state: 'READY' | 'IN' | 'OUT' | 'MOVING_IN' | 'MOVING_OUT' | 'UNKNOWN';
|
|
1638
|
+
state: 'READY' | 'IN' | 'OUT' | 'MOVING_IN' | 'MOVING_OUT' | 'LOST' | 'UNKNOWN';
|
|
1599
1639
|
available_axes: string[];
|
|
1600
1640
|
motion: TomoFlatMotionStep[];
|
|
1601
1641
|
move_in_parallel: boolean;
|
|
@@ -1733,6 +1773,17 @@ declare function TomoDetectorState(props: {
|
|
|
1733
1773
|
hardware: TomoDetectorSchema;
|
|
1734
1774
|
}): react_jsx_runtime.JSX.Element;
|
|
1735
1775
|
|
|
1776
|
+
interface TomoDetectorFieldOfViewOptions extends HardwareWidgetOptions {
|
|
1777
|
+
/**
|
|
1778
|
+
* The unit to be used to display the field of view.
|
|
1779
|
+
*/
|
|
1780
|
+
display_unit?: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* Number of digits
|
|
1783
|
+
*/
|
|
1784
|
+
digits?: number;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1736
1787
|
declare const Mocks$3: {
|
|
1737
1788
|
default: {
|
|
1738
1789
|
id: string;
|
|
@@ -1740,10 +1791,13 @@ declare const Mocks$3: {
|
|
|
1740
1791
|
online: boolean;
|
|
1741
1792
|
properties: {
|
|
1742
1793
|
state: string;
|
|
1743
|
-
actual_size: number[];
|
|
1744
1794
|
sample_pixel_size_mode: string;
|
|
1745
1795
|
user_sample_pixel_size: number;
|
|
1746
1796
|
sample_pixel_size: number;
|
|
1797
|
+
detector: string;
|
|
1798
|
+
optic: string;
|
|
1799
|
+
source_distance: number;
|
|
1800
|
+
acq_mode: string;
|
|
1747
1801
|
};
|
|
1748
1802
|
protocol: string;
|
|
1749
1803
|
require_staff: boolean;
|
|
@@ -1808,7 +1862,14 @@ declare function TomoImagingActions(props: HardwareWidgetProps<TomoImagingSchema
|
|
|
1808
1862
|
|
|
1809
1863
|
declare function TomoImagingDefault(props: HardwareWidgetProps<TomoImagingSchema>): react_jsx_runtime.JSX.Element;
|
|
1810
1864
|
|
|
1811
|
-
|
|
1865
|
+
interface TomoImagingOptions extends HardwareWidgetOptions {
|
|
1866
|
+
/** Number of digits for the time */
|
|
1867
|
+
digits?: number;
|
|
1868
|
+
/** Unit tailed for the time (if undefined the default is 's' for second) */
|
|
1869
|
+
unit?: string;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
declare function TomoImagingExposureTime(props: HardwareWidgetProps<TomoImagingSchema, TomoImagingOptions>): react_jsx_runtime.JSX.Element;
|
|
1812
1873
|
|
|
1813
1874
|
declare function TomoImagingSettleTime(props: HardwareWidgetProps<TomoImagingSchema>): react_jsx_runtime.JSX.Element;
|
|
1814
1875
|
|
|
@@ -1924,7 +1985,7 @@ declare const Mocks: {
|
|
|
1924
1985
|
};
|
|
1925
1986
|
};
|
|
1926
1987
|
|
|
1927
|
-
interface Props$
|
|
1988
|
+
interface Props$8 {
|
|
1928
1989
|
online: boolean;
|
|
1929
1990
|
activeMessage?: string;
|
|
1930
1991
|
inactiveMessage?: string;
|
|
@@ -1932,9 +1993,9 @@ interface Props$7 {
|
|
|
1932
1993
|
icon: string;
|
|
1933
1994
|
name: string;
|
|
1934
1995
|
}
|
|
1935
|
-
declare function TypeIcon(props: Props$
|
|
1996
|
+
declare function TypeIcon(props: Props$8): react_jsx_runtime.JSX.Element;
|
|
1936
1997
|
|
|
1937
|
-
interface Props$
|
|
1998
|
+
interface Props$7 {
|
|
1938
1999
|
hardware: Hardware;
|
|
1939
2000
|
headerMode?: string;
|
|
1940
2001
|
widgetIcon: ReactElement;
|
|
@@ -1945,7 +2006,7 @@ interface Props$6 {
|
|
|
1945
2006
|
* Normalized way to compose hardware component in order to provide the same
|
|
1946
2007
|
* kind of layout
|
|
1947
2008
|
*/
|
|
1948
|
-
declare function HardwareTemplate(props: Props$
|
|
2009
|
+
declare function HardwareTemplate(props: Props$7): react_jsx_runtime.JSX.Element;
|
|
1949
2010
|
|
|
1950
2011
|
/**
|
|
1951
2012
|
* Input number synchronized with a hardware.
|
|
@@ -2118,12 +2179,12 @@ interface NoObjectProps {
|
|
|
2118
2179
|
}
|
|
2119
2180
|
declare function NoObject(props: NoObjectProps): react_jsx_runtime.JSX.Element;
|
|
2120
2181
|
|
|
2121
|
-
interface Props$
|
|
2182
|
+
interface Props$6 {
|
|
2122
2183
|
className?: string;
|
|
2123
2184
|
}
|
|
2124
|
-
declare function FullSizer(props: PropsWithChildren<Props$
|
|
2185
|
+
declare function FullSizer(props: PropsWithChildren<Props$6>): react_jsx_runtime.JSX.Element;
|
|
2125
2186
|
|
|
2126
|
-
interface Props$
|
|
2187
|
+
interface Props$5 {
|
|
2127
2188
|
size: number;
|
|
2128
2189
|
value?: number | null;
|
|
2129
2190
|
target?: number | null;
|
|
@@ -2140,7 +2201,7 @@ interface Props$4 {
|
|
|
2140
2201
|
/**
|
|
2141
2202
|
* Widget to handle cyclic angle value in degree displayed as an infinite knob
|
|
2142
2203
|
*/
|
|
2143
|
-
declare function InfiniteKnob360(props: Props$
|
|
2204
|
+
declare function InfiniteKnob360(props: Props$5): react_jsx_runtime.JSX.Element;
|
|
2144
2205
|
|
|
2145
2206
|
declare function Gauge(props: {
|
|
2146
2207
|
size: number;
|
|
@@ -2153,7 +2214,7 @@ declare function Gauge(props: {
|
|
|
2153
2214
|
hiDanger?: number;
|
|
2154
2215
|
}): react_jsx_runtime.JSX.Element;
|
|
2155
2216
|
|
|
2156
|
-
interface Props$
|
|
2217
|
+
interface Props$4 {
|
|
2157
2218
|
step?: number | string;
|
|
2158
2219
|
steps?: (number | string)[];
|
|
2159
2220
|
disabled: boolean;
|
|
@@ -2176,7 +2237,7 @@ interface Props$3 {
|
|
|
2176
2237
|
}) => void;
|
|
2177
2238
|
onKeyDown?: (e: KeyboardEvent<HTMLInputElement>) => void;
|
|
2178
2239
|
}
|
|
2179
|
-
declare const NumericStep: react.ForwardRefExoticComponent<Props$
|
|
2240
|
+
declare const NumericStep: react.ForwardRefExoticComponent<Props$4 & react.RefAttributes<HTMLInputElement>>;
|
|
2180
2241
|
|
|
2181
2242
|
declare function PanelHeader(props: PropsWithChildren<{
|
|
2182
2243
|
style?: Record<string, any>;
|
|
@@ -2185,20 +2246,39 @@ declare function PanelContents(props: PropsWithChildren<{
|
|
|
2185
2246
|
style?: Record<string, any>;
|
|
2186
2247
|
className?: string;
|
|
2187
2248
|
}>): react_jsx_runtime.JSX.Element;
|
|
2188
|
-
interface Props$
|
|
2249
|
+
interface Props$3 {
|
|
2189
2250
|
style?: Record<string, any>;
|
|
2190
2251
|
scroll?: boolean;
|
|
2191
2252
|
className?: string;
|
|
2192
2253
|
}
|
|
2193
|
-
declare function Panel(props: PropsWithChildren<Props$
|
|
2254
|
+
declare function Panel(props: PropsWithChildren<Props$3>): react_jsx_runtime.JSX.Element;
|
|
2194
2255
|
declare namespace Panel {
|
|
2195
2256
|
var Header: typeof PanelHeader;
|
|
2196
2257
|
var Contents: typeof PanelContents;
|
|
2197
2258
|
}
|
|
2198
2259
|
|
|
2199
|
-
|
|
2260
|
+
interface YamlNode {
|
|
2261
|
+
type: string;
|
|
2262
|
+
children?: YamlNode[];
|
|
2263
|
+
_parentNode: YamlNode | null;
|
|
2264
|
+
_indexFromParent: number | null;
|
|
2265
|
+
}
|
|
2266
|
+
interface YamlRoot extends YamlNode {
|
|
2267
|
+
name: string;
|
|
2268
|
+
error: string;
|
|
2269
|
+
}
|
|
2270
|
+
interface AnyYamlNode extends YamlNode {
|
|
2271
|
+
[key: string]: any;
|
|
2272
|
+
}
|
|
2273
|
+
interface YamlComponent {
|
|
2274
|
+
providers?: Record<string, any>;
|
|
2275
|
+
yamlNode: YamlNode;
|
|
2276
|
+
[option: string]: unknown;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
declare function Yaml$1(props: YamlComponent): react_jsx_runtime.JSX.Element;
|
|
2200
2280
|
|
|
2201
|
-
declare function Yaml(props: YamlComponent
|
|
2281
|
+
declare function Yaml(props: YamlComponent): react_jsx_runtime.JSX.Element;
|
|
2202
2282
|
|
|
2203
2283
|
/**
|
|
2204
2284
|
* Component which display the state of a hardware.
|
|
@@ -2213,24 +2293,33 @@ declare function HardwareState(props: {
|
|
|
2213
2293
|
};
|
|
2214
2294
|
}): react_jsx_runtime.JSX.Element;
|
|
2215
2295
|
|
|
2216
|
-
interface
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
_indexFromParent: number | null;
|
|
2296
|
+
interface StateComparator {
|
|
2297
|
+
comparator: string;
|
|
2298
|
+
comparison: string;
|
|
2299
|
+
color?: string;
|
|
2221
2300
|
}
|
|
2222
|
-
interface
|
|
2301
|
+
interface SynopticElementType {
|
|
2223
2302
|
name: string;
|
|
2224
|
-
|
|
2303
|
+
value?: string;
|
|
2304
|
+
value_display_digits?: number;
|
|
2305
|
+
state?: string;
|
|
2306
|
+
state_comparison?: StateComparator | StateComparator[];
|
|
2307
|
+
ids?: string[];
|
|
2225
2308
|
}
|
|
2226
|
-
interface
|
|
2227
|
-
|
|
2309
|
+
interface SynopticType {
|
|
2310
|
+
elements: SynopticElementType[];
|
|
2311
|
+
synoptic: string;
|
|
2312
|
+
color_icons: boolean;
|
|
2228
2313
|
}
|
|
2229
|
-
interface
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2314
|
+
interface Props$2 {
|
|
2315
|
+
fetchSVG: (image: string) => Promise<{
|
|
2316
|
+
data: any;
|
|
2317
|
+
}>;
|
|
2318
|
+
getHardwareGroupComponent: (ids: string[]) => JSX.Element;
|
|
2319
|
+
hardwareObjects: Record<string, AnyHardware>;
|
|
2320
|
+
synoptic: SynopticType;
|
|
2233
2321
|
}
|
|
2322
|
+
declare function Synoptic(props: Props$2): react_jsx_runtime.JSX.Element;
|
|
2234
2323
|
|
|
2235
2324
|
interface Props$1 {
|
|
2236
2325
|
testid: string;
|
|
@@ -2506,4 +2595,4 @@ declare function registerHardwareVariant(type: string, variant: string, componen
|
|
|
2506
2595
|
*/
|
|
2507
2596
|
declare function getHardwareVariantComponent(type: string, variant: string): HardwareComponentType | null;
|
|
2508
2597
|
|
|
2509
|
-
export { type ActuatorSchema, AirBearing, Mocks$m as AirBearingMocks, AirBearingProtected, type AirBearingSchema, AirBearingSimulator, AirBearingState, Variants$q as AirBearingVariants, type AnyHardware, type AnySchema, type BaseHardware, Info as BaseInfo, type BaseInfoWidgetOptions, Mocks$n as BaseMocks, Name as BaseName, type BaseNameWidgetOptions, Property as BaseProperty, type BasePropertyWidgetOptions, DefaultState as BaseState, Variants$r as BaseVariants, EnergyManagerDefault, Mocks$l as EnergyManagerMocks, type EnergyManagerSchema, EnergyManagerSimulator, EnergyManagerState, Variants$p as EnergyManagerVariants, ErrorObject, type ExceptionFromProcedure, formatting_d as Formatting, Frontend, Mocks$k as FrontendMocks, type FrontendSchema, Variants$o as FrontendVariants, FullSizer, Gauge$1 as Gauge, Gauge as GaugeIndicator, Mocks$j as GaugeMocks, type GaugeSchema, Variants$n 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$h as LaserHeatingMocks, type LaserHeatingSchema, Variants$l as LaserHeatingVariants, type LaserHeatingWidgetOptions, Mocks$i as LaserMocks, type LaserSchema, Variants$m as LaserVariants, type LaserWidgetOptions, Light, Mocks$g as LightMocks, type LightSchema, Variants$k as LightVariants, LimaBinning, LimaDefault, TomoDetectorSize$2 as LimaDescription, TomoDetectorSize$1 as LimaImageRoi, Mocks$f as LimaMocks, type LimaSchema, LimaRoiShape as LimaShape, LimaSimulator, TomoDetectorSize as LimaSize, LimaState, LimaTransformation, Variants$j as LimaVariants, LoadingObject, MeasurementGroup as MeasurementGroupDefault, Mocks$e as MeasurementGroupMocks, type MeasurementGroupSchema, MeasurementGroupSimulator, Variants$i as MeasurementGroupVariants, MissingComponentObject, MissingKeysError, MissingObject, type Monitor, MonitorHardware, MonitorHardwareProperty, MonitorPanel, MonitorPanelItem, type MonitorPanelProps, MotorDefault, type MotorDefaultOptions, Mocks$d as MotorMocks, MotorRotation, type MotorSchema, MotorSimulator, MotorState, MotorText, Variants$h as MotorVariants, MultiState, Multiposition, Mocks$c as MultipositionMocks, type MultipositionSchema, MultipositionSimulator, Variants$g as MultipositionVariants, NoObject$1 as NoObject, Yaml as None, NoObject as NullObject, NumericStep, Optic as OpticDefault, Mocks$b as OpticMocks, type OpticSchema, OpticSimulator, OpticState, Variants$f as OpticVariants, type OpticWidgetOptions, Panel, ProcedureExecution, ProcedureManage, Mocks$a as ProcedureMocks, type ProcedureSchema, ProcedureState, ProcedureValidate, Variants$e as ProcedureVariants, Pump as PumpDefault, Mocks$7 as PumpMocks, type PumpSchema, Variants$b as PumpVariants, Pusher as PusherDefault, Mocks$6 as PusherMocks, type PusherSchema, PusherSimulator, PusherState, Variants$a as PusherVariants, 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, Yaml$1 as Todo, TomoConfigLatencyTime, type TomoConfigSchema, Variants$2 as TomoConfigVariants, TomoDetectorAcquisitionMode, 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 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$
|
|
2598
|
+
export { type ActuatorSchema, AirBearing, Mocks$m as AirBearingMocks, AirBearingProtected, type AirBearingSchema, AirBearingSimulator, AirBearingState, Variants$q as AirBearingVariants, type AnyHardware, type AnySchema, type BaseHardware, Info as BaseInfo, type BaseInfoWidgetOptions, Mocks$n as BaseMocks, Name as BaseName, type BaseNameWidgetOptions, Property as BaseProperty, type BasePropertyWidgetOptions, DefaultState as BaseState, Variants$r as BaseVariants, EnergyManagerDefault, Mocks$l as EnergyManagerMocks, type EnergyManagerSchema, EnergyManagerSimulator, EnergyManagerState, Variants$p as EnergyManagerVariants, ErrorObject, type ExceptionFromProcedure, formatting_d as Formatting, Frontend, Mocks$k as FrontendMocks, type FrontendSchema, Variants$o as FrontendVariants, FullSizer, Gauge$1 as Gauge, Gauge as GaugeIndicator, Mocks$j as GaugeMocks, type GaugeSchema, Variants$n 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$h as LaserHeatingMocks, type LaserHeatingSchema, Variants$l as LaserHeatingVariants, type LaserHeatingWidgetOptions, Mocks$i as LaserMocks, type LaserSchema, Variants$m as LaserVariants, type LaserWidgetOptions, Light, Mocks$g as LightMocks, type LightSchema, Variants$k as LightVariants, LimaBinning, LimaDefault, TomoDetectorSize$2 as LimaDescription, TomoDetectorSize$1 as LimaImageRoi, Mocks$f as LimaMocks, type LimaSchema, LimaRoiShape as LimaShape, LimaSimulator, TomoDetectorSize as LimaSize, LimaState, LimaTransformation, Variants$j as LimaVariants, LoadingObject, MeasurementGroup as MeasurementGroupDefault, Mocks$e as MeasurementGroupMocks, type MeasurementGroupSchema, MeasurementGroupSimulator, Variants$i as MeasurementGroupVariants, MissingComponentObject, MissingKeysError, MissingObject, type Monitor, MonitorHardware, MonitorHardwareProperty, MonitorPanel, MonitorPanelItem, type MonitorPanelProps, MotorDefault, type MotorDefaultOptions, Mocks$d as MotorMocks, MotorRotation, type MotorSchema, MotorSimulator, MotorState, MotorText, Variants$h as MotorVariants, MultiState, Multiposition$1 as Multiposition, Multiposition as MultipositionDefault2, type MultipositionDefault2Options, Mocks$c as MultipositionMocks, type MultipositionSchema, MultipositionSimulator, Variants$g as MultipositionVariants, NoObject$1 as NoObject, Yaml as None, NoObject as NullObject, NumericStep, Optic as OpticDefault, Mocks$b as OpticMocks, type OpticSchema, OpticSimulator, OpticState, Variants$f as OpticVariants, type OpticWidgetOptions, Panel, ProcedureExecution, ProcedureManage, Mocks$a as ProcedureMocks, type ProcedureSchema, ProcedureState, ProcedureValidate, Variants$e 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, 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 };
|