@truedat/auth 4.48.0 → 4.48.2

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.48.2] 2022-07-08
4
+
5
+ ### Changed
6
+
7
+ - [TD-4995] Support localization of template fields and fixed values
8
+
3
9
  ## [4.45.4] 2022-06-03
4
10
 
5
11
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/auth",
3
- "version": "4.48.0",
3
+ "version": "4.48.2",
4
4
  "description": "Truedat Web Auth",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -87,7 +87,7 @@
87
87
  ]
88
88
  },
89
89
  "dependencies": {
90
- "@truedat/core": "4.48.0",
90
+ "@truedat/core": "4.48.2",
91
91
  "auth0-js": "^9.12.2",
92
92
  "immutable": "^4.0.0-rc.12",
93
93
  "jwt-decode": "^2.2.0",
@@ -109,5 +109,5 @@
109
109
  "react-dom": ">= 16.8.6 < 17",
110
110
  "semantic-ui-react": ">= 0.88.2 < 2.1"
111
111
  },
112
- "gitHead": "c4587d045fa6c9028082bdfbcfb35e4383f117ed"
112
+ "gitHead": "93133e957332713e64c97eecdf45cc283c29bd32"
113
113
  }
@@ -25,7 +25,10 @@ export const PermissionGroup = ({
25
25
  <List.Item key={i}>
26
26
  <Checkbox
27
27
  label={{
28
- children: formatMessage({ id: `permission.${p.name}` }),
28
+ children: formatMessage({
29
+ id: `permission.${p.name}`,
30
+ defaultMessage: p.name,
31
+ }),
29
32
  }}
30
33
  checked={_.any(_.propEq("id", p.id))(rolePermissions)}
31
34
  onChange={(e, data) => {