keycloakify 11.8.41 → 11.8.42
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/bin/786.index.js +6 -0
- package/bin/97.index.js +6 -0
- package/package.json +1 -1
- package/src/bin/update-kc-gen.ts +6 -0
- package/vite-plugin/index.js +6 -0
package/bin/786.index.js
CHANGED
@@ -483,6 +483,12 @@ async function command(params) {
|
|
483
483
|
`export function KcPage(_props: { kcContext: any; }){`,
|
484
484
|
` return null;`,
|
485
485
|
`}`,
|
486
|
+
``,
|
487
|
+
`declare global {`,
|
488
|
+
` interface Window {`,
|
489
|
+
` kcContext?: KcContext;`,
|
490
|
+
` }`,
|
491
|
+
`}`,
|
486
492
|
``
|
487
493
|
].join("\n");
|
488
494
|
break set_new_content;
|
package/bin/97.index.js
CHANGED
@@ -1282,6 +1282,12 @@ async function command(params) {
|
|
1282
1282
|
`export function KcPage(_props: { kcContext: any; }){`,
|
1283
1283
|
` return null;`,
|
1284
1284
|
`}`,
|
1285
|
+
``,
|
1286
|
+
`declare global {`,
|
1287
|
+
` interface Window {`,
|
1288
|
+
` kcContext?: KcContext;`,
|
1289
|
+
` }`,
|
1290
|
+
`}`,
|
1285
1291
|
``
|
1286
1292
|
].join("\n");
|
1287
1293
|
break set_new_content;
|
package/package.json
CHANGED
package/src/bin/update-kc-gen.ts
CHANGED
@@ -49,6 +49,12 @@ export async function command(params: { buildContext: BuildContext }) {
|
|
49
49
|
`export function KcPage(_props: { kcContext: any; }){`,
|
50
50
|
` return null;`,
|
51
51
|
`}`,
|
52
|
+
``,
|
53
|
+
`declare global {`,
|
54
|
+
` interface Window {`,
|
55
|
+
` kcContext?: KcContext;`,
|
56
|
+
` }`,
|
57
|
+
`}`,
|
52
58
|
``
|
53
59
|
].join("\n");
|
54
60
|
|
package/vite-plugin/index.js
CHANGED
@@ -1867,6 +1867,12 @@ async function command(params) {
|
|
1867
1867
|
`export function KcPage(_props: { kcContext: any; }){`,
|
1868
1868
|
` return null;`,
|
1869
1869
|
`}`,
|
1870
|
+
``,
|
1871
|
+
`declare global {`,
|
1872
|
+
` interface Window {`,
|
1873
|
+
` kcContext?: KcContext;`,
|
1874
|
+
` }`,
|
1875
|
+
`}`,
|
1870
1876
|
``
|
1871
1877
|
].join("\n");
|
1872
1878
|
break set_new_content;
|