Fix dependencies: Add flag-icons, tailwind directives, and postcss config

This commit is contained in:
MivoDev
2026-01-18 11:16:21 +07:00
commit 266a4b1296
10758 changed files with 1547435 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
import * as vue from 'vue';
import { PropType } from 'vue';
import { ConfigurableDocument } from '@vueuse/core';
import { Options } from 'sortablejs';
type UseSortableOptions = Options & ConfigurableDocument;
declare const UseSortable: vue.DefineComponent<vue.ExtractPropTypes<{
modelValue: {
type: PropType<any[]>;
required: true;
};
tag: {
type: StringConstructor;
default: string;
};
options: {
type: PropType<UseSortableOptions>;
required: true;
};
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}> | undefined, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
modelValue: {
type: PropType<any[]>;
required: true;
};
tag: {
type: StringConstructor;
default: string;
};
options: {
type: PropType<UseSortableOptions>;
required: true;
};
}>> & Readonly<{}>, {
tag: string;
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
export { UseSortable };