UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

60 lines (58 loc) 2.92 kB
/*! * devextreme-vue * Version: 25.1.5 * Build date: Wed Sep 03 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-vue */ import { PropType } from "vue"; import ValidationGroup, { Properties } from "devextreme/ui/validation_group"; import { DisposingEvent, InitializedEvent, OptionChangedEvent } from "devextreme/ui/validation_group"; type AccessibleOptions = Pick<Properties, "elementAttr" | "height" | "onDisposing" | "onInitialized" | "onOptionChanged" | "width">; interface DxValidationGroup extends AccessibleOptions { readonly instance?: ValidationGroup; } declare const DxValidationGroup: import("@vue/runtime-core").DefineComponent<{ elementAttr: PropType<Record<string, any>>; height: (NumberConstructor | StringConstructor)[]; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, { instance(): ValidationGroup; }, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:elementAttr": null; "update:height": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ elementAttr: PropType<Record<string, any>>; height: (NumberConstructor | StringConstructor)[]; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; width: (NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; }, {}>; export default DxValidationGroup; export { DxValidationGroup }; import type * as DxValidationGroupTypes from "devextreme/ui/validation_group_types"; export { DxValidationGroupTypes };