index.ts 683 Bytes
import { ControlComponentSlidingSwitchConfig } from './ControlComponentSlidingSwitch';
import { ControlComponentSwitchWithIconConfig } from './ControlComponentSwitchWithIcon';
import { ControlComponentToggleSwitchConfig } from './ControlComponentToggleSwitch';
import { LateralNumericalControlConfig } from './LateralNumericalControl';
import { SwitchListConfig } from './SwitchList';

export const ControlList = [
  ControlComponentSwitchWithIconConfig,
  ControlComponentSlidingSwitchConfig,
  ControlComponentToggleSwitchConfig,
  LateralNumericalControlConfig,
  SwitchListConfig,
];

export enum ControlComponentEnum {
  LATERAL_NUMERICAL_CONTROL = 'LateralNumericalControl',
}