/** * DevExtreme (ui/radio_group.d.ts) * Version: 21.1.7 * Build date: Thu Aug 07 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { UserDefinedElement, } from '../core/element'; import DataSource from '../data/data_source'; import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events/index'; import Editor, { ValueChangedInfo, EditorOptions, } from './editor/editor'; import { DataExpressionMixinOptions, } from './editor/ui.data_expression'; /** @public */ export type ContentReadyEvent = EventInfo; /** @public */ export type DisposingEvent = EventInfo; /** @public */ export type InitializedEvent = InitializedEventInfo; /** @public */ export type OptionChangedEvent = EventInfo & ChangedOptionInfo; /** @public */ export type ValueChangedEvent = NativeEventInfo & ValueChangedInfo; /** * @deprecated use Properties instead * @namespace DevExpress.ui */ export interface dxRadioGroupOptions extends EditorOptions, DataExpressionMixinOptions { /** * @docid * @default true * @public */ activeStateEnabled?: boolean; /** * @docid * @default true &for(desktop) * @public */ focusStateEnabled?: boolean; /** * @docid * @default true * @public */ hoverStateEnabled?: boolean; /** * @docid * @default 'horizontal' &for(tablets) * @type Enums.Orientation * @default "vertical" * @public */ layout?: 'horizontal' | 'vertical'; /** * @docid * @hidden false * @public */ name?: string; /** * @docid * @ref * @public */ value?: any; } /** * @docid * @isEditor * @inherits Editor, DataExpressionMixin * @namespace DevExpress.ui * @public */ export default class dxRadioGroup extends Editor { constructor(element: UserDefinedElement, options?: dxRadioGroupOptions) getDataSource(): DataSource; } /** @public */ export type Properties = dxRadioGroupOptions; /** @deprecated use Properties instead */ export type Options = dxRadioGroupOptions; /** @deprecated use Properties instead */ export type IOptions = dxRadioGroupOptions;