primevue-mirror/components/lib/deferredcontent/DeferredContent.d.ts

115 lines
2.9 KiB
TypeScript
Raw Normal View History

2023-02-28 15:38:13 +00:00
/**
*
* DeferredContent postpones the loading the content that is initially not in the viewport until it becomes visible on scroll.
*
* [Live Demo](https://www.primevue.org/deferredcontent/)
*
* @module deferredcontent
*
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type DeferredContentPassThroughOptionType = DeferredContentPassThroughAttributes | ((options: DeferredContentPassThroughMethodOptions) => DeferredContentPassThroughAttributes | string) | string | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface DeferredContentPassThroughMethodOptions {
2023-07-06 12:01:33 +00:00
instance: any;
props: DeferredContentProps;
state: DeferredContentState;
}
/**
* Custom passthrough(pt) options.
* @see {@link DeferredContentProps.pt}
*/
export interface DeferredContentPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
*/
root?: DeferredContentPassThroughOptionType;
2023-07-06 11:09:01 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to manage all lifecycle hooks
2023-07-06 11:09:01 +00:00
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface DeferredContentPassThroughAttributes {
[key: string]: any;
}
/**
* Defines current inline state in DeferredContent component.
*/
export interface DeferredContentState {
/**
* Current loaded state as a boolean.
* @defaultValue false
*/
loaded?: boolean;
}
/**
* Defines valid props in DeferredContent component.
*/
export interface DeferredContentProps {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
* @type {DeferredContentPassThroughOptions}
*/
pt?: DeferredContentPassThroughOptions;
2023-05-25 16:34:56 +00:00
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
2022-09-06 12:03:37 +00:00
2023-02-28 15:38:13 +00:00
/**
* Defines valid slots in DeferredContent component.
*/
2022-09-06 12:03:37 +00:00
export interface DeferredContentSlots {
/**
* Default content slot.
*/
2023-02-28 15:38:13 +00:00
default(): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-02-28 15:38:13 +00:00
/**
* Defines valid emits in DeferredContent component.
*/
export interface DeferredContentEmits {
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke when deferred content is loaded.
*/
2023-02-28 15:38:13 +00:00
load(): void;
}
2022-09-06 12:03:37 +00:00
2023-02-28 15:38:13 +00:00
/**
* **PrimeVue - DeferredContent**
*
* _DeferredContent postpones the loading the content that is initially not in the viewport until it becomes visible on scroll._
*
* [Live Demo](https://www.primevue.org/deferredcontent/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-02-28 15:38:13 +00:00
*
* @group Component
*/
2023-03-01 12:30:54 +00:00
declare class DeferredContent extends ClassComponent<DeferredContentProps, DeferredContentSlots, DeferredContentEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
DeferredContent: GlobalComponentConstructor<DeferredContent>;
2022-09-06 12:03:37 +00:00
}
}
export default DeferredContent;