@tap-payments/os-micro-frontend-shared 0.1.209 → 0.1.210-datafix
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/Chip/style.d.ts +0 -1
- package/build/components/CountBadge/style.d.ts +0 -1
- package/build/components/Dialog/style.d.ts +0 -1
- package/build/components/FlippingCard/style.d.ts +0 -1
- package/build/components/ImageWrapper/ImageWrapper.d.ts +0 -1
- package/build/components/JSONViewer/style.d.ts +0 -1
- package/build/components/LeftPeekRightExpandingChip/style.d.ts +0 -1
- package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.js +3 -2
- package/build/components/RightLeftExpandingCenterChip/style.d.ts +0 -1
- package/build/components/SearchButton/styles.d.ts +0 -1
- package/build/components/StatusIcons/AuthIcons/style.d.ts +0 -1
- package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +0 -1
- package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +0 -1
- package/build/components/StatusIcons/SourceIcons/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/IDButton/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +0 -1
- package/build/components/TableCells/CustomCells/style.d.ts +0 -1
- package/build/components/VirtualTables/components/style.d.ts +0 -1
- package/build/constants/apps.d.ts +161 -0
- package/build/constants/apps.js +56 -0
- package/package.json +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
import { GetSourceAnimationFunction } from './type';
|
|
4
3
|
export declare const ChipStyled: import("@emotion/styled").StyledComponent<import("react").RefAttributes<unknown> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
5
4
|
variant?: import("./type").ChipVariant | undefined;
|
|
@@ -7,6 +7,7 @@ import TimePicker, { convertTo12Hour, maxHour } from '../../../Timepicker';
|
|
|
7
7
|
import { AllDayStyled, TimeArea, TimePickerWrapper, TimeAreaInner } from './style';
|
|
8
8
|
import { getEndOfDate, getStartOfDate } from '../../utils';
|
|
9
9
|
function CustomTimePicker({ values, setValues }) {
|
|
10
|
+
var _a, _b;
|
|
10
11
|
const { t } = useTranslation();
|
|
11
12
|
const startDate = new DateObject(values[0]);
|
|
12
13
|
const endDate = new DateObject(values[1]);
|
|
@@ -30,10 +31,10 @@ function CustomTimePicker({ values, setValues }) {
|
|
|
30
31
|
hour: convertTo12Hour(startDate.hour),
|
|
31
32
|
minute: startDate.minute,
|
|
32
33
|
period: startDate.hour >= maxHour ? 'PM' : 'AM',
|
|
33
|
-
}, size: "small", onChange: onChangeStartTime, enableRealTimeChange: true }, `${values[0].toString()}-start`), _jsx(TimePicker, { defaultTime: {
|
|
34
|
+
}, size: "small", onChange: onChangeStartTime, enableRealTimeChange: true }, `${(_a = values[0]) === null || _a === void 0 ? void 0 : _a.toString()}-start`), _jsx(TimePicker, { defaultTime: {
|
|
34
35
|
hour: convertTo12Hour(endDate.hour),
|
|
35
36
|
minute: endDate.minute,
|
|
36
37
|
period: endDate.hour >= maxHour ? 'PM' : 'AM',
|
|
37
|
-
}, size: "small", onChange: onChangeEndTime, enableRealTimeChange: true }, `${values[1].toString()}-end`)] }))] }) }));
|
|
38
|
+
}, size: "small", onChange: onChangeEndTime, enableRealTimeChange: true }, `${(_b = values[1]) === null || _b === void 0 ? void 0 : _b.toString()}-end`)] }))] }) }));
|
|
38
39
|
}
|
|
39
40
|
export default CustomTimePicker;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
import { TableMode } from '../../../../types/index.js';
|
|
4
3
|
export declare const ActionCellContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
5
4
|
tableMode?: TableMode | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledAppsCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const AppsStatusContainer: import("@emotion/styled").StyledComponent<{
|
|
5
4
|
hidden?: boolean | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const AuthIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
3
|
export declare const AuthCellContainer: import("@emotion/styled").StyledComponent<{
|
|
5
4
|
hidden?: boolean | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const SalesChannelsContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
5
4
|
hidden?: boolean | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
4
3
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
5
4
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const GeographyBox: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
4
3
|
variant?: "Global" | "Regional" | "Local" | undefined;
|
|
5
4
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
@@ -507,6 +507,167 @@ export declare const APP_CODES: {
|
|
|
507
507
|
};
|
|
508
508
|
};
|
|
509
509
|
};
|
|
510
|
+
financialInstitution: {
|
|
511
|
+
code: string;
|
|
512
|
+
functions: {
|
|
513
|
+
statement: {
|
|
514
|
+
code: string;
|
|
515
|
+
};
|
|
516
|
+
summary: {
|
|
517
|
+
code: string;
|
|
518
|
+
};
|
|
519
|
+
view: {
|
|
520
|
+
code: string;
|
|
521
|
+
};
|
|
522
|
+
sandbox: {
|
|
523
|
+
code: string;
|
|
524
|
+
};
|
|
525
|
+
jsonApi: {
|
|
526
|
+
code: string;
|
|
527
|
+
};
|
|
528
|
+
reports: {
|
|
529
|
+
code: string;
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
retailCommerce: {
|
|
534
|
+
code: string;
|
|
535
|
+
functions: {
|
|
536
|
+
statement: {
|
|
537
|
+
code: string;
|
|
538
|
+
};
|
|
539
|
+
summary: {
|
|
540
|
+
code: string;
|
|
541
|
+
};
|
|
542
|
+
view: {
|
|
543
|
+
code: string;
|
|
544
|
+
};
|
|
545
|
+
sandbox: {
|
|
546
|
+
code: string;
|
|
547
|
+
};
|
|
548
|
+
jsonApi: {
|
|
549
|
+
code: string;
|
|
550
|
+
};
|
|
551
|
+
reports: {
|
|
552
|
+
code: string;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
app: {
|
|
557
|
+
code: string;
|
|
558
|
+
functions: {
|
|
559
|
+
statement: {
|
|
560
|
+
code: string;
|
|
561
|
+
};
|
|
562
|
+
summary: {
|
|
563
|
+
code: string;
|
|
564
|
+
};
|
|
565
|
+
view: {
|
|
566
|
+
code: string;
|
|
567
|
+
};
|
|
568
|
+
sandbox: {
|
|
569
|
+
code: string;
|
|
570
|
+
};
|
|
571
|
+
jsonApi: {
|
|
572
|
+
code: string;
|
|
573
|
+
};
|
|
574
|
+
reports: {
|
|
575
|
+
code: string;
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
billing: {
|
|
580
|
+
code: string;
|
|
581
|
+
functions: {
|
|
582
|
+
statement: {
|
|
583
|
+
code: string;
|
|
584
|
+
};
|
|
585
|
+
summary: {
|
|
586
|
+
code: string;
|
|
587
|
+
};
|
|
588
|
+
view: {
|
|
589
|
+
code: string;
|
|
590
|
+
};
|
|
591
|
+
sandbox: {
|
|
592
|
+
code: string;
|
|
593
|
+
};
|
|
594
|
+
jsonApi: {
|
|
595
|
+
code: string;
|
|
596
|
+
};
|
|
597
|
+
reports: {
|
|
598
|
+
code: string;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
onlineCommerce: {
|
|
603
|
+
code: string;
|
|
604
|
+
functions: {
|
|
605
|
+
statement: {
|
|
606
|
+
code: string;
|
|
607
|
+
};
|
|
608
|
+
summary: {
|
|
609
|
+
code: string;
|
|
610
|
+
};
|
|
611
|
+
view: {
|
|
612
|
+
code: string;
|
|
613
|
+
};
|
|
614
|
+
sandbox: {
|
|
615
|
+
code: string;
|
|
616
|
+
};
|
|
617
|
+
jsonApi: {
|
|
618
|
+
code: string;
|
|
619
|
+
};
|
|
620
|
+
reports: {
|
|
621
|
+
code: string;
|
|
622
|
+
};
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
paymentFacilitator: {
|
|
626
|
+
code: string;
|
|
627
|
+
functions: {
|
|
628
|
+
statement: {
|
|
629
|
+
code: string;
|
|
630
|
+
};
|
|
631
|
+
summary: {
|
|
632
|
+
code: string;
|
|
633
|
+
};
|
|
634
|
+
view: {
|
|
635
|
+
code: string;
|
|
636
|
+
};
|
|
637
|
+
sandbox: {
|
|
638
|
+
code: string;
|
|
639
|
+
};
|
|
640
|
+
jsonApi: {
|
|
641
|
+
code: string;
|
|
642
|
+
};
|
|
643
|
+
reports: {
|
|
644
|
+
code: string;
|
|
645
|
+
};
|
|
646
|
+
};
|
|
647
|
+
};
|
|
648
|
+
development: {
|
|
649
|
+
code: string;
|
|
650
|
+
functions: {
|
|
651
|
+
statement: {
|
|
652
|
+
code: string;
|
|
653
|
+
};
|
|
654
|
+
summary: {
|
|
655
|
+
code: string;
|
|
656
|
+
};
|
|
657
|
+
view: {
|
|
658
|
+
code: string;
|
|
659
|
+
};
|
|
660
|
+
sandbox: {
|
|
661
|
+
code: string;
|
|
662
|
+
};
|
|
663
|
+
jsonApi: {
|
|
664
|
+
code: string;
|
|
665
|
+
};
|
|
666
|
+
reports: {
|
|
667
|
+
code: string;
|
|
668
|
+
};
|
|
669
|
+
};
|
|
670
|
+
};
|
|
510
671
|
};
|
|
511
672
|
};
|
|
512
673
|
payouts: {
|
package/build/constants/apps.js
CHANGED
|
@@ -202,6 +202,62 @@ export const APP_CODES = {
|
|
|
202
202
|
code: 'SUMMARY',
|
|
203
203
|
} }),
|
|
204
204
|
},
|
|
205
|
+
financialInstitution: {
|
|
206
|
+
code: 'FINANCIAL_INSTITUTION_WALLET',
|
|
207
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
208
|
+
code: 'STATEMENT',
|
|
209
|
+
}, summary: {
|
|
210
|
+
code: 'SUMMARY',
|
|
211
|
+
} }),
|
|
212
|
+
},
|
|
213
|
+
retailCommerce: {
|
|
214
|
+
code: 'RETAIL_COMMERCE_WALLET',
|
|
215
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
216
|
+
code: 'STATEMENT',
|
|
217
|
+
}, summary: {
|
|
218
|
+
code: 'SUMMARY',
|
|
219
|
+
} }),
|
|
220
|
+
},
|
|
221
|
+
app: {
|
|
222
|
+
code: 'APP_WALLET',
|
|
223
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
224
|
+
code: 'STATEMENT',
|
|
225
|
+
}, summary: {
|
|
226
|
+
code: 'SUMMARY',
|
|
227
|
+
} }),
|
|
228
|
+
},
|
|
229
|
+
billing: {
|
|
230
|
+
code: 'BILLING_WALLET',
|
|
231
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
232
|
+
code: 'STATEMENT',
|
|
233
|
+
}, summary: {
|
|
234
|
+
code: 'SUMMARY',
|
|
235
|
+
} }),
|
|
236
|
+
},
|
|
237
|
+
onlineCommerce: {
|
|
238
|
+
code: 'ONLINE_COMMERCE_WALLET',
|
|
239
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
240
|
+
code: 'STATEMENT',
|
|
241
|
+
}, summary: {
|
|
242
|
+
code: 'SUMMARY',
|
|
243
|
+
} }),
|
|
244
|
+
},
|
|
245
|
+
paymentFacilitator: {
|
|
246
|
+
code: 'PAYMENT_FACILITATOR_WALLET',
|
|
247
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
248
|
+
code: 'STATEMENT',
|
|
249
|
+
}, summary: {
|
|
250
|
+
code: 'SUMMARY',
|
|
251
|
+
} }),
|
|
252
|
+
},
|
|
253
|
+
development: {
|
|
254
|
+
code: 'DEVELOPMENT_WALLET',
|
|
255
|
+
functions: Object.assign(Object.assign({}, SERVICE_COMMON_FUNCTIONS), { statement: {
|
|
256
|
+
code: 'STATEMENT',
|
|
257
|
+
}, summary: {
|
|
258
|
+
code: 'SUMMARY',
|
|
259
|
+
} }),
|
|
260
|
+
},
|
|
205
261
|
},
|
|
206
262
|
},
|
|
207
263
|
payouts: {
|
package/package.json
CHANGED