@typlog/ui 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,3 +3,10 @@ export declare function excludeProps<T extends Record<string, any>>(props: Compu
3
3
  export declare function useForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit: (name: Name, ...args: any[]) => void, exclude: string[]): ComputedRef<{
4
4
  [x: string]: any;
5
5
  }>;
6
+ export declare function extractForwardProps<T extends Record<string, any>>(props: MaybeRefOrGetter<T>, keys: string[]): [ComputedRef<{
7
+ [x: string]: any;
8
+ }>, ComputedRef<string[]>];
9
+ export declare function extractForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit: (name: Name, ...args: any[]) => void, keys: string[]): [ComputedRef<{
10
+ [x: string]: any;
11
+ }>, ComputedRef<string[]>];
12
+ export declare const extractClass: (props: Record<string, any>, keys: string[]) => string[];