UNPKG

@devgateway/dvz-ui-react

Version:

A modular, embeddable React component library for data visualization and UI, built with TypeScript. Provides reusable components for charts, maps, dashboards, and more, with built-in support for internationalization and Redux integration.

17 lines (16 loc) 699 B
export declare const htmlInputAttrs: string[]; export declare const htmlInputEvents: string[]; export declare const htmlInputProps: string[]; export declare const htmlImageProps: string[]; /** * Returns an array of objects consisting of: props of html input element and rest. * @param {object} props A ReactElement props object * @param {Object} [options={}] * @param {Array} [options.htmlProps] An array of html input props * @param {boolean} [options.includeAria] Includes all input props that starts with "aria-" * @returns {[{}, {}]} An array of objects */ export declare const partitionHTMLProps: (props: any, options?: { htmlProps?: string[]; includeAria?: boolean; }) => {}[];