@djangocfg/ui-core 2.1.151 → 2.1.153
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/ui-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.153",
|
|
4
4
|
"description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-components",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"playground": "playground dev"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@djangocfg/i18n": "^2.1.
|
|
74
|
+
"@djangocfg/i18n": "^2.1.153",
|
|
75
75
|
"react-device-detect": "^2.2.3",
|
|
76
76
|
"consola": "^3.4.2",
|
|
77
77
|
"lucide-react": "^0.545.0",
|
|
@@ -133,9 +133,9 @@
|
|
|
133
133
|
"vaul": "1.1.2"
|
|
134
134
|
},
|
|
135
135
|
"devDependencies": {
|
|
136
|
-
"@djangocfg/i18n": "^2.1.
|
|
136
|
+
"@djangocfg/i18n": "^2.1.153",
|
|
137
137
|
"@djangocfg/playground": "workspace:*",
|
|
138
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
138
|
+
"@djangocfg/typescript-config": "^2.1.153",
|
|
139
139
|
"@types/node": "^24.7.2",
|
|
140
140
|
"@types/react": "^19.1.0",
|
|
141
141
|
"@types/react-dom": "^19.1.0",
|
|
@@ -23,7 +23,7 @@ export interface ScrollAreaHandle {
|
|
|
23
23
|
export interface ScrollAreaProps
|
|
24
24
|
extends React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
|
|
25
25
|
/** Ref to access the viewport element directly */
|
|
26
|
-
viewportRef?: React.RefObject<HTMLDivElement>;
|
|
26
|
+
viewportRef?: React.RefObject<HTMLDivElement | null>;
|
|
27
27
|
/** Additional className for the viewport */
|
|
28
28
|
viewportClassName?: string;
|
|
29
29
|
}
|