@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.
Files changed (24) hide show
  1. package/keycloak-theme/account/account-security/AccountRow.tsx +2 -2
  2. package/keycloak-theme/account/account-security/DeviceActivity.tsx +2 -2
  3. package/keycloak-theme/account/account-security/LinkedAccounts.tsx +1 -1
  4. package/keycloak-theme/account/account-security/LinkedAccountsToolbar.tsx +1 -1
  5. package/keycloak-theme/account/account-security/SigningIn.tsx +2 -2
  6. package/keycloak-theme/account/applications/Applications.tsx +2 -2
  7. package/keycloak-theme/account/components/datalist/EmptyRow.tsx +1 -1
  8. package/keycloak-theme/account/components/page/Page.tsx +1 -1
  9. package/keycloak-theme/account/content/ContentComponent.tsx +1 -1
  10. package/keycloak-theme/account/groups/Groups.tsx +1 -1
  11. package/keycloak-theme/account/oid4vci/Oid4Vci.tsx +1 -1
  12. package/keycloak-theme/account/personal-info/PersonalInfo.tsx +2 -2
  13. package/keycloak-theme/account/resources/EditTheResource.tsx +1 -1
  14. package/keycloak-theme/account/resources/PermissionRequest.tsx +3 -3
  15. package/keycloak-theme/account/resources/ResourceToolbar.tsx +1 -1
  16. package/keycloak-theme/account/resources/Resources.tsx +1 -1
  17. package/keycloak-theme/account/resources/ResourcesTab.tsx +3 -3
  18. package/keycloak-theme/account/resources/ShareTheResource.tsx +1 -1
  19. package/keycloak-theme/account/root/ErrorPage.tsx +1 -1
  20. package/keycloak-theme/account/root/Header.tsx +2 -2
  21. package/keycloak-theme/account/root/PageNav.tsx +1 -1
  22. package/keycloak-theme/account/root/Root.tsx +1 -1
  23. package/keycloak-theme/account/utils/useAccountAlerts.ts +1 -1
  24. package/package.json +2 -2
@@ -14,8 +14,8 @@ import {
14
14
  Label,
15
15
  Split,
16
16
  SplitItem,
17
- } from "@patternfly/react-core";
18
- import { LinkIcon, UnlinkIcon } from "@patternfly/react-icons";
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 "@patternfly/react-core";
27
+ } from "../../shared/@patternfly/react-core";
28
28
  import {
29
29
  DesktopIcon,
30
30
  MobileAltIcon,
31
31
  SyncAltIcon,
32
- } from "@patternfly/react-icons";
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 "@patternfly/react-core";
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";
@@ -11,7 +11,7 @@ import {
11
11
  Toolbar,
12
12
  ToolbarContent,
13
13
  ToolbarItem,
14
- } from "@patternfly/react-core";
14
+ } from "../../shared/@patternfly/react-core";
15
15
 
16
16
  type LinkedAccountsToolbarProps = {
17
17
  onFilter: (nameFilter: string) => void;
@@ -18,8 +18,8 @@ import {
18
18
  Split,
19
19
  SplitItem,
20
20
  Title,
21
- } from "@patternfly/react-core";
22
- import { EllipsisVIcon } from "@patternfly/react-icons";
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 "@patternfly/react-core";
26
+ } from "../../shared/@patternfly/react-core";
27
27
  import {
28
28
  CheckIcon,
29
29
  ExternalLinkAltIcon,
30
30
  InfoAltIcon,
31
- } from "@patternfly/react-icons";
31
+ } from "../../shared/@patternfly/react-icons";
32
32
  import { useState } from "react";
33
33
  import { useTranslation } from "react-i18next";
34
34
 
@@ -7,7 +7,7 @@ import {
7
7
  DataListItemRow,
8
8
  DataListItemCells,
9
9
  DataListCell,
10
- } from "@patternfly/react-core";
10
+ } from "../../../shared/@patternfly/react-core";
11
11
 
12
12
  type EmptyRowProps = {
13
13
  message: string;
@@ -2,7 +2,7 @@
2
2
 
3
3
  // @ts-nocheck
4
4
 
5
- import { PageSection, Text, TextContent, Title } from "@patternfly/react-core";
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 "@patternfly/react-core";
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 "@patternfly/react-core";
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 "@patternfly/react-core";
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 "@patternfly/react-core";
21
- import { ExternalLinkSquareAltIcon } from "@patternfly/react-icons";
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 "@patternfly/react-core";
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 "@patternfly/react-core";
15
- import { UserCheckIcon } from "@patternfly/react-icons";
16
- import { Table, Tbody, Td, Th, Thead, Tr } from "@patternfly/react-table";
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
 
@@ -11,7 +11,7 @@ import {
11
11
  Toolbar,
12
12
  ToolbarContent,
13
13
  ToolbarItem,
14
- } from "@patternfly/react-core";
14
+ } from "../../shared/@patternfly/react-core";
15
15
 
16
16
  type ResourceToolbarProps = {
17
17
  onFilter: (nameFilter: string) => void;
@@ -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 "@patternfly/react-core";
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 "@patternfly/react-core";
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 "@patternfly/react-icons";
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 "@patternfly/react-table";
40
+ } from "../../shared/@patternfly/react-table";
41
41
  import { useState } from "react";
42
42
  import { useTranslation } from "react-i18next";
43
43
 
@@ -18,7 +18,7 @@ import {
18
18
  Modal,
19
19
  TextInput,
20
20
  ValidatedOptions,
21
- } from "@patternfly/react-core";
21
+ } from "../../shared/@patternfly/react-core";
22
22
  import { useEffect } from "react";
23
23
  import {
24
24
  FormProvider,
@@ -10,7 +10,7 @@ import {
10
10
  Text,
11
11
  TextContent,
12
12
  TextVariants,
13
- } from "@patternfly/react-core";
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 "@patternfly/react-core";
12
- import { ExternalLinkSquareAltIcon } from "@patternfly/react-icons";
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
 
@@ -11,7 +11,7 @@ import {
11
11
  PageSidebar,
12
12
  PageSidebarBody,
13
13
  Spinner,
14
- } from "@patternfly/react-core";
14
+ } from "../../shared/@patternfly/react-core";
15
15
  import {
16
16
  PropsWithChildren,
17
17
  MouseEvent as ReactMouseEvent,
@@ -3,7 +3,7 @@
3
3
  // @ts-nocheck
4
4
 
5
5
  import { KeycloakProvider } from "../../shared/keycloak-ui-shared";
6
- import { Page, Spinner } from "@patternfly/react-core";
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 "@patternfly/react-core";
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.2",
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.1",
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
  }