@tap-payments/os-micro-frontend-shared 0.0.94 → 0.0.95
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/build/components/{AppContainer/components/AppServices → AppServices}/AppServices.d.ts +1 -1
- package/build/components/{AppContainer/components/AppServices → AppServices}/AppServices.js +3 -3
- package/build/components/{AppContainer/components/AppServices → AppServices}/ServiceItem.d.ts +1 -1
- package/build/components/{AppContainer/components/AppServices → AppServices}/ServiceItem.js +3 -3
- package/build/components/{AppContainer/components/AppServices → AppServices}/style.js +2 -2
- package/build/components/index.d.ts +1 -1
- package/build/components/index.js +1 -1
- package/package.json +1 -1
- package/build/components/AppContainer/index.d.ts +0 -1
- package/build/components/AppContainer/index.js +0 -1
- /package/build/components/{AppContainer/components/AppServices → AppServices}/index.d.ts +0 -0
- /package/build/components/{AppContainer/components/AppServices → AppServices}/index.js +0 -0
- /package/build/components/{AppContainer/components/AppServices → AppServices}/style.d.ts +0 -0
package/build/components/{AppContainer/components/AppServices → AppServices}/AppServices.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AppDetails, UserApp } from '
|
|
2
|
+
import { AppDetails, UserApp } from '../../types/index.js';
|
|
3
3
|
import { ServiceItemProps } from './ServiceItem';
|
|
4
4
|
interface AppServicesProps extends Pick<ServiceItemProps, 'onClickServiceItem'> {
|
|
5
5
|
appInfo: AppDetails;
|
|
@@ -3,9 +3,9 @@ import React, { memo, useEffect, useRef, useState, useMemo } from 'react';
|
|
|
3
3
|
import { Box } from '@mui/material';
|
|
4
4
|
import { useTranslation } from 'react-i18next';
|
|
5
5
|
import { useNavigate, useLocation } from 'react-router-dom';
|
|
6
|
-
import { StyledIconForDropDown, StyledMenuTitle, StyledOption, StyledSelect, StyledSelectComponent } from '
|
|
7
|
-
import { APP_CODES, blackHeadingDownArrow, blueHeadingDropdownArrow } from '
|
|
8
|
-
import { getNameText } from '
|
|
6
|
+
import { StyledIconForDropDown, StyledMenuTitle, StyledOption, StyledSelect, StyledSelectComponent } from '../index.js';
|
|
7
|
+
import { APP_CODES, blackHeadingDownArrow, blueHeadingDropdownArrow } from '../../constants/index.js';
|
|
8
|
+
import { getNameText } from '../../utils/index.js';
|
|
9
9
|
import ServiceItem from './ServiceItem';
|
|
10
10
|
import { Wrapper } from './style';
|
|
11
11
|
const selectedIcon = (props) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { memo, useState } from 'react';
|
|
3
3
|
import { useTranslation } from 'react-i18next';
|
|
4
|
-
import { DropdownMenu, Icon } from '
|
|
5
|
-
import { isInsightService } from '
|
|
6
|
-
import { homeIcon, newWindowIcon } from '
|
|
4
|
+
import { DropdownMenu, Icon } from '../index.js';
|
|
5
|
+
import { isInsightService } from '../../utils/index.js';
|
|
6
|
+
import { homeIcon, newWindowIcon } from '../../constants/index.js';
|
|
7
7
|
import { ServiceItemStyled } from './style';
|
|
8
8
|
function ServiceItem({ isDropdown = false, name, code, appInfo, onDropdownClick, navigateToMenuItem, onClickServiceItem }) {
|
|
9
9
|
const [anchorEl, setAnchorEl] = useState(null);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Box from '@mui/material/Box';
|
|
2
|
-
import Text from '
|
|
2
|
+
import Text from '../Text';
|
|
3
3
|
import { styled } from '@mui/material/styles';
|
|
4
|
-
import { getBrowserName } from '
|
|
4
|
+
import { getBrowserName } from '../../utils/index.js';
|
|
5
5
|
export const Wrapper = styled(Box, { shouldForwardProp: (props) => props !== 'maximized' })(({ theme, maximized }) => ({
|
|
6
6
|
display: 'flex',
|
|
7
7
|
alignItems: 'center',
|
|
@@ -89,4 +89,4 @@ export { default as StatusBar } from './StatusBar';
|
|
|
89
89
|
export * from './Chip';
|
|
90
90
|
export * from './TableHeader_V2';
|
|
91
91
|
export { default as RangeCalender } from './RangeCalender';
|
|
92
|
-
export
|
|
92
|
+
export { default as AppServices } from './AppServices';
|
|
@@ -89,4 +89,4 @@ export { default as StatusBar } from './StatusBar';
|
|
|
89
89
|
export * from './Chip';
|
|
90
90
|
export * from './TableHeader_V2';
|
|
91
91
|
export { default as RangeCalender } from './RangeCalender';
|
|
92
|
-
export
|
|
92
|
+
export { default as AppServices } from './AppServices';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as AppServices } from './components/AppServices';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as AppServices } from './components/AppServices';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|