@authhero/react-admin 0.32.0 → 0.33.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @authhero/react-admin
2
2
 
3
+ ## 0.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bf22ac7: Add support for inlang
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [bf22ac7]
12
+ - @authhero/widget@0.11.0
13
+
3
14
  ## 0.32.0
4
15
 
5
16
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authhero/react-admin",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "packageManager": "pnpm@10.20.0",
5
5
  "private": false,
6
6
  "repository": {
@@ -38,6 +38,12 @@ function ConnectionTabbedFrom() {
38
38
  <TabbedForm.Tab label="details">
39
39
  <TextInput source="id" label="Client ID" style={{ width: "800px" }} />
40
40
  <TextInput disabled source="strategy" />
41
+ <TextInput
42
+ source="display_name"
43
+ label="Display Name"
44
+ helperText="Custom display name for the login button (optional)"
45
+ fullWidth
46
+ />
41
47
  <TextInput source="options.client_id" label="Client Id" />
42
48
  <TextInput
43
49
  source="options.client_secret"
@@ -87,11 +93,6 @@ function ConnectionTabbedFrom() {
87
93
 
88
94
  {["oauth2", "oidc"].includes(record?.strategy) && (
89
95
  <>
90
- <TextInput
91
- source="display_name"
92
- label="Display Name"
93
- fullWidth
94
- />
95
96
  <SelectInput
96
97
  source="response_type"
97
98
  label="Response Type"