@keycloakify/keycloak-account-ui 260007.0.2 → 260007.0.3
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/keycloak-theme/account/account-security/AccountRow.tsx +2 -2
- package/keycloak-theme/account/account-security/DeviceActivity.tsx +2 -2
- package/keycloak-theme/account/account-security/LinkedAccounts.tsx +1 -1
- package/keycloak-theme/account/account-security/LinkedAccountsToolbar.tsx +1 -1
- package/keycloak-theme/account/account-security/SigningIn.tsx +2 -2
- package/keycloak-theme/account/applications/Applications.tsx +2 -2
- package/keycloak-theme/account/components/datalist/EmptyRow.tsx +1 -1
- package/keycloak-theme/account/components/page/Page.tsx +1 -1
- package/keycloak-theme/account/content/ContentComponent.tsx +1 -1
- package/keycloak-theme/account/groups/Groups.tsx +1 -1
- package/keycloak-theme/account/oid4vci/Oid4Vci.tsx +1 -1
- package/keycloak-theme/account/personal-info/PersonalInfo.tsx +2 -2
- package/keycloak-theme/account/resources/EditTheResource.tsx +1 -1
- package/keycloak-theme/account/resources/PermissionRequest.tsx +3 -3
- package/keycloak-theme/account/resources/ResourceToolbar.tsx +1 -1
- package/keycloak-theme/account/resources/Resources.tsx +1 -1
- package/keycloak-theme/account/resources/ResourcesTab.tsx +3 -3
- package/keycloak-theme/account/resources/ShareTheResource.tsx +1 -1
- package/keycloak-theme/account/root/ErrorPage.tsx +1 -1
- package/keycloak-theme/account/root/Header.tsx +2 -2
- package/keycloak-theme/account/root/PageNav.tsx +1 -1
- package/keycloak-theme/account/root/Root.tsx +1 -1
- package/keycloak-theme/account/utils/useAccountAlerts.ts +1 -1
- package/package.json +2 -2
|
@@ -14,8 +14,8 @@ import {
|
|
|
14
14
|
Label,
|
|
15
15
|
Split,
|
|
16
16
|
SplitItem,
|
|
17
|
-
} from "
|
|
18
|
-
import { LinkIcon, UnlinkIcon } from "
|
|
17
|
+
} from "../../shared/@patternfly/react-core";
|
|
18
|
+
import { LinkIcon, UnlinkIcon } from "../../shared/@patternfly/react-icons";
|
|
19
19
|
import { useTranslation } from "react-i18next";
|
|
20
20
|
|
|
21
21
|
import { linkAccount, unLinkAccount } from "../api/methods";
|
|
@@ -24,12 +24,12 @@ import {
|
|
|
24
24
|
Split,
|
|
25
25
|
SplitItem,
|
|
26
26
|
Title,
|
|
27
|
-
} from "
|
|
27
|
+
} from "../../shared/@patternfly/react-core";
|
|
28
28
|
import {
|
|
29
29
|
DesktopIcon,
|
|
30
30
|
MobileAltIcon,
|
|
31
31
|
SyncAltIcon,
|
|
32
|
-
} from "
|
|
32
|
+
} from "../../shared/@patternfly/react-icons";
|
|
33
33
|
import { useState } from "react";
|
|
34
34
|
import { useTranslation } from "react-i18next";
|
|
35
35
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
|
|
5
5
|
import { useEnvironment } from "../../shared/keycloak-ui-shared";
|
|
6
|
-
import { DataList, Stack, StackItem, Title } from "
|
|
6
|
+
import { DataList, Stack, StackItem, Title } from "../../shared/@patternfly/react-core";
|
|
7
7
|
import { useState } from "react";
|
|
8
8
|
import { useTranslation } from "react-i18next";
|
|
9
9
|
import { getLinkedAccounts, LinkedAccountQueryParams } from "../api/methods";
|
|
@@ -18,8 +18,8 @@ import {
|
|
|
18
18
|
Split,
|
|
19
19
|
SplitItem,
|
|
20
20
|
Title,
|
|
21
|
-
} from "
|
|
22
|
-
import { EllipsisVIcon } from "
|
|
21
|
+
} from "../../shared/@patternfly/react-core";
|
|
22
|
+
import { EllipsisVIcon } from "../../shared/@patternfly/react-icons";
|
|
23
23
|
import { CSSProperties, useState } from "react";
|
|
24
24
|
import { Trans, useTranslation } from "react-i18next";
|
|
25
25
|
import { useEnvironment } from "../../shared/keycloak-ui-shared";
|
|
@@ -23,12 +23,12 @@ import {
|
|
|
23
23
|
Grid,
|
|
24
24
|
GridItem,
|
|
25
25
|
Spinner,
|
|
26
|
-
} from "
|
|
26
|
+
} from "../../shared/@patternfly/react-core";
|
|
27
27
|
import {
|
|
28
28
|
CheckIcon,
|
|
29
29
|
ExternalLinkAltIcon,
|
|
30
30
|
InfoAltIcon,
|
|
31
|
-
} from "
|
|
31
|
+
} from "../../shared/@patternfly/react-icons";
|
|
32
32
|
import { useState } from "react";
|
|
33
33
|
import { useTranslation } from "react-i18next";
|
|
34
34
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
|
|
5
|
-
import { PageSection, Text, TextContent, Title } from "
|
|
5
|
+
import { PageSection, Text, TextContent, Title } from "../../../shared/@patternfly/react-core";
|
|
6
6
|
import { PropsWithChildren } from "react";
|
|
7
7
|
|
|
8
8
|
type PageProps = {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
|
|
5
|
-
import { Spinner } from "
|
|
5
|
+
import { Spinner } from "../../shared/@patternfly/react-core";
|
|
6
6
|
import { Suspense, lazy, useMemo, useState } from "react";
|
|
7
7
|
import { useParams } from "react-router-dom";
|
|
8
8
|
import { useEnvironment } from "../../shared/keycloak-ui-shared";
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
DataListItem,
|
|
10
10
|
DataListItemCells,
|
|
11
11
|
DataListItemRow,
|
|
12
|
-
} from "
|
|
12
|
+
} from "../../shared/@patternfly/react-core";
|
|
13
13
|
import { useState } from "react";
|
|
14
14
|
import { useTranslation } from "react-i18next";
|
|
15
15
|
import { useEnvironment } from "../../shared/keycloak-ui-shared";
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
Select,
|
|
16
16
|
SelectList,
|
|
17
17
|
SelectOption,
|
|
18
|
-
} from "
|
|
18
|
+
} from "../../shared/@patternfly/react-core";
|
|
19
19
|
import { useEffect, useMemo, useState } from "react";
|
|
20
20
|
import { useTranslation } from "react-i18next";
|
|
21
21
|
import { getIssuer, requestVCOffer } from "../api";
|
|
@@ -17,8 +17,8 @@ import {
|
|
|
17
17
|
ExpandableSection,
|
|
18
18
|
Form,
|
|
19
19
|
Spinner,
|
|
20
|
-
} from "
|
|
21
|
-
import { ExternalLinkSquareAltIcon } from "
|
|
20
|
+
} from "../../shared/@patternfly/react-core";
|
|
21
|
+
import { ExternalLinkSquareAltIcon } from "../../shared/@patternfly/react-icons";
|
|
22
22
|
import { TFunction } from "i18next";
|
|
23
23
|
import { useState } from "react";
|
|
24
24
|
import { ErrorOption, useForm } from "react-hook-form";
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
TextControl,
|
|
8
8
|
useEnvironment,
|
|
9
9
|
} from "../../shared/keycloak-ui-shared";
|
|
10
|
-
import { Button, Form, Modal } from "
|
|
10
|
+
import { Button, Form, Modal } from "../../shared/@patternfly/react-core";
|
|
11
11
|
import { Fragment, useEffect } from "react";
|
|
12
12
|
import { FormProvider, useFieldArray, useForm } from "react-hook-form";
|
|
13
13
|
import { useTranslation } from "react-i18next";
|
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
Modal,
|
|
12
12
|
ModalVariant,
|
|
13
13
|
Text,
|
|
14
|
-
} from "
|
|
15
|
-
import { UserCheckIcon } from "
|
|
16
|
-
import { Table, Tbody, Td, Th, Thead, Tr } from "
|
|
14
|
+
} from "../../shared/@patternfly/react-core";
|
|
15
|
+
import { UserCheckIcon } from "../../shared/@patternfly/react-icons";
|
|
16
|
+
import { Table, Tbody, Td, Th, Thead, Tr } from "../../shared/@patternfly/react-table";
|
|
17
17
|
import { useState } from "react";
|
|
18
18
|
import { useTranslation } from "react-i18next";
|
|
19
19
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import { useState } from "react";
|
|
6
6
|
import { useTranslation } from "react-i18next";
|
|
7
|
-
import { Tab, Tabs, TabTitleText } from "
|
|
7
|
+
import { Tab, Tabs, TabTitleText } from "../../shared/@patternfly/react-core";
|
|
8
8
|
|
|
9
9
|
import { ResourcesTab } from "./ResourcesTab";
|
|
10
10
|
import { Page } from "../components/page/Page";
|
|
@@ -21,14 +21,14 @@ import {
|
|
|
21
21
|
OverflowMenuGroup,
|
|
22
22
|
OverflowMenuItem,
|
|
23
23
|
Spinner,
|
|
24
|
-
} from "
|
|
24
|
+
} from "../../shared/@patternfly/react-core";
|
|
25
25
|
import {
|
|
26
26
|
EditAltIcon,
|
|
27
27
|
EllipsisVIcon,
|
|
28
28
|
ExternalLinkAltIcon,
|
|
29
29
|
Remove2Icon,
|
|
30
30
|
ShareAltIcon,
|
|
31
|
-
} from "
|
|
31
|
+
} from "../../shared/@patternfly/react-icons";
|
|
32
32
|
import {
|
|
33
33
|
ExpandableRowContent,
|
|
34
34
|
Table,
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
Th,
|
|
38
38
|
Thead,
|
|
39
39
|
Tr,
|
|
40
|
-
} from "
|
|
40
|
+
} from "../../shared/@patternfly/react-table";
|
|
41
41
|
import { useState } from "react";
|
|
42
42
|
import { useTranslation } from "react-i18next";
|
|
43
43
|
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
Text,
|
|
11
11
|
TextContent,
|
|
12
12
|
TextVariants,
|
|
13
|
-
} from "
|
|
13
|
+
} from "../../shared/@patternfly/react-core";
|
|
14
14
|
import { useTranslation } from "react-i18next";
|
|
15
15
|
import { isRouteErrorResponse, useRouteError } from "react-router-dom";
|
|
16
16
|
|
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
label,
|
|
9
9
|
useEnvironment,
|
|
10
10
|
} from "../../shared/keycloak-ui-shared";
|
|
11
|
-
import { Button } from "
|
|
12
|
-
import { ExternalLinkSquareAltIcon } from "
|
|
11
|
+
import { Button } from "../../shared/@patternfly/react-core";
|
|
12
|
+
import { ExternalLinkSquareAltIcon } from "../../shared/@patternfly/react-icons";
|
|
13
13
|
import { useTranslation } from "react-i18next";
|
|
14
14
|
import { useHref } from "react-router-dom";
|
|
15
15
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
|
|
5
5
|
import { KeycloakProvider } from "../../shared/keycloak-ui-shared";
|
|
6
|
-
import { Page, Spinner } from "
|
|
6
|
+
import { Page, Spinner } from "../../shared/@patternfly/react-core";
|
|
7
7
|
import { Suspense } from "react";
|
|
8
8
|
import { Outlet } from "react-router-dom";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
|
|
5
5
|
import { useAlerts } from "../../shared/keycloak-ui-shared";
|
|
6
|
-
import { AlertVariant } from "
|
|
6
|
+
import { AlertVariant } from "../../shared/@patternfly/react-core";
|
|
7
7
|
import { useCallback, useMemo } from "react";
|
|
8
8
|
import { useTranslation } from "react-i18next";
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@keycloakify/keycloak-account-ui",
|
|
3
3
|
"main": "index.js",
|
|
4
4
|
"types": "index.d.ts",
|
|
5
|
-
"version": "260007.0.
|
|
5
|
+
"version": "260007.0.3",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git://github.com/keycloakify/keycloak-account-ui.git"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"react-i18next": "^15.0.2",
|
|
32
32
|
"react-router-dom": "^6.26.2",
|
|
33
33
|
"keycloak-js": "26.0.7",
|
|
34
|
-
"@keycloakify/keycloak-ui-shared": "~260007.0.
|
|
34
|
+
"@keycloakify/keycloak-ui-shared": "~260007.0.2",
|
|
35
35
|
"@types/lodash-es": "^4.17.12",
|
|
36
36
|
"@types/react": "^18.3.11"
|
|
37
37
|
}
|