appos 0.1.15-0 → 0.1.16-0
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/build/exports/date.d.ts +1 -0
- package/build/exports/db.d.ts +5194 -0
- package/build/exports/utils.d.ts +19 -0
- package/build/exports/zod.d.ts +1 -0
- package/package.json +7 -7
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ClassValue } from 'clsx';
|
|
2
|
+
export * from 'es-toolkit';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Merge Tailwind CSS class names with support for conditional classes.
|
|
6
|
+
*
|
|
7
|
+
* @param inputs Class names to merge.
|
|
8
|
+
* @returns Merged class names.
|
|
9
|
+
*/
|
|
10
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
11
|
+
/**
|
|
12
|
+
* Get initials from a full name.
|
|
13
|
+
*
|
|
14
|
+
* @param name Full name string.
|
|
15
|
+
* @returns Two-character initials (first and last name) or single initial.
|
|
16
|
+
*/
|
|
17
|
+
declare function getInitials(name: string): string;
|
|
18
|
+
|
|
19
|
+
export { cn, getInitials };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { z } from 'zod';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16-0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"release": "release-it",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"default": "./build/exports/client.js"
|
|
57
57
|
},
|
|
58
58
|
"./db": {
|
|
59
|
-
"types": "./build/exports/db.d.
|
|
60
|
-
"default": "./build/exports/db.
|
|
59
|
+
"types": "./build/exports/db.d.ts",
|
|
60
|
+
"default": "./build/exports/db.js"
|
|
61
61
|
},
|
|
62
62
|
"./server": {
|
|
63
|
-
"types": "./build/exports/server.d.
|
|
64
|
-
"default": "./build/exports/server.
|
|
63
|
+
"types": "./build/exports/server.d.ts",
|
|
64
|
+
"default": "./build/exports/server.js"
|
|
65
65
|
},
|
|
66
66
|
"./ui": {
|
|
67
67
|
"types": "./build/exports/ui/index.d.ts",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"default": "./build/exports/date.js"
|
|
77
77
|
},
|
|
78
78
|
"./test": {
|
|
79
|
-
"types": "./build/exports/test.d.
|
|
80
|
-
"default": "./build/exports/test.
|
|
79
|
+
"types": "./build/exports/test.d.ts",
|
|
80
|
+
"default": "./build/exports/test.js"
|
|
81
81
|
},
|
|
82
82
|
"./utils": {
|
|
83
83
|
"types": "./build/exports/utils.d.ts",
|