@djangocfg/ui-tools 2.1.425 → 2.1.426

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-tools",
3
- "version": "2.1.425",
3
+ "version": "2.1.426",
4
4
  "description": "Heavy React tools with lazy loading - for Electron, Vite, CRA, Next.js apps",
5
5
  "keywords": [
6
6
  "ui-tools",
@@ -77,9 +77,9 @@
77
77
  "require": "./dist/audio-player/index.cjs"
78
78
  },
79
79
  "./chat": {
80
- "types": "./src/tools/Chat/lazy.tsx",
81
- "import": "./src/tools/Chat/lazy.tsx",
82
- "require": "./src/tools/Chat/lazy.tsx"
80
+ "types": "./src/tools/chat/lazy.tsx",
81
+ "import": "./src/tools/chat/lazy.tsx",
82
+ "require": "./src/tools/chat/lazy.tsx"
83
83
  },
84
84
  "./cron-scheduler": {
85
85
  "types": "./src/tools/input/CronScheduler/lazy.tsx",
@@ -329,8 +329,8 @@
329
329
  "test:watch": "vitest"
330
330
  },
331
331
  "peerDependencies": {
332
- "@djangocfg/i18n": "^2.1.425",
333
- "@djangocfg/ui-core": "^2.1.425",
332
+ "@djangocfg/i18n": "^2.1.426",
333
+ "@djangocfg/ui-core": "^2.1.426",
334
334
  "consola": "^3.4.2",
335
335
  "lodash-es": "^4.18.1",
336
336
  "lucide-react": "^0.545.0",
@@ -405,9 +405,9 @@
405
405
  "@maplibre/maplibre-gl-geocoder": "^1.7.0"
406
406
  },
407
407
  "devDependencies": {
408
- "@djangocfg/i18n": "^2.1.425",
409
- "@djangocfg/typescript-config": "^2.1.425",
410
- "@djangocfg/ui-core": "^2.1.425",
408
+ "@djangocfg/i18n": "^2.1.426",
409
+ "@djangocfg/typescript-config": "^2.1.426",
410
+ "@djangocfg/ui-core": "^2.1.426",
411
411
  "@types/lodash-es": "^4.17.12",
412
412
  "@types/mapbox__mapbox-gl-draw": "^1.4.8",
413
413
  "@types/node": "^25.2.3",
@@ -6,7 +6,7 @@
6
6
  * sibling of `lib/page-snapshot/`, so it must NOT reach up into `tools/` —
7
7
  * the bridge is infrastructure, Chat is merely a consumer.
8
8
  *
9
- * Mirrors the gating of the chat logger (`tools/Chat/core/logger.ts`): the
9
+ * Mirrors the gating of the chat logger (`tools/chat/core/logger.ts`): the
10
10
  * `chat:directives` sub-logger is silenced unless `isDev`, so noisy bridge
11
11
  * events never leak into production builds. Kept local and minimal — only
12
12
  * the `directives` scope is needed here.
@@ -15,7 +15,7 @@ import {
15
15
  installChatBridge,
16
16
  setBridgeResolver,
17
17
  } from '../../browser-bridge';
18
- import { useChatSettings } from '../../../tools/Chat/settings';
18
+ import { useChatSettings } from '../../../tools/chat/settings';
19
19
 
20
20
  import type { CaptureEngineOptions, CaptureResult } from '../engine';
21
21
  import { PageSnapshotEngine } from '../engine';
@@ -1,6 +1,6 @@
1
1
  import React, { memo } from 'react';
2
2
 
3
- import { TOGGLE } from '../../../Chat/styles/bubbleTokens';
3
+ import { TOGGLE } from '../../../chat/styles/bubbleTokens';
4
4
 
5
5
  interface CollapseToggleProps {
6
6
  isCollapsed: boolean;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { Components } from 'react-markdown';
3
3
  import Mermaid from '../../Mermaid';
4
- import { ANCHOR } from '../../../Chat/styles/bubbleTokens';
4
+ import { ANCHOR } from '../../../chat/styles/bubbleTokens';
5
5
  import { CodeBlock, CodeBlockFallback } from './CodeBlock';
6
6
  import { extractTextFromChildren } from './plainText';
7
7
 
@@ -13,8 +13,8 @@
13
13
  * Inlined as base64 data URLs in the Chat sound modules, so consumers
14
14
  * get working audio with zero loader / ambient-type setup.
15
15
  */
16
- import start from '../../../../Chat/core/audio/sounds/start';
17
- import sent from '../../../../Chat/core/audio/sounds/sent';
16
+ import start from '../../../../chat/core/audio/sounds/start';
17
+ import sent from '../../../../chat/core/audio/sounds/sent';
18
18
 
19
19
  export type VoiceSoundEvent = 'start' | 'stop';
20
20