Fixed #5506 - Add dt props to all components and directives

This commit is contained in:
mertsincan 2024-04-02 09:24:31 +01:00
parent 1bf6606457
commit f496c2669f
102 changed files with 507 additions and 101 deletions

View file

@ -11,7 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent/BaseComponent';
import { InputTextPassThroughOptions } from '../inputtext';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
import { ClassComponent, DesignToken, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
export declare type InputOtpPassThroughOptionType = InputOtpPassThroughAttributes | ((options: InputOtpPassThroughMethodOptions) => InputOtpPassThroughAttributes | string) | string | null | undefined;
@ -182,6 +182,10 @@ export interface InputOtpProps {
* @defaultValue false
*/
integerOnly?: boolean | undefined;
/**
* It generates scoped CSS variables using design tokens for the component.
*/
dt?: DesignToken<any>;
/**
* Used to pass attributes to DOM elements inside the component.
* @type {InputOtpPassThroughOptions}