diy-template-components 1.0.3 → 1.0.4
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/index.es.js +6 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +7 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ import Slider from 'react-slick';
|
|
|
14
14
|
import axios from 'axios';
|
|
15
15
|
import moment from 'moment';
|
|
16
16
|
import Countdown from 'react-countdown';
|
|
17
|
-
import 'moment/locale/ko';
|
|
17
|
+
import koreanLocale from 'moment/locale/ko';
|
|
18
18
|
import ReactDOMServer from 'react-dom/server';
|
|
19
19
|
import { createTheming, createUseStyles as createUseStyles$1, useTheme as useTheme$1 } from 'react-jss';
|
|
20
20
|
|
|
@@ -7427,6 +7427,11 @@ const SingleVideoSlide$1 = props => {
|
|
|
7427
7427
|
const buyNowText = countryCode === 'KR' ? '이 웨비나 신청하기' : 'BUY NOW';
|
|
7428
7428
|
const registerNowText = countryCode === 'KR' ? '웨비나 신청하기' : 'REGISTER NOW';
|
|
7429
7429
|
const momentLocale = countryCode === 'KR' ? 'ko' : 'in';
|
|
7430
|
+
if (countryCode === 'KR') {
|
|
7431
|
+
moment.updateLocale('ko', koreanLocale);
|
|
7432
|
+
} else {
|
|
7433
|
+
moment.locale('en');
|
|
7434
|
+
}
|
|
7430
7435
|
return /*#__PURE__*/React.createElement("div", {
|
|
7431
7436
|
className: classes.videoCarouselContainer
|
|
7432
7437
|
}, /*#__PURE__*/React.createElement("div", {
|