tg-core-components 6.0.3 → 6.0.6
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/es/components/Input/PhoneNumberInput.js +7 -1
- package/es/widgets/CashierAccordion/Deposit/DepositWidget/index.js +4 -2
- package/es/widgets/CashierAccordion/Payment/PaymentAccountForms/index.js +63 -5
- package/es/widgets/CashierAccordion/Withdraw/WithdrawWidget/index.js +4 -2
- package/lib/components/Input/PhoneNumberInput.js +7 -1
- package/lib/widgets/CashierAccordion/Deposit/DepositWidget/index.js +4 -2
- package/lib/widgets/CashierAccordion/Payment/PaymentAccountForms/index.js +68 -4
- package/lib/widgets/CashierAccordion/Withdraw/WithdrawWidget/index.js +4 -2
- package/package.json +2 -2
|
@@ -71,7 +71,10 @@ var PhoneNumberInput = function PhoneNumberInput(props) {
|
|
|
71
71
|
callingCodeSelect.focus.onBlur();
|
|
72
72
|
_onBlur(e);
|
|
73
73
|
},
|
|
74
|
-
status: props.status
|
|
74
|
+
status: props.status,
|
|
75
|
+
leadingLane: [props.selectIcon].filter(function (i) {
|
|
76
|
+
return i;
|
|
77
|
+
}) }),
|
|
75
78
|
(props.callingCodes || []).map(function (c, i) {
|
|
76
79
|
return React.createElement(
|
|
77
80
|
Select.Option,
|
|
@@ -97,6 +100,9 @@ var PhoneNumberInput = function PhoneNumberInput(props) {
|
|
|
97
100
|
_onBlur(e);
|
|
98
101
|
},
|
|
99
102
|
status: props.status,
|
|
103
|
+
leadingLane: [props.inputIcon].filter(function (i) {
|
|
104
|
+
return i;
|
|
105
|
+
}),
|
|
100
106
|
trailingLane: [statusIcons[props.status]].filter(function (i) {
|
|
101
107
|
return i;
|
|
102
108
|
})
|
|
@@ -171,7 +171,8 @@ var DepositWidget = function (_Component) {
|
|
|
171
171
|
paymentStats = _props.paymentStats,
|
|
172
172
|
_props$shouldAutoFocu = _props.shouldAutoFocus,
|
|
173
173
|
shouldAutoFocus = _props$shouldAutoFocu === undefined ? false : _props$shouldAutoFocu,
|
|
174
|
-
hideSelectedBonus = _props.hideSelectedBonus
|
|
174
|
+
hideSelectedBonus = _props.hideSelectedBonus,
|
|
175
|
+
config = _props.config;
|
|
175
176
|
|
|
176
177
|
|
|
177
178
|
var accountExclusions = payments.filter(function (provider) {
|
|
@@ -426,7 +427,8 @@ var DepositWidget = function (_Component) {
|
|
|
426
427
|
account: selectedAccount,
|
|
427
428
|
method: selectedMethod,
|
|
428
429
|
detail: selectedMethodDetail,
|
|
429
|
-
country: country
|
|
430
|
+
country: country,
|
|
431
|
+
config: config
|
|
430
432
|
};
|
|
431
433
|
var PaymentAccountForm = paymentDetail ? paymentDetail.component : null;
|
|
432
434
|
|
|
@@ -1,16 +1,20 @@
|
|
|
1
|
+
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
|
2
|
+
|
|
1
3
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
2
4
|
|
|
3
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
4
6
|
|
|
5
|
-
import React from 'react';
|
|
7
|
+
import React, { useEffect, useState } from 'react';
|
|
6
8
|
import { injectIntl } from 'react-intl';
|
|
7
9
|
import identity from 'lodash/identity';
|
|
8
10
|
import * as Parser from '../../Payment/PaymentAccountParser';
|
|
9
11
|
import astroPayBankTransaltions from './astroPayBankTransaltions';
|
|
10
12
|
import getByPath from 'lodash/get';
|
|
13
|
+
import axios from 'axios';
|
|
11
14
|
import translate from '../../../../lib/utils/translate';
|
|
12
15
|
import Input from '../../../../components/Input';
|
|
13
16
|
import Select from '../../../../components/Select';
|
|
17
|
+
import Loader from '../../../../components/Loader';
|
|
14
18
|
|
|
15
19
|
import Payment from 'payment';
|
|
16
20
|
|
|
@@ -320,7 +324,34 @@ var AstroPayBank = function AstroPayBank(_ref8) {
|
|
|
320
324
|
method = _ref8.method,
|
|
321
325
|
detail = _ref8.detail,
|
|
322
326
|
change = _ref8.change,
|
|
323
|
-
values = _ref8.values
|
|
327
|
+
values = _ref8.values,
|
|
328
|
+
config = _ref8.config;
|
|
329
|
+
|
|
330
|
+
var _useState = useState([]),
|
|
331
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
332
|
+
banks = _useState2[0],
|
|
333
|
+
setBanks = _useState2[1];
|
|
334
|
+
|
|
335
|
+
var _useState3 = useState(false),
|
|
336
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
337
|
+
isLoading = _useState4[0],
|
|
338
|
+
setIsLoading = _useState4[1];
|
|
339
|
+
|
|
340
|
+
useEffect(function () {
|
|
341
|
+
setIsLoading(true);
|
|
342
|
+
|
|
343
|
+
axios.post(config.devcode.host + '/directa24/getBanksByCountry', {
|
|
344
|
+
merchantId: config.MERCHANT_ID,
|
|
345
|
+
countryCode: country
|
|
346
|
+
}).then(function (res) {
|
|
347
|
+
var banks = res.data.map(function (bank) {
|
|
348
|
+
return bank.code;
|
|
349
|
+
});
|
|
350
|
+
setBanks(banks);
|
|
351
|
+
}).finally(function () {
|
|
352
|
+
return setIsLoading(false);
|
|
353
|
+
});
|
|
354
|
+
}, []);
|
|
324
355
|
|
|
325
356
|
var translateMap = function translateMap(category) {
|
|
326
357
|
return function (value) {
|
|
@@ -333,12 +364,14 @@ var AstroPayBank = function AstroPayBank(_ref8) {
|
|
|
333
364
|
|
|
334
365
|
var countryKey = country.toUpperCase();
|
|
335
366
|
var methodDetails = {
|
|
336
|
-
banks: getByPath(detail, 'config[' + countryKey + '].banks'),
|
|
367
|
+
banks: banks.length > 0 ? banks : getByPath(detail, 'config[' + countryKey + '].banks'),
|
|
337
368
|
idTypes: getByPath(detail, 'config[' + countryKey + '].idTypes'),
|
|
338
369
|
accountTypes: getByPath(detail, 'config[' + countryKey + '].accountTypes'),
|
|
339
370
|
services: getByPath(detail, 'config[' + countryKey + '].services')
|
|
340
371
|
};
|
|
341
372
|
|
|
373
|
+
if (isLoading) return React.createElement(Loader, { inline: true });
|
|
374
|
+
|
|
342
375
|
return React.createElement(
|
|
343
376
|
'div',
|
|
344
377
|
null,
|
|
@@ -501,7 +534,8 @@ var BankIntl = function BankIntl(_ref9) {
|
|
|
501
534
|
var account = _ref9.account,
|
|
502
535
|
intl = _ref9.intl,
|
|
503
536
|
values = _ref9.values,
|
|
504
|
-
change = _ref9.change
|
|
537
|
+
change = _ref9.change,
|
|
538
|
+
country = _ref9.country;
|
|
505
539
|
|
|
506
540
|
return React.createElement(
|
|
507
541
|
'div',
|
|
@@ -525,7 +559,31 @@ var BankIntl = function BankIntl(_ref9) {
|
|
|
525
559
|
},
|
|
526
560
|
label: translate({ id: 'cashier.details.bic' }, intl),
|
|
527
561
|
disabled: account.accountId
|
|
528
|
-
})
|
|
562
|
+
}),
|
|
563
|
+
['AE'].includes(country) && React.createElement(
|
|
564
|
+
React.Fragment,
|
|
565
|
+
null,
|
|
566
|
+
React.createElement(Input, {
|
|
567
|
+
required: true,
|
|
568
|
+
name: 'beneficiaryCountry',
|
|
569
|
+
value: account.accountId ? account.maskedAccount.replace(/\s(.*)/g, '') : values['beneficiaryCountry'],
|
|
570
|
+
onChange: function onChange(e, beneficiaryCountry) {
|
|
571
|
+
return change('beneficiaryCountry', beneficiaryCountry);
|
|
572
|
+
},
|
|
573
|
+
label: translate({ id: 'cashier.details.beneficiaryCountry' }, intl),
|
|
574
|
+
disabled: account.accountId
|
|
575
|
+
}),
|
|
576
|
+
React.createElement(Input, {
|
|
577
|
+
required: true,
|
|
578
|
+
name: 'bankName',
|
|
579
|
+
value: account.accountId ? account.maskedAccount.replace(/\s(.*)/g, '') : values['bankName'],
|
|
580
|
+
onChange: function onChange(e, bankName) {
|
|
581
|
+
return change('bankName', bankName);
|
|
582
|
+
},
|
|
583
|
+
label: translate({ id: 'cashier.details.bankName' }, intl),
|
|
584
|
+
disabled: account.accountId
|
|
585
|
+
})
|
|
586
|
+
)
|
|
529
587
|
);
|
|
530
588
|
};
|
|
531
589
|
|
|
@@ -93,7 +93,8 @@ var WithdrawWidget = function (_PureComponent) {
|
|
|
93
93
|
initialState = _props.initialState,
|
|
94
94
|
headers = _props.headers,
|
|
95
95
|
wallet = _props.wallet,
|
|
96
|
-
renderCanceledNotice = _props.renderCanceledNotice
|
|
96
|
+
renderCanceledNotice = _props.renderCanceledNotice,
|
|
97
|
+
config = _props.config;
|
|
97
98
|
|
|
98
99
|
|
|
99
100
|
var accountExclusions = payments.filter(function (provider) {
|
|
@@ -263,7 +264,8 @@ var WithdrawWidget = function (_PureComponent) {
|
|
|
263
264
|
account: selectedAccount,
|
|
264
265
|
method: selectedMethod,
|
|
265
266
|
detail: selectedMethodDetail,
|
|
266
|
-
country: country
|
|
267
|
+
country: country,
|
|
268
|
+
config: config
|
|
267
269
|
};
|
|
268
270
|
var PaymentAccountForm = paymentDetail ? paymentDetail.component : null;
|
|
269
271
|
|
|
@@ -88,7 +88,10 @@ var PhoneNumberInput = function PhoneNumberInput(props) {
|
|
|
88
88
|
callingCodeSelect.focus.onBlur();
|
|
89
89
|
_onBlur(e);
|
|
90
90
|
},
|
|
91
|
-
status: props.status
|
|
91
|
+
status: props.status,
|
|
92
|
+
leadingLane: [props.selectIcon].filter(function (i) {
|
|
93
|
+
return i;
|
|
94
|
+
}) }),
|
|
92
95
|
(props.callingCodes || []).map(function (c, i) {
|
|
93
96
|
return _react2.default.createElement(
|
|
94
97
|
_common.Select.Option,
|
|
@@ -114,6 +117,9 @@ var PhoneNumberInput = function PhoneNumberInput(props) {
|
|
|
114
117
|
_onBlur(e);
|
|
115
118
|
},
|
|
116
119
|
status: props.status,
|
|
120
|
+
leadingLane: [props.inputIcon].filter(function (i) {
|
|
121
|
+
return i;
|
|
122
|
+
}),
|
|
117
123
|
trailingLane: [_common.statusIcons[props.status]].filter(function (i) {
|
|
118
124
|
return i;
|
|
119
125
|
})
|
|
@@ -236,7 +236,8 @@ var DepositWidget = function (_Component) {
|
|
|
236
236
|
paymentStats = _props.paymentStats,
|
|
237
237
|
_props$shouldAutoFocu = _props.shouldAutoFocus,
|
|
238
238
|
shouldAutoFocus = _props$shouldAutoFocu === undefined ? false : _props$shouldAutoFocu,
|
|
239
|
-
hideSelectedBonus = _props.hideSelectedBonus
|
|
239
|
+
hideSelectedBonus = _props.hideSelectedBonus,
|
|
240
|
+
config = _props.config;
|
|
240
241
|
|
|
241
242
|
|
|
242
243
|
var accountExclusions = payments.filter(function (provider) {
|
|
@@ -491,7 +492,8 @@ var DepositWidget = function (_Component) {
|
|
|
491
492
|
account: selectedAccount,
|
|
492
493
|
method: selectedMethod,
|
|
493
494
|
detail: selectedMethodDetail,
|
|
494
|
-
country: country
|
|
495
|
+
country: country,
|
|
496
|
+
config: config
|
|
495
497
|
};
|
|
496
498
|
var PaymentAccountForm = paymentDetail ? paymentDetail.component : null;
|
|
497
499
|
|
|
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.InteracWithdrawal = exports.PaysafecardWithdrawal = exports.InstadebitWithdrawal = exports.IDebitWithdrawal = exports.IdealWithdrawal = exports.EProPaymentWallWithdrawal = exports.EcoPayzWithdrawal = exports.TrustlyWithdrawal = exports.BankWithdrawal = exports.ZimplerWithdrawal = exports.MiFinityEWalletWithdrawal = exports.EzeeWalletWithdrawal = exports.AstroPayBankWithdrawal = exports.MuchBetterWithdrawal = exports.NetellerWithdrawal = exports.VenusPointWithdrawal = exports.CreditcardWithdrawal = exports.SkrillWithdrawal = exports.BankIBANWithdrawal = exports.BankLocalWithdrawal = exports.JetonWithdrawal = exports.CryptoCurrencyWithdrawal = exports.BestPayWithdrawal = exports.BankIntlWithdrawal = exports.MiFinityEWalletDeposit = exports.BankIntlDeposit = exports.BestPayDeposit = exports.FunangaDeposit = exports.PaysafecardDeposit = exports.InstadebitDeposit = exports.IDebitDeposit = exports.IdealDeposit = exports.EProPaymentWallDeposit = exports.EcoPayzDeposit = exports.TrustlyDeposit = exports.BankDeposit = exports.ZimplerDeposit = exports.EzeeWalletDeposit = exports.CryptoCurrencyDeposit = exports.AstroPayBankDeposit = exports.MobilePayDeposit = exports.PProDeposit = exports.MuchBetterDeposit = exports.SiruDeposit = exports.VenusPointDeposit = exports.NetellerDeposit = exports.CreditcardDeposit = exports.SkrillDeposit = undefined;
|
|
7
7
|
|
|
8
|
+
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
|
9
|
+
|
|
8
10
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
9
11
|
|
|
10
12
|
var _react = require('react');
|
|
@@ -29,6 +31,10 @@ var _get = require('lodash/get');
|
|
|
29
31
|
|
|
30
32
|
var _get2 = _interopRequireDefault(_get);
|
|
31
33
|
|
|
34
|
+
var _axios = require('axios');
|
|
35
|
+
|
|
36
|
+
var _axios2 = _interopRequireDefault(_axios);
|
|
37
|
+
|
|
32
38
|
var _translate = require('../../../../lib/utils/translate');
|
|
33
39
|
|
|
34
40
|
var _translate2 = _interopRequireDefault(_translate);
|
|
@@ -41,6 +47,10 @@ var _Select = require('../../../../components/Select');
|
|
|
41
47
|
|
|
42
48
|
var _Select2 = _interopRequireDefault(_Select);
|
|
43
49
|
|
|
50
|
+
var _Loader = require('../../../../components/Loader');
|
|
51
|
+
|
|
52
|
+
var _Loader2 = _interopRequireDefault(_Loader);
|
|
53
|
+
|
|
44
54
|
var _payment = require('payment');
|
|
45
55
|
|
|
46
56
|
var _payment2 = _interopRequireDefault(_payment);
|
|
@@ -357,7 +367,34 @@ var AstroPayBank = function AstroPayBank(_ref8) {
|
|
|
357
367
|
method = _ref8.method,
|
|
358
368
|
detail = _ref8.detail,
|
|
359
369
|
change = _ref8.change,
|
|
360
|
-
values = _ref8.values
|
|
370
|
+
values = _ref8.values,
|
|
371
|
+
config = _ref8.config;
|
|
372
|
+
|
|
373
|
+
var _useState = (0, _react.useState)([]),
|
|
374
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
375
|
+
banks = _useState2[0],
|
|
376
|
+
setBanks = _useState2[1];
|
|
377
|
+
|
|
378
|
+
var _useState3 = (0, _react.useState)(false),
|
|
379
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
380
|
+
isLoading = _useState4[0],
|
|
381
|
+
setIsLoading = _useState4[1];
|
|
382
|
+
|
|
383
|
+
(0, _react.useEffect)(function () {
|
|
384
|
+
setIsLoading(true);
|
|
385
|
+
|
|
386
|
+
_axios2.default.post(config.devcode.host + '/directa24/getBanksByCountry', {
|
|
387
|
+
merchantId: config.MERCHANT_ID,
|
|
388
|
+
countryCode: country
|
|
389
|
+
}).then(function (res) {
|
|
390
|
+
var banks = res.data.map(function (bank) {
|
|
391
|
+
return bank.code;
|
|
392
|
+
});
|
|
393
|
+
setBanks(banks);
|
|
394
|
+
}).finally(function () {
|
|
395
|
+
return setIsLoading(false);
|
|
396
|
+
});
|
|
397
|
+
}, []);
|
|
361
398
|
|
|
362
399
|
var translateMap = function translateMap(category) {
|
|
363
400
|
return function (value) {
|
|
@@ -370,12 +407,14 @@ var AstroPayBank = function AstroPayBank(_ref8) {
|
|
|
370
407
|
|
|
371
408
|
var countryKey = country.toUpperCase();
|
|
372
409
|
var methodDetails = {
|
|
373
|
-
banks: (0, _get2.default)(detail, 'config[' + countryKey + '].banks'),
|
|
410
|
+
banks: banks.length > 0 ? banks : (0, _get2.default)(detail, 'config[' + countryKey + '].banks'),
|
|
374
411
|
idTypes: (0, _get2.default)(detail, 'config[' + countryKey + '].idTypes'),
|
|
375
412
|
accountTypes: (0, _get2.default)(detail, 'config[' + countryKey + '].accountTypes'),
|
|
376
413
|
services: (0, _get2.default)(detail, 'config[' + countryKey + '].services')
|
|
377
414
|
};
|
|
378
415
|
|
|
416
|
+
if (isLoading) return _react2.default.createElement(_Loader2.default, { inline: true });
|
|
417
|
+
|
|
379
418
|
return _react2.default.createElement(
|
|
380
419
|
'div',
|
|
381
420
|
null,
|
|
@@ -538,7 +577,8 @@ var BankIntl = function BankIntl(_ref9) {
|
|
|
538
577
|
var account = _ref9.account,
|
|
539
578
|
intl = _ref9.intl,
|
|
540
579
|
values = _ref9.values,
|
|
541
|
-
change = _ref9.change
|
|
580
|
+
change = _ref9.change,
|
|
581
|
+
country = _ref9.country;
|
|
542
582
|
|
|
543
583
|
return _react2.default.createElement(
|
|
544
584
|
'div',
|
|
@@ -562,7 +602,31 @@ var BankIntl = function BankIntl(_ref9) {
|
|
|
562
602
|
},
|
|
563
603
|
label: (0, _translate2.default)({ id: 'cashier.details.bic' }, intl),
|
|
564
604
|
disabled: account.accountId
|
|
565
|
-
})
|
|
605
|
+
}),
|
|
606
|
+
['AE'].includes(country) && _react2.default.createElement(
|
|
607
|
+
_react2.default.Fragment,
|
|
608
|
+
null,
|
|
609
|
+
_react2.default.createElement(_Input2.default, {
|
|
610
|
+
required: true,
|
|
611
|
+
name: 'beneficiaryCountry',
|
|
612
|
+
value: account.accountId ? account.maskedAccount.replace(/\s(.*)/g, '') : values['beneficiaryCountry'],
|
|
613
|
+
onChange: function onChange(e, beneficiaryCountry) {
|
|
614
|
+
return change('beneficiaryCountry', beneficiaryCountry);
|
|
615
|
+
},
|
|
616
|
+
label: (0, _translate2.default)({ id: 'cashier.details.beneficiaryCountry' }, intl),
|
|
617
|
+
disabled: account.accountId
|
|
618
|
+
}),
|
|
619
|
+
_react2.default.createElement(_Input2.default, {
|
|
620
|
+
required: true,
|
|
621
|
+
name: 'bankName',
|
|
622
|
+
value: account.accountId ? account.maskedAccount.replace(/\s(.*)/g, '') : values['bankName'],
|
|
623
|
+
onChange: function onChange(e, bankName) {
|
|
624
|
+
return change('bankName', bankName);
|
|
625
|
+
},
|
|
626
|
+
label: (0, _translate2.default)({ id: 'cashier.details.bankName' }, intl),
|
|
627
|
+
disabled: account.accountId
|
|
628
|
+
})
|
|
629
|
+
)
|
|
566
630
|
);
|
|
567
631
|
};
|
|
568
632
|
|
|
@@ -150,7 +150,8 @@ var WithdrawWidget = function (_PureComponent) {
|
|
|
150
150
|
initialState = _props.initialState,
|
|
151
151
|
headers = _props.headers,
|
|
152
152
|
wallet = _props.wallet,
|
|
153
|
-
renderCanceledNotice = _props.renderCanceledNotice
|
|
153
|
+
renderCanceledNotice = _props.renderCanceledNotice,
|
|
154
|
+
config = _props.config;
|
|
154
155
|
|
|
155
156
|
|
|
156
157
|
var accountExclusions = payments.filter(function (provider) {
|
|
@@ -320,7 +321,8 @@ var WithdrawWidget = function (_PureComponent) {
|
|
|
320
321
|
account: selectedAccount,
|
|
321
322
|
method: selectedMethod,
|
|
322
323
|
detail: selectedMethodDetail,
|
|
323
|
-
country: country
|
|
324
|
+
country: country,
|
|
325
|
+
config: config
|
|
324
326
|
};
|
|
325
327
|
var PaymentAccountForm = paymentDetail ? paymentDetail.component : null;
|
|
326
328
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tg-core-components",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.6",
|
|
4
4
|
"description": "tg-core-components",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"webpack": "^3.0.0",
|
|
77
77
|
"webpack-blocks": "^1.0.0"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "b82792457fc728444d1fb02f639470b30c901d0d"
|
|
80
80
|
}
|