Skip to content

Commit

Permalink
chore(dist): update dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinfreund committed Oct 19, 2024
1 parent 2e14de4 commit 7935126
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions dist/ColorPicker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,35 @@ import { DefineComponent } from 'vue';
import { Plugin as Plugin_2 } from 'vue';
import { PublicProps } from 'vue';

declare const __VLS_component: DefineComponent<ColorPickerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
"color-change": (data: ColorChangeDetail) => any;
}, string, PublicProps, Readonly<ColorPickerProps> & Readonly<{
"onColor-change"?: ((data: ColorChangeDetail) => any) | undefined;
}>, {
id: string;
color: string | ColorHsl | ColorHwb | ColorRgb;
visibleFormats: VisibleColorFormat[];
defaultFormat: VisibleColorFormat;
alphaChannel: AlphaChannelProp;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;

declare function __VLS_template(): {
slots: {
"hue-range-input-label"?(_: {}): any;
"alpha-range-input-label"?(_: {}): any;
"copy-button"?(_: {}): any;
"format-switch-button"?(_: {}): any;
};
refs: {
colorPicker: HTMLDivElement;
colorSpace: HTMLDivElement;
thumb: HTMLDivElement;
};
attrs: Partial<{}>;
};

declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;

declare type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
Expand Down Expand Up @@ -48,22 +77,7 @@ export declare type ColorMap = {
rgb: ColorRgb;
};

export declare const ColorPicker: __VLS_WithTemplateSlots<DefineComponent<ColorPickerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
"color-change": (data: ColorChangeDetail) => any;
}, string, PublicProps, Readonly<ColorPickerProps> & Readonly<{
"onColor-change"?: ((data: ColorChangeDetail) => any) | undefined;
}>, {
id: string;
color: string | ColorHsl | ColorHwb | ColorRgb;
visibleFormats: VisibleColorFormat[];
defaultFormat: VisibleColorFormat;
alphaChannel: AlphaChannelProp;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
"hue-range-input-label"?(_: {}): any;
"alpha-range-input-label"?(_: {}): any;
"copy-button"?(_: {}): any;
"format-switch-button"?(_: {}): any;
}>;
export declare const ColorPicker: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;

export declare interface ColorPickerProps {
/**
Expand Down

0 comments on commit 7935126

Please sign in to comment.