2024-01-30 08:02:22 +00:00
|
|
|
/**
|
|
|
|
*
|
2024-02-02 12:56:33 +00:00
|
|
|
* IconField wraps an input and an icon.
|
2024-01-30 08:02:22 +00:00
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputtext/)
|
|
|
|
*
|
|
|
|
* @module iconfield
|
|
|
|
*
|
|
|
|
*/
|
2024-02-02 12:56:33 +00:00
|
|
|
import { VNode } from 'vue';
|
2024-01-30 08:02:22 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
|
|
|
import { PassThroughOptions } from '../passthrough';
|
2024-04-02 08:24:31 +00:00
|
|
|
import { ClassComponent, DesignToken, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
2024-01-30 08:02:22 +00:00
|
|
|
|
|
|
|
export declare type IconFieldPassThroughOptionType = IconFieldPassThroughAttributes | ((options: IconFieldPassThroughMethodOptions) => IconFieldPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface IconFieldPassThroughMethodOptions {
|
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
|
|
|
instance: any;
|
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
|
|
|
props: IconFieldProps;
|
|
|
|
/**
|
|
|
|
* Defines valid attributes.
|
|
|
|
*/
|
|
|
|
attrs: any;
|
|
|
|
/**
|
|
|
|
* Defines parent options.
|
|
|
|
*/
|
|
|
|
parent: any;
|
|
|
|
/**
|
|
|
|
* Defines passthrough(pt) options in global config.
|
|
|
|
*/
|
|
|
|
global: object | undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link IconFieldProps.pt}
|
|
|
|
*/
|
|
|
|
export interface IconFieldPassThroughOptions {
|
|
|
|
/**
|
|
|
|
* Used to pass attributes to the root's DOM element.
|
|
|
|
*/
|
|
|
|
root?: IconFieldPassThroughOptionType;
|
|
|
|
/**
|
|
|
|
* Used to manage all lifecycle hooks.
|
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface IconFieldPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid properties in IconField component.
|
|
|
|
*/
|
|
|
|
export interface IconFieldProps {
|
2024-04-02 08:24:31 +00:00
|
|
|
/**
|
|
|
|
* It generates scoped CSS variables using design tokens for the component.
|
|
|
|
*/
|
|
|
|
dt?: DesignToken<any>;
|
2024-01-30 08:02:22 +00:00
|
|
|
/**
|
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
|
|
|
* @type {IconFieldPassThroughOptions}
|
|
|
|
*/
|
|
|
|
pt?: PassThrough<IconFieldPassThroughOptions>;
|
|
|
|
/**
|
|
|
|
* Used to configure passthrough(pt) options of the component.
|
|
|
|
* @type {PassThroughOptions}
|
|
|
|
*/
|
|
|
|
ptOptions?: PassThroughOptions;
|
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid slots in IconField component.
|
|
|
|
*/
|
|
|
|
export interface IconFieldSlots {
|
|
|
|
/**
|
|
|
|
* Default slot for content.
|
|
|
|
*/
|
|
|
|
default(): VNode[];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid emits in IconField component.
|
|
|
|
*/
|
|
|
|
export interface IconFieldEmits {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* **PrimeVue - IconField**
|
|
|
|
*
|
|
|
|
* _IconField is used to select a boolean value._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputtext/)
|
|
|
|
* --- ---
|
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
declare class IconField extends ClassComponent<IconFieldProps, IconFieldSlots, IconFieldEmits> {}
|
|
|
|
|
2024-03-14 22:58:11 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2024-03-04 16:18:18 +00:00
|
|
|
IconField: GlobalComponentConstructor<IconField>;
|
2024-01-30 08:02:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default IconField;
|