@soft-stech/bootsman-ui-shadcn 0.1.0-beta.8 → 0.1.0-beta.9
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.
- 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;
|