@tap-payments/os-micro-frontend-shared 0.1.112 → 0.1.114-test.1

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Tap Payments
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tap Payments
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # os-micro-frontend-shared
2
-
3
- ## Publishing Workflow
4
-
5
- 1. Update version in package.json
6
- 2. Commit changes
7
- 3. Create and push a tag:
8
-
9
- ```bash
10
- npm version patch # or minor, major
11
- git push origin main --tags
12
- ```
1
+ # os-micro-frontend-shared
2
+
3
+ ## Publishing Workflow
4
+
5
+ 1. Update version in package.json
6
+ 2. Commit changes
7
+ 3. Create and push a tag:
8
+
9
+ ```bash
10
+ npm version patch # or minor, major
11
+ git push origin main --tags
12
+ ```
@@ -47,11 +47,11 @@ function Dropdown(_a) {
47
47
  onSelect(changedChildren);
48
48
  }
49
49
  }, [selectedItem]);
50
- return (_jsxs(DropdownStyled, Object.assign({ component: "article", className: `tap-dropdown ${className || ''}` }, props, { children: [_jsx(HeaderWrapper, { children: title && _jsx(TitleStyled, Object.assign({ component: "p" }, { children: title })) }), _jsx(ListWrapper, { children: list === null || list === void 0 ? void 0 : list.map((item) => (_jsx(MenuItem, Object.assign({ setSelected: ({ name, selected }) => {
50
+ return (_jsxs(DropdownStyled, Object.assign({ component: "article", className: `tap-dropdown ${className || ''}` }, props, { children: [_jsx(HeaderWrapper, { children: title && _jsx(TitleStyled, Object.assign({ component: "p" }, { children: title })) }), _jsx(ListWrapper, { children: list === null || list === void 0 ? void 0 : list.map((item, idx) => (_jsx(MenuItem, Object.assign({ setSelected: ({ name, selected }) => {
51
51
  setSelected({ name, selected });
52
52
  }, onSelect: (selectedChildren) => {
53
53
  if (onSelect)
54
54
  onSelect(selectedChildren);
55
- }, placement: placement }, item), `${item.name}`))) }), footer && footer] })));
55
+ }, placement: placement }, item), `${item.name}-${idx}`))) }), footer && footer] })));
56
56
  }
57
57
  export default memo(Dropdown);
@@ -0,0 +1,14 @@
1
+ import { StatusChipWithCopyProps } from '../../../StatusChipWithCopy';
2
+ interface CustomerSheetCellProps extends Pick<StatusChipWithCopyProps, 'selectionProps'> {
3
+ id?: string;
4
+ name?: string;
5
+ email?: string;
6
+ phone?: string;
7
+ isFirstNameShown?: boolean;
8
+ isLastNameShown?: boolean;
9
+ isEmailShown?: boolean;
10
+ isPhoneShown?: boolean;
11
+ isIdShown?: boolean;
12
+ }
13
+ declare function CustomerSheetCell({ id, name, email, phone, isFirstNameShown, isLastNameShown, isEmailShown, isPhoneShown, isIdShown, ...props }: CustomerSheetCellProps): import("react/jsx-runtime").JSX.Element;
14
+ export default CustomerSheetCell;
@@ -0,0 +1,21 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import { Box } from '@mui/material';
14
+ import { StatusChipWithCopy } from '../../../index.js';
15
+ import { isArabic } from '../../../../utils/index.js';
16
+ function CustomerSheetCell(_a) {
17
+ var { id, name, email, phone, isFirstNameShown = true, isLastNameShown = true, isEmailShown = true, isPhoneShown = true, isIdShown = true } = _a, props = __rest(_a, ["id", "name", "email", "phone", "isFirstNameShown", "isLastNameShown", "isEmailShown", "isPhoneShown", "isIdShown"]);
18
+ const isArabicname = isArabic(name);
19
+ return (_jsxs(Box, Object.assign({ sx: { display: 'flex', flexDirection: 'row', gap: '4px' } }, { children: [name && (isFirstNameShown || isLastNameShown) && (_jsx(StatusChipWithCopy, Object.assign({ copyText: name, chipIndex: 0 }, props, { children: _jsx("span", Object.assign({ "data-is-arabic": isArabicname }, { children: name })) }))), isEmailShown && email && (_jsx(StatusChipWithCopy, Object.assign({ copyText: email, chipIndex: 1 }, props, { children: email }))), isPhoneShown && phone && (_jsx(StatusChipWithCopy, Object.assign({ copyText: phone, chipIndex: 2 }, props, { children: phone }))), isIdShown && id && (_jsx(StatusChipWithCopy, Object.assign({ copyText: id, chipIndex: 3 }, props, { children: id })))] })));
20
+ }
21
+ export default CustomerSheetCell;
@@ -0,0 +1 @@
1
+ export { default as CustomerSheetCell } from './CustomerSheetCell';
@@ -0,0 +1 @@
1
+ export { default as CustomerSheetCell } from './CustomerSheetCell';
@@ -1 +1,2 @@
1
1
  export * from './PaymentAgreementCell';
2
+ export * from './CustomerSheetCell';
@@ -1 +1,2 @@
1
1
  export * from './PaymentAgreementCell';
2
+ export * from './CustomerSheetCell';
@@ -56,6 +56,6 @@ function List({ onCloseDropdown, filter, styles }) {
56
56
  bottom: 0,
57
57
  backgroundColor: 'white',
58
58
  zIndex: 99999,
59
- } }, { children: [_jsx(CancelButton, Object.assign({ onClick: onClickCancel }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ onClick: onClickOkay }, { children: t('okay') }))] })) }));
59
+ } }, { children: [_jsx(CancelButton, Object.assign({ onClick: onClickCancel }, { children: t('cancel') }), "nested-dropdown-cancel"), _jsx(OkayButton, Object.assign({ onClick: onClickOkay }, { children: t('okay') }), "nested-dropdown-ok")] })) }));
60
60
  }
61
61
  export default memo(List);
@@ -544,3 +544,6 @@ export declare const deemaWithLabel: string;
544
544
  export declare const blackUnLinkIcon: string;
545
545
  export declare const sortDescArrowIcon: string;
546
546
  export declare const sortAscArrowIcon: string;
547
+ export declare const closedOutlinedYellowCircle: string;
548
+ export declare const deactivatedOrangeCircle: string;
549
+ export declare const exclamationOutlinedOrangeCircle: string;
@@ -548,3 +548,6 @@ export const deemaWithLabel = `${lightUrl}/deemaWithLabel.svg`;
548
548
  export const blackUnLinkIcon = `${lightUrl}/blackUnLinkIcon.svg`;
549
549
  export const sortDescArrowIcon = `${lightUrl}/sortDescArrowIcon.svg`;
550
550
  export const sortAscArrowIcon = `${lightUrl}/sortAscArrowIcon.svg`;
551
+ export const closedOutlinedYellowCircle = `${lightUrl}/closedOutlinedYellowCircle.svg`;
552
+ export const deactivatedOrangeCircle = `${lightUrl}/deactivatedOrangeCircle.svg`;
553
+ export const exclamationOutlinedOrangeCircle = `${lightUrl}/exclamationOutlinedOrangeCircle.svg`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.112",
4
+ "version": "0.1.114-test.1",
5
5
  "testVersion": 1,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
@@ -136,4 +136,4 @@
136
136
  "publishConfig": {
137
137
  "registry": "https://registry.npmjs.org/"
138
138
  }
139
- }
139
+ }