@djangocfg/layouts 2.1.519 → 2.1.520

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.519",
3
+ "version": "2.1.520",
4
4
  "description": "Simple, straightforward layout components for Next.js - import and use with props",
5
5
  "keywords": [
6
6
  "layouts",
@@ -89,12 +89,12 @@
89
89
  "check": "tsc --noEmit"
90
90
  },
91
91
  "peerDependencies": {
92
- "@djangocfg/analytics": "^2.1.519",
93
- "@djangocfg/api": "^2.1.519",
94
- "@djangocfg/centrifugo": "^2.1.519",
95
- "@djangocfg/devtools": "^2.1.519",
96
- "@djangocfg/i18n": "^2.1.519",
97
- "@djangocfg/ui-core": "^2.1.519",
92
+ "@djangocfg/analytics": "^2.1.520",
93
+ "@djangocfg/api": "^2.1.520",
94
+ "@djangocfg/centrifugo": "^2.1.520",
95
+ "@djangocfg/devtools": "^2.1.520",
96
+ "@djangocfg/i18n": "^2.1.520",
97
+ "@djangocfg/ui-core": "^2.1.520",
98
98
  "@hookform/resolvers": "^5.2.2",
99
99
  "consola": "^3.4.2",
100
100
  "lucide-react": "^0.545.0",
@@ -124,14 +124,14 @@
124
124
  "uuid": "^11.1.1"
125
125
  },
126
126
  "devDependencies": {
127
- "@djangocfg/analytics": "^2.1.519",
128
- "@djangocfg/api": "^2.1.519",
129
- "@djangocfg/centrifugo": "^2.1.519",
130
- "@djangocfg/devtools": "^2.1.519",
131
- "@djangocfg/i18n": "^2.1.519",
132
- "@djangocfg/typescript-config": "^2.1.519",
133
- "@djangocfg/ui-core": "^2.1.519",
134
- "@djangocfg/ui-tools": "^2.1.519",
127
+ "@djangocfg/analytics": "^2.1.520",
128
+ "@djangocfg/api": "^2.1.520",
129
+ "@djangocfg/centrifugo": "^2.1.520",
130
+ "@djangocfg/devtools": "^2.1.520",
131
+ "@djangocfg/i18n": "^2.1.520",
132
+ "@djangocfg/typescript-config": "^2.1.520",
133
+ "@djangocfg/ui-core": "^2.1.520",
134
+ "@djangocfg/ui-tools": "^2.1.520",
135
135
  "@types/node": "^25.9.5",
136
136
  "@types/react": "19.2.15",
137
137
  "@types/react-dom": "19.2.3",
@@ -81,6 +81,7 @@ export const MockAuthFormProvider: React.FC<MockAuthFormProviderProps> = ({
81
81
  const [otp, setOtp] = useState(initialOtp);
82
82
  const [isLoading, setIsLoading] = useState(initialLoading);
83
83
  const [acceptedTerms, setAcceptedTerms] = useState(initialAcceptedTerms);
84
+ const [rememberMe, setRememberMe] = useState(false);
84
85
  const [marketingConsent, setMarketingConsent] = useState<boolean | null>(null);
85
86
  const [error, setError] = useState(initialError);
86
87
  const [twoFactorSessionId, setTwoFactorSessionId] = useState<string | null>(initialTwoFactorSessionId);
@@ -103,6 +104,7 @@ export const MockAuthFormProvider: React.FC<MockAuthFormProviderProps> = ({
103
104
  otp,
104
105
  isLoading,
105
106
  acceptedTerms,
107
+ rememberMe,
106
108
  marketingConsent,
107
109
  step,
108
110
  error,
@@ -119,6 +121,7 @@ export const MockAuthFormProvider: React.FC<MockAuthFormProviderProps> = ({
119
121
  setIdentifier,
120
122
  setOtp,
121
123
  setAcceptedTerms,
124
+ setRememberMe,
122
125
  setMarketingConsent,
123
126
  setError,
124
127
  clearError: () => setError(''),
@@ -170,6 +173,7 @@ export const MockAuthFormProvider: React.FC<MockAuthFormProviderProps> = ({
170
173
  otp,
171
174
  isLoading,
172
175
  acceptedTerms,
176
+ rememberMe,
173
177
  marketingConsent,
174
178
  step,
175
179
  error,