@keycloakify/svelte 0.1.6 → 0.1.7
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.
|
@@ -121,3 +121,11 @@
|
|
|
121
121
|
</div>
|
|
122
122
|
</div>
|
|
123
123
|
{/each}
|
|
124
|
+
<!-- See: https://github.com/keycloak/keycloak/issues/38029 -->
|
|
125
|
+
{#if kcContext.locale !== undefined && $formFieldStates.find((x) => x.attribute.name === 'locale') === undefined}
|
|
126
|
+
<input
|
|
127
|
+
type="hidden"
|
|
128
|
+
name="locale"
|
|
129
|
+
value={$i18n.currentLanguage.languageTag}
|
|
130
|
+
/>
|
|
131
|
+
{/if}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keycloakify/svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Svelte Components for Keycloakify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"keycloak",
|
|
@@ -452,17 +452,17 @@
|
|
|
452
452
|
"eslint-plugin-svelte": "^3.1.0",
|
|
453
453
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
454
454
|
"globals": "^16.0.0",
|
|
455
|
-
"keycloakify": "^11.8.
|
|
455
|
+
"keycloakify": "^11.8.21",
|
|
456
456
|
"npm-check-updates": "^17.1.15",
|
|
457
457
|
"prettier": "^3.5.3",
|
|
458
458
|
"prettier-plugin-svelte": "^3.3.3",
|
|
459
459
|
"publint": "0.2.12",
|
|
460
|
-
"svelte": "^5.
|
|
460
|
+
"svelte": "^5.23.0",
|
|
461
461
|
"svelte-check": "^4.1.5",
|
|
462
462
|
"tsx": "^4.19.3",
|
|
463
463
|
"typescript": "~5.8.2",
|
|
464
|
-
"typescript-eslint": "^8.26.
|
|
465
|
-
"vite": "^6.2.
|
|
464
|
+
"typescript-eslint": "^8.26.1",
|
|
465
|
+
"vite": "^6.2.2",
|
|
466
466
|
"zod": "^3.24.2"
|
|
467
467
|
},
|
|
468
468
|
"bin": {
|
|
@@ -121,3 +121,11 @@
|
|
|
121
121
|
</div>
|
|
122
122
|
</div>
|
|
123
123
|
{/each}
|
|
124
|
+
<!-- See: https://github.com/keycloak/keycloak/issues/38029 -->
|
|
125
|
+
{#if kcContext.locale !== undefined && $formFieldStates.find((x) => x.attribute.name === 'locale') === undefined}
|
|
126
|
+
<input
|
|
127
|
+
type="hidden"
|
|
128
|
+
name="locale"
|
|
129
|
+
value={$i18n.currentLanguage.languageTag}
|
|
130
|
+
/>
|
|
131
|
+
{/if}
|