dist directory

This commit is contained in:
2024-03-12 05:28:28 +01:00
parent a385e96520
commit a27c84b7a9
283 changed files with 24264 additions and 1 deletions

38
dist/components/FwbTabs/FwbTab.vue.d.ts vendored Normal file
View File

@@ -0,0 +1,38 @@
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
name: {
type: StringConstructor;
required: true;
};
title: {
type: StringConstructor;
default: string;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
name: {
type: StringConstructor;
required: true;
};
title: {
type: StringConstructor;
default: string;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
title: string;
disabled: boolean;
}, {}>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};

View File

@@ -0,0 +1,40 @@
declare const _default: import("vue").DefineComponent<{
name: {
type: StringConstructor;
required: true;
};
title: {
type: StringConstructor;
default: string;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
active: {
type: BooleanConstructor;
default: boolean;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
name: {
type: StringConstructor;
required: true;
};
title: {
type: StringConstructor;
default: string;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
active: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
title: string;
disabled: boolean;
active: boolean;
}, {}>;
export default _default;

View File

@@ -0,0 +1,43 @@
import type { TabsVariant } from './types';
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
variant: {
type: import("vue").PropType<TabsVariant>;
default: string;
};
modelValue: {
type: import("vue").PropType<string>;
default: string;
};
directive: {
type: import("vue").PropType<"if" | "show">;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "click:pane")[], "update:modelValue" | "click:pane", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
variant: {
type: import("vue").PropType<TabsVariant>;
default: string;
};
modelValue: {
type: import("vue").PropType<string>;
default: string;
};
directive: {
type: import("vue").PropType<"if" | "show">;
default: string;
};
}>> & {
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
"onClick:pane"?: ((...args: any[]) => any) | undefined;
}, {
variant: TabsVariant;
modelValue: string;
directive: "if" | "show";
}, {}>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};

View File

@@ -0,0 +1,15 @@
import { type Ref } from 'vue';
import type { TabsVariant } from './../types';
export type TabClassMap = {
active: string;
default: string;
disabled: string;
};
export type UseTabClassesProps = {
active: Ref<boolean>;
disabled: Ref<boolean>;
variant?: TabsVariant;
};
export declare function useTabClasses(props: UseTabClassesProps): {
tabClasses: Ref<string>;
};

View File

@@ -0,0 +1,9 @@
import { type Ref } from 'vue';
import type { TabsVariant } from '../types';
export type UseTabsClassesProps = {
variant: TabsVariant;
};
export declare function useTabsClasses(props: UseTabsClassesProps): {
divClasses: Ref<string>;
ulClasses: Ref<string>;
};

View File

@@ -0,0 +1,4 @@
export declare const TAB_ACTIVATE_INJECTION_KEY = "flowbite-tab-activate-func-injection";
export declare const TAB_ACTIVE_NAME_INJECTION_KEY = "flowbite-tab-active-name-injection";
export declare const TAB_STYLE_INJECTION_KEY = "flowbite-tab-style-injection";
export declare const TAB_VISIBILITY_DIRECTIVE_INJECTION_KEY = "flowbite-tab-visibility-directive-injection";

1
dist/components/FwbTabs/types.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
export type TabsVariant = 'default' | 'underline' | 'pills';