@djangocfg/layouts 2.1.408 → 2.1.411

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/layouts",
3
- "version": "2.1.408",
3
+ "version": "2.1.411",
4
4
  "description": "Simple, straightforward layout components for Next.js - import and use with props",
5
5
  "keywords": [
6
6
  "layouts",
@@ -84,13 +84,13 @@
84
84
  "check": "tsc --noEmit"
85
85
  },
86
86
  "peerDependencies": {
87
- "@djangocfg/api": "^2.1.408",
88
- "@djangocfg/centrifugo": "^2.1.408",
89
- "@djangocfg/debuger": "^2.1.408",
90
- "@djangocfg/i18n": "^2.1.408",
91
- "@djangocfg/monitor": "^2.1.408",
92
- "@djangocfg/ui-core": "^2.1.408",
93
- "@djangocfg/ui-nextjs": "^2.1.408",
87
+ "@djangocfg/api": "^2.1.411",
88
+ "@djangocfg/centrifugo": "^2.1.411",
89
+ "@djangocfg/debuger": "^2.1.411",
90
+ "@djangocfg/i18n": "^2.1.411",
91
+ "@djangocfg/monitor": "^2.1.411",
92
+ "@djangocfg/ui-core": "^2.1.411",
93
+ "@djangocfg/ui-nextjs": "^2.1.411",
94
94
  "@hookform/resolvers": "^5.2.2",
95
95
  "consola": "^3.4.2",
96
96
  "lucide-react": "^0.545.0",
@@ -98,8 +98,8 @@
98
98
  "next": "^16.2.2",
99
99
  "next-intl": "^4.9.1",
100
100
  "p-retry": "^7.0.0",
101
- "react": "^19.1.0",
102
- "react-dom": "^19.1.0",
101
+ "react": "^19.2.4",
102
+ "react-dom": "^19.2.4",
103
103
  "react-hook-form": "^7.69.0",
104
104
  "sonner": "2.0.7",
105
105
  "swr": "^2.3.7",
@@ -121,22 +121,22 @@
121
121
  "uuid": "^11.1.0"
122
122
  },
123
123
  "devDependencies": {
124
- "@djangocfg/api": "^2.1.408",
125
- "@djangocfg/centrifugo": "^2.1.408",
126
- "@djangocfg/debuger": "^2.1.408",
127
- "@djangocfg/i18n": "^2.1.408",
128
- "@djangocfg/monitor": "^2.1.408",
129
- "@djangocfg/typescript-config": "^2.1.408",
130
- "@djangocfg/ui-core": "^2.1.408",
131
- "@djangocfg/ui-nextjs": "^2.1.408",
132
- "@djangocfg/ui-tools": "^2.1.408",
133
- "@types/node": "^24.7.2",
134
- "@types/react": "^19.1.0",
135
- "@types/react-dom": "^19.1.0",
124
+ "@djangocfg/api": "^2.1.411",
125
+ "@djangocfg/centrifugo": "^2.1.411",
126
+ "@djangocfg/debuger": "^2.1.411",
127
+ "@djangocfg/i18n": "^2.1.411",
128
+ "@djangocfg/monitor": "^2.1.411",
129
+ "@djangocfg/typescript-config": "^2.1.411",
130
+ "@djangocfg/ui-core": "^2.1.411",
131
+ "@djangocfg/ui-nextjs": "^2.1.411",
132
+ "@djangocfg/ui-tools": "^2.1.411",
133
+ "@types/node": "^25.2.3",
134
+ "@types/react": "^19.2.15",
135
+ "@types/react-dom": "^19.2.3",
136
136
  "eslint": "^9.37.0",
137
137
  "next-intl": "^4.9.1",
138
138
  "typescript": "^5.9.3",
139
- "zustand": "^5.0.4"
139
+ "zustand": "^5.0.9"
140
140
  },
141
141
  "publishConfig": {
142
142
  "access": "public"
@@ -39,7 +39,7 @@ import { usePathnameWithoutLocale } from '../../hooks';
39
39
  import { matchesPath } from '../../utils/pathMatcher';
40
40
  import { BaseApp } from './BaseApp';
41
41
  import { useLayoutI18nOptional } from './LayoutI18nProvider';
42
- import { ForcedThemeProvider, ThemeOverride, resolveForcedTheme } from '@djangocfg/ui-nextjs/theme';
42
+ import { ForcedThemeProvider, ThemeOverride, resolveForcedTheme } from '@djangocfg/ui-core/theme';
43
43
 
44
44
  import type {
45
45
  ThemeConfig,
@@ -55,7 +55,7 @@ import type {
55
55
  export type { I18nLayoutConfig } from '../types';
56
56
  import type { AuthConfig } from '@djangocfg/api/auth';
57
57
  import type { MonitorConfig } from '@djangocfg/monitor';
58
- import type { ThemeOverrideRule } from '@djangocfg/ui-nextjs/theme';
58
+ import type { ThemeOverrideRule } from '@djangocfg/ui-core/theme';
59
59
 
60
60
  import type { FloatingNavbarConfig } from '../PublicLayout/navbars/FloatingNavbar';
61
61
  import type { DefaultFooterConfig } from '../PublicLayout/footers/DefaultFooter/types';
@@ -49,7 +49,7 @@ import { Toaster, TooltipProvider } from '@djangocfg/ui-core/components';
49
49
  import { DialogProvider } from '@djangocfg/ui-core/lib/dialog-service';
50
50
  import { NextRouterAdapter, NextLinkProvider } from '@djangocfg/ui-core/adapters/nextjs';
51
51
  import { NextIntlLinkBridge } from './NextIntlLinkBridge';
52
- import { ThemeProvider } from '@djangocfg/ui-nextjs/theme';
52
+ import { ThemeProvider } from '@djangocfg/ui-core/theme';
53
53
  import { ThemeStyleBridge } from '../../theme/ThemeStyleBridge';
54
54
  import { ErrorBoundary } from '../../components/errors/ErrorBoundary';
55
55
  import { ErrorTrackingProvider } from '../../components/errors/ErrorsTracker';
@@ -34,10 +34,10 @@ export {
34
34
  resolveForcedTheme,
35
35
  ForcedThemeProvider,
36
36
  useForcedTheme,
37
- } from '@djangocfg/ui-nextjs/theme';
37
+ } from '@djangocfg/ui-core/theme';
38
38
  export type {
39
39
  ThemeOverrideRule,
40
40
  ThemeOverrideProps,
41
41
  ForcedTheme,
42
- } from '@djangocfg/ui-nextjs/theme';
42
+ } from '@djangocfg/ui-core/theme';
43
43
 
@@ -9,7 +9,7 @@
9
9
 
10
10
  import React from 'react';
11
11
 
12
- import { ThemeToggle } from '@djangocfg/ui-nextjs/theme';
12
+ import { ThemeToggle } from '@djangocfg/ui-core/theme';
13
13
  import { cn } from '@djangocfg/ui-core/lib';
14
14
 
15
15
  import { LocaleSwitcherDropdown } from '../../_components/locale-switcher';
@@ -10,7 +10,7 @@ import React, { memo, useEffect, useMemo, useState } from 'react';
10
10
  import { Laptop, Moon, Sun } from 'lucide-react';
11
11
 
12
12
  import { Button } from '@djangocfg/ui-core/components';
13
- import { useForcedTheme, useThemeContext } from '@djangocfg/ui-nextjs/theme';
13
+ import { useForcedTheme, useThemeContext } from '@djangocfg/ui-core/theme';
14
14
 
15
15
  import { Link } from '@djangocfg/ui-core/components';
16
16
 
@@ -5,7 +5,7 @@ import React, { useEffect, useState } from 'react';
5
5
 
6
6
  import { Button } from '@djangocfg/ui-core/components';
7
7
  import { cn } from '@djangocfg/ui-core/lib';
8
- import { useThemeContext } from '@djangocfg/ui-nextjs/theme';
8
+ import { useThemeContext } from '@djangocfg/ui-core/theme';
9
9
 
10
10
  import { LocaleSwitcher } from '../../_components/LocaleSwitcher';
11
11
  import { useLayoutI18nOptional } from '../../AppLayout/LayoutI18nProvider';