@soft-stech/bootsman-ui-shadcn 0.1.0-beta.8 → 0.1.0-beta.9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bootsman-ui-shadcn.js +2053 -2007
- package/dist/bootsman-ui-shadcn.umd.cjs +37 -22
- package/dist/index.d.ts +1 -0
- package/dist/lib/utils.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
import { type ClassValue } from 'clsx';
|
2
|
+
import type { Updater } from '@tanstack/vue-table';
|
3
|
+
import { type Ref } from 'vue';
|
4
|
+
export declare function valueUpdater<T extends Updater<any>>(updaterOrValue: T, ref: Ref): void;
|
5
|
+
export declare function cn(...inputs: ClassValue[]): any;
|
6
|
+
export declare const tableColumnSortCommon: (column: Column<any>, name: string) => any;
|