@djangocfg/ui-tools 2.1.455 → 2.1.457
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/README.md +8 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -16,6 +16,14 @@ Every tool is `React.lazy` by default — import what you use, pay only its bund
|
|
|
16
16
|
pnpm add @djangocfg/ui-tools @djangocfg/ui-core
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
```css
|
|
20
|
+
/* your app's globals.css — Tailwind v4 must scan this package's sources */
|
|
21
|
+
@import "@djangocfg/ui-core/styles/full";
|
|
22
|
+
@import "@djangocfg/ui-tools/styles"; /* ← add this */
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Without the styles import, Tailwind never sees this package's classes and tools render partially unstyled.
|
|
26
|
+
|
|
19
27
|
Wrap your app in `<UiProviders>` from `@djangocfg/ui-core` once at the root (gives Tooltip/Dialog/Toast context to every tool).
|
|
20
28
|
|
|
21
29
|
## Catalogue
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/ui-tools",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.457",
|
|
4
4
|
"description": "Heavy React tools with lazy loading - for Electron, Vite, CRA, Next.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-tools",
|
|
@@ -334,8 +334,8 @@
|
|
|
334
334
|
"test:watch": "vitest"
|
|
335
335
|
},
|
|
336
336
|
"peerDependencies": {
|
|
337
|
-
"@djangocfg/i18n": "^2.1.
|
|
338
|
-
"@djangocfg/ui-core": "^2.1.
|
|
337
|
+
"@djangocfg/i18n": "^2.1.457",
|
|
338
|
+
"@djangocfg/ui-core": "^2.1.457",
|
|
339
339
|
"consola": "^3.4.2",
|
|
340
340
|
"lodash-es": "^4.18.1",
|
|
341
341
|
"lucide-react": "^0.545.0",
|
|
@@ -418,9 +418,9 @@
|
|
|
418
418
|
"@maplibre/maplibre-gl-geocoder": "^1.7.0"
|
|
419
419
|
},
|
|
420
420
|
"devDependencies": {
|
|
421
|
-
"@djangocfg/i18n": "^2.1.
|
|
422
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
423
|
-
"@djangocfg/ui-core": "^2.1.
|
|
421
|
+
"@djangocfg/i18n": "^2.1.457",
|
|
422
|
+
"@djangocfg/typescript-config": "^2.1.457",
|
|
423
|
+
"@djangocfg/ui-core": "^2.1.457",
|
|
424
424
|
"@types/lodash-es": "^4.17.12",
|
|
425
425
|
"@types/mapbox__mapbox-gl-draw": "^1.4.8",
|
|
426
426
|
"@types/node": "^25.2.3",
|