@okta/odyssey-react-mui 1.13.2 → 1.13.4
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 +8 -0
- package/dist/Checkbox.js +1 -1
- package/dist/Checkbox.js.map +1 -1
- package/dist/i18n.js.map +1 -1
- package/dist/labs/Switch.js +5 -1
- package/dist/labs/Switch.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui.js +2 -0
- package/dist/properties/ts/odyssey-react-mui.js.map +1 -1
- package/dist/src/Checkbox.d.ts +1 -1
- package/dist/src/Checkbox.d.ts.map +1 -1
- package/dist/src/OdysseyTranslationProvider.d.ts +1 -1
- package/dist/src/OdysseyTranslationProvider.d.ts.map +1 -1
- package/dist/src/i18n.d.ts +1 -1
- package/dist/src/i18n.d.ts.map +1 -1
- package/dist/src/labs/Switch.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui.d.ts +2 -0
- package/dist/src/properties/ts/odyssey-react-mui.d.ts.map +1 -1
- package/dist/src/theme/components.d.ts.map +1 -1
- package/dist/theme/components.js +5 -0
- package/dist/theme/components.js.map +1 -1
- package/dist/tsconfig.production.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/Checkbox.tsx +2 -2
- package/src/i18n.ts +1 -1
- package/src/labs/Switch.tsx +3 -1
- package/src/properties/odyssey-react-mui.properties +2 -0
- package/src/properties/ts/odyssey-react-mui.ts +1 -1
- package/src/theme/components.tsx +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okta/odyssey-react-mui",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.4",
|
|
4
4
|
"description": "React MUI components for Odyssey, Okta's design system",
|
|
5
5
|
"author": "Okta, Inc.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@mui/system": "^5.14.9",
|
|
52
52
|
"@mui/utils": "^5.11.2",
|
|
53
53
|
"@mui/x-date-pickers": "^5.0.15",
|
|
54
|
-
"@okta/odyssey-design-tokens": "1.13.
|
|
54
|
+
"@okta/odyssey-design-tokens": "1.13.4",
|
|
55
55
|
"date-fns": "^2.30.0",
|
|
56
56
|
"i18next": "^23.5.1",
|
|
57
57
|
"material-react-table": "^2.0.2",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"react": ">=17 <19",
|
|
64
64
|
"react-dom": ">=17 <19"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "819c629fca285cc984dc6cbdbf9f7d8fe6d6d08f"
|
|
67
67
|
}
|
package/src/Checkbox.tsx
CHANGED
|
@@ -21,14 +21,14 @@ import {
|
|
|
21
21
|
} from "@mui/material";
|
|
22
22
|
|
|
23
23
|
import { FieldComponentProps } from "./FieldComponentProps";
|
|
24
|
-
import {
|
|
24
|
+
import { CheckedFieldProps } from "./FormCheckedProps";
|
|
25
25
|
import type { HtmlProps } from "./HtmlProps";
|
|
26
26
|
import {
|
|
27
27
|
ComponentControlledState,
|
|
28
28
|
FocusHandle,
|
|
29
29
|
getControlState,
|
|
30
30
|
} from "./inputUtils";
|
|
31
|
-
import {
|
|
31
|
+
import { Typography } from "./Typography";
|
|
32
32
|
|
|
33
33
|
export const checkboxValidityValues = ["valid", "invalid", "inherit"] as const;
|
|
34
34
|
|
package/src/i18n.ts
CHANGED
|
@@ -47,7 +47,7 @@ export const defaultLNG = "en";
|
|
|
47
47
|
export const defaultNS = "translations";
|
|
48
48
|
|
|
49
49
|
// Note: This is type "string" to allow translation overrides from other languages
|
|
50
|
-
export type I18nResources = Record<string, typeof en
|
|
50
|
+
export type I18nResources = Record<string, Partial<typeof en>>;
|
|
51
51
|
export const resources: I18nResources = {
|
|
52
52
|
cs,
|
|
53
53
|
da,
|
package/src/labs/Switch.tsx
CHANGED
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
SwitchProps as MuiSwitchProps,
|
|
25
25
|
FormControlLabel,
|
|
26
26
|
} from "@mui/material";
|
|
27
|
+
import { useTranslation } from "react-i18next";
|
|
27
28
|
|
|
28
29
|
import { useOdysseyDesignTokens } from "../OdysseyDesignTokensContext";
|
|
29
30
|
import { Box } from "../Box";
|
|
@@ -81,6 +82,7 @@ const SwitchLabel = ({
|
|
|
81
82
|
label,
|
|
82
83
|
}: SwitchLabelProps) => {
|
|
83
84
|
const odysseyDesignTokens = useOdysseyDesignTokens();
|
|
85
|
+
const { t } = useTranslation();
|
|
84
86
|
|
|
85
87
|
return (
|
|
86
88
|
<>
|
|
@@ -115,7 +117,7 @@ const SwitchLabel = ({
|
|
|
115
117
|
transitionDuration: odysseyDesignTokens.TransitionDurationMain,
|
|
116
118
|
}}
|
|
117
119
|
>
|
|
118
|
-
{checked ? "
|
|
120
|
+
{checked ? t("switch.active") : t("switch.inactive")}
|
|
119
121
|
</Box>
|
|
120
122
|
</Box>
|
|
121
123
|
{hint && <FieldHint id={hintId} text={hint} />}
|
|
@@ -10,6 +10,8 @@ severity.error = error
|
|
|
10
10
|
severity.info = info
|
|
11
11
|
severity.success = success
|
|
12
12
|
severity.warning = warning
|
|
13
|
+
switch.active = Active
|
|
14
|
+
switch.inactive = Inactive
|
|
13
15
|
table.error = Error loading data.
|
|
14
16
|
table.fetchedrows.text = Fetched {{totalRows}} row
|
|
15
17
|
table.fetchedrows.text_plural = Fetched {{totalRows}} total rows
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const translation = {"breadcrumbs.home.text":"Home","breadcrumbs.label.text":"Breadcrumbs","close.text":"close","fielderror.screenreader.text":"Error","fieldlabel.optional.text":"Optional","fieldlabel.required.text":"Required","passwordfield.icon.label.show":"Show password","passwordfield.icon.label.hide":"Hide password","severity.error":"error","severity.info":"info","severity.success":"success","severity.warning":"warning","table.error":"Error loading data.","table.fetchedrows.text":"Fetched {{totalRows}} row","table.fetchedrows.text_plural":"Fetched {{totalRows}} total rows","table.rows.text":"{{totalRows}} row","table.rows.text_plural":"{{totalRows}} rows"};
|
|
1
|
+
export const translation = {"breadcrumbs.home.text":"Home","breadcrumbs.label.text":"Breadcrumbs","close.text":"close","fielderror.screenreader.text":"Error","fieldlabel.optional.text":"Optional","fieldlabel.required.text":"Required","passwordfield.icon.label.show":"Show password","passwordfield.icon.label.hide":"Hide password","severity.error":"error","severity.info":"info","severity.success":"success","severity.warning":"warning","switch.active":"Active","switch.inactive":"Inactive","table.error":"Error loading data.","table.fetchedrows.text":"Fetched {{totalRows}} row","table.fetchedrows.text_plural":"Fetched {{totalRows}} total rows","table.rows.text":"{{totalRows}} row","table.rows.text_plural":"{{totalRows}} rows"};
|
package/src/theme/components.tsx
CHANGED
|
@@ -744,6 +744,7 @@ export const components = ({
|
|
|
744
744
|
styleOverrides: {
|
|
745
745
|
root: ({ theme }) => ({
|
|
746
746
|
width: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
747
|
+
minWidth: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
747
748
|
height: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
748
749
|
borderRadius: odysseyTokens.BorderRadiusTight,
|
|
749
750
|
borderWidth: odysseyTokens.BorderWidthMain,
|
|
@@ -1544,6 +1545,9 @@ export const components = ({
|
|
|
1544
1545
|
"&.Mui-disabled": {
|
|
1545
1546
|
pointerEvents: "none",
|
|
1546
1547
|
},
|
|
1548
|
+
[`:has(> .${radioClasses.root})`]: {
|
|
1549
|
+
alignItems: "flex-start",
|
|
1550
|
+
},
|
|
1547
1551
|
[`& .${checkboxClasses.root}`]: {
|
|
1548
1552
|
marginBlockStart: 0,
|
|
1549
1553
|
},
|
|
@@ -2059,6 +2063,7 @@ export const components = ({
|
|
|
2059
2063
|
styleOverrides: {
|
|
2060
2064
|
root: ({ theme }) => ({
|
|
2061
2065
|
width: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
2066
|
+
minWidth: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
2062
2067
|
height: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
2063
2068
|
borderRadius: `${odysseyTokens.TypographyLineHeightUi}em`,
|
|
2064
2069
|
borderWidth: odysseyTokens.BorderWidthMain,
|