keycloakify 10.0.0-rc.39 → 10.0.0-rc.40

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/453.index.js CHANGED
@@ -150,15 +150,16 @@ async function command(params) {
150
150
  ` switch (kcContext.pageId) {`,
151
151
  ` // ...`,
152
152
  `+ case "${pageIdOrComponent}": return (`,
153
- `+ <Login`,
153
+ `+ <${componentBasename}`,
154
154
  `+ {...{ kcContext, i18n, classes }}`,
155
155
  `+ Template={Template}`,
156
+ `+ doUseDefaultCss={true}`,
156
157
  ...(!componentCode.includes(userProfileFormFieldComponentName)
157
158
  ? []
158
159
  : [
159
- `+ ${userProfileFormFieldComponentName}={${userProfileFormFieldComponentName}}`
160
+ `+ ${userProfileFormFieldComponentName}={${userProfileFormFieldComponentName}}`,
161
+ `+ doMakeUserConfirmPassword={doMakeUserConfirmPassword}`
160
162
  ]),
161
- `+ doUseDefaultCss={true}`,
162
163
  `+ />`,
163
164
  `+ );`,
164
165
  ` default: return <Fallback /* .. */ />;`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.39",
3
+ "version": "10.0.0-rc.40",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -225,15 +225,16 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
225
225
  ` switch (kcContext.pageId) {`,
226
226
  ` // ...`,
227
227
  `+ case "${pageIdOrComponent}": return (`,
228
- `+ <Login`,
228
+ `+ <${componentBasename}`,
229
229
  `+ {...{ kcContext, i18n, classes }}`,
230
230
  `+ Template={Template}`,
231
+ `+ doUseDefaultCss={true}`,
231
232
  ...(!componentCode.includes(userProfileFormFieldComponentName)
232
233
  ? []
233
234
  : [
234
- `+ ${userProfileFormFieldComponentName}={${userProfileFormFieldComponentName}}`
235
+ `+ ${userProfileFormFieldComponentName}={${userProfileFormFieldComponentName}}`,
236
+ `+ doMakeUserConfirmPassword={doMakeUserConfirmPassword}`
235
237
  ]),
236
- `+ doUseDefaultCss={true}`,
237
238
  `+ />`,
238
239
  `+ );`,
239
240
  ` default: return <Fallback /* .. */ />;`,