@djangocfg/ui-core 2.1.101 → 2.1.102
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/components.cjs +6825 -0
- package/dist/components.cjs.map +1 -0
- package/dist/components.d.mts +1536 -0
- package/dist/components.d.ts +1536 -0
- package/dist/components.mjs +6523 -0
- package/dist/components.mjs.map +1 -0
- package/dist/hooks.cjs +715 -0
- package/dist/hooks.cjs.map +1 -0
- package/dist/hooks.mjs +675 -0
- package/dist/hooks.mjs.map +1 -0
- package/dist/index.cjs +7301 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +1861 -0
- package/dist/index.d.ts +1861 -0
- package/dist/index.mjs +6969 -0
- package/dist/index.mjs.map +1 -0
- package/dist/lib.cjs +277 -0
- package/dist/lib.cjs.map +1 -0
- package/dist/lib.mjs +264 -0
- package/dist/lib.mjs.map +1 -0
- package/package.json +30 -8
- package/src/components/otp/index.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/ui-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.102",
|
|
4
4
|
"description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-components",
|
|
@@ -24,13 +24,30 @@
|
|
|
24
24
|
"directory": "packages/ui-core"
|
|
25
25
|
},
|
|
26
26
|
"license": "MIT",
|
|
27
|
-
"main": "./
|
|
28
|
-
"
|
|
27
|
+
"main": "./dist/index.cjs",
|
|
28
|
+
"module": "./dist/index.mjs",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
29
30
|
"exports": {
|
|
30
|
-
".":
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.mjs",
|
|
34
|
+
"require": "./dist/index.cjs"
|
|
35
|
+
},
|
|
36
|
+
"./components": {
|
|
37
|
+
"types": "./dist/components.d.ts",
|
|
38
|
+
"import": "./dist/components.mjs",
|
|
39
|
+
"require": "./dist/components.cjs"
|
|
40
|
+
},
|
|
41
|
+
"./hooks": {
|
|
42
|
+
"types": "./dist/hooks.d.ts",
|
|
43
|
+
"import": "./dist/hooks.mjs",
|
|
44
|
+
"require": "./dist/hooks.cjs"
|
|
45
|
+
},
|
|
46
|
+
"./lib": {
|
|
47
|
+
"types": "./dist/lib.d.ts",
|
|
48
|
+
"import": "./dist/lib.mjs",
|
|
49
|
+
"require": "./dist/lib.cjs"
|
|
50
|
+
},
|
|
34
51
|
"./styles": "./src/styles/index.css",
|
|
35
52
|
"./styles/globals": "./src/styles/globals.css",
|
|
36
53
|
"./styles/theme": "./src/styles/theme.css",
|
|
@@ -38,11 +55,15 @@
|
|
|
38
55
|
"./styles/utilities": "./src/styles/utilities.css"
|
|
39
56
|
},
|
|
40
57
|
"files": [
|
|
58
|
+
"dist",
|
|
41
59
|
"src",
|
|
42
60
|
"README.md",
|
|
43
61
|
"LICENSE"
|
|
44
62
|
],
|
|
45
63
|
"scripts": {
|
|
64
|
+
"build": "tsup",
|
|
65
|
+
"clean": "rm -rf dist",
|
|
66
|
+
"dev": "tsup --watch",
|
|
46
67
|
"lint": "eslint .",
|
|
47
68
|
"check": "tsc --noEmit"
|
|
48
69
|
},
|
|
@@ -104,10 +125,11 @@
|
|
|
104
125
|
"vaul": "1.1.2"
|
|
105
126
|
},
|
|
106
127
|
"devDependencies": {
|
|
107
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
128
|
+
"@djangocfg/typescript-config": "^2.1.102",
|
|
108
129
|
"@types/node": "^24.7.2",
|
|
109
130
|
"@types/react": "^19.1.0",
|
|
110
131
|
"@types/react-dom": "^19.1.0",
|
|
132
|
+
"tsup": "^8.5.0",
|
|
111
133
|
"typescript": "^5.9.3"
|
|
112
134
|
},
|
|
113
135
|
"publishConfig": {
|
|
@@ -179,7 +179,7 @@ OTPInput.displayName = 'OTPInput'
|
|
|
179
179
|
/**
|
|
180
180
|
* Re-export base components for advanced usage
|
|
181
181
|
*/
|
|
182
|
-
export { InputOTPGroup, InputOTPSlot } from '
|
|
182
|
+
export { InputOTPGroup, InputOTPSlot } from '../input-otp'
|
|
183
183
|
export { InputOTPSeparator }
|
|
184
184
|
|
|
185
185
|
/**
|