datastake-daf 0.6.543 → 0.6.545

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.
@@ -7321,7 +7321,9 @@ const AuthLayout = ({
7321
7321
  value: "sp",
7322
7322
  label: "ES",
7323
7323
  flagUrl: "/assets/images/countries/sp.png"
7324
- }]
7324
+ }],
7325
+ updateLanguage,
7326
+ showLanguageSelector = false
7325
7327
  }) => {
7326
7328
  // Construct right side styles
7327
7329
  const rightSideStyle = rightBackgroundImage ? {
@@ -7378,9 +7380,6 @@ const AuthLayout = ({
7378
7380
  })
7379
7381
  })]
7380
7382
  });
7381
-
7382
- // Use StyleComponent if provided (styled-components pattern)
7383
- // Otherwise use default div with className (SCSS pattern)
7384
7383
  const LayoutWrapper = StyleComponent || 'div';
7385
7384
  // Always include 'auth-layout' for base DAF styles, plus app-specific classes
7386
7385
  const wrapperClassName = StyleComponent ? formatClassname(['auth-layout', appName + '-layout', containerClassName]) : formatClassname(['auth-layout', appName, containerClassName]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.543",
3
+ "version": "0.6.545",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -62,6 +62,8 @@ const AuthLayout = ({
62
62
  { value: "fr", label: "FR", flagUrl: "/assets/images/countries/fr.png" },
63
63
  { value: "sp", label: "ES", flagUrl: "/assets/images/countries/sp.png" }
64
64
  ],
65
+ updateLanguage,
66
+ showLanguageSelector = false,
65
67
 
66
68
  }) => {
67
69
 
@@ -137,8 +139,7 @@ const AuthLayout = ({
137
139
  </div>
138
140
  );
139
141
 
140
- // Use StyleComponent if provided (styled-components pattern)
141
- // Otherwise use default div with className (SCSS pattern)
142
+
142
143
  const LayoutWrapper = StyleComponent || 'div';
143
144
  // Always include 'auth-layout' for base DAF styles, plus app-specific classes
144
145
  const wrapperClassName = StyleComponent